From 28b3ae7a67a8a84ccb22849d39248151574dcfe8 Mon Sep 17 00:00:00 2001 From: Sergey Reshetnikov Date: Fri, 6 Sep 2024 20:16:47 +0500 Subject: [PATCH 1/3] Add linux kernel annotations to the extras --- grammar.js | 43 ++++++++++++ src/grammar.json | 168 +++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 211 insertions(+) diff --git a/grammar.js b/grammar.js index 02baa80..b365093 100644 --- a/grammar.js +++ b/grammar.js @@ -57,6 +57,7 @@ module.exports = grammar({ extras: $ => [ /\s|\\\r?\n/, $.comment, + $._linux_kernel_annotations, ], inline: $ => [ @@ -83,6 +84,48 @@ module.exports = grammar({ rules: { translation_unit: $ => repeat($._top_level_item), + _linux_kernel_annotations: $ => token(choice( + '__init', + '__exit', + '__initdata', + '__exitdata', + '__initconst', + '__initconstdata', + '__devinit', + '__devexit', + '__devinitdata', + '__devexitdata', + '__init_refok', + '__exit_refok', + '__ref', + '__refdata', + '__section', + '__used', + '__unused', + '__aligned', + '__packed', + '__always_inline', + '__noinline', + '__deprecated', + '__noreturn', + '__cold', + '__ro_after_init', + '__must_check', + '__always_unused', + '__maybe_unused', + '__user', + '__kernel', + '__force', + '__iomem', + '__acquires', + '__releases', + '__acquire', + '__release', + '__rcu', + '__percpu', + '__init_once' + )), + // Top level items are block items with the exception of the expression statement _top_level_item: $ => choice( $.function_definition, diff --git a/src/grammar.json b/src/grammar.json index 88b0c19..2620e7c 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -9,6 +9,170 @@ "name": "_top_level_item" } }, + "_linux_kernel_annotations": { + "type": "TOKEN", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "__init" + }, + { + "type": "STRING", + "value": "__exit" + }, + { + "type": "STRING", + "value": "__initdata" + }, + { + "type": "STRING", + "value": "__exitdata" + }, + { + "type": "STRING", + "value": "__initconst" + }, + { + "type": "STRING", + "value": "__initconstdata" + }, + { + "type": "STRING", + "value": "__devinit" + }, + { + "type": "STRING", + "value": "__devexit" + }, + { + "type": "STRING", + "value": "__devinitdata" + }, + { + "type": "STRING", + "value": "__devexitdata" + }, + { + "type": "STRING", + "value": "__init_refok" + }, + { + "type": "STRING", + "value": "__exit_refok" + }, + { + "type": "STRING", + "value": "__ref" + }, + { + "type": "STRING", + "value": "__refdata" + }, + { + "type": "STRING", + "value": "__section" + }, + { + "type": "STRING", + "value": "__used" + }, + { + "type": "STRING", + "value": "__unused" + }, + { + "type": "STRING", + "value": "__aligned" + }, + { + "type": "STRING", + "value": "__packed" + }, + { + "type": "STRING", + "value": "__always_inline" + }, + { + "type": "STRING", + "value": "__noinline" + }, + { + "type": "STRING", + "value": "__deprecated" + }, + { + "type": "STRING", + "value": "__noreturn" + }, + { + "type": "STRING", + "value": "__cold" + }, + { + "type": "STRING", + "value": "__ro_after_init" + }, + { + "type": "STRING", + "value": "__must_check" + }, + { + "type": "STRING", + "value": "__always_unused" + }, + { + "type": "STRING", + "value": "__maybe_unused" + }, + { + "type": "STRING", + "value": "__user" + }, + { + "type": "STRING", + "value": "__kernel" + }, + { + "type": "STRING", + "value": "__force" + }, + { + "type": "STRING", + "value": "__iomem" + }, + { + "type": "STRING", + "value": "__acquires" + }, + { + "type": "STRING", + "value": "__releases" + }, + { + "type": "STRING", + "value": "__acquire" + }, + { + "type": "STRING", + "value": "__release" + }, + { + "type": "STRING", + "value": "__rcu" + }, + { + "type": "STRING", + "value": "__percpu" + }, + { + "type": "STRING", + "value": "__init_once" + } + ] + } + }, "_top_level_item": { "type": "CHOICE", "members": [ @@ -9891,6 +10055,10 @@ { "type": "SYMBOL", "name": "comment" + }, + { + "type": "SYMBOL", + "name": "_linux_kernel_annotations" } ], "conflicts": [ From 88ac42892d8059c64a6b97c2f99e30a248ca97ac Mon Sep 17 00:00:00 2001 From: Sergey Reshetnikov Date: Mon, 9 Sep 2024 12:49:09 +0500 Subject: [PATCH 2/3] remove `__acquires`, `__releases`, `__acquire`, `__release` --- grammar.js | 6 +----- src/grammar.json | 16 ---------------- 2 files changed, 1 insertion(+), 21 deletions(-) diff --git a/grammar.js b/grammar.js index b365093..c604cf0 100644 --- a/grammar.js +++ b/grammar.js @@ -85,7 +85,7 @@ module.exports = grammar({ translation_unit: $ => repeat($._top_level_item), _linux_kernel_annotations: $ => token(choice( - '__init', + '__init', '__exit', '__initdata', '__exitdata', @@ -117,10 +117,6 @@ module.exports = grammar({ '__kernel', '__force', '__iomem', - '__acquires', - '__releases', - '__acquire', - '__release', '__rcu', '__percpu', '__init_once' diff --git a/src/grammar.json b/src/grammar.json index 2620e7c..2cdbeb7 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -142,22 +142,6 @@ "type": "STRING", "value": "__iomem" }, - { - "type": "STRING", - "value": "__acquires" - }, - { - "type": "STRING", - "value": "__releases" - }, - { - "type": "STRING", - "value": "__acquire" - }, - { - "type": "STRING", - "value": "__release" - }, { "type": "STRING", "value": "__rcu" From dff97fd777913a2e7bf411d244668323fd4dcd8d Mon Sep 17 00:00:00 2001 From: Sergey Reshetnikov Date: Mon, 9 Sep 2024 12:51:40 +0500 Subject: [PATCH 3/3] update parser.c --- src/parser.c | 277383 ++++++++++++++++++++++++++++-------------------- 1 file changed, 161608 insertions(+), 115775 deletions(-) diff --git a/src/parser.c b/src/parser.c index ea25352..8709b42 100644 --- a/src/parser.c +++ b/src/parser.c @@ -13,11 +13,11 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 2317 -#define LARGE_STATE_COUNT 523 -#define SYMBOL_COUNT 371 +#define STATE_COUNT 3461 +#define LARGE_STATE_COUNT 611 +#define SYMBOL_COUNT 372 #define ALIAS_COUNT 3 -#define TOKEN_COUNT 168 +#define TOKEN_COUNT 169 #define EXTERNAL_TOKEN_COUNT 0 #define FIELD_COUNT 39 #define MAX_ALIAS_SEQUENCE_LENGTH 10 @@ -25,383 +25,385 @@ enum ts_symbol_identifiers { sym_identifier = 1, - aux_sym_preproc_include_token1 = 2, - aux_sym_preproc_include_token2 = 3, - aux_sym_preproc_def_token1 = 4, - anon_sym_LPAREN = 5, - anon_sym_DOT_DOT_DOT = 6, - anon_sym_COMMA = 7, - anon_sym_RPAREN = 8, - aux_sym_preproc_if_token1 = 9, - anon_sym_LF = 10, - aux_sym_preproc_if_token2 = 11, - aux_sym_preproc_ifdef_token1 = 12, - aux_sym_preproc_ifdef_token2 = 13, - aux_sym_preproc_else_token1 = 14, - aux_sym_preproc_elif_token1 = 15, - aux_sym_preproc_elifdef_token1 = 16, - aux_sym_preproc_elifdef_token2 = 17, - aux_sym_preproc_arg_token1 = 18, - aux_sym_preproc_arg_token2 = 19, - sym_preproc_directive = 20, - anon_sym_LPAREN2 = 21, - anon_sym_defined = 22, - anon_sym_BANG = 23, - anon_sym_TILDE = 24, - anon_sym_DASH = 25, - anon_sym_PLUS = 26, - anon_sym_STAR = 27, - anon_sym_SLASH = 28, - anon_sym_PERCENT = 29, - anon_sym_PIPE_PIPE = 30, - anon_sym_AMP_AMP = 31, - anon_sym_PIPE = 32, - anon_sym_CARET = 33, - anon_sym_AMP = 34, - anon_sym_EQ_EQ = 35, - anon_sym_BANG_EQ = 36, - anon_sym_GT = 37, - anon_sym_GT_EQ = 38, - anon_sym_LT_EQ = 39, - anon_sym_LT = 40, - anon_sym_LT_LT = 41, - anon_sym_GT_GT = 42, - anon_sym_SEMI = 43, - anon_sym___extension__ = 44, - anon_sym_typedef = 45, - anon_sym_extern = 46, - anon_sym___attribute__ = 47, - anon_sym___scanf = 48, - anon_sym___printf = 49, - anon_sym___read_mostly = 50, - anon_sym___must_hold = 51, - anon_sym___ro_after_init = 52, - anon_sym___noreturn = 53, - anon_sym___cold = 54, - anon_sym_COLON_COLON = 55, - anon_sym_LBRACK_LBRACK = 56, - anon_sym_RBRACK_RBRACK = 57, - anon_sym___declspec = 58, - anon_sym___based = 59, - anon_sym___init = 60, - anon_sym___exit = 61, - anon_sym___cdecl = 62, - anon_sym___clrcall = 63, - anon_sym___stdcall = 64, - anon_sym___fastcall = 65, - anon_sym___thiscall = 66, - anon_sym___vectorcall = 67, - sym_ms_restrict_modifier = 68, - sym_ms_unsigned_ptr_modifier = 69, - sym_ms_signed_ptr_modifier = 70, - anon_sym__unaligned = 71, - anon_sym___unaligned = 72, - anon_sym_LBRACE = 73, - anon_sym_RBRACE = 74, - anon_sym_signed = 75, - anon_sym_unsigned = 76, - anon_sym_long = 77, - anon_sym_short = 78, - anon_sym_LBRACK = 79, - anon_sym_static = 80, - anon_sym_RBRACK = 81, - anon_sym_EQ = 82, - anon_sym_auto = 83, - anon_sym_register = 84, - anon_sym_inline = 85, - anon_sym___inline = 86, - anon_sym___inline__ = 87, - anon_sym___forceinline = 88, - anon_sym_thread_local = 89, - anon_sym___thread = 90, - anon_sym_const = 91, - anon_sym_constexpr = 92, - anon_sym_volatile = 93, - anon_sym_restrict = 94, - anon_sym___restrict__ = 95, - anon_sym__Atomic = 96, - anon_sym__Noreturn = 97, - anon_sym_noreturn = 98, - anon_sym_alignas = 99, - anon_sym__Alignas = 100, - sym_primitive_type = 101, - anon_sym_enum = 102, - anon_sym_COLON = 103, - anon_sym_struct = 104, - anon_sym___aligned = 105, - anon_sym_union = 106, - anon_sym_if = 107, - anon_sym_else = 108, - anon_sym_switch = 109, - anon_sym_case = 110, - anon_sym_default = 111, - anon_sym_while = 112, - anon_sym_do = 113, - anon_sym_for = 114, - anon_sym_return = 115, - anon_sym_break = 116, - anon_sym_continue = 117, - anon_sym_goto = 118, - anon_sym___try = 119, - anon_sym___except = 120, - anon_sym___finally = 121, - anon_sym___leave = 122, - anon_sym_QMARK = 123, - anon_sym_STAR_EQ = 124, - anon_sym_SLASH_EQ = 125, - anon_sym_PERCENT_EQ = 126, - anon_sym_PLUS_EQ = 127, - anon_sym_DASH_EQ = 128, - anon_sym_LT_LT_EQ = 129, - anon_sym_GT_GT_EQ = 130, - anon_sym_AMP_EQ = 131, - anon_sym_CARET_EQ = 132, - anon_sym_PIPE_EQ = 133, - anon_sym_DASH_DASH = 134, - anon_sym_PLUS_PLUS = 135, - anon_sym_sizeof = 136, - anon_sym___alignof__ = 137, - anon_sym___alignof = 138, - anon_sym__alignof = 139, - anon_sym_alignof = 140, - anon_sym__Alignof = 141, - anon_sym_offsetof = 142, - anon_sym__Generic = 143, - anon_sym_asm = 144, - anon_sym___asm__ = 145, - anon_sym_DOT = 146, - anon_sym_DASH_GT = 147, - sym_number_literal = 148, - anon_sym_L_SQUOTE = 149, - anon_sym_u_SQUOTE = 150, - anon_sym_U_SQUOTE = 151, - anon_sym_u8_SQUOTE = 152, - anon_sym_SQUOTE = 153, - aux_sym_char_literal_token1 = 154, - anon_sym_L_DQUOTE = 155, - anon_sym_u_DQUOTE = 156, - anon_sym_U_DQUOTE = 157, - anon_sym_u8_DQUOTE = 158, - anon_sym_DQUOTE = 159, - aux_sym_string_literal_token1 = 160, - sym_escape_sequence = 161, - sym_system_lib_string = 162, - sym_true = 163, - sym_false = 164, - anon_sym_NULL = 165, - anon_sym_nullptr = 166, - sym_comment = 167, - sym_translation_unit = 168, - sym__top_level_item = 169, - sym__block_item = 170, - sym_preproc_include = 171, - sym_preproc_def = 172, - sym_preproc_function_def = 173, - sym_preproc_params = 174, - sym_preproc_call = 175, - sym_preproc_if = 176, - sym_preproc_ifdef = 177, - sym_preproc_else = 178, - sym_preproc_elif = 179, - sym_preproc_elifdef = 180, - sym_preproc_if_in_field_declaration_list = 181, - sym_preproc_ifdef_in_field_declaration_list = 182, - sym_preproc_else_in_field_declaration_list = 183, - sym_preproc_elif_in_field_declaration_list = 184, - sym_preproc_elifdef_in_field_declaration_list = 185, - sym_preproc_if_in_enumerator_list = 186, - sym_preproc_ifdef_in_enumerator_list = 187, - sym_preproc_else_in_enumerator_list = 188, - sym_preproc_elif_in_enumerator_list = 189, - sym_preproc_elifdef_in_enumerator_list = 190, - sym_preproc_if_in_enumerator_list_no_comma = 191, - sym_preproc_ifdef_in_enumerator_list_no_comma = 192, - sym_preproc_else_in_enumerator_list_no_comma = 193, - sym_preproc_elif_in_enumerator_list_no_comma = 194, - sym_preproc_elifdef_in_enumerator_list_no_comma = 195, - sym_preproc_arg = 196, - sym__preproc_expression = 197, - sym_preproc_parenthesized_expression = 198, - sym_preproc_defined = 199, - sym_preproc_unary_expression = 200, - sym_preproc_call_expression = 201, - sym_preproc_argument_list = 202, - sym_preproc_binary_expression = 203, - sym_function_definition = 204, - sym__old_style_function_definition = 205, - sym_declaration = 206, - sym_type_definition = 207, - sym__type_definition_type = 208, - sym__type_definition_declarators = 209, - sym__declaration_modifiers = 210, - sym__declaration_specifiers = 211, - sym_linkage_specification = 212, - sym_attribute_specifier = 213, - sym_attribute = 214, - sym_attribute_declaration = 215, - sym_ms_declspec_modifier = 216, - sym_ms_based_modifier = 217, - sym_macro_modifier = 218, - sym_ms_call_modifier = 219, - sym_ms_unaligned_ptr_modifier = 220, - sym_ms_pointer_modifier = 221, - sym_declaration_list = 222, - sym__declarator = 223, - sym__declaration_declarator = 224, - sym__field_declarator = 225, - sym__type_declarator = 226, - sym__abstract_declarator = 227, - sym_parenthesized_declarator = 228, - sym_parenthesized_field_declarator = 229, - sym_parenthesized_type_declarator = 230, - sym_abstract_parenthesized_declarator = 231, - sym_attributed_declarator = 232, - sym_attributed_field_declarator = 233, - sym_attributed_type_declarator = 234, - sym_pointer_declarator = 235, - sym_pointer_field_declarator = 236, - sym_pointer_type_declarator = 237, - sym_abstract_pointer_declarator = 238, - sym_function_declarator = 239, - sym__function_declaration_declarator = 240, - sym_function_field_declarator = 241, - sym_function_type_declarator = 242, - sym_abstract_function_declarator = 243, - sym__old_style_function_declarator = 244, - sym_array_declarator = 245, - sym_array_field_declarator = 246, - sym_array_type_declarator = 247, - sym_abstract_array_declarator = 248, - sym_init_declarator = 249, - sym_compound_statement = 250, - sym_storage_class_specifier = 251, - sym_type_qualifier = 252, - sym_alignas_qualifier = 253, - sym_type_specifier = 254, - sym_sized_type_specifier = 255, - sym_enum_specifier = 256, - sym_enumerator_list = 257, - sym_struct_specifier = 258, - sym_union_specifier = 259, - sym_field_declaration_list = 260, - sym__field_declaration_list_item = 261, - sym_macro_invocation = 262, - sym_field_declaration = 263, - sym__field_declaration_declarator = 264, - sym_bitfield_clause = 265, - sym_enumerator = 266, - sym_variadic_parameter = 267, - sym_parameter_list = 268, - sym__old_style_parameter_list = 269, - sym_parameter_declaration = 270, - sym_attributed_statement = 271, - sym_statement = 272, - sym__top_level_statement = 273, - sym_labeled_statement = 274, - sym__top_level_expression_statement = 275, - sym_expression_statement = 276, - sym_if_statement = 277, - sym_else_clause = 278, - sym_switch_statement = 279, - sym_case_statement = 280, - sym_while_statement = 281, - sym_do_statement = 282, - sym_for_statement = 283, - sym__for_statement_body = 284, - sym_return_statement = 285, - sym_break_statement = 286, - sym_continue_statement = 287, - sym_goto_statement = 288, - sym_seh_try_statement = 289, - sym_seh_except_clause = 290, - sym_seh_finally_clause = 291, - sym_seh_leave_statement = 292, - sym_expression = 293, - sym__string = 294, - sym_comma_expression = 295, - sym_conditional_expression = 296, - sym_assignment_expression = 297, - sym_pointer_expression = 298, - sym_unary_expression = 299, - sym_binary_expression = 300, - sym_update_expression = 301, - sym_cast_expression = 302, - sym_type_descriptor = 303, - sym_sizeof_expression = 304, - sym_alignof_expression = 305, - sym_offsetof_expression = 306, - sym_generic_expression = 307, - sym_subscript_expression = 308, - sym_call_expression = 309, - sym_gnu_asm_expression = 310, - sym_gnu_asm_qualifier = 311, - sym_gnu_asm_output_operand_list = 312, - sym_gnu_asm_output_operand = 313, - sym_gnu_asm_input_operand_list = 314, - sym_gnu_asm_input_operand = 315, - sym_gnu_asm_clobber_list = 316, - sym_gnu_asm_goto_list = 317, - sym_argument_list = 318, - sym_field_expression = 319, - sym_compound_literal_expression = 320, - sym_parenthesized_expression = 321, - sym_initializer_list = 322, - sym_initializer_pair = 323, - sym_subscript_designator = 324, - sym_subscript_range_designator = 325, - sym_field_designator = 326, - sym_char_literal = 327, - sym_concatenated_string = 328, - sym_string_literal = 329, - sym_null = 330, - sym__empty_declaration = 331, - sym_macro_type_specifier = 332, - aux_sym_translation_unit_repeat1 = 333, - aux_sym_preproc_params_repeat1 = 334, - aux_sym_preproc_if_repeat1 = 335, - aux_sym_preproc_if_in_field_declaration_list_repeat1 = 336, - aux_sym_preproc_if_in_enumerator_list_repeat1 = 337, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1 = 338, - aux_sym_preproc_arg_repeat1 = 339, - aux_sym_preproc_argument_list_repeat1 = 340, - aux_sym__old_style_function_definition_repeat1 = 341, - aux_sym_declaration_repeat1 = 342, - aux_sym_type_definition_repeat1 = 343, - aux_sym__type_definition_type_repeat1 = 344, - aux_sym__type_definition_declarators_repeat1 = 345, - aux_sym__declaration_specifiers_repeat1 = 346, - aux_sym_attribute_specifier_repeat1 = 347, - aux_sym_attribute_declaration_repeat1 = 348, - aux_sym_attributed_declarator_repeat1 = 349, - aux_sym_pointer_declarator_repeat1 = 350, - aux_sym_function_declarator_repeat1 = 351, - aux_sym_array_declarator_repeat1 = 352, - aux_sym_sized_type_specifier_repeat1 = 353, - aux_sym_enumerator_list_repeat1 = 354, - aux_sym__field_declaration_declarator_repeat1 = 355, - aux_sym_parameter_list_repeat1 = 356, - aux_sym__old_style_parameter_list_repeat1 = 357, - aux_sym_case_statement_repeat1 = 358, - aux_sym_generic_expression_repeat1 = 359, - aux_sym_gnu_asm_expression_repeat1 = 360, - aux_sym_gnu_asm_output_operand_list_repeat1 = 361, - aux_sym_gnu_asm_input_operand_list_repeat1 = 362, - aux_sym_gnu_asm_clobber_list_repeat1 = 363, - aux_sym_gnu_asm_goto_list_repeat1 = 364, - aux_sym_argument_list_repeat1 = 365, - aux_sym_initializer_list_repeat1 = 366, - aux_sym_initializer_pair_repeat1 = 367, - aux_sym_char_literal_repeat1 = 368, - aux_sym_concatenated_string_repeat1 = 369, - aux_sym_string_literal_repeat1 = 370, - alias_sym_field_identifier = 371, - alias_sym_statement_identifier = 372, - alias_sym_type_identifier = 373, + sym__linux_kernel_annotations = 2, + aux_sym_preproc_include_token1 = 3, + aux_sym_preproc_include_token2 = 4, + aux_sym_preproc_def_token1 = 5, + anon_sym_LPAREN = 6, + anon_sym_DOT_DOT_DOT = 7, + anon_sym_COMMA = 8, + anon_sym_RPAREN = 9, + aux_sym_preproc_if_token1 = 10, + anon_sym_LF = 11, + aux_sym_preproc_if_token2 = 12, + aux_sym_preproc_ifdef_token1 = 13, + aux_sym_preproc_ifdef_token2 = 14, + aux_sym_preproc_else_token1 = 15, + aux_sym_preproc_elif_token1 = 16, + aux_sym_preproc_elifdef_token1 = 17, + aux_sym_preproc_elifdef_token2 = 18, + aux_sym_preproc_arg_token1 = 19, + aux_sym_preproc_arg_token2 = 20, + sym_preproc_directive = 21, + anon_sym_LPAREN2 = 22, + anon_sym_defined = 23, + anon_sym_BANG = 24, + anon_sym_TILDE = 25, + anon_sym_DASH = 26, + anon_sym_PLUS = 27, + anon_sym_STAR = 28, + anon_sym_SLASH = 29, + anon_sym_PERCENT = 30, + anon_sym_PIPE_PIPE = 31, + anon_sym_AMP_AMP = 32, + anon_sym_PIPE = 33, + anon_sym_CARET = 34, + anon_sym_AMP = 35, + anon_sym_EQ_EQ = 36, + anon_sym_BANG_EQ = 37, + anon_sym_GT = 38, + anon_sym_GT_EQ = 39, + anon_sym_LT_EQ = 40, + anon_sym_LT = 41, + anon_sym_LT_LT = 42, + anon_sym_GT_GT = 43, + anon_sym_SEMI = 44, + anon_sym___extension__ = 45, + anon_sym_typedef = 46, + anon_sym_extern = 47, + anon_sym___attribute__ = 48, + anon_sym___scanf = 49, + anon_sym___printf = 50, + anon_sym___read_mostly = 51, + anon_sym___must_hold = 52, + anon_sym___ro_after_init = 53, + anon_sym___noreturn = 54, + anon_sym___cold = 55, + anon_sym_COLON_COLON = 56, + anon_sym_LBRACK_LBRACK = 57, + anon_sym_RBRACK_RBRACK = 58, + anon_sym___declspec = 59, + anon_sym___based = 60, + anon_sym___init = 61, + anon_sym___exit = 62, + anon_sym___cdecl = 63, + anon_sym___clrcall = 64, + anon_sym___stdcall = 65, + anon_sym___fastcall = 66, + anon_sym___thiscall = 67, + anon_sym___vectorcall = 68, + sym_ms_restrict_modifier = 69, + sym_ms_unsigned_ptr_modifier = 70, + sym_ms_signed_ptr_modifier = 71, + anon_sym__unaligned = 72, + anon_sym___unaligned = 73, + anon_sym_LBRACE = 74, + anon_sym_RBRACE = 75, + anon_sym_signed = 76, + anon_sym_unsigned = 77, + anon_sym_long = 78, + anon_sym_short = 79, + anon_sym_LBRACK = 80, + anon_sym_static = 81, + anon_sym_RBRACK = 82, + anon_sym_EQ = 83, + anon_sym_auto = 84, + anon_sym_register = 85, + anon_sym_inline = 86, + anon_sym___inline = 87, + anon_sym___inline__ = 88, + anon_sym___forceinline = 89, + anon_sym_thread_local = 90, + anon_sym___thread = 91, + anon_sym_const = 92, + anon_sym_constexpr = 93, + anon_sym_volatile = 94, + anon_sym_restrict = 95, + anon_sym___restrict__ = 96, + anon_sym__Atomic = 97, + anon_sym__Noreturn = 98, + anon_sym_noreturn = 99, + anon_sym_alignas = 100, + anon_sym__Alignas = 101, + sym_primitive_type = 102, + anon_sym_enum = 103, + anon_sym_COLON = 104, + anon_sym_struct = 105, + anon_sym___aligned = 106, + anon_sym_union = 107, + anon_sym_if = 108, + anon_sym_else = 109, + anon_sym_switch = 110, + anon_sym_case = 111, + anon_sym_default = 112, + anon_sym_while = 113, + anon_sym_do = 114, + anon_sym_for = 115, + anon_sym_return = 116, + anon_sym_break = 117, + anon_sym_continue = 118, + anon_sym_goto = 119, + anon_sym___try = 120, + anon_sym___except = 121, + anon_sym___finally = 122, + anon_sym___leave = 123, + anon_sym_QMARK = 124, + anon_sym_STAR_EQ = 125, + anon_sym_SLASH_EQ = 126, + anon_sym_PERCENT_EQ = 127, + anon_sym_PLUS_EQ = 128, + anon_sym_DASH_EQ = 129, + anon_sym_LT_LT_EQ = 130, + anon_sym_GT_GT_EQ = 131, + anon_sym_AMP_EQ = 132, + anon_sym_CARET_EQ = 133, + anon_sym_PIPE_EQ = 134, + anon_sym_DASH_DASH = 135, + anon_sym_PLUS_PLUS = 136, + anon_sym_sizeof = 137, + anon_sym___alignof__ = 138, + anon_sym___alignof = 139, + anon_sym__alignof = 140, + anon_sym_alignof = 141, + anon_sym__Alignof = 142, + anon_sym_offsetof = 143, + anon_sym__Generic = 144, + anon_sym_asm = 145, + anon_sym___asm__ = 146, + anon_sym_DOT = 147, + anon_sym_DASH_GT = 148, + sym_number_literal = 149, + anon_sym_L_SQUOTE = 150, + anon_sym_u_SQUOTE = 151, + anon_sym_U_SQUOTE = 152, + anon_sym_u8_SQUOTE = 153, + anon_sym_SQUOTE = 154, + aux_sym_char_literal_token1 = 155, + anon_sym_L_DQUOTE = 156, + anon_sym_u_DQUOTE = 157, + anon_sym_U_DQUOTE = 158, + anon_sym_u8_DQUOTE = 159, + anon_sym_DQUOTE = 160, + aux_sym_string_literal_token1 = 161, + sym_escape_sequence = 162, + sym_system_lib_string = 163, + sym_true = 164, + sym_false = 165, + anon_sym_NULL = 166, + anon_sym_nullptr = 167, + sym_comment = 168, + sym_translation_unit = 169, + sym__top_level_item = 170, + sym__block_item = 171, + sym_preproc_include = 172, + sym_preproc_def = 173, + sym_preproc_function_def = 174, + sym_preproc_params = 175, + sym_preproc_call = 176, + sym_preproc_if = 177, + sym_preproc_ifdef = 178, + sym_preproc_else = 179, + sym_preproc_elif = 180, + sym_preproc_elifdef = 181, + sym_preproc_if_in_field_declaration_list = 182, + sym_preproc_ifdef_in_field_declaration_list = 183, + sym_preproc_else_in_field_declaration_list = 184, + sym_preproc_elif_in_field_declaration_list = 185, + sym_preproc_elifdef_in_field_declaration_list = 186, + sym_preproc_if_in_enumerator_list = 187, + sym_preproc_ifdef_in_enumerator_list = 188, + sym_preproc_else_in_enumerator_list = 189, + sym_preproc_elif_in_enumerator_list = 190, + sym_preproc_elifdef_in_enumerator_list = 191, + sym_preproc_if_in_enumerator_list_no_comma = 192, + sym_preproc_ifdef_in_enumerator_list_no_comma = 193, + sym_preproc_else_in_enumerator_list_no_comma = 194, + sym_preproc_elif_in_enumerator_list_no_comma = 195, + sym_preproc_elifdef_in_enumerator_list_no_comma = 196, + sym_preproc_arg = 197, + sym__preproc_expression = 198, + sym_preproc_parenthesized_expression = 199, + sym_preproc_defined = 200, + sym_preproc_unary_expression = 201, + sym_preproc_call_expression = 202, + sym_preproc_argument_list = 203, + sym_preproc_binary_expression = 204, + sym_function_definition = 205, + sym__old_style_function_definition = 206, + sym_declaration = 207, + sym_type_definition = 208, + sym__type_definition_type = 209, + sym__type_definition_declarators = 210, + sym__declaration_modifiers = 211, + sym__declaration_specifiers = 212, + sym_linkage_specification = 213, + sym_attribute_specifier = 214, + sym_attribute = 215, + sym_attribute_declaration = 216, + sym_ms_declspec_modifier = 217, + sym_ms_based_modifier = 218, + sym_macro_modifier = 219, + sym_ms_call_modifier = 220, + sym_ms_unaligned_ptr_modifier = 221, + sym_ms_pointer_modifier = 222, + sym_declaration_list = 223, + sym__declarator = 224, + sym__declaration_declarator = 225, + sym__field_declarator = 226, + sym__type_declarator = 227, + sym__abstract_declarator = 228, + sym_parenthesized_declarator = 229, + sym_parenthesized_field_declarator = 230, + sym_parenthesized_type_declarator = 231, + sym_abstract_parenthesized_declarator = 232, + sym_attributed_declarator = 233, + sym_attributed_field_declarator = 234, + sym_attributed_type_declarator = 235, + sym_pointer_declarator = 236, + sym_pointer_field_declarator = 237, + sym_pointer_type_declarator = 238, + sym_abstract_pointer_declarator = 239, + sym_function_declarator = 240, + sym__function_declaration_declarator = 241, + sym_function_field_declarator = 242, + sym_function_type_declarator = 243, + sym_abstract_function_declarator = 244, + sym__old_style_function_declarator = 245, + sym_array_declarator = 246, + sym_array_field_declarator = 247, + sym_array_type_declarator = 248, + sym_abstract_array_declarator = 249, + sym_init_declarator = 250, + sym_compound_statement = 251, + sym_storage_class_specifier = 252, + sym_type_qualifier = 253, + sym_alignas_qualifier = 254, + sym_type_specifier = 255, + sym_sized_type_specifier = 256, + sym_enum_specifier = 257, + sym_enumerator_list = 258, + sym_struct_specifier = 259, + sym_union_specifier = 260, + 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, }; static const char * const ts_symbol_names[] = { [ts_builtin_sym_end] = "end", [sym_identifier] = "identifier", + [sym__linux_kernel_annotations] = "_linux_kernel_annotations", [aux_sym_preproc_include_token1] = "#include", [aux_sym_preproc_include_token2] = "preproc_include_token2", [aux_sym_preproc_def_token1] = "#define", @@ -779,6 +781,7 @@ static const char * const ts_symbol_names[] = { static const TSSymbol ts_symbol_map[] = { [ts_builtin_sym_end] = ts_builtin_sym_end, [sym_identifier] = sym_identifier, + [sym__linux_kernel_annotations] = sym__linux_kernel_annotations, [aux_sym_preproc_include_token1] = aux_sym_preproc_include_token1, [aux_sym_preproc_include_token2] = aux_sym_preproc_include_token2, [aux_sym_preproc_def_token1] = aux_sym_preproc_def_token1, @@ -1162,6 +1165,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym__linux_kernel_annotations] = { + .visible = false, + .named = true, + }, [aux_sym_preproc_include_token1] = { .visible = true, .named = false, @@ -3379,80 +3386,80 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3] = 3, [4] = 4, [5] = 5, - [6] = 5, - [7] = 4, + [6] = 6, + [7] = 5, [8] = 8, - [9] = 5, - [10] = 3, - [11] = 4, - [12] = 12, - [13] = 2, - [14] = 2, - [15] = 4, - [16] = 5, - [17] = 17, - [18] = 2, - [19] = 19, - [20] = 3, - [21] = 3, + [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, [22] = 22, [23] = 23, [24] = 24, - [25] = 23, - [26] = 23, - [27] = 24, - [28] = 28, - [29] = 28, - [30] = 30, - [31] = 31, - [32] = 32, - [33] = 32, - [34] = 24, + [25] = 24, + [26] = 26, + [27] = 27, + [28] = 27, + [29] = 24, + [30] = 23, + [31] = 24, + [32] = 27, + [33] = 33, + [34] = 22, [35] = 24, - [36] = 28, - [37] = 22, - [38] = 32, - [39] = 32, - [40] = 22, - [41] = 23, - [42] = 28, - [43] = 43, - [44] = 44, - [45] = 45, - [46] = 46, + [36] = 36, + [37] = 27, + [38] = 27, + [39] = 24, + [40] = 23, + [41] = 22, + [42] = 27, + [43] = 23, + [44] = 26, + [45] = 26, + [46] = 26, [47] = 47, [48] = 48, [49] = 49, - [50] = 47, - [51] = 49, - [52] = 45, - [53] = 46, - [54] = 47, - [55] = 49, - [56] = 45, - [57] = 46, - [58] = 49, - [59] = 48, - [60] = 45, - [61] = 46, - [62] = 48, - [63] = 47, - [64] = 48, - [65] = 48, + [50] = 50, + [51] = 51, + [52] = 52, + [53] = 53, + [54] = 53, + [55] = 50, + [56] = 52, + [57] = 51, + [58] = 50, + [59] = 49, + [60] = 51, + [61] = 53, + [62] = 50, + [63] = 49, + [64] = 53, + [65] = 52, [66] = 49, - [67] = 45, - [68] = 47, - [69] = 46, - [70] = 70, - [71] = 70, - [72] = 70, - [73] = 70, - [74] = 70, - [75] = 75, - [76] = 76, - [77] = 77, - [78] = 78, - [79] = 79, + [67] = 52, + [68] = 51, + [69] = 51, + [70] = 53, + [71] = 50, + [72] = 49, + [73] = 52, + [74] = 74, + [75] = 74, + [76] = 74, + [77] = 74, + [78] = 74, + [79] = 74, [80] = 80, [81] = 81, [82] = 82, @@ -3474,7 +3481,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [98] = 98, [99] = 99, [100] = 100, - [101] = 97, + [101] = 101, [102] = 102, [103] = 103, [104] = 104, @@ -3494,7 +3501,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [118] = 118, [119] = 119, [120] = 120, - [121] = 91, + [121] = 121, [122] = 122, [123] = 123, [124] = 124, @@ -3532,758 +3539,758 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [156] = 156, [157] = 157, [158] = 158, - [159] = 75, - [160] = 75, - [161] = 75, - [162] = 112, - [163] = 85, - [164] = 86, - [165] = 108, - [166] = 111, - [167] = 117, - [168] = 96, - [169] = 98, - [170] = 117, - [171] = 87, - [172] = 88, - [173] = 115, - [174] = 114, - [175] = 110, - [176] = 76, - [177] = 89, - [178] = 96, - [179] = 97, - [180] = 77, - [181] = 104, - [182] = 108, - [183] = 111, - [184] = 109, - [185] = 100, - [186] = 107, - [187] = 90, - [188] = 113, - [189] = 95, - [190] = 93, - [191] = 94, - [192] = 115, - [193] = 114, - [194] = 94, - [195] = 110, - [196] = 76, - [197] = 113, + [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] = 93, - [200] = 84, - [201] = 90, - [202] = 89, - [203] = 96, - [204] = 97, - [205] = 77, - [206] = 103, - [207] = 104, - [208] = 108, - [209] = 111, - [210] = 85, - [211] = 102, - [212] = 113, - [213] = 88, - [214] = 104, - [215] = 87, - [216] = 119, - [217] = 120, - [218] = 91, - [219] = 86, - [220] = 92, - [221] = 112, - [222] = 99, - [223] = 83, - [224] = 105, - [225] = 116, - [226] = 118, - [227] = 86, - [228] = 106, - [229] = 84, - [230] = 105, - [231] = 83, - [232] = 82, - [233] = 81, - [234] = 80, - [235] = 117, - [236] = 95, - [237] = 115, - [238] = 94, - [239] = 93, - [240] = 114, - [241] = 119, - [242] = 110, - [243] = 76, - [244] = 103, - [245] = 106, - [246] = 118, - [247] = 98, - [248] = 102, - [249] = 92, - [250] = 99, - [251] = 85, - [252] = 109, - [253] = 120, - [254] = 84, - [255] = 78, - [256] = 83, - [257] = 82, - [258] = 81, - [259] = 107, - [260] = 91, - [261] = 79, - [262] = 80, - [263] = 116, - [264] = 119, - [265] = 120, + [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, + [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] = 116, - [268] = 118, - [269] = 106, - [270] = 78, - [271] = 79, - [272] = 107, - [273] = 109, - [274] = 105, - [275] = 103, - [276] = 102, - [277] = 92, - [278] = 99, - [279] = 78, - [280] = 79, - [281] = 80, - [282] = 100, - [283] = 81, - [284] = 98, - [285] = 82, - [286] = 90, - [287] = 89, - [288] = 88, - [289] = 87, - [290] = 77, - [291] = 100, - [292] = 127, - [293] = 134, - [294] = 138, - [295] = 132, - [296] = 156, - [297] = 123, - [298] = 148, - [299] = 126, - [300] = 153, - [301] = 128, - [302] = 141, - [303] = 142, - [304] = 140, + [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] = 151, - [307] = 122, - [308] = 133, - [309] = 139, - [310] = 151, - [311] = 157, - [312] = 149, - [313] = 146, - [314] = 137, - [315] = 136, - [316] = 135, - [317] = 150, - [318] = 130, - [319] = 131, - [320] = 158, - [321] = 154, - [322] = 152, + [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] = 145, - [326] = 144, - [327] = 143, - [328] = 139, - [329] = 155, - [330] = 141, - [331] = 142, - [332] = 128, - [333] = 143, - [334] = 127, - [335] = 150, - [336] = 135, - [337] = 157, - [338] = 129, - [339] = 129, - [340] = 136, - [341] = 137, - [342] = 125, - [343] = 124, - [344] = 153, - [345] = 155, - [346] = 144, - [347] = 145, - [348] = 156, - [349] = 122, - [350] = 147, - [351] = 138, - [352] = 126, - [353] = 125, - [354] = 152, - [355] = 140, - [356] = 133, - [357] = 154, - [358] = 124, - [359] = 130, - [360] = 148, - [361] = 132, - [362] = 158, - [363] = 123, - [364] = 149, - [365] = 131, - [366] = 148, - [367] = 128, - [368] = 123, - [369] = 122, - [370] = 130, - [371] = 136, - [372] = 372, - [373] = 135, - [374] = 154, - [375] = 131, - [376] = 133, - [377] = 152, - [378] = 158, - [379] = 137, - [380] = 150, - [381] = 146, - [382] = 157, - [383] = 153, - [384] = 155, - [385] = 134, - [386] = 156, + [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] = 138, - [389] = 147, - [390] = 140, - [391] = 124, - [392] = 129, - [393] = 127, - [394] = 139, - [395] = 144, - [396] = 145, - [397] = 126, - [398] = 141, - [399] = 399, - [400] = 142, - [401] = 401, - [402] = 132, - [403] = 143, + [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, + [402] = 161, + [403] = 148, [404] = 125, - [405] = 372, - [406] = 406, - [407] = 407, - [408] = 408, + [405] = 147, + [406] = 157, + [407] = 140, + [408] = 152, [409] = 409, - [410] = 408, - [411] = 409, + [410] = 409, + [411] = 411, [412] = 412, - [413] = 408, - [414] = 407, + [413] = 413, + [414] = 414, [415] = 415, - [416] = 412, - [417] = 406, - [418] = 418, - [419] = 408, - [420] = 418, - [421] = 415, - [422] = 422, - [423] = 412, - [424] = 409, - [425] = 406, - [426] = 418, - [427] = 406, - [428] = 415, - [429] = 418, - [430] = 422, - [431] = 431, - [432] = 408, - [433] = 422, - [434] = 409, - [435] = 406, - [436] = 407, - [437] = 418, - [438] = 407, - [439] = 415, - [440] = 412, - [441] = 409, - [442] = 415, - [443] = 443, - [444] = 407, - [445] = 412, - [446] = 422, - [447] = 447, - [448] = 447, - [449] = 372, - [450] = 372, - [451] = 447, - [452] = 447, - [453] = 447, - [454] = 447, - [455] = 447, - [456] = 447, - [457] = 457, - [458] = 75, - [459] = 459, - [460] = 460, + [416] = 413, + [417] = 412, + [418] = 412, + [419] = 415, + [420] = 414, + [421] = 412, + [422] = 412, + [423] = 415, + [424] = 411, + [425] = 411, + [426] = 426, + [427] = 427, + [428] = 426, + [429] = 429, + [430] = 411, + [431] = 426, + [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] = 460, - [464] = 460, - [465] = 460, - [466] = 460, + [463] = 461, + [464] = 461, + [465] = 461, + [466] = 461, [467] = 461, - [468] = 468, - [469] = 461, - [470] = 461, - [471] = 461, - [472] = 460, - [473] = 473, - [474] = 474, - [475] = 475, - [476] = 475, + [468] = 461, + [469] = 469, + [470] = 80, + [471] = 471, + [472] = 99, + [473] = 102, + [474] = 84, + [475] = 86, + [476] = 476, [477] = 477, - [478] = 478, - [479] = 477, - [480] = 480, - [481] = 481, - [482] = 474, - [483] = 475, - [484] = 484, - [485] = 485, - [486] = 477, - [487] = 474, - [488] = 480, - [489] = 473, - [490] = 480, - [491] = 491, - [492] = 492, - [493] = 372, - [494] = 494, - [495] = 492, - [496] = 492, - [497] = 497, - [498] = 498, - [499] = 499, - [500] = 372, + [478] = 476, + [479] = 476, + [480] = 477, + [481] = 98, + [482] = 87, + [483] = 476, + [484] = 93, + [485] = 94, + [486] = 115, + [487] = 477, + [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] = 503, - [504] = 504, - [505] = 505, - [506] = 506, - [507] = 507, - [508] = 508, - [509] = 509, - [510] = 510, - [511] = 511, - [512] = 512, - [513] = 513, - [514] = 514, - [515] = 515, - [516] = 515, - [517] = 515, - [518] = 518, - [519] = 515, - [520] = 520, - [521] = 521, - [522] = 522, - [523] = 523, - [524] = 524, - [525] = 525, - [526] = 526, - [527] = 526, - [528] = 528, - [529] = 529, + [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, [530] = 530, - [531] = 531, - [532] = 532, - [533] = 533, - [534] = 534, + [531] = 120, + [532] = 121, + [533] = 105, + [534] = 106, [535] = 535, [536] = 536, [537] = 537, [538] = 538, [539] = 539, - [540] = 540, + [540] = 538, [541] = 541, - [542] = 542, - [543] = 543, - [544] = 544, - [545] = 545, - [546] = 459, + [542] = 541, + [543] = 537, + [544] = 535, + [545] = 538, + [546] = 537, [547] = 547, - [548] = 548, - [549] = 544, - [550] = 550, - [551] = 551, - [552] = 552, + [548] = 541, + [549] = 549, + [550] = 549, + [551] = 535, + [552] = 541, [553] = 553, - [554] = 552, - [555] = 555, - [556] = 556, + [554] = 549, + [555] = 541, + [556] = 409, [557] = 557, - [558] = 548, - [559] = 553, - [560] = 544, + [558] = 558, + [559] = 409, + [560] = 409, [561] = 561, - [562] = 548, - [563] = 544, - [564] = 564, - [565] = 565, + [562] = 562, + [563] = 563, + [564] = 558, + [565] = 562, [566] = 566, - [567] = 567, - [568] = 555, - [569] = 561, - [570] = 544, - [571] = 550, - [572] = 572, - [573] = 555, - [574] = 551, - [575] = 575, - [576] = 547, - [577] = 575, - [578] = 567, - [579] = 557, - [580] = 556, - [581] = 553, - [582] = 555, - [583] = 561, - [584] = 552, - [585] = 567, - [586] = 551, - [587] = 557, - [588] = 555, - [589] = 556, - [590] = 551, + [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, + [582] = 582, + [583] = 583, + [584] = 584, + [585] = 585, + [586] = 586, + [587] = 584, + [588] = 588, + [589] = 589, + [590] = 590, [591] = 591, [592] = 592, - [593] = 544, - [594] = 552, - [595] = 575, - [596] = 555, - [597] = 553, - [598] = 548, - [599] = 561, - [600] = 575, + [593] = 592, + [594] = 585, + [595] = 595, + [596] = 591, + [597] = 597, + [598] = 597, + [599] = 597, + [600] = 600, [601] = 601, - [602] = 556, - [603] = 550, - [604] = 604, - [605] = 557, - [606] = 567, - [607] = 607, - [608] = 608, + [602] = 601, + [603] = 600, + [604] = 600, + [605] = 601, + [606] = 606, + [607] = 606, + [608] = 606, [609] = 609, - [610] = 610, + [610] = 606, [611] = 611, - [612] = 612, - [613] = 613, - [614] = 614, + [612] = 611, + [613] = 611, + [614] = 611, [615] = 615, [616] = 616, - [617] = 617, + [617] = 616, [618] = 618, [619] = 619, - [620] = 615, + [620] = 620, [621] = 621, - [622] = 615, + [622] = 622, [623] = 623, [624] = 624, - [625] = 625, + [625] = 621, [626] = 626, - [627] = 615, + [627] = 627, [628] = 628, [629] = 629, - [630] = 621, + [630] = 630, [631] = 631, - [632] = 632, + [632] = 630, [633] = 633, [634] = 634, - [635] = 635, - [636] = 636, + [635] = 620, + [636] = 619, [637] = 637, [638] = 638, - [639] = 637, - [640] = 640, - [641] = 641, - [642] = 633, - [643] = 641, - [644] = 635, + [639] = 628, + [640] = 619, + [641] = 619, + [642] = 619, + [643] = 643, + [644] = 626, [645] = 645, - [646] = 632, - [647] = 647, - [648] = 648, - [649] = 649, - [650] = 632, - [651] = 651, - [652] = 652, - [653] = 633, - [654] = 637, - [655] = 631, - [656] = 656, - [657] = 635, - [658] = 652, - [659] = 656, - [660] = 660, - [661] = 661, - [662] = 662, - [663] = 661, - [664] = 648, - [665] = 665, - [666] = 640, - [667] = 667, - [668] = 668, - [669] = 651, - [670] = 647, - [671] = 671, - [672] = 641, - [673] = 665, - [674] = 667, - [675] = 661, - [676] = 667, - [677] = 661, - [678] = 660, - [679] = 660, - [680] = 648, - [681] = 667, - [682] = 682, - [683] = 656, - [684] = 652, - [685] = 640, - [686] = 647, - [687] = 635, - [688] = 641, - [689] = 631, - [690] = 667, - [691] = 691, - [692] = 637, + [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, + [662] = 628, + [663] = 630, + [664] = 620, + [665] = 628, + [666] = 657, + [667] = 624, + [668] = 657, + [669] = 621, + [670] = 670, + [671] = 623, + [672] = 623, + [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] = 633, - [695] = 640, - [696] = 682, - [697] = 636, - [698] = 698, - [699] = 665, - [700] = 632, - [701] = 647, + [694] = 694, + [695] = 695, + [696] = 696, + [697] = 697, + [698] = 694, + [699] = 696, + [700] = 692, + [701] = 701, [702] = 702, [703] = 703, - [704] = 661, - [705] = 656, - [706] = 665, - [707] = 652, - [708] = 645, - [709] = 660, + [704] = 693, + [705] = 705, + [706] = 706, + [707] = 707, + [708] = 708, + [709] = 707, [710] = 710, - [711] = 711, - [712] = 636, - [713] = 656, - [714] = 665, - [715] = 660, - [716] = 682, - [717] = 636, - [718] = 648, - [719] = 636, - [720] = 667, + [711] = 705, + [712] = 712, + [713] = 696, + [714] = 696, + [715] = 715, + [716] = 716, + [717] = 717, + [718] = 718, + [719] = 719, + [720] = 720, [721] = 721, - [722] = 641, - [723] = 648, - [724] = 632, - [725] = 640, - [726] = 641, - [727] = 647, - [728] = 636, - [729] = 632, - [730] = 633, - [731] = 633, - [732] = 637, - [733] = 703, - [734] = 631, - [735] = 635, - [736] = 652, - [737] = 656, - [738] = 660, - [739] = 661, - [740] = 651, - [741] = 640, - [742] = 647, - [743] = 743, - [744] = 631, - [745] = 745, - [746] = 637, - [747] = 631, - [748] = 652, - [749] = 635, - [750] = 648, - [751] = 751, - [752] = 752, - [753] = 753, + [722] = 722, + [723] = 723, + [724] = 724, + [725] = 725, + [726] = 724, + [727] = 719, + [728] = 728, + [729] = 729, + [730] = 730, + [731] = 731, + [732] = 732, + [733] = 733, + [734] = 734, + [735] = 735, + [736] = 736, + [737] = 737, + [738] = 738, + [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, [754] = 754, - [755] = 755, - [756] = 756, - [757] = 757, - [758] = 758, - [759] = 759, - [760] = 760, - [761] = 761, - [762] = 762, - [763] = 763, - [764] = 764, - [765] = 765, - [766] = 766, - [767] = 767, - [768] = 768, - [769] = 769, - [770] = 770, - [771] = 771, - [772] = 772, - [773] = 773, - [774] = 545, - [775] = 638, - [776] = 776, - [777] = 777, - [778] = 777, - [779] = 779, - [780] = 693, - [781] = 781, - [782] = 782, - [783] = 783, - [784] = 773, - [785] = 772, - [786] = 772, - [787] = 787, - [788] = 777, + [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, + [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] = 773, - [791] = 791, - [792] = 792, - [793] = 793, - [794] = 777, - [795] = 795, - [796] = 711, - [797] = 797, - [798] = 772, - [799] = 799, - [800] = 545, - [801] = 801, - [802] = 773, - [803] = 803, - [804] = 804, - [805] = 805, - [806] = 431, - [807] = 807, - [808] = 808, - [809] = 809, - [810] = 810, - [811] = 523, - [812] = 812, - [813] = 813, - [814] = 814, - [815] = 443, - [816] = 816, - [817] = 817, - [818] = 818, - [819] = 819, - [820] = 820, + [790] = 738, + [791] = 754, + [792] = 735, + [793] = 729, + [794] = 732, + [795] = 728, + [796] = 728, + [797] = 734, + [798] = 737, + [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] = 822, - [823] = 823, - [824] = 824, - [825] = 825, - [826] = 826, - [827] = 827, - [828] = 828, - [829] = 829, - [830] = 830, - [831] = 831, - [832] = 832, + [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] = 834, - [835] = 835, + [834] = 732, + [835] = 737, [836] = 836, [837] = 837, - [838] = 838, - [839] = 839, - [840] = 840, - [841] = 841, - [842] = 842, - [843] = 843, - [844] = 141, - [845] = 845, - [846] = 846, - [847] = 847, - [848] = 848, - [849] = 849, - [850] = 850, - [851] = 128, - [852] = 852, - [853] = 853, - [854] = 854, - [855] = 855, - [856] = 856, - [857] = 857, - [858] = 858, - [859] = 859, - [860] = 860, - [861] = 861, - [862] = 862, - [863] = 863, - [864] = 864, - [865] = 865, - [866] = 142, - [867] = 867, - [868] = 868, - [869] = 869, - [870] = 870, - [871] = 871, + [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] = 876, - [877] = 877, + [876] = 873, + [877] = 873, [878] = 878, [879] = 879, - [880] = 880, - [881] = 126, - [882] = 882, - [883] = 883, - [884] = 884, + [880] = 873, + [881] = 881, + [882] = 874, + [883] = 874, + [884] = 618, [885] = 885, - [886] = 886, - [887] = 887, - [888] = 133, + [886] = 874, + [887] = 879, + [888] = 879, [889] = 889, - [890] = 890, + [890] = 879, [891] = 891, - [892] = 148, - [893] = 893, - [894] = 894, + [892] = 892, + [893] = 891, + [894] = 875, [895] = 895, - [896] = 896, - [897] = 693, - [898] = 711, - [899] = 896, - [900] = 638, - [901] = 896, - [902] = 896, - [903] = 662, - [904] = 443, + [896] = 889, + [897] = 897, + [898] = 872, + [899] = 127, + [900] = 900, + [901] = 901, + [902] = 902, + [903] = 903, + [904] = 904, [905] = 905, - [906] = 906, - [907] = 431, - [908] = 908, - [909] = 909, - [910] = 910, + [906] = 149, + [907] = 157, + [908] = 159, + [909] = 145, + [910] = 151, [911] = 911, [912] = 912, [913] = 913, @@ -4292,1126 +4299,1126 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [916] = 916, [917] = 917, [918] = 918, - [919] = 919, - [920] = 920, - [921] = 872, - [922] = 861, - [923] = 863, - [924] = 880, - [925] = 128, - [926] = 886, - [927] = 148, - [928] = 872, - [929] = 523, - [930] = 880, - [931] = 886, - [932] = 889, - [933] = 889, - [934] = 126, - [935] = 850, - [936] = 864, - [937] = 864, - [938] = 843, - [939] = 887, - [940] = 671, - [941] = 863, - [942] = 894, - [943] = 894, - [944] = 762, - [945] = 843, - [946] = 133, - [947] = 887, - [948] = 850, - [949] = 859, - [950] = 133, - [951] = 148, - [952] = 859, - [953] = 142, - [954] = 861, - [955] = 141, - [956] = 142, - [957] = 126, - [958] = 141, - [959] = 128, - [960] = 960, - [961] = 961, - [962] = 776, - [963] = 963, - [964] = 964, - [965] = 799, - [966] = 966, - [967] = 528, - [968] = 525, - [969] = 969, - [970] = 969, - [971] = 969, - [972] = 969, + [919] = 885, + [920] = 878, + [921] = 897, + [922] = 922, + [923] = 918, + [924] = 918, + [925] = 918, + [926] = 895, + [927] = 881, + [928] = 881, + [929] = 878, + [930] = 885, + [931] = 922, + [932] = 932, + [933] = 501, + [934] = 934, + [935] = 935, + [936] = 892, + [937] = 937, + [938] = 938, + [939] = 939, + [940] = 502, + [941] = 941, + [942] = 942, + [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] = 963, + [974] = 917, [975] = 975, - [976] = 975, - [977] = 977, - [978] = 975, - [979] = 975, - [980] = 961, - [981] = 975, - [982] = 913, - [983] = 910, - [984] = 919, - [985] = 915, - [986] = 912, - [987] = 987, - [988] = 914, - [989] = 920, - [990] = 917, - [991] = 909, - [992] = 523, - [993] = 911, + [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] = 908, - [996] = 918, - [997] = 762, + [995] = 995, + [996] = 996, + [997] = 997, [998] = 998, [999] = 999, [1000] = 1000, - [1001] = 998, + [1001] = 1001, [1002] = 1002, - [1003] = 99, - [1004] = 102, - [1005] = 1005, - [1006] = 87, - [1007] = 86, - [1008] = 79, - [1009] = 78, - [1010] = 1010, - [1011] = 1005, - [1012] = 1012, - [1013] = 100, - [1014] = 92, - [1015] = 98, - [1016] = 89, - [1017] = 1005, - [1018] = 1005, - [1019] = 88, - [1020] = 103, + [1003] = 501, + [1004] = 1004, + [1005] = 922, + [1006] = 1006, + [1007] = 1007, + [1008] = 1008, + [1009] = 1009, + [1010] = 897, + [1011] = 1011, + [1012] = 939, + [1013] = 1013, + [1014] = 1014, + [1015] = 1015, + [1016] = 937, + [1017] = 938, + [1018] = 1018, + [1019] = 1019, + [1020] = 895, [1021] = 1021, - [1022] = 76, - [1023] = 110, - [1024] = 114, - [1025] = 115, - [1026] = 117, - [1027] = 90, - [1028] = 910, - [1029] = 918, - [1030] = 801, - [1031] = 914, - [1032] = 910, - [1033] = 920, - [1034] = 911, - [1035] = 917, - [1036] = 918, - [1037] = 781, - [1038] = 909, - [1039] = 917, - [1040] = 908, - [1041] = 911, - [1042] = 909, - [1043] = 920, - [1044] = 912, - [1045] = 912, - [1046] = 919, - [1047] = 915, - [1048] = 913, - [1049] = 789, - [1050] = 783, - [1051] = 915, - [1052] = 919, - [1053] = 908, - [1054] = 914, - [1055] = 913, - [1056] = 782, - [1057] = 771, - [1058] = 1058, - [1059] = 779, + [1022] = 1022, + [1023] = 1023, + [1024] = 1024, + [1025] = 1025, + [1026] = 1026, + [1027] = 1027, + [1028] = 1028, + [1029] = 996, + [1030] = 1030, + [1031] = 1031, + [1032] = 1032, + [1033] = 1033, + [1034] = 1034, + [1035] = 932, + [1036] = 995, + [1037] = 502, + [1038] = 1038, + [1039] = 1039, + [1040] = 1040, + [1041] = 1041, + [1042] = 1042, + [1043] = 1040, + [1044] = 1044, + [1045] = 1045, + [1046] = 1046, + [1047] = 1047, + [1048] = 1048, + [1049] = 1049, + [1050] = 1040, + [1051] = 1051, + [1052] = 1052, + [1053] = 1053, + [1054] = 1054, + [1055] = 1055, + [1056] = 1056, + [1057] = 1040, + [1058] = 934, + [1059] = 1059, [1060] = 1060, [1061] = 1061, [1062] = 1062, - [1063] = 792, - [1064] = 795, - [1065] = 797, - [1066] = 762, + [1063] = 1063, + [1064] = 1064, + [1065] = 1065, + [1066] = 1066, [1067] = 1067, [1068] = 1068, [1069] = 1069, [1070] = 1070, [1071] = 1071, - [1072] = 98, - [1073] = 102, - [1074] = 103, - [1075] = 89, - [1076] = 87, - [1077] = 90, - [1078] = 92, - [1079] = 76, - [1080] = 110, - [1081] = 114, - [1082] = 115, - [1083] = 99, - [1084] = 117, - [1085] = 100, - [1086] = 1086, - [1087] = 78, - [1088] = 79, - [1089] = 88, - [1090] = 86, - [1091] = 905, - [1092] = 916, + [1072] = 1072, + [1073] = 1049, + [1074] = 1074, + [1075] = 1075, + [1076] = 1076, + [1077] = 1077, + [1078] = 1078, + [1079] = 1079, + [1080] = 1080, + [1081] = 1081, + [1082] = 1082, + [1083] = 1083, + [1084] = 1084, + [1085] = 1085, + [1086] = 941, + [1087] = 1087, + [1088] = 1088, + [1089] = 1089, + [1090] = 942, + [1091] = 1091, + [1092] = 1034, [1093] = 1093, [1094] = 1094, [1095] = 1095, [1096] = 1096, - [1097] = 1097, - [1098] = 912, - [1099] = 914, - [1100] = 1100, + [1097] = 1096, + [1098] = 1098, + [1099] = 1096, + [1100] = 1004, [1101] = 1101, - [1102] = 960, - [1103] = 913, - [1104] = 919, - [1105] = 915, - [1106] = 964, - [1107] = 910, + [1102] = 943, + [1103] = 1096, + [1104] = 1104, + [1105] = 999, + [1106] = 1106, + [1107] = 1107, [1108] = 1108, - [1109] = 1109, + [1109] = 1008, [1110] = 1110, - [1111] = 911, - [1112] = 909, - [1113] = 920, - [1114] = 917, - [1115] = 918, - [1116] = 966, - [1117] = 908, - [1118] = 1118, + [1111] = 1026, + [1112] = 1112, + [1113] = 1096, + [1114] = 1096, + [1115] = 992, + [1116] = 956, + [1117] = 1117, + [1118] = 922, [1119] = 1119, [1120] = 1120, [1121] = 1121, [1122] = 1122, [1123] = 1123, [1124] = 1124, - [1125] = 1125, + [1125] = 1087, [1126] = 1126, - [1127] = 1122, + [1127] = 1034, [1128] = 1128, - [1129] = 1125, - [1130] = 1125, - [1131] = 1122, + [1129] = 1018, + [1130] = 1130, + [1131] = 1131, [1132] = 1132, - [1133] = 1122, - [1134] = 1125, + [1133] = 1133, + [1134] = 979, [1135] = 1135, - [1136] = 1136, + [1136] = 1011, [1137] = 1137, - [1138] = 1138, - [1139] = 1135, + [1138] = 1008, + [1139] = 934, [1140] = 1140, [1141] = 1141, [1142] = 1142, [1143] = 1143, - [1144] = 1144, + [1144] = 1014, [1145] = 1145, - [1146] = 1144, + [1146] = 1146, [1147] = 1147, - [1148] = 1148, + [1148] = 1000, [1149] = 1149, - [1150] = 1147, - [1151] = 920, - [1152] = 911, - [1153] = 1153, - [1154] = 1154, - [1155] = 1154, - [1156] = 1156, - [1157] = 1157, - [1158] = 1158, - [1159] = 1159, - [1160] = 914, - [1161] = 910, - [1162] = 1162, - [1163] = 1154, - [1164] = 919, - [1165] = 915, - [1166] = 912, - [1167] = 1157, - [1168] = 909, - [1169] = 1154, - [1170] = 917, - [1171] = 1171, - [1172] = 918, - [1173] = 1156, - [1174] = 908, - [1175] = 913, + [1150] = 1150, + [1151] = 1151, + [1152] = 1013, + [1153] = 1021, + [1154] = 978, + [1155] = 975, + [1156] = 989, + [1157] = 973, + [1158] = 1093, + [1159] = 1027, + [1160] = 1022, + [1161] = 981, + [1162] = 1019, + [1163] = 1163, + [1164] = 1164, + [1165] = 1002, + [1166] = 1166, + [1167] = 1031, + [1168] = 1168, + [1169] = 1026, + [1170] = 1004, + [1171] = 1006, + [1172] = 1172, + [1173] = 1173, + [1174] = 1174, + [1175] = 1175, [1176] = 1176, - [1177] = 1156, - [1178] = 1154, - [1179] = 1157, - [1180] = 1180, - [1181] = 1171, - [1182] = 1182, - [1183] = 1183, - [1184] = 1184, - [1185] = 1185, - [1186] = 1186, - [1187] = 1187, - [1188] = 1108, - [1189] = 1189, - [1190] = 1190, - [1191] = 1191, - [1192] = 1192, - [1193] = 1157, - [1194] = 1194, - [1195] = 1154, - [1196] = 1156, - [1197] = 1197, - [1198] = 1198, - [1199] = 1199, - [1200] = 1200, - [1201] = 1201, - [1202] = 1202, - [1203] = 1203, - [1204] = 1204, - [1205] = 1205, - [1206] = 1206, - [1207] = 1201, - [1208] = 1201, - [1209] = 1209, - [1210] = 1205, - [1211] = 1211, - [1212] = 1212, - [1213] = 1213, - [1214] = 1201, - [1215] = 1215, + [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] = 1201, - [1218] = 1218, - [1219] = 1219, - [1220] = 1220, - [1221] = 905, - [1222] = 1222, - [1223] = 1223, - [1224] = 1224, - [1225] = 1225, - [1226] = 1226, + [1217] = 1078, + [1218] = 1061, + [1219] = 1067, + [1220] = 1056, + [1221] = 1044, + [1222] = 1049, + [1223] = 1064, + [1224] = 1056, + [1225] = 1039, + [1226] = 1045, [1227] = 1227, - [1228] = 1228, - [1229] = 1229, - [1230] = 1230, - [1231] = 1231, - [1232] = 1232, - [1233] = 1233, - [1234] = 1231, - [1235] = 1231, - [1236] = 1236, - [1237] = 1237, - [1238] = 1231, - [1239] = 1239, - [1240] = 1240, - [1241] = 1241, - [1242] = 1241, - [1243] = 883, - [1244] = 1241, - [1245] = 1245, - [1246] = 890, - [1247] = 1241, - [1248] = 1241, - [1249] = 1241, - [1250] = 1245, - [1251] = 1245, - [1252] = 1245, - [1253] = 1253, - [1254] = 1254, - [1255] = 1255, - [1256] = 1256, - [1257] = 1257, - [1258] = 1258, - [1259] = 1259, - [1260] = 1260, - [1261] = 1261, - [1262] = 1262, - [1263] = 1263, - [1264] = 1261, - [1265] = 1260, - [1266] = 1266, - [1267] = 1260, - [1268] = 1261, - [1269] = 1260, - [1270] = 1270, - [1271] = 1271, - [1272] = 1272, - [1273] = 874, - [1274] = 1274, - [1275] = 1275, + [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] = 1276, - [1278] = 1275, - [1279] = 883, - [1280] = 1274, - [1281] = 1276, - [1282] = 1282, - [1283] = 1274, - [1284] = 870, - [1285] = 1285, - [1286] = 1286, - [1287] = 890, - [1288] = 852, - [1289] = 838, - [1290] = 1270, - [1291] = 1275, - [1292] = 885, - [1293] = 879, - [1294] = 1274, - [1295] = 839, - [1296] = 882, - [1297] = 1297, - [1298] = 1298, - [1299] = 1299, - [1300] = 1300, - [1301] = 1301, - [1302] = 1302, - [1303] = 1303, - [1304] = 1304, - [1305] = 1305, - [1306] = 1306, - [1307] = 1307, - [1308] = 1308, - [1309] = 1304, - [1310] = 1303, - [1311] = 1302, - [1312] = 1312, - [1313] = 1313, - [1314] = 1312, - [1315] = 1297, - [1316] = 1301, - [1317] = 1300, - [1318] = 1299, - [1319] = 1319, - [1320] = 1320, - [1321] = 1321, - [1322] = 1305, - [1323] = 1323, - [1324] = 1312, - [1325] = 1312, - [1326] = 1298, - [1327] = 1306, - [1328] = 1328, - [1329] = 1329, - [1330] = 1330, - [1331] = 1331, - [1332] = 1320, - [1333] = 1333, - [1334] = 1334, - [1335] = 1335, - [1336] = 1336, - [1337] = 1323, - [1338] = 1338, - [1339] = 1339, - [1340] = 1340, - [1341] = 1341, - [1342] = 1297, - [1343] = 1343, - [1344] = 1344, - [1345] = 1345, - [1346] = 1346, - [1347] = 1321, - [1348] = 1348, - [1349] = 1349, - [1350] = 1350, - [1351] = 1351, - [1352] = 1352, - [1353] = 757, - [1354] = 1349, - [1355] = 757, - [1356] = 1313, - [1357] = 1071, - [1358] = 1352, - [1359] = 1341, - [1360] = 1070, - [1361] = 1319, - [1362] = 1362, - [1363] = 1363, - [1364] = 1364, - [1365] = 1351, - [1366] = 1308, - [1367] = 1336, - [1368] = 1331, - [1369] = 1329, - [1370] = 1328, - [1371] = 1350, - [1372] = 1345, - [1373] = 1363, - [1374] = 1374, - [1375] = 1307, - [1376] = 1376, - [1377] = 1377, - [1378] = 1362, - [1379] = 1068, - [1380] = 1067, - [1381] = 1362, - [1382] = 1382, - [1383] = 1383, - [1384] = 1362, - [1385] = 1363, - [1386] = 1386, - [1387] = 1387, - [1388] = 1388, - [1389] = 1364, - [1390] = 1390, - [1391] = 1391, - [1392] = 1392, - [1393] = 1393, - [1394] = 1394, - [1395] = 1395, - [1396] = 1396, - [1397] = 1397, - [1398] = 1398, - [1399] = 1399, + [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, + [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] = 1401, - [1402] = 1401, - [1403] = 1403, + [1401] = 1400, + [1402] = 1402, + [1403] = 1041, [1404] = 1404, - [1405] = 1401, - [1406] = 1400, - [1407] = 1401, - [1408] = 1400, - [1409] = 1409, + [1405] = 1405, + [1406] = 1049, + [1407] = 1402, + [1408] = 1404, + [1409] = 1405, [1410] = 1410, - [1411] = 1400, + [1411] = 1031, [1412] = 1412, - [1413] = 1413, - [1414] = 1414, - [1415] = 1414, - [1416] = 1414, - [1417] = 1413, - [1418] = 1418, - [1419] = 1413, - [1420] = 1420, - [1421] = 1421, - [1422] = 1414, - [1423] = 1413, - [1424] = 1413, - [1425] = 1425, - [1426] = 1426, - [1427] = 1427, - [1428] = 1413, - [1429] = 1429, - [1430] = 1430, - [1431] = 1431, - [1432] = 1432, - [1433] = 1433, - [1434] = 1434, - [1435] = 1435, - [1436] = 1436, - [1437] = 1437, - [1438] = 1438, - [1439] = 1439, - [1440] = 1440, - [1441] = 1441, + [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, + [1438] = 1030, + [1439] = 89, + [1440] = 1001, + [1441] = 1028, [1442] = 1442, [1443] = 1443, [1444] = 1444, [1445] = 1445, [1446] = 1446, - [1447] = 1447, + [1447] = 1001, [1448] = 1448, - [1449] = 1449, + [1449] = 1038, [1450] = 1450, [1451] = 1451, - [1452] = 1452, - [1453] = 1453, + [1452] = 1002, + [1453] = 1022, [1454] = 1454, [1455] = 1455, - [1456] = 1456, - [1457] = 1453, - [1458] = 1458, - [1459] = 1459, - [1460] = 1460, - [1461] = 1453, - [1462] = 1453, - [1463] = 1463, - [1464] = 1464, - [1465] = 1465, - [1466] = 1466, - [1467] = 1466, - [1468] = 1468, - [1469] = 1469, - [1470] = 1466, - [1471] = 1471, - [1472] = 1472, - [1473] = 1473, - [1474] = 1468, - [1475] = 1472, + [1456] = 1019, + [1457] = 1457, + [1458] = 1031, + [1459] = 1027, + [1460] = 1021, + [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, + [1475] = 1475, [1476] = 1476, - [1477] = 1468, - [1478] = 1478, - [1479] = 1472, - [1480] = 1469, - [1481] = 1466, + [1477] = 1031, + [1478] = 1002, + [1479] = 1021, + [1480] = 1480, + [1481] = 1480, [1482] = 1482, - [1483] = 1472, - [1484] = 1466, - [1485] = 1469, - [1486] = 1468, - [1487] = 1466, - [1488] = 1468, - [1489] = 1468, - [1490] = 1469, - [1491] = 1491, - [1492] = 1492, - [1493] = 1493, - [1494] = 1493, - [1495] = 1493, - [1496] = 1496, - [1497] = 1496, - [1498] = 1496, - [1499] = 1496, + [1483] = 1038, + [1484] = 1033, + [1485] = 1485, + [1486] = 1032, + [1487] = 1487, + [1488] = 1030, + [1489] = 1028, + [1490] = 1001, + [1491] = 1027, + [1492] = 1487, + [1493] = 1485, + [1494] = 1494, + [1495] = 1480, + [1496] = 1480, + [1497] = 1475, + [1498] = 1487, + [1499] = 1476, [1500] = 1500, - [1501] = 1493, - [1502] = 1502, - [1503] = 1503, - [1504] = 1504, - [1505] = 1505, - [1506] = 1506, - [1507] = 1507, - [1508] = 1508, - [1509] = 1507, - [1510] = 1510, - [1511] = 1511, - [1512] = 1512, - [1513] = 1507, - [1514] = 1514, + [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] = 1511, - [1518] = 1518, - [1519] = 1519, + [1517] = 1516, + [1518] = 1075, + [1519] = 1077, [1520] = 1520, - [1521] = 1521, - [1522] = 1522, - [1523] = 1511, - [1524] = 1524, - [1525] = 1516, - [1526] = 1504, - [1527] = 1511, + [1521] = 1055, + [1522] = 1051, + [1523] = 1066, + [1524] = 1520, + [1525] = 1515, + [1526] = 1054, + [1527] = 1527, [1528] = 1528, - [1529] = 1516, - [1530] = 1504, - [1531] = 1516, - [1532] = 1532, + [1529] = 1529, + [1530] = 1529, + [1531] = 1083, + [1532] = 997, [1533] = 1533, [1534] = 1534, - [1535] = 1520, - [1536] = 1536, - [1537] = 1518, + [1535] = 994, + [1536] = 1087, + [1537] = 1104, [1538] = 1538, [1539] = 1539, - [1540] = 1507, - [1541] = 1504, - [1542] = 1520, - [1543] = 1518, - [1544] = 1544, - [1545] = 1545, - [1546] = 1546, - [1547] = 1547, - [1548] = 1548, + [1540] = 1534, + [1541] = 1538, + [1542] = 1533, + [1543] = 1534, + [1544] = 1093, + [1545] = 1094, + [1546] = 1091, + [1547] = 1533, + [1548] = 1534, [1549] = 1549, - [1550] = 1518, - [1551] = 1551, - [1552] = 1520, - [1553] = 1553, - [1554] = 1554, - [1555] = 1555, - [1556] = 1555, - [1557] = 1557, + [1550] = 1533, + [1551] = 1095, + [1552] = 998, + [1553] = 1539, + [1554] = 1538, + [1555] = 1539, + [1556] = 1089, + [1557] = 1101, [1558] = 1558, - [1559] = 1559, + [1559] = 1009, [1560] = 1560, - [1561] = 1555, - [1562] = 1553, + [1561] = 1561, + [1562] = 1562, [1563] = 1563, - [1564] = 1564, - [1565] = 1565, - [1566] = 1553, - [1567] = 1567, - [1568] = 1555, - [1569] = 1569, - [1570] = 1570, - [1571] = 1571, - [1572] = 1572, - [1573] = 1571, + [1564] = 1142, + [1565] = 1561, + [1566] = 1558, + [1567] = 1019, + [1568] = 1568, + [1569] = 1022, + [1570] = 1028, + [1571] = 1558, + [1572] = 1093, + [1573] = 1573, [1574] = 1574, - [1575] = 1571, + [1575] = 1561, [1576] = 1576, - [1577] = 1577, + [1577] = 1560, [1578] = 1578, - [1579] = 1578, - [1580] = 1578, - [1581] = 1581, - [1582] = 1576, - [1583] = 1583, - [1584] = 1571, - [1585] = 1578, - [1586] = 1576, - [1587] = 1587, - [1588] = 1576, - [1589] = 1589, - [1590] = 1590, - [1591] = 1591, - [1592] = 1592, + [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, [1593] = 1593, [1594] = 1594, - [1595] = 1595, - [1596] = 1596, - [1597] = 1591, - [1598] = 1598, - [1599] = 1593, - [1600] = 1600, - [1601] = 1592, - [1602] = 1592, - [1603] = 1596, - [1604] = 1595, + [1595] = 1568, + [1596] = 1087, + [1597] = 1597, + [1598] = 1568, + [1599] = 1599, + [1600] = 1021, + [1601] = 1568, + [1602] = 1602, + [1603] = 1561, + [1604] = 1604, [1605] = 1605, - [1606] = 1596, - [1607] = 1595, - [1608] = 1600, - [1609] = 1589, - [1610] = 1591, - [1611] = 1589, - [1612] = 1592, - [1613] = 1596, - [1614] = 1614, - [1615] = 1615, - [1616] = 1593, - [1617] = 1600, - [1618] = 1595, - [1619] = 1593, - [1620] = 1591, - [1621] = 1600, - [1622] = 1589, + [1606] = 1561, + [1607] = 1033, + [1608] = 1608, + [1609] = 1560, + [1610] = 1117, + [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, [1624] = 1624, - [1625] = 1625, + [1625] = 1055, [1626] = 1626, - [1627] = 1627, + [1627] = 1054, [1628] = 1628, - [1629] = 1629, + [1629] = 1051, [1630] = 1630, [1631] = 1631, [1632] = 1632, [1633] = 1633, - [1634] = 1634, - [1635] = 1635, + [1634] = 1632, + [1635] = 1632, [1636] = 1636, - [1637] = 1637, + [1637] = 1633, [1638] = 1638, - [1639] = 1639, - [1640] = 1640, + [1639] = 1624, + [1640] = 1624, [1641] = 1641, - [1642] = 1642, - [1643] = 1643, + [1642] = 1066, + [1643] = 1624, [1644] = 1644, - [1645] = 1645, - [1646] = 1645, - [1647] = 1637, - [1648] = 1648, - [1649] = 1649, - [1650] = 1650, - [1651] = 1651, - [1652] = 1637, - [1653] = 1643, - [1654] = 1642, - [1655] = 1645, - [1656] = 1656, + [1645] = 1641, + [1646] = 1646, + [1647] = 1632, + [1648] = 1626, + [1649] = 1075, + [1650] = 1077, + [1651] = 1636, + [1652] = 1652, + [1653] = 1630, + [1654] = 1632, + [1655] = 1630, + [1656] = 1624, [1657] = 1657, - [1658] = 1658, - [1659] = 1642, + [1658] = 1628, + [1659] = 1633, [1660] = 1660, - [1661] = 1645, + [1661] = 1661, [1662] = 1662, - [1663] = 1643, - [1664] = 1645, - [1665] = 1665, - [1666] = 1660, - [1667] = 1637, - [1668] = 1660, + [1663] = 1663, + [1664] = 1091, + [1665] = 1094, + [1666] = 1087, + [1667] = 1083, + [1668] = 996, [1669] = 1669, [1670] = 1670, - [1671] = 1642, - [1672] = 1672, - [1673] = 1643, + [1671] = 995, + [1672] = 993, + [1673] = 1104, [1674] = 1674, - [1675] = 1675, + [1675] = 1089, [1676] = 1676, - [1677] = 1677, - [1678] = 1645, - [1679] = 1637, - [1680] = 1680, - [1681] = 1637, + [1677] = 1093, + [1678] = 1678, + [1679] = 1679, + [1680] = 1101, + [1681] = 1681, [1682] = 1682, - [1683] = 1683, - [1684] = 1684, - [1685] = 1642, + [1683] = 1669, + [1684] = 1095, + [1685] = 1685, [1686] = 1686, - [1687] = 1642, - [1688] = 1643, - [1689] = 1643, - [1690] = 1690, - [1691] = 1691, + [1687] = 1687, + [1688] = 1687, + [1689] = 1147, + [1690] = 1482, + [1691] = 1686, [1692] = 1692, [1693] = 1693, - [1694] = 1694, - [1695] = 1695, - [1696] = 1696, - [1697] = 1697, - [1698] = 1696, + [1694] = 1686, + [1695] = 1087, + [1696] = 1093, + [1697] = 1685, + [1698] = 1142, [1699] = 1699, - [1700] = 1696, - [1701] = 1701, + [1700] = 1686, + [1701] = 1117, [1702] = 1702, - [1703] = 1696, - [1704] = 1704, - [1705] = 1696, + [1703] = 941, + [1704] = 1693, + [1705] = 1705, [1706] = 1706, - [1707] = 1707, - [1708] = 1708, - [1709] = 1709, - [1710] = 1710, - [1711] = 1696, - [1712] = 1712, - [1713] = 1696, - [1714] = 1714, - [1715] = 1715, + [1707] = 943, + [1708] = 1706, + [1709] = 1705, + [1710] = 1706, + [1711] = 1706, + [1712] = 942, + [1713] = 1705, + [1714] = 1706, + [1715] = 1706, [1716] = 1716, - [1717] = 1717, - [1718] = 1718, + [1717] = 1706, + [1718] = 1705, [1719] = 1719, [1720] = 1720, [1721] = 1721, [1722] = 1722, - [1723] = 1721, + [1723] = 1723, [1724] = 1724, - [1725] = 1721, - [1726] = 1726, + [1725] = 1594, + [1726] = 989, [1727] = 1727, [1728] = 1728, - [1729] = 1729, + [1729] = 1034, [1730] = 1730, - [1731] = 1731, - [1732] = 1732, + [1731] = 973, + [1732] = 941, [1733] = 1733, - [1734] = 1734, + [1734] = 1728, [1735] = 1735, - [1736] = 1736, - [1737] = 1737, - [1738] = 1726, - [1739] = 1739, - [1740] = 1740, - [1741] = 1741, - [1742] = 1721, - [1743] = 1733, - [1744] = 1744, - [1745] = 1728, - [1746] = 1733, + [1736] = 1735, + [1737] = 1008, + [1738] = 1735, + [1739] = 981, + [1740] = 1728, + [1741] = 1004, + [1742] = 1742, + [1743] = 978, + [1744] = 956, + [1745] = 1735, + [1746] = 975, [1747] = 1747, - [1748] = 1748, - [1749] = 1731, - [1750] = 1728, - [1751] = 1731, - [1752] = 1752, + [1748] = 1026, + [1749] = 1749, + [1750] = 1000, + [1751] = 1597, + [1752] = 979, [1753] = 1753, [1754] = 1754, - [1755] = 1721, - [1756] = 1756, - [1757] = 1757, - [1758] = 1758, + [1755] = 1733, + [1756] = 1753, + [1757] = 1754, + [1758] = 1107, [1759] = 1759, - [1760] = 1760, - [1761] = 1761, - [1762] = 1759, - [1763] = 1758, - [1764] = 1764, - [1765] = 1765, - [1766] = 1766, - [1767] = 1767, + [1760] = 973, + [1761] = 1004, + [1762] = 975, + [1763] = 1754, + [1764] = 956, + [1765] = 978, + [1766] = 943, + [1767] = 1753, [1768] = 1768, [1769] = 1769, - [1770] = 1770, + [1770] = 1026, [1771] = 1771, - [1772] = 1772, - [1773] = 1773, - [1774] = 1774, - [1775] = 1775, - [1776] = 1776, - [1777] = 1769, - [1778] = 1778, - [1779] = 1779, - [1780] = 1761, - [1781] = 1781, - [1782] = 1782, - [1783] = 1783, - [1784] = 1760, - [1785] = 1759, - [1786] = 1786, - [1787] = 1787, - [1788] = 1788, - [1789] = 1775, - [1790] = 1790, - [1791] = 1791, - [1792] = 1758, - [1793] = 1793, - [1794] = 1765, + [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, [1796] = 1796, - [1797] = 1773, - [1798] = 1772, - [1799] = 1799, - [1800] = 1772, - [1801] = 1801, - [1802] = 1767, - [1803] = 1760, - [1804] = 1773, - [1805] = 1771, - [1806] = 1774, + [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] = 1775, + [1809] = 1809, [1810] = 1810, [1811] = 1811, - [1812] = 1812, - [1813] = 1813, + [1812] = 1145, + [1813] = 1135, [1814] = 1814, - [1815] = 1815, + [1815] = 1140, [1816] = 1816, [1817] = 1817, - [1818] = 1790, - [1819] = 1757, - [1820] = 1781, - [1821] = 1767, + [1818] = 1818, + [1819] = 1150, + [1820] = 1149, + [1821] = 1164, [1822] = 1822, - [1823] = 1823, + [1823] = 1807, [1824] = 1824, [1825] = 1825, - [1826] = 1824, - [1827] = 1827, - [1828] = 1757, - [1829] = 1815, - [1830] = 1813, - [1831] = 1605, - [1832] = 1816, - [1833] = 1761, + [1826] = 1826, + [1827] = 1126, + [1828] = 1828, + [1829] = 1829, + [1830] = 1151, + [1831] = 1807, + [1832] = 1080, + [1833] = 1822, [1834] = 1834, - [1835] = 1835, - [1836] = 1765, - [1837] = 1764, - [1838] = 1827, - [1839] = 1766, - [1840] = 1825, - [1841] = 1841, - [1842] = 1758, - [1843] = 1825, - [1844] = 1759, + [1835] = 1824, + [1836] = 1130, + [1837] = 1826, + [1838] = 1838, + [1839] = 1839, + [1840] = 1840, + [1841] = 1132, + [1842] = 1842, + [1843] = 1124, + [1844] = 1177, [1845] = 1845, - [1846] = 1846, - [1847] = 1827, + [1846] = 1176, + [1847] = 1809, [1848] = 1848, - [1849] = 1760, - [1850] = 1761, - [1851] = 1813, - [1852] = 1772, - [1853] = 1815, - [1854] = 1757, - [1855] = 1808, - [1856] = 1773, - [1857] = 1774, - [1858] = 1775, - [1859] = 1788, - [1860] = 1781, - [1861] = 1861, - [1862] = 1767, - [1863] = 1863, - [1864] = 1808, - [1865] = 1768, + [1849] = 1849, + [1850] = 1850, + [1851] = 1174, + [1852] = 1128, + [1853] = 1122, + [1854] = 1854, + [1855] = 1166, + [1856] = 1143, + [1857] = 1857, + [1858] = 1168, + [1859] = 1173, + [1860] = 1860, + [1861] = 1172, + [1862] = 1862, + [1863] = 1816, + [1864] = 1163, + [1865] = 1549, [1866] = 1866, - [1867] = 1757, - [1868] = 1815, + [1867] = 1867, + [1868] = 1868, [1869] = 1869, - [1870] = 1813, - [1871] = 1827, - [1872] = 1790, - [1873] = 1873, - [1874] = 1825, - [1875] = 1825, + [1870] = 1816, + [1871] = 1871, + [1872] = 1872, + [1873] = 1807, + [1874] = 1131, + [1875] = 1875, [1876] = 1876, - [1877] = 1877, - [1878] = 1827, - [1879] = 1825, - [1880] = 1880, - [1881] = 1881, - [1882] = 1882, - [1883] = 1883, - [1884] = 1815, - [1885] = 1885, - [1886] = 1813, - [1887] = 1765, - [1888] = 1758, - [1889] = 1889, - [1890] = 1816, - [1891] = 1759, - [1892] = 1767, - [1893] = 1841, - [1894] = 1760, - [1895] = 1761, - [1896] = 1781, - [1897] = 1765, - [1898] = 1898, - [1899] = 1824, + [1877] = 1123, + [1878] = 1828, + [1879] = 1879, + [1880] = 1825, + [1881] = 1121, + [1882] = 1120, + [1883] = 1818, + [1884] = 1119, + [1885] = 1137, + [1886] = 1869, + [1887] = 1887, + [1888] = 1888, + [1889] = 1042, + [1890] = 1814, + [1891] = 1887, + [1892] = 1892, + [1893] = 1811, + [1894] = 1894, + [1895] = 1866, + [1896] = 1896, + [1897] = 1887, + [1898] = 885, + [1899] = 1814, [1900] = 1900, - [1901] = 1901, - [1902] = 1902, - [1903] = 1827, - [1904] = 1765, - [1905] = 1758, - [1906] = 1772, - [1907] = 1773, - [1908] = 1759, - [1909] = 1760, - [1910] = 1761, - [1911] = 1774, - [1912] = 1790, - [1913] = 1775, - [1914] = 1781, - [1915] = 1813, - [1916] = 1815, - [1917] = 1766, - [1918] = 1767, - [1919] = 1768, - [1920] = 1767, - [1921] = 1827, - [1922] = 1781, - [1923] = 1757, + [1901] = 1866, + [1902] = 1067, + [1903] = 1903, + [1904] = 1875, + [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, + [1921] = 1921, + [1922] = 878, + [1923] = 1063, [1924] = 1924, - [1925] = 1774, - [1926] = 1788, - [1927] = 1771, - [1928] = 1772, - [1929] = 1773, - [1930] = 1774, - [1931] = 1775, - [1932] = 1932, - [1933] = 1933, - [1934] = 1934, - [1935] = 1935, - [1936] = 1935, - [1937] = 1937, - [1938] = 1938, - [1939] = 1934, - [1940] = 1940, - [1941] = 1941, - [1942] = 1942, - [1943] = 1943, + [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] = 1945, + [1945] = 1026, [1946] = 1946, - [1947] = 1947, + [1947] = 1106, [1948] = 1948, - [1949] = 1949, - [1950] = 1950, - [1951] = 1951, - [1952] = 1952, - [1953] = 1953, - [1954] = 1954, - [1955] = 1955, - [1956] = 1938, - [1957] = 1957, - [1958] = 1958, - [1959] = 1959, - [1960] = 1960, - [1961] = 1961, + [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] = 1952, - [1964] = 1964, - [1965] = 1965, - [1966] = 1955, - [1967] = 1967, - [1968] = 1940, - [1969] = 1934, - [1970] = 1937, - [1971] = 1935, + [1963] = 1112, + [1964] = 1108, + [1965] = 1004, + [1966] = 1164, + [1967] = 1145, + [1968] = 1173, + [1969] = 1132, + [1970] = 1172, + [1971] = 1126, [1972] = 1972, - [1973] = 1973, - [1974] = 1941, - [1975] = 1975, - [1976] = 1976, - [1977] = 1955, - [1978] = 1938, - [1979] = 1979, - [1980] = 1980, - [1981] = 1981, - [1982] = 1982, - [1983] = 1983, - [1984] = 1984, + [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] = 1986, - [1987] = 1952, - [1988] = 1988, - [1989] = 1989, - [1990] = 1953, - [1991] = 1955, - [1992] = 1960, - [1993] = 1993, - [1994] = 1941, - [1995] = 1937, + [1986] = 1978, + [1987] = 1176, + [1988] = 1131, + [1989] = 1177, + [1990] = 995, + [1991] = 996, + [1992] = 1135, + [1993] = 1972, + [1994] = 1140, + [1995] = 1119, [1996] = 1996, - [1997] = 1997, - [1998] = 1998, - [1999] = 1941, - [2000] = 2000, - [2001] = 2001, - [2002] = 1953, - [2003] = 2003, - [2004] = 1952, - [2005] = 1960, - [2006] = 2006, - [2007] = 1935, - [2008] = 1934, - [2009] = 1960, - [2010] = 2010, - [2011] = 2011, - [2012] = 1960, - [2013] = 1953, + [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] = 1953, - [2017] = 1938, - [2018] = 1947, - [2019] = 2019, - [2020] = 1941, - [2021] = 2021, - [2022] = 1935, - [2023] = 1937, - [2024] = 1934, - [2025] = 1940, + [2016] = 2015, + [2017] = 2017, + [2018] = 2018, + [2019] = 2017, + [2020] = 2020, + [2021] = 2015, + [2022] = 2022, + [2023] = 2020, + [2024] = 2024, + [2025] = 2015, [2026] = 2026, - [2027] = 1938, + [2027] = 2017, [2028] = 2028, [2029] = 2029, [2030] = 2030, - [2031] = 2031, - [2032] = 2032, - [2033] = 2033, - [2034] = 2034, + [2031] = 2017, + [2032] = 2028, + [2033] = 2017, + [2034] = 2017, [2035] = 2035, [2036] = 2036, - [2037] = 2037, - [2038] = 1068, + [2037] = 2017, + [2038] = 2038, [2039] = 2039, [2040] = 2040, [2041] = 2041, @@ -5421,275 +5428,1419 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2045] = 2045, [2046] = 2046, [2047] = 2047, - [2048] = 2048, + [2048] = 502, [2049] = 2049, - [2050] = 2050, - [2051] = 2048, + [2050] = 2045, + [2051] = 2051, [2052] = 2052, - [2053] = 2053, + [2053] = 2045, [2054] = 2054, - [2055] = 2055, + [2055] = 881, [2056] = 2056, - [2057] = 2037, - [2058] = 2058, - [2059] = 2059, - [2060] = 2050, - [2061] = 2061, - [2062] = 2062, + [2057] = 2052, + [2058] = 2052, + [2059] = 2045, + [2060] = 501, + [2061] = 2052, + [2062] = 878, [2063] = 2063, [2064] = 2064, - [2065] = 2065, + [2065] = 2046, [2066] = 2066, [2067] = 2067, [2068] = 2068, [2069] = 2069, - [2070] = 2070, + [2070] = 885, [2071] = 2071, - [2072] = 2045, - [2073] = 2045, + [2072] = 2072, + [2073] = 2073, [2074] = 2074, [2075] = 2075, [2076] = 2076, - [2077] = 2050, - [2078] = 2078, - [2079] = 2079, + [2077] = 2077, + [2078] = 2073, + [2079] = 2077, [2080] = 2080, [2081] = 2081, - [2082] = 2082, - [2083] = 2037, + [2082] = 2077, + [2083] = 2083, [2084] = 2084, - [2085] = 2042, + [2085] = 2085, [2086] = 2086, - [2087] = 2048, - [2088] = 2088, + [2087] = 2087, + [2088] = 2084, [2089] = 2089, [2090] = 2090, - [2091] = 2091, - [2092] = 2092, - [2093] = 2093, - [2094] = 2094, + [2091] = 2073, + [2092] = 2074, + [2093] = 2084, + [2094] = 2086, [2095] = 2095, - [2096] = 2096, - [2097] = 2045, - [2098] = 2098, - [2099] = 2050, - [2100] = 2037, - [2101] = 2101, + [2096] = 2077, + [2097] = 2080, + [2098] = 2084, + [2099] = 2077, + [2100] = 2084, + [2101] = 2074, [2102] = 2102, [2103] = 2103, [2104] = 2104, - [2105] = 2105, - [2106] = 2106, - [2107] = 2107, - [2108] = 2108, - [2109] = 2109, + [2105] = 2080, + [2106] = 2084, + [2107] = 2084, + [2108] = 2073, + [2109] = 2077, [2110] = 2110, [2111] = 2111, - [2112] = 2112, + [2112] = 2080, [2113] = 2113, - [2114] = 2114, - [2115] = 2115, - [2116] = 2112, - [2117] = 2071, - [2118] = 2110, - [2119] = 2095, + [2114] = 2074, + [2115] = 2086, + [2116] = 2086, + [2117] = 2077, + [2118] = 2118, + [2119] = 2119, [2120] = 2120, - [2121] = 2059, - [2122] = 2122, - [2123] = 2106, - [2124] = 2124, - [2125] = 2082, - [2126] = 2126, - [2127] = 2081, - [2128] = 2128, - [2129] = 2129, - [2130] = 2130, - [2131] = 2131, - [2132] = 2132, - [2133] = 2076, - [2134] = 2134, + [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, - [2136] = 2045, + [2136] = 2136, [2137] = 2137, [2138] = 2138, [2139] = 2139, [2140] = 2140, [2141] = 2141, [2142] = 2142, - [2143] = 2050, + [2143] = 2143, [2144] = 2144, [2145] = 2145, - [2146] = 2141, - [2147] = 1067, - [2148] = 2148, + [2146] = 2146, + [2147] = 2135, + [2148] = 2137, [2149] = 2149, - [2150] = 2150, - [2151] = 2068, - [2152] = 2034, - [2153] = 2080, - [2154] = 2048, - [2155] = 2071, + [2150] = 2137, + [2151] = 2151, + [2152] = 2152, + [2153] = 2153, + [2154] = 2154, + [2155] = 2136, [2156] = 2156, - [2157] = 2069, - [2158] = 2036, - [2159] = 2067, + [2157] = 2151, + [2158] = 2138, + [2159] = 2136, [2160] = 2160, - [2161] = 2035, - [2162] = 2162, - [2163] = 2036, - [2164] = 2037, - [2165] = 2165, - [2166] = 2162, - [2167] = 1071, - [2168] = 2037, - [2169] = 2169, - [2170] = 2063, + [2161] = 2161, + [2162] = 2135, + [2163] = 2160, + [2164] = 2135, + [2165] = 2151, + [2166] = 2166, + [2167] = 2160, + [2168] = 2137, + [2169] = 2160, + [2170] = 2151, [2171] = 2171, - [2172] = 2128, - [2173] = 2173, + [2172] = 2172, + [2173] = 2160, [2174] = 2174, [2175] = 2175, [2176] = 2176, - [2177] = 2177, + [2177] = 2138, [2178] = 2178, - [2179] = 2179, + [2179] = 2175, [2180] = 2180, - [2181] = 2108, + [2181] = 2181, [2182] = 2182, - [2183] = 2062, - [2184] = 2063, - [2185] = 2128, - [2186] = 2162, - [2187] = 2187, - [2188] = 525, + [2183] = 2138, + [2184] = 2161, + [2185] = 2185, + [2186] = 2186, + [2187] = 2136, + [2188] = 2136, [2189] = 2189, - [2190] = 2062, - [2191] = 2102, - [2192] = 2103, + [2190] = 2137, + [2191] = 2151, + [2192] = 2192, [2193] = 2193, - [2194] = 2194, - [2195] = 2050, - [2196] = 2059, - [2197] = 2054, - [2198] = 2066, - [2199] = 2048, - [2200] = 2111, - [2201] = 2080, - [2202] = 2080, - [2203] = 2048, + [2194] = 1327, + [2195] = 2195, + [2196] = 2196, + [2197] = 502, + [2198] = 2198, + [2199] = 2199, + [2200] = 2200, + [2201] = 2201, + [2202] = 2198, + [2203] = 2201, [2204] = 2204, [2205] = 2205, - [2206] = 2206, - [2207] = 2067, - [2208] = 2042, + [2206] = 501, + [2207] = 2207, + [2208] = 2201, [2209] = 2209, - [2210] = 2059, - [2211] = 2069, - [2212] = 2035, - [2213] = 2068, - [2214] = 2050, - [2215] = 2080, + [2210] = 2198, + [2211] = 2211, + [2212] = 2201, + [2213] = 2213, + [2214] = 2214, + [2215] = 2215, [2216] = 2216, - [2217] = 2217, - [2218] = 1070, + [2217] = 2216, + [2218] = 2215, [2219] = 2219, - [2220] = 2062, - [2221] = 2063, - [2222] = 2162, - [2223] = 2223, - [2224] = 2037, - [2225] = 2225, - [2226] = 2226, - [2227] = 2227, - [2228] = 2228, - [2229] = 2102, - [2230] = 2103, + [2220] = 2216, + [2221] = 2219, + [2222] = 2222, + [2223] = 2215, + [2224] = 2222, + [2225] = 2215, + [2226] = 2222, + [2227] = 2216, + [2228] = 2222, + [2229] = 2219, + [2230] = 2214, [2231] = 2231, - [2232] = 2067, - [2233] = 2176, + [2232] = 2232, + [2233] = 2219, [2234] = 2234, - [2235] = 2111, - [2236] = 2069, + [2235] = 2214, + [2236] = 2214, [2237] = 2237, [2238] = 2238, - [2239] = 2071, - [2240] = 2045, + [2239] = 2239, + [2240] = 2240, [2241] = 2241, [2242] = 2242, - [2243] = 2036, + [2243] = 2243, [2244] = 2244, - [2245] = 2035, - [2246] = 2076, - [2247] = 2247, - [2248] = 2029, - [2249] = 2034, - [2250] = 2081, - [2251] = 2251, - [2252] = 2082, - [2253] = 2162, - [2254] = 2254, - [2255] = 2255, - [2256] = 2256, + [2245] = 2245, + [2246] = 2246, + [2247] = 2245, + [2248] = 2238, + [2249] = 2242, + [2250] = 2238, + [2251] = 2241, + [2252] = 2252, + [2253] = 2252, + [2254] = 2241, + [2255] = 2240, + [2256] = 2245, [2257] = 2257, - [2258] = 2102, - [2259] = 2071, - [2260] = 2145, - [2261] = 2042, - [2262] = 2102, - [2263] = 2102, - [2264] = 2264, - [2265] = 2045, - [2266] = 2128, - [2267] = 2267, - [2268] = 2268, - [2269] = 2269, + [2258] = 2240, + [2259] = 2241, + [2260] = 2252, + [2261] = 2238, + [2262] = 2245, + [2263] = 2239, + [2264] = 2252, + [2265] = 2242, + [2266] = 2239, + [2267] = 2242, + [2268] = 2240, + [2269] = 2239, [2270] = 2270, - [2271] = 2271, + [2271] = 2022, [2272] = 2272, - [2273] = 2029, - [2274] = 2274, + [2273] = 2273, + [2274] = 2009, [2275] = 2275, - [2276] = 2071, - [2277] = 2076, + [2276] = 2008, + [2277] = 2277, [2278] = 2278, [2279] = 2279, - [2280] = 2104, + [2280] = 2278, [2281] = 2281, [2282] = 2282, - [2283] = 2283, - [2284] = 2284, + [2283] = 2036, + [2284] = 1996, [2285] = 2285, [2286] = 2286, - [2287] = 2287, - [2288] = 2162, + [2287] = 2026, + [2288] = 2282, [2289] = 2289, - [2290] = 2111, - [2291] = 2270, - [2292] = 2081, - [2293] = 2082, - [2294] = 2270, - [2295] = 2104, - [2296] = 2034, - [2297] = 2042, + [2290] = 2290, + [2291] = 2289, + [2292] = 2290, + [2293] = 2272, + [2294] = 1985, + [2295] = 2275, + [2296] = 2030, + [2297] = 2297, [2298] = 2298, [2299] = 2299, [2300] = 2300, - [2301] = 2108, - [2302] = 2110, - [2303] = 528, - [2304] = 2112, - [2305] = 2104, - [2306] = 2269, + [2301] = 2300, + [2302] = 2302, + [2303] = 2303, + [2304] = 2304, + [2305] = 2300, + [2306] = 2306, [2307] = 2307, - [2308] = 2095, + [2308] = 2308, [2309] = 2309, - [2310] = 2310, - [2311] = 2270, - [2312] = 2106, - [2313] = 2103, - [2314] = 2270, - [2315] = 2315, - [2316] = 2102, + [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, + [2323] = 2323, + [2324] = 2324, + [2325] = 2325, + [2326] = 2326, + [2327] = 2327, + [2328] = 2328, + [2329] = 2329, + [2330] = 2323, + [2331] = 2331, + [2332] = 2323, + [2333] = 2299, + [2334] = 2313, + [2335] = 2313, + [2336] = 2312, + [2337] = 2299, + [2338] = 878, + [2339] = 2339, + [2340] = 2309, + [2341] = 2024, + [2342] = 111, + [2343] = 2343, + [2344] = 2344, + [2345] = 2303, + [2346] = 97, + [2347] = 2347, + [2348] = 2348, + [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, + [2369] = 2369, + [2370] = 2370, + [2371] = 2371, + [2372] = 2372, + [2373] = 2372, + [2374] = 2374, + [2375] = 2375, + [2376] = 2374, + [2377] = 2372, + [2378] = 2374, + [2379] = 2374, + [2380] = 2380, + [2381] = 2381, + [2382] = 2382, + [2383] = 2383, + [2384] = 2384, + [2385] = 2385, + [2386] = 2386, + [2387] = 2386, + [2388] = 2388, + [2389] = 2389, + [2390] = 2390, + [2391] = 2386, + [2392] = 2372, + [2393] = 1269, + [2394] = 2394, + [2395] = 2372, + [2396] = 2372, + [2397] = 2397, + [2398] = 2386, + [2399] = 2399, + [2400] = 2400, + [2401] = 2401, + [2402] = 2372, + [2403] = 2403, + [2404] = 2404, + [2405] = 2405, + [2406] = 2406, + [2407] = 2407, + [2408] = 2049, + [2409] = 2409, + [2410] = 2102, + [2411] = 2411, + [2412] = 2412, + [2413] = 2083, + [2414] = 2411, + [2415] = 2415, + [2416] = 2416, + [2417] = 2417, + [2418] = 2416, + [2419] = 2417, + [2420] = 2118, + [2421] = 2421, + [2422] = 2054, + [2423] = 2113, + [2424] = 2424, + [2425] = 2071, + [2426] = 2051, + [2427] = 2427, + [2428] = 2428, + [2429] = 2043, + [2430] = 2068, + [2431] = 2411, + [2432] = 2076, + [2433] = 2433, + [2434] = 2069, + [2435] = 2095, + [2436] = 2424, + [2437] = 2411, + [2438] = 2438, + [2439] = 2439, + [2440] = 2440, + [2441] = 2441, + [2442] = 2416, + [2443] = 2072, + [2444] = 2444, + [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, + [2460] = 2460, + [2461] = 2416, + [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, + [2475] = 2475, + [2476] = 2476, + [2477] = 2474, + [2478] = 2478, + [2479] = 2479, + [2480] = 2480, + [2481] = 2481, + [2482] = 2482, + [2483] = 2483, + [2484] = 2484, + [2485] = 2485, + [2486] = 2486, + [2487] = 2487, + [2488] = 2243, + [2489] = 2489, + [2490] = 2476, + [2491] = 2475, + [2492] = 2492, + [2493] = 2493, + [2494] = 2494, + [2495] = 2495, + [2496] = 2496, + [2497] = 2470, + [2498] = 2498, + [2499] = 2479, + [2500] = 2500, + [2501] = 2501, + [2502] = 2502, + [2503] = 2503, + [2504] = 2504, + [2505] = 2505, + [2506] = 2506, + [2507] = 2480, + [2508] = 2481, + [2509] = 2509, + [2510] = 2471, + [2511] = 2475, + [2512] = 2512, + [2513] = 2470, + [2514] = 2514, + [2515] = 2515, + [2516] = 2516, + [2517] = 2517, + [2518] = 2518, + [2519] = 2519, + [2520] = 2520, + [2521] = 2521, + [2522] = 2482, + [2523] = 2523, + [2524] = 2524, + [2525] = 2525, + [2526] = 2526, + [2527] = 2527, + [2528] = 2484, + [2529] = 2529, + [2530] = 2530, + [2531] = 2531, + [2532] = 2532, + [2533] = 2533, + [2534] = 2475, + [2535] = 2535, + [2536] = 2536, + [2537] = 2500, + [2538] = 2487, + [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, + [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, + [2596] = 2514, + [2597] = 2515, + [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, + [2647] = 2504, + [2648] = 2503, + [2649] = 2501, + [2650] = 2650, + [2651] = 2487, + [2652] = 2500, + [2653] = 2484, + [2654] = 2482, + [2655] = 2655, + [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, + [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, + [2759] = 2759, + [2760] = 2760, + [2761] = 2761, + [2762] = 2762, + [2763] = 2763, + [2764] = 2764, + [2765] = 101, + [2766] = 2766, + [2767] = 2767, + [2768] = 2760, + [2769] = 2760, + [2770] = 2770, + [2771] = 2746, + [2772] = 2760, + [2773] = 2760, + [2774] = 2774, + [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, + [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, + [2812] = 2812, + [2813] = 2813, + [2814] = 157, + [2815] = 2751, + [2816] = 2816, + [2817] = 2817, + [2818] = 2818, + [2819] = 2819, + [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, + [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, + [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, + [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, + [2954] = 2797, + [2955] = 2797, + [2956] = 2956, + [2957] = 2957, + [2958] = 2958, + [2959] = 2959, + [2960] = 2960, + [2961] = 2961, + [2962] = 2962, + [2963] = 2963, + [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, + [2983] = 2983, + [2984] = 2984, + [2985] = 2985, + [2986] = 2986, + [2987] = 2987, + [2988] = 2988, + [2989] = 2989, + [2990] = 2990, + [2991] = 2991, + [2992] = 2982, + [2993] = 2993, + [2994] = 2994, + [2995] = 2995, + [2996] = 2960, + [2997] = 2997, + [2998] = 2998, + [2999] = 2999, + [3000] = 3000, + [3001] = 2974, + [3002] = 3002, + [3003] = 2973, + [3004] = 2989, + [3005] = 3005, + [3006] = 3006, + [3007] = 2975, + [3008] = 2973, + [3009] = 3009, + [3010] = 3010, + [3011] = 2999, + [3012] = 2973, + [3013] = 3010, + [3014] = 3009, + [3015] = 2961, + [3016] = 3016, + [3017] = 3017, + [3018] = 3018, + [3019] = 3019, + [3020] = 2957, + [3021] = 2984, + [3022] = 3005, + [3023] = 3023, + [3024] = 3024, + [3025] = 2984, + [3026] = 3026, + [3027] = 2989, + [3028] = 3028, + [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, + [3043] = 3043, + [3044] = 3044, + [3045] = 3045, + [3046] = 3046, + [3047] = 3047, + [3048] = 3048, + [3049] = 3049, + [3050] = 3050, + [3051] = 3051, + [3052] = 2999, + [3053] = 3053, + [3054] = 3000, + [3055] = 3023, + [3056] = 3056, + [3057] = 3057, + [3058] = 2998, + [3059] = 3059, + [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, + [3080] = 3080, + [3081] = 3081, + [3082] = 3082, + [3083] = 3083, + [3084] = 3084, + [3085] = 3085, + [3086] = 3086, + [3087] = 2966, + [3088] = 3088, + [3089] = 3089, + [3090] = 3090, + [3091] = 3091, + [3092] = 2997, + [3093] = 3093, + [3094] = 3094, + [3095] = 3095, + [3096] = 3096, + [3097] = 2968, + [3098] = 3098, + [3099] = 3099, + [3100] = 3100, + [3101] = 3101, + [3102] = 3102, + [3103] = 3103, + [3104] = 3104, + [3105] = 3024, + [3106] = 3106, + [3107] = 2956, + [3108] = 3108, + [3109] = 3109, + [3110] = 3065, + [3111] = 3111, + [3112] = 3112, + [3113] = 3113, + [3114] = 3114, + [3115] = 3093, + [3116] = 3116, + [3117] = 3030, + [3118] = 2960, + [3119] = 2969, + [3120] = 2970, + [3121] = 2972, + [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, + [3150] = 3150, + [3151] = 3036, + [3152] = 2987, + [3153] = 3053, + [3154] = 2970, + [3155] = 1814, + [3156] = 2969, + [3157] = 2967, + [3158] = 2968, + [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, + [3183] = 3183, + [3184] = 3184, + [3185] = 3098, + [3186] = 3023, + [3187] = 3059, + [3188] = 3188, + [3189] = 3189, + [3190] = 3190, + [3191] = 3191, + [3192] = 3192, + [3193] = 2956, + [3194] = 3194, + [3195] = 3065, + [3196] = 3065, + [3197] = 3197, + [3198] = 3198, + [3199] = 3199, + [3200] = 2974, + [3201] = 3061, + [3202] = 2998, + [3203] = 2999, + [3204] = 3204, + [3205] = 3016, + [3206] = 3017, + [3207] = 3207, + [3208] = 3099, + [3209] = 2989, + [3210] = 3100, + [3211] = 3101, + [3212] = 2997, + [3213] = 3098, + [3214] = 3093, + [3215] = 3026, + [3216] = 2961, + [3217] = 3108, + [3218] = 2959, + [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, + [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, + [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, + [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, }; static TSCharacterRange sym_number_literal_character_set_13[] = { @@ -5887,144 +7038,141 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(122); + if (eof) ADVANCE(251); ADVANCE_MAP( - '!', 186, - '"', 285, - '#', 78, - '%', 203, - '&', 212, - '\'', 276, - '(', 126, - ')', 129, - '*', 199, - '+', 194, - ',', 128, - '-', 189, - '.', 252, - '/', 201, - '0', 258, - ':', 236, - ';', 225, - '<', 219, - '=', 235, - '>', 215, - '?', 237, - 'L', 297, - 'U', 299, - '[', 232, + '!', 325, + '"', 424, + '#', 112, + '%', 342, + '&', 351, + '\'', 414, + '(', 263, + ')', 266, + '*', 338, + '+', 333, + ',', 265, + '-', 328, + '.', 390, + '/', 340, + '0', 396, + ':', 374, + ';', 364, + '<', 358, + '=', 373, + '>', 354, + '?', 375, + 'L', 552, + 'U', 554, + '[', 371, '\\', 2, - ']', 233, - '^', 209, - 'u', 301, - '{', 229, - '|', 206, - '}', 230, - '~', 187, + ']', 372, + '^', 348, + '_', 564, + 'u', 556, + '{', 368, + '|', 345, + '}', 369, + '~', 326, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(120); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(260); - if (set_contains(sym_identifier_character_set_1, 658, lookahead)) ADVANCE(309); + lookahead == ' ') SKIP(248); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(398); + if (set_contains(sym_identifier_character_set_1, 658, lookahead)) ADVANCE(677); END_STATE(); case 1: - if (lookahead == '\n') SKIP(46); + if (lookahead == '\n') SKIP(50); END_STATE(); case 2: - if (lookahead == '\n') SKIP(46); + if (lookahead == '\n') SKIP(50); if (lookahead == '\r') SKIP(1); - if (lookahead == 'U') ADVANCE(118); - if (lookahead == 'u') ADVANCE(110); + if (lookahead == 'U') ADVANCE(244); + if (lookahead == 'u') ADVANCE(236); END_STATE(); case 3: - if (lookahead == '\n') SKIP(49); + if (lookahead == '\n') SKIP(53); END_STATE(); case 4: - if (lookahead == '\n') SKIP(49); + if (lookahead == '\n') SKIP(53); if (lookahead == '\r') SKIP(3); - if (lookahead == 'U') ADVANCE(118); - if (lookahead == 'u') ADVANCE(110); + if (lookahead == 'U') ADVANCE(244); + if (lookahead == 'u') ADVANCE(236); END_STATE(); case 5: - if (lookahead == '\n') SKIP(48); + if (lookahead == '\n') SKIP(52); END_STATE(); case 6: - if (lookahead == '\n') SKIP(48); + if (lookahead == '\n') SKIP(52); if (lookahead == '\r') SKIP(5); - if (lookahead == 'U') ADVANCE(118); - if (lookahead == 'u') ADVANCE(110); + if (lookahead == 'U') ADVANCE(244); + if (lookahead == 'u') ADVANCE(236); END_STATE(); case 7: - if (lookahead == '\n') SKIP(50); + if (lookahead == '\n') SKIP(56); END_STATE(); case 8: - if (lookahead == '\n') SKIP(50); + if (lookahead == '\n') SKIP(56); if (lookahead == '\r') SKIP(7); - if (lookahead == 'U') ADVANCE(118); - if (lookahead == 'u') ADVANCE(110); + if (lookahead == 'U') ADVANCE(244); + if (lookahead == 'u') ADVANCE(236); END_STATE(); case 9: - if (lookahead == '\n') SKIP(52); + if (lookahead == '\n') SKIP(58); END_STATE(); case 10: - if (lookahead == '\n') SKIP(52); + if (lookahead == '\n') SKIP(58); if (lookahead == '\r') SKIP(9); - if (lookahead == 'U') ADVANCE(118); - if (lookahead == 'u') ADVANCE(110); + if (lookahead == 'U') ADVANCE(244); + if (lookahead == 'u') ADVANCE(236); END_STATE(); case 11: - if (lookahead == '\n') SKIP(55); + if (lookahead == '\n') SKIP(69); END_STATE(); case 12: - if (lookahead == '\n') SKIP(55); + if (lookahead == '\n') SKIP(69); if (lookahead == '\r') SKIP(11); - if (lookahead == 'U') ADVANCE(118); - if (lookahead == 'u') ADVANCE(110); + if (lookahead == 'U') ADVANCE(244); + if (lookahead == 'u') ADVANCE(236); END_STATE(); case 13: - if (lookahead == '\n') SKIP(56); + if (lookahead == '\n') SKIP(68); END_STATE(); case 14: - if (lookahead == '\n') SKIP(56); + if (lookahead == '\n') SKIP(68); if (lookahead == '\r') SKIP(13); - if (lookahead == 'U') ADVANCE(118); - if (lookahead == 'u') ADVANCE(110); + if (lookahead == 'U') ADVANCE(244); + if (lookahead == 'u') ADVANCE(236); END_STATE(); case 15: - if (lookahead == '\n') SKIP(60); + if (lookahead == '\n') SKIP(57); END_STATE(); case 16: - if (lookahead == '\n') SKIP(60); + if (lookahead == '\n') SKIP(57); if (lookahead == '\r') SKIP(15); - if (lookahead == 'U') ADVANCE(118); - if (lookahead == 'u') ADVANCE(110); + if (lookahead == 'U') ADVANCE(244); + if (lookahead == 'u') ADVANCE(236); END_STATE(); case 17: - if (lookahead == '\n') SKIP(53); + if (lookahead == '\n') SKIP(59); END_STATE(); case 18: - if (lookahead == '\n') SKIP(53); + if (lookahead == '\n') SKIP(59); if (lookahead == '\r') SKIP(17); - if (lookahead == 'U') ADVANCE(118); - if (lookahead == 'u') ADVANCE(110); END_STATE(); case 19: - if (lookahead == '\n') SKIP(54); + if (lookahead == '\n') SKIP(60); END_STATE(); case 20: - if (lookahead == '\n') SKIP(54); + if (lookahead == '\n') SKIP(60); if (lookahead == '\r') SKIP(19); - if (lookahead == 'U') ADVANCE(118); - if (lookahead == 'u') ADVANCE(110); END_STATE(); case 21: - if (lookahead == '\n') SKIP(51); + if (lookahead == '\n') SKIP(55); END_STATE(); case 22: - if (lookahead == '\n') SKIP(51); + if (lookahead == '\n') SKIP(55); if (lookahead == '\r') SKIP(21); - if (lookahead == 'U') ADVANCE(118); - if (lookahead == 'u') ADVANCE(110); + if (lookahead == 'U') ADVANCE(244); + if (lookahead == 'u') ADVANCE(236); END_STATE(); case 23: if (lookahead == '\n') SKIP(25); @@ -6035,11710 +7183,13996 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 25: ADVANCE_MAP( - '\n', 131, - '!', 71, - '%', 202, - '&', 211, - '(', 184, - '*', 198, - '+', 193, - '-', 188, - '/', 200, - '<', 220, - '=', 72, - '>', 216, + '\n', 268, + '!', 82, + '%', 341, + '&', 350, + '(', 323, + '*', 337, + '+', 332, + '-', 327, + '/', 339, + '<', 359, + '=', 83, + '>', 355, ); if (lookahead == '\\') SKIP(24); - if (lookahead == '^') ADVANCE(208); - if (lookahead == '|') ADVANCE(207); + if (lookahead == '^') ADVANCE(347); + if (lookahead == '_') ADVANCE(89); + if (lookahead == '|') ADVANCE(346); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(25); END_STATE(); case 26: - if (lookahead == '\n') SKIP(59); + if (lookahead == '\n') SKIP(67); END_STATE(); case 27: - if (lookahead == '\n') SKIP(59); + if (lookahead == '\n') SKIP(67); if (lookahead == '\r') SKIP(26); - if (lookahead == 'U') ADVANCE(118); - if (lookahead == 'u') ADVANCE(110); + if (lookahead == 'U') ADVANCE(244); + if (lookahead == 'u') ADVANCE(236); END_STATE(); case 28: - if (lookahead == '\n') SKIP(57); + if (lookahead == '\n') SKIP(61); END_STATE(); case 29: - if (lookahead == '\n') SKIP(57); + if (lookahead == '\n') SKIP(61); if (lookahead == '\r') SKIP(28); - if (lookahead == 'U') ADVANCE(118); - if (lookahead == 'u') ADVANCE(110); + if (lookahead == 'U') ADVANCE(244); + if (lookahead == 'u') ADVANCE(236); END_STATE(); case 30: - if (lookahead == '\n') ADVANCE(124); + if (lookahead == '\n') ADVANCE(261); if (lookahead == '\r') ADVANCE(35); - if (lookahead == '(') ADVANCE(126); - if (lookahead == '/') ADVANCE(146); - if (lookahead == '\\') ADVANCE(145); + if (lookahead == '(') ADVANCE(263); + if (lookahead == '/') ADVANCE(283); + if (lookahead == '\\') ADVANCE(282); + if (lookahead == '_') ADVANCE(285); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(69); - if (lookahead != 0) ADVANCE(144); + lookahead == ' ') SKIP(80); + if (lookahead != 0) ADVANCE(281); END_STATE(); case 31: - if (lookahead == '\n') ADVANCE(124); + if (lookahead == '\n') ADVANCE(261); if (lookahead == '\r') ADVANCE(35); - if (lookahead == '/') ADVANCE(146); - if (lookahead == '\\') ADVANCE(145); + if (lookahead == '/') ADVANCE(283); + if (lookahead == '\\') ADVANCE(282); + if (lookahead == '_') ADVANCE(285); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(69); - if (lookahead != 0) ADVANCE(144); + lookahead == ' ') SKIP(80); + if (lookahead != 0) ADVANCE(281); END_STATE(); case 32: - if (lookahead == '\n') ADVANCE(124); + if (lookahead == '\n') ADVANCE(261); if (lookahead == '\r') ADVANCE(34); - if (lookahead == '(') ADVANCE(184); - if (lookahead == '/') ADVANCE(63); + if (lookahead == '(') ADVANCE(323); + if (lookahead == '/') ADVANCE(73); if (lookahead == '\\') SKIP(41); + if (lookahead == '_') ADVANCE(89); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(62); + lookahead == ' ') SKIP(71); END_STATE(); case 33: - if (lookahead == '\n') ADVANCE(124); - if (lookahead == '\r') ADVANCE(149); - if (lookahead == '/') ADVANCE(64); - if (lookahead == '\\') ADVANCE(150); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(151); - if (lookahead != 0) ADVANCE(148); + ADVANCE_MAP( + '\n', 261, + '\r', 287, + '/', 74, + '\\', 288, + '_', 291, + '\t', 289, + 0x0b, 289, + '\f', 289, + ' ', 289, + ); + if (lookahead != 0) ADVANCE(286); END_STATE(); case 34: - if (lookahead == '\n') ADVANCE(124); - if (lookahead == '(') ADVANCE(184); - if (lookahead == '/') ADVANCE(63); + if (lookahead == '\n') ADVANCE(261); + if (lookahead == '(') ADVANCE(323); + if (lookahead == '/') ADVANCE(73); if (lookahead == '\\') SKIP(41); + if (lookahead == '_') ADVANCE(89); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(62); + lookahead == ' ') SKIP(71); END_STATE(); case 35: - if (lookahead == '\n') ADVANCE(124); - if (lookahead == '/') ADVANCE(146); - if (lookahead == '\\') ADVANCE(145); + if (lookahead == '\n') ADVANCE(261); + if (lookahead == '/') ADVANCE(283); + if (lookahead == '\\') ADVANCE(282); + if (lookahead == '_') ADVANCE(285); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(69); - if (lookahead != 0) ADVANCE(144); + lookahead == ' ') SKIP(80); + if (lookahead != 0) ADVANCE(281); END_STATE(); case 36: - if (lookahead == '\n') ADVANCE(147); + if (lookahead == '\n') ADVANCE(284); END_STATE(); case 37: - if (lookahead == '\n') SKIP(61); - if (lookahead == '\'') ADVANCE(276); - if (lookahead == '/') ADVANCE(279); - if (lookahead == '\\') ADVANCE(278); + if (lookahead == '\n') SKIP(62); + if (lookahead == '"') ADVANCE(424); + if (lookahead == '/') ADVANCE(425); + if (lookahead == '\\') ADVANCE(38); + if (lookahead == '_') ADVANCE(429); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(280); - if (lookahead != 0) ADVANCE(277); + lookahead == ' ') ADVANCE(428); + if (lookahead != 0) ADVANCE(545); END_STATE(); case 38: - if (lookahead == '\n') ADVANCE(292); - if (lookahead == '\r') ADVANCE(291); - if (lookahead == 'U') ADVANCE(119); - if (lookahead == 'u') ADVANCE(111); - if (lookahead == 'x') ADVANCE(107); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(294); - if (lookahead != 0) ADVANCE(291); + if (lookahead == '\n') ADVANCE(547); + if (lookahead == '\r') ADVANCE(546); + 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); END_STATE(); case 39: - if (lookahead == '\n') SKIP(58); - if (lookahead == '"') ADVANCE(285); - if (lookahead == '/') ADVANCE(286); - if (lookahead == '\\') ADVANCE(38); + if (lookahead == '\n') SKIP(70); + if (lookahead == '\'') ADVANCE(414); + if (lookahead == '/') ADVANCE(417); + if (lookahead == '\\') ADVANCE(416); + if (lookahead == '_') ADVANCE(419); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(289); - if (lookahead != 0) ADVANCE(290); + lookahead == ' ') ADVANCE(418); + if (lookahead != 0) ADVANCE(415); END_STATE(); case 40: - if (lookahead == '\n') SKIP(62); + if (lookahead == '\n') SKIP(71); END_STATE(); case 41: - if (lookahead == '\n') SKIP(62); + if (lookahead == '\n') SKIP(71); if (lookahead == '\r') SKIP(40); END_STATE(); case 42: - if (lookahead == '\n') ADVANCE(151); + if (lookahead == '\n') ADVANCE(289); END_STATE(); case 43: - if (lookahead == '\n') SKIP(47); + if (lookahead == '\n') SKIP(72); END_STATE(); case 44: - if (lookahead == '\n') SKIP(47); + if (lookahead == '\n') SKIP(72); if (lookahead == '\r') SKIP(43); - if (lookahead == 'U') ADVANCE(118); - if (lookahead == 'u') ADVANCE(110); END_STATE(); case 45: - if (lookahead == '\r') ADVANCE(313); - if (lookahead == '\\') ADVANCE(311); - if (lookahead != 0) ADVANCE(312); + if (lookahead == '\n') SKIP(51); END_STATE(); case 46: - ADVANCE_MAP( - '!', 186, - '"', 285, - '#', 78, - '%', 203, - '&', 212, - '\'', 276, - '(', 184, - ')', 129, - '*', 199, - '+', 194, - ',', 128, - '-', 189, - '.', 252, - '/', 201, - '0', 258, - ':', 236, - ';', 225, - '<', 219, - '=', 235, - '>', 215, - '?', 237, - 'L', 297, - 'U', 299, - '[', 232, - '\\', 2, - ']', 233, - '^', 209, - 'u', 301, - '{', 229, - '|', 206, - '}', 230, - '~', 187, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(46); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(260); - if (set_contains(sym_identifier_character_set_1, 658, lookahead)) ADVANCE(309); + if (lookahead == '\n') SKIP(51); + if (lookahead == '\r') SKIP(45); + if (lookahead == 'U') ADVANCE(244); + if (lookahead == 'u') ADVANCE(236); END_STATE(); case 47: - ADVANCE_MAP( - '!', 186, - '"', 285, - '#', 86, - '%', 203, - '&', 212, - '\'', 276, - '(', 184, - ')', 129, - '*', 199, - '+', 194, - ',', 128, - '-', 189, - '.', 252, - '/', 201, - '0', 258, - ':', 236, - ';', 225, - '<', 219, - '=', 235, - '>', 215, - '?', 237, - 'L', 297, - 'U', 299, - '[', 231, - '\\', 44, - ']', 233, - '^', 209, - 'u', 301, - '{', 229, - '|', 206, - '}', 230, - '~', 187, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(47); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(260); - if (set_contains(sym_identifier_character_set_1, 658, lookahead)) ADVANCE(309); + if (lookahead == '\n') SKIP(54); END_STATE(); case 48: - ADVANCE_MAP( - '!', 185, - '"', 285, - '#', 78, - '&', 210, - '\'', 276, - '(', 184, - '*', 198, - '+', 195, - ',', 128, - '-', 190, - '.', 99, - '/', 63, - '0', 258, - ':', 70, - ';', 225, - 'L', 297, - 'U', 299, - '[', 76, - '\\', 6, - ']', 77, - 'u', 301, - '{', 229, - '~', 187, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(48); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(260); - if (set_contains(sym_identifier_character_set_1, 658, lookahead)) ADVANCE(309); + if (lookahead == '\n') SKIP(54); + if (lookahead == '\r') SKIP(47); + if (lookahead == 'U') ADVANCE(244); + if (lookahead == 'u') ADVANCE(236); END_STATE(); case 49: - ADVANCE_MAP( - '!', 185, - '"', 285, - '#', 82, - '&', 210, - '\'', 276, - '(', 184, - ')', 129, - '*', 198, - '+', 195, - ',', 128, - '-', 190, - '.', 253, - '/', 63, - '0', 258, - ':', 236, - ';', 225, - '=', 234, - 'L', 297, - 'U', 299, - '[', 232, - '\\', 4, - ']', 233, - 'u', 301, - '{', 229, - '}', 230, - '~', 187, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(49); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(260); - if (set_contains(sym_identifier_character_set_1, 658, lookahead)) ADVANCE(309); + if (lookahead == '\r') ADVANCE(681); + if (lookahead == '\\') ADVANCE(679); + if (lookahead != 0) ADVANCE(680); END_STATE(); case 50: ADVANCE_MAP( - '!', 185, - '"', 285, - '#', 80, - '&', 210, - '\'', 276, - '(', 184, - '*', 198, - '+', 195, - '-', 190, - '.', 99, - '/', 63, - '0', 258, - ';', 225, - 'L', 297, - 'U', 299, - '[', 76, - '\\', 8, - 'u', 301, - '{', 229, - '~', 187, + '!', 325, + '"', 424, + '#', 112, + '%', 342, + '&', 351, + '\'', 414, + '(', 323, + ')', 266, + '*', 338, + '+', 333, + ',', 265, + '-', 328, + '.', 390, + '/', 340, + '0', 396, + ':', 374, + ';', 364, + '<', 358, + '=', 373, + '>', 354, + '?', 375, + 'L', 552, + 'U', 554, + '[', 371, + '\\', 2, + ']', 372, + '^', 348, + '_', 564, + 'u', 556, + '{', 368, + '|', 345, + '}', 369, + '~', 326, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(50); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(260); - if (set_contains(sym_identifier_character_set_1, 658, lookahead)) ADVANCE(309); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(398); + if (set_contains(sym_identifier_character_set_1, 658, lookahead)) ADVANCE(677); END_STATE(); case 51: ADVANCE_MAP( - '!', 185, - '\'', 276, - '(', 184, - ')', 129, - '+', 197, - '-', 192, - '.', 99, - '/', 63, - '0', 258, - 'L', 305, - 'U', 306, - '\\', 22, - 'u', 307, - '~', 187, + '!', 325, + '"', 424, + '#', 121, + '%', 342, + '&', 351, + '\'', 414, + '(', 323, + ')', 266, + '*', 338, + '+', 333, + ',', 265, + '-', 328, + '.', 390, + '/', 340, + '0', 396, + ':', 374, + ';', 364, + '<', 358, + '=', 373, + '>', 354, + '?', 375, + 'L', 552, + 'U', 554, + '[', 370, + '\\', 46, + ']', 372, + '^', 348, + '_', 564, + 'u', 556, + '{', 368, + '|', 345, + '}', 369, + '~', 326, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(51); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(260); - if (set_contains(sym_identifier_character_set_1, 658, lookahead)) ADVANCE(309); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(398); + if (set_contains(sym_identifier_character_set_1, 658, lookahead)) ADVANCE(677); END_STATE(); case 52: ADVANCE_MAP( - '!', 71, - '"', 285, - '#', 86, - '%', 203, - '&', 212, - '(', 184, - ')', 129, - '*', 199, - '+', 196, - ',', 128, - '-', 191, - '.', 251, - '/', 201, - ':', 236, - ';', 225, - '<', 219, - '=', 235, - '>', 215, - '?', 237, - 'L', 298, - 'U', 300, - '[', 232, - '\\', 10, - ']', 233, - '^', 209, - 'u', 302, - '|', 206, - '}', 230, + '!', 324, + '"', 424, + '#', 112, + '&', 349, + '\'', 414, + '(', 323, + '*', 337, + '+', 334, + '-', 329, + '.', 225, + '/', 73, + '0', 396, + ';', 364, + 'L', 552, + 'U', 554, + '[', 87, + '\\', 6, + '_', 564, + 'u', 556, + '{', 368, + '~', 326, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(52); - if (set_contains(sym_identifier_character_set_1, 658, lookahead)) ADVANCE(309); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(398); + if (set_contains(sym_identifier_character_set_1, 658, lookahead)) ADVANCE(677); END_STATE(); case 53: ADVANCE_MAP( - '!', 71, - '#', 86, - '%', 203, - '&', 212, - '(', 184, - ')', 129, - '*', 199, - '+', 196, - ',', 128, - '-', 191, - '.', 251, - '/', 201, - ':', 236, - ';', 225, - '<', 219, - '=', 235, - '>', 215, - '?', 237, - '[', 232, - '\\', 18, - ']', 233, - '^', 209, - '{', 229, - '|', 206, - '}', 230, + '!', 324, + '"', 424, + '#', 116, + '&', 349, + '\'', 414, + '(', 323, + ')', 266, + '*', 337, + '+', 334, + ',', 265, + '-', 329, + '.', 391, + '/', 73, + '0', 396, + ':', 374, + ';', 364, + 'L', 552, + 'U', 554, + '[', 371, + '\\', 4, + ']', 372, + '_', 564, + 'u', 556, + '{', 368, + '}', 369, + '~', 326, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(53); - if (set_contains(sym_identifier_character_set_1, 658, lookahead)) ADVANCE(309); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(398); + if (set_contains(sym_identifier_character_set_1, 658, lookahead)) ADVANCE(677); END_STATE(); case 54: ADVANCE_MAP( - '!', 71, - '#', 86, - '%', 203, - '&', 212, - '(', 184, - ')', 129, - '*', 199, - '+', 196, - ',', 128, - '-', 191, - '.', 250, - '/', 201, - ':', 236, - ';', 225, - '<', 219, - '=', 235, - '>', 215, - '?', 237, - '[', 231, - '\\', 20, - ']', 77, - '^', 209, - '|', 206, - '}', 230, + '!', 324, + '"', 424, + '#', 114, + '&', 349, + '\'', 414, + '(', 323, + '*', 337, + '+', 334, + '-', 329, + '.', 225, + '/', 73, + '0', 396, + ';', 364, + 'L', 552, + 'U', 554, + '[', 87, + '\\', 48, + '_', 564, + 'u', 556, + '{', 368, + '~', 326, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(54); - if (set_contains(sym_identifier_character_set_1, 658, lookahead)) ADVANCE(309); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(398); + if (set_contains(sym_identifier_character_set_1, 658, lookahead)) ADVANCE(677); END_STATE(); case 55: ADVANCE_MAP( - '!', 71, - '#', 79, - '%', 203, - '&', 212, - '(', 184, - ')', 129, - '*', 199, - '+', 196, - ',', 128, - '-', 191, - '.', 251, - '/', 201, - ':', 236, - ';', 225, - '<', 219, - '=', 235, - '>', 215, - '?', 237, - '[', 232, - '\\', 12, - '^', 209, - '{', 229, - '|', 206, - '}', 230, + '!', 324, + '\'', 414, + '(', 323, + ')', 266, + '+', 336, + '-', 331, + '.', 225, + '/', 73, + '0', 396, + 'L', 560, + 'U', 561, + '\\', 22, + '_', 564, + 'u', 562, + '~', 326, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(55); - if (set_contains(sym_identifier_character_set_1, 658, lookahead)) ADVANCE(309); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(398); + if (set_contains(sym_identifier_character_set_1, 658, lookahead)) ADVANCE(677); END_STATE(); case 56: ADVANCE_MAP( - '!', 71, - '#', 81, - '%', 202, - '&', 211, - '(', 184, - ')', 129, - '*', 198, - '+', 193, - ',', 128, - '-', 188, - '/', 200, - ';', 225, - '<', 220, - '=', 235, - '>', 216, - '[', 232, - '\\', 14, - '^', 208, - '{', 229, - '|', 207, + '!', 82, + '"', 424, + '#', 121, + '%', 342, + '&', 351, + '(', 323, + ')', 266, + '*', 338, + '+', 335, + ',', 265, + '-', 330, + '.', 389, + '/', 340, + ':', 374, + ';', 364, + '<', 358, + '=', 373, + '>', 354, + '?', 375, + 'L', 553, + 'U', 555, + '[', 371, + '\\', 8, + ']', 372, + '^', 348, + '_', 564, + 'u', 557, + '|', 345, + '}', 369, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(56); - if (set_contains(sym_identifier_character_set_1, 658, lookahead)) ADVANCE(309); + if (set_contains(sym_identifier_character_set_1, 658, lookahead)) ADVANCE(677); END_STATE(); case 57: - if (lookahead == '"') ADVANCE(285); - if (lookahead == '/') ADVANCE(63); - if (lookahead == '<') ADVANCE(73); - if (lookahead == 'L') ADVANCE(298); - if (lookahead == 'U') ADVANCE(300); - if (lookahead == '\\') ADVANCE(29); - if (lookahead == 'u') ADVANCE(302); + ADVANCE_MAP( + '!', 82, + '#', 121, + '%', 342, + '&', 351, + '(', 323, + '*', 338, + '+', 335, + ',', 265, + '-', 330, + '.', 388, + '/', 340, + '<', 358, + '=', 373, + '>', 354, + '?', 375, + '[', 370, + '\\', 16, + '^', 348, + '_', 564, + '|', 345, + ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(57); - if (set_contains(sym_identifier_character_set_1, 658, lookahead)) ADVANCE(309); + if (set_contains(sym_identifier_character_set_1, 658, lookahead)) ADVANCE(677); END_STATE(); case 58: - if (lookahead == '"') ADVANCE(285); - if (lookahead == '/') ADVANCE(63); - if (lookahead == '\\') ADVANCE(38); + ADVANCE_MAP( + '!', 82, + '#', 113, + '%', 342, + '&', 351, + '(', 323, + ')', 266, + '*', 338, + '+', 335, + ',', 265, + '-', 330, + '.', 389, + '/', 340, + ':', 374, + ';', 364, + '<', 358, + '=', 373, + '>', 354, + '?', 375, + '[', 371, + '\\', 10, + '^', 348, + '_', 564, + '{', 368, + '|', 345, + ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(58); + if (set_contains(sym_identifier_character_set_1, 658, lookahead)) ADVANCE(677); END_STATE(); case 59: - if (lookahead == '#') ADVANCE(96); - if (lookahead == '/') ADVANCE(63); - if (lookahead == '\\') ADVANCE(27); - if (lookahead == '}') ADVANCE(230); + ADVANCE_MAP( + '!', 82, + '%', 342, + '&', 351, + '(', 323, + ')', 266, + '*', 338, + '+', 335, + ',', 265, + '-', 330, + '.', 388, + '/', 340, + ':', 374, + ';', 364, + '<', 358, + '=', 373, + '>', 354, + '?', 375, + '[', 370, + ); + if (lookahead == '\\') SKIP(18); + if (lookahead == ']') ADVANCE(88); + if (lookahead == '^') ADVANCE(348); + if (lookahead == '_') ADVANCE(89); + if (lookahead == '|') ADVANCE(345); + if (lookahead == '}') ADVANCE(369); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(59); - if (set_contains(sym_identifier_character_set_1, 658, lookahead)) ADVANCE(309); END_STATE(); case 60: ADVANCE_MAP( - '#', 83, - '(', 184, - ')', 129, - '*', 198, - ',', 128, - '/', 63, - ':', 236, - ';', 225, - '=', 234, - '[', 232, - '\\', 16, - '{', 229, - '}', 230, + '!', 82, + '%', 341, + '&', 350, + '(', 323, + ')', 266, + '*', 337, + '+', 332, + ',', 265, + '-', 327, + '/', 339, + ':', 81, + '<', 359, + '=', 83, + '>', 355, ); + if (lookahead == '\\') SKIP(20); + if (lookahead == ']') ADVANCE(88); + if (lookahead == '^') ADVANCE(347); + if (lookahead == '_') ADVANCE(89); + if (lookahead == '|') ADVANCE(346); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(60); - if (set_contains(sym_identifier_character_set_1, 658, lookahead)) ADVANCE(309); END_STATE(); case 61: - if (lookahead == '\'') ADVANCE(276); - if (lookahead == '/') ADVANCE(63); - if (lookahead == '\\') ADVANCE(38); + ADVANCE_MAP( + '"', 424, + '/', 73, + '<', 84, + 'L', 553, + 'U', 555, + '\\', 29, + '_', 564, + 'u', 557, + ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(61); + if (set_contains(sym_identifier_character_set_1, 658, lookahead)) ADVANCE(677); END_STATE(); case 62: - if (lookahead == '(') ADVANCE(184); - if (lookahead == '/') ADVANCE(63); - if (lookahead == '\\') SKIP(41); + if (lookahead == '"') ADVANCE(424); + if (lookahead == '/') ADVANCE(73); + if (lookahead == '\\') ADVANCE(38); + if (lookahead == '_') ADVANCE(89); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(62); END_STATE(); case 63: - if (lookahead == '*') ADVANCE(66); - if (lookahead == '/') ADVANCE(312); + if (lookahead == '"') ADVANCE(420); END_STATE(); case 64: - if (lookahead == '*') ADVANCE(66); - if (lookahead == '/') ADVANCE(152); - if (lookahead != 0) ADVANCE(148); + if (lookahead == '"') ADVANCE(422); END_STATE(); case 65: - if (lookahead == '*') ADVANCE(65); - if (lookahead == '/') ADVANCE(310); - if (lookahead != 0) ADVANCE(66); + if (lookahead == '"') ADVANCE(421); + if (lookahead == '8') ADVANCE(66); END_STATE(); case 66: - if (lookahead == '*') ADVANCE(65); - if (lookahead != 0) ADVANCE(66); + if (lookahead == '"') ADVANCE(423); END_STATE(); case 67: - if (lookahead == '.') ADVANCE(99); - if (lookahead == '0') ADVANCE(256); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(257); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(266); + if (lookahead == '#') ADVANCE(157); + if (lookahead == '/') ADVANCE(73); + if (lookahead == '\\') ADVANCE(27); + if (lookahead == '_') ADVANCE(564); + if (lookahead == '}') ADVANCE(369); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(67); + if (set_contains(sym_identifier_character_set_1, 658, lookahead)) ADVANCE(677); END_STATE(); case 68: - if (lookahead == '.') ADVANCE(127); + ADVANCE_MAP( + '#', 117, + '(', 323, + '*', 337, + '/', 73, + '[', 371, + '\\', 14, + '_', 564, + '}', 369, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(68); + if (set_contains(sym_identifier_character_set_1, 658, lookahead)) ADVANCE(677); END_STATE(); case 69: - if (lookahead == '/') ADVANCE(146); - if (lookahead == '\\') ADVANCE(145); + if (lookahead == '#') ADVANCE(115); + if (lookahead == '(') ADVANCE(323); + if (lookahead == '*') ADVANCE(337); + if (lookahead == '/') ADVANCE(73); + if (lookahead == '[') ADVANCE(371); + if (lookahead == '\\') ADVANCE(12); + if (lookahead == '_') ADVANCE(564); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(69); - if (lookahead != 0) ADVANCE(144); + if (set_contains(sym_identifier_character_set_1, 658, lookahead)) ADVANCE(677); END_STATE(); case 70: - if (lookahead == ':') ADVANCE(226); + if (lookahead == '\'') ADVANCE(414); + if (lookahead == '/') ADVANCE(73); + if (lookahead == '\\') ADVANCE(38); + if (lookahead == '_') ADVANCE(89); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(70); END_STATE(); case 71: - if (lookahead == '=') ADVANCE(214); + if (lookahead == '(') ADVANCE(323); + if (lookahead == '/') ADVANCE(73); + if (lookahead == '\\') SKIP(41); + if (lookahead == '_') ADVANCE(89); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(71); END_STATE(); case 72: - if (lookahead == '=') ADVANCE(213); + if (lookahead == ')') ADVANCE(266); + if (lookahead == '.') ADVANCE(225); + if (lookahead == '/') ADVANCE(73); + if (lookahead == '0') ADVANCE(396); + 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); END_STATE(); case 73: - if (lookahead == '>') ADVANCE(295); - if (lookahead == '\\') ADVANCE(74); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(73); + if (lookahead == '*') ADVANCE(76); + if (lookahead == '/') ADVANCE(680); END_STATE(); case 74: - if (lookahead == '>') ADVANCE(296); - if (lookahead == '\\') ADVANCE(74); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(73); + if (lookahead == '*') ADVANCE(76); + if (lookahead == '/') ADVANCE(290); + if (lookahead != 0) ADVANCE(286); END_STATE(); case 75: - if (lookahead == 'U') ADVANCE(118); - if (lookahead == 'u') ADVANCE(110); + if (lookahead == '*') ADVANCE(75); + if (lookahead == '/') ADVANCE(678); + if (lookahead != 0) ADVANCE(76); END_STATE(); case 76: - if (lookahead == '[') ADVANCE(227); + if (lookahead == '*') ADVANCE(75); + if (lookahead != 0) ADVANCE(76); END_STATE(); case 77: - if (lookahead == ']') ADVANCE(228); + if (lookahead == '.') ADVANCE(225); + if (lookahead == '0') ADVANCE(396); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(398); END_STATE(); case 78: - if (lookahead == 'd') ADVANCE(158); - if (lookahead == 'e') ADVANCE(178); - if (lookahead == 'i') ADVANCE(166); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(78); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(183); + if (lookahead == '.') ADVANCE(225); + if (lookahead == '0') ADVANCE(394); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(395); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(404); END_STATE(); case 79: - if (lookahead == 'd') ADVANCE(158); - if (lookahead == 'e') ADVANCE(178); - if (lookahead == 'i') ADVANCE(167); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(79); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(183); + if (lookahead == '.') ADVANCE(264); END_STATE(); case 80: - if (lookahead == 'd') ADVANCE(158); - if (lookahead == 'e') ADVANCE(180); - if (lookahead == 'i') ADVANCE(166); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(80); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(183); + if (lookahead == '/') ADVANCE(283); + if (lookahead == '\\') ADVANCE(282); + if (lookahead == '_') ADVANCE(285); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(80); + if (lookahead != 0) ADVANCE(281); END_STATE(); case 81: - if (lookahead == 'd') ADVANCE(158); - if (lookahead == 'e') ADVANCE(180); - if (lookahead == 'i') ADVANCE(167); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(81); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(183); + if (lookahead == ':') ADVANCE(365); END_STATE(); case 82: - if (lookahead == 'd') ADVANCE(158); - if (lookahead == 'i') ADVANCE(166); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(82); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(183); + if (lookahead == '=') ADVANCE(353); END_STATE(); case 83: - if (lookahead == 'd') ADVANCE(158); - if (lookahead == 'i') ADVANCE(167); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(83); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(183); + if (lookahead == '=') ADVANCE(352); END_STATE(); case 84: - if (lookahead == 'd') ADVANCE(95); + if (lookahead == '>') ADVANCE(550); + if (lookahead == '\\') ADVANCE(85); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(84); END_STATE(); case 85: - if (lookahead == 'd') ADVANCE(89); + if (lookahead == '>') ADVANCE(551); + if (lookahead == '\\') ADVANCE(85); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(84); END_STATE(); case 86: - if (lookahead == 'e') ADVANCE(97); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(86); + if (lookahead == 'U') ADVANCE(244); + if (lookahead == 'u') ADVANCE(236); END_STATE(); case 87: - if (lookahead == 'e') ADVANCE(136); + if (lookahead == '[') ADVANCE(366); END_STATE(); case 88: - if (lookahead == 'e') ADVANCE(92); + if (lookahead == ']') ADVANCE(367); END_STATE(); case 89: - if (lookahead == 'e') ADVANCE(93); + if (lookahead == '_') ADVANCE(95); END_STATE(); case 90: - if (lookahead == 'f') ADVANCE(138); + if (lookahead == '_') ADVANCE(156); END_STATE(); case 91: - if (lookahead == 'f') ADVANCE(132); + if (lookahead == '_') ADVANCE(100); END_STATE(); case 92: - if (lookahead == 'f') ADVANCE(140); + if (lookahead == '_') ADVANCE(218); END_STATE(); case 93: - if (lookahead == 'f') ADVANCE(142); + if (lookahead == '_') ADVANCE(107); END_STATE(); case 94: - if (lookahead == 'i') ADVANCE(90); - if (lookahead == 's') ADVANCE(87); + if (lookahead == '_') ADVANCE(162); END_STATE(); case 95: - if (lookahead == 'i') ADVANCE(91); + ADVANCE_MAP( + 'a', 166, + 'c', 187, + 'd', 124, + 'e', 219, + 'f', 185, + 'i', 176, + 'k', 127, + 'm', 96, + 'n', 186, + 'p', 97, + 'r', 104, + 's', 129, + 'u', 175, + ); END_STATE(); case 96: - if (lookahead == 'i') ADVANCE(167); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(96); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(183); + if (lookahead == 'a') ADVANCE(221); + if (lookahead == 'u') ADVANCE(201); END_STATE(); case 97: - if (lookahead == 'l') ADVANCE(94); - if (lookahead == 'n') ADVANCE(84); + if (lookahead == 'a') ADVANCE(105); + if (lookahead == 'e') ADVANCE(196); END_STATE(); case 98: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(260); + if (lookahead == 'a') ADVANCE(252); END_STATE(); case 99: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(255); + if (lookahead == 'a') ADVANCE(222); END_STATE(); case 100: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(257); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(266); + if (lookahead == 'a') ADVANCE(147); END_STATE(); case 101: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(309); + if (lookahead == 'a') ADVANCE(212); END_STATE(); case 102: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(263); + if (lookahead == 'a') ADVANCE(213); END_STATE(); case 103: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(266); + if (lookahead == 'b') ADVANCE(133); END_STATE(); case 104: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(261); + if (lookahead == 'c') ADVANCE(215); + if (lookahead == 'e') ADVANCE(145); + if (lookahead == 'o') ADVANCE(91); END_STATE(); case 105: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(291); + if (lookahead == 'c') ADVANCE(164); END_STATE(); case 106: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(101); + if (lookahead == 'c') ADVANCE(192); END_STATE(); case 107: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(105); + if (lookahead == 'c') ADVANCE(149); END_STATE(); case 108: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(106); + if (lookahead == 'c') ADVANCE(163); END_STATE(); case 109: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(107); + if (lookahead == 'c') ADVANCE(211); END_STATE(); case 110: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(108); + if (lookahead == 'c') ADVANCE(125); END_STATE(); case 111: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(109); + if (lookahead == 'c') ADVANCE(102); END_STATE(); case 112: + if (lookahead == 'd') ADVANCE(297); + if (lookahead == 'e') ADVANCE(317); + if (lookahead == 'i') ADVANCE(305); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(112); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(110); + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(322); END_STATE(); case 113: + if (lookahead == 'd') ADVANCE(297); + if (lookahead == 'e') ADVANCE(317); + if (lookahead == 'i') ADVANCE(306); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(113); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(111); + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(322); END_STATE(); case 114: + if (lookahead == 'd') ADVANCE(297); + if (lookahead == 'e') ADVANCE(319); + if (lookahead == 'i') ADVANCE(305); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(114); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(112); + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(322); END_STATE(); case 115: + if (lookahead == 'd') ADVANCE(297); + if (lookahead == 'e') ADVANCE(319); + if (lookahead == 'i') ADVANCE(306); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(115); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(113); + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(322); END_STATE(); case 116: + if (lookahead == 'd') ADVANCE(297); + if (lookahead == 'i') ADVANCE(305); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(116); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(114); + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(322); END_STATE(); case 117: + if (lookahead == 'd') ADVANCE(297); + if (lookahead == 'i') ADVANCE(306); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(117); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(115); + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(322); END_STATE(); case 118: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(116); + if (lookahead == 'd') ADVANCE(153); END_STATE(); case 119: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(117); + if (lookahead == 'd') ADVANCE(252); END_STATE(); case 120: - if (eof) ADVANCE(122); - ADVANCE_MAP( - '!', 186, - '"', 285, - '#', 78, - '%', 203, - '&', 212, - '\'', 276, - '(', 184, - ')', 129, - '*', 199, - '+', 194, - ',', 128, - '-', 189, - '.', 252, - '/', 201, - '0', 258, - ':', 236, - ';', 225, - '<', 219, - '=', 235, - '>', 215, - '?', 237, - 'L', 297, - 'U', 299, - '[', 232, - '\\', 2, - ']', 233, - '^', 209, - 'u', 301, - '{', 229, - '|', 206, - '}', 230, - '~', 187, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(120); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(260); - if (set_contains(sym_identifier_character_set_1, 658, lookahead)) ADVANCE(309); + if (lookahead == 'd') ADVANCE(132); END_STATE(); case 121: - if (eof) ADVANCE(122); - ADVANCE_MAP( - '!', 185, - '"', 285, - '#', 82, - '&', 210, - '\'', 276, - '(', 184, - ')', 129, - '*', 198, - '+', 195, - ',', 128, - '-', 190, - '.', 253, - '/', 63, - '0', 258, - ':', 236, - ';', 225, - '=', 234, - 'L', 297, - 'U', 299, - '[', 232, - '\\', 4, - ']', 233, - 'u', 301, - '{', 229, - '}', 230, - '~', 187, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(121); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(260); - if (set_contains(sym_identifier_character_set_1, 658, lookahead)) ADVANCE(309); + if (lookahead == 'e') ADVANCE(165); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(121); END_STATE(); case 122: - ACCEPT_TOKEN(ts_builtin_sym_end); + if (lookahead == 'e') ADVANCE(273); END_STATE(); case 123: - ACCEPT_TOKEN(aux_sym_preproc_include_token1); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(183); + if (lookahead == 'e') ADVANCE(172); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(123); END_STATE(); case 124: - ACCEPT_TOKEN(aux_sym_preproc_include_token2); + if (lookahead == 'e') ADVANCE(193); END_STATE(); case 125: - ACCEPT_TOKEN(aux_sym_preproc_def_token1); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(183); + if (lookahead == 'e') ADVANCE(252); END_STATE(); case 126: - ACCEPT_TOKEN(anon_sym_LPAREN); + if (lookahead == 'e') ADVANCE(223); END_STATE(); case 127: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); + if (lookahead == 'e') ADVANCE(194); END_STATE(); case 128: - ACCEPT_TOKEN(anon_sym_COMMA); + if (lookahead == 'e') ADVANCE(170); END_STATE(); case 129: - ACCEPT_TOKEN(anon_sym_RPAREN); + if (lookahead == 'e') ADVANCE(109); END_STATE(); case 130: - ACCEPT_TOKEN(aux_sym_preproc_if_token1); - if (lookahead == 'd') ADVANCE(162); - if (lookahead == 'n') ADVANCE(156); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(183); + if (lookahead == 'e') ADVANCE(119); END_STATE(); case 131: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(131); + if (lookahead == 'e') ADVANCE(143); END_STATE(); case 132: - ACCEPT_TOKEN(aux_sym_preproc_if_token2); + if (lookahead == 'e') ADVANCE(144); END_STATE(); case 133: - ACCEPT_TOKEN(aux_sym_preproc_if_token2); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(183); + if (lookahead == 'e') ADVANCE(92); END_STATE(); case 134: - ACCEPT_TOKEN(aux_sym_preproc_ifdef_token1); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(183); + if (lookahead == 'e') ADVANCE(167); END_STATE(); case 135: - ACCEPT_TOKEN(aux_sym_preproc_ifdef_token2); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(183); + if (lookahead == 'e') ADVANCE(111); END_STATE(); case 136: - ACCEPT_TOKEN(aux_sym_preproc_else_token1); + if (lookahead == 'e') ADVANCE(210); END_STATE(); case 137: - ACCEPT_TOKEN(aux_sym_preproc_else_token1); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(183); + if (lookahead == 'e') ADVANCE(197); END_STATE(); case 138: - ACCEPT_TOKEN(aux_sym_preproc_elif_token1); - if (lookahead == 'd') ADVANCE(88); - if (lookahead == 'n') ADVANCE(85); + if (lookahead == 'e') ADVANCE(146); END_STATE(); case 139: - ACCEPT_TOKEN(aux_sym_preproc_elif_token1); - if (lookahead == 'd') ADVANCE(164); - if (lookahead == 'n') ADVANCE(157); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(183); + if (lookahead == 'e') ADVANCE(220); + if (lookahead == 'i') ADVANCE(179); END_STATE(); case 140: - ACCEPT_TOKEN(aux_sym_preproc_elifdef_token1); + if (lookahead == 'e') ADVANCE(108); END_STATE(); case 141: - ACCEPT_TOKEN(aux_sym_preproc_elifdef_token1); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(183); + if (lookahead == 'f') ADVANCE(275); END_STATE(); case 142: - ACCEPT_TOKEN(aux_sym_preproc_elifdef_token2); + if (lookahead == 'f') ADVANCE(269); END_STATE(); case 143: - ACCEPT_TOKEN(aux_sym_preproc_elifdef_token2); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(183); + if (lookahead == 'f') ADVANCE(277); END_STATE(); case 144: - ACCEPT_TOKEN(aux_sym_preproc_arg_token1); + if (lookahead == 'f') ADVANCE(279); END_STATE(); case 145: - ACCEPT_TOKEN(aux_sym_preproc_arg_token1); - if (lookahead == '\n') ADVANCE(147); - if (lookahead == '\r') ADVANCE(36); + if (lookahead == 'f') ADVANCE(259); END_STATE(); case 146: - ACCEPT_TOKEN(aux_sym_preproc_arg_token1); - if (lookahead == '*') ADVANCE(66); - if (lookahead == '/') ADVANCE(312); + if (lookahead == 'f') ADVANCE(188); END_STATE(); case 147: - ACCEPT_TOKEN(aux_sym_preproc_arg_token1); - if (lookahead == '/') ADVANCE(146); - if (lookahead == '\\') ADVANCE(145); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ') ADVANCE(144); + if (lookahead == 'f') ADVANCE(214); END_STATE(); case 148: - ACCEPT_TOKEN(aux_sym_preproc_arg_token2); + if (lookahead == 'g') ADVANCE(182); END_STATE(); case 149: - ACCEPT_TOKEN(aux_sym_preproc_arg_token2); - if (lookahead == '\n') ADVANCE(124); - if (lookahead == '/') ADVANCE(64); - if (lookahead == '\\') ADVANCE(150); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(151); - if (lookahead != 0) ADVANCE(148); + if (lookahead == 'h') ADVANCE(140); END_STATE(); case 150: - ACCEPT_TOKEN(aux_sym_preproc_arg_token2); - if (lookahead == '\n') ADVANCE(151); - if (lookahead == '\r') ADVANCE(42); + if (lookahead == 'i') ADVANCE(141); + if (lookahead == 's') ADVANCE(122); END_STATE(); case 151: - ACCEPT_TOKEN(aux_sym_preproc_arg_token2); - if (lookahead == '/') ADVANCE(64); - if (lookahead == '\\') ADVANCE(150); - if (lookahead == '\t' || - (0x0b <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(151); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(148); + if (lookahead == 'i') ADVANCE(148); + if (lookahead == 'w') ADVANCE(99); END_STATE(); case 152: - ACCEPT_TOKEN(aux_sym_preproc_arg_token2); - if (lookahead == '\\') ADVANCE(45); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(312); + if (lookahead == 'i') ADVANCE(207); END_STATE(); case 153: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'c') ADVANCE(179); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(183); + if (lookahead == 'i') ADVANCE(142); END_STATE(); case 154: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'd') ADVANCE(177); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(183); + if (lookahead == 'i') ADVANCE(208); END_STATE(); case 155: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'd') ADVANCE(161); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(183); + if (lookahead == 'i') ADVANCE(177); + if (lookahead == 'r') ADVANCE(136); END_STATE(); case 156: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'd') ADVANCE(163); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(183); + if (lookahead == 'i') ADVANCE(177); + if (lookahead == 'u') ADVANCE(174); END_STATE(); case 157: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'd') ADVANCE(165); + if (lookahead == 'i') ADVANCE(306); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(157); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(183); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(322); END_STATE(); case 158: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(168); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(183); + if (lookahead == 'i') ADVANCE(206); END_STATE(); case 159: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(137); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(183); + if (lookahead == 'i') ADVANCE(205); END_STATE(); case 160: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(125); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(183); + if (lookahead == 'i') ADVANCE(191); END_STATE(); case 161: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(123); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(183); + if (lookahead == 'i') ADVANCE(180); END_STATE(); case 162: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(171); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(183); + if (lookahead == 'i') ADVANCE(184); END_STATE(); case 163: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(172); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(183); + if (lookahead == 'k') ADVANCE(252); END_STATE(); case 164: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(173); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(183); + if (lookahead == 'k') ADVANCE(130); END_STATE(); case 165: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(174); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(183); + if (lookahead == 'l') ADVANCE(150); + if (lookahead == 'n') ADVANCE(118); END_STATE(); case 166: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(130); - if (lookahead == 'n') ADVANCE(153); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(183); + if (lookahead == 'l') ADVANCE(151); END_STATE(); case 167: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(130); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(183); + if (lookahead == 'l') ADVANCE(252); END_STATE(); case 168: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(175); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(183); + if (lookahead == 'l') ADVANCE(119); END_STATE(); case 169: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(139); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(183); + if (lookahead == 'l') ADVANCE(161); END_STATE(); case 170: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(133); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(183); + if (lookahead == 'm') ADVANCE(252); END_STATE(); case 171: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(134); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(183); + if (lookahead == 'm') ADVANCE(128); END_STATE(); case 172: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(135); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(183); + if (lookahead == 'n') ADVANCE(118); END_STATE(); case 173: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(141); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(183); + if (lookahead == 'n') ADVANCE(252); END_STATE(); case 174: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(143); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(183); + if (lookahead == 'n') ADVANCE(216); END_STATE(); case 175: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'i') ADVANCE(181); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(183); + if (lookahead == 'n') ADVANCE(216); + if (lookahead == 's') ADVANCE(126); END_STATE(); case 176: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'i') ADVANCE(169); - if (lookahead == 's') ADVANCE(159); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(183); + if (lookahead == 'n') ADVANCE(154); + if (lookahead == 'o') ADVANCE(171); END_STATE(); case 177: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'i') ADVANCE(170); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(183); + if (lookahead == 'n') ADVANCE(169); END_STATE(); case 178: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'l') ADVANCE(176); - if (lookahead == 'n') ADVANCE(154); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(183); + if (lookahead == 'n') ADVANCE(110); END_STATE(); case 179: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'l') ADVANCE(182); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(183); + if (lookahead == 'n') ADVANCE(158); END_STATE(); case 180: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'n') ADVANCE(154); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(183); + if (lookahead == 'n') ADVANCE(125); END_STATE(); case 181: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'n') ADVANCE(160); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(183); + if (lookahead == 'n') ADVANCE(134); END_STATE(); case 182: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'u') ADVANCE(155); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(183); + if (lookahead == 'n') ADVANCE(130); END_STATE(); case 183: - ACCEPT_TOKEN(sym_preproc_directive); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(183); + if (lookahead == 'n') ADVANCE(203); END_STATE(); case 184: - ACCEPT_TOKEN(anon_sym_LPAREN2); + if (lookahead == 'n') ADVANCE(159); END_STATE(); case 185: - ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == 'o') ADVANCE(195); END_STATE(); case 186: - ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(214); + if (lookahead == 'o') ADVANCE(155); END_STATE(); case 187: - ACCEPT_TOKEN(anon_sym_TILDE); + if (lookahead == 'o') ADVANCE(168); END_STATE(); case 188: - ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == 'o') ADVANCE(163); END_STATE(); case 189: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(248); - if (lookahead == '.') ADVANCE(99); - if (lookahead == '0') ADVANCE(258); - if (lookahead == '=') ADVANCE(242); - if (lookahead == '>') ADVANCE(254); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(260); + if (lookahead == 'o') ADVANCE(178); + if (lookahead == 'r') ADVANCE(138); END_STATE(); case 190: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(248); - if (lookahead == '.') ADVANCE(99); - if (lookahead == '0') ADVANCE(258); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(260); + if (lookahead == 'o') ADVANCE(183); END_STATE(); case 191: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(248); - if (lookahead == '=') ADVANCE(242); - if (lookahead == '>') ADVANCE(254); + if (lookahead == 'o') ADVANCE(173); END_STATE(); case 192: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(99); - if (lookahead == '0') ADVANCE(258); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(260); + if (lookahead == 'p') ADVANCE(215); END_STATE(); case 193: - ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == 'p') ADVANCE(199); + if (lookahead == 'v') ADVANCE(139); END_STATE(); case 194: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(249); - if (lookahead == '.') ADVANCE(99); - if (lookahead == '0') ADVANCE(258); - if (lookahead == '=') ADVANCE(241); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(260); + if (lookahead == 'r') ADVANCE(181); END_STATE(); case 195: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(249); - if (lookahead == '.') ADVANCE(99); - if (lookahead == '0') ADVANCE(258); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(260); + if (lookahead == 'r') ADVANCE(110); END_STATE(); case 196: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(249); - if (lookahead == '=') ADVANCE(241); + if (lookahead == 'r') ADVANCE(106); END_STATE(); case 197: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '.') ADVANCE(99); - if (lookahead == '0') ADVANCE(258); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(260); + if (lookahead == 'r') ADVANCE(94); END_STATE(); case 198: - ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == 'r') ADVANCE(173); END_STATE(); case 199: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '=') ADVANCE(238); + if (lookahead == 'r') ADVANCE(135); END_STATE(); case 200: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(66); - if (lookahead == '/') ADVANCE(312); + if (lookahead == 'r') ADVANCE(138); END_STATE(); case 201: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(66); - if (lookahead == '/') ADVANCE(312); - if (lookahead == '=') ADVANCE(239); + if (lookahead == 's') ADVANCE(209); END_STATE(); case 202: - ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == 's') ADVANCE(90); END_STATE(); case 203: - ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(240); + if (lookahead == 's') ADVANCE(206); END_STATE(); case 204: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + if (lookahead == 's') ADVANCE(130); END_STATE(); case 205: - ACCEPT_TOKEN(anon_sym_AMP_AMP); + if (lookahead == 't') ADVANCE(252); END_STATE(); case 206: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(247); - if (lookahead == '|') ADVANCE(204); + if (lookahead == 't') ADVANCE(259); END_STATE(); case 207: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(204); + if (lookahead == 't') ADVANCE(258); END_STATE(); case 208: - ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == 't') ADVANCE(257); END_STATE(); case 209: - ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(246); + if (lookahead == 't') ADVANCE(93); END_STATE(); case 210: - ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == 't') ADVANCE(217); END_STATE(); case 211: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(205); + if (lookahead == 't') ADVANCE(160); END_STATE(); case 212: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(205); - if (lookahead == '=') ADVANCE(245); + if (lookahead == 't') ADVANCE(98); END_STATE(); case 213: - ACCEPT_TOKEN(anon_sym_EQ_EQ); + if (lookahead == 't') ADVANCE(130); END_STATE(); case 214: - ACCEPT_TOKEN(anon_sym_BANG_EQ); + if (lookahead == 't') ADVANCE(137); END_STATE(); case 215: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(217); - if (lookahead == '>') ADVANCE(224); + if (lookahead == 'u') ADVANCE(252); END_STATE(); case 216: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(217); - if (lookahead == '>') ADVANCE(223); + if (lookahead == 'u') ADVANCE(204); END_STATE(); case 217: - ACCEPT_TOKEN(anon_sym_GT_EQ); + if (lookahead == 'u') ADVANCE(198); END_STATE(); case 218: - ACCEPT_TOKEN(anon_sym_LT_EQ); + if (lookahead == 'u') ADVANCE(174); END_STATE(); case 219: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(222); - if (lookahead == '=') ADVANCE(218); + if (lookahead == 'x') ADVANCE(152); END_STATE(); case 220: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(221); - if (lookahead == '=') ADVANCE(218); + if (lookahead == 'x') ADVANCE(158); END_STATE(); case 221: - ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == 'y') ADVANCE(103); END_STATE(); case 222: - ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(243); + if (lookahead == 'y') ADVANCE(202); END_STATE(); case 223: - ACCEPT_TOKEN(anon_sym_GT_GT); + if (lookahead == 'd' || + lookahead == 'r') ADVANCE(252); END_STATE(); case 224: - ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '=') ADVANCE(244); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(398); END_STATE(); case 225: - ACCEPT_TOKEN(anon_sym_SEMI); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(393); END_STATE(); case 226: - ACCEPT_TOKEN(anon_sym_COLON_COLON); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(395); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(404); END_STATE(); case 227: - ACCEPT_TOKEN(anon_sym_LBRACK_LBRACK); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(677); END_STATE(); case 228: - ACCEPT_TOKEN(anon_sym_RBRACK_RBRACK); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(401); END_STATE(); case 229: - ACCEPT_TOKEN(anon_sym_LBRACE); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(404); END_STATE(); case 230: - ACCEPT_TOKEN(anon_sym_RBRACE); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(399); END_STATE(); case 231: - ACCEPT_TOKEN(anon_sym_LBRACK); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(546); END_STATE(); case 232: - ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '[') ADVANCE(227); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(227); END_STATE(); case 233: - ACCEPT_TOKEN(anon_sym_RBRACK); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(231); END_STATE(); case 234: - ACCEPT_TOKEN(anon_sym_EQ); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(232); END_STATE(); case 235: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(213); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(233); END_STATE(); case 236: - ACCEPT_TOKEN(anon_sym_COLON); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(234); END_STATE(); case 237: - ACCEPT_TOKEN(anon_sym_QMARK); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(235); END_STATE(); case 238: - ACCEPT_TOKEN(anon_sym_STAR_EQ); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(236); END_STATE(); case 239: - ACCEPT_TOKEN(anon_sym_SLASH_EQ); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(237); END_STATE(); case 240: - ACCEPT_TOKEN(anon_sym_PERCENT_EQ); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(238); END_STATE(); case 241: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(239); END_STATE(); case 242: - ACCEPT_TOKEN(anon_sym_DASH_EQ); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(240); END_STATE(); case 243: - ACCEPT_TOKEN(anon_sym_LT_LT_EQ); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(241); END_STATE(); case 244: - ACCEPT_TOKEN(anon_sym_GT_GT_EQ); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(242); END_STATE(); case 245: - ACCEPT_TOKEN(anon_sym_AMP_EQ); - END_STATE(); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(243); + END_STATE(); case 246: - ACCEPT_TOKEN(anon_sym_CARET_EQ); + if (eof) ADVANCE(251); + if (lookahead == '\n') SKIP(250); END_STATE(); case 247: - ACCEPT_TOKEN(anon_sym_PIPE_EQ); + if (eof) ADVANCE(251); + if (lookahead == '\n') SKIP(250); + if (lookahead == '\r') SKIP(246); END_STATE(); case 248: - ACCEPT_TOKEN(anon_sym_DASH_DASH); + if (eof) ADVANCE(251); + ADVANCE_MAP( + '!', 325, + '"', 424, + '#', 112, + '%', 342, + '&', 351, + '\'', 414, + '(', 323, + ')', 266, + '*', 338, + '+', 333, + ',', 265, + '-', 328, + '.', 390, + '/', 340, + '0', 396, + ':', 374, + ';', 364, + '<', 358, + '=', 373, + '>', 354, + '?', 375, + 'L', 552, + 'U', 554, + '[', 371, + '\\', 2, + ']', 372, + '^', 348, + '_', 564, + 'u', 556, + '{', 368, + '|', 345, + '}', 369, + '~', 326, + ); + 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); END_STATE(); case 249: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS); + if (eof) ADVANCE(251); + ADVANCE_MAP( + '!', 324, + '"', 424, + '#', 116, + '&', 349, + '\'', 414, + '(', 323, + ')', 266, + '*', 337, + '+', 334, + ',', 265, + '-', 329, + '.', 391, + '/', 73, + '0', 396, + ':', 374, + ';', 364, + 'L', 552, + 'U', 554, + '[', 371, + '\\', 4, + ']', 372, + '_', 564, + 'u', 556, + '{', 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); END_STATE(); case 250: - ACCEPT_TOKEN(anon_sym_DOT); + if (eof) ADVANCE(251); + ADVANCE_MAP( + '!', 82, + '"', 424, + '#', 123, + '%', 342, + '&', 351, + '(', 323, + ')', 266, + '*', 338, + '+', 335, + ',', 265, + '-', 330, + '.', 389, + '/', 340, + ':', 374, + ';', 364, + '<', 358, + '=', 373, + '>', 354, + '?', 375, + 'L', 63, + 'U', 64, + '[', 371, + ); + if (lookahead == '\\') SKIP(247); + if (lookahead == ']') ADVANCE(372); + if (lookahead == '^') ADVANCE(348); + if (lookahead == '_') ADVANCE(89); + if (lookahead == 'u') ADVANCE(65); + if (lookahead == '{') ADVANCE(368); + if (lookahead == '|') ADVANCE(345); + if (lookahead == '}') ADVANCE(369); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(250); END_STATE(); case 251: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(68); + ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); case 252: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(68); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(255); + ACCEPT_TOKEN(sym__linux_kernel_annotations); END_STATE(); case 253: - ACCEPT_TOKEN(anon_sym_DOT); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(255); + 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); END_STATE(); case 254: - ACCEPT_TOKEN(anon_sym_DASH_GT); + 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); END_STATE(); case 255: - ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(99); - if (lookahead == 'E' || - lookahead == 'P' || - lookahead == 'e' || - lookahead == 'p') ADVANCE(268); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(255); - if (set_contains(sym_number_literal_character_set_13, 13, lookahead)) ADVANCE(271); + 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); END_STATE(); case 256: - ACCEPT_TOKEN(sym_number_literal); - ADVANCE_MAP( - '\'', 100, - '.', 269, - 'B', 265, - 'b', 265, - 'E', 264, - 'e', 264, - 'P', 268, - 'p', 268, - 'X', 103, - 'x', 103, - 'A', 266, - 'C', 266, - 'a', 266, - 'c', 266, - 'D', 266, - 'F', 266, - 'd', 266, - 'f', 266, - 'L', 271, - 'U', 271, - 'W', 271, - 'l', 271, - 'u', 271, - 'w', 271, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(257); + ACCEPT_TOKEN(sym__linux_kernel_annotations); + if (lookahead == '\\') ADVANCE(86); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); END_STATE(); case 257: - ACCEPT_TOKEN(sym_number_literal); - ADVANCE_MAP( - '\'', 100, - '.', 269, - 'E', 264, - 'e', 264, - 'P', 268, - 'p', 268, - 'A', 266, - 'C', 266, - 'a', 266, - 'c', 266, - 'B', 266, - 'D', 266, - 'F', 266, - 'b', 266, - 'd', 266, - 'f', 266, - 'L', 271, - 'U', 271, - 'W', 271, - 'l', 271, - 'u', 271, - 'w', 271, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(257); + ACCEPT_TOKEN(sym__linux_kernel_annotations); + if (lookahead == '_') ADVANCE(189); + if (lookahead == 'c') ADVANCE(190); + if (lookahead == 'd') ADVANCE(101); END_STATE(); case 258: - ACCEPT_TOKEN(sym_number_literal); - ADVANCE_MAP( - '\'', 98, - '.', 269, - 'B', 267, - 'b', 267, - 'X', 67, - 'x', 67, - 'E', 268, - 'P', 268, - 'e', 268, - 'p', 268, - 'D', 271, - 'F', 271, - 'L', 271, - 'U', 271, - 'W', 271, - 'd', 271, - 'f', 271, - 'l', 271, - 'u', 271, - 'w', 271, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(260); + ACCEPT_TOKEN(sym__linux_kernel_annotations); + if (lookahead == '_') ADVANCE(200); + if (lookahead == 'd') ADVANCE(101); END_STATE(); case 259: - ACCEPT_TOKEN(sym_number_literal); - ADVANCE_MAP( - '\'', 98, - '.', 269, - 'B', 270, - 'b', 270, - 'X', 103, - 'x', 103, - 'E', 268, - 'P', 268, - 'e', 268, - 'p', 268, - 'D', 271, - 'F', 271, - 'L', 271, - 'U', 271, - 'W', 271, - 'd', 271, - 'f', 271, - 'l', 271, - 'u', 271, - 'w', 271, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(260); + ACCEPT_TOKEN(sym__linux_kernel_annotations); + if (lookahead == 'd') ADVANCE(101); END_STATE(); case 260: - ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(98); - if (lookahead == '.') ADVANCE(269); - if (lookahead == 'E' || - lookahead == 'P' || - lookahead == 'e' || - lookahead == 'p') ADVANCE(268); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(260); - if (set_contains(sym_number_literal_character_set_13, 13, lookahead)) ADVANCE(271); + ACCEPT_TOKEN(aux_sym_preproc_include_token1); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(322); END_STATE(); case 261: - ACCEPT_TOKEN(sym_number_literal); - ADVANCE_MAP( - '\'', 104, - 'B', 261, - 'D', 261, - 'F', 261, - 'b', 261, - 'd', 261, - 'f', 261, - 'L', 271, - 'U', 271, - 'W', 271, - 'l', 271, - 'u', 271, - 'w', 271, - ); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'E') || - ('a' <= lookahead && lookahead <= 'e')) ADVANCE(261); + ACCEPT_TOKEN(aux_sym_preproc_include_token2); END_STATE(); case 262: - ACCEPT_TOKEN(sym_number_literal); - ADVANCE_MAP( - '\'', 102, - '+', 104, - '-', 104, - 'E', 262, - 'e', 262, - 'P', 268, - 'p', 268, - 'B', 263, - 'D', 263, - 'F', 263, - 'b', 263, - 'd', 263, - 'f', 263, - 'L', 271, - 'U', 271, - 'W', 271, - 'l', 271, - 'u', 271, - 'w', 271, - ); + ACCEPT_TOKEN(aux_sym_preproc_def_token1); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'C') || - ('a' <= lookahead && lookahead <= 'c')) ADVANCE(263); + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(322); END_STATE(); case 263: - ACCEPT_TOKEN(sym_number_literal); - ADVANCE_MAP( - '\'', 102, - 'E', 262, - 'e', 262, - 'P', 268, - 'p', 268, - 'B', 263, - 'D', 263, - 'F', 263, - 'b', 263, - 'd', 263, - 'f', 263, - 'L', 271, - 'U', 271, - 'W', 271, - 'l', 271, - 'u', 271, - 'w', 271, - ); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'C') || - ('a' <= lookahead && lookahead <= 'c')) ADVANCE(263); + ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); case 264: - ACCEPT_TOKEN(sym_number_literal); - ADVANCE_MAP( - '\'', 103, - '.', 269, - '+', 104, - '-', 104, - 'E', 264, - 'e', 264, - 'P', 268, - 'p', 268, - 'B', 266, - 'D', 266, - 'F', 266, - 'b', 266, - 'd', 266, - 'f', 266, - 'L', 271, - 'U', 271, - 'W', 271, - 'l', 271, - 'u', 271, - 'w', 271, - ); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'C') || - ('a' <= lookahead && lookahead <= 'c')) ADVANCE(266); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); END_STATE(); case 265: - ACCEPT_TOKEN(sym_number_literal); - ADVANCE_MAP( - '\'', 103, - '.', 269, - 'E', 264, - 'e', 264, - 'P', 268, - 'p', 268, - 'A', 266, - 'C', 266, - 'a', 266, - 'c', 266, - 'B', 266, - 'D', 266, - 'F', 266, - 'b', 266, - 'd', 266, - 'f', 266, - 'L', 271, - 'U', 271, - 'W', 271, - 'l', 271, - 'u', 271, - 'w', 271, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(257); + ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); case 266: - ACCEPT_TOKEN(sym_number_literal); - ADVANCE_MAP( - '\'', 103, - '.', 269, - 'E', 264, - 'e', 264, - 'P', 268, - 'p', 268, - 'B', 266, - 'D', 266, - 'F', 266, - 'b', 266, - 'd', 266, - 'f', 266, - 'L', 271, - 'U', 271, - 'W', 271, - 'l', 271, - 'u', 271, - 'w', 271, - ); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'C') || - ('a' <= lookahead && lookahead <= 'c')) ADVANCE(266); + ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); case 267: - ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '.') ADVANCE(99); - if (lookahead == '0') ADVANCE(259); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(260); - if (set_contains(sym_number_literal_character_set_13, 13, lookahead)) ADVANCE(271); + ACCEPT_TOKEN(aux_sym_preproc_if_token1); + if (lookahead == 'd') ADVANCE(301); + if (lookahead == 'n') ADVANCE(295); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(322); END_STATE(); case 268: - ACCEPT_TOKEN(sym_number_literal); - ADVANCE_MAP( - '+', 104, - '-', 104, - 'B', 261, - 'D', 261, - 'F', 261, - 'b', 261, - 'd', 261, - 'f', 261, - 'L', 271, - 'U', 271, - 'W', 271, - 'l', 271, - 'u', 271, - 'w', 271, - ); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'E') || - ('a' <= lookahead && lookahead <= 'e')) ADVANCE(261); + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(268); END_STATE(); case 269: - ACCEPT_TOKEN(sym_number_literal); - ADVANCE_MAP( - 'E', 262, - 'e', 262, - 'P', 268, - 'p', 268, - 'B', 263, - 'D', 263, - 'F', 263, - 'b', 263, - 'd', 263, - 'f', 263, - 'L', 271, - 'U', 271, - 'W', 271, - 'l', 271, - 'u', 271, - 'w', 271, - ); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'C') || - ('a' <= lookahead && lookahead <= 'c')) ADVANCE(263); + ACCEPT_TOKEN(aux_sym_preproc_if_token2); END_STATE(); case 270: - ACCEPT_TOKEN(sym_number_literal); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(260); - if (set_contains(sym_number_literal_character_set_13, 13, lookahead)) ADVANCE(271); + ACCEPT_TOKEN(aux_sym_preproc_if_token2); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(322); END_STATE(); case 271: - ACCEPT_TOKEN(sym_number_literal); - ADVANCE_MAP( - 'B', 271, - 'D', 271, - 'F', 271, - 'L', 271, - 'U', 271, - 'W', 271, - 'b', 271, - 'd', 271, - 'f', 271, - 'l', 271, - 'u', 271, - 'w', 271, - ); + ACCEPT_TOKEN(aux_sym_preproc_ifdef_token1); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(322); END_STATE(); case 272: - ACCEPT_TOKEN(anon_sym_L_SQUOTE); + ACCEPT_TOKEN(aux_sym_preproc_ifdef_token2); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(322); END_STATE(); case 273: - ACCEPT_TOKEN(anon_sym_u_SQUOTE); + ACCEPT_TOKEN(aux_sym_preproc_else_token1); END_STATE(); case 274: - ACCEPT_TOKEN(anon_sym_U_SQUOTE); + ACCEPT_TOKEN(aux_sym_preproc_else_token1); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(322); END_STATE(); case 275: - ACCEPT_TOKEN(anon_sym_u8_SQUOTE); + ACCEPT_TOKEN(aux_sym_preproc_elif_token1); + if (lookahead == 'd') ADVANCE(131); + if (lookahead == 'n') ADVANCE(120); END_STATE(); case 276: - ACCEPT_TOKEN(anon_sym_SQUOTE); + ACCEPT_TOKEN(aux_sym_preproc_elif_token1); + if (lookahead == 'd') ADVANCE(303); + if (lookahead == 'n') ADVANCE(296); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(322); END_STATE(); case 277: - ACCEPT_TOKEN(aux_sym_char_literal_token1); + ACCEPT_TOKEN(aux_sym_preproc_elifdef_token1); END_STATE(); case 278: - ACCEPT_TOKEN(aux_sym_char_literal_token1); - if (lookahead == '\n') ADVANCE(292); - if (lookahead == '\r') ADVANCE(291); - if (lookahead == 'U') ADVANCE(119); - if (lookahead == 'u') ADVANCE(111); - if (lookahead == 'x') ADVANCE(107); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(294); - if (lookahead != 0) ADVANCE(291); + ACCEPT_TOKEN(aux_sym_preproc_elifdef_token1); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(322); END_STATE(); case 279: - ACCEPT_TOKEN(aux_sym_char_literal_token1); - if (lookahead == '*') ADVANCE(66); - if (lookahead == '/') ADVANCE(312); + ACCEPT_TOKEN(aux_sym_preproc_elifdef_token2); END_STATE(); case 280: - ACCEPT_TOKEN(aux_sym_char_literal_token1); - if (lookahead == '\\') ADVANCE(38); + ACCEPT_TOKEN(aux_sym_preproc_elifdef_token2); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(322); END_STATE(); case 281: - ACCEPT_TOKEN(anon_sym_L_DQUOTE); + ACCEPT_TOKEN(aux_sym_preproc_arg_token1); END_STATE(); case 282: - ACCEPT_TOKEN(anon_sym_u_DQUOTE); + ACCEPT_TOKEN(aux_sym_preproc_arg_token1); + if (lookahead == '\n') ADVANCE(284); + if (lookahead == '\r') ADVANCE(36); END_STATE(); case 283: - ACCEPT_TOKEN(anon_sym_U_DQUOTE); + ACCEPT_TOKEN(aux_sym_preproc_arg_token1); + if (lookahead == '*') ADVANCE(76); + if (lookahead == '/') ADVANCE(680); END_STATE(); case 284: - ACCEPT_TOKEN(anon_sym_u8_DQUOTE); + ACCEPT_TOKEN(aux_sym_preproc_arg_token1); + if (lookahead == '/') ADVANCE(283); + if (lookahead == '\\') ADVANCE(282); + if (lookahead == '_') ADVANCE(285); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ') ADVANCE(281); END_STATE(); case 285: - ACCEPT_TOKEN(anon_sym_DQUOTE); + ACCEPT_TOKEN(aux_sym_preproc_arg_token1); + if (lookahead == '_') ADVANCE(95); END_STATE(); case 286: - ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '*') ADVANCE(288); - if (lookahead == '/') ADVANCE(290); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '"' && - lookahead != '\\') ADVANCE(290); + ACCEPT_TOKEN(aux_sym_preproc_arg_token2); END_STATE(); case 287: - ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '*') ADVANCE(287); - if (lookahead == '/') ADVANCE(290); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '"' && - lookahead != '\\') ADVANCE(288); + ACCEPT_TOKEN(aux_sym_preproc_arg_token2); + if (lookahead == '\n') ADVANCE(261); + if (lookahead == '/') ADVANCE(74); + if (lookahead == '\\') ADVANCE(288); + if (lookahead == '_') ADVANCE(291); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(289); + if (lookahead != 0) ADVANCE(286); END_STATE(); case 288: - ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '*') ADVANCE(287); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '"' && - lookahead != '\\') ADVANCE(288); + ACCEPT_TOKEN(aux_sym_preproc_arg_token2); + if (lookahead == '\n') ADVANCE(289); + if (lookahead == '\r') ADVANCE(42); END_STATE(); case 289: - ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '/') ADVANCE(286); + ACCEPT_TOKEN(aux_sym_preproc_arg_token2); + if (lookahead == '/') ADVANCE(74); + if (lookahead == '\\') ADVANCE(288); + if (lookahead == '_') ADVANCE(291); if (lookahead == '\t' || (0x0b <= lookahead && lookahead <= '\r') || lookahead == ' ') ADVANCE(289); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != '"' && - lookahead != '\\') ADVANCE(290); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(286); END_STATE(); case 290: - ACCEPT_TOKEN(aux_sym_string_literal_token1); + ACCEPT_TOKEN(aux_sym_preproc_arg_token2); + if (lookahead == '\\') ADVANCE(49); if (lookahead != 0 && - lookahead != '\n' && - lookahead != '"' && - lookahead != '\\') ADVANCE(290); + lookahead != '\n') ADVANCE(680); END_STATE(); case 291: - ACCEPT_TOKEN(sym_escape_sequence); + ACCEPT_TOKEN(aux_sym_preproc_arg_token2); + if (lookahead == '_') ADVANCE(95); END_STATE(); case 292: - ACCEPT_TOKEN(sym_escape_sequence); - if (lookahead == '\\') ADVANCE(38); + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'c') ADVANCE(318); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(322); END_STATE(); case 293: - ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(291); + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'd') ADVANCE(316); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(322); END_STATE(); case 294: - ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(293); + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'd') ADVANCE(300); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(322); END_STATE(); case 295: - ACCEPT_TOKEN(sym_system_lib_string); + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'd') ADVANCE(302); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(322); END_STATE(); case 296: - ACCEPT_TOKEN(sym_system_lib_string); - if (lookahead == '>') ADVANCE(295); - if (lookahead == '\\') ADVANCE(74); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(73); + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'd') ADVANCE(304); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(322); END_STATE(); case 297: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(281); - if (lookahead == '\'') ADVANCE(272); - if (lookahead == '\\') ADVANCE(75); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(309); + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'e') ADVANCE(307); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(322); END_STATE(); case 298: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(281); - if (lookahead == '\\') ADVANCE(75); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(309); + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'e') ADVANCE(274); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(322); END_STATE(); case 299: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(283); - if (lookahead == '\'') ADVANCE(274); - if (lookahead == '\\') ADVANCE(75); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(309); + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'e') ADVANCE(262); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(322); END_STATE(); case 300: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(283); - if (lookahead == '\\') ADVANCE(75); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(309); + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'e') ADVANCE(260); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(322); END_STATE(); case 301: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(282); - if (lookahead == '\'') ADVANCE(273); - if (lookahead == '8') ADVANCE(303); - if (lookahead == '\\') ADVANCE(75); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(309); + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'e') ADVANCE(310); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(322); END_STATE(); case 302: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(282); - if (lookahead == '8') ADVANCE(304); - if (lookahead == '\\') ADVANCE(75); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(309); + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'e') ADVANCE(311); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(322); END_STATE(); case 303: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(284); - if (lookahead == '\'') ADVANCE(275); - if (lookahead == '\\') ADVANCE(75); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(309); + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'e') ADVANCE(312); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(322); END_STATE(); case 304: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(284); - if (lookahead == '\\') ADVANCE(75); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(309); + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'e') ADVANCE(313); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(322); END_STATE(); case 305: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\'') ADVANCE(272); - if (lookahead == '\\') ADVANCE(75); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(309); + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'f') ADVANCE(267); + if (lookahead == 'n') ADVANCE(292); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(322); END_STATE(); case 306: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\'') ADVANCE(274); - if (lookahead == '\\') ADVANCE(75); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(309); + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'f') ADVANCE(267); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(322); END_STATE(); case 307: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\'') ADVANCE(273); - if (lookahead == '8') ADVANCE(308); - if (lookahead == '\\') ADVANCE(75); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(309); + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'f') ADVANCE(314); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(322); END_STATE(); case 308: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\'') ADVANCE(275); - if (lookahead == '\\') ADVANCE(75); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(309); + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'f') ADVANCE(276); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(322); END_STATE(); case 309: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(75); - if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(309); + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'f') ADVANCE(270); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(322); END_STATE(); case 310: - ACCEPT_TOKEN(sym_comment); + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'f') ADVANCE(271); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(322); END_STATE(); case 311: - ACCEPT_TOKEN(sym_comment); - if (lookahead == '\r') ADVANCE(313); - if (lookahead == '\\') ADVANCE(311); - if (lookahead != 0) ADVANCE(312); + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'f') ADVANCE(272); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(322); END_STATE(); case 312: - ACCEPT_TOKEN(sym_comment); - if (lookahead == '\\') ADVANCE(45); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(312); + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'f') ADVANCE(278); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(322); END_STATE(); case 313: - ACCEPT_TOKEN(sym_comment); - if (lookahead == '\\') ADVANCE(45); - if (lookahead != 0) ADVANCE(312); + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'f') ADVANCE(280); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(322); END_STATE(); - default: - return false; - } -} - -static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { - START_LEXER(); - eof = lexer->eof(lexer); - switch (state) { - case 0: - if (lookahead == 'F') ADVANCE(1); - if (lookahead == 'N') ADVANCE(2); - if (lookahead == 'T') ADVANCE(3); - if (lookahead == '\\') SKIP(4); - if (lookahead == '_') ADVANCE(5); - if (lookahead == 'a') ADVANCE(6); - if (lookahead == 'b') ADVANCE(7); - if (lookahead == 'c') ADVANCE(8); - if (lookahead == 'd') ADVANCE(9); - if (lookahead == 'e') ADVANCE(10); - if (lookahead == 'f') ADVANCE(11); - if (lookahead == 'g') ADVANCE(12); - if (lookahead == 'i') ADVANCE(13); - if (lookahead == 'l') ADVANCE(14); - if (lookahead == 'm') ADVANCE(15); - if (lookahead == 'n') ADVANCE(16); - if (lookahead == 'o') ADVANCE(17); - if (lookahead == 'p') ADVANCE(18); - if (lookahead == 'r') ADVANCE(19); - if (lookahead == 's') ADVANCE(20); - if (lookahead == 't') ADVANCE(21); - if (lookahead == 'u') ADVANCE(22); - if (lookahead == 'v') ADVANCE(23); - if (lookahead == 'w') ADVANCE(24); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(0); + case 314: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'i') ADVANCE(320); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(322); END_STATE(); - case 1: - if (lookahead == 'A') ADVANCE(25); + case 315: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'i') ADVANCE(308); + if (lookahead == 's') ADVANCE(298); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(322); END_STATE(); - case 2: - if (lookahead == 'U') ADVANCE(26); + case 316: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'i') ADVANCE(309); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(322); END_STATE(); - case 3: - if (lookahead == 'R') ADVANCE(27); + case 317: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'l') ADVANCE(315); + if (lookahead == 'n') ADVANCE(293); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(322); END_STATE(); - case 4: - if (lookahead == '\n') SKIP(0); - if (lookahead == '\r') SKIP(28); + case 318: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'l') ADVANCE(321); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(322); END_STATE(); - case 5: - if (lookahead == 'A') ADVANCE(29); - if (lookahead == 'G') ADVANCE(30); - if (lookahead == 'N') ADVANCE(31); - if (lookahead == '_') ADVANCE(32); - if (lookahead == 'a') ADVANCE(33); - if (lookahead == 'u') ADVANCE(34); + case 319: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'n') ADVANCE(293); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(322); END_STATE(); - case 6: - if (lookahead == 'l') ADVANCE(35); - if (lookahead == 's') ADVANCE(36); - if (lookahead == 'u') ADVANCE(37); + case 320: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'n') ADVANCE(299); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(322); END_STATE(); - case 7: - if (lookahead == 'o') ADVANCE(38); - if (lookahead == 'r') ADVANCE(39); + case 321: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'u') ADVANCE(294); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(322); END_STATE(); - case 8: - if (lookahead == 'a') ADVANCE(40); - if (lookahead == 'h') ADVANCE(41); - if (lookahead == 'o') ADVANCE(42); + case 322: + ACCEPT_TOKEN(sym_preproc_directive); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(322); END_STATE(); - case 9: - if (lookahead == 'e') ADVANCE(43); - if (lookahead == 'o') ADVANCE(44); + case 323: + ACCEPT_TOKEN(anon_sym_LPAREN2); END_STATE(); - case 10: - if (lookahead == 'l') ADVANCE(45); - if (lookahead == 'n') ADVANCE(46); - if (lookahead == 'x') ADVANCE(47); + case 324: + ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); - case 11: - if (lookahead == 'a') ADVANCE(48); - if (lookahead == 'l') ADVANCE(49); - if (lookahead == 'o') ADVANCE(50); + case 325: + ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '=') ADVANCE(353); END_STATE(); - case 12: - if (lookahead == 'o') ADVANCE(51); + case 326: + ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); - case 13: - if (lookahead == 'f') ADVANCE(52); - if (lookahead == 'n') ADVANCE(53); + case 327: + ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); - case 14: - if (lookahead == 'o') ADVANCE(54); + case 328: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(386); + if (lookahead == '.') ADVANCE(225); + if (lookahead == '0') ADVANCE(396); + if (lookahead == '=') ADVANCE(380); + if (lookahead == '>') ADVANCE(392); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(398); END_STATE(); - case 15: - if (lookahead == 'a') ADVANCE(55); + 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); END_STATE(); - case 16: - if (lookahead == 'o') ADVANCE(56); - if (lookahead == 'u') ADVANCE(57); + case 330: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(386); + if (lookahead == '=') ADVANCE(380); + if (lookahead == '>') ADVANCE(392); END_STATE(); - case 17: - if (lookahead == 'f') ADVANCE(58); + case 331: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '.') ADVANCE(225); + if (lookahead == '0') ADVANCE(396); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(398); END_STATE(); - case 18: - if (lookahead == 't') ADVANCE(59); + case 332: + ACCEPT_TOKEN(anon_sym_PLUS); END_STATE(); - case 19: - if (lookahead == 'e') ADVANCE(60); + case 333: + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(387); + if (lookahead == '.') ADVANCE(225); + if (lookahead == '0') ADVANCE(396); + if (lookahead == '=') ADVANCE(379); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(398); END_STATE(); - case 20: - if (lookahead == 'h') ADVANCE(61); - if (lookahead == 'i') ADVANCE(62); - if (lookahead == 's') ADVANCE(63); - if (lookahead == 't') ADVANCE(64); - if (lookahead == 'w') ADVANCE(65); + 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); END_STATE(); - case 21: - if (lookahead == 'h') ADVANCE(66); - if (lookahead == 'r') ADVANCE(67); - if (lookahead == 'y') ADVANCE(68); + case 335: + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(387); + if (lookahead == '=') ADVANCE(379); END_STATE(); - case 22: - if (lookahead == 'i') ADVANCE(69); - if (lookahead == 'n') ADVANCE(70); + case 336: + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '.') ADVANCE(225); + if (lookahead == '0') ADVANCE(396); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(398); END_STATE(); - case 23: - if (lookahead == 'o') ADVANCE(71); + case 337: + ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); - case 24: - if (lookahead == 'h') ADVANCE(72); + case 338: + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '=') ADVANCE(376); END_STATE(); - case 25: - if (lookahead == 'L') ADVANCE(73); + case 339: + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '*') ADVANCE(76); + if (lookahead == '/') ADVANCE(680); END_STATE(); - case 26: - if (lookahead == 'L') ADVANCE(74); + case 340: + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '*') ADVANCE(76); + if (lookahead == '/') ADVANCE(680); + if (lookahead == '=') ADVANCE(377); END_STATE(); - case 27: - if (lookahead == 'U') ADVANCE(75); + case 341: + ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); - case 28: - if (lookahead == '\n') SKIP(0); + case 342: + ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == '=') ADVANCE(378); END_STATE(); - case 29: - if (lookahead == 'l') ADVANCE(76); - if (lookahead == 't') ADVANCE(77); + case 343: + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); - case 30: - if (lookahead == 'e') ADVANCE(78); - END_STATE(); - case 31: - if (lookahead == 'o') ADVANCE(79); + case 344: + ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); - case 32: - ADVANCE_MAP( - 'a', 80, - 'b', 81, - 'c', 82, - 'd', 83, - 'e', 84, - 'f', 85, - 'i', 86, - 'l', 87, - 'm', 88, - 'n', 89, - 'p', 90, - 'r', 91, - 's', 92, - 't', 93, - 'u', 94, - 'v', 95, - ); + case 345: + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '=') ADVANCE(385); + if (lookahead == '|') ADVANCE(343); END_STATE(); - case 33: - if (lookahead == 'l') ADVANCE(96); + case 346: + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '|') ADVANCE(343); END_STATE(); - case 34: - if (lookahead == 'n') ADVANCE(97); + case 347: + ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); - case 35: - if (lookahead == 'i') ADVANCE(98); + case 348: + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '=') ADVANCE(384); END_STATE(); - case 36: - if (lookahead == 'm') ADVANCE(99); + case 349: + ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); - case 37: - if (lookahead == 't') ADVANCE(100); + case 350: + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(344); END_STATE(); - case 38: - if (lookahead == 'o') ADVANCE(101); + case 351: + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(344); + if (lookahead == '=') ADVANCE(383); END_STATE(); - case 39: - if (lookahead == 'e') ADVANCE(102); + case 352: + ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); - case 40: - if (lookahead == 's') ADVANCE(103); + case 353: + ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); - case 41: - if (lookahead == 'a') ADVANCE(104); + case 354: + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(356); + if (lookahead == '>') ADVANCE(363); END_STATE(); - case 42: - if (lookahead == 'n') ADVANCE(105); + case 355: + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(356); + if (lookahead == '>') ADVANCE(362); END_STATE(); - case 43: - if (lookahead == 'f') ADVANCE(106); + case 356: + ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); - case 44: - ACCEPT_TOKEN(anon_sym_do); - if (lookahead == 'u') ADVANCE(107); + case 357: + ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); - case 45: - if (lookahead == 's') ADVANCE(108); + case 358: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(361); + if (lookahead == '=') ADVANCE(357); END_STATE(); - case 46: - if (lookahead == 'u') ADVANCE(109); + case 359: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(360); + if (lookahead == '=') ADVANCE(357); END_STATE(); - case 47: - if (lookahead == 't') ADVANCE(110); + case 360: + ACCEPT_TOKEN(anon_sym_LT_LT); END_STATE(); - case 48: - if (lookahead == 'l') ADVANCE(111); + case 361: + ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '=') ADVANCE(381); END_STATE(); - case 49: - if (lookahead == 'o') ADVANCE(112); + case 362: + ACCEPT_TOKEN(anon_sym_GT_GT); END_STATE(); - case 50: - if (lookahead == 'r') ADVANCE(113); + case 363: + ACCEPT_TOKEN(anon_sym_GT_GT); + if (lookahead == '=') ADVANCE(382); END_STATE(); - case 51: - if (lookahead == 't') ADVANCE(114); + case 364: + ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); - case 52: - ACCEPT_TOKEN(anon_sym_if); + case 365: + ACCEPT_TOKEN(anon_sym_COLON_COLON); END_STATE(); - case 53: - if (lookahead == 'l') ADVANCE(115); - if (lookahead == 't') ADVANCE(116); + case 366: + ACCEPT_TOKEN(anon_sym_LBRACK_LBRACK); END_STATE(); - case 54: - if (lookahead == 'n') ADVANCE(117); + case 367: + ACCEPT_TOKEN(anon_sym_RBRACK_RBRACK); END_STATE(); - case 55: - if (lookahead == 'x') ADVANCE(118); + case 368: + ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); - case 56: - if (lookahead == 'r') ADVANCE(119); + case 369: + ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); - case 57: - if (lookahead == 'l') ADVANCE(120); + case 370: + ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); - case 58: - if (lookahead == 'f') ADVANCE(121); + case 371: + ACCEPT_TOKEN(anon_sym_LBRACK); + if (lookahead == '[') ADVANCE(366); END_STATE(); - case 59: - if (lookahead == 'r') ADVANCE(122); + case 372: + ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); - case 60: - if (lookahead == 'g') ADVANCE(123); - if (lookahead == 's') ADVANCE(124); - if (lookahead == 't') ADVANCE(125); + case 373: + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(352); END_STATE(); - case 61: - if (lookahead == 'o') ADVANCE(126); + case 374: + ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); - case 62: - if (lookahead == 'g') ADVANCE(127); - if (lookahead == 'z') ADVANCE(128); + case 375: + ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); - case 63: - if (lookahead == 'i') ADVANCE(129); + case 376: + ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); - case 64: - if (lookahead == 'a') ADVANCE(130); - if (lookahead == 'r') ADVANCE(131); + case 377: + ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); - case 65: - if (lookahead == 'i') ADVANCE(132); + case 378: + ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); - case 66: - if (lookahead == 'r') ADVANCE(133); + case 379: + ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); - case 67: - if (lookahead == 'u') ADVANCE(134); + case 380: + ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); - case 68: - if (lookahead == 'p') ADVANCE(135); + case 381: + ACCEPT_TOKEN(anon_sym_LT_LT_EQ); END_STATE(); - case 69: - if (lookahead == 'n') ADVANCE(136); + case 382: + ACCEPT_TOKEN(anon_sym_GT_GT_EQ); END_STATE(); - case 70: - if (lookahead == 'i') ADVANCE(137); - if (lookahead == 's') ADVANCE(138); + case 383: + ACCEPT_TOKEN(anon_sym_AMP_EQ); END_STATE(); - case 71: - if (lookahead == 'i') ADVANCE(139); - if (lookahead == 'l') ADVANCE(140); + case 384: + ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); - case 72: - if (lookahead == 'i') ADVANCE(141); + case 385: + ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); - case 73: - if (lookahead == 'S') ADVANCE(142); + case 386: + ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); - case 74: - if (lookahead == 'L') ADVANCE(143); + case 387: + ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); - case 75: - if (lookahead == 'E') ADVANCE(144); + case 388: + ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); - case 76: - if (lookahead == 'i') ADVANCE(145); + case 389: + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(79); END_STATE(); - case 77: - if (lookahead == 'o') ADVANCE(146); + case 390: + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(79); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(393); END_STATE(); - case 78: - if (lookahead == 'n') ADVANCE(147); + case 391: + ACCEPT_TOKEN(anon_sym_DOT); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(393); END_STATE(); - case 79: - if (lookahead == 'r') ADVANCE(148); + case 392: + ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); - case 80: - if (lookahead == 'l') ADVANCE(149); - if (lookahead == 's') ADVANCE(150); - if (lookahead == 't') ADVANCE(151); + case 393: + 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); END_STATE(); - case 81: - if (lookahead == 'a') ADVANCE(152); + case 394: + ACCEPT_TOKEN(sym_number_literal); + ADVANCE_MAP( + '\'', 226, + '.', 407, + 'B', 403, + 'b', 403, + 'E', 402, + 'e', 402, + 'P', 406, + 'p', 406, + '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, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(395); END_STATE(); - case 82: - if (lookahead == 'd') ADVANCE(153); - if (lookahead == 'l') ADVANCE(154); - if (lookahead == 'o') ADVANCE(155); + case 395: + 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, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(395); END_STATE(); - case 83: - if (lookahead == 'e') ADVANCE(156); + case 396: + ACCEPT_TOKEN(sym_number_literal); + ADVANCE_MAP( + '\'', 224, + '.', 407, + 'B', 405, + 'b', 405, + '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, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(398); END_STATE(); - case 84: - if (lookahead == 'x') ADVANCE(157); + case 397: + ACCEPT_TOKEN(sym_number_literal); + ADVANCE_MAP( + '\'', 224, + '.', 407, + 'B', 408, + 'b', 408, + '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, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(398); END_STATE(); - case 85: - if (lookahead == 'a') ADVANCE(158); - if (lookahead == 'i') ADVANCE(159); - if (lookahead == 'o') ADVANCE(160); + case 398: + ACCEPT_TOKEN(sym_number_literal); + if (lookahead == '\'') ADVANCE(224); + if (lookahead == '.') ADVANCE(407); + 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); END_STATE(); - case 86: - if (lookahead == 'n') ADVANCE(161); + case 399: + 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, + ); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'E') || + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(399); END_STATE(); - case 87: - if (lookahead == 'e') ADVANCE(162); + case 400: + 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, + ); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'C') || + ('a' <= lookahead && lookahead <= 'c')) ADVANCE(401); END_STATE(); - case 88: - if (lookahead == 'u') ADVANCE(163); + case 401: + 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, + ); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'C') || + ('a' <= lookahead && lookahead <= 'c')) ADVANCE(401); END_STATE(); - case 89: - if (lookahead == 'o') ADVANCE(164); + case 402: + ACCEPT_TOKEN(sym_number_literal); + ADVANCE_MAP( + '\'', 229, + '.', 407, + '+', 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, + ); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'C') || + ('a' <= lookahead && lookahead <= 'c')) ADVANCE(404); END_STATE(); - case 90: - if (lookahead == 'r') ADVANCE(165); + case 403: + 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, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(395); END_STATE(); - case 91: - if (lookahead == 'e') ADVANCE(166); - if (lookahead == 'o') ADVANCE(167); + case 404: + 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, + ); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'C') || + ('a' <= lookahead && lookahead <= 'c')) ADVANCE(404); END_STATE(); - case 92: - if (lookahead == 'c') ADVANCE(168); - if (lookahead == 'p') ADVANCE(169); - if (lookahead == 't') ADVANCE(170); + case 405: + 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); END_STATE(); - case 93: - if (lookahead == 'h') ADVANCE(171); - if (lookahead == 'r') ADVANCE(172); + case 406: + 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, + ); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'E') || + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(399); END_STATE(); - case 94: - if (lookahead == 'n') ADVANCE(173); - if (lookahead == 'p') ADVANCE(174); + case 407: + 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, + ); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'C') || + ('a' <= lookahead && lookahead <= 'c')) ADVANCE(401); END_STATE(); - case 95: - if (lookahead == 'e') ADVANCE(175); + case 408: + 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); END_STATE(); - case 96: - if (lookahead == 'i') ADVANCE(176); + case 409: + 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, + ); END_STATE(); - case 97: - if (lookahead == 'a') ADVANCE(177); + case 410: + ACCEPT_TOKEN(anon_sym_L_SQUOTE); END_STATE(); - case 98: - if (lookahead == 'g') ADVANCE(178); + case 411: + ACCEPT_TOKEN(anon_sym_u_SQUOTE); END_STATE(); - case 99: - ACCEPT_TOKEN(anon_sym_asm); + case 412: + ACCEPT_TOKEN(anon_sym_U_SQUOTE); END_STATE(); - case 100: - if (lookahead == 'o') ADVANCE(179); + case 413: + ACCEPT_TOKEN(anon_sym_u8_SQUOTE); END_STATE(); - case 101: - if (lookahead == 'l') ADVANCE(180); + case 414: + ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); - case 102: - if (lookahead == 'a') ADVANCE(181); + case 415: + ACCEPT_TOKEN(aux_sym_char_literal_token1); END_STATE(); - case 103: - if (lookahead == 'e') ADVANCE(182); + case 416: + ACCEPT_TOKEN(aux_sym_char_literal_token1); + if (lookahead == '\n') ADVANCE(547); + if (lookahead == '\r') ADVANCE(546); + 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); END_STATE(); - case 104: - if (lookahead == 'r') ADVANCE(183); + case 417: + ACCEPT_TOKEN(aux_sym_char_literal_token1); + if (lookahead == '*') ADVANCE(76); + if (lookahead == '/') ADVANCE(680); END_STATE(); - case 105: - if (lookahead == 's') ADVANCE(184); - if (lookahead == 't') ADVANCE(185); + case 418: + ACCEPT_TOKEN(aux_sym_char_literal_token1); + if (lookahead == '\\') ADVANCE(38); END_STATE(); - case 106: - if (lookahead == 'a') ADVANCE(186); - if (lookahead == 'i') ADVANCE(187); + case 419: + ACCEPT_TOKEN(aux_sym_char_literal_token1); + if (lookahead == '_') ADVANCE(95); END_STATE(); - case 107: - if (lookahead == 'b') ADVANCE(188); + case 420: + ACCEPT_TOKEN(anon_sym_L_DQUOTE); END_STATE(); - case 108: - if (lookahead == 'e') ADVANCE(189); + case 421: + ACCEPT_TOKEN(anon_sym_u_DQUOTE); END_STATE(); - case 109: - if (lookahead == 'm') ADVANCE(190); + case 422: + ACCEPT_TOKEN(anon_sym_U_DQUOTE); END_STATE(); - case 110: - if (lookahead == 'e') ADVANCE(191); + case 423: + ACCEPT_TOKEN(anon_sym_u8_DQUOTE); END_STATE(); - case 111: - if (lookahead == 's') ADVANCE(192); + case 424: + ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 112: - if (lookahead == 'a') ADVANCE(193); + case 425: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == '*') ADVANCE(427); + if (lookahead == '/') ADVANCE(545); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 113: - ACCEPT_TOKEN(anon_sym_for); + case 426: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == '*') ADVANCE(426); + if (lookahead == '/') ADVANCE(545); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(427); END_STATE(); - case 114: - if (lookahead == 'o') ADVANCE(194); + case 427: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == '*') ADVANCE(426); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(427); END_STATE(); - case 115: - if (lookahead == 'i') ADVANCE(195); + case 428: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == '/') ADVANCE(425); + if (lookahead == '_') ADVANCE(429); + if (lookahead == '\t' || + (0x0b <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(428); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 116: - ACCEPT_TOKEN(sym_primitive_type); - if (lookahead == '1') ADVANCE(196); - if (lookahead == '3') ADVANCE(197); - if (lookahead == '6') ADVANCE(198); - if (lookahead == '8') ADVANCE(199); - if (lookahead == 'p') ADVANCE(200); + case 429: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == '_') ADVANCE(438); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 117: - if (lookahead == 'g') ADVANCE(201); + 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 != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 118: - if (lookahead == '_') ADVANCE(202); + case 431: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == '_') ADVANCE(480); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 119: - if (lookahead == 'e') ADVANCE(203); + case 432: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == '_') ADVANCE(442); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 120: - if (lookahead == 'l') ADVANCE(204); + case 433: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == '_') ADVANCE(485); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 121: - if (lookahead == 's') ADVANCE(205); + case 434: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == '_') ADVANCE(539); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 122: - if (lookahead == 'd') ADVANCE(206); + case 435: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == '_') ADVANCE(449); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 123: - if (lookahead == 'i') ADVANCE(207); + case 436: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == '_') ADVANCE(521); + if (lookahead == 'd') ADVANCE(443); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 124: - if (lookahead == 't') ADVANCE(208); + case 437: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 'a') ADVANCE(545); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 125: - if (lookahead == 'u') ADVANCE(209); + 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 != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 126: - if (lookahead == 'r') ADVANCE(210); + case 439: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 'a') ADVANCE(542); + if (lookahead == 'u') ADVANCE(522); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 127: - if (lookahead == 'n') ADVANCE(211); + case 440: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 'a') ADVANCE(447); + if (lookahead == 'e') ADVANCE(517); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 128: - if (lookahead == 'e') ADVANCE(212); + case 441: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 'a') ADVANCE(543); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 129: - if (lookahead == 'z') ADVANCE(213); + case 442: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 'a') ADVANCE(473); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 130: - if (lookahead == 't') ADVANCE(214); + case 443: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 'a') ADVANCE(533); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 131: - if (lookahead == 'u') ADVANCE(215); + case 444: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 'a') ADVANCE(534); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 132: - if (lookahead == 't') ADVANCE(216); + case 445: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 'b') ADVANCE(464); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 133: - if (lookahead == 'e') ADVANCE(217); + 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 != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 134: - if (lookahead == 'e') ADVANCE(144); + case 447: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 'c') ADVANCE(487); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 135: - if (lookahead == 'e') ADVANCE(218); + case 448: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 'c') ADVANCE(513); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 136: - if (lookahead == 't') ADVANCE(219); + case 449: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 'c') ADVANCE(475); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 137: - if (lookahead == 'o') ADVANCE(220); + case 450: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 'c') ADVANCE(486); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 138: - if (lookahead == 'i') ADVANCE(221); + case 451: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 'c') ADVANCE(529); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 139: - if (lookahead == 'd') ADVANCE(180); + case 452: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 'c') ADVANCE(456); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 140: - if (lookahead == 'a') ADVANCE(222); + case 453: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 'c') ADVANCE(444); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 141: - if (lookahead == 'l') ADVANCE(223); + case 454: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 'd') ADVANCE(545); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 142: - if (lookahead == 'E') ADVANCE(224); + case 455: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 'd') ADVANCE(443); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 143: - ACCEPT_TOKEN(anon_sym_NULL); + case 456: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 'e') ADVANCE(545); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 144: - ACCEPT_TOKEN(sym_true); + case 457: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 'e') ADVANCE(514); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 145: - if (lookahead == 'g') ADVANCE(225); + case 458: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 'e') ADVANCE(454); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 146: - if (lookahead == 'm') ADVANCE(226); + case 459: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 'e') ADVANCE(544); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 147: - if (lookahead == 'e') ADVANCE(227); + case 460: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 'e') ADVANCE(515); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 148: - if (lookahead == 'e') ADVANCE(228); + case 461: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 'e') ADVANCE(492); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 149: - if (lookahead == 'i') ADVANCE(229); + case 462: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 'e') ADVANCE(451); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 150: - if (lookahead == 'm') ADVANCE(230); + case 463: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 'e') ADVANCE(472); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 151: - if (lookahead == 't') ADVANCE(231); + case 464: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 'e') ADVANCE(434); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 152: - if (lookahead == 's') ADVANCE(232); + case 465: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 'e') ADVANCE(488); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 153: - if (lookahead == 'e') ADVANCE(233); + case 466: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 'e') ADVANCE(518); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 154: - if (lookahead == 'r') ADVANCE(234); + case 467: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 'e') ADVANCE(453); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 155: - if (lookahead == 'l') ADVANCE(235); + case 468: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 'e') ADVANCE(532); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 156: - if (lookahead == 'c') ADVANCE(236); + case 469: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 'e') ADVANCE(450); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 157: - if (lookahead == 'c') ADVANCE(237); - if (lookahead == 'i') ADVANCE(238); - if (lookahead == 't') ADVANCE(239); + case 470: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 'e') ADVANCE(541); + if (lookahead == 'i') ADVANCE(504); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 158: - if (lookahead == 's') ADVANCE(240); + case 471: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 'f') ADVANCE(455); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 159: - if (lookahead == 'n') ADVANCE(241); + case 472: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 'f') ADVANCE(509); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 160: - if (lookahead == 'r') ADVANCE(242); + case 473: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 'f') ADVANCE(535); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 161: - if (lookahead == 'i') ADVANCE(243); - if (lookahead == 'l') ADVANCE(244); + case 474: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 'g') ADVANCE(501); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 162: - if (lookahead == 'a') ADVANCE(245); + case 475: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 'h') ADVANCE(469); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 163: - if (lookahead == 's') ADVANCE(246); + case 476: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 'i') ADVANCE(474); + if (lookahead == 'w') ADVANCE(441); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 164: - if (lookahead == 'r') ADVANCE(247); + case 477: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 'i') ADVANCE(527); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 165: - if (lookahead == 'i') ADVANCE(248); + case 478: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 'i') ADVANCE(528); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 166: - if (lookahead == 'a') ADVANCE(249); - if (lookahead == 's') ADVANCE(250); + case 479: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 'i') ADVANCE(497); + if (lookahead == 'r') ADVANCE(468); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 167: - if (lookahead == '_') ADVANCE(251); + case 480: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 'i') ADVANCE(497); + if (lookahead == 'u') ADVANCE(496); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 168: - if (lookahead == 'a') ADVANCE(252); + case 481: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 'i') ADVANCE(530); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 169: - if (lookahead == 't') ADVANCE(253); + case 482: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 'i') ADVANCE(526); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 170: - if (lookahead == 'd') ADVANCE(254); + case 483: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 'i') ADVANCE(512); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 171: - if (lookahead == 'i') ADVANCE(255); - if (lookahead == 'r') ADVANCE(256); + case 484: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 'i') ADVANCE(499); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 172: - if (lookahead == 'y') ADVANCE(257); + case 485: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 'i') ADVANCE(505); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 173: - if (lookahead == 'a') ADVANCE(258); + case 486: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 'k') ADVANCE(545); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 174: - if (lookahead == 't') ADVANCE(259); + case 487: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 'k') ADVANCE(458); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 175: - if (lookahead == 'c') ADVANCE(260); + case 488: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 'l') ADVANCE(545); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 176: - if (lookahead == 'g') ADVANCE(261); + case 489: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 'l') ADVANCE(476); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 177: - if (lookahead == 'l') ADVANCE(262); + case 490: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 'l') ADVANCE(454); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 178: - if (lookahead == 'n') ADVANCE(263); + case 491: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 'l') ADVANCE(484); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 179: - ACCEPT_TOKEN(anon_sym_auto); + case 492: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 'm') ADVANCE(545); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 180: - ACCEPT_TOKEN(sym_primitive_type); + case 493: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 'm') ADVANCE(461); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 181: - if (lookahead == 'k') ADVANCE(264); + case 494: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 'n') ADVANCE(545); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 182: - ACCEPT_TOKEN(anon_sym_case); + case 495: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 'n') ADVANCE(537); + if (lookahead == 's') ADVANCE(459); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 183: - ACCEPT_TOKEN(sym_primitive_type); - if (lookahead == '1') ADVANCE(265); - if (lookahead == '3') ADVANCE(266); - if (lookahead == '6') ADVANCE(267); - if (lookahead == '8') ADVANCE(268); - if (lookahead == 'p') ADVANCE(269); + case 496: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 'n') ADVANCE(537); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 184: - if (lookahead == 't') ADVANCE(270); + case 497: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 'n') ADVANCE(491); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 185: - if (lookahead == 'i') ADVANCE(271); + case 498: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 'n') ADVANCE(452); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 186: - if (lookahead == 'u') ADVANCE(272); + case 499: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 'n') ADVANCE(456); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 187: - if (lookahead == 'n') ADVANCE(273); + case 500: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 'n') ADVANCE(465); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 188: - if (lookahead == 'l') ADVANCE(274); + case 501: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 'n') ADVANCE(458); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 189: - ACCEPT_TOKEN(anon_sym_else); + case 502: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 'n') ADVANCE(478); + if (lookahead == 'o') ADVANCE(493); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 190: - ACCEPT_TOKEN(anon_sym_enum); + case 503: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 'n') ADVANCE(524); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 191: - if (lookahead == 'r') ADVANCE(275); + case 504: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 'n') ADVANCE(481); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 192: - if (lookahead == 'e') ADVANCE(224); + case 505: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 'n') ADVANCE(482); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 193: - if (lookahead == 't') ADVANCE(180); + case 506: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 'o') ADVANCE(516); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 194: - ACCEPT_TOKEN(anon_sym_goto); + case 507: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 'o') ADVANCE(479); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 195: - if (lookahead == 'n') ADVANCE(276); + case 508: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 'o') ADVANCE(490); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 196: - if (lookahead == '6') ADVANCE(277); + case 509: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 'o') ADVANCE(486); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 197: - if (lookahead == '2') ADVANCE(278); + case 510: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 'o') ADVANCE(498); + if (lookahead == 'r') ADVANCE(463); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 198: - if (lookahead == '4') ADVANCE(279); + case 511: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 'o') ADVANCE(503); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 199: - if (lookahead == '_') ADVANCE(280); + case 512: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 'o') ADVANCE(494); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 200: - if (lookahead == 't') ADVANCE(281); + case 513: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 'p') ADVANCE(536); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 201: - ACCEPT_TOKEN(anon_sym_long); + case 514: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 'p') ADVANCE(520); + if (lookahead == 'v') ADVANCE(470); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 202: - if (lookahead == 'a') ADVANCE(282); + case 515: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 'r') ADVANCE(500); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 203: - if (lookahead == 't') ADVANCE(283); + case 516: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 'r') ADVANCE(452); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 204: - if (lookahead == 'p') ADVANCE(284); + case 517: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 'r') ADVANCE(448); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 205: - if (lookahead == 'e') ADVANCE(285); + case 518: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 'r') ADVANCE(433); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 206: - if (lookahead == 'i') ADVANCE(286); + case 519: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 'r') ADVANCE(494); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 207: - if (lookahead == 's') ADVANCE(287); + case 520: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 'r') ADVANCE(467); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 208: - if (lookahead == 'r') ADVANCE(288); + case 521: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 'r') ADVANCE(463); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 209: - if (lookahead == 'r') ADVANCE(289); + case 522: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 's') ADVANCE(531); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 210: - if (lookahead == 't') ADVANCE(290); + case 523: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 's') ADVANCE(431); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 211: - if (lookahead == 'e') ADVANCE(291); + case 524: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 's') ADVANCE(530); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 212: - if (lookahead == '_') ADVANCE(292); - if (lookahead == 'o') ADVANCE(293); + case 525: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 's') ADVANCE(458); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 213: - if (lookahead == 'e') ADVANCE(294); + case 526: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 't') ADVANCE(545); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 214: - if (lookahead == 'i') ADVANCE(295); + case 527: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 't') ADVANCE(436); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 215: - if (lookahead == 'c') ADVANCE(296); + case 528: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 't') ADVANCE(430); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 216: - if (lookahead == 'c') ADVANCE(297); + case 529: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 't') ADVANCE(483); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 217: - if (lookahead == 'a') ADVANCE(298); + case 530: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 't') ADVANCE(455); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 218: - if (lookahead == 'd') ADVANCE(299); + case 531: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 't') ADVANCE(435); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 219: - if (lookahead == '1') ADVANCE(300); - if (lookahead == '3') ADVANCE(301); - if (lookahead == '6') ADVANCE(302); - if (lookahead == '8') ADVANCE(303); - if (lookahead == 'p') ADVANCE(304); + case 532: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 't') ADVANCE(538); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 220: - if (lookahead == 'n') ADVANCE(305); + case 533: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 't') ADVANCE(437); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 221: - if (lookahead == 'g') ADVANCE(306); + case 534: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 't') ADVANCE(458); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 222: - if (lookahead == 't') ADVANCE(307); + case 535: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 't') ADVANCE(466); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 223: - if (lookahead == 'e') ADVANCE(308); + case 536: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 'u') ADVANCE(545); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 224: - ACCEPT_TOKEN(sym_false); + case 537: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 'u') ADVANCE(525); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 225: - if (lookahead == 'n') ADVANCE(309); + case 538: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 'u') ADVANCE(519); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 226: - if (lookahead == 'i') ADVANCE(310); + case 539: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 'u') ADVANCE(496); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 227: - if (lookahead == 'r') ADVANCE(311); + case 540: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 'x') ADVANCE(477); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 228: - if (lookahead == 't') ADVANCE(312); + case 541: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 'x') ADVANCE(481); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 229: - if (lookahead == 'g') ADVANCE(313); + case 542: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 'y') ADVANCE(445); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 230: - if (lookahead == '_') ADVANCE(314); + case 543: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == 'y') ADVANCE(523); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 231: - if (lookahead == 'r') ADVANCE(315); + 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); END_STATE(); - case 232: - if (lookahead == 'e') ADVANCE(316); + case 545: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(545); END_STATE(); - case 233: - if (lookahead == 'c') ADVANCE(317); + case 546: + ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); - case 234: - if (lookahead == 'c') ADVANCE(318); + case 547: + ACCEPT_TOKEN(sym_escape_sequence); + if (lookahead == '\\') ADVANCE(38); END_STATE(); - case 235: - if (lookahead == 'd') ADVANCE(319); + case 548: + ACCEPT_TOKEN(sym_escape_sequence); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(546); END_STATE(); - case 236: - if (lookahead == 'l') ADVANCE(320); + case 549: + ACCEPT_TOKEN(sym_escape_sequence); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(548); END_STATE(); - case 237: - if (lookahead == 'e') ADVANCE(321); + case 550: + ACCEPT_TOKEN(sym_system_lib_string); END_STATE(); - case 238: - if (lookahead == 't') ADVANCE(322); + case 551: + ACCEPT_TOKEN(sym_system_lib_string); + if (lookahead == '>') ADVANCE(550); + if (lookahead == '\\') ADVANCE(85); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(84); END_STATE(); - case 239: - if (lookahead == 'e') ADVANCE(323); + case 552: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '"') ADVANCE(420); + if (lookahead == '\'') ADVANCE(410); + if (lookahead == '\\') ADVANCE(86); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); END_STATE(); - case 240: - if (lookahead == 't') ADVANCE(324); + case 553: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '"') ADVANCE(420); + if (lookahead == '\\') ADVANCE(86); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); END_STATE(); - case 241: - if (lookahead == 'a') ADVANCE(325); + case 554: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '"') ADVANCE(422); + if (lookahead == '\'') ADVANCE(412); + if (lookahead == '\\') ADVANCE(86); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); END_STATE(); - case 242: - if (lookahead == 'c') ADVANCE(326); + case 555: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '"') ADVANCE(422); + if (lookahead == '\\') ADVANCE(86); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); END_STATE(); - case 243: - if (lookahead == 't') ADVANCE(327); + case 556: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '"') ADVANCE(421); + if (lookahead == '\'') ADVANCE(411); + if (lookahead == '8') ADVANCE(558); + if (lookahead == '\\') ADVANCE(86); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); END_STATE(); - case 244: - if (lookahead == 'i') ADVANCE(328); + case 557: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '"') ADVANCE(421); + if (lookahead == '8') ADVANCE(559); + if (lookahead == '\\') ADVANCE(86); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); END_STATE(); - case 245: - if (lookahead == 'v') ADVANCE(329); + case 558: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '"') ADVANCE(423); + if (lookahead == '\'') ADVANCE(413); + if (lookahead == '\\') ADVANCE(86); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); END_STATE(); - case 246: - if (lookahead == 't') ADVANCE(330); + case 559: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '"') ADVANCE(423); + if (lookahead == '\\') ADVANCE(86); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); END_STATE(); - case 247: - if (lookahead == 'e') ADVANCE(331); + case 560: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\'') ADVANCE(410); + if (lookahead == '\\') ADVANCE(86); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); END_STATE(); - case 248: - if (lookahead == 'n') ADVANCE(332); + case 561: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\'') ADVANCE(412); + if (lookahead == '\\') ADVANCE(86); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); END_STATE(); - case 249: - if (lookahead == 'd') ADVANCE(333); + case 562: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\'') ADVANCE(411); + if (lookahead == '8') ADVANCE(563); + if (lookahead == '\\') ADVANCE(86); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); END_STATE(); - case 250: - if (lookahead == 't') ADVANCE(334); + 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); END_STATE(); - case 251: - if (lookahead == 'a') ADVANCE(335); + 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); END_STATE(); - case 252: - if (lookahead == 'n') ADVANCE(336); + 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); END_STATE(); - case 253: - if (lookahead == 'r') ADVANCE(337); + 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); END_STATE(); - case 254: - if (lookahead == 'c') ADVANCE(338); + 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); END_STATE(); - case 255: - if (lookahead == 's') ADVANCE(339); + 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); END_STATE(); - case 256: - if (lookahead == 'e') ADVANCE(340); + 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 257: - ACCEPT_TOKEN(anon_sym___try); + 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, + ); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); END_STATE(); - case 258: - if (lookahead == 'l') ADVANCE(341); + 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); END_STATE(); - case 259: - if (lookahead == 'r') ADVANCE(342); + 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); END_STATE(); - case 260: - if (lookahead == 't') ADVANCE(343); + 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); END_STATE(); - case 261: - if (lookahead == 'n') ADVANCE(344); + 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); END_STATE(); - case 262: - if (lookahead == 'i') ADVANCE(345); + 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); END_STATE(); - case 263: - if (lookahead == 'a') ADVANCE(346); - if (lookahead == 'o') ADVANCE(347); + 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); END_STATE(); - case 264: - ACCEPT_TOKEN(anon_sym_break); + 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); END_STATE(); - case 265: - if (lookahead == '6') ADVANCE(348); + 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); END_STATE(); - case 266: - if (lookahead == '2') ADVANCE(349); + 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); END_STATE(); - case 267: - if (lookahead == '4') ADVANCE(350); + 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); END_STATE(); - case 268: - if (lookahead == '_') ADVANCE(351); + 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); END_STATE(); - case 269: - if (lookahead == 't') ADVANCE(352); + 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); END_STATE(); - case 270: - ACCEPT_TOKEN(anon_sym_const); - if (lookahead == 'e') ADVANCE(353); + 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); END_STATE(); - case 271: - if (lookahead == 'n') ADVANCE(354); + 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); END_STATE(); - case 272: - if (lookahead == 'l') ADVANCE(355); + 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); END_STATE(); - case 273: - if (lookahead == 'e') ADVANCE(356); + 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); END_STATE(); - case 274: - if (lookahead == 'e') ADVANCE(180); + 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); END_STATE(); - case 275: - if (lookahead == 'n') ADVANCE(357); + 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); END_STATE(); - case 276: - if (lookahead == 'e') ADVANCE(358); + 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); END_STATE(); - case 277: - if (lookahead == '_') ADVANCE(359); + 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); END_STATE(); - case 278: - if (lookahead == '_') ADVANCE(360); + 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); END_STATE(); - case 279: - if (lookahead == '_') ADVANCE(361); + 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); END_STATE(); - case 280: - if (lookahead == 't') ADVANCE(180); + 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); END_STATE(); - case 281: - if (lookahead == 'r') ADVANCE(362); + 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); END_STATE(); - case 282: - if (lookahead == 'l') ADVANCE(363); + 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); END_STATE(); - case 283: - if (lookahead == 'u') ADVANCE(364); + 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); END_STATE(); - case 284: - if (lookahead == 't') ADVANCE(365); + 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); END_STATE(); - case 285: - if (lookahead == 't') ADVANCE(366); + 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); END_STATE(); - case 286: - if (lookahead == 'f') ADVANCE(367); + 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); END_STATE(); - case 287: - if (lookahead == 't') ADVANCE(368); + 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); END_STATE(); - case 288: - if (lookahead == 'i') ADVANCE(369); + 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); END_STATE(); - case 289: - if (lookahead == 'n') ADVANCE(370); + 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); END_STATE(); - case 290: - ACCEPT_TOKEN(anon_sym_short); + 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); END_STATE(); - case 291: - if (lookahead == 'd') ADVANCE(371); + 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); END_STATE(); - case 292: - if (lookahead == 't') ADVANCE(180); + 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); END_STATE(); - case 293: - if (lookahead == 'f') ADVANCE(372); + 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); END_STATE(); - case 294: - if (lookahead == '_') ADVANCE(373); + 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); END_STATE(); - case 295: - if (lookahead == 'c') ADVANCE(374); + 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); END_STATE(); - case 296: - if (lookahead == 't') ADVANCE(375); + 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); END_STATE(); - case 297: - if (lookahead == 'h') ADVANCE(376); + 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); END_STATE(); - case 298: - if (lookahead == 'd') ADVANCE(377); + 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); END_STATE(); - case 299: - if (lookahead == 'e') ADVANCE(378); + 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); END_STATE(); - case 300: - if (lookahead == '6') ADVANCE(379); + 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); END_STATE(); - case 301: - if (lookahead == '2') ADVANCE(380); + 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); END_STATE(); - case 302: - if (lookahead == '4') ADVANCE(381); + 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); END_STATE(); - case 303: - if (lookahead == '_') ADVANCE(382); + 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); END_STATE(); - case 304: - if (lookahead == 't') ADVANCE(383); + 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); END_STATE(); - case 305: - ACCEPT_TOKEN(anon_sym_union); + 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); END_STATE(); - case 306: - if (lookahead == 'n') ADVANCE(384); + 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); END_STATE(); - case 307: - if (lookahead == 'i') ADVANCE(385); + 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); END_STATE(); - case 308: - ACCEPT_TOKEN(anon_sym_while); + 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); END_STATE(); - case 309: - if (lookahead == 'a') ADVANCE(386); - if (lookahead == 'o') ADVANCE(387); + 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); END_STATE(); - case 310: - if (lookahead == 'c') ADVANCE(388); - END_STATE(); - case 311: - if (lookahead == 'i') ADVANCE(389); + 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); END_STATE(); - case 312: - if (lookahead == 'u') ADVANCE(390); + 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); END_STATE(); - case 313: - if (lookahead == 'n') ADVANCE(391); + 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); END_STATE(); - case 314: - if (lookahead == '_') ADVANCE(392); + 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); END_STATE(); - case 315: - if (lookahead == 'i') ADVANCE(393); + 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); END_STATE(); - case 316: - if (lookahead == 'd') ADVANCE(394); + 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); END_STATE(); - case 317: - if (lookahead == 'l') ADVANCE(395); + 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); END_STATE(); - case 318: - if (lookahead == 'a') ADVANCE(396); + 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); END_STATE(); - case 319: - ACCEPT_TOKEN(anon_sym___cold); + 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); END_STATE(); - case 320: - if (lookahead == 's') ADVANCE(397); + 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); END_STATE(); - case 321: - if (lookahead == 'p') ADVANCE(398); + 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); END_STATE(); - case 322: - ACCEPT_TOKEN(anon_sym___exit); + 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); END_STATE(); - case 323: - if (lookahead == 'n') ADVANCE(399); + 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); END_STATE(); - case 324: - if (lookahead == 'c') ADVANCE(400); + 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); END_STATE(); - case 325: - if (lookahead == 'l') ADVANCE(401); + 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); END_STATE(); - case 326: - if (lookahead == 'e') ADVANCE(402); + 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); END_STATE(); - case 327: - ACCEPT_TOKEN(anon_sym___init); + 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); END_STATE(); - case 328: - if (lookahead == 'n') ADVANCE(403); + 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); END_STATE(); - case 329: - if (lookahead == 'e') ADVANCE(404); + 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); END_STATE(); - case 330: - if (lookahead == '_') ADVANCE(405); + 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); END_STATE(); - case 331: - if (lookahead == 't') ADVANCE(406); + 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); END_STATE(); - case 332: - if (lookahead == 't') ADVANCE(407); + 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); END_STATE(); - case 333: - if (lookahead == '_') ADVANCE(408); + 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); END_STATE(); - case 334: - if (lookahead == 'r') ADVANCE(409); + 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); END_STATE(); - case 335: - if (lookahead == 'f') ADVANCE(410); + 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); END_STATE(); - case 336: - if (lookahead == 'f') ADVANCE(411); + 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); END_STATE(); - case 337: - ACCEPT_TOKEN(sym_ms_signed_ptr_modifier); + 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); END_STATE(); - case 338: - if (lookahead == 'a') ADVANCE(412); + 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); END_STATE(); - case 339: - if (lookahead == 'c') ADVANCE(413); + 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); END_STATE(); - case 340: - if (lookahead == 'a') ADVANCE(414); + 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); END_STATE(); - case 341: - if (lookahead == 'i') ADVANCE(415); + 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); END_STATE(); - case 342: - ACCEPT_TOKEN(sym_ms_unsigned_ptr_modifier); + 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); END_STATE(); - case 343: - if (lookahead == 'o') ADVANCE(416); + 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); END_STATE(); - case 344: - if (lookahead == 'o') ADVANCE(417); + 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); END_STATE(); - case 345: - if (lookahead == 'g') ADVANCE(418); + 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); END_STATE(); - case 346: - if (lookahead == 's') ADVANCE(419); + 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); END_STATE(); - case 347: - if (lookahead == 'f') ADVANCE(420); + 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); END_STATE(); - case 348: - if (lookahead == '_') ADVANCE(421); + 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); END_STATE(); - case 349: - if (lookahead == '_') ADVANCE(422); + 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); END_STATE(); - case 350: - if (lookahead == '_') ADVANCE(423); + 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); END_STATE(); - case 351: - if (lookahead == 't') ADVANCE(180); + 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); END_STATE(); - case 352: - if (lookahead == 'r') ADVANCE(424); + 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); END_STATE(); - case 353: - if (lookahead == 'x') ADVANCE(425); + 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); END_STATE(); - case 354: - if (lookahead == 'u') ADVANCE(426); + 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); END_STATE(); - case 355: - if (lookahead == 't') ADVANCE(427); + 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); END_STATE(); - case 356: - if (lookahead == 'd') ADVANCE(428); + 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); END_STATE(); - case 357: - ACCEPT_TOKEN(anon_sym_extern); + 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); END_STATE(); - case 358: - ACCEPT_TOKEN(anon_sym_inline); + 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); END_STATE(); - case 359: - if (lookahead == 't') ADVANCE(180); + 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); END_STATE(); - case 360: - if (lookahead == 't') ADVANCE(180); + 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); END_STATE(); - case 361: - if (lookahead == 't') ADVANCE(180); + 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); END_STATE(); - case 362: - if (lookahead == '_') ADVANCE(429); + 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); END_STATE(); - case 363: - if (lookahead == 'i') ADVANCE(430); + 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); END_STATE(); - case 364: - if (lookahead == 'r') ADVANCE(431); + 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); END_STATE(); - case 365: - if (lookahead == 'r') ADVANCE(432); + case 677: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(86); + if (set_contains(sym_identifier_character_set_2, 765, lookahead)) ADVANCE(677); END_STATE(); - case 366: - if (lookahead == 'o') ADVANCE(433); + case 678: + ACCEPT_TOKEN(sym_comment); END_STATE(); - case 367: - if (lookahead == 'f') ADVANCE(434); + case 679: + ACCEPT_TOKEN(sym_comment); + if (lookahead == '\r') ADVANCE(681); + if (lookahead == '\\') ADVANCE(679); + if (lookahead != 0) ADVANCE(680); END_STATE(); - case 368: - if (lookahead == 'e') ADVANCE(435); + case 680: + ACCEPT_TOKEN(sym_comment); + if (lookahead == '\\') ADVANCE(49); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(680); END_STATE(); - case 369: - if (lookahead == 'c') ADVANCE(436); + case 681: + ACCEPT_TOKEN(sym_comment); + if (lookahead == '\\') ADVANCE(49); + if (lookahead != 0) ADVANCE(680); END_STATE(); - case 370: - ACCEPT_TOKEN(anon_sym_return); + default: + return false; + } +} + +static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { + START_LEXER(); + eof = lexer->eof(lexer); + switch (state) { + case 0: + if (lookahead == 'F') ADVANCE(1); + if (lookahead == 'N') ADVANCE(2); + if (lookahead == 'T') ADVANCE(3); + if (lookahead == '\\') SKIP(4); + if (lookahead == '_') ADVANCE(5); + if (lookahead == 'a') ADVANCE(6); + if (lookahead == 'b') ADVANCE(7); + if (lookahead == 'c') ADVANCE(8); + if (lookahead == 'd') ADVANCE(9); + if (lookahead == 'e') ADVANCE(10); + if (lookahead == 'f') ADVANCE(11); + if (lookahead == 'g') ADVANCE(12); + if (lookahead == 'i') ADVANCE(13); + if (lookahead == 'l') ADVANCE(14); + if (lookahead == 'm') ADVANCE(15); + if (lookahead == 'n') ADVANCE(16); + if (lookahead == 'o') ADVANCE(17); + if (lookahead == 'p') ADVANCE(18); + if (lookahead == 'r') ADVANCE(19); + if (lookahead == 's') ADVANCE(20); + if (lookahead == 't') ADVANCE(21); + if (lookahead == 'u') ADVANCE(22); + if (lookahead == 'v') ADVANCE(23); + if (lookahead == 'w') ADVANCE(24); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(0); END_STATE(); - case 371: - ACCEPT_TOKEN(anon_sym_signed); + case 1: + if (lookahead == 'A') ADVANCE(25); END_STATE(); - case 372: - ACCEPT_TOKEN(anon_sym_sizeof); + case 2: + if (lookahead == 'U') ADVANCE(26); END_STATE(); - case 373: - if (lookahead == 't') ADVANCE(180); + case 3: + if (lookahead == 'R') ADVANCE(27); END_STATE(); - case 374: - ACCEPT_TOKEN(anon_sym_static); + case 4: + if (lookahead == '\n') SKIP(0); + if (lookahead == '\r') SKIP(28); END_STATE(); - case 375: - ACCEPT_TOKEN(anon_sym_struct); + case 5: + if (lookahead == 'A') ADVANCE(29); + if (lookahead == 'G') ADVANCE(30); + if (lookahead == 'N') ADVANCE(31); + if (lookahead == '_') ADVANCE(32); + if (lookahead == 'a') ADVANCE(33); + if (lookahead == 'u') ADVANCE(34); END_STATE(); - case 376: - ACCEPT_TOKEN(anon_sym_switch); + case 6: + if (lookahead == 'l') ADVANCE(35); + if (lookahead == 's') ADVANCE(36); + if (lookahead == 'u') ADVANCE(37); END_STATE(); - case 377: - if (lookahead == '_') ADVANCE(437); + case 7: + if (lookahead == 'o') ADVANCE(38); + if (lookahead == 'r') ADVANCE(39); END_STATE(); - case 378: - if (lookahead == 'f') ADVANCE(438); + case 8: + if (lookahead == 'a') ADVANCE(40); + if (lookahead == 'h') ADVANCE(41); + if (lookahead == 'o') ADVANCE(42); END_STATE(); - case 379: - if (lookahead == '_') ADVANCE(439); + case 9: + if (lookahead == 'e') ADVANCE(43); + if (lookahead == 'o') ADVANCE(44); END_STATE(); - case 380: - if (lookahead == '_') ADVANCE(440); + case 10: + if (lookahead == 'l') ADVANCE(45); + if (lookahead == 'n') ADVANCE(46); + if (lookahead == 'x') ADVANCE(47); END_STATE(); - case 381: - if (lookahead == '_') ADVANCE(441); + case 11: + if (lookahead == 'a') ADVANCE(48); + if (lookahead == 'l') ADVANCE(49); + if (lookahead == 'o') ADVANCE(50); END_STATE(); - case 382: - if (lookahead == 't') ADVANCE(180); + case 12: + if (lookahead == 'o') ADVANCE(51); END_STATE(); - case 383: - if (lookahead == 'r') ADVANCE(442); + case 13: + if (lookahead == 'f') ADVANCE(52); + if (lookahead == 'n') ADVANCE(53); END_STATE(); - case 384: - if (lookahead == 'e') ADVANCE(443); + case 14: + if (lookahead == 'o') ADVANCE(54); END_STATE(); - case 385: - if (lookahead == 'l') ADVANCE(444); + case 15: + if (lookahead == 'a') ADVANCE(55); END_STATE(); - case 386: - if (lookahead == 's') ADVANCE(445); + case 16: + if (lookahead == 'o') ADVANCE(56); + if (lookahead == 'u') ADVANCE(57); END_STATE(); - case 387: - if (lookahead == 'f') ADVANCE(446); + case 17: + if (lookahead == 'f') ADVANCE(58); END_STATE(); - case 388: - ACCEPT_TOKEN(anon_sym__Atomic); + case 18: + if (lookahead == 't') ADVANCE(59); END_STATE(); - case 389: - if (lookahead == 'c') ADVANCE(447); + case 19: + if (lookahead == 'e') ADVANCE(60); END_STATE(); - case 390: - if (lookahead == 'r') ADVANCE(448); + case 20: + if (lookahead == 'h') ADVANCE(61); + if (lookahead == 'i') ADVANCE(62); + if (lookahead == 's') ADVANCE(63); + if (lookahead == 't') ADVANCE(64); + if (lookahead == 'w') ADVANCE(65); END_STATE(); - case 391: - if (lookahead == 'e') ADVANCE(449); - if (lookahead == 'o') ADVANCE(450); + case 21: + if (lookahead == 'h') ADVANCE(66); + if (lookahead == 'r') ADVANCE(67); + if (lookahead == 'y') ADVANCE(68); END_STATE(); - case 392: - ACCEPT_TOKEN(anon_sym___asm__); + case 22: + if (lookahead == 'i') ADVANCE(69); + if (lookahead == 'n') ADVANCE(70); END_STATE(); - case 393: - if (lookahead == 'b') ADVANCE(451); + case 23: + if (lookahead == 'o') ADVANCE(71); END_STATE(); - case 394: - ACCEPT_TOKEN(anon_sym___based); + case 24: + if (lookahead == 'h') ADVANCE(72); END_STATE(); - case 395: - ACCEPT_TOKEN(anon_sym___cdecl); + case 25: + if (lookahead == 'L') ADVANCE(73); END_STATE(); - case 396: - if (lookahead == 'l') ADVANCE(452); + case 26: + if (lookahead == 'L') ADVANCE(74); END_STATE(); - case 397: - if (lookahead == 'p') ADVANCE(453); + case 27: + if (lookahead == 'U') ADVANCE(75); END_STATE(); - case 398: - if (lookahead == 't') ADVANCE(454); + case 28: + if (lookahead == '\n') SKIP(0); END_STATE(); - case 399: - if (lookahead == 's') ADVANCE(455); + case 29: + if (lookahead == 'l') ADVANCE(76); + if (lookahead == 't') ADVANCE(77); END_STATE(); - case 400: - if (lookahead == 'a') ADVANCE(456); + case 30: + if (lookahead == 'e') ADVANCE(78); END_STATE(); - case 401: - if (lookahead == 'l') ADVANCE(457); + case 31: + if (lookahead == 'o') ADVANCE(79); END_STATE(); - case 402: - if (lookahead == 'i') ADVANCE(458); + case 32: + ADVANCE_MAP( + 'a', 80, + 'b', 81, + 'c', 82, + 'd', 83, + 'e', 84, + 'f', 85, + 'i', 86, + 'l', 87, + 'm', 88, + 'n', 89, + 'p', 90, + 'r', 91, + 's', 92, + 't', 93, + 'u', 94, + 'v', 95, + ); END_STATE(); - case 403: - if (lookahead == 'e') ADVANCE(459); + case 33: + if (lookahead == 'l') ADVANCE(96); END_STATE(); - case 404: - ACCEPT_TOKEN(anon_sym___leave); + case 34: + if (lookahead == 'n') ADVANCE(97); END_STATE(); - case 405: - if (lookahead == 'h') ADVANCE(460); + case 35: + if (lookahead == 'i') ADVANCE(98); END_STATE(); - case 406: - if (lookahead == 'u') ADVANCE(461); + case 36: + if (lookahead == 'm') ADVANCE(99); END_STATE(); - case 407: - if (lookahead == 'f') ADVANCE(462); + case 37: + if (lookahead == 't') ADVANCE(100); END_STATE(); - case 408: - if (lookahead == 'm') ADVANCE(463); + case 38: + if (lookahead == 'o') ADVANCE(101); END_STATE(); - case 409: - if (lookahead == 'i') ADVANCE(464); + case 39: + if (lookahead == 'e') ADVANCE(102); END_STATE(); - case 410: - if (lookahead == 't') ADVANCE(465); + case 40: + if (lookahead == 's') ADVANCE(103); END_STATE(); - case 411: - ACCEPT_TOKEN(anon_sym___scanf); + case 41: + if (lookahead == 'a') ADVANCE(104); END_STATE(); - case 412: - if (lookahead == 'l') ADVANCE(466); + case 42: + if (lookahead == 'n') ADVANCE(105); END_STATE(); - case 413: - if (lookahead == 'a') ADVANCE(467); + case 43: + if (lookahead == 'f') ADVANCE(106); END_STATE(); - case 414: - if (lookahead == 'd') ADVANCE(468); + case 44: + ACCEPT_TOKEN(anon_sym_do); + if (lookahead == 'u') ADVANCE(107); END_STATE(); - case 415: - if (lookahead == 'g') ADVANCE(469); + case 45: + if (lookahead == 's') ADVANCE(108); END_STATE(); - case 416: - if (lookahead == 'r') ADVANCE(470); + case 46: + if (lookahead == 'u') ADVANCE(109); END_STATE(); - case 417: - if (lookahead == 'f') ADVANCE(471); + case 47: + if (lookahead == 't') ADVANCE(110); END_STATE(); - case 418: - if (lookahead == 'n') ADVANCE(472); + case 48: + if (lookahead == 'l') ADVANCE(111); END_STATE(); - case 419: - ACCEPT_TOKEN(anon_sym_alignas); + case 49: + if (lookahead == 'o') ADVANCE(112); END_STATE(); - case 420: - ACCEPT_TOKEN(anon_sym_alignof); + case 50: + if (lookahead == 'r') ADVANCE(113); END_STATE(); - case 421: - if (lookahead == 't') ADVANCE(180); + case 51: + if (lookahead == 't') ADVANCE(114); END_STATE(); - case 422: - if (lookahead == 't') ADVANCE(180); + case 52: + ACCEPT_TOKEN(anon_sym_if); END_STATE(); - case 423: - if (lookahead == 't') ADVANCE(180); + case 53: + if (lookahead == 'l') ADVANCE(115); + if (lookahead == 't') ADVANCE(116); END_STATE(); - case 424: - if (lookahead == '_') ADVANCE(473); + case 54: + if (lookahead == 'n') ADVANCE(117); END_STATE(); - case 425: - if (lookahead == 'p') ADVANCE(474); + case 55: + if (lookahead == 'x') ADVANCE(118); END_STATE(); - case 426: - if (lookahead == 'e') ADVANCE(475); + case 56: + if (lookahead == 'r') ADVANCE(119); END_STATE(); - case 427: - ACCEPT_TOKEN(anon_sym_default); + case 57: + if (lookahead == 'l') ADVANCE(120); END_STATE(); - case 428: - ACCEPT_TOKEN(anon_sym_defined); + case 58: + if (lookahead == 'f') ADVANCE(121); END_STATE(); - case 429: - if (lookahead == 't') ADVANCE(180); + case 59: + if (lookahead == 'r') ADVANCE(122); END_STATE(); - case 430: - if (lookahead == 'g') ADVANCE(476); + case 60: + if (lookahead == 'g') ADVANCE(123); + if (lookahead == 's') ADVANCE(124); + if (lookahead == 't') ADVANCE(125); END_STATE(); - case 431: - if (lookahead == 'n') ADVANCE(477); + case 61: + if (lookahead == 'o') ADVANCE(126); END_STATE(); - case 432: - ACCEPT_TOKEN(anon_sym_nullptr); - if (lookahead == '_') ADVANCE(478); + case 62: + if (lookahead == 'g') ADVANCE(127); + if (lookahead == 'z') ADVANCE(128); END_STATE(); - case 433: - if (lookahead == 'f') ADVANCE(479); + case 63: + if (lookahead == 'i') ADVANCE(129); END_STATE(); - case 434: - if (lookahead == '_') ADVANCE(480); + case 64: + if (lookahead == 'a') ADVANCE(130); + if (lookahead == 'r') ADVANCE(131); END_STATE(); - case 435: - if (lookahead == 'r') ADVANCE(481); + case 65: + if (lookahead == 'i') ADVANCE(132); END_STATE(); - case 436: - if (lookahead == 't') ADVANCE(482); + case 66: + if (lookahead == 'r') ADVANCE(133); END_STATE(); - case 437: - if (lookahead == 'l') ADVANCE(483); + case 67: + if (lookahead == 'u') ADVANCE(134); END_STATE(); - case 438: - ACCEPT_TOKEN(anon_sym_typedef); + case 68: + if (lookahead == 'p') ADVANCE(135); END_STATE(); - case 439: - if (lookahead == 't') ADVANCE(180); + case 69: + if (lookahead == 'n') ADVANCE(136); END_STATE(); - case 440: - if (lookahead == 't') ADVANCE(180); + case 70: + if (lookahead == 'i') ADVANCE(137); + if (lookahead == 's') ADVANCE(138); END_STATE(); - case 441: - if (lookahead == 't') ADVANCE(180); + case 71: + if (lookahead == 'i') ADVANCE(139); + if (lookahead == 'l') ADVANCE(140); END_STATE(); - case 442: - if (lookahead == '_') ADVANCE(484); + case 72: + if (lookahead == 'i') ADVANCE(141); END_STATE(); - case 443: - if (lookahead == 'd') ADVANCE(485); + case 73: + if (lookahead == 'S') ADVANCE(142); END_STATE(); - case 444: - if (lookahead == 'e') ADVANCE(486); + case 74: + if (lookahead == 'L') ADVANCE(143); END_STATE(); - case 445: - ACCEPT_TOKEN(anon_sym__Alignas); + case 75: + if (lookahead == 'E') ADVANCE(144); END_STATE(); - case 446: - ACCEPT_TOKEN(anon_sym__Alignof); + case 76: + if (lookahead == 'i') ADVANCE(145); END_STATE(); - case 447: - ACCEPT_TOKEN(anon_sym__Generic); + case 77: + if (lookahead == 'o') ADVANCE(146); END_STATE(); - case 448: - if (lookahead == 'n') ADVANCE(487); + case 78: + if (lookahead == 'n') ADVANCE(147); END_STATE(); - case 449: - if (lookahead == 'd') ADVANCE(488); + case 79: + if (lookahead == 'r') ADVANCE(148); END_STATE(); - case 450: - if (lookahead == 'f') ADVANCE(489); + case 80: + if (lookahead == 'l') ADVANCE(149); + if (lookahead == 's') ADVANCE(150); + if (lookahead == 't') ADVANCE(151); END_STATE(); - case 451: - if (lookahead == 'u') ADVANCE(490); + case 81: + if (lookahead == 'a') ADVANCE(152); END_STATE(); - case 452: - if (lookahead == 'l') ADVANCE(491); + case 82: + if (lookahead == 'd') ADVANCE(153); + if (lookahead == 'l') ADVANCE(154); + if (lookahead == 'o') ADVANCE(155); END_STATE(); - case 453: - if (lookahead == 'e') ADVANCE(492); + case 83: + if (lookahead == 'e') ADVANCE(156); END_STATE(); - case 454: - ACCEPT_TOKEN(anon_sym___except); + case 84: + if (lookahead == 'x') ADVANCE(157); END_STATE(); - case 455: - if (lookahead == 'i') ADVANCE(493); + case 85: + if (lookahead == 'a') ADVANCE(158); + if (lookahead == 'i') ADVANCE(159); + if (lookahead == 'o') ADVANCE(160); END_STATE(); - case 456: - if (lookahead == 'l') ADVANCE(494); + case 86: + if (lookahead == 'n') ADVANCE(161); END_STATE(); - case 457: - if (lookahead == 'y') ADVANCE(495); + case 87: + if (lookahead == 'e') ADVANCE(162); END_STATE(); - case 458: - if (lookahead == 'n') ADVANCE(496); + case 88: + if (lookahead == 'u') ADVANCE(163); END_STATE(); - case 459: - ACCEPT_TOKEN(anon_sym___inline); - if (lookahead == '_') ADVANCE(497); + case 89: + if (lookahead == 'o') ADVANCE(164); END_STATE(); - case 460: - if (lookahead == 'o') ADVANCE(498); + case 90: + if (lookahead == 'r') ADVANCE(165); END_STATE(); - case 461: - if (lookahead == 'r') ADVANCE(499); + case 91: + if (lookahead == 'e') ADVANCE(166); + if (lookahead == 'o') ADVANCE(167); END_STATE(); - case 462: - ACCEPT_TOKEN(anon_sym___printf); + case 92: + if (lookahead == 'c') ADVANCE(168); + if (lookahead == 'p') ADVANCE(169); + if (lookahead == 't') ADVANCE(170); END_STATE(); - case 463: - if (lookahead == 'o') ADVANCE(500); + case 93: + if (lookahead == 'h') ADVANCE(171); + if (lookahead == 'r') ADVANCE(172); END_STATE(); - case 464: - if (lookahead == 'c') ADVANCE(501); + case 94: + if (lookahead == 'n') ADVANCE(173); + if (lookahead == 'p') ADVANCE(174); END_STATE(); - case 465: - if (lookahead == 'e') ADVANCE(502); + case 95: + if (lookahead == 'e') ADVANCE(175); END_STATE(); - case 466: - if (lookahead == 'l') ADVANCE(503); + case 96: + if (lookahead == 'i') ADVANCE(176); END_STATE(); - case 467: - if (lookahead == 'l') ADVANCE(504); + case 97: + if (lookahead == 'a') ADVANCE(177); END_STATE(); - case 468: - ACCEPT_TOKEN(anon_sym___thread); + case 98: + if (lookahead == 'g') ADVANCE(178); END_STATE(); - case 469: - if (lookahead == 'n') ADVANCE(505); + case 99: + ACCEPT_TOKEN(anon_sym_asm); END_STATE(); - case 470: - if (lookahead == 'c') ADVANCE(506); + case 100: + if (lookahead == 'o') ADVANCE(179); END_STATE(); - case 471: - ACCEPT_TOKEN(anon_sym__alignof); + case 101: + if (lookahead == 'l') ADVANCE(180); END_STATE(); - case 472: - if (lookahead == 'e') ADVANCE(507); + case 102: + if (lookahead == 'a') ADVANCE(181); END_STATE(); - case 473: - if (lookahead == 't') ADVANCE(180); + case 103: + if (lookahead == 'e') ADVANCE(182); END_STATE(); - case 474: - if (lookahead == 'r') ADVANCE(508); + case 104: + if (lookahead == 'r') ADVANCE(183); END_STATE(); - case 475: - ACCEPT_TOKEN(anon_sym_continue); + case 105: + if (lookahead == 's') ADVANCE(184); + if (lookahead == 't') ADVANCE(185); END_STATE(); - case 476: - if (lookahead == 'n') ADVANCE(509); + case 106: + if (lookahead == 'a') ADVANCE(186); + if (lookahead == 'i') ADVANCE(187); END_STATE(); - case 477: - ACCEPT_TOKEN(anon_sym_noreturn); + case 107: + if (lookahead == 'b') ADVANCE(188); END_STATE(); - case 478: - if (lookahead == 't') ADVANCE(180); + case 108: + if (lookahead == 'e') ADVANCE(189); END_STATE(); - case 479: - ACCEPT_TOKEN(anon_sym_offsetof); + case 109: + if (lookahead == 'm') ADVANCE(190); END_STATE(); - case 480: - if (lookahead == 't') ADVANCE(180); + case 110: + if (lookahead == 'e') ADVANCE(191); END_STATE(); - case 481: - ACCEPT_TOKEN(anon_sym_register); + case 111: + if (lookahead == 's') ADVANCE(192); END_STATE(); - case 482: - ACCEPT_TOKEN(anon_sym_restrict); + case 112: + if (lookahead == 'a') ADVANCE(193); END_STATE(); - case 483: - if (lookahead == 'o') ADVANCE(510); + case 113: + ACCEPT_TOKEN(anon_sym_for); END_STATE(); - case 484: - if (lookahead == 't') ADVANCE(180); + case 114: + if (lookahead == 'o') ADVANCE(194); END_STATE(); - case 485: - ACCEPT_TOKEN(anon_sym_unsigned); + case 115: + if (lookahead == 'i') ADVANCE(195); END_STATE(); - case 486: - ACCEPT_TOKEN(anon_sym_volatile); + case 116: + ACCEPT_TOKEN(sym_primitive_type); + if (lookahead == '1') ADVANCE(196); + if (lookahead == '3') ADVANCE(197); + if (lookahead == '6') ADVANCE(198); + if (lookahead == '8') ADVANCE(199); + if (lookahead == 'p') ADVANCE(200); END_STATE(); - case 487: - ACCEPT_TOKEN(anon_sym__Noreturn); + case 117: + if (lookahead == 'g') ADVANCE(201); END_STATE(); - case 488: - ACCEPT_TOKEN(anon_sym___aligned); + case 118: + if (lookahead == '_') ADVANCE(202); END_STATE(); - case 489: - ACCEPT_TOKEN(anon_sym___alignof); - if (lookahead == '_') ADVANCE(511); + case 119: + if (lookahead == 'e') ADVANCE(203); END_STATE(); - case 490: - if (lookahead == 't') ADVANCE(512); + case 120: + if (lookahead == 'l') ADVANCE(204); END_STATE(); - case 491: - ACCEPT_TOKEN(anon_sym___clrcall); + case 121: + if (lookahead == 's') ADVANCE(205); END_STATE(); - case 492: - if (lookahead == 'c') ADVANCE(513); + case 122: + if (lookahead == 'd') ADVANCE(206); END_STATE(); - case 493: - if (lookahead == 'o') ADVANCE(514); + case 123: + if (lookahead == 'i') ADVANCE(207); END_STATE(); - case 494: - if (lookahead == 'l') ADVANCE(515); + case 124: + if (lookahead == 't') ADVANCE(208); END_STATE(); - case 495: - ACCEPT_TOKEN(anon_sym___finally); + case 125: + if (lookahead == 'u') ADVANCE(209); END_STATE(); - case 496: - if (lookahead == 'l') ADVANCE(516); + case 126: + if (lookahead == 'r') ADVANCE(210); END_STATE(); - case 497: - if (lookahead == '_') ADVANCE(517); + case 127: + if (lookahead == 'n') ADVANCE(211); END_STATE(); - case 498: - if (lookahead == 'l') ADVANCE(518); + case 128: + if (lookahead == 'e') ADVANCE(212); END_STATE(); - case 499: - if (lookahead == 'n') ADVANCE(519); + case 129: + if (lookahead == 'z') ADVANCE(213); END_STATE(); - case 500: - if (lookahead == 's') ADVANCE(520); + case 130: + if (lookahead == 't') ADVANCE(214); END_STATE(); - case 501: - if (lookahead == 't') ADVANCE(521); + case 131: + if (lookahead == 'u') ADVANCE(215); END_STATE(); - case 502: - if (lookahead == 'r') ADVANCE(522); + case 132: + if (lookahead == 't') ADVANCE(216); END_STATE(); - case 503: - ACCEPT_TOKEN(anon_sym___stdcall); + case 133: + if (lookahead == 'e') ADVANCE(217); END_STATE(); - case 504: - if (lookahead == 'l') ADVANCE(523); + case 134: + if (lookahead == 'e') ADVANCE(144); END_STATE(); - case 505: - if (lookahead == 'e') ADVANCE(524); + case 135: + if (lookahead == 'e') ADVANCE(218); END_STATE(); - case 506: - if (lookahead == 'a') ADVANCE(525); + case 136: + if (lookahead == 't') ADVANCE(219); END_STATE(); - case 507: - if (lookahead == 'd') ADVANCE(526); + case 137: + if (lookahead == 'o') ADVANCE(220); END_STATE(); - case 508: - ACCEPT_TOKEN(anon_sym_constexpr); + case 138: + if (lookahead == 'i') ADVANCE(221); END_STATE(); - case 509: - if (lookahead == '_') ADVANCE(527); + case 139: + if (lookahead == 'd') ADVANCE(180); END_STATE(); - case 510: - if (lookahead == 'c') ADVANCE(528); + case 140: + if (lookahead == 'a') ADVANCE(222); END_STATE(); - case 511: - if (lookahead == '_') ADVANCE(529); + case 141: + if (lookahead == 'l') ADVANCE(223); END_STATE(); - case 512: - if (lookahead == 'e') ADVANCE(530); + case 142: + if (lookahead == 'E') ADVANCE(224); END_STATE(); - case 513: - ACCEPT_TOKEN(anon_sym___declspec); + case 143: + ACCEPT_TOKEN(anon_sym_NULL); END_STATE(); - case 514: - if (lookahead == 'n') ADVANCE(531); + case 144: + ACCEPT_TOKEN(sym_true); END_STATE(); - case 515: - ACCEPT_TOKEN(anon_sym___fastcall); + case 145: + if (lookahead == 'g') ADVANCE(225); END_STATE(); - case 516: - if (lookahead == 'i') ADVANCE(532); + case 146: + if (lookahead == 'm') ADVANCE(226); END_STATE(); - case 517: - ACCEPT_TOKEN(anon_sym___inline__); + case 147: + if (lookahead == 'e') ADVANCE(227); END_STATE(); - case 518: - if (lookahead == 'd') ADVANCE(533); + case 148: + if (lookahead == 'e') ADVANCE(228); END_STATE(); - case 519: - ACCEPT_TOKEN(anon_sym___noreturn); + case 149: + if (lookahead == 'i') ADVANCE(229); END_STATE(); - case 520: - if (lookahead == 't') ADVANCE(534); + case 150: + if (lookahead == 'm') ADVANCE(230); END_STATE(); - case 521: - ACCEPT_TOKEN(sym_ms_restrict_modifier); - if (lookahead == '_') ADVANCE(535); + case 151: + if (lookahead == 't') ADVANCE(231); END_STATE(); - case 522: - if (lookahead == '_') ADVANCE(536); + case 152: + if (lookahead == 's') ADVANCE(232); END_STATE(); - case 523: - ACCEPT_TOKEN(anon_sym___thiscall); + case 153: + if (lookahead == 'e') ADVANCE(233); END_STATE(); - case 524: - if (lookahead == 'd') ADVANCE(537); + case 154: + if (lookahead == 'r') ADVANCE(234); END_STATE(); - case 525: - if (lookahead == 'l') ADVANCE(538); + case 155: + if (lookahead == 'l') ADVANCE(235); END_STATE(); - case 526: - ACCEPT_TOKEN(anon_sym__unaligned); + case 156: + if (lookahead == 'c') ADVANCE(236); END_STATE(); - case 527: - if (lookahead == 't') ADVANCE(180); + case 157: + if (lookahead == 'c') ADVANCE(237); + if (lookahead == 'i') ADVANCE(238); + if (lookahead == 't') ADVANCE(239); END_STATE(); - case 528: - if (lookahead == 'a') ADVANCE(539); + case 158: + if (lookahead == 's') ADVANCE(240); END_STATE(); - case 529: - ACCEPT_TOKEN(anon_sym___alignof__); + case 159: + if (lookahead == 'n') ADVANCE(241); END_STATE(); - case 530: - if (lookahead == '_') ADVANCE(540); + case 160: + if (lookahead == 'r') ADVANCE(242); END_STATE(); - case 531: - if (lookahead == '_') ADVANCE(541); + case 161: + if (lookahead == 'i') ADVANCE(243); + if (lookahead == 'l') ADVANCE(244); END_STATE(); - case 532: - if (lookahead == 'n') ADVANCE(542); + case 162: + if (lookahead == 'a') ADVANCE(245); END_STATE(); - case 533: - ACCEPT_TOKEN(anon_sym___must_hold); + case 163: + if (lookahead == 's') ADVANCE(246); END_STATE(); - case 534: - if (lookahead == 'l') ADVANCE(543); + case 164: + if (lookahead == 'r') ADVANCE(247); END_STATE(); - case 535: - if (lookahead == '_') ADVANCE(544); + case 165: + if (lookahead == 'i') ADVANCE(248); END_STATE(); - case 536: - if (lookahead == 'i') ADVANCE(545); + case 166: + if (lookahead == 'a') ADVANCE(249); + if (lookahead == 's') ADVANCE(250); END_STATE(); - case 537: - ACCEPT_TOKEN(anon_sym___unaligned); + case 167: + if (lookahead == '_') ADVANCE(251); END_STATE(); - case 538: - if (lookahead == 'l') ADVANCE(546); + case 168: + if (lookahead == 'a') ADVANCE(252); END_STATE(); - case 539: - if (lookahead == 'l') ADVANCE(547); + case 169: + if (lookahead == 't') ADVANCE(253); END_STATE(); - case 540: - if (lookahead == '_') ADVANCE(548); + case 170: + if (lookahead == 'd') ADVANCE(254); END_STATE(); - case 541: - if (lookahead == '_') ADVANCE(549); + case 171: + if (lookahead == 'i') ADVANCE(255); + if (lookahead == 'r') ADVANCE(256); END_STATE(); - case 542: - if (lookahead == 'e') ADVANCE(550); + case 172: + if (lookahead == 'y') ADVANCE(257); END_STATE(); - case 543: - if (lookahead == 'y') ADVANCE(551); + case 173: + if (lookahead == 'a') ADVANCE(258); END_STATE(); - case 544: - ACCEPT_TOKEN(anon_sym___restrict__); + case 174: + if (lookahead == 't') ADVANCE(259); END_STATE(); - case 545: - if (lookahead == 'n') ADVANCE(552); + case 175: + if (lookahead == 'c') ADVANCE(260); END_STATE(); - case 546: - ACCEPT_TOKEN(anon_sym___vectorcall); + case 176: + if (lookahead == 'g') ADVANCE(261); END_STATE(); - case 547: - ACCEPT_TOKEN(anon_sym_thread_local); + case 177: + if (lookahead == 'l') ADVANCE(262); END_STATE(); - case 548: - ACCEPT_TOKEN(anon_sym___attribute__); + case 178: + if (lookahead == 'n') ADVANCE(263); END_STATE(); - case 549: - ACCEPT_TOKEN(anon_sym___extension__); + case 179: + ACCEPT_TOKEN(anon_sym_auto); END_STATE(); - case 550: - ACCEPT_TOKEN(anon_sym___forceinline); + case 180: + ACCEPT_TOKEN(sym_primitive_type); END_STATE(); - case 551: - ACCEPT_TOKEN(anon_sym___read_mostly); + case 181: + if (lookahead == 'k') ADVANCE(264); END_STATE(); - case 552: - if (lookahead == 'i') ADVANCE(553); + case 182: + ACCEPT_TOKEN(anon_sym_case); END_STATE(); - case 553: - if (lookahead == 't') ADVANCE(554); + case 183: + ACCEPT_TOKEN(sym_primitive_type); + if (lookahead == '1') ADVANCE(265); + if (lookahead == '3') ADVANCE(266); + if (lookahead == '6') ADVANCE(267); + if (lookahead == '8') ADVANCE(268); + if (lookahead == 'p') ADVANCE(269); END_STATE(); - case 554: - ACCEPT_TOKEN(anon_sym___ro_after_init); + case 184: + if (lookahead == 't') ADVANCE(270); END_STATE(); - default: - return false; - } -} - -static const TSLexMode ts_lex_modes[STATE_COUNT] = { - [0] = {.lex_state = 0}, - [1] = {.lex_state = 121}, - [2] = {.lex_state = 48}, - [3] = {.lex_state = 48}, - [4] = {.lex_state = 48}, - [5] = {.lex_state = 48}, - [6] = {.lex_state = 48}, - [7] = {.lex_state = 48}, - [8] = {.lex_state = 48}, - [9] = {.lex_state = 48}, - [10] = {.lex_state = 48}, - [11] = {.lex_state = 48}, - [12] = {.lex_state = 48}, - [13] = {.lex_state = 48}, - [14] = {.lex_state = 48}, - [15] = {.lex_state = 48}, - [16] = {.lex_state = 48}, - [17] = {.lex_state = 48}, - [18] = {.lex_state = 48}, - [19] = {.lex_state = 48}, - [20] = {.lex_state = 48}, - [21] = {.lex_state = 48}, - [22] = {.lex_state = 48}, - [23] = {.lex_state = 121}, - [24] = {.lex_state = 121}, - [25] = {.lex_state = 121}, - [26] = {.lex_state = 121}, - [27] = {.lex_state = 121}, - [28] = {.lex_state = 121}, - [29] = {.lex_state = 121}, - [30] = {.lex_state = 50}, - [31] = {.lex_state = 50}, - [32] = {.lex_state = 121}, - [33] = {.lex_state = 121}, - [34] = {.lex_state = 121}, - [35] = {.lex_state = 121}, - [36] = {.lex_state = 121}, - [37] = {.lex_state = 50}, - [38] = {.lex_state = 121}, - [39] = {.lex_state = 121}, - [40] = {.lex_state = 121}, - [41] = {.lex_state = 121}, - [42] = {.lex_state = 121}, - [43] = {.lex_state = 121}, - [44] = {.lex_state = 121}, - [45] = {.lex_state = 48}, - [46] = {.lex_state = 48}, - [47] = {.lex_state = 48}, - [48] = {.lex_state = 48}, - [49] = {.lex_state = 48}, - [50] = {.lex_state = 50}, - [51] = {.lex_state = 121}, - [52] = {.lex_state = 121}, - [53] = {.lex_state = 121}, - [54] = {.lex_state = 121}, - [55] = {.lex_state = 121}, - [56] = {.lex_state = 121}, - [57] = {.lex_state = 121}, - [58] = {.lex_state = 50}, - [59] = {.lex_state = 50}, - [60] = {.lex_state = 50}, - [61] = {.lex_state = 50}, - [62] = {.lex_state = 121}, - [63] = {.lex_state = 121}, - [64] = {.lex_state = 121}, - [65] = {.lex_state = 121}, - [66] = {.lex_state = 121}, - [67] = {.lex_state = 121}, - [68] = {.lex_state = 121}, - [69] = {.lex_state = 121}, - [70] = {.lex_state = 121}, - [71] = {.lex_state = 121}, - [72] = {.lex_state = 121}, - [73] = {.lex_state = 121}, - [74] = {.lex_state = 121}, - [75] = {.lex_state = 48}, - [76] = {.lex_state = 48}, - [77] = {.lex_state = 48}, - [78] = {.lex_state = 48}, - [79] = {.lex_state = 48}, - [80] = {.lex_state = 48}, - [81] = {.lex_state = 48}, - [82] = {.lex_state = 48}, - [83] = {.lex_state = 48}, - [84] = {.lex_state = 48}, - [85] = {.lex_state = 48}, - [86] = {.lex_state = 48}, - [87] = {.lex_state = 48}, - [88] = {.lex_state = 48}, - [89] = {.lex_state = 48}, - [90] = {.lex_state = 48}, - [91] = {.lex_state = 121}, - [92] = {.lex_state = 48}, - [93] = {.lex_state = 48}, - [94] = {.lex_state = 48}, - [95] = {.lex_state = 48}, - [96] = {.lex_state = 48}, - [97] = {.lex_state = 48}, - [98] = {.lex_state = 48}, - [99] = {.lex_state = 48}, - [100] = {.lex_state = 48}, - [101] = {.lex_state = 121}, - [102] = {.lex_state = 48}, - [103] = {.lex_state = 48}, - [104] = {.lex_state = 48}, - [105] = {.lex_state = 48}, - [106] = {.lex_state = 48}, - [107] = {.lex_state = 48}, - [108] = {.lex_state = 48}, - [109] = {.lex_state = 48}, - [110] = {.lex_state = 48}, - [111] = {.lex_state = 48}, - [112] = {.lex_state = 48}, - [113] = {.lex_state = 48}, - [114] = {.lex_state = 48}, - [115] = {.lex_state = 48}, - [116] = {.lex_state = 48}, - [117] = {.lex_state = 48}, - [118] = {.lex_state = 48}, - [119] = {.lex_state = 48}, - [120] = {.lex_state = 48}, - [121] = {.lex_state = 48}, - [122] = {.lex_state = 48}, - [123] = {.lex_state = 48}, - [124] = {.lex_state = 48}, - [125] = {.lex_state = 48}, - [126] = {.lex_state = 48}, - [127] = {.lex_state = 48}, - [128] = {.lex_state = 48}, - [129] = {.lex_state = 48}, - [130] = {.lex_state = 48}, - [131] = {.lex_state = 48}, - [132] = {.lex_state = 48}, - [133] = {.lex_state = 48}, - [134] = {.lex_state = 48}, - [135] = {.lex_state = 48}, - [136] = {.lex_state = 48}, - [137] = {.lex_state = 48}, - [138] = {.lex_state = 48}, - [139] = {.lex_state = 48}, - [140] = {.lex_state = 48}, - [141] = {.lex_state = 48}, - [142] = {.lex_state = 48}, - [143] = {.lex_state = 48}, - [144] = {.lex_state = 48}, - [145] = {.lex_state = 48}, - [146] = {.lex_state = 48}, - [147] = {.lex_state = 48}, - [148] = {.lex_state = 48}, - [149] = {.lex_state = 48}, - [150] = {.lex_state = 48}, - [151] = {.lex_state = 48}, - [152] = {.lex_state = 48}, - [153] = {.lex_state = 48}, - [154] = {.lex_state = 48}, - [155] = {.lex_state = 48}, - [156] = {.lex_state = 48}, - [157] = {.lex_state = 48}, - [158] = {.lex_state = 48}, - [159] = {.lex_state = 50}, - [160] = {.lex_state = 121}, - [161] = {.lex_state = 121}, - [162] = {.lex_state = 121}, - [163] = {.lex_state = 121}, - [164] = {.lex_state = 121}, - [165] = {.lex_state = 121}, - [166] = {.lex_state = 121}, - [167] = {.lex_state = 121}, - [168] = {.lex_state = 121}, - [169] = {.lex_state = 121}, - [170] = {.lex_state = 121}, - [171] = {.lex_state = 121}, - [172] = {.lex_state = 121}, - [173] = {.lex_state = 121}, - [174] = {.lex_state = 121}, - [175] = {.lex_state = 121}, - [176] = {.lex_state = 121}, - [177] = {.lex_state = 121}, - [178] = {.lex_state = 121}, - [179] = {.lex_state = 121}, - [180] = {.lex_state = 121}, - [181] = {.lex_state = 121}, - [182] = {.lex_state = 121}, - [183] = {.lex_state = 121}, - [184] = {.lex_state = 121}, - [185] = {.lex_state = 121}, - [186] = {.lex_state = 121}, - [187] = {.lex_state = 121}, - [188] = {.lex_state = 121}, - [189] = {.lex_state = 121}, - [190] = {.lex_state = 121}, - [191] = {.lex_state = 121}, - [192] = {.lex_state = 121}, - [193] = {.lex_state = 121}, - [194] = {.lex_state = 121}, - [195] = {.lex_state = 121}, - [196] = {.lex_state = 121}, - [197] = {.lex_state = 121}, - [198] = {.lex_state = 121}, - [199] = {.lex_state = 121}, - [200] = {.lex_state = 121}, - [201] = {.lex_state = 121}, - [202] = {.lex_state = 121}, - [203] = {.lex_state = 50}, - [204] = {.lex_state = 50}, - [205] = {.lex_state = 50}, - [206] = {.lex_state = 121}, - [207] = {.lex_state = 50}, - [208] = {.lex_state = 50}, - [209] = {.lex_state = 50}, - [210] = {.lex_state = 121}, - [211] = {.lex_state = 121}, - [212] = {.lex_state = 50}, - [213] = {.lex_state = 121}, - [214] = {.lex_state = 121}, - [215] = {.lex_state = 121}, - [216] = {.lex_state = 50}, - [217] = {.lex_state = 50}, - [218] = {.lex_state = 50}, - [219] = {.lex_state = 121}, - [220] = {.lex_state = 121}, - [221] = {.lex_state = 50}, - [222] = {.lex_state = 121}, - [223] = {.lex_state = 121}, - [224] = {.lex_state = 121}, - [225] = {.lex_state = 50}, - [226] = {.lex_state = 50}, - [227] = {.lex_state = 50}, - [228] = {.lex_state = 50}, - [229] = {.lex_state = 121}, - [230] = {.lex_state = 50}, - [231] = {.lex_state = 121}, - [232] = {.lex_state = 121}, - [233] = {.lex_state = 121}, - [234] = {.lex_state = 121}, - [235] = {.lex_state = 50}, - [236] = {.lex_state = 50}, - [237] = {.lex_state = 50}, - [238] = {.lex_state = 50}, - [239] = {.lex_state = 50}, - [240] = {.lex_state = 50}, - [241] = {.lex_state = 121}, - [242] = {.lex_state = 50}, - [243] = {.lex_state = 50}, - [244] = {.lex_state = 50}, - [245] = {.lex_state = 121}, - [246] = {.lex_state = 121}, - [247] = {.lex_state = 121}, - [248] = {.lex_state = 50}, - [249] = {.lex_state = 50}, - [250] = {.lex_state = 50}, - [251] = {.lex_state = 50}, - [252] = {.lex_state = 121}, - [253] = {.lex_state = 121}, - [254] = {.lex_state = 50}, - [255] = {.lex_state = 50}, - [256] = {.lex_state = 50}, - [257] = {.lex_state = 50}, - [258] = {.lex_state = 50}, - [259] = {.lex_state = 121}, - [260] = {.lex_state = 121}, - [261] = {.lex_state = 50}, - [262] = {.lex_state = 50}, - [263] = {.lex_state = 121}, - [264] = {.lex_state = 121}, - [265] = {.lex_state = 121}, - [266] = {.lex_state = 121}, - [267] = {.lex_state = 121}, - [268] = {.lex_state = 121}, - [269] = {.lex_state = 121}, - [270] = {.lex_state = 121}, - [271] = {.lex_state = 121}, - [272] = {.lex_state = 50}, - [273] = {.lex_state = 50}, - [274] = {.lex_state = 121}, - [275] = {.lex_state = 121}, - [276] = {.lex_state = 121}, - [277] = {.lex_state = 121}, - [278] = {.lex_state = 121}, - [279] = {.lex_state = 121}, - [280] = {.lex_state = 121}, - [281] = {.lex_state = 121}, - [282] = {.lex_state = 50}, - [283] = {.lex_state = 121}, - [284] = {.lex_state = 50}, - [285] = {.lex_state = 121}, - [286] = {.lex_state = 50}, - [287] = {.lex_state = 50}, - [288] = {.lex_state = 50}, - [289] = {.lex_state = 50}, - [290] = {.lex_state = 121}, - [291] = {.lex_state = 121}, - [292] = {.lex_state = 50}, - [293] = {.lex_state = 50}, - [294] = {.lex_state = 50}, - [295] = {.lex_state = 50}, - [296] = {.lex_state = 50}, - [297] = {.lex_state = 50}, - [298] = {.lex_state = 50}, - [299] = {.lex_state = 50}, - [300] = {.lex_state = 50}, - [301] = {.lex_state = 50}, - [302] = {.lex_state = 50}, - [303] = {.lex_state = 50}, - [304] = {.lex_state = 50}, - [305] = {.lex_state = 121}, - [306] = {.lex_state = 121}, - [307] = {.lex_state = 50}, - [308] = {.lex_state = 50}, - [309] = {.lex_state = 121}, - [310] = {.lex_state = 50}, - [311] = {.lex_state = 50}, - [312] = {.lex_state = 121}, - [313] = {.lex_state = 50}, - [314] = {.lex_state = 50}, - [315] = {.lex_state = 50}, - [316] = {.lex_state = 50}, - [317] = {.lex_state = 50}, - [318] = {.lex_state = 50}, - [319] = {.lex_state = 50}, - [320] = {.lex_state = 50}, - [321] = {.lex_state = 50}, - [322] = {.lex_state = 50}, - [323] = {.lex_state = 121}, - [324] = {.lex_state = 50}, - [325] = {.lex_state = 50}, - [326] = {.lex_state = 50}, - [327] = {.lex_state = 50}, - [328] = {.lex_state = 50}, - [329] = {.lex_state = 50}, - [330] = {.lex_state = 121}, - [331] = {.lex_state = 121}, - [332] = {.lex_state = 121}, - [333] = {.lex_state = 121}, - [334] = {.lex_state = 121}, - [335] = {.lex_state = 121}, - [336] = {.lex_state = 121}, - [337] = {.lex_state = 121}, - [338] = {.lex_state = 121}, - [339] = {.lex_state = 50}, - [340] = {.lex_state = 121}, - [341] = {.lex_state = 121}, - [342] = {.lex_state = 50}, - [343] = {.lex_state = 50}, - [344] = {.lex_state = 121}, - [345] = {.lex_state = 121}, - [346] = {.lex_state = 121}, - [347] = {.lex_state = 121}, - [348] = {.lex_state = 121}, - [349] = {.lex_state = 121}, - [350] = {.lex_state = 121}, - [351] = {.lex_state = 121}, - [352] = {.lex_state = 121}, - [353] = {.lex_state = 121}, - [354] = {.lex_state = 121}, - [355] = {.lex_state = 121}, - [356] = {.lex_state = 121}, - [357] = {.lex_state = 121}, - [358] = {.lex_state = 121}, - [359] = {.lex_state = 121}, - [360] = {.lex_state = 121}, - [361] = {.lex_state = 121}, - [362] = {.lex_state = 121}, - [363] = {.lex_state = 121}, - [364] = {.lex_state = 50}, - [365] = {.lex_state = 121}, - [366] = {.lex_state = 121}, - [367] = {.lex_state = 121}, - [368] = {.lex_state = 121}, - [369] = {.lex_state = 121}, - [370] = {.lex_state = 121}, - [371] = {.lex_state = 121}, - [372] = {.lex_state = 47}, - [373] = {.lex_state = 121}, - [374] = {.lex_state = 121}, - [375] = {.lex_state = 121}, - [376] = {.lex_state = 121}, - [377] = {.lex_state = 121}, - [378] = {.lex_state = 121}, - [379] = {.lex_state = 121}, - [380] = {.lex_state = 121}, - [381] = {.lex_state = 121}, - [382] = {.lex_state = 121}, - [383] = {.lex_state = 121}, - [384] = {.lex_state = 121}, - [385] = {.lex_state = 121}, - [386] = {.lex_state = 121}, - [387] = {.lex_state = 121}, - [388] = {.lex_state = 121}, - [389] = {.lex_state = 121}, - [390] = {.lex_state = 121}, - [391] = {.lex_state = 121}, - [392] = {.lex_state = 121}, - [393] = {.lex_state = 121}, - [394] = {.lex_state = 121}, - [395] = {.lex_state = 121}, - [396] = {.lex_state = 121}, - [397] = {.lex_state = 121}, - [398] = {.lex_state = 121}, - [399] = {.lex_state = 121}, - [400] = {.lex_state = 121}, - [401] = {.lex_state = 121}, - [402] = {.lex_state = 121}, - [403] = {.lex_state = 121}, - [404] = {.lex_state = 121}, - [405] = {.lex_state = 47}, - [406] = {.lex_state = 121}, - [407] = {.lex_state = 121}, - [408] = {.lex_state = 121}, - [409] = {.lex_state = 121}, - [410] = {.lex_state = 121}, - [411] = {.lex_state = 121}, - [412] = {.lex_state = 121}, - [413] = {.lex_state = 121}, - [414] = {.lex_state = 121}, - [415] = {.lex_state = 121}, - [416] = {.lex_state = 121}, - [417] = {.lex_state = 121}, - [418] = {.lex_state = 121}, - [419] = {.lex_state = 121}, - [420] = {.lex_state = 121}, - [421] = {.lex_state = 121}, - [422] = {.lex_state = 121}, - [423] = {.lex_state = 121}, - [424] = {.lex_state = 121}, - [425] = {.lex_state = 121}, - [426] = {.lex_state = 121}, - [427] = {.lex_state = 121}, - [428] = {.lex_state = 121}, - [429] = {.lex_state = 121}, - [430] = {.lex_state = 121}, - [431] = {.lex_state = 121}, - [432] = {.lex_state = 121}, - [433] = {.lex_state = 121}, - [434] = {.lex_state = 121}, - [435] = {.lex_state = 121}, - [436] = {.lex_state = 121}, - [437] = {.lex_state = 121}, - [438] = {.lex_state = 121}, - [439] = {.lex_state = 121}, - [440] = {.lex_state = 121}, - [441] = {.lex_state = 121}, - [442] = {.lex_state = 121}, - [443] = {.lex_state = 121}, - [444] = {.lex_state = 121}, - [445] = {.lex_state = 121}, - [446] = {.lex_state = 121}, - [447] = {.lex_state = 52}, - [448] = {.lex_state = 52}, - [449] = {.lex_state = 47}, - [450] = {.lex_state = 47}, - [451] = {.lex_state = 52}, - [452] = {.lex_state = 52}, - [453] = {.lex_state = 52}, - [454] = {.lex_state = 52}, - [455] = {.lex_state = 52}, - [456] = {.lex_state = 52}, - [457] = {.lex_state = 52}, - [458] = {.lex_state = 121}, - [459] = {.lex_state = 52}, - [460] = {.lex_state = 121}, - [461] = {.lex_state = 121}, - [462] = {.lex_state = 121}, - [463] = {.lex_state = 121}, - [464] = {.lex_state = 121}, - [465] = {.lex_state = 121}, - [466] = {.lex_state = 121}, - [467] = {.lex_state = 121}, - [468] = {.lex_state = 121}, - [469] = {.lex_state = 121}, - [470] = {.lex_state = 121}, - [471] = {.lex_state = 121}, - [472] = {.lex_state = 121}, - [473] = {.lex_state = 121}, - [474] = {.lex_state = 55}, - [475] = {.lex_state = 55}, - [476] = {.lex_state = 55}, - [477] = {.lex_state = 55}, - [478] = {.lex_state = 55}, - [479] = {.lex_state = 55}, - [480] = {.lex_state = 55}, - [481] = {.lex_state = 55}, - [482] = {.lex_state = 55}, - [483] = {.lex_state = 55}, - [484] = {.lex_state = 55}, - [485] = {.lex_state = 55}, - [486] = {.lex_state = 55}, - [487] = {.lex_state = 55}, - [488] = {.lex_state = 55}, - [489] = {.lex_state = 121}, - [490] = {.lex_state = 55}, - [491] = {.lex_state = 55}, - [492] = {.lex_state = 55}, - [493] = {.lex_state = 47}, - [494] = {.lex_state = 56}, - [495] = {.lex_state = 56}, - [496] = {.lex_state = 60}, - [497] = {.lex_state = 56}, - [498] = {.lex_state = 60}, - [499] = {.lex_state = 60}, - [500] = {.lex_state = 47}, - [501] = {.lex_state = 55}, - [502] = {.lex_state = 121}, - [503] = {.lex_state = 121}, - [504] = {.lex_state = 121}, - [505] = {.lex_state = 121}, - [506] = {.lex_state = 121}, - [507] = {.lex_state = 121}, - [508] = {.lex_state = 121}, - [509] = {.lex_state = 121}, - [510] = {.lex_state = 121}, - [511] = {.lex_state = 121}, - [512] = {.lex_state = 121}, - [513] = {.lex_state = 121}, - [514] = {.lex_state = 121}, - [515] = {.lex_state = 55}, - [516] = {.lex_state = 55}, - [517] = {.lex_state = 55}, - [518] = {.lex_state = 121}, - [519] = {.lex_state = 55}, - [520] = {.lex_state = 52}, - [521] = {.lex_state = 52}, - [522] = {.lex_state = 52}, - [523] = {.lex_state = 52}, - [524] = {.lex_state = 55}, - [525] = {.lex_state = 52}, - [526] = {.lex_state = 121}, - [527] = {.lex_state = 121}, - [528] = {.lex_state = 52}, - [529] = {.lex_state = 55}, - [530] = {.lex_state = 55}, - [531] = {.lex_state = 55}, - [532] = {.lex_state = 55}, - [533] = {.lex_state = 53}, - [534] = {.lex_state = 53}, - [535] = {.lex_state = 121}, - [536] = {.lex_state = 53}, - [537] = {.lex_state = 53}, - [538] = {.lex_state = 53}, - [539] = {.lex_state = 53}, - [540] = {.lex_state = 53}, - [541] = {.lex_state = 53}, - [542] = {.lex_state = 53}, - [543] = {.lex_state = 53}, - [544] = {.lex_state = 121}, - [545] = {.lex_state = 55}, - [546] = {.lex_state = 52}, - [547] = {.lex_state = 55}, - [548] = {.lex_state = 55}, - [549] = {.lex_state = 121}, - [550] = {.lex_state = 55}, - [551] = {.lex_state = 55}, - [552] = {.lex_state = 55}, - [553] = {.lex_state = 55}, - [554] = {.lex_state = 55}, - [555] = {.lex_state = 121}, - [556] = {.lex_state = 55}, - [557] = {.lex_state = 55}, - [558] = {.lex_state = 55}, - [559] = {.lex_state = 55}, - [560] = {.lex_state = 121}, - [561] = {.lex_state = 55}, - [562] = {.lex_state = 55}, - [563] = {.lex_state = 121}, - [564] = {.lex_state = 121}, - [565] = {.lex_state = 121}, - [566] = {.lex_state = 121}, - [567] = {.lex_state = 55}, - [568] = {.lex_state = 121}, - [569] = {.lex_state = 55}, - [570] = {.lex_state = 121}, - [571] = {.lex_state = 55}, - [572] = {.lex_state = 121}, - [573] = {.lex_state = 121}, - [574] = {.lex_state = 55}, - [575] = {.lex_state = 121}, - [576] = {.lex_state = 55}, - [577] = {.lex_state = 121}, - [578] = {.lex_state = 55}, - [579] = {.lex_state = 55}, - [580] = {.lex_state = 55}, - [581] = {.lex_state = 55}, - [582] = {.lex_state = 121}, - [583] = {.lex_state = 55}, - [584] = {.lex_state = 55}, - [585] = {.lex_state = 55}, - [586] = {.lex_state = 55}, - [587] = {.lex_state = 55}, - [588] = {.lex_state = 121}, - [589] = {.lex_state = 55}, - [590] = {.lex_state = 55}, - [591] = {.lex_state = 121}, - [592] = {.lex_state = 121}, - [593] = {.lex_state = 121}, - [594] = {.lex_state = 55}, - [595] = {.lex_state = 121}, - [596] = {.lex_state = 121}, - [597] = {.lex_state = 55}, - [598] = {.lex_state = 55}, - [599] = {.lex_state = 55}, - [600] = {.lex_state = 121}, - [601] = {.lex_state = 121}, - [602] = {.lex_state = 55}, - [603] = {.lex_state = 55}, - [604] = {.lex_state = 121}, - [605] = {.lex_state = 55}, - [606] = {.lex_state = 55}, - [607] = {.lex_state = 121}, - [608] = {.lex_state = 121}, - [609] = {.lex_state = 121}, - [610] = {.lex_state = 121}, - [611] = {.lex_state = 55}, - [612] = {.lex_state = 121}, - [613] = {.lex_state = 55}, - [614] = {.lex_state = 121}, - [615] = {.lex_state = 55}, - [616] = {.lex_state = 121}, - [617] = {.lex_state = 121}, - [618] = {.lex_state = 121}, - [619] = {.lex_state = 121}, - [620] = {.lex_state = 55}, - [621] = {.lex_state = 121}, - [622] = {.lex_state = 55}, - [623] = {.lex_state = 121}, - [624] = {.lex_state = 121}, - [625] = {.lex_state = 121}, - [626] = {.lex_state = 121}, - [627] = {.lex_state = 55}, - [628] = {.lex_state = 121}, - [629] = {.lex_state = 55}, - [630] = {.lex_state = 121}, - [631] = {.lex_state = 121}, - [632] = {.lex_state = 121}, - [633] = {.lex_state = 121}, - [634] = {.lex_state = 121}, - [635] = {.lex_state = 121}, - [636] = {.lex_state = 121}, - [637] = {.lex_state = 121}, - [638] = {.lex_state = 60}, - [639] = {.lex_state = 121}, - [640] = {.lex_state = 121}, - [641] = {.lex_state = 121}, - [642] = {.lex_state = 121}, - [643] = {.lex_state = 121}, - [644] = {.lex_state = 121}, - [645] = {.lex_state = 121}, - [646] = {.lex_state = 121}, - [647] = {.lex_state = 121}, - [648] = {.lex_state = 121}, - [649] = {.lex_state = 121}, - [650] = {.lex_state = 121}, - [651] = {.lex_state = 121}, - [652] = {.lex_state = 121}, - [653] = {.lex_state = 121}, - [654] = {.lex_state = 121}, - [655] = {.lex_state = 121}, - [656] = {.lex_state = 121}, - [657] = {.lex_state = 121}, - [658] = {.lex_state = 121}, - [659] = {.lex_state = 121}, - [660] = {.lex_state = 121}, - [661] = {.lex_state = 121}, - [662] = {.lex_state = 53}, - [663] = {.lex_state = 121}, - [664] = {.lex_state = 121}, - [665] = {.lex_state = 121}, - [666] = {.lex_state = 121}, - [667] = {.lex_state = 121}, - [668] = {.lex_state = 121}, - [669] = {.lex_state = 121}, - [670] = {.lex_state = 121}, - [671] = {.lex_state = 52}, - [672] = {.lex_state = 121}, - [673] = {.lex_state = 121}, - [674] = {.lex_state = 121}, - [675] = {.lex_state = 121}, - [676] = {.lex_state = 121}, - [677] = {.lex_state = 121}, - [678] = {.lex_state = 121}, - [679] = {.lex_state = 121}, - [680] = {.lex_state = 121}, - [681] = {.lex_state = 121}, - [682] = {.lex_state = 121}, - [683] = {.lex_state = 121}, - [684] = {.lex_state = 121}, - [685] = {.lex_state = 121}, - [686] = {.lex_state = 121}, - [687] = {.lex_state = 121}, - [688] = {.lex_state = 121}, - [689] = {.lex_state = 121}, - [690] = {.lex_state = 121}, - [691] = {.lex_state = 121}, - [692] = {.lex_state = 121}, - [693] = {.lex_state = 60}, - [694] = {.lex_state = 121}, - [695] = {.lex_state = 121}, - [696] = {.lex_state = 121}, - [697] = {.lex_state = 121}, - [698] = {.lex_state = 121}, - [699] = {.lex_state = 121}, - [700] = {.lex_state = 121}, - [701] = {.lex_state = 121}, - [702] = {.lex_state = 121}, - [703] = {.lex_state = 121}, - [704] = {.lex_state = 121}, - [705] = {.lex_state = 121}, - [706] = {.lex_state = 121}, - [707] = {.lex_state = 121}, - [708] = {.lex_state = 121}, - [709] = {.lex_state = 121}, - [710] = {.lex_state = 121}, - [711] = {.lex_state = 60}, - [712] = {.lex_state = 121}, - [713] = {.lex_state = 121}, - [714] = {.lex_state = 121}, - [715] = {.lex_state = 121}, - [716] = {.lex_state = 121}, - [717] = {.lex_state = 121}, - [718] = {.lex_state = 121}, - [719] = {.lex_state = 121}, - [720] = {.lex_state = 121}, - [721] = {.lex_state = 121}, - [722] = {.lex_state = 121}, - [723] = {.lex_state = 121}, - [724] = {.lex_state = 121}, - [725] = {.lex_state = 121}, - [726] = {.lex_state = 121}, - [727] = {.lex_state = 121}, - [728] = {.lex_state = 121}, - [729] = {.lex_state = 121}, - [730] = {.lex_state = 121}, - [731] = {.lex_state = 121}, - [732] = {.lex_state = 121}, - [733] = {.lex_state = 121}, - [734] = {.lex_state = 121}, - [735] = {.lex_state = 121}, - [736] = {.lex_state = 121}, - [737] = {.lex_state = 121}, - [738] = {.lex_state = 121}, - [739] = {.lex_state = 121}, - [740] = {.lex_state = 121}, - [741] = {.lex_state = 121}, - [742] = {.lex_state = 121}, - [743] = {.lex_state = 121}, - [744] = {.lex_state = 121}, - [745] = {.lex_state = 121}, - [746] = {.lex_state = 121}, - [747] = {.lex_state = 121}, - [748] = {.lex_state = 121}, - [749] = {.lex_state = 121}, - [750] = {.lex_state = 121}, - [751] = {.lex_state = 55}, - [752] = {.lex_state = 53}, - [753] = {.lex_state = 53}, - [754] = {.lex_state = 53}, - [755] = {.lex_state = 53}, - [756] = {.lex_state = 53}, - [757] = {.lex_state = 53}, - [758] = {.lex_state = 53}, - [759] = {.lex_state = 53}, - [760] = {.lex_state = 53}, - [761] = {.lex_state = 53}, - [762] = {.lex_state = 53}, - [763] = {.lex_state = 55}, - [764] = {.lex_state = 53}, - [765] = {.lex_state = 53}, - [766] = {.lex_state = 55}, - [767] = {.lex_state = 53}, - [768] = {.lex_state = 53}, - [769] = {.lex_state = 53}, - [770] = {.lex_state = 53}, - [771] = {.lex_state = 53}, - [772] = {.lex_state = 55}, - [773] = {.lex_state = 55}, - [774] = {.lex_state = 56}, - [775] = {.lex_state = 55}, - [776] = {.lex_state = 55}, - [777] = {.lex_state = 55}, - [778] = {.lex_state = 55}, - [779] = {.lex_state = 54}, - [780] = {.lex_state = 55}, - [781] = {.lex_state = 53}, - [782] = {.lex_state = 53}, - [783] = {.lex_state = 53}, - [784] = {.lex_state = 55}, - [785] = {.lex_state = 55}, - [786] = {.lex_state = 55}, - [787] = {.lex_state = 55}, - [788] = {.lex_state = 55}, - [789] = {.lex_state = 53}, - [790] = {.lex_state = 55}, - [791] = {.lex_state = 55}, - [792] = {.lex_state = 54}, - [793] = {.lex_state = 55}, - [794] = {.lex_state = 55}, - [795] = {.lex_state = 54}, - [796] = {.lex_state = 55}, - [797] = {.lex_state = 54}, - [798] = {.lex_state = 55}, - [799] = {.lex_state = 55}, - [800] = {.lex_state = 60}, - [801] = {.lex_state = 53}, - [802] = {.lex_state = 55}, - [803] = {.lex_state = 55}, - [804] = {.lex_state = 55}, - [805] = {.lex_state = 55}, - [806] = {.lex_state = 55}, - [807] = {.lex_state = 55}, - [808] = {.lex_state = 55}, - [809] = {.lex_state = 55}, - [810] = {.lex_state = 55}, - [811] = {.lex_state = 52}, - [812] = {.lex_state = 55}, - [813] = {.lex_state = 55}, - [814] = {.lex_state = 55}, - [815] = {.lex_state = 55}, - [816] = {.lex_state = 55}, - [817] = {.lex_state = 55}, - [818] = {.lex_state = 55}, - [819] = {.lex_state = 55}, - [820] = {.lex_state = 55}, - [821] = {.lex_state = 55}, - [822] = {.lex_state = 55}, - [823] = {.lex_state = 55}, - [824] = {.lex_state = 55}, - [825] = {.lex_state = 55}, - [826] = {.lex_state = 55}, - [827] = {.lex_state = 55}, - [828] = {.lex_state = 55}, - [829] = {.lex_state = 55}, - [830] = {.lex_state = 55}, - [831] = {.lex_state = 55}, - [832] = {.lex_state = 55}, - [833] = {.lex_state = 55}, - [834] = {.lex_state = 55}, - [835] = {.lex_state = 55}, - [836] = {.lex_state = 55}, - [837] = {.lex_state = 55}, - [838] = {.lex_state = 55}, - [839] = {.lex_state = 55}, - [840] = {.lex_state = 55}, - [841] = {.lex_state = 55}, - [842] = {.lex_state = 55}, - [843] = {.lex_state = 55}, - [844] = {.lex_state = 55}, - [845] = {.lex_state = 55}, - [846] = {.lex_state = 55}, - [847] = {.lex_state = 55}, - [848] = {.lex_state = 55}, - [849] = {.lex_state = 55}, - [850] = {.lex_state = 55}, - [851] = {.lex_state = 55}, - [852] = {.lex_state = 55}, - [853] = {.lex_state = 55}, - [854] = {.lex_state = 55}, - [855] = {.lex_state = 55}, - [856] = {.lex_state = 55}, - [857] = {.lex_state = 55}, - [858] = {.lex_state = 55}, - [859] = {.lex_state = 55}, - [860] = {.lex_state = 55}, - [861] = {.lex_state = 55}, - [862] = {.lex_state = 55}, - [863] = {.lex_state = 55}, - [864] = {.lex_state = 55}, - [865] = {.lex_state = 55}, - [866] = {.lex_state = 55}, - [867] = {.lex_state = 55}, - [868] = {.lex_state = 55}, - [869] = {.lex_state = 55}, - [870] = {.lex_state = 55}, - [871] = {.lex_state = 55}, - [872] = {.lex_state = 55}, - [873] = {.lex_state = 55}, - [874] = {.lex_state = 55}, - [875] = {.lex_state = 55}, - [876] = {.lex_state = 55}, - [877] = {.lex_state = 55}, - [878] = {.lex_state = 55}, - [879] = {.lex_state = 55}, - [880] = {.lex_state = 55}, - [881] = {.lex_state = 55}, - [882] = {.lex_state = 55}, - [883] = {.lex_state = 55}, - [884] = {.lex_state = 55}, - [885] = {.lex_state = 55}, - [886] = {.lex_state = 55}, - [887] = {.lex_state = 55}, - [888] = {.lex_state = 55}, - [889] = {.lex_state = 55}, - [890] = {.lex_state = 55}, - [891] = {.lex_state = 55}, - [892] = {.lex_state = 55}, - [893] = {.lex_state = 55}, - [894] = {.lex_state = 55}, - [895] = {.lex_state = 55}, - [896] = {.lex_state = 55}, - [897] = {.lex_state = 56}, - [898] = {.lex_state = 56}, - [899] = {.lex_state = 55}, - [900] = {.lex_state = 56}, - [901] = {.lex_state = 55}, - [902] = {.lex_state = 55}, - [903] = {.lex_state = 121}, - [904] = {.lex_state = 121}, - [905] = {.lex_state = 55}, - [906] = {.lex_state = 121}, - [907] = {.lex_state = 121}, - [908] = {.lex_state = 55}, - [909] = {.lex_state = 55}, - [910] = {.lex_state = 55}, - [911] = {.lex_state = 55}, - [912] = {.lex_state = 55}, - [913] = {.lex_state = 55}, - [914] = {.lex_state = 55}, - [915] = {.lex_state = 55}, - [916] = {.lex_state = 55}, - [917] = {.lex_state = 55}, - [918] = {.lex_state = 55}, - [919] = {.lex_state = 55}, - [920] = {.lex_state = 55}, - [921] = {.lex_state = 60}, - [922] = {.lex_state = 56}, - [923] = {.lex_state = 56}, - [924] = {.lex_state = 60}, - [925] = {.lex_state = 60}, - [926] = {.lex_state = 60}, - [927] = {.lex_state = 60}, - [928] = {.lex_state = 56}, - [929] = {.lex_state = 52}, - [930] = {.lex_state = 56}, - [931] = {.lex_state = 56}, - [932] = {.lex_state = 56}, - [933] = {.lex_state = 60}, - [934] = {.lex_state = 60}, - [935] = {.lex_state = 56}, - [936] = {.lex_state = 56}, - [937] = {.lex_state = 60}, - [938] = {.lex_state = 60}, - [939] = {.lex_state = 60}, - [940] = {.lex_state = 52}, - [941] = {.lex_state = 60}, - [942] = {.lex_state = 56}, - [943] = {.lex_state = 60}, - [944] = {.lex_state = 55}, - [945] = {.lex_state = 56}, - [946] = {.lex_state = 60}, - [947] = {.lex_state = 56}, - [948] = {.lex_state = 60}, - [949] = {.lex_state = 56}, - [950] = {.lex_state = 56}, - [951] = {.lex_state = 56}, - [952] = {.lex_state = 60}, - [953] = {.lex_state = 56}, - [954] = {.lex_state = 60}, - [955] = {.lex_state = 60}, - [956] = {.lex_state = 60}, - [957] = {.lex_state = 56}, - [958] = {.lex_state = 56}, - [959] = {.lex_state = 56}, - [960] = {.lex_state = 55}, - [961] = {.lex_state = 55}, - [962] = {.lex_state = 121}, - [963] = {.lex_state = 55}, - [964] = {.lex_state = 55}, - [965] = {.lex_state = 121}, - [966] = {.lex_state = 55}, - [967] = {.lex_state = 55}, - [968] = {.lex_state = 55}, - [969] = {.lex_state = 52}, - [970] = {.lex_state = 52}, - [971] = {.lex_state = 52}, - [972] = {.lex_state = 52}, - [973] = {.lex_state = 55}, - [974] = {.lex_state = 55}, - [975] = {.lex_state = 52}, - [976] = {.lex_state = 52}, - [977] = {.lex_state = 52}, - [978] = {.lex_state = 52}, - [979] = {.lex_state = 52}, - [980] = {.lex_state = 55}, - [981] = {.lex_state = 52}, - [982] = {.lex_state = 53}, - [983] = {.lex_state = 53}, - [984] = {.lex_state = 53}, - [985] = {.lex_state = 53}, - [986] = {.lex_state = 53}, - [987] = {.lex_state = 55}, - [988] = {.lex_state = 53}, - [989] = {.lex_state = 53}, - [990] = {.lex_state = 53}, - [991] = {.lex_state = 53}, - [992] = {.lex_state = 52}, - [993] = {.lex_state = 53}, - [994] = {.lex_state = 55}, - [995] = {.lex_state = 53}, - [996] = {.lex_state = 53}, - [997] = {.lex_state = 53}, - [998] = {.lex_state = 55}, - [999] = {.lex_state = 55}, - [1000] = {.lex_state = 55}, - [1001] = {.lex_state = 55}, - [1002] = {.lex_state = 55}, - [1003] = {.lex_state = 55}, - [1004] = {.lex_state = 55}, - [1005] = {.lex_state = 55}, - [1006] = {.lex_state = 55}, - [1007] = {.lex_state = 55}, - [1008] = {.lex_state = 55}, - [1009] = {.lex_state = 55}, - [1010] = {.lex_state = 55}, - [1011] = {.lex_state = 55}, - [1012] = {.lex_state = 55}, - [1013] = {.lex_state = 55}, - [1014] = {.lex_state = 55}, - [1015] = {.lex_state = 55}, - [1016] = {.lex_state = 55}, - [1017] = {.lex_state = 55}, - [1018] = {.lex_state = 55}, - [1019] = {.lex_state = 55}, - [1020] = {.lex_state = 55}, - [1021] = {.lex_state = 55}, - [1022] = {.lex_state = 55}, - [1023] = {.lex_state = 55}, - [1024] = {.lex_state = 55}, - [1025] = {.lex_state = 55}, - [1026] = {.lex_state = 55}, - [1027] = {.lex_state = 55}, - [1028] = {.lex_state = 52}, - [1029] = {.lex_state = 55}, - [1030] = {.lex_state = 52}, - [1031] = {.lex_state = 55}, - [1032] = {.lex_state = 55}, - [1033] = {.lex_state = 55}, - [1034] = {.lex_state = 52}, - [1035] = {.lex_state = 52}, - [1036] = {.lex_state = 52}, - [1037] = {.lex_state = 52}, - [1038] = {.lex_state = 52}, - [1039] = {.lex_state = 55}, - [1040] = {.lex_state = 52}, - [1041] = {.lex_state = 55}, - [1042] = {.lex_state = 55}, - [1043] = {.lex_state = 52}, - [1044] = {.lex_state = 52}, - [1045] = {.lex_state = 55}, - [1046] = {.lex_state = 52}, - [1047] = {.lex_state = 52}, - [1048] = {.lex_state = 52}, - [1049] = {.lex_state = 52}, - [1050] = {.lex_state = 52}, - [1051] = {.lex_state = 55}, - [1052] = {.lex_state = 55}, - [1053] = {.lex_state = 55}, - [1054] = {.lex_state = 52}, - [1055] = {.lex_state = 55}, - [1056] = {.lex_state = 52}, - [1057] = {.lex_state = 52}, - [1058] = {.lex_state = 55}, - [1059] = {.lex_state = 52}, - [1060] = {.lex_state = 55}, - [1061] = {.lex_state = 55}, - [1062] = {.lex_state = 55}, - [1063] = {.lex_state = 52}, - [1064] = {.lex_state = 52}, - [1065] = {.lex_state = 52}, - [1066] = {.lex_state = 52}, - [1067] = {.lex_state = 56}, - [1068] = {.lex_state = 56}, - [1069] = {.lex_state = 52}, - [1070] = {.lex_state = 56}, - [1071] = {.lex_state = 56}, - [1072] = {.lex_state = 121}, - [1073] = {.lex_state = 121}, - [1074] = {.lex_state = 121}, - [1075] = {.lex_state = 121}, - [1076] = {.lex_state = 121}, - [1077] = {.lex_state = 121}, - [1078] = {.lex_state = 121}, - [1079] = {.lex_state = 121}, - [1080] = {.lex_state = 121}, - [1081] = {.lex_state = 121}, - [1082] = {.lex_state = 121}, - [1083] = {.lex_state = 121}, - [1084] = {.lex_state = 121}, - [1085] = {.lex_state = 121}, - [1086] = {.lex_state = 55}, - [1087] = {.lex_state = 121}, - [1088] = {.lex_state = 121}, - [1089] = {.lex_state = 121}, - [1090] = {.lex_state = 121}, - [1091] = {.lex_state = 55}, - [1092] = {.lex_state = 55}, - [1093] = {.lex_state = 55}, - [1094] = {.lex_state = 55}, - [1095] = {.lex_state = 55}, - [1096] = {.lex_state = 55}, - [1097] = {.lex_state = 55}, - [1098] = {.lex_state = 53}, - [1099] = {.lex_state = 53}, - [1100] = {.lex_state = 55}, - [1101] = {.lex_state = 55}, - [1102] = {.lex_state = 55}, - [1103] = {.lex_state = 53}, - [1104] = {.lex_state = 53}, - [1105] = {.lex_state = 53}, - [1106] = {.lex_state = 55}, - [1107] = {.lex_state = 53}, - [1108] = {.lex_state = 53}, - [1109] = {.lex_state = 55}, - [1110] = {.lex_state = 55}, - [1111] = {.lex_state = 53}, - [1112] = {.lex_state = 53}, - [1113] = {.lex_state = 53}, - [1114] = {.lex_state = 53}, - [1115] = {.lex_state = 53}, - [1116] = {.lex_state = 55}, - [1117] = {.lex_state = 53}, - [1118] = {.lex_state = 55}, - [1119] = {.lex_state = 55}, - [1120] = {.lex_state = 55}, - [1121] = {.lex_state = 55}, - [1122] = {.lex_state = 55}, - [1123] = {.lex_state = 55}, - [1124] = {.lex_state = 55}, - [1125] = {.lex_state = 55}, - [1126] = {.lex_state = 55}, - [1127] = {.lex_state = 55}, - [1128] = {.lex_state = 55}, - [1129] = {.lex_state = 55}, - [1130] = {.lex_state = 55}, - [1131] = {.lex_state = 55}, - [1132] = {.lex_state = 55}, - [1133] = {.lex_state = 55}, - [1134] = {.lex_state = 55}, - [1135] = {.lex_state = 55}, - [1136] = {.lex_state = 55}, - [1137] = {.lex_state = 55}, - [1138] = {.lex_state = 52}, - [1139] = {.lex_state = 55}, - [1140] = {.lex_state = 55}, - [1141] = {.lex_state = 55}, - [1142] = {.lex_state = 55}, - [1143] = {.lex_state = 52}, - [1144] = {.lex_state = 52}, - [1145] = {.lex_state = 55}, - [1146] = {.lex_state = 52}, - [1147] = {.lex_state = 52}, - [1148] = {.lex_state = 52}, - [1149] = {.lex_state = 55}, - [1150] = {.lex_state = 52}, - [1151] = {.lex_state = 52}, - [1152] = {.lex_state = 52}, - [1153] = {.lex_state = 52}, - [1154] = {.lex_state = 52}, - [1155] = {.lex_state = 52}, - [1156] = {.lex_state = 52}, - [1157] = {.lex_state = 52}, - [1158] = {.lex_state = 52}, - [1159] = {.lex_state = 52}, - [1160] = {.lex_state = 52}, - [1161] = {.lex_state = 52}, - [1162] = {.lex_state = 52}, - [1163] = {.lex_state = 52}, - [1164] = {.lex_state = 52}, - [1165] = {.lex_state = 52}, - [1166] = {.lex_state = 52}, - [1167] = {.lex_state = 52}, - [1168] = {.lex_state = 52}, - [1169] = {.lex_state = 52}, - [1170] = {.lex_state = 52}, - [1171] = {.lex_state = 52}, - [1172] = {.lex_state = 52}, - [1173] = {.lex_state = 52}, - [1174] = {.lex_state = 52}, - [1175] = {.lex_state = 52}, - [1176] = {.lex_state = 52}, - [1177] = {.lex_state = 52}, - [1178] = {.lex_state = 52}, - [1179] = {.lex_state = 52}, - [1180] = {.lex_state = 52}, - [1181] = {.lex_state = 52}, - [1182] = {.lex_state = 52}, - [1183] = {.lex_state = 52}, - [1184] = {.lex_state = 52}, - [1185] = {.lex_state = 52}, - [1186] = {.lex_state = 52}, - [1187] = {.lex_state = 52}, - [1188] = {.lex_state = 52}, - [1189] = {.lex_state = 52}, - [1190] = {.lex_state = 52}, - [1191] = {.lex_state = 52}, - [1192] = {.lex_state = 52}, - [1193] = {.lex_state = 52}, - [1194] = {.lex_state = 52}, - [1195] = {.lex_state = 52}, - [1196] = {.lex_state = 52}, - [1197] = {.lex_state = 52}, - [1198] = {.lex_state = 52}, - [1199] = {.lex_state = 52}, - [1200] = {.lex_state = 52}, - [1201] = {.lex_state = 52}, - [1202] = {.lex_state = 52}, - [1203] = {.lex_state = 52}, - [1204] = {.lex_state = 52}, - [1205] = {.lex_state = 52}, - [1206] = {.lex_state = 52}, - [1207] = {.lex_state = 52}, - [1208] = {.lex_state = 52}, - [1209] = {.lex_state = 52}, - [1210] = {.lex_state = 52}, - [1211] = {.lex_state = 52}, - [1212] = {.lex_state = 52}, - [1213] = {.lex_state = 52}, - [1214] = {.lex_state = 52}, - [1215] = {.lex_state = 52}, - [1216] = {.lex_state = 52}, - [1217] = {.lex_state = 52}, - [1218] = {.lex_state = 52}, - [1219] = {.lex_state = 52}, - [1220] = {.lex_state = 55}, - [1221] = {.lex_state = 55}, - [1222] = {.lex_state = 55}, - [1223] = {.lex_state = 52}, - [1224] = {.lex_state = 55}, - [1225] = {.lex_state = 52}, - [1226] = {.lex_state = 55}, - [1227] = {.lex_state = 55}, - [1228] = {.lex_state = 55}, - [1229] = {.lex_state = 55}, - [1230] = {.lex_state = 55}, - [1231] = {.lex_state = 55}, - [1232] = {.lex_state = 55}, - [1233] = {.lex_state = 55}, - [1234] = {.lex_state = 55}, - [1235] = {.lex_state = 55}, - [1236] = {.lex_state = 55}, - [1237] = {.lex_state = 55}, - [1238] = {.lex_state = 55}, - [1239] = {.lex_state = 55}, - [1240] = {.lex_state = 55}, - [1241] = {.lex_state = 55}, - [1242] = {.lex_state = 55}, - [1243] = {.lex_state = 55}, - [1244] = {.lex_state = 55}, - [1245] = {.lex_state = 55}, - [1246] = {.lex_state = 55}, - [1247] = {.lex_state = 55}, - [1248] = {.lex_state = 55}, - [1249] = {.lex_state = 55}, - [1250] = {.lex_state = 55}, - [1251] = {.lex_state = 55}, - [1252] = {.lex_state = 55}, - [1253] = {.lex_state = 55}, - [1254] = {.lex_state = 55}, - [1255] = {.lex_state = 55}, - [1256] = {.lex_state = 55}, - [1257] = {.lex_state = 55}, - [1258] = {.lex_state = 55}, - [1259] = {.lex_state = 55}, - [1260] = {.lex_state = 55}, - [1261] = {.lex_state = 55}, - [1262] = {.lex_state = 55}, - [1263] = {.lex_state = 55}, - [1264] = {.lex_state = 55}, - [1265] = {.lex_state = 55}, - [1266] = {.lex_state = 55}, - [1267] = {.lex_state = 55}, - [1268] = {.lex_state = 55}, - [1269] = {.lex_state = 55}, - [1270] = {.lex_state = 56}, - [1271] = {.lex_state = 55}, - [1272] = {.lex_state = 55}, - [1273] = {.lex_state = 55}, - [1274] = {.lex_state = 55}, - [1275] = {.lex_state = 51}, - [1276] = {.lex_state = 56}, - [1277] = {.lex_state = 56}, - [1278] = {.lex_state = 51}, - [1279] = {.lex_state = 55}, - [1280] = {.lex_state = 55}, - [1281] = {.lex_state = 56}, - [1282] = {.lex_state = 55}, - [1283] = {.lex_state = 55}, - [1284] = {.lex_state = 55}, - [1285] = {.lex_state = 55}, - [1286] = {.lex_state = 55}, - [1287] = {.lex_state = 55}, - [1288] = {.lex_state = 55}, - [1289] = {.lex_state = 55}, - [1290] = {.lex_state = 25}, - [1291] = {.lex_state = 51}, - [1292] = {.lex_state = 55}, - [1293] = {.lex_state = 55}, - [1294] = {.lex_state = 55}, - [1295] = {.lex_state = 55}, - [1296] = {.lex_state = 55}, - [1297] = {.lex_state = 51}, - [1298] = {.lex_state = 51}, - [1299] = {.lex_state = 51}, - [1300] = {.lex_state = 51}, - [1301] = {.lex_state = 51}, - [1302] = {.lex_state = 51}, - [1303] = {.lex_state = 51}, - [1304] = {.lex_state = 51}, - [1305] = {.lex_state = 51}, - [1306] = {.lex_state = 51}, - [1307] = {.lex_state = 56}, - [1308] = {.lex_state = 56}, - [1309] = {.lex_state = 51}, - [1310] = {.lex_state = 51}, - [1311] = {.lex_state = 51}, - [1312] = {.lex_state = 51}, - [1313] = {.lex_state = 56}, - [1314] = {.lex_state = 51}, - [1315] = {.lex_state = 51}, - [1316] = {.lex_state = 51}, - [1317] = {.lex_state = 51}, - [1318] = {.lex_state = 51}, - [1319] = {.lex_state = 56}, - [1320] = {.lex_state = 51}, - [1321] = {.lex_state = 51}, - [1322] = {.lex_state = 51}, - [1323] = {.lex_state = 51}, - [1324] = {.lex_state = 51}, - [1325] = {.lex_state = 51}, - [1326] = {.lex_state = 51}, - [1327] = {.lex_state = 51}, - [1328] = {.lex_state = 56}, - [1329] = {.lex_state = 56}, - [1330] = {.lex_state = 51}, - [1331] = {.lex_state = 56}, - [1332] = {.lex_state = 51}, - [1333] = {.lex_state = 51}, - [1334] = {.lex_state = 55}, - [1335] = {.lex_state = 51}, - [1336] = {.lex_state = 56}, - [1337] = {.lex_state = 51}, - [1338] = {.lex_state = 56}, - [1339] = {.lex_state = 51}, - [1340] = {.lex_state = 51}, - [1341] = {.lex_state = 56}, - [1342] = {.lex_state = 51}, - [1343] = {.lex_state = 55}, - [1344] = {.lex_state = 51}, - [1345] = {.lex_state = 56}, - [1346] = {.lex_state = 51}, - [1347] = {.lex_state = 51}, - [1348] = {.lex_state = 51}, - [1349] = {.lex_state = 56}, - [1350] = {.lex_state = 56}, - [1351] = {.lex_state = 56}, - [1352] = {.lex_state = 56}, - [1353] = {.lex_state = 56}, - [1354] = {.lex_state = 25}, - [1355] = {.lex_state = 25}, - [1356] = {.lex_state = 25}, - [1357] = {.lex_state = 25}, - [1358] = {.lex_state = 25}, - [1359] = {.lex_state = 25}, - [1360] = {.lex_state = 25}, - [1361] = {.lex_state = 25}, - [1362] = {.lex_state = 25}, - [1363] = {.lex_state = 25}, - [1364] = {.lex_state = 56}, - [1365] = {.lex_state = 25}, - [1366] = {.lex_state = 25}, - [1367] = {.lex_state = 25}, - [1368] = {.lex_state = 25}, - [1369] = {.lex_state = 25}, - [1370] = {.lex_state = 25}, - [1371] = {.lex_state = 25}, - [1372] = {.lex_state = 25}, - [1373] = {.lex_state = 25}, - [1374] = {.lex_state = 25}, - [1375] = {.lex_state = 25}, - [1376] = {.lex_state = 25}, - [1377] = {.lex_state = 25}, - [1378] = {.lex_state = 25}, - [1379] = {.lex_state = 25}, - [1380] = {.lex_state = 25}, - [1381] = {.lex_state = 25}, - [1382] = {.lex_state = 55}, - [1383] = {.lex_state = 25}, - [1384] = {.lex_state = 25}, - [1385] = {.lex_state = 25}, - [1386] = {.lex_state = 55}, - [1387] = {.lex_state = 25}, - [1388] = {.lex_state = 25}, - [1389] = {.lex_state = 56}, - [1390] = {.lex_state = 25}, - [1391] = {.lex_state = 55}, - [1392] = {.lex_state = 55}, - [1393] = {.lex_state = 55}, - [1394] = {.lex_state = 55}, - [1395] = {.lex_state = 55}, - [1396] = {.lex_state = 55}, - [1397] = {.lex_state = 55}, - [1398] = {.lex_state = 55}, - [1399] = {.lex_state = 55}, - [1400] = {.lex_state = 55}, - [1401] = {.lex_state = 55}, - [1402] = {.lex_state = 55}, - [1403] = {.lex_state = 55}, - [1404] = {.lex_state = 55}, - [1405] = {.lex_state = 55}, - [1406] = {.lex_state = 55}, - [1407] = {.lex_state = 55}, - [1408] = {.lex_state = 55}, - [1409] = {.lex_state = 55}, - [1410] = {.lex_state = 55}, - [1411] = {.lex_state = 55}, - [1412] = {.lex_state = 55}, - [1413] = {.lex_state = 55}, - [1414] = {.lex_state = 55}, - [1415] = {.lex_state = 55}, - [1416] = {.lex_state = 55}, - [1417] = {.lex_state = 55}, - [1418] = {.lex_state = 55}, - [1419] = {.lex_state = 55}, - [1420] = {.lex_state = 55}, - [1421] = {.lex_state = 55}, - [1422] = {.lex_state = 55}, - [1423] = {.lex_state = 55}, - [1424] = {.lex_state = 55}, - [1425] = {.lex_state = 55}, - [1426] = {.lex_state = 55}, - [1427] = {.lex_state = 55}, - [1428] = {.lex_state = 55}, - [1429] = {.lex_state = 55}, - [1430] = {.lex_state = 55}, - [1431] = {.lex_state = 55}, - [1432] = {.lex_state = 55}, - [1433] = {.lex_state = 53}, - [1434] = {.lex_state = 53}, - [1435] = {.lex_state = 53}, - [1436] = {.lex_state = 55}, - [1437] = {.lex_state = 55}, - [1438] = {.lex_state = 55}, - [1439] = {.lex_state = 55}, - [1440] = {.lex_state = 55}, - [1441] = {.lex_state = 55}, - [1442] = {.lex_state = 53}, - [1443] = {.lex_state = 55}, - [1444] = {.lex_state = 55}, - [1445] = {.lex_state = 55}, - [1446] = {.lex_state = 55}, - [1447] = {.lex_state = 55}, - [1448] = {.lex_state = 55}, - [1449] = {.lex_state = 55}, - [1450] = {.lex_state = 55}, - [1451] = {.lex_state = 55}, - [1452] = {.lex_state = 55}, - [1453] = {.lex_state = 55}, - [1454] = {.lex_state = 55}, - [1455] = {.lex_state = 55}, - [1456] = {.lex_state = 55}, - [1457] = {.lex_state = 55}, - [1458] = {.lex_state = 55}, - [1459] = {.lex_state = 55}, - [1460] = {.lex_state = 55}, - [1461] = {.lex_state = 55}, - [1462] = {.lex_state = 55}, - [1463] = {.lex_state = 55}, - [1464] = {.lex_state = 55}, - [1465] = {.lex_state = 55}, - [1466] = {.lex_state = 55}, - [1467] = {.lex_state = 55}, - [1468] = {.lex_state = 55}, - [1469] = {.lex_state = 55}, - [1470] = {.lex_state = 55}, - [1471] = {.lex_state = 59}, - [1472] = {.lex_state = 55}, - [1473] = {.lex_state = 55}, - [1474] = {.lex_state = 55}, - [1475] = {.lex_state = 55}, - [1476] = {.lex_state = 55}, - [1477] = {.lex_state = 55}, - [1478] = {.lex_state = 55}, - [1479] = {.lex_state = 55}, - [1480] = {.lex_state = 55}, - [1481] = {.lex_state = 55}, - [1482] = {.lex_state = 55}, - [1483] = {.lex_state = 55}, - [1484] = {.lex_state = 55}, - [1485] = {.lex_state = 55}, - [1486] = {.lex_state = 55}, - [1487] = {.lex_state = 55}, - [1488] = {.lex_state = 55}, - [1489] = {.lex_state = 55}, - [1490] = {.lex_state = 55}, - [1491] = {.lex_state = 59}, - [1492] = {.lex_state = 55}, - [1493] = {.lex_state = 55}, - [1494] = {.lex_state = 55}, - [1495] = {.lex_state = 55}, - [1496] = {.lex_state = 55}, - [1497] = {.lex_state = 55}, - [1498] = {.lex_state = 55}, - [1499] = {.lex_state = 55}, - [1500] = {.lex_state = 55}, - [1501] = {.lex_state = 55}, - [1502] = {.lex_state = 53}, - [1503] = {.lex_state = 55}, - [1504] = {.lex_state = 55}, - [1505] = {.lex_state = 53}, - [1506] = {.lex_state = 53}, - [1507] = {.lex_state = 55}, - [1508] = {.lex_state = 52}, - [1509] = {.lex_state = 55}, - [1510] = {.lex_state = 53}, - [1511] = {.lex_state = 55}, - [1512] = {.lex_state = 53}, - [1513] = {.lex_state = 55}, - [1514] = {.lex_state = 53}, - [1515] = {.lex_state = 53}, - [1516] = {.lex_state = 55}, - [1517] = {.lex_state = 55}, - [1518] = {.lex_state = 55}, - [1519] = {.lex_state = 55}, - [1520] = {.lex_state = 55}, - [1521] = {.lex_state = 53}, - [1522] = {.lex_state = 53}, - [1523] = {.lex_state = 55}, - [1524] = {.lex_state = 55}, - [1525] = {.lex_state = 55}, - [1526] = {.lex_state = 55}, - [1527] = {.lex_state = 55}, - [1528] = {.lex_state = 55}, - [1529] = {.lex_state = 55}, - [1530] = {.lex_state = 55}, - [1531] = {.lex_state = 55}, - [1532] = {.lex_state = 55}, - [1533] = {.lex_state = 55}, - [1534] = {.lex_state = 53}, - [1535] = {.lex_state = 55}, - [1536] = {.lex_state = 53}, - [1537] = {.lex_state = 55}, - [1538] = {.lex_state = 59}, - [1539] = {.lex_state = 53}, - [1540] = {.lex_state = 55}, - [1541] = {.lex_state = 55}, - [1542] = {.lex_state = 55}, - [1543] = {.lex_state = 55}, - [1544] = {.lex_state = 55}, - [1545] = {.lex_state = 53}, - [1546] = {.lex_state = 55}, - [1547] = {.lex_state = 55}, - [1548] = {.lex_state = 55}, - [1549] = {.lex_state = 55}, - [1550] = {.lex_state = 55}, - [1551] = {.lex_state = 53}, - [1552] = {.lex_state = 55}, - [1553] = {.lex_state = 55}, - [1554] = {.lex_state = 55}, - [1555] = {.lex_state = 121}, - [1556] = {.lex_state = 121}, - [1557] = {.lex_state = 0}, - [1558] = {.lex_state = 55}, - [1559] = {.lex_state = 55}, - [1560] = {.lex_state = 55}, - [1561] = {.lex_state = 121}, - [1562] = {.lex_state = 55}, - [1563] = {.lex_state = 55}, - [1564] = {.lex_state = 0}, - [1565] = {.lex_state = 55}, - [1566] = {.lex_state = 55}, - [1567] = {.lex_state = 55}, - [1568] = {.lex_state = 121}, - [1569] = {.lex_state = 55}, - [1570] = {.lex_state = 55}, - [1571] = {.lex_state = 57}, - [1572] = {.lex_state = 52}, - [1573] = {.lex_state = 57}, - [1574] = {.lex_state = 52}, - [1575] = {.lex_state = 57}, - [1576] = {.lex_state = 121}, - [1577] = {.lex_state = 52}, - [1578] = {.lex_state = 121}, - [1579] = {.lex_state = 121}, - [1580] = {.lex_state = 121}, - [1581] = {.lex_state = 55}, - [1582] = {.lex_state = 121}, - [1583] = {.lex_state = 121}, - [1584] = {.lex_state = 57}, - [1585] = {.lex_state = 121}, - [1586] = {.lex_state = 121}, - [1587] = {.lex_state = 121}, - [1588] = {.lex_state = 121}, - [1589] = {.lex_state = 121}, - [1590] = {.lex_state = 0}, - [1591] = {.lex_state = 121}, - [1592] = {.lex_state = 121}, - [1593] = {.lex_state = 121}, - [1594] = {.lex_state = 121}, - [1595] = {.lex_state = 121}, - [1596] = {.lex_state = 121}, - [1597] = {.lex_state = 121}, - [1598] = {.lex_state = 0}, - [1599] = {.lex_state = 121}, - [1600] = {.lex_state = 121}, - [1601] = {.lex_state = 121}, - [1602] = {.lex_state = 121}, - [1603] = {.lex_state = 121}, - [1604] = {.lex_state = 121}, - [1605] = {.lex_state = 53}, - [1606] = {.lex_state = 121}, - [1607] = {.lex_state = 121}, - [1608] = {.lex_state = 121}, - [1609] = {.lex_state = 121}, - [1610] = {.lex_state = 121}, - [1611] = {.lex_state = 121}, - [1612] = {.lex_state = 121}, - [1613] = {.lex_state = 121}, - [1614] = {.lex_state = 53}, - [1615] = {.lex_state = 53}, - [1616] = {.lex_state = 121}, - [1617] = {.lex_state = 121}, - [1618] = {.lex_state = 121}, - [1619] = {.lex_state = 121}, - [1620] = {.lex_state = 121}, - [1621] = {.lex_state = 121}, - [1622] = {.lex_state = 121}, - [1623] = {.lex_state = 0}, - [1624] = {.lex_state = 121}, - [1625] = {.lex_state = 121}, - [1626] = {.lex_state = 121}, - [1627] = {.lex_state = 0}, - [1628] = {.lex_state = 121}, - [1629] = {.lex_state = 53}, - [1630] = {.lex_state = 121}, - [1631] = {.lex_state = 121}, - [1632] = {.lex_state = 121}, - [1633] = {.lex_state = 121}, - [1634] = {.lex_state = 121}, - [1635] = {.lex_state = 121}, - [1636] = {.lex_state = 121}, - [1637] = {.lex_state = 55}, - [1638] = {.lex_state = 121}, - [1639] = {.lex_state = 0}, - [1640] = {.lex_state = 55}, - [1641] = {.lex_state = 55}, - [1642] = {.lex_state = 55}, - [1643] = {.lex_state = 55}, - [1644] = {.lex_state = 59}, - [1645] = {.lex_state = 55}, - [1646] = {.lex_state = 55}, - [1647] = {.lex_state = 55}, - [1648] = {.lex_state = 59}, - [1649] = {.lex_state = 121}, - [1650] = {.lex_state = 59}, - [1651] = {.lex_state = 59}, - [1652] = {.lex_state = 55}, - [1653] = {.lex_state = 55}, - [1654] = {.lex_state = 55}, - [1655] = {.lex_state = 55}, - [1656] = {.lex_state = 0}, - [1657] = {.lex_state = 121}, - [1658] = {.lex_state = 121}, - [1659] = {.lex_state = 55}, - [1660] = {.lex_state = 121}, - [1661] = {.lex_state = 55}, - [1662] = {.lex_state = 121}, - [1663] = {.lex_state = 55}, - [1664] = {.lex_state = 55}, - [1665] = {.lex_state = 59}, - [1666] = {.lex_state = 121}, - [1667] = {.lex_state = 55}, - [1668] = {.lex_state = 121}, - [1669] = {.lex_state = 59}, - [1670] = {.lex_state = 59}, - [1671] = {.lex_state = 55}, - [1672] = {.lex_state = 121}, - [1673] = {.lex_state = 55}, - [1674] = {.lex_state = 59}, - [1675] = {.lex_state = 55}, - [1676] = {.lex_state = 59}, - [1677] = {.lex_state = 53}, - [1678] = {.lex_state = 55}, - [1679] = {.lex_state = 55}, - [1680] = {.lex_state = 59}, - [1681] = {.lex_state = 55}, - [1682] = {.lex_state = 121}, - [1683] = {.lex_state = 121}, - [1684] = {.lex_state = 0}, - [1685] = {.lex_state = 55}, - [1686] = {.lex_state = 59}, - [1687] = {.lex_state = 55}, - [1688] = {.lex_state = 55}, - [1689] = {.lex_state = 55}, - [1690] = {.lex_state = 121}, - [1691] = {.lex_state = 121}, - [1692] = {.lex_state = 55}, - [1693] = {.lex_state = 121}, - [1694] = {.lex_state = 55}, - [1695] = {.lex_state = 55}, - [1696] = {.lex_state = 30}, - [1697] = {.lex_state = 121}, - [1698] = {.lex_state = 30}, - [1699] = {.lex_state = 121}, - [1700] = {.lex_state = 30}, - [1701] = {.lex_state = 55}, - [1702] = {.lex_state = 121}, - [1703] = {.lex_state = 30}, - [1704] = {.lex_state = 121}, - [1705] = {.lex_state = 30}, - [1706] = {.lex_state = 121}, - [1707] = {.lex_state = 55}, - [1708] = {.lex_state = 121}, - [1709] = {.lex_state = 121}, - [1710] = {.lex_state = 121}, - [1711] = {.lex_state = 30}, - [1712] = {.lex_state = 48}, - [1713] = {.lex_state = 30}, - [1714] = {.lex_state = 53}, - [1715] = {.lex_state = 121}, - [1716] = {.lex_state = 121}, - [1717] = {.lex_state = 121}, - [1718] = {.lex_state = 121}, - [1719] = {.lex_state = 121}, - [1720] = {.lex_state = 0}, - [1721] = {.lex_state = 55}, - [1722] = {.lex_state = 121}, - [1723] = {.lex_state = 55}, - [1724] = {.lex_state = 48}, - [1725] = {.lex_state = 55}, - [1726] = {.lex_state = 0}, - [1727] = {.lex_state = 121}, - [1728] = {.lex_state = 37}, - [1729] = {.lex_state = 53}, - [1730] = {.lex_state = 0}, - [1731] = {.lex_state = 39}, - [1732] = {.lex_state = 53}, - [1733] = {.lex_state = 39}, - [1734] = {.lex_state = 0}, - [1735] = {.lex_state = 39}, - [1736] = {.lex_state = 0}, - [1737] = {.lex_state = 55}, - [1738] = {.lex_state = 0}, - [1739] = {.lex_state = 55}, - [1740] = {.lex_state = 53}, - [1741] = {.lex_state = 0}, - [1742] = {.lex_state = 55}, - [1743] = {.lex_state = 39}, - [1744] = {.lex_state = 37}, - [1745] = {.lex_state = 37}, - [1746] = {.lex_state = 39}, - [1747] = {.lex_state = 0}, - [1748] = {.lex_state = 0}, - [1749] = {.lex_state = 39}, - [1750] = {.lex_state = 37}, - [1751] = {.lex_state = 39}, - [1752] = {.lex_state = 53}, - [1753] = {.lex_state = 0}, - [1754] = {.lex_state = 0}, - [1755] = {.lex_state = 55}, - [1756] = {.lex_state = 0}, - [1757] = {.lex_state = 0}, - [1758] = {.lex_state = 0}, - [1759] = {.lex_state = 0}, - [1760] = {.lex_state = 0}, - [1761] = {.lex_state = 0}, - [1762] = {.lex_state = 0}, - [1763] = {.lex_state = 0}, - [1764] = {.lex_state = 0}, - [1765] = {.lex_state = 0}, - [1766] = {.lex_state = 0}, - [1767] = {.lex_state = 31}, - [1768] = {.lex_state = 0}, - [1769] = {.lex_state = 0}, - [1770] = {.lex_state = 0}, - [1771] = {.lex_state = 55}, - [1772] = {.lex_state = 0}, - [1773] = {.lex_state = 0}, - [1774] = {.lex_state = 0}, - [1775] = {.lex_state = 0}, - [1776] = {.lex_state = 0}, - [1777] = {.lex_state = 0}, - [1778] = {.lex_state = 0}, - [1779] = {.lex_state = 0}, - [1780] = {.lex_state = 0}, - [1781] = {.lex_state = 0}, - [1782] = {.lex_state = 0}, - [1783] = {.lex_state = 0}, - [1784] = {.lex_state = 0}, - [1785] = {.lex_state = 0}, - [1786] = {.lex_state = 55}, - [1787] = {.lex_state = 0}, - [1788] = {.lex_state = 37}, - [1789] = {.lex_state = 0}, - [1790] = {.lex_state = 32}, - [1791] = {.lex_state = 0}, - [1792] = {.lex_state = 0}, - [1793] = {.lex_state = 0}, - [1794] = {.lex_state = 0}, - [1795] = {.lex_state = 0}, - [1796] = {.lex_state = 0}, - [1797] = {.lex_state = 0}, - [1798] = {.lex_state = 0}, - [1799] = {.lex_state = 48}, - [1800] = {.lex_state = 0}, - [1801] = {.lex_state = 33}, - [1802] = {.lex_state = 31}, - [1803] = {.lex_state = 0}, - [1804] = {.lex_state = 0}, - [1805] = {.lex_state = 55}, - [1806] = {.lex_state = 0}, - [1807] = {.lex_state = 0}, - [1808] = {.lex_state = 48}, - [1809] = {.lex_state = 0}, - [1810] = {.lex_state = 0}, - [1811] = {.lex_state = 0}, - [1812] = {.lex_state = 0}, - [1813] = {.lex_state = 0}, - [1814] = {.lex_state = 0}, - [1815] = {.lex_state = 0}, - [1816] = {.lex_state = 0}, - [1817] = {.lex_state = 0}, - [1818] = {.lex_state = 32}, - [1819] = {.lex_state = 0}, - [1820] = {.lex_state = 0}, - [1821] = {.lex_state = 31}, - [1822] = {.lex_state = 0}, - [1823] = {.lex_state = 0}, - [1824] = {.lex_state = 48}, - [1825] = {.lex_state = 0}, - [1826] = {.lex_state = 48}, - [1827] = {.lex_state = 31}, - [1828] = {.lex_state = 0}, - [1829] = {.lex_state = 0}, - [1830] = {.lex_state = 0}, - [1831] = {.lex_state = 0}, - [1832] = {.lex_state = 0}, - [1833] = {.lex_state = 0}, - [1834] = {.lex_state = 0}, - [1835] = {.lex_state = 0}, - [1836] = {.lex_state = 0}, - [1837] = {.lex_state = 0}, - [1838] = {.lex_state = 31}, - [1839] = {.lex_state = 0}, - [1840] = {.lex_state = 0}, - [1841] = {.lex_state = 0}, - [1842] = {.lex_state = 0}, - [1843] = {.lex_state = 0}, - [1844] = {.lex_state = 0}, - [1845] = {.lex_state = 33}, - [1846] = {.lex_state = 0}, - [1847] = {.lex_state = 31}, - [1848] = {.lex_state = 0}, - [1849] = {.lex_state = 0}, - [1850] = {.lex_state = 0}, - [1851] = {.lex_state = 0}, - [1852] = {.lex_state = 0}, - [1853] = {.lex_state = 0}, - [1854] = {.lex_state = 0}, - [1855] = {.lex_state = 48}, - [1856] = {.lex_state = 0}, - [1857] = {.lex_state = 0}, - [1858] = {.lex_state = 0}, - [1859] = {.lex_state = 37}, - [1860] = {.lex_state = 0}, - [1861] = {.lex_state = 55}, - [1862] = {.lex_state = 31}, - [1863] = {.lex_state = 0}, - [1864] = {.lex_state = 48}, - [1865] = {.lex_state = 0}, - [1866] = {.lex_state = 0}, - [1867] = {.lex_state = 0}, - [1868] = {.lex_state = 0}, - [1869] = {.lex_state = 55}, - [1870] = {.lex_state = 0}, - [1871] = {.lex_state = 31}, - [1872] = {.lex_state = 32}, - [1873] = {.lex_state = 0}, - [1874] = {.lex_state = 0}, - [1875] = {.lex_state = 0}, - [1876] = {.lex_state = 55}, - [1877] = {.lex_state = 0}, - [1878] = {.lex_state = 31}, - [1879] = {.lex_state = 0}, - [1880] = {.lex_state = 0}, - [1881] = {.lex_state = 0}, - [1882] = {.lex_state = 0}, - [1883] = {.lex_state = 0}, - [1884] = {.lex_state = 0}, - [1885] = {.lex_state = 0}, - [1886] = {.lex_state = 0}, - [1887] = {.lex_state = 0}, - [1888] = {.lex_state = 0}, - [1889] = {.lex_state = 0}, - [1890] = {.lex_state = 0}, - [1891] = {.lex_state = 0}, - [1892] = {.lex_state = 31}, - [1893] = {.lex_state = 0}, - [1894] = {.lex_state = 0}, - [1895] = {.lex_state = 0}, - [1896] = {.lex_state = 0}, - [1897] = {.lex_state = 0}, - [1898] = {.lex_state = 0}, - [1899] = {.lex_state = 48}, - [1900] = {.lex_state = 0}, - [1901] = {.lex_state = 0}, - [1902] = {.lex_state = 55}, - [1903] = {.lex_state = 31}, - [1904] = {.lex_state = 0}, - [1905] = {.lex_state = 0}, - [1906] = {.lex_state = 0}, - [1907] = {.lex_state = 0}, - [1908] = {.lex_state = 0}, - [1909] = {.lex_state = 0}, - [1910] = {.lex_state = 0}, - [1911] = {.lex_state = 0}, - [1912] = {.lex_state = 32}, - [1913] = {.lex_state = 0}, - [1914] = {.lex_state = 0}, - [1915] = {.lex_state = 0}, - [1916] = {.lex_state = 0}, - [1917] = {.lex_state = 0}, - [1918] = {.lex_state = 31}, - [1919] = {.lex_state = 0}, - [1920] = {.lex_state = 31}, - [1921] = {.lex_state = 31}, - [1922] = {.lex_state = 0}, - [1923] = {.lex_state = 0}, - [1924] = {.lex_state = 33}, - [1925] = {.lex_state = 0}, - [1926] = {.lex_state = 37}, - [1927] = {.lex_state = 55}, - [1928] = {.lex_state = 0}, - [1929] = {.lex_state = 0}, - [1930] = {.lex_state = 0}, - [1931] = {.lex_state = 0}, - [1932] = {.lex_state = 0}, - [1933] = {.lex_state = 0}, - [1934] = {.lex_state = 121}, - [1935] = {.lex_state = 121}, - [1936] = {.lex_state = 121}, - [1937] = {.lex_state = 121}, - [1938] = {.lex_state = 0}, - [1939] = {.lex_state = 121}, - [1940] = {.lex_state = 55}, - [1941] = {.lex_state = 0}, - [1942] = {.lex_state = 121}, - [1943] = {.lex_state = 121}, - [1944] = {.lex_state = 121}, - [1945] = {.lex_state = 121}, - [1946] = {.lex_state = 121}, - [1947] = {.lex_state = 55}, - [1948] = {.lex_state = 121}, - [1949] = {.lex_state = 121}, - [1950] = {.lex_state = 121}, - [1951] = {.lex_state = 121}, - [1952] = {.lex_state = 121}, - [1953] = {.lex_state = 0}, - [1954] = {.lex_state = 0}, - [1955] = {.lex_state = 0}, - [1956] = {.lex_state = 0}, - [1957] = {.lex_state = 48}, - [1958] = {.lex_state = 0}, - [1959] = {.lex_state = 0}, - [1960] = {.lex_state = 121}, - [1961] = {.lex_state = 0}, - [1962] = {.lex_state = 31}, - [1963] = {.lex_state = 121}, - [1964] = {.lex_state = 0}, - [1965] = {.lex_state = 121}, - [1966] = {.lex_state = 0}, - [1967] = {.lex_state = 121}, - [1968] = {.lex_state = 55}, - [1969] = {.lex_state = 121}, - [1970] = {.lex_state = 121}, - [1971] = {.lex_state = 121}, - [1972] = {.lex_state = 121}, - [1973] = {.lex_state = 121}, - [1974] = {.lex_state = 0}, - [1975] = {.lex_state = 121}, - [1976] = {.lex_state = 121}, - [1977] = {.lex_state = 0}, - [1978] = {.lex_state = 0}, - [1979] = {.lex_state = 121}, - [1980] = {.lex_state = 0}, - [1981] = {.lex_state = 0}, - [1982] = {.lex_state = 0}, - [1983] = {.lex_state = 31}, - [1984] = {.lex_state = 121}, - [1985] = {.lex_state = 0}, - [1986] = {.lex_state = 55}, - [1987] = {.lex_state = 121}, - [1988] = {.lex_state = 55}, - [1989] = {.lex_state = 0}, - [1990] = {.lex_state = 0}, - [1991] = {.lex_state = 0}, - [1992] = {.lex_state = 121}, - [1993] = {.lex_state = 0}, - [1994] = {.lex_state = 0}, - [1995] = {.lex_state = 121}, - [1996] = {.lex_state = 0}, - [1997] = {.lex_state = 31}, - [1998] = {.lex_state = 0}, - [1999] = {.lex_state = 0}, - [2000] = {.lex_state = 121}, - [2001] = {.lex_state = 121}, - [2002] = {.lex_state = 0}, - [2003] = {.lex_state = 0}, - [2004] = {.lex_state = 121}, - [2005] = {.lex_state = 121}, - [2006] = {.lex_state = 0}, - [2007] = {.lex_state = 121}, - [2008] = {.lex_state = 121}, - [2009] = {.lex_state = 121}, - [2010] = {.lex_state = 55}, - [2011] = {.lex_state = 48}, - [2012] = {.lex_state = 121}, - [2013] = {.lex_state = 0}, - [2014] = {.lex_state = 48}, - [2015] = {.lex_state = 0}, - [2016] = {.lex_state = 0}, - [2017] = {.lex_state = 0}, - [2018] = {.lex_state = 55}, - [2019] = {.lex_state = 121}, - [2020] = {.lex_state = 0}, - [2021] = {.lex_state = 0}, - [2022] = {.lex_state = 121}, - [2023] = {.lex_state = 121}, - [2024] = {.lex_state = 121}, - [2025] = {.lex_state = 55}, - [2026] = {.lex_state = 0}, - [2027] = {.lex_state = 0}, - [2028] = {.lex_state = 0}, - [2029] = {.lex_state = 0}, - [2030] = {.lex_state = 0}, - [2031] = {.lex_state = 55}, - [2032] = {.lex_state = 0}, - [2033] = {.lex_state = 55}, - [2034] = {.lex_state = 0}, - [2035] = {.lex_state = 47}, - [2036] = {.lex_state = 47}, - [2037] = {.lex_state = 32}, - [2038] = {.lex_state = 32}, - [2039] = {.lex_state = 0}, - [2040] = {.lex_state = 0}, - [2041] = {.lex_state = 121}, - [2042] = {.lex_state = 0}, - [2043] = {.lex_state = 0}, - [2044] = {.lex_state = 55}, - [2045] = {.lex_state = 32}, - [2046] = {.lex_state = 0}, - [2047] = {.lex_state = 0}, - [2048] = {.lex_state = 0}, - [2049] = {.lex_state = 0}, - [2050] = {.lex_state = 32}, - [2051] = {.lex_state = 0}, - [2052] = {.lex_state = 47}, - [2053] = {.lex_state = 47}, - [2054] = {.lex_state = 0}, - [2055] = {.lex_state = 0}, - [2056] = {.lex_state = 0}, - [2057] = {.lex_state = 32}, - [2058] = {.lex_state = 55}, - [2059] = {.lex_state = 47}, - [2060] = {.lex_state = 32}, - [2061] = {.lex_state = 0}, - [2062] = {.lex_state = 0}, - [2063] = {.lex_state = 0}, - [2064] = {.lex_state = 0}, - [2065] = {.lex_state = 121}, - [2066] = {.lex_state = 55}, - [2067] = {.lex_state = 0}, - [2068] = {.lex_state = 55}, - [2069] = {.lex_state = 0}, - [2070] = {.lex_state = 121}, - [2071] = {.lex_state = 0}, - [2072] = {.lex_state = 32}, - [2073] = {.lex_state = 32}, - [2074] = {.lex_state = 121}, - [2075] = {.lex_state = 121}, - [2076] = {.lex_state = 32}, - [2077] = {.lex_state = 32}, - [2078] = {.lex_state = 121}, - [2079] = {.lex_state = 47}, - [2080] = {.lex_state = 0}, - [2081] = {.lex_state = 0}, - [2082] = {.lex_state = 0}, - [2083] = {.lex_state = 32}, - [2084] = {.lex_state = 0}, - [2085] = {.lex_state = 0}, - [2086] = {.lex_state = 47}, - [2087] = {.lex_state = 0}, - [2088] = {.lex_state = 0}, - [2089] = {.lex_state = 0}, - [2090] = {.lex_state = 121}, - [2091] = {.lex_state = 121}, - [2092] = {.lex_state = 121}, - [2093] = {.lex_state = 0}, - [2094] = {.lex_state = 0}, - [2095] = {.lex_state = 0}, - [2096] = {.lex_state = 0}, - [2097] = {.lex_state = 32}, - [2098] = {.lex_state = 0}, - [2099] = {.lex_state = 32}, - [2100] = {.lex_state = 32}, - [2101] = {.lex_state = 55}, - [2102] = {.lex_state = 55}, - [2103] = {.lex_state = 55}, - [2104] = {.lex_state = 55}, - [2105] = {.lex_state = 47}, - [2106] = {.lex_state = 47}, - [2107] = {.lex_state = 55}, - [2108] = {.lex_state = 47}, - [2109] = {.lex_state = 0}, - [2110] = {.lex_state = 47}, - [2111] = {.lex_state = 55}, - [2112] = {.lex_state = 47}, - [2113] = {.lex_state = 0}, - [2114] = {.lex_state = 55}, - [2115] = {.lex_state = 47}, - [2116] = {.lex_state = 47}, - [2117] = {.lex_state = 0}, - [2118] = {.lex_state = 47}, - [2119] = {.lex_state = 0}, - [2120] = {.lex_state = 0}, - [2121] = {.lex_state = 47}, - [2122] = {.lex_state = 0}, - [2123] = {.lex_state = 47}, - [2124] = {.lex_state = 55}, - [2125] = {.lex_state = 0}, - [2126] = {.lex_state = 0}, - [2127] = {.lex_state = 0}, - [2128] = {.lex_state = 47}, - [2129] = {.lex_state = 121}, - [2130] = {.lex_state = 55}, - [2131] = {.lex_state = 121}, - [2132] = {.lex_state = 121}, - [2133] = {.lex_state = 32}, - [2134] = {.lex_state = 121}, - [2135] = {.lex_state = 0}, - [2136] = {.lex_state = 32}, - [2137] = {.lex_state = 0}, - [2138] = {.lex_state = 0}, - [2139] = {.lex_state = 0}, - [2140] = {.lex_state = 0}, - [2141] = {.lex_state = 55}, - [2142] = {.lex_state = 0}, - [2143] = {.lex_state = 32}, - [2144] = {.lex_state = 47}, - [2145] = {.lex_state = 0}, - [2146] = {.lex_state = 55}, - [2147] = {.lex_state = 32}, - [2148] = {.lex_state = 55}, - [2149] = {.lex_state = 55}, - [2150] = {.lex_state = 121}, - [2151] = {.lex_state = 55}, - [2152] = {.lex_state = 0}, - [2153] = {.lex_state = 0}, - [2154] = {.lex_state = 0}, - [2155] = {.lex_state = 0}, - [2156] = {.lex_state = 47}, - [2157] = {.lex_state = 0}, - [2158] = {.lex_state = 47}, - [2159] = {.lex_state = 0}, - [2160] = {.lex_state = 55}, - [2161] = {.lex_state = 47}, - [2162] = {.lex_state = 0}, - [2163] = {.lex_state = 47}, - [2164] = {.lex_state = 32}, - [2165] = {.lex_state = 47}, - [2166] = {.lex_state = 0}, - [2167] = {.lex_state = 32}, - [2168] = {.lex_state = 32}, - [2169] = {.lex_state = 0}, - [2170] = {.lex_state = 0}, - [2171] = {.lex_state = 0}, - [2172] = {.lex_state = 47}, - [2173] = {.lex_state = 47}, - [2174] = {.lex_state = 0}, - [2175] = {.lex_state = 0}, - [2176] = {.lex_state = 0}, - [2177] = {.lex_state = 47}, - [2178] = {.lex_state = 47}, - [2179] = {.lex_state = 47}, - [2180] = {.lex_state = 0}, - [2181] = {.lex_state = 47}, - [2182] = {.lex_state = 47}, - [2183] = {.lex_state = 0}, - [2184] = {.lex_state = 0}, - [2185] = {.lex_state = 47}, - [2186] = {.lex_state = 0}, - [2187] = {.lex_state = 0}, - [2188] = {.lex_state = 32}, - [2189] = {.lex_state = 0}, - [2190] = {.lex_state = 0}, - [2191] = {.lex_state = 55}, - [2192] = {.lex_state = 55}, - [2193] = {.lex_state = 0}, - [2194] = {.lex_state = 55}, - [2195] = {.lex_state = 32}, - [2196] = {.lex_state = 47}, - [2197] = {.lex_state = 0}, - [2198] = {.lex_state = 55}, - [2199] = {.lex_state = 0}, - [2200] = {.lex_state = 55}, - [2201] = {.lex_state = 0}, - [2202] = {.lex_state = 0}, - [2203] = {.lex_state = 0}, - [2204] = {.lex_state = 121}, - [2205] = {.lex_state = 47}, - [2206] = {.lex_state = 0}, - [2207] = {.lex_state = 0}, - [2208] = {.lex_state = 0}, - [2209] = {.lex_state = 0}, - [2210] = {.lex_state = 47}, - [2211] = {.lex_state = 0}, - [2212] = {.lex_state = 47}, - [2213] = {.lex_state = 55}, - [2214] = {.lex_state = 32}, - [2215] = {.lex_state = 0}, - [2216] = {.lex_state = 0}, - [2217] = {.lex_state = 0}, - [2218] = {.lex_state = 32}, - [2219] = {.lex_state = 0}, - [2220] = {.lex_state = 0}, - [2221] = {.lex_state = 0}, - [2222] = {.lex_state = 0}, - [2223] = {.lex_state = 0}, - [2224] = {.lex_state = 32}, - [2225] = {.lex_state = 47}, - [2226] = {.lex_state = 47}, - [2227] = {.lex_state = 47}, - [2228] = {.lex_state = 47}, - [2229] = {.lex_state = 55}, - [2230] = {.lex_state = 55}, - [2231] = {.lex_state = 55}, - [2232] = {.lex_state = 0}, - [2233] = {.lex_state = 0}, - [2234] = {.lex_state = 47}, - [2235] = {.lex_state = 55}, - [2236] = {.lex_state = 0}, - [2237] = {.lex_state = 47}, - [2238] = {.lex_state = 0}, - [2239] = {.lex_state = 0}, - [2240] = {.lex_state = 32}, - [2241] = {.lex_state = 0}, - [2242] = {.lex_state = 0}, - [2243] = {.lex_state = 47}, - [2244] = {.lex_state = 0}, - [2245] = {.lex_state = 47}, - [2246] = {.lex_state = 32}, - [2247] = {.lex_state = 121}, - [2248] = {.lex_state = 0}, - [2249] = {.lex_state = 0}, - [2250] = {.lex_state = 0}, - [2251] = {.lex_state = 0}, - [2252] = {.lex_state = 0}, - [2253] = {.lex_state = 0}, - [2254] = {.lex_state = 47}, - [2255] = {.lex_state = 47}, - [2256] = {.lex_state = 47}, - [2257] = {.lex_state = 0}, - [2258] = {.lex_state = 55}, - [2259] = {.lex_state = 0}, - [2260] = {.lex_state = 0}, - [2261] = {.lex_state = 0}, - [2262] = {.lex_state = 55}, - [2263] = {.lex_state = 55}, - [2264] = {.lex_state = 0}, - [2265] = {.lex_state = 32}, - [2266] = {.lex_state = 47}, - [2267] = {.lex_state = 0}, - [2268] = {.lex_state = 55}, - [2269] = {.lex_state = 121}, - [2270] = {.lex_state = 121}, - [2271] = {.lex_state = 121}, - [2272] = {.lex_state = 0}, - [2273] = {.lex_state = 0}, - [2274] = {.lex_state = 0}, - [2275] = {.lex_state = 121}, - [2276] = {.lex_state = 0}, - [2277] = {.lex_state = 32}, - [2278] = {.lex_state = 0}, - [2279] = {.lex_state = 121}, - [2280] = {.lex_state = 55}, - [2281] = {.lex_state = 55}, - [2282] = {.lex_state = 121}, - [2283] = {.lex_state = 121}, - [2284] = {.lex_state = 121}, - [2285] = {.lex_state = 121}, - [2286] = {.lex_state = 0}, - [2287] = {.lex_state = 121}, - [2288] = {.lex_state = 0}, - [2289] = {.lex_state = 121}, - [2290] = {.lex_state = 55}, - [2291] = {.lex_state = 121}, - [2292] = {.lex_state = 0}, - [2293] = {.lex_state = 0}, - [2294] = {.lex_state = 121}, - [2295] = {.lex_state = 55}, - [2296] = {.lex_state = 0}, - [2297] = {.lex_state = 0}, - [2298] = {.lex_state = 0}, - [2299] = {.lex_state = 0}, - [2300] = {.lex_state = 55}, - [2301] = {.lex_state = 47}, - [2302] = {.lex_state = 47}, - [2303] = {.lex_state = 32}, - [2304] = {.lex_state = 47}, - [2305] = {.lex_state = 55}, - [2306] = {.lex_state = 121}, - [2307] = {.lex_state = 121}, - [2308] = {.lex_state = 0}, - [2309] = {.lex_state = 121}, - [2310] = {.lex_state = 121}, - [2311] = {.lex_state = 121}, - [2312] = {.lex_state = 47}, - [2313] = {.lex_state = 55}, - [2314] = {.lex_state = 121}, - [2315] = {.lex_state = 0}, - [2316] = {.lex_state = 55}, -}; - -static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { - [0] = { - [ts_builtin_sym_end] = ACTIONS(1), - [sym_identifier] = ACTIONS(1), - [aux_sym_preproc_include_token1] = ACTIONS(1), - [aux_sym_preproc_def_token1] = ACTIONS(1), - [anon_sym_LPAREN] = ACTIONS(1), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1), - [anon_sym_COMMA] = ACTIONS(1), - [anon_sym_RPAREN] = ACTIONS(1), - [aux_sym_preproc_if_token1] = ACTIONS(1), - [aux_sym_preproc_if_token2] = ACTIONS(1), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1), - [aux_sym_preproc_else_token1] = ACTIONS(1), - [aux_sym_preproc_elif_token1] = ACTIONS(1), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1), - [sym_preproc_directive] = ACTIONS(1), - [anon_sym_LPAREN2] = ACTIONS(1), - [anon_sym_defined] = ACTIONS(1), - [anon_sym_BANG] = ACTIONS(1), - [anon_sym_TILDE] = ACTIONS(1), - [anon_sym_DASH] = ACTIONS(1), - [anon_sym_PLUS] = ACTIONS(1), - [anon_sym_STAR] = ACTIONS(1), - [anon_sym_SLASH] = ACTIONS(1), - [anon_sym_PERCENT] = ACTIONS(1), - [anon_sym_PIPE_PIPE] = ACTIONS(1), - [anon_sym_AMP_AMP] = ACTIONS(1), - [anon_sym_PIPE] = ACTIONS(1), - [anon_sym_CARET] = ACTIONS(1), - [anon_sym_AMP] = ACTIONS(1), - [anon_sym_EQ_EQ] = ACTIONS(1), - [anon_sym_BANG_EQ] = ACTIONS(1), - [anon_sym_GT] = ACTIONS(1), - [anon_sym_GT_EQ] = ACTIONS(1), - [anon_sym_LT_EQ] = ACTIONS(1), - [anon_sym_LT] = ACTIONS(1), - [anon_sym_LT_LT] = ACTIONS(1), - [anon_sym_GT_GT] = ACTIONS(1), - [anon_sym_SEMI] = ACTIONS(1), - [anon_sym___extension__] = ACTIONS(1), - [anon_sym_typedef] = ACTIONS(1), - [anon_sym_extern] = ACTIONS(1), - [anon_sym___attribute__] = ACTIONS(1), - [anon_sym___scanf] = ACTIONS(1), - [anon_sym___printf] = ACTIONS(1), - [anon_sym___read_mostly] = ACTIONS(1), - [anon_sym___must_hold] = ACTIONS(1), - [anon_sym___ro_after_init] = ACTIONS(1), - [anon_sym___noreturn] = ACTIONS(1), - [anon_sym___cold] = ACTIONS(1), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1), - [anon_sym___declspec] = ACTIONS(1), - [anon_sym___based] = ACTIONS(1), - [anon_sym___init] = ACTIONS(1), - [anon_sym___exit] = ACTIONS(1), - [anon_sym___cdecl] = ACTIONS(1), - [anon_sym___clrcall] = ACTIONS(1), - [anon_sym___stdcall] = ACTIONS(1), - [anon_sym___fastcall] = ACTIONS(1), - [anon_sym___thiscall] = ACTIONS(1), - [anon_sym___vectorcall] = ACTIONS(1), - [sym_ms_restrict_modifier] = ACTIONS(1), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(1), - [sym_ms_signed_ptr_modifier] = ACTIONS(1), - [anon_sym__unaligned] = ACTIONS(1), - [anon_sym___unaligned] = ACTIONS(1), - [anon_sym_LBRACE] = ACTIONS(1), - [anon_sym_RBRACE] = ACTIONS(1), - [anon_sym_signed] = ACTIONS(1), - [anon_sym_unsigned] = ACTIONS(1), - [anon_sym_long] = ACTIONS(1), - [anon_sym_short] = ACTIONS(1), - [anon_sym_LBRACK] = ACTIONS(1), - [anon_sym_static] = ACTIONS(1), - [anon_sym_RBRACK] = ACTIONS(1), - [anon_sym_EQ] = ACTIONS(1), - [anon_sym_auto] = ACTIONS(1), - [anon_sym_register] = ACTIONS(1), - [anon_sym_inline] = ACTIONS(1), - [anon_sym___inline] = ACTIONS(1), - [anon_sym___inline__] = ACTIONS(1), - [anon_sym___forceinline] = ACTIONS(1), - [anon_sym_thread_local] = ACTIONS(1), - [anon_sym___thread] = ACTIONS(1), - [anon_sym_const] = ACTIONS(1), - [anon_sym_constexpr] = ACTIONS(1), - [anon_sym_volatile] = ACTIONS(1), - [anon_sym_restrict] = ACTIONS(1), - [anon_sym___restrict__] = ACTIONS(1), - [anon_sym__Atomic] = ACTIONS(1), - [anon_sym__Noreturn] = ACTIONS(1), - [anon_sym_noreturn] = ACTIONS(1), - [anon_sym_alignas] = ACTIONS(1), - [anon_sym__Alignas] = ACTIONS(1), - [sym_primitive_type] = ACTIONS(1), - [anon_sym_enum] = ACTIONS(1), - [anon_sym_COLON] = ACTIONS(1), - [anon_sym_struct] = ACTIONS(1), - [anon_sym___aligned] = ACTIONS(1), - [anon_sym_union] = ACTIONS(1), - [anon_sym_if] = ACTIONS(1), - [anon_sym_else] = ACTIONS(1), - [anon_sym_switch] = ACTIONS(1), - [anon_sym_case] = ACTIONS(1), - [anon_sym_default] = ACTIONS(1), - [anon_sym_while] = ACTIONS(1), - [anon_sym_do] = ACTIONS(1), - [anon_sym_for] = ACTIONS(1), - [anon_sym_return] = ACTIONS(1), - [anon_sym_break] = ACTIONS(1), - [anon_sym_continue] = ACTIONS(1), - [anon_sym_goto] = ACTIONS(1), - [anon_sym___try] = ACTIONS(1), - [anon_sym___except] = ACTIONS(1), - [anon_sym___finally] = ACTIONS(1), - [anon_sym___leave] = ACTIONS(1), - [anon_sym_QMARK] = ACTIONS(1), - [anon_sym_STAR_EQ] = ACTIONS(1), - [anon_sym_SLASH_EQ] = ACTIONS(1), - [anon_sym_PERCENT_EQ] = ACTIONS(1), - [anon_sym_PLUS_EQ] = ACTIONS(1), - [anon_sym_DASH_EQ] = ACTIONS(1), - [anon_sym_LT_LT_EQ] = ACTIONS(1), - [anon_sym_GT_GT_EQ] = ACTIONS(1), - [anon_sym_AMP_EQ] = ACTIONS(1), - [anon_sym_CARET_EQ] = ACTIONS(1), - [anon_sym_PIPE_EQ] = ACTIONS(1), - [anon_sym_DASH_DASH] = ACTIONS(1), - [anon_sym_PLUS_PLUS] = ACTIONS(1), - [anon_sym_sizeof] = ACTIONS(1), - [anon_sym___alignof__] = ACTIONS(1), - [anon_sym___alignof] = ACTIONS(1), - [anon_sym__alignof] = ACTIONS(1), - [anon_sym_alignof] = ACTIONS(1), - [anon_sym__Alignof] = ACTIONS(1), - [anon_sym_offsetof] = ACTIONS(1), - [anon_sym__Generic] = ACTIONS(1), - [anon_sym_asm] = ACTIONS(1), - [anon_sym___asm__] = ACTIONS(1), - [anon_sym_DOT] = ACTIONS(1), - [anon_sym_DASH_GT] = ACTIONS(1), - [sym_number_literal] = ACTIONS(1), - [anon_sym_L_SQUOTE] = ACTIONS(1), - [anon_sym_u_SQUOTE] = ACTIONS(1), - [anon_sym_U_SQUOTE] = ACTIONS(1), - [anon_sym_u8_SQUOTE] = ACTIONS(1), - [anon_sym_SQUOTE] = ACTIONS(1), - [anon_sym_L_DQUOTE] = ACTIONS(1), - [anon_sym_u_DQUOTE] = ACTIONS(1), - [anon_sym_U_DQUOTE] = ACTIONS(1), - [anon_sym_u8_DQUOTE] = ACTIONS(1), - [anon_sym_DQUOTE] = ACTIONS(1), - [sym_true] = ACTIONS(1), - [sym_false] = ACTIONS(1), - [anon_sym_NULL] = ACTIONS(1), - [anon_sym_nullptr] = ACTIONS(1), - [sym_comment] = ACTIONS(3), - }, - [1] = { - [sym_translation_unit] = STATE(2278), - [sym__top_level_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(399), - [sym_declaration] = STATE(44), - [sym_type_definition] = STATE(44), - [sym__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1231), - [sym_linkage_specification] = STATE(44), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(468), - [sym_ms_declspec_modifier] = STATE(805), - [sym_macro_modifier] = STATE(794), - [sym_ms_call_modifier] = STATE(620), - [sym_compound_statement] = STATE(44), - [sym_storage_class_specifier] = STATE(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(901), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [sym_attributed_statement] = STATE(401), - [sym__top_level_statement] = STATE(44), - [sym_labeled_statement] = STATE(44), - [sym__top_level_expression_statement] = STATE(44), - [sym_if_statement] = STATE(44), - [sym_switch_statement] = STATE(44), - [sym_case_statement] = STATE(44), - [sym_while_statement] = STATE(44), - [sym_do_statement] = STATE(44), - [sym_for_statement] = STATE(44), - [sym_return_statement] = STATE(44), - [sym_break_statement] = STATE(44), - [sym_continue_statement] = STATE(44), - [sym_goto_statement] = STATE(44), - [sym_expression] = STATE(1225), - [sym__string] = STATE(1223), - [sym_conditional_expression] = STATE(1223), - [sym_assignment_expression] = STATE(1223), - [sym_pointer_expression] = STATE(1069), - [sym_unary_expression] = STATE(1223), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(1223), - [sym_cast_expression] = STATE(1223), - [sym_sizeof_expression] = STATE(1223), - [sym_alignof_expression] = STATE(1223), - [sym_offsetof_expression] = STATE(1223), - [sym_generic_expression] = STATE(1223), - [sym_subscript_expression] = STATE(1069), - [sym_call_expression] = STATE(1069), - [sym_gnu_asm_expression] = STATE(1223), - [sym_field_expression] = STATE(1069), - [sym_compound_literal_expression] = STATE(1223), - [sym_parenthesized_expression] = STATE(1069), - [sym_char_literal] = STATE(1223), - [sym_concatenated_string] = STATE(1223), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(1223), - [sym__empty_declaration] = STATE(44), - [sym_macro_type_specifier] = STATE(873), - [aux_sym_translation_unit_repeat1] = STATE(44), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_attributed_declarator_repeat1] = STATE(421), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), - [ts_builtin_sym_end] = ACTIONS(5), - [sym_identifier] = ACTIONS(7), - [aux_sym_preproc_include_token1] = ACTIONS(9), - [aux_sym_preproc_def_token1] = ACTIONS(11), - [aux_sym_preproc_if_token1] = ACTIONS(13), - [aux_sym_preproc_ifdef_token1] = ACTIONS(15), - [aux_sym_preproc_ifdef_token2] = ACTIONS(15), - [sym_preproc_directive] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym___extension__] = ACTIONS(27), - [anon_sym_typedef] = ACTIONS(29), - [anon_sym_extern] = ACTIONS(31), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym___read_mostly] = ACTIONS(37), - [anon_sym___must_hold] = ACTIONS(33), - [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___noreturn] = ACTIONS(37), - [anon_sym___cold] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(39), - [anon_sym___declspec] = ACTIONS(41), - [anon_sym___init] = ACTIONS(43), - [anon_sym___exit] = ACTIONS(43), - [anon_sym___cdecl] = ACTIONS(45), - [anon_sym___clrcall] = ACTIONS(45), - [anon_sym___stdcall] = ACTIONS(45), - [anon_sym___fastcall] = ACTIONS(45), - [anon_sym___thiscall] = ACTIONS(45), - [anon_sym___vectorcall] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(49), - [anon_sym_unsigned] = ACTIONS(49), - [anon_sym_long] = ACTIONS(49), - [anon_sym_short] = ACTIONS(49), - [anon_sym_static] = ACTIONS(51), - [anon_sym_auto] = ACTIONS(51), - [anon_sym_register] = ACTIONS(51), - [anon_sym_inline] = ACTIONS(51), - [anon_sym___inline] = ACTIONS(51), - [anon_sym___inline__] = ACTIONS(51), - [anon_sym___forceinline] = ACTIONS(51), - [anon_sym_thread_local] = ACTIONS(51), - [anon_sym___thread] = ACTIONS(51), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_switch] = ACTIONS(67), - [anon_sym_case] = ACTIONS(69), - [anon_sym_default] = ACTIONS(71), - [anon_sym_while] = ACTIONS(73), - [anon_sym_do] = ACTIONS(75), - [anon_sym_for] = ACTIONS(77), - [anon_sym_return] = ACTIONS(79), - [anon_sym_break] = ACTIONS(81), - [anon_sym_continue] = ACTIONS(83), - [anon_sym_goto] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - }, - [2] = { - [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(2210), - [sym_preproc_elif] = STATE(2210), - [sym_preproc_elifdef] = STATE(2210), - [sym_function_definition] = STATE(5), - [sym__old_style_function_definition] = STATE(149), - [sym_declaration] = STATE(5), - [sym_type_definition] = STATE(5), - [sym__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1238), - [sym_linkage_specification] = STATE(5), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(468), - [sym_ms_declspec_modifier] = STATE(805), - [sym_macro_modifier] = STATE(777), - [sym_ms_call_modifier] = STATE(615), - [sym_compound_statement] = STATE(77), - [sym_storage_class_specifier] = STATE(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(896), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [sym_attributed_statement] = STATE(151), - [sym_statement] = STATE(5), - [sym_labeled_statement] = STATE(77), - [sym_expression_statement] = STATE(77), - [sym_if_statement] = STATE(77), - [sym_switch_statement] = STATE(77), - [sym_case_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_do_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_return_statement] = STATE(77), - [sym_break_statement] = STATE(77), - [sym_continue_statement] = STATE(77), - [sym_goto_statement] = STATE(77), - [sym_seh_try_statement] = STATE(77), - [sym_seh_leave_statement] = STATE(77), - [sym_expression] = STATE(1157), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2232), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [sym__empty_declaration] = STATE(5), - [sym_macro_type_specifier] = STATE(873), - [aux_sym_preproc_if_repeat1] = STATE(5), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_attributed_declarator_repeat1] = STATE(439), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), - [sym_identifier] = ACTIONS(109), - [aux_sym_preproc_include_token1] = ACTIONS(111), - [aux_sym_preproc_def_token1] = ACTIONS(113), - [aux_sym_preproc_if_token1] = ACTIONS(115), - [aux_sym_preproc_if_token2] = ACTIONS(117), - [aux_sym_preproc_ifdef_token1] = ACTIONS(119), - [aux_sym_preproc_ifdef_token2] = ACTIONS(119), - [aux_sym_preproc_else_token1] = ACTIONS(121), - [aux_sym_preproc_elif_token1] = ACTIONS(123), - [aux_sym_preproc_elifdef_token1] = ACTIONS(125), - [aux_sym_preproc_elifdef_token2] = ACTIONS(125), - [sym_preproc_directive] = ACTIONS(127), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(129), - [anon_sym___extension__] = ACTIONS(131), - [anon_sym_typedef] = ACTIONS(133), - [anon_sym_extern] = ACTIONS(135), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym___read_mostly] = ACTIONS(37), - [anon_sym___must_hold] = ACTIONS(33), - [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___noreturn] = ACTIONS(37), - [anon_sym___cold] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(39), - [anon_sym___declspec] = ACTIONS(41), - [anon_sym___init] = ACTIONS(43), - [anon_sym___exit] = ACTIONS(43), - [anon_sym___cdecl] = ACTIONS(45), - [anon_sym___clrcall] = ACTIONS(45), - [anon_sym___stdcall] = ACTIONS(45), - [anon_sym___fastcall] = ACTIONS(45), - [anon_sym___thiscall] = ACTIONS(45), - [anon_sym___vectorcall] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(137), - [anon_sym_signed] = ACTIONS(49), - [anon_sym_unsigned] = ACTIONS(49), - [anon_sym_long] = ACTIONS(49), - [anon_sym_short] = ACTIONS(49), - [anon_sym_static] = ACTIONS(51), - [anon_sym_auto] = ACTIONS(51), - [anon_sym_register] = ACTIONS(51), - [anon_sym_inline] = ACTIONS(51), - [anon_sym___inline] = ACTIONS(51), - [anon_sym___inline__] = ACTIONS(51), - [anon_sym___forceinline] = ACTIONS(51), - [anon_sym_thread_local] = ACTIONS(51), - [anon_sym___thread] = ACTIONS(51), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [anon_sym_if] = ACTIONS(139), - [anon_sym_switch] = ACTIONS(141), - [anon_sym_case] = ACTIONS(143), - [anon_sym_default] = ACTIONS(145), - [anon_sym_while] = ACTIONS(147), - [anon_sym_do] = ACTIONS(149), - [anon_sym_for] = ACTIONS(151), - [anon_sym_return] = ACTIONS(153), - [anon_sym_break] = ACTIONS(155), - [anon_sym_continue] = ACTIONS(157), - [anon_sym_goto] = ACTIONS(159), - [anon_sym___try] = ACTIONS(161), - [anon_sym___leave] = ACTIONS(163), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - }, - [3] = { - [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(2266), - [sym_preproc_elif] = STATE(2266), - [sym_preproc_elifdef] = STATE(2266), - [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(149), - [sym_declaration] = STATE(22), - [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1238), - [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(468), - [sym_ms_declspec_modifier] = STATE(805), - [sym_macro_modifier] = STATE(777), - [sym_ms_call_modifier] = STATE(615), - [sym_compound_statement] = STATE(77), - [sym_storage_class_specifier] = STATE(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(896), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [sym_attributed_statement] = STATE(151), - [sym_statement] = STATE(22), - [sym_labeled_statement] = STATE(77), - [sym_expression_statement] = STATE(77), - [sym_if_statement] = STATE(77), - [sym_switch_statement] = STATE(77), - [sym_case_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_do_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_return_statement] = STATE(77), - [sym_break_statement] = STATE(77), - [sym_continue_statement] = STATE(77), - [sym_goto_statement] = STATE(77), - [sym_seh_try_statement] = STATE(77), - [sym_seh_leave_statement] = STATE(77), - [sym_expression] = STATE(1157), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2232), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(873), - [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_attributed_declarator_repeat1] = STATE(439), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), - [sym_identifier] = ACTIONS(109), - [aux_sym_preproc_include_token1] = ACTIONS(111), - [aux_sym_preproc_def_token1] = ACTIONS(113), - [aux_sym_preproc_if_token1] = ACTIONS(115), - [aux_sym_preproc_if_token2] = ACTIONS(169), - [aux_sym_preproc_ifdef_token1] = ACTIONS(119), - [aux_sym_preproc_ifdef_token2] = ACTIONS(119), - [aux_sym_preproc_else_token1] = ACTIONS(121), - [aux_sym_preproc_elif_token1] = ACTIONS(123), - [aux_sym_preproc_elifdef_token1] = ACTIONS(125), - [aux_sym_preproc_elifdef_token2] = ACTIONS(125), - [sym_preproc_directive] = ACTIONS(127), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(129), - [anon_sym___extension__] = ACTIONS(131), - [anon_sym_typedef] = ACTIONS(133), - [anon_sym_extern] = ACTIONS(135), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym___read_mostly] = ACTIONS(37), - [anon_sym___must_hold] = ACTIONS(33), - [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___noreturn] = ACTIONS(37), - [anon_sym___cold] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(39), - [anon_sym___declspec] = ACTIONS(41), - [anon_sym___init] = ACTIONS(43), - [anon_sym___exit] = ACTIONS(43), - [anon_sym___cdecl] = ACTIONS(45), - [anon_sym___clrcall] = ACTIONS(45), - [anon_sym___stdcall] = ACTIONS(45), - [anon_sym___fastcall] = ACTIONS(45), - [anon_sym___thiscall] = ACTIONS(45), - [anon_sym___vectorcall] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(137), - [anon_sym_signed] = ACTIONS(49), - [anon_sym_unsigned] = ACTIONS(49), - [anon_sym_long] = ACTIONS(49), - [anon_sym_short] = ACTIONS(49), - [anon_sym_static] = ACTIONS(51), - [anon_sym_auto] = ACTIONS(51), - [anon_sym_register] = ACTIONS(51), - [anon_sym_inline] = ACTIONS(51), - [anon_sym___inline] = ACTIONS(51), - [anon_sym___inline__] = ACTIONS(51), - [anon_sym___forceinline] = ACTIONS(51), - [anon_sym_thread_local] = ACTIONS(51), - [anon_sym___thread] = ACTIONS(51), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [anon_sym_if] = ACTIONS(139), - [anon_sym_switch] = ACTIONS(141), - [anon_sym_case] = ACTIONS(143), - [anon_sym_default] = ACTIONS(145), - [anon_sym_while] = ACTIONS(147), - [anon_sym_do] = ACTIONS(149), - [anon_sym_for] = ACTIONS(151), - [anon_sym_return] = ACTIONS(153), - [anon_sym_break] = ACTIONS(155), - [anon_sym_continue] = ACTIONS(157), - [anon_sym_goto] = ACTIONS(159), - [anon_sym___try] = ACTIONS(161), - [anon_sym___leave] = ACTIONS(163), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - }, - [4] = { - [sym__block_item] = STATE(3), - [sym_preproc_include] = STATE(3), - [sym_preproc_def] = STATE(3), - [sym_preproc_function_def] = STATE(3), - [sym_preproc_call] = STATE(3), - [sym_preproc_if] = STATE(3), - [sym_preproc_ifdef] = STATE(3), - [sym_preproc_else] = STATE(2158), - [sym_preproc_elif] = STATE(2158), - [sym_preproc_elifdef] = STATE(2158), - [sym_function_definition] = STATE(3), - [sym__old_style_function_definition] = STATE(149), - [sym_declaration] = STATE(3), - [sym_type_definition] = STATE(3), - [sym__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1238), - [sym_linkage_specification] = STATE(3), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(468), - [sym_ms_declspec_modifier] = STATE(805), - [sym_macro_modifier] = STATE(777), - [sym_ms_call_modifier] = STATE(615), - [sym_compound_statement] = STATE(77), - [sym_storage_class_specifier] = STATE(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(896), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [sym_attributed_statement] = STATE(151), - [sym_statement] = STATE(3), - [sym_labeled_statement] = STATE(77), - [sym_expression_statement] = STATE(77), - [sym_if_statement] = STATE(77), - [sym_switch_statement] = STATE(77), - [sym_case_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_do_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_return_statement] = STATE(77), - [sym_break_statement] = STATE(77), - [sym_continue_statement] = STATE(77), - [sym_goto_statement] = STATE(77), - [sym_seh_try_statement] = STATE(77), - [sym_seh_leave_statement] = STATE(77), - [sym_expression] = STATE(1157), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2232), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [sym__empty_declaration] = STATE(3), - [sym_macro_type_specifier] = STATE(873), - [aux_sym_preproc_if_repeat1] = STATE(3), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_attributed_declarator_repeat1] = STATE(439), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), - [sym_identifier] = ACTIONS(109), - [aux_sym_preproc_include_token1] = ACTIONS(111), - [aux_sym_preproc_def_token1] = ACTIONS(113), - [aux_sym_preproc_if_token1] = ACTIONS(115), - [aux_sym_preproc_if_token2] = ACTIONS(171), - [aux_sym_preproc_ifdef_token1] = ACTIONS(119), - [aux_sym_preproc_ifdef_token2] = ACTIONS(119), - [aux_sym_preproc_else_token1] = ACTIONS(121), - [aux_sym_preproc_elif_token1] = ACTIONS(123), - [aux_sym_preproc_elifdef_token1] = ACTIONS(125), - [aux_sym_preproc_elifdef_token2] = ACTIONS(125), - [sym_preproc_directive] = ACTIONS(127), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(129), - [anon_sym___extension__] = ACTIONS(131), - [anon_sym_typedef] = ACTIONS(133), - [anon_sym_extern] = ACTIONS(135), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym___read_mostly] = ACTIONS(37), - [anon_sym___must_hold] = ACTIONS(33), - [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___noreturn] = ACTIONS(37), - [anon_sym___cold] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(39), - [anon_sym___declspec] = ACTIONS(41), - [anon_sym___init] = ACTIONS(43), - [anon_sym___exit] = ACTIONS(43), - [anon_sym___cdecl] = ACTIONS(45), - [anon_sym___clrcall] = ACTIONS(45), - [anon_sym___stdcall] = ACTIONS(45), - [anon_sym___fastcall] = ACTIONS(45), - [anon_sym___thiscall] = ACTIONS(45), - [anon_sym___vectorcall] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(137), - [anon_sym_signed] = ACTIONS(49), - [anon_sym_unsigned] = ACTIONS(49), - [anon_sym_long] = ACTIONS(49), - [anon_sym_short] = ACTIONS(49), - [anon_sym_static] = ACTIONS(51), - [anon_sym_auto] = ACTIONS(51), - [anon_sym_register] = ACTIONS(51), - [anon_sym_inline] = ACTIONS(51), - [anon_sym___inline] = ACTIONS(51), - [anon_sym___inline__] = ACTIONS(51), - [anon_sym___forceinline] = ACTIONS(51), - [anon_sym_thread_local] = ACTIONS(51), - [anon_sym___thread] = ACTIONS(51), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [anon_sym_if] = ACTIONS(139), - [anon_sym_switch] = ACTIONS(141), - [anon_sym_case] = ACTIONS(143), - [anon_sym_default] = ACTIONS(145), - [anon_sym_while] = ACTIONS(147), - [anon_sym_do] = ACTIONS(149), - [anon_sym_for] = ACTIONS(151), - [anon_sym_return] = ACTIONS(153), - [anon_sym_break] = ACTIONS(155), - [anon_sym_continue] = ACTIONS(157), - [anon_sym_goto] = ACTIONS(159), - [anon_sym___try] = ACTIONS(161), - [anon_sym___leave] = ACTIONS(163), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - }, - [5] = { - [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(2161), - [sym_preproc_elif] = STATE(2161), - [sym_preproc_elifdef] = STATE(2161), - [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(149), - [sym_declaration] = STATE(22), - [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1238), - [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(468), - [sym_ms_declspec_modifier] = STATE(805), - [sym_macro_modifier] = STATE(777), - [sym_ms_call_modifier] = STATE(615), - [sym_compound_statement] = STATE(77), - [sym_storage_class_specifier] = STATE(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(896), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [sym_attributed_statement] = STATE(151), - [sym_statement] = STATE(22), - [sym_labeled_statement] = STATE(77), - [sym_expression_statement] = STATE(77), - [sym_if_statement] = STATE(77), - [sym_switch_statement] = STATE(77), - [sym_case_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_do_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_return_statement] = STATE(77), - [sym_break_statement] = STATE(77), - [sym_continue_statement] = STATE(77), - [sym_goto_statement] = STATE(77), - [sym_seh_try_statement] = STATE(77), - [sym_seh_leave_statement] = STATE(77), - [sym_expression] = STATE(1157), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2232), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(873), - [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_attributed_declarator_repeat1] = STATE(439), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), - [sym_identifier] = ACTIONS(109), - [aux_sym_preproc_include_token1] = ACTIONS(111), - [aux_sym_preproc_def_token1] = ACTIONS(113), - [aux_sym_preproc_if_token1] = ACTIONS(115), - [aux_sym_preproc_if_token2] = ACTIONS(173), - [aux_sym_preproc_ifdef_token1] = ACTIONS(119), - [aux_sym_preproc_ifdef_token2] = ACTIONS(119), - [aux_sym_preproc_else_token1] = ACTIONS(121), - [aux_sym_preproc_elif_token1] = ACTIONS(123), - [aux_sym_preproc_elifdef_token1] = ACTIONS(125), - [aux_sym_preproc_elifdef_token2] = ACTIONS(125), - [sym_preproc_directive] = ACTIONS(127), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(129), - [anon_sym___extension__] = ACTIONS(131), - [anon_sym_typedef] = ACTIONS(133), - [anon_sym_extern] = ACTIONS(135), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym___read_mostly] = ACTIONS(37), - [anon_sym___must_hold] = ACTIONS(33), - [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___noreturn] = ACTIONS(37), - [anon_sym___cold] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(39), - [anon_sym___declspec] = ACTIONS(41), - [anon_sym___init] = ACTIONS(43), - [anon_sym___exit] = ACTIONS(43), - [anon_sym___cdecl] = ACTIONS(45), - [anon_sym___clrcall] = ACTIONS(45), - [anon_sym___stdcall] = ACTIONS(45), - [anon_sym___fastcall] = ACTIONS(45), - [anon_sym___thiscall] = ACTIONS(45), - [anon_sym___vectorcall] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(137), - [anon_sym_signed] = ACTIONS(49), - [anon_sym_unsigned] = ACTIONS(49), - [anon_sym_long] = ACTIONS(49), - [anon_sym_short] = ACTIONS(49), - [anon_sym_static] = ACTIONS(51), - [anon_sym_auto] = ACTIONS(51), - [anon_sym_register] = ACTIONS(51), - [anon_sym_inline] = ACTIONS(51), - [anon_sym___inline] = ACTIONS(51), - [anon_sym___inline__] = ACTIONS(51), - [anon_sym___forceinline] = ACTIONS(51), - [anon_sym_thread_local] = ACTIONS(51), - [anon_sym___thread] = ACTIONS(51), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [anon_sym_if] = ACTIONS(139), - [anon_sym_switch] = ACTIONS(141), - [anon_sym_case] = ACTIONS(143), - [anon_sym_default] = ACTIONS(145), - [anon_sym_while] = ACTIONS(147), - [anon_sym_do] = ACTIONS(149), - [anon_sym_for] = ACTIONS(151), - [anon_sym_return] = ACTIONS(153), - [anon_sym_break] = ACTIONS(155), - [anon_sym_continue] = ACTIONS(157), - [anon_sym_goto] = ACTIONS(159), - [anon_sym___try] = ACTIONS(161), - [anon_sym___leave] = ACTIONS(163), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - }, - [6] = { - [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(2212), - [sym_preproc_elif] = STATE(2212), - [sym_preproc_elifdef] = STATE(2212), - [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(149), - [sym_declaration] = STATE(22), - [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1238), - [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(468), - [sym_ms_declspec_modifier] = STATE(805), - [sym_macro_modifier] = STATE(777), - [sym_ms_call_modifier] = STATE(615), - [sym_compound_statement] = STATE(77), - [sym_storage_class_specifier] = STATE(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(896), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [sym_attributed_statement] = STATE(151), - [sym_statement] = STATE(22), - [sym_labeled_statement] = STATE(77), - [sym_expression_statement] = STATE(77), - [sym_if_statement] = STATE(77), - [sym_switch_statement] = STATE(77), - [sym_case_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_do_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_return_statement] = STATE(77), - [sym_break_statement] = STATE(77), - [sym_continue_statement] = STATE(77), - [sym_goto_statement] = STATE(77), - [sym_seh_try_statement] = STATE(77), - [sym_seh_leave_statement] = STATE(77), - [sym_expression] = STATE(1157), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2232), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(873), - [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_attributed_declarator_repeat1] = STATE(439), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), - [sym_identifier] = ACTIONS(109), - [aux_sym_preproc_include_token1] = ACTIONS(111), - [aux_sym_preproc_def_token1] = ACTIONS(113), - [aux_sym_preproc_if_token1] = ACTIONS(115), - [aux_sym_preproc_if_token2] = ACTIONS(175), - [aux_sym_preproc_ifdef_token1] = ACTIONS(119), - [aux_sym_preproc_ifdef_token2] = ACTIONS(119), - [aux_sym_preproc_else_token1] = ACTIONS(121), - [aux_sym_preproc_elif_token1] = ACTIONS(123), - [aux_sym_preproc_elifdef_token1] = ACTIONS(125), - [aux_sym_preproc_elifdef_token2] = ACTIONS(125), - [sym_preproc_directive] = ACTIONS(127), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(129), - [anon_sym___extension__] = ACTIONS(131), - [anon_sym_typedef] = ACTIONS(133), - [anon_sym_extern] = ACTIONS(135), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym___read_mostly] = ACTIONS(37), - [anon_sym___must_hold] = ACTIONS(33), - [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___noreturn] = ACTIONS(37), - [anon_sym___cold] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(39), - [anon_sym___declspec] = ACTIONS(41), - [anon_sym___init] = ACTIONS(43), - [anon_sym___exit] = ACTIONS(43), - [anon_sym___cdecl] = ACTIONS(45), - [anon_sym___clrcall] = ACTIONS(45), - [anon_sym___stdcall] = ACTIONS(45), - [anon_sym___fastcall] = ACTIONS(45), - [anon_sym___thiscall] = ACTIONS(45), - [anon_sym___vectorcall] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(137), - [anon_sym_signed] = ACTIONS(49), - [anon_sym_unsigned] = ACTIONS(49), - [anon_sym_long] = ACTIONS(49), - [anon_sym_short] = ACTIONS(49), - [anon_sym_static] = ACTIONS(51), - [anon_sym_auto] = ACTIONS(51), - [anon_sym_register] = ACTIONS(51), - [anon_sym_inline] = ACTIONS(51), - [anon_sym___inline] = ACTIONS(51), - [anon_sym___inline__] = ACTIONS(51), - [anon_sym___forceinline] = ACTIONS(51), - [anon_sym_thread_local] = ACTIONS(51), - [anon_sym___thread] = ACTIONS(51), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [anon_sym_if] = ACTIONS(139), - [anon_sym_switch] = ACTIONS(141), - [anon_sym_case] = ACTIONS(143), - [anon_sym_default] = ACTIONS(145), - [anon_sym_while] = ACTIONS(147), - [anon_sym_do] = ACTIONS(149), - [anon_sym_for] = ACTIONS(151), - [anon_sym_return] = ACTIONS(153), - [anon_sym_break] = ACTIONS(155), - [anon_sym_continue] = ACTIONS(157), - [anon_sym_goto] = ACTIONS(159), - [anon_sym___try] = ACTIONS(161), - [anon_sym___leave] = ACTIONS(163), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - }, - [7] = { - [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(2163), - [sym_preproc_elif] = STATE(2163), - [sym_preproc_elifdef] = STATE(2163), - [sym_function_definition] = STATE(20), - [sym__old_style_function_definition] = STATE(149), - [sym_declaration] = STATE(20), - [sym_type_definition] = STATE(20), - [sym__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1238), - [sym_linkage_specification] = STATE(20), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(468), - [sym_ms_declspec_modifier] = STATE(805), - [sym_macro_modifier] = STATE(777), - [sym_ms_call_modifier] = STATE(615), - [sym_compound_statement] = STATE(77), - [sym_storage_class_specifier] = STATE(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(896), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [sym_attributed_statement] = STATE(151), - [sym_statement] = STATE(20), - [sym_labeled_statement] = STATE(77), - [sym_expression_statement] = STATE(77), - [sym_if_statement] = STATE(77), - [sym_switch_statement] = STATE(77), - [sym_case_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_do_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_return_statement] = STATE(77), - [sym_break_statement] = STATE(77), - [sym_continue_statement] = STATE(77), - [sym_goto_statement] = STATE(77), - [sym_seh_try_statement] = STATE(77), - [sym_seh_leave_statement] = STATE(77), - [sym_expression] = STATE(1157), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2232), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(873), - [aux_sym_preproc_if_repeat1] = STATE(20), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_attributed_declarator_repeat1] = STATE(439), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), - [sym_identifier] = ACTIONS(109), - [aux_sym_preproc_include_token1] = ACTIONS(111), - [aux_sym_preproc_def_token1] = ACTIONS(113), - [aux_sym_preproc_if_token1] = ACTIONS(115), - [aux_sym_preproc_if_token2] = ACTIONS(177), - [aux_sym_preproc_ifdef_token1] = ACTIONS(119), - [aux_sym_preproc_ifdef_token2] = ACTIONS(119), - [aux_sym_preproc_else_token1] = ACTIONS(121), - [aux_sym_preproc_elif_token1] = ACTIONS(123), - [aux_sym_preproc_elifdef_token1] = ACTIONS(125), - [aux_sym_preproc_elifdef_token2] = ACTIONS(125), - [sym_preproc_directive] = ACTIONS(127), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(129), - [anon_sym___extension__] = ACTIONS(131), - [anon_sym_typedef] = ACTIONS(133), - [anon_sym_extern] = ACTIONS(135), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym___read_mostly] = ACTIONS(37), - [anon_sym___must_hold] = ACTIONS(33), - [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___noreturn] = ACTIONS(37), - [anon_sym___cold] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(39), - [anon_sym___declspec] = ACTIONS(41), - [anon_sym___init] = ACTIONS(43), - [anon_sym___exit] = ACTIONS(43), - [anon_sym___cdecl] = ACTIONS(45), - [anon_sym___clrcall] = ACTIONS(45), - [anon_sym___stdcall] = ACTIONS(45), - [anon_sym___fastcall] = ACTIONS(45), - [anon_sym___thiscall] = ACTIONS(45), - [anon_sym___vectorcall] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(137), - [anon_sym_signed] = ACTIONS(49), - [anon_sym_unsigned] = ACTIONS(49), - [anon_sym_long] = ACTIONS(49), - [anon_sym_short] = ACTIONS(49), - [anon_sym_static] = ACTIONS(51), - [anon_sym_auto] = ACTIONS(51), - [anon_sym_register] = ACTIONS(51), - [anon_sym_inline] = ACTIONS(51), - [anon_sym___inline] = ACTIONS(51), - [anon_sym___inline__] = ACTIONS(51), - [anon_sym___forceinline] = ACTIONS(51), - [anon_sym_thread_local] = ACTIONS(51), - [anon_sym___thread] = ACTIONS(51), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [anon_sym_if] = ACTIONS(139), - [anon_sym_switch] = ACTIONS(141), - [anon_sym_case] = ACTIONS(143), - [anon_sym_default] = ACTIONS(145), - [anon_sym_while] = ACTIONS(147), - [anon_sym_do] = ACTIONS(149), - [anon_sym_for] = ACTIONS(151), - [anon_sym_return] = ACTIONS(153), - [anon_sym_break] = ACTIONS(155), - [anon_sym_continue] = ACTIONS(157), - [anon_sym_goto] = ACTIONS(159), - [anon_sym___try] = ACTIONS(161), - [anon_sym___leave] = ACTIONS(163), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - }, - [8] = { - [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(2205), - [sym_preproc_elif] = STATE(2205), - [sym_preproc_elifdef] = STATE(2205), - [sym_function_definition] = STATE(17), - [sym__old_style_function_definition] = STATE(149), - [sym_declaration] = STATE(17), - [sym_type_definition] = STATE(17), - [sym__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1238), - [sym_linkage_specification] = STATE(17), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(468), - [sym_ms_declspec_modifier] = STATE(805), - [sym_macro_modifier] = STATE(777), - [sym_ms_call_modifier] = STATE(615), - [sym_compound_statement] = STATE(77), - [sym_storage_class_specifier] = STATE(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(896), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [sym_attributed_statement] = STATE(151), - [sym_statement] = STATE(17), - [sym_labeled_statement] = STATE(77), - [sym_expression_statement] = STATE(77), - [sym_if_statement] = STATE(77), - [sym_switch_statement] = STATE(77), - [sym_case_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_do_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_return_statement] = STATE(77), - [sym_break_statement] = STATE(77), - [sym_continue_statement] = STATE(77), - [sym_goto_statement] = STATE(77), - [sym_seh_try_statement] = STATE(77), - [sym_seh_leave_statement] = STATE(77), - [sym_expression] = STATE(1157), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2232), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [sym__empty_declaration] = STATE(17), - [sym_macro_type_specifier] = STATE(873), - [aux_sym_preproc_if_repeat1] = STATE(17), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_attributed_declarator_repeat1] = STATE(439), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), - [sym_identifier] = ACTIONS(109), - [aux_sym_preproc_include_token1] = ACTIONS(111), - [aux_sym_preproc_def_token1] = ACTIONS(113), - [aux_sym_preproc_if_token1] = ACTIONS(115), - [aux_sym_preproc_if_token2] = ACTIONS(179), - [aux_sym_preproc_ifdef_token1] = ACTIONS(119), - [aux_sym_preproc_ifdef_token2] = ACTIONS(119), - [aux_sym_preproc_else_token1] = ACTIONS(121), - [aux_sym_preproc_elif_token1] = ACTIONS(123), - [aux_sym_preproc_elifdef_token1] = ACTIONS(125), - [aux_sym_preproc_elifdef_token2] = ACTIONS(125), - [sym_preproc_directive] = ACTIONS(127), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(129), - [anon_sym___extension__] = ACTIONS(131), - [anon_sym_typedef] = ACTIONS(133), - [anon_sym_extern] = ACTIONS(135), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym___read_mostly] = ACTIONS(37), - [anon_sym___must_hold] = ACTIONS(33), - [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___noreturn] = ACTIONS(37), - [anon_sym___cold] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(39), - [anon_sym___declspec] = ACTIONS(41), - [anon_sym___init] = ACTIONS(43), - [anon_sym___exit] = ACTIONS(43), - [anon_sym___cdecl] = ACTIONS(45), - [anon_sym___clrcall] = ACTIONS(45), - [anon_sym___stdcall] = ACTIONS(45), - [anon_sym___fastcall] = ACTIONS(45), - [anon_sym___thiscall] = ACTIONS(45), - [anon_sym___vectorcall] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(137), - [anon_sym_signed] = ACTIONS(49), - [anon_sym_unsigned] = ACTIONS(49), - [anon_sym_long] = ACTIONS(49), - [anon_sym_short] = ACTIONS(49), - [anon_sym_static] = ACTIONS(51), - [anon_sym_auto] = ACTIONS(51), - [anon_sym_register] = ACTIONS(51), - [anon_sym_inline] = ACTIONS(51), - [anon_sym___inline] = ACTIONS(51), - [anon_sym___inline__] = ACTIONS(51), - [anon_sym___forceinline] = ACTIONS(51), - [anon_sym_thread_local] = ACTIONS(51), - [anon_sym___thread] = ACTIONS(51), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [anon_sym_if] = ACTIONS(139), - [anon_sym_switch] = ACTIONS(141), - [anon_sym_case] = ACTIONS(143), - [anon_sym_default] = ACTIONS(145), - [anon_sym_while] = ACTIONS(147), - [anon_sym_do] = ACTIONS(149), - [anon_sym_for] = ACTIONS(151), - [anon_sym_return] = ACTIONS(153), - [anon_sym_break] = ACTIONS(155), - [anon_sym_continue] = ACTIONS(157), - [anon_sym_goto] = ACTIONS(159), - [anon_sym___try] = ACTIONS(161), - [anon_sym___leave] = ACTIONS(163), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - }, - [9] = { - [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(2035), - [sym_preproc_elif] = STATE(2035), - [sym_preproc_elifdef] = STATE(2035), - [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(149), - [sym_declaration] = STATE(22), - [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1238), - [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(468), - [sym_ms_declspec_modifier] = STATE(805), - [sym_macro_modifier] = STATE(777), - [sym_ms_call_modifier] = STATE(615), - [sym_compound_statement] = STATE(77), - [sym_storage_class_specifier] = STATE(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(896), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [sym_attributed_statement] = STATE(151), - [sym_statement] = STATE(22), - [sym_labeled_statement] = STATE(77), - [sym_expression_statement] = STATE(77), - [sym_if_statement] = STATE(77), - [sym_switch_statement] = STATE(77), - [sym_case_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_do_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_return_statement] = STATE(77), - [sym_break_statement] = STATE(77), - [sym_continue_statement] = STATE(77), - [sym_goto_statement] = STATE(77), - [sym_seh_try_statement] = STATE(77), - [sym_seh_leave_statement] = STATE(77), - [sym_expression] = STATE(1157), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2232), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(873), - [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_attributed_declarator_repeat1] = STATE(439), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), - [sym_identifier] = ACTIONS(109), - [aux_sym_preproc_include_token1] = ACTIONS(111), - [aux_sym_preproc_def_token1] = ACTIONS(113), - [aux_sym_preproc_if_token1] = ACTIONS(115), - [aux_sym_preproc_if_token2] = ACTIONS(181), - [aux_sym_preproc_ifdef_token1] = ACTIONS(119), - [aux_sym_preproc_ifdef_token2] = ACTIONS(119), - [aux_sym_preproc_else_token1] = ACTIONS(121), - [aux_sym_preproc_elif_token1] = ACTIONS(123), - [aux_sym_preproc_elifdef_token1] = ACTIONS(125), - [aux_sym_preproc_elifdef_token2] = ACTIONS(125), - [sym_preproc_directive] = ACTIONS(127), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(129), - [anon_sym___extension__] = ACTIONS(131), - [anon_sym_typedef] = ACTIONS(133), - [anon_sym_extern] = ACTIONS(135), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym___read_mostly] = ACTIONS(37), - [anon_sym___must_hold] = ACTIONS(33), - [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___noreturn] = ACTIONS(37), - [anon_sym___cold] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(39), - [anon_sym___declspec] = ACTIONS(41), - [anon_sym___init] = ACTIONS(43), - [anon_sym___exit] = ACTIONS(43), - [anon_sym___cdecl] = ACTIONS(45), - [anon_sym___clrcall] = ACTIONS(45), - [anon_sym___stdcall] = ACTIONS(45), - [anon_sym___fastcall] = ACTIONS(45), - [anon_sym___thiscall] = ACTIONS(45), - [anon_sym___vectorcall] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(137), - [anon_sym_signed] = ACTIONS(49), - [anon_sym_unsigned] = ACTIONS(49), - [anon_sym_long] = ACTIONS(49), - [anon_sym_short] = ACTIONS(49), - [anon_sym_static] = ACTIONS(51), - [anon_sym_auto] = ACTIONS(51), - [anon_sym_register] = ACTIONS(51), - [anon_sym_inline] = ACTIONS(51), - [anon_sym___inline] = ACTIONS(51), - [anon_sym___inline__] = ACTIONS(51), - [anon_sym___forceinline] = ACTIONS(51), - [anon_sym_thread_local] = ACTIONS(51), - [anon_sym___thread] = ACTIONS(51), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [anon_sym_if] = ACTIONS(139), - [anon_sym_switch] = ACTIONS(141), - [anon_sym_case] = ACTIONS(143), - [anon_sym_default] = ACTIONS(145), - [anon_sym_while] = ACTIONS(147), - [anon_sym_do] = ACTIONS(149), - [anon_sym_for] = ACTIONS(151), - [anon_sym_return] = ACTIONS(153), - [anon_sym_break] = ACTIONS(155), - [anon_sym_continue] = ACTIONS(157), - [anon_sym_goto] = ACTIONS(159), - [anon_sym___try] = ACTIONS(161), - [anon_sym___leave] = ACTIONS(163), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - }, - [10] = { - [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(2172), - [sym_preproc_elif] = STATE(2172), - [sym_preproc_elifdef] = STATE(2172), - [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(149), - [sym_declaration] = STATE(22), - [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1238), - [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(468), - [sym_ms_declspec_modifier] = STATE(805), - [sym_macro_modifier] = STATE(777), - [sym_ms_call_modifier] = STATE(615), - [sym_compound_statement] = STATE(77), - [sym_storage_class_specifier] = STATE(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(896), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [sym_attributed_statement] = STATE(151), - [sym_statement] = STATE(22), - [sym_labeled_statement] = STATE(77), - [sym_expression_statement] = STATE(77), - [sym_if_statement] = STATE(77), - [sym_switch_statement] = STATE(77), - [sym_case_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_do_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_return_statement] = STATE(77), - [sym_break_statement] = STATE(77), - [sym_continue_statement] = STATE(77), - [sym_goto_statement] = STATE(77), - [sym_seh_try_statement] = STATE(77), - [sym_seh_leave_statement] = STATE(77), - [sym_expression] = STATE(1157), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2232), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(873), - [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_attributed_declarator_repeat1] = STATE(439), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), - [sym_identifier] = ACTIONS(109), - [aux_sym_preproc_include_token1] = ACTIONS(111), - [aux_sym_preproc_def_token1] = ACTIONS(113), - [aux_sym_preproc_if_token1] = ACTIONS(115), - [aux_sym_preproc_if_token2] = ACTIONS(183), - [aux_sym_preproc_ifdef_token1] = ACTIONS(119), - [aux_sym_preproc_ifdef_token2] = ACTIONS(119), - [aux_sym_preproc_else_token1] = ACTIONS(121), - [aux_sym_preproc_elif_token1] = ACTIONS(123), - [aux_sym_preproc_elifdef_token1] = ACTIONS(125), - [aux_sym_preproc_elifdef_token2] = ACTIONS(125), - [sym_preproc_directive] = ACTIONS(127), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(129), - [anon_sym___extension__] = ACTIONS(131), - [anon_sym_typedef] = ACTIONS(133), - [anon_sym_extern] = ACTIONS(135), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym___read_mostly] = ACTIONS(37), - [anon_sym___must_hold] = ACTIONS(33), - [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___noreturn] = ACTIONS(37), - [anon_sym___cold] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(39), - [anon_sym___declspec] = ACTIONS(41), - [anon_sym___init] = ACTIONS(43), - [anon_sym___exit] = ACTIONS(43), - [anon_sym___cdecl] = ACTIONS(45), - [anon_sym___clrcall] = ACTIONS(45), - [anon_sym___stdcall] = ACTIONS(45), - [anon_sym___fastcall] = ACTIONS(45), - [anon_sym___thiscall] = ACTIONS(45), - [anon_sym___vectorcall] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(137), - [anon_sym_signed] = ACTIONS(49), - [anon_sym_unsigned] = ACTIONS(49), - [anon_sym_long] = ACTIONS(49), - [anon_sym_short] = ACTIONS(49), - [anon_sym_static] = ACTIONS(51), - [anon_sym_auto] = ACTIONS(51), - [anon_sym_register] = ACTIONS(51), - [anon_sym_inline] = ACTIONS(51), - [anon_sym___inline] = ACTIONS(51), - [anon_sym___inline__] = ACTIONS(51), - [anon_sym___forceinline] = ACTIONS(51), - [anon_sym_thread_local] = ACTIONS(51), - [anon_sym___thread] = ACTIONS(51), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [anon_sym_if] = ACTIONS(139), - [anon_sym_switch] = ACTIONS(141), - [anon_sym_case] = ACTIONS(143), - [anon_sym_default] = ACTIONS(145), - [anon_sym_while] = ACTIONS(147), - [anon_sym_do] = ACTIONS(149), - [anon_sym_for] = ACTIONS(151), - [anon_sym_return] = ACTIONS(153), - [anon_sym_break] = ACTIONS(155), - [anon_sym_continue] = ACTIONS(157), - [anon_sym_goto] = ACTIONS(159), - [anon_sym___try] = ACTIONS(161), - [anon_sym___leave] = ACTIONS(163), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - }, - [11] = { - [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(2036), - [sym_preproc_elif] = STATE(2036), - [sym_preproc_elifdef] = STATE(2036), - [sym_function_definition] = STATE(10), - [sym__old_style_function_definition] = STATE(149), - [sym_declaration] = STATE(10), - [sym_type_definition] = STATE(10), - [sym__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1238), - [sym_linkage_specification] = STATE(10), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(468), - [sym_ms_declspec_modifier] = STATE(805), - [sym_macro_modifier] = STATE(777), - [sym_ms_call_modifier] = STATE(615), - [sym_compound_statement] = STATE(77), - [sym_storage_class_specifier] = STATE(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(896), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [sym_attributed_statement] = STATE(151), - [sym_statement] = STATE(10), - [sym_labeled_statement] = STATE(77), - [sym_expression_statement] = STATE(77), - [sym_if_statement] = STATE(77), - [sym_switch_statement] = STATE(77), - [sym_case_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_do_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_return_statement] = STATE(77), - [sym_break_statement] = STATE(77), - [sym_continue_statement] = STATE(77), - [sym_goto_statement] = STATE(77), - [sym_seh_try_statement] = STATE(77), - [sym_seh_leave_statement] = STATE(77), - [sym_expression] = STATE(1157), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2232), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [sym__empty_declaration] = STATE(10), - [sym_macro_type_specifier] = STATE(873), - [aux_sym_preproc_if_repeat1] = STATE(10), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_attributed_declarator_repeat1] = STATE(439), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), - [sym_identifier] = ACTIONS(109), - [aux_sym_preproc_include_token1] = ACTIONS(111), - [aux_sym_preproc_def_token1] = ACTIONS(113), - [aux_sym_preproc_if_token1] = ACTIONS(115), - [aux_sym_preproc_if_token2] = ACTIONS(185), - [aux_sym_preproc_ifdef_token1] = ACTIONS(119), - [aux_sym_preproc_ifdef_token2] = ACTIONS(119), - [aux_sym_preproc_else_token1] = ACTIONS(121), - [aux_sym_preproc_elif_token1] = ACTIONS(123), - [aux_sym_preproc_elifdef_token1] = ACTIONS(125), - [aux_sym_preproc_elifdef_token2] = ACTIONS(125), - [sym_preproc_directive] = ACTIONS(127), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(129), - [anon_sym___extension__] = ACTIONS(131), - [anon_sym_typedef] = ACTIONS(133), - [anon_sym_extern] = ACTIONS(135), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym___read_mostly] = ACTIONS(37), - [anon_sym___must_hold] = ACTIONS(33), - [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___noreturn] = ACTIONS(37), - [anon_sym___cold] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(39), - [anon_sym___declspec] = ACTIONS(41), - [anon_sym___init] = ACTIONS(43), - [anon_sym___exit] = ACTIONS(43), - [anon_sym___cdecl] = ACTIONS(45), - [anon_sym___clrcall] = ACTIONS(45), - [anon_sym___stdcall] = ACTIONS(45), - [anon_sym___fastcall] = ACTIONS(45), - [anon_sym___thiscall] = ACTIONS(45), - [anon_sym___vectorcall] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(137), - [anon_sym_signed] = ACTIONS(49), - [anon_sym_unsigned] = ACTIONS(49), - [anon_sym_long] = ACTIONS(49), - [anon_sym_short] = ACTIONS(49), - [anon_sym_static] = ACTIONS(51), - [anon_sym_auto] = ACTIONS(51), - [anon_sym_register] = ACTIONS(51), - [anon_sym_inline] = ACTIONS(51), - [anon_sym___inline] = ACTIONS(51), - [anon_sym___inline__] = ACTIONS(51), - [anon_sym___forceinline] = ACTIONS(51), - [anon_sym_thread_local] = ACTIONS(51), - [anon_sym___thread] = ACTIONS(51), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [anon_sym_if] = ACTIONS(139), - [anon_sym_switch] = ACTIONS(141), - [anon_sym_case] = ACTIONS(143), - [anon_sym_default] = ACTIONS(145), - [anon_sym_while] = ACTIONS(147), - [anon_sym_do] = ACTIONS(149), - [anon_sym_for] = ACTIONS(151), - [anon_sym_return] = ACTIONS(153), - [anon_sym_break] = ACTIONS(155), - [anon_sym_continue] = ACTIONS(157), - [anon_sym_goto] = ACTIONS(159), - [anon_sym___try] = ACTIONS(161), - [anon_sym___leave] = ACTIONS(163), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - }, - [12] = { - [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(2165), - [sym_preproc_elif] = STATE(2165), - [sym_preproc_elifdef] = STATE(2165), - [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(149), - [sym_declaration] = STATE(22), - [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1238), - [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(468), - [sym_ms_declspec_modifier] = STATE(805), - [sym_macro_modifier] = STATE(777), - [sym_ms_call_modifier] = STATE(615), - [sym_compound_statement] = STATE(77), - [sym_storage_class_specifier] = STATE(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(896), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [sym_attributed_statement] = STATE(151), - [sym_statement] = STATE(22), - [sym_labeled_statement] = STATE(77), - [sym_expression_statement] = STATE(77), - [sym_if_statement] = STATE(77), - [sym_switch_statement] = STATE(77), - [sym_case_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_do_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_return_statement] = STATE(77), - [sym_break_statement] = STATE(77), - [sym_continue_statement] = STATE(77), - [sym_goto_statement] = STATE(77), - [sym_seh_try_statement] = STATE(77), - [sym_seh_leave_statement] = STATE(77), - [sym_expression] = STATE(1157), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2232), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(873), - [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_attributed_declarator_repeat1] = STATE(439), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), - [sym_identifier] = ACTIONS(109), - [aux_sym_preproc_include_token1] = ACTIONS(111), - [aux_sym_preproc_def_token1] = ACTIONS(113), - [aux_sym_preproc_if_token1] = ACTIONS(115), - [aux_sym_preproc_if_token2] = ACTIONS(187), - [aux_sym_preproc_ifdef_token1] = ACTIONS(119), - [aux_sym_preproc_ifdef_token2] = ACTIONS(119), - [aux_sym_preproc_else_token1] = ACTIONS(121), - [aux_sym_preproc_elif_token1] = ACTIONS(123), - [aux_sym_preproc_elifdef_token1] = ACTIONS(125), - [aux_sym_preproc_elifdef_token2] = ACTIONS(125), - [sym_preproc_directive] = ACTIONS(127), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(129), - [anon_sym___extension__] = ACTIONS(131), - [anon_sym_typedef] = ACTIONS(133), - [anon_sym_extern] = ACTIONS(135), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym___read_mostly] = ACTIONS(37), - [anon_sym___must_hold] = ACTIONS(33), - [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___noreturn] = ACTIONS(37), - [anon_sym___cold] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(39), - [anon_sym___declspec] = ACTIONS(41), - [anon_sym___init] = ACTIONS(43), - [anon_sym___exit] = ACTIONS(43), - [anon_sym___cdecl] = ACTIONS(45), - [anon_sym___clrcall] = ACTIONS(45), - [anon_sym___stdcall] = ACTIONS(45), - [anon_sym___fastcall] = ACTIONS(45), - [anon_sym___thiscall] = ACTIONS(45), - [anon_sym___vectorcall] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(137), - [anon_sym_signed] = ACTIONS(49), - [anon_sym_unsigned] = ACTIONS(49), - [anon_sym_long] = ACTIONS(49), - [anon_sym_short] = ACTIONS(49), - [anon_sym_static] = ACTIONS(51), - [anon_sym_auto] = ACTIONS(51), - [anon_sym_register] = ACTIONS(51), - [anon_sym_inline] = ACTIONS(51), - [anon_sym___inline] = ACTIONS(51), - [anon_sym___inline__] = ACTIONS(51), - [anon_sym___forceinline] = ACTIONS(51), - [anon_sym_thread_local] = ACTIONS(51), - [anon_sym___thread] = ACTIONS(51), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [anon_sym_if] = ACTIONS(139), - [anon_sym_switch] = ACTIONS(141), - [anon_sym_case] = ACTIONS(143), - [anon_sym_default] = ACTIONS(145), - [anon_sym_while] = ACTIONS(147), - [anon_sym_do] = ACTIONS(149), - [anon_sym_for] = ACTIONS(151), - [anon_sym_return] = ACTIONS(153), - [anon_sym_break] = ACTIONS(155), - [anon_sym_continue] = ACTIONS(157), - [anon_sym_goto] = ACTIONS(159), - [anon_sym___try] = ACTIONS(161), - [anon_sym___leave] = ACTIONS(163), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - }, - [13] = { - [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(2059), - [sym_preproc_elif] = STATE(2059), - [sym_preproc_elifdef] = STATE(2059), - [sym_function_definition] = STATE(9), - [sym__old_style_function_definition] = STATE(149), - [sym_declaration] = STATE(9), - [sym_type_definition] = STATE(9), - [sym__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1238), - [sym_linkage_specification] = STATE(9), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(468), - [sym_ms_declspec_modifier] = STATE(805), - [sym_macro_modifier] = STATE(777), - [sym_ms_call_modifier] = STATE(615), - [sym_compound_statement] = STATE(77), - [sym_storage_class_specifier] = STATE(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(896), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [sym_attributed_statement] = STATE(151), - [sym_statement] = STATE(9), - [sym_labeled_statement] = STATE(77), - [sym_expression_statement] = STATE(77), - [sym_if_statement] = STATE(77), - [sym_switch_statement] = STATE(77), - [sym_case_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_do_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_return_statement] = STATE(77), - [sym_break_statement] = STATE(77), - [sym_continue_statement] = STATE(77), - [sym_goto_statement] = STATE(77), - [sym_seh_try_statement] = STATE(77), - [sym_seh_leave_statement] = STATE(77), - [sym_expression] = STATE(1157), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2232), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [sym__empty_declaration] = STATE(9), - [sym_macro_type_specifier] = STATE(873), - [aux_sym_preproc_if_repeat1] = STATE(9), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_attributed_declarator_repeat1] = STATE(439), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), - [sym_identifier] = ACTIONS(109), - [aux_sym_preproc_include_token1] = ACTIONS(111), - [aux_sym_preproc_def_token1] = ACTIONS(113), - [aux_sym_preproc_if_token1] = ACTIONS(115), - [aux_sym_preproc_if_token2] = ACTIONS(189), - [aux_sym_preproc_ifdef_token1] = ACTIONS(119), - [aux_sym_preproc_ifdef_token2] = ACTIONS(119), - [aux_sym_preproc_else_token1] = ACTIONS(121), - [aux_sym_preproc_elif_token1] = ACTIONS(123), - [aux_sym_preproc_elifdef_token1] = ACTIONS(125), - [aux_sym_preproc_elifdef_token2] = ACTIONS(125), - [sym_preproc_directive] = ACTIONS(127), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(129), - [anon_sym___extension__] = ACTIONS(131), - [anon_sym_typedef] = ACTIONS(133), - [anon_sym_extern] = ACTIONS(135), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym___read_mostly] = ACTIONS(37), - [anon_sym___must_hold] = ACTIONS(33), - [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___noreturn] = ACTIONS(37), - [anon_sym___cold] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(39), - [anon_sym___declspec] = ACTIONS(41), - [anon_sym___init] = ACTIONS(43), - [anon_sym___exit] = ACTIONS(43), - [anon_sym___cdecl] = ACTIONS(45), - [anon_sym___clrcall] = ACTIONS(45), - [anon_sym___stdcall] = ACTIONS(45), - [anon_sym___fastcall] = ACTIONS(45), - [anon_sym___thiscall] = ACTIONS(45), - [anon_sym___vectorcall] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(137), - [anon_sym_signed] = ACTIONS(49), - [anon_sym_unsigned] = ACTIONS(49), - [anon_sym_long] = ACTIONS(49), - [anon_sym_short] = ACTIONS(49), - [anon_sym_static] = ACTIONS(51), - [anon_sym_auto] = ACTIONS(51), - [anon_sym_register] = ACTIONS(51), - [anon_sym_inline] = ACTIONS(51), - [anon_sym___inline] = ACTIONS(51), - [anon_sym___inline__] = ACTIONS(51), - [anon_sym___forceinline] = ACTIONS(51), - [anon_sym_thread_local] = ACTIONS(51), - [anon_sym___thread] = ACTIONS(51), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [anon_sym_if] = ACTIONS(139), - [anon_sym_switch] = ACTIONS(141), - [anon_sym_case] = ACTIONS(143), - [anon_sym_default] = ACTIONS(145), - [anon_sym_while] = ACTIONS(147), - [anon_sym_do] = ACTIONS(149), - [anon_sym_for] = ACTIONS(151), - [anon_sym_return] = ACTIONS(153), - [anon_sym_break] = ACTIONS(155), - [anon_sym_continue] = ACTIONS(157), - [anon_sym_goto] = ACTIONS(159), - [anon_sym___try] = ACTIONS(161), - [anon_sym___leave] = ACTIONS(163), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - }, - [14] = { - [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(2196), - [sym_preproc_elif] = STATE(2196), - [sym_preproc_elifdef] = STATE(2196), - [sym_function_definition] = STATE(16), - [sym__old_style_function_definition] = STATE(149), - [sym_declaration] = STATE(16), - [sym_type_definition] = STATE(16), - [sym__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1238), - [sym_linkage_specification] = STATE(16), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(468), - [sym_ms_declspec_modifier] = STATE(805), - [sym_macro_modifier] = STATE(777), - [sym_ms_call_modifier] = STATE(615), - [sym_compound_statement] = STATE(77), - [sym_storage_class_specifier] = STATE(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(896), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [sym_attributed_statement] = STATE(151), - [sym_statement] = STATE(16), - [sym_labeled_statement] = STATE(77), - [sym_expression_statement] = STATE(77), - [sym_if_statement] = STATE(77), - [sym_switch_statement] = STATE(77), - [sym_case_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_do_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_return_statement] = STATE(77), - [sym_break_statement] = STATE(77), - [sym_continue_statement] = STATE(77), - [sym_goto_statement] = STATE(77), - [sym_seh_try_statement] = STATE(77), - [sym_seh_leave_statement] = STATE(77), - [sym_expression] = STATE(1157), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2232), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [sym__empty_declaration] = STATE(16), - [sym_macro_type_specifier] = STATE(873), - [aux_sym_preproc_if_repeat1] = STATE(16), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_attributed_declarator_repeat1] = STATE(439), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), - [sym_identifier] = ACTIONS(109), - [aux_sym_preproc_include_token1] = ACTIONS(111), - [aux_sym_preproc_def_token1] = ACTIONS(113), - [aux_sym_preproc_if_token1] = ACTIONS(115), - [aux_sym_preproc_if_token2] = ACTIONS(191), - [aux_sym_preproc_ifdef_token1] = ACTIONS(119), - [aux_sym_preproc_ifdef_token2] = ACTIONS(119), - [aux_sym_preproc_else_token1] = ACTIONS(121), - [aux_sym_preproc_elif_token1] = ACTIONS(123), - [aux_sym_preproc_elifdef_token1] = ACTIONS(125), - [aux_sym_preproc_elifdef_token2] = ACTIONS(125), - [sym_preproc_directive] = ACTIONS(127), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(129), - [anon_sym___extension__] = ACTIONS(131), - [anon_sym_typedef] = ACTIONS(133), - [anon_sym_extern] = ACTIONS(135), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym___read_mostly] = ACTIONS(37), - [anon_sym___must_hold] = ACTIONS(33), - [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___noreturn] = ACTIONS(37), - [anon_sym___cold] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(39), - [anon_sym___declspec] = ACTIONS(41), - [anon_sym___init] = ACTIONS(43), - [anon_sym___exit] = ACTIONS(43), - [anon_sym___cdecl] = ACTIONS(45), - [anon_sym___clrcall] = ACTIONS(45), - [anon_sym___stdcall] = ACTIONS(45), - [anon_sym___fastcall] = ACTIONS(45), - [anon_sym___thiscall] = ACTIONS(45), - [anon_sym___vectorcall] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(137), - [anon_sym_signed] = ACTIONS(49), - [anon_sym_unsigned] = ACTIONS(49), - [anon_sym_long] = ACTIONS(49), - [anon_sym_short] = ACTIONS(49), - [anon_sym_static] = ACTIONS(51), - [anon_sym_auto] = ACTIONS(51), - [anon_sym_register] = ACTIONS(51), - [anon_sym_inline] = ACTIONS(51), - [anon_sym___inline] = ACTIONS(51), - [anon_sym___inline__] = ACTIONS(51), - [anon_sym___forceinline] = ACTIONS(51), - [anon_sym_thread_local] = ACTIONS(51), - [anon_sym___thread] = ACTIONS(51), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [anon_sym_if] = ACTIONS(139), - [anon_sym_switch] = ACTIONS(141), - [anon_sym_case] = ACTIONS(143), - [anon_sym_default] = ACTIONS(145), - [anon_sym_while] = ACTIONS(147), - [anon_sym_do] = ACTIONS(149), - [anon_sym_for] = ACTIONS(151), - [anon_sym_return] = ACTIONS(153), - [anon_sym_break] = ACTIONS(155), - [anon_sym_continue] = ACTIONS(157), - [anon_sym_goto] = ACTIONS(159), - [anon_sym___try] = ACTIONS(161), - [anon_sym___leave] = ACTIONS(163), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - }, - [15] = { - [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(2243), - [sym_preproc_elif] = STATE(2243), - [sym_preproc_elifdef] = STATE(2243), - [sym_function_definition] = STATE(21), - [sym__old_style_function_definition] = STATE(149), - [sym_declaration] = STATE(21), - [sym_type_definition] = STATE(21), - [sym__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1238), - [sym_linkage_specification] = STATE(21), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(468), - [sym_ms_declspec_modifier] = STATE(805), - [sym_macro_modifier] = STATE(777), - [sym_ms_call_modifier] = STATE(615), - [sym_compound_statement] = STATE(77), - [sym_storage_class_specifier] = STATE(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(896), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [sym_attributed_statement] = STATE(151), - [sym_statement] = STATE(21), - [sym_labeled_statement] = STATE(77), - [sym_expression_statement] = STATE(77), - [sym_if_statement] = STATE(77), - [sym_switch_statement] = STATE(77), - [sym_case_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_do_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_return_statement] = STATE(77), - [sym_break_statement] = STATE(77), - [sym_continue_statement] = STATE(77), - [sym_goto_statement] = STATE(77), - [sym_seh_try_statement] = STATE(77), - [sym_seh_leave_statement] = STATE(77), - [sym_expression] = STATE(1157), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2232), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [sym__empty_declaration] = STATE(21), - [sym_macro_type_specifier] = STATE(873), - [aux_sym_preproc_if_repeat1] = STATE(21), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_attributed_declarator_repeat1] = STATE(439), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), - [sym_identifier] = ACTIONS(109), - [aux_sym_preproc_include_token1] = ACTIONS(111), - [aux_sym_preproc_def_token1] = ACTIONS(113), - [aux_sym_preproc_if_token1] = ACTIONS(115), - [aux_sym_preproc_if_token2] = ACTIONS(193), - [aux_sym_preproc_ifdef_token1] = ACTIONS(119), - [aux_sym_preproc_ifdef_token2] = ACTIONS(119), - [aux_sym_preproc_else_token1] = ACTIONS(121), - [aux_sym_preproc_elif_token1] = ACTIONS(123), - [aux_sym_preproc_elifdef_token1] = ACTIONS(125), - [aux_sym_preproc_elifdef_token2] = ACTIONS(125), - [sym_preproc_directive] = ACTIONS(127), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(129), - [anon_sym___extension__] = ACTIONS(131), - [anon_sym_typedef] = ACTIONS(133), - [anon_sym_extern] = ACTIONS(135), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym___read_mostly] = ACTIONS(37), - [anon_sym___must_hold] = ACTIONS(33), - [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___noreturn] = ACTIONS(37), - [anon_sym___cold] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(39), - [anon_sym___declspec] = ACTIONS(41), - [anon_sym___init] = ACTIONS(43), - [anon_sym___exit] = ACTIONS(43), - [anon_sym___cdecl] = ACTIONS(45), - [anon_sym___clrcall] = ACTIONS(45), - [anon_sym___stdcall] = ACTIONS(45), - [anon_sym___fastcall] = ACTIONS(45), - [anon_sym___thiscall] = ACTIONS(45), - [anon_sym___vectorcall] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(137), - [anon_sym_signed] = ACTIONS(49), - [anon_sym_unsigned] = ACTIONS(49), - [anon_sym_long] = ACTIONS(49), - [anon_sym_short] = ACTIONS(49), - [anon_sym_static] = ACTIONS(51), - [anon_sym_auto] = ACTIONS(51), - [anon_sym_register] = ACTIONS(51), - [anon_sym_inline] = ACTIONS(51), - [anon_sym___inline] = ACTIONS(51), - [anon_sym___inline__] = ACTIONS(51), - [anon_sym___forceinline] = ACTIONS(51), - [anon_sym_thread_local] = ACTIONS(51), - [anon_sym___thread] = ACTIONS(51), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [anon_sym_if] = ACTIONS(139), - [anon_sym_switch] = ACTIONS(141), - [anon_sym_case] = ACTIONS(143), - [anon_sym_default] = ACTIONS(145), - [anon_sym_while] = ACTIONS(147), - [anon_sym_do] = ACTIONS(149), - [anon_sym_for] = ACTIONS(151), - [anon_sym_return] = ACTIONS(153), - [anon_sym_break] = ACTIONS(155), - [anon_sym_continue] = ACTIONS(157), - [anon_sym_goto] = ACTIONS(159), - [anon_sym___try] = ACTIONS(161), - [anon_sym___leave] = ACTIONS(163), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - }, - [16] = { - [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(2245), - [sym_preproc_elif] = STATE(2245), - [sym_preproc_elifdef] = STATE(2245), - [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(149), - [sym_declaration] = STATE(22), - [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1238), - [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(468), - [sym_ms_declspec_modifier] = STATE(805), - [sym_macro_modifier] = STATE(777), - [sym_ms_call_modifier] = STATE(615), - [sym_compound_statement] = STATE(77), - [sym_storage_class_specifier] = STATE(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(896), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [sym_attributed_statement] = STATE(151), - [sym_statement] = STATE(22), - [sym_labeled_statement] = STATE(77), - [sym_expression_statement] = STATE(77), - [sym_if_statement] = STATE(77), - [sym_switch_statement] = STATE(77), - [sym_case_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_do_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_return_statement] = STATE(77), - [sym_break_statement] = STATE(77), - [sym_continue_statement] = STATE(77), - [sym_goto_statement] = STATE(77), - [sym_seh_try_statement] = STATE(77), - [sym_seh_leave_statement] = STATE(77), - [sym_expression] = STATE(1157), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2232), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(873), - [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_attributed_declarator_repeat1] = STATE(439), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), - [sym_identifier] = ACTIONS(109), - [aux_sym_preproc_include_token1] = ACTIONS(111), - [aux_sym_preproc_def_token1] = ACTIONS(113), - [aux_sym_preproc_if_token1] = ACTIONS(115), - [aux_sym_preproc_if_token2] = ACTIONS(195), - [aux_sym_preproc_ifdef_token1] = ACTIONS(119), - [aux_sym_preproc_ifdef_token2] = ACTIONS(119), - [aux_sym_preproc_else_token1] = ACTIONS(121), - [aux_sym_preproc_elif_token1] = ACTIONS(123), - [aux_sym_preproc_elifdef_token1] = ACTIONS(125), - [aux_sym_preproc_elifdef_token2] = ACTIONS(125), - [sym_preproc_directive] = ACTIONS(127), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(129), - [anon_sym___extension__] = ACTIONS(131), - [anon_sym_typedef] = ACTIONS(133), - [anon_sym_extern] = ACTIONS(135), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym___read_mostly] = ACTIONS(37), - [anon_sym___must_hold] = ACTIONS(33), - [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___noreturn] = ACTIONS(37), - [anon_sym___cold] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(39), - [anon_sym___declspec] = ACTIONS(41), - [anon_sym___init] = ACTIONS(43), - [anon_sym___exit] = ACTIONS(43), - [anon_sym___cdecl] = ACTIONS(45), - [anon_sym___clrcall] = ACTIONS(45), - [anon_sym___stdcall] = ACTIONS(45), - [anon_sym___fastcall] = ACTIONS(45), - [anon_sym___thiscall] = ACTIONS(45), - [anon_sym___vectorcall] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(137), - [anon_sym_signed] = ACTIONS(49), - [anon_sym_unsigned] = ACTIONS(49), - [anon_sym_long] = ACTIONS(49), - [anon_sym_short] = ACTIONS(49), - [anon_sym_static] = ACTIONS(51), - [anon_sym_auto] = ACTIONS(51), - [anon_sym_register] = ACTIONS(51), - [anon_sym_inline] = ACTIONS(51), - [anon_sym___inline] = ACTIONS(51), - [anon_sym___inline__] = ACTIONS(51), - [anon_sym___forceinline] = ACTIONS(51), - [anon_sym_thread_local] = ACTIONS(51), - [anon_sym___thread] = ACTIONS(51), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [anon_sym_if] = ACTIONS(139), - [anon_sym_switch] = ACTIONS(141), - [anon_sym_case] = ACTIONS(143), - [anon_sym_default] = ACTIONS(145), - [anon_sym_while] = ACTIONS(147), - [anon_sym_do] = ACTIONS(149), - [anon_sym_for] = ACTIONS(151), - [anon_sym_return] = ACTIONS(153), - [anon_sym_break] = ACTIONS(155), - [anon_sym_continue] = ACTIONS(157), - [anon_sym_goto] = ACTIONS(159), - [anon_sym___try] = ACTIONS(161), - [anon_sym___leave] = ACTIONS(163), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - }, - [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(2053), - [sym_preproc_elif] = STATE(2053), - [sym_preproc_elifdef] = STATE(2053), - [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(149), - [sym_declaration] = STATE(22), - [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1238), - [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(468), - [sym_ms_declspec_modifier] = STATE(805), - [sym_macro_modifier] = STATE(777), - [sym_ms_call_modifier] = STATE(615), - [sym_compound_statement] = STATE(77), - [sym_storage_class_specifier] = STATE(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(896), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [sym_attributed_statement] = STATE(151), - [sym_statement] = STATE(22), - [sym_labeled_statement] = STATE(77), - [sym_expression_statement] = STATE(77), - [sym_if_statement] = STATE(77), - [sym_switch_statement] = STATE(77), - [sym_case_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_do_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_return_statement] = STATE(77), - [sym_break_statement] = STATE(77), - [sym_continue_statement] = STATE(77), - [sym_goto_statement] = STATE(77), - [sym_seh_try_statement] = STATE(77), - [sym_seh_leave_statement] = STATE(77), - [sym_expression] = STATE(1157), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2232), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(873), - [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_attributed_declarator_repeat1] = STATE(439), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), - [sym_identifier] = ACTIONS(109), - [aux_sym_preproc_include_token1] = ACTIONS(111), - [aux_sym_preproc_def_token1] = ACTIONS(113), - [aux_sym_preproc_if_token1] = ACTIONS(115), - [aux_sym_preproc_if_token2] = ACTIONS(197), - [aux_sym_preproc_ifdef_token1] = ACTIONS(119), - [aux_sym_preproc_ifdef_token2] = ACTIONS(119), - [aux_sym_preproc_else_token1] = ACTIONS(121), - [aux_sym_preproc_elif_token1] = ACTIONS(123), - [aux_sym_preproc_elifdef_token1] = ACTIONS(125), - [aux_sym_preproc_elifdef_token2] = ACTIONS(125), - [sym_preproc_directive] = ACTIONS(127), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(129), - [anon_sym___extension__] = ACTIONS(131), - [anon_sym_typedef] = ACTIONS(133), - [anon_sym_extern] = ACTIONS(135), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym___read_mostly] = ACTIONS(37), - [anon_sym___must_hold] = ACTIONS(33), - [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___noreturn] = ACTIONS(37), - [anon_sym___cold] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(39), - [anon_sym___declspec] = ACTIONS(41), - [anon_sym___init] = ACTIONS(43), - [anon_sym___exit] = ACTIONS(43), - [anon_sym___cdecl] = ACTIONS(45), - [anon_sym___clrcall] = ACTIONS(45), - [anon_sym___stdcall] = ACTIONS(45), - [anon_sym___fastcall] = ACTIONS(45), - [anon_sym___thiscall] = ACTIONS(45), - [anon_sym___vectorcall] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(137), - [anon_sym_signed] = ACTIONS(49), - [anon_sym_unsigned] = ACTIONS(49), - [anon_sym_long] = ACTIONS(49), - [anon_sym_short] = ACTIONS(49), - [anon_sym_static] = ACTIONS(51), - [anon_sym_auto] = ACTIONS(51), - [anon_sym_register] = ACTIONS(51), - [anon_sym_inline] = ACTIONS(51), - [anon_sym___inline] = ACTIONS(51), - [anon_sym___inline__] = ACTIONS(51), - [anon_sym___forceinline] = ACTIONS(51), - [anon_sym_thread_local] = ACTIONS(51), - [anon_sym___thread] = ACTIONS(51), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [anon_sym_if] = ACTIONS(139), - [anon_sym_switch] = ACTIONS(141), - [anon_sym_case] = ACTIONS(143), - [anon_sym_default] = ACTIONS(145), - [anon_sym_while] = ACTIONS(147), - [anon_sym_do] = ACTIONS(149), - [anon_sym_for] = ACTIONS(151), - [anon_sym_return] = ACTIONS(153), - [anon_sym_break] = ACTIONS(155), - [anon_sym_continue] = ACTIONS(157), - [anon_sym_goto] = ACTIONS(159), - [anon_sym___try] = ACTIONS(161), - [anon_sym___leave] = ACTIONS(163), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - }, - [18] = { - [sym__block_item] = STATE(6), - [sym_preproc_include] = STATE(6), - [sym_preproc_def] = STATE(6), - [sym_preproc_function_def] = STATE(6), - [sym_preproc_call] = STATE(6), - [sym_preproc_if] = STATE(6), - [sym_preproc_ifdef] = STATE(6), - [sym_preproc_else] = STATE(2121), - [sym_preproc_elif] = STATE(2121), - [sym_preproc_elifdef] = STATE(2121), - [sym_function_definition] = STATE(6), - [sym__old_style_function_definition] = STATE(149), - [sym_declaration] = STATE(6), - [sym_type_definition] = STATE(6), - [sym__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1238), - [sym_linkage_specification] = STATE(6), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(468), - [sym_ms_declspec_modifier] = STATE(805), - [sym_macro_modifier] = STATE(777), - [sym_ms_call_modifier] = STATE(615), - [sym_compound_statement] = STATE(77), - [sym_storage_class_specifier] = STATE(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(896), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [sym_attributed_statement] = STATE(151), - [sym_statement] = STATE(6), - [sym_labeled_statement] = STATE(77), - [sym_expression_statement] = STATE(77), - [sym_if_statement] = STATE(77), - [sym_switch_statement] = STATE(77), - [sym_case_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_do_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_return_statement] = STATE(77), - [sym_break_statement] = STATE(77), - [sym_continue_statement] = STATE(77), - [sym_goto_statement] = STATE(77), - [sym_seh_try_statement] = STATE(77), - [sym_seh_leave_statement] = STATE(77), - [sym_expression] = STATE(1157), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2232), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [sym__empty_declaration] = STATE(6), - [sym_macro_type_specifier] = STATE(873), - [aux_sym_preproc_if_repeat1] = STATE(6), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_attributed_declarator_repeat1] = STATE(439), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), - [sym_identifier] = ACTIONS(109), - [aux_sym_preproc_include_token1] = ACTIONS(111), - [aux_sym_preproc_def_token1] = ACTIONS(113), - [aux_sym_preproc_if_token1] = ACTIONS(115), - [aux_sym_preproc_if_token2] = ACTIONS(199), - [aux_sym_preproc_ifdef_token1] = ACTIONS(119), - [aux_sym_preproc_ifdef_token2] = ACTIONS(119), - [aux_sym_preproc_else_token1] = ACTIONS(121), - [aux_sym_preproc_elif_token1] = ACTIONS(123), - [aux_sym_preproc_elifdef_token1] = ACTIONS(125), - [aux_sym_preproc_elifdef_token2] = ACTIONS(125), - [sym_preproc_directive] = ACTIONS(127), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(129), - [anon_sym___extension__] = ACTIONS(131), - [anon_sym_typedef] = ACTIONS(133), - [anon_sym_extern] = ACTIONS(135), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym___read_mostly] = ACTIONS(37), - [anon_sym___must_hold] = ACTIONS(33), - [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___noreturn] = ACTIONS(37), - [anon_sym___cold] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(39), - [anon_sym___declspec] = ACTIONS(41), - [anon_sym___init] = ACTIONS(43), - [anon_sym___exit] = ACTIONS(43), - [anon_sym___cdecl] = ACTIONS(45), - [anon_sym___clrcall] = ACTIONS(45), - [anon_sym___stdcall] = ACTIONS(45), - [anon_sym___fastcall] = ACTIONS(45), - [anon_sym___thiscall] = ACTIONS(45), - [anon_sym___vectorcall] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(137), - [anon_sym_signed] = ACTIONS(49), - [anon_sym_unsigned] = ACTIONS(49), - [anon_sym_long] = ACTIONS(49), - [anon_sym_short] = ACTIONS(49), - [anon_sym_static] = ACTIONS(51), - [anon_sym_auto] = ACTIONS(51), - [anon_sym_register] = ACTIONS(51), - [anon_sym_inline] = ACTIONS(51), - [anon_sym___inline] = ACTIONS(51), - [anon_sym___inline__] = ACTIONS(51), - [anon_sym___forceinline] = ACTIONS(51), - [anon_sym_thread_local] = ACTIONS(51), - [anon_sym___thread] = ACTIONS(51), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [anon_sym_if] = ACTIONS(139), - [anon_sym_switch] = ACTIONS(141), - [anon_sym_case] = ACTIONS(143), - [anon_sym_default] = ACTIONS(145), - [anon_sym_while] = ACTIONS(147), - [anon_sym_do] = ACTIONS(149), - [anon_sym_for] = ACTIONS(151), - [anon_sym_return] = ACTIONS(153), - [anon_sym_break] = ACTIONS(155), - [anon_sym_continue] = ACTIONS(157), - [anon_sym_goto] = ACTIONS(159), - [anon_sym___try] = ACTIONS(161), - [anon_sym___leave] = ACTIONS(163), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - }, - [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(2052), - [sym_preproc_elif] = STATE(2052), - [sym_preproc_elifdef] = STATE(2052), - [sym_function_definition] = STATE(12), - [sym__old_style_function_definition] = STATE(149), - [sym_declaration] = STATE(12), - [sym_type_definition] = STATE(12), - [sym__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1238), - [sym_linkage_specification] = STATE(12), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(468), - [sym_ms_declspec_modifier] = STATE(805), - [sym_macro_modifier] = STATE(777), - [sym_ms_call_modifier] = STATE(615), - [sym_compound_statement] = STATE(77), - [sym_storage_class_specifier] = STATE(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(896), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [sym_attributed_statement] = STATE(151), - [sym_statement] = STATE(12), - [sym_labeled_statement] = STATE(77), - [sym_expression_statement] = STATE(77), - [sym_if_statement] = STATE(77), - [sym_switch_statement] = STATE(77), - [sym_case_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_do_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_return_statement] = STATE(77), - [sym_break_statement] = STATE(77), - [sym_continue_statement] = STATE(77), - [sym_goto_statement] = STATE(77), - [sym_seh_try_statement] = STATE(77), - [sym_seh_leave_statement] = STATE(77), - [sym_expression] = STATE(1157), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2232), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [sym__empty_declaration] = STATE(12), - [sym_macro_type_specifier] = STATE(873), - [aux_sym_preproc_if_repeat1] = STATE(12), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_attributed_declarator_repeat1] = STATE(439), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), - [sym_identifier] = ACTIONS(109), - [aux_sym_preproc_include_token1] = ACTIONS(111), - [aux_sym_preproc_def_token1] = ACTIONS(113), - [aux_sym_preproc_if_token1] = ACTIONS(115), - [aux_sym_preproc_if_token2] = ACTIONS(201), - [aux_sym_preproc_ifdef_token1] = ACTIONS(119), - [aux_sym_preproc_ifdef_token2] = ACTIONS(119), - [aux_sym_preproc_else_token1] = ACTIONS(121), - [aux_sym_preproc_elif_token1] = ACTIONS(123), - [aux_sym_preproc_elifdef_token1] = ACTIONS(125), - [aux_sym_preproc_elifdef_token2] = ACTIONS(125), - [sym_preproc_directive] = ACTIONS(127), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(129), - [anon_sym___extension__] = ACTIONS(131), - [anon_sym_typedef] = ACTIONS(133), - [anon_sym_extern] = ACTIONS(135), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym___read_mostly] = ACTIONS(37), - [anon_sym___must_hold] = ACTIONS(33), - [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___noreturn] = ACTIONS(37), - [anon_sym___cold] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(39), - [anon_sym___declspec] = ACTIONS(41), - [anon_sym___init] = ACTIONS(43), - [anon_sym___exit] = ACTIONS(43), - [anon_sym___cdecl] = ACTIONS(45), - [anon_sym___clrcall] = ACTIONS(45), - [anon_sym___stdcall] = ACTIONS(45), - [anon_sym___fastcall] = ACTIONS(45), - [anon_sym___thiscall] = ACTIONS(45), - [anon_sym___vectorcall] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(137), - [anon_sym_signed] = ACTIONS(49), - [anon_sym_unsigned] = ACTIONS(49), - [anon_sym_long] = ACTIONS(49), - [anon_sym_short] = ACTIONS(49), - [anon_sym_static] = ACTIONS(51), - [anon_sym_auto] = ACTIONS(51), - [anon_sym_register] = ACTIONS(51), - [anon_sym_inline] = ACTIONS(51), - [anon_sym___inline] = ACTIONS(51), - [anon_sym___inline__] = ACTIONS(51), - [anon_sym___forceinline] = ACTIONS(51), - [anon_sym_thread_local] = ACTIONS(51), - [anon_sym___thread] = ACTIONS(51), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [anon_sym_if] = ACTIONS(139), - [anon_sym_switch] = ACTIONS(141), - [anon_sym_case] = ACTIONS(143), - [anon_sym_default] = ACTIONS(145), - [anon_sym_while] = ACTIONS(147), - [anon_sym_do] = ACTIONS(149), - [anon_sym_for] = ACTIONS(151), - [anon_sym_return] = ACTIONS(153), - [anon_sym_break] = ACTIONS(155), - [anon_sym_continue] = ACTIONS(157), - [anon_sym_goto] = ACTIONS(159), - [anon_sym___try] = ACTIONS(161), - [anon_sym___leave] = ACTIONS(163), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - }, - [20] = { - [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(2128), - [sym_preproc_elif] = STATE(2128), - [sym_preproc_elifdef] = STATE(2128), - [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(149), - [sym_declaration] = STATE(22), - [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1238), - [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(468), - [sym_ms_declspec_modifier] = STATE(805), - [sym_macro_modifier] = STATE(777), - [sym_ms_call_modifier] = STATE(615), - [sym_compound_statement] = STATE(77), - [sym_storage_class_specifier] = STATE(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(896), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [sym_attributed_statement] = STATE(151), - [sym_statement] = STATE(22), - [sym_labeled_statement] = STATE(77), - [sym_expression_statement] = STATE(77), - [sym_if_statement] = STATE(77), - [sym_switch_statement] = STATE(77), - [sym_case_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_do_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_return_statement] = STATE(77), - [sym_break_statement] = STATE(77), - [sym_continue_statement] = STATE(77), - [sym_goto_statement] = STATE(77), - [sym_seh_try_statement] = STATE(77), - [sym_seh_leave_statement] = STATE(77), - [sym_expression] = STATE(1157), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2232), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(873), - [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_attributed_declarator_repeat1] = STATE(439), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), - [sym_identifier] = ACTIONS(109), - [aux_sym_preproc_include_token1] = ACTIONS(111), - [aux_sym_preproc_def_token1] = ACTIONS(113), - [aux_sym_preproc_if_token1] = ACTIONS(115), - [aux_sym_preproc_if_token2] = ACTIONS(203), - [aux_sym_preproc_ifdef_token1] = ACTIONS(119), - [aux_sym_preproc_ifdef_token2] = ACTIONS(119), - [aux_sym_preproc_else_token1] = ACTIONS(121), - [aux_sym_preproc_elif_token1] = ACTIONS(123), - [aux_sym_preproc_elifdef_token1] = ACTIONS(125), - [aux_sym_preproc_elifdef_token2] = ACTIONS(125), - [sym_preproc_directive] = ACTIONS(127), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(129), - [anon_sym___extension__] = ACTIONS(131), - [anon_sym_typedef] = ACTIONS(133), - [anon_sym_extern] = ACTIONS(135), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym___read_mostly] = ACTIONS(37), - [anon_sym___must_hold] = ACTIONS(33), - [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___noreturn] = ACTIONS(37), - [anon_sym___cold] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(39), - [anon_sym___declspec] = ACTIONS(41), - [anon_sym___init] = ACTIONS(43), - [anon_sym___exit] = ACTIONS(43), - [anon_sym___cdecl] = ACTIONS(45), - [anon_sym___clrcall] = ACTIONS(45), - [anon_sym___stdcall] = ACTIONS(45), - [anon_sym___fastcall] = ACTIONS(45), - [anon_sym___thiscall] = ACTIONS(45), - [anon_sym___vectorcall] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(137), - [anon_sym_signed] = ACTIONS(49), - [anon_sym_unsigned] = ACTIONS(49), - [anon_sym_long] = ACTIONS(49), - [anon_sym_short] = ACTIONS(49), - [anon_sym_static] = ACTIONS(51), - [anon_sym_auto] = ACTIONS(51), - [anon_sym_register] = ACTIONS(51), - [anon_sym_inline] = ACTIONS(51), - [anon_sym___inline] = ACTIONS(51), - [anon_sym___inline__] = ACTIONS(51), - [anon_sym___forceinline] = ACTIONS(51), - [anon_sym_thread_local] = ACTIONS(51), - [anon_sym___thread] = ACTIONS(51), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [anon_sym_if] = ACTIONS(139), - [anon_sym_switch] = ACTIONS(141), - [anon_sym_case] = ACTIONS(143), - [anon_sym_default] = ACTIONS(145), - [anon_sym_while] = ACTIONS(147), - [anon_sym_do] = ACTIONS(149), - [anon_sym_for] = ACTIONS(151), - [anon_sym_return] = ACTIONS(153), - [anon_sym_break] = ACTIONS(155), - [anon_sym_continue] = ACTIONS(157), - [anon_sym_goto] = ACTIONS(159), - [anon_sym___try] = ACTIONS(161), - [anon_sym___leave] = ACTIONS(163), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - }, - [21] = { - [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(2185), - [sym_preproc_elif] = STATE(2185), - [sym_preproc_elifdef] = STATE(2185), - [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(149), - [sym_declaration] = STATE(22), - [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1238), - [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(468), - [sym_ms_declspec_modifier] = STATE(805), - [sym_macro_modifier] = STATE(777), - [sym_ms_call_modifier] = STATE(615), - [sym_compound_statement] = STATE(77), - [sym_storage_class_specifier] = STATE(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(896), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [sym_attributed_statement] = STATE(151), - [sym_statement] = STATE(22), - [sym_labeled_statement] = STATE(77), - [sym_expression_statement] = STATE(77), - [sym_if_statement] = STATE(77), - [sym_switch_statement] = STATE(77), - [sym_case_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_do_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_return_statement] = STATE(77), - [sym_break_statement] = STATE(77), - [sym_continue_statement] = STATE(77), - [sym_goto_statement] = STATE(77), - [sym_seh_try_statement] = STATE(77), - [sym_seh_leave_statement] = STATE(77), - [sym_expression] = STATE(1157), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2232), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(873), - [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_attributed_declarator_repeat1] = STATE(439), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), - [sym_identifier] = ACTIONS(109), - [aux_sym_preproc_include_token1] = ACTIONS(111), - [aux_sym_preproc_def_token1] = ACTIONS(113), - [aux_sym_preproc_if_token1] = ACTIONS(115), - [aux_sym_preproc_if_token2] = ACTIONS(205), - [aux_sym_preproc_ifdef_token1] = ACTIONS(119), - [aux_sym_preproc_ifdef_token2] = ACTIONS(119), - [aux_sym_preproc_else_token1] = ACTIONS(121), - [aux_sym_preproc_elif_token1] = ACTIONS(123), - [aux_sym_preproc_elifdef_token1] = ACTIONS(125), - [aux_sym_preproc_elifdef_token2] = ACTIONS(125), - [sym_preproc_directive] = ACTIONS(127), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(129), - [anon_sym___extension__] = ACTIONS(131), - [anon_sym_typedef] = ACTIONS(133), - [anon_sym_extern] = ACTIONS(135), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym___read_mostly] = ACTIONS(37), - [anon_sym___must_hold] = ACTIONS(33), - [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___noreturn] = ACTIONS(37), - [anon_sym___cold] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(39), - [anon_sym___declspec] = ACTIONS(41), - [anon_sym___init] = ACTIONS(43), - [anon_sym___exit] = ACTIONS(43), - [anon_sym___cdecl] = ACTIONS(45), - [anon_sym___clrcall] = ACTIONS(45), - [anon_sym___stdcall] = ACTIONS(45), - [anon_sym___fastcall] = ACTIONS(45), - [anon_sym___thiscall] = ACTIONS(45), - [anon_sym___vectorcall] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(137), - [anon_sym_signed] = ACTIONS(49), - [anon_sym_unsigned] = ACTIONS(49), - [anon_sym_long] = ACTIONS(49), - [anon_sym_short] = ACTIONS(49), - [anon_sym_static] = ACTIONS(51), - [anon_sym_auto] = ACTIONS(51), - [anon_sym_register] = ACTIONS(51), - [anon_sym_inline] = ACTIONS(51), - [anon_sym___inline] = ACTIONS(51), - [anon_sym___inline__] = ACTIONS(51), - [anon_sym___forceinline] = ACTIONS(51), - [anon_sym_thread_local] = ACTIONS(51), - [anon_sym___thread] = ACTIONS(51), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [anon_sym_if] = ACTIONS(139), - [anon_sym_switch] = ACTIONS(141), - [anon_sym_case] = ACTIONS(143), - [anon_sym_default] = ACTIONS(145), - [anon_sym_while] = ACTIONS(147), - [anon_sym_do] = ACTIONS(149), - [anon_sym_for] = ACTIONS(151), - [anon_sym_return] = ACTIONS(153), - [anon_sym_break] = ACTIONS(155), - [anon_sym_continue] = ACTIONS(157), - [anon_sym_goto] = ACTIONS(159), - [anon_sym___try] = ACTIONS(161), - [anon_sym___leave] = ACTIONS(163), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - }, - [22] = { - [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_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(149), - [sym_declaration] = STATE(22), - [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1238), - [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(468), - [sym_ms_declspec_modifier] = STATE(805), - [sym_macro_modifier] = STATE(777), - [sym_ms_call_modifier] = STATE(615), - [sym_compound_statement] = STATE(77), - [sym_storage_class_specifier] = STATE(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(896), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [sym_attributed_statement] = STATE(151), - [sym_statement] = STATE(22), - [sym_labeled_statement] = STATE(77), - [sym_expression_statement] = STATE(77), - [sym_if_statement] = STATE(77), - [sym_switch_statement] = STATE(77), - [sym_case_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_do_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_return_statement] = STATE(77), - [sym_break_statement] = STATE(77), - [sym_continue_statement] = STATE(77), - [sym_goto_statement] = STATE(77), - [sym_seh_try_statement] = STATE(77), - [sym_seh_leave_statement] = STATE(77), - [sym_expression] = STATE(1157), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2232), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(873), - [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_attributed_declarator_repeat1] = STATE(439), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), - [sym_identifier] = ACTIONS(207), - [aux_sym_preproc_include_token1] = ACTIONS(210), - [aux_sym_preproc_def_token1] = ACTIONS(213), - [aux_sym_preproc_if_token1] = ACTIONS(216), - [aux_sym_preproc_if_token2] = ACTIONS(219), - [aux_sym_preproc_ifdef_token1] = ACTIONS(221), - [aux_sym_preproc_ifdef_token2] = ACTIONS(221), - [aux_sym_preproc_else_token1] = ACTIONS(219), - [aux_sym_preproc_elif_token1] = ACTIONS(219), - [aux_sym_preproc_elifdef_token1] = ACTIONS(219), - [aux_sym_preproc_elifdef_token2] = ACTIONS(219), - [sym_preproc_directive] = ACTIONS(224), - [anon_sym_LPAREN2] = ACTIONS(227), - [anon_sym_BANG] = ACTIONS(230), - [anon_sym_TILDE] = ACTIONS(230), - [anon_sym_DASH] = ACTIONS(233), - [anon_sym_PLUS] = ACTIONS(233), - [anon_sym_STAR] = ACTIONS(236), - [anon_sym_AMP] = ACTIONS(236), - [anon_sym_SEMI] = ACTIONS(239), - [anon_sym___extension__] = ACTIONS(242), - [anon_sym_typedef] = ACTIONS(245), - [anon_sym_extern] = ACTIONS(248), - [anon_sym___attribute__] = ACTIONS(251), - [anon_sym___scanf] = ACTIONS(254), - [anon_sym___printf] = ACTIONS(254), - [anon_sym___read_mostly] = ACTIONS(257), - [anon_sym___must_hold] = ACTIONS(251), - [anon_sym___ro_after_init] = ACTIONS(257), - [anon_sym___noreturn] = ACTIONS(257), - [anon_sym___cold] = ACTIONS(257), - [anon_sym_LBRACK_LBRACK] = ACTIONS(260), - [anon_sym___declspec] = ACTIONS(263), - [anon_sym___init] = ACTIONS(266), - [anon_sym___exit] = ACTIONS(266), - [anon_sym___cdecl] = ACTIONS(269), - [anon_sym___clrcall] = ACTIONS(269), - [anon_sym___stdcall] = ACTIONS(269), - [anon_sym___fastcall] = ACTIONS(269), - [anon_sym___thiscall] = ACTIONS(269), - [anon_sym___vectorcall] = ACTIONS(269), - [anon_sym_LBRACE] = ACTIONS(272), - [anon_sym_signed] = ACTIONS(275), - [anon_sym_unsigned] = ACTIONS(275), - [anon_sym_long] = ACTIONS(275), - [anon_sym_short] = ACTIONS(275), - [anon_sym_static] = ACTIONS(278), - [anon_sym_auto] = ACTIONS(278), - [anon_sym_register] = ACTIONS(278), - [anon_sym_inline] = ACTIONS(278), - [anon_sym___inline] = ACTIONS(278), - [anon_sym___inline__] = ACTIONS(278), - [anon_sym___forceinline] = ACTIONS(278), - [anon_sym_thread_local] = ACTIONS(278), - [anon_sym___thread] = ACTIONS(278), - [anon_sym_const] = ACTIONS(281), - [anon_sym_constexpr] = ACTIONS(281), - [anon_sym_volatile] = ACTIONS(281), - [anon_sym_restrict] = ACTIONS(281), - [anon_sym___restrict__] = ACTIONS(281), - [anon_sym__Atomic] = ACTIONS(281), - [anon_sym__Noreturn] = ACTIONS(281), - [anon_sym_noreturn] = ACTIONS(281), - [anon_sym_alignas] = ACTIONS(284), - [anon_sym__Alignas] = ACTIONS(284), - [sym_primitive_type] = ACTIONS(287), - [anon_sym_enum] = ACTIONS(290), - [anon_sym_struct] = ACTIONS(293), - [anon_sym_union] = ACTIONS(296), - [anon_sym_if] = ACTIONS(299), - [anon_sym_switch] = ACTIONS(302), - [anon_sym_case] = ACTIONS(305), - [anon_sym_default] = ACTIONS(308), - [anon_sym_while] = ACTIONS(311), - [anon_sym_do] = ACTIONS(314), - [anon_sym_for] = ACTIONS(317), - [anon_sym_return] = ACTIONS(320), - [anon_sym_break] = ACTIONS(323), - [anon_sym_continue] = ACTIONS(326), - [anon_sym_goto] = ACTIONS(329), - [anon_sym___try] = ACTIONS(332), - [anon_sym___leave] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(338), - [anon_sym_PLUS_PLUS] = ACTIONS(338), - [anon_sym_sizeof] = ACTIONS(341), - [anon_sym___alignof__] = ACTIONS(344), - [anon_sym___alignof] = ACTIONS(344), - [anon_sym__alignof] = ACTIONS(344), - [anon_sym_alignof] = ACTIONS(344), - [anon_sym__Alignof] = ACTIONS(344), - [anon_sym_offsetof] = ACTIONS(347), - [anon_sym__Generic] = ACTIONS(350), - [anon_sym_asm] = ACTIONS(353), - [anon_sym___asm__] = ACTIONS(353), - [sym_number_literal] = ACTIONS(356), - [anon_sym_L_SQUOTE] = ACTIONS(359), - [anon_sym_u_SQUOTE] = ACTIONS(359), - [anon_sym_U_SQUOTE] = ACTIONS(359), - [anon_sym_u8_SQUOTE] = ACTIONS(359), - [anon_sym_SQUOTE] = ACTIONS(359), - [anon_sym_L_DQUOTE] = ACTIONS(362), - [anon_sym_u_DQUOTE] = ACTIONS(362), - [anon_sym_U_DQUOTE] = ACTIONS(362), - [anon_sym_u8_DQUOTE] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(362), - [sym_true] = ACTIONS(365), - [sym_false] = ACTIONS(365), - [anon_sym_NULL] = ACTIONS(368), - [anon_sym_nullptr] = ACTIONS(368), - [sym_comment] = ACTIONS(3), - }, - [23] = { - [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(312), - [sym_declaration] = STATE(40), - [sym_type_definition] = STATE(40), - [sym__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1234), - [sym_linkage_specification] = STATE(40), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(468), - [sym_ms_declspec_modifier] = STATE(805), - [sym_macro_modifier] = STATE(788), - [sym_ms_call_modifier] = STATE(627), - [sym_compound_statement] = STATE(290), - [sym_storage_class_specifier] = STATE(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(899), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [sym_attributed_statement] = STATE(306), - [sym_statement] = STATE(40), - [sym_labeled_statement] = STATE(290), - [sym_expression_statement] = STATE(290), - [sym_if_statement] = STATE(290), - [sym_switch_statement] = STATE(290), - [sym_case_statement] = STATE(290), - [sym_while_statement] = STATE(290), - [sym_do_statement] = STATE(290), - [sym_for_statement] = STATE(290), - [sym_return_statement] = STATE(290), - [sym_break_statement] = STATE(290), - [sym_continue_statement] = STATE(290), - [sym_goto_statement] = STATE(290), - [sym_seh_try_statement] = STATE(290), - [sym_seh_leave_statement] = STATE(290), - [sym_expression] = STATE(1167), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2207), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [sym__empty_declaration] = STATE(40), - [sym_macro_type_specifier] = STATE(873), - [aux_sym_preproc_if_repeat1] = STATE(40), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_attributed_declarator_repeat1] = STATE(428), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), - [sym_identifier] = ACTIONS(371), - [aux_sym_preproc_include_token1] = ACTIONS(373), - [aux_sym_preproc_def_token1] = ACTIONS(375), - [aux_sym_preproc_if_token1] = ACTIONS(377), - [aux_sym_preproc_ifdef_token1] = ACTIONS(379), - [aux_sym_preproc_ifdef_token2] = ACTIONS(379), - [sym_preproc_directive] = ACTIONS(381), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(383), - [anon_sym___extension__] = ACTIONS(385), - [anon_sym_typedef] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym___read_mostly] = ACTIONS(37), - [anon_sym___must_hold] = ACTIONS(33), - [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___noreturn] = ACTIONS(37), - [anon_sym___cold] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(39), - [anon_sym___declspec] = ACTIONS(41), - [anon_sym___init] = ACTIONS(43), - [anon_sym___exit] = ACTIONS(43), - [anon_sym___cdecl] = ACTIONS(45), - [anon_sym___clrcall] = ACTIONS(45), - [anon_sym___stdcall] = ACTIONS(45), - [anon_sym___fastcall] = ACTIONS(45), - [anon_sym___thiscall] = ACTIONS(45), - [anon_sym___vectorcall] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_RBRACE] = ACTIONS(393), - [anon_sym_signed] = ACTIONS(49), - [anon_sym_unsigned] = ACTIONS(49), - [anon_sym_long] = ACTIONS(49), - [anon_sym_short] = ACTIONS(49), - [anon_sym_static] = ACTIONS(51), - [anon_sym_auto] = ACTIONS(51), - [anon_sym_register] = ACTIONS(51), - [anon_sym_inline] = ACTIONS(51), - [anon_sym___inline] = ACTIONS(51), - [anon_sym___inline__] = ACTIONS(51), - [anon_sym___forceinline] = ACTIONS(51), - [anon_sym_thread_local] = ACTIONS(51), - [anon_sym___thread] = ACTIONS(51), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [anon_sym_if] = ACTIONS(395), - [anon_sym_switch] = ACTIONS(397), - [anon_sym_case] = ACTIONS(399), - [anon_sym_default] = ACTIONS(401), - [anon_sym_while] = ACTIONS(403), - [anon_sym_do] = ACTIONS(405), - [anon_sym_for] = ACTIONS(407), - [anon_sym_return] = ACTIONS(409), - [anon_sym_break] = ACTIONS(411), - [anon_sym_continue] = ACTIONS(413), - [anon_sym_goto] = ACTIONS(415), - [anon_sym___try] = ACTIONS(417), - [anon_sym___leave] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - }, - [24] = { - [sym__block_item] = STATE(38), - [sym_preproc_include] = STATE(38), - [sym_preproc_def] = STATE(38), - [sym_preproc_function_def] = STATE(38), - [sym_preproc_call] = STATE(38), - [sym_preproc_if] = STATE(38), - [sym_preproc_ifdef] = STATE(38), - [sym_function_definition] = STATE(38), - [sym__old_style_function_definition] = STATE(312), - [sym_declaration] = STATE(38), - [sym_type_definition] = STATE(38), - [sym__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1234), - [sym_linkage_specification] = STATE(38), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(468), - [sym_ms_declspec_modifier] = STATE(805), - [sym_macro_modifier] = STATE(788), - [sym_ms_call_modifier] = STATE(627), - [sym_compound_statement] = STATE(290), - [sym_storage_class_specifier] = STATE(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(899), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [sym_attributed_statement] = STATE(306), - [sym_statement] = STATE(38), - [sym_labeled_statement] = STATE(290), - [sym_expression_statement] = STATE(290), - [sym_if_statement] = STATE(290), - [sym_switch_statement] = STATE(290), - [sym_case_statement] = STATE(290), - [sym_while_statement] = STATE(290), - [sym_do_statement] = STATE(290), - [sym_for_statement] = STATE(290), - [sym_return_statement] = STATE(290), - [sym_break_statement] = STATE(290), - [sym_continue_statement] = STATE(290), - [sym_goto_statement] = STATE(290), - [sym_seh_try_statement] = STATE(290), - [sym_seh_leave_statement] = STATE(290), - [sym_expression] = STATE(1167), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2207), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [sym__empty_declaration] = STATE(38), - [sym_macro_type_specifier] = STATE(873), - [aux_sym_preproc_if_repeat1] = STATE(38), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_attributed_declarator_repeat1] = STATE(428), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), - [sym_identifier] = ACTIONS(371), - [aux_sym_preproc_include_token1] = ACTIONS(373), - [aux_sym_preproc_def_token1] = ACTIONS(375), - [aux_sym_preproc_if_token1] = ACTIONS(377), - [aux_sym_preproc_ifdef_token1] = ACTIONS(379), - [aux_sym_preproc_ifdef_token2] = ACTIONS(379), - [sym_preproc_directive] = ACTIONS(381), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(383), - [anon_sym___extension__] = ACTIONS(385), - [anon_sym_typedef] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym___read_mostly] = ACTIONS(37), - [anon_sym___must_hold] = ACTIONS(33), - [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___noreturn] = ACTIONS(37), - [anon_sym___cold] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(39), - [anon_sym___declspec] = ACTIONS(41), - [anon_sym___init] = ACTIONS(43), - [anon_sym___exit] = ACTIONS(43), - [anon_sym___cdecl] = ACTIONS(45), - [anon_sym___clrcall] = ACTIONS(45), - [anon_sym___stdcall] = ACTIONS(45), - [anon_sym___fastcall] = ACTIONS(45), - [anon_sym___thiscall] = ACTIONS(45), - [anon_sym___vectorcall] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_RBRACE] = ACTIONS(421), - [anon_sym_signed] = ACTIONS(49), - [anon_sym_unsigned] = ACTIONS(49), - [anon_sym_long] = ACTIONS(49), - [anon_sym_short] = ACTIONS(49), - [anon_sym_static] = ACTIONS(51), - [anon_sym_auto] = ACTIONS(51), - [anon_sym_register] = ACTIONS(51), - [anon_sym_inline] = ACTIONS(51), - [anon_sym___inline] = ACTIONS(51), - [anon_sym___inline__] = ACTIONS(51), - [anon_sym___forceinline] = ACTIONS(51), - [anon_sym_thread_local] = ACTIONS(51), - [anon_sym___thread] = ACTIONS(51), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [anon_sym_if] = ACTIONS(395), - [anon_sym_switch] = ACTIONS(397), - [anon_sym_case] = ACTIONS(399), - [anon_sym_default] = ACTIONS(401), - [anon_sym_while] = ACTIONS(403), - [anon_sym_do] = ACTIONS(405), - [anon_sym_for] = ACTIONS(407), - [anon_sym_return] = ACTIONS(409), - [anon_sym_break] = ACTIONS(411), - [anon_sym_continue] = ACTIONS(413), - [anon_sym_goto] = ACTIONS(415), - [anon_sym___try] = ACTIONS(417), - [anon_sym___leave] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - }, - [25] = { - [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(312), - [sym_declaration] = STATE(40), - [sym_type_definition] = STATE(40), - [sym__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1234), - [sym_linkage_specification] = STATE(40), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(468), - [sym_ms_declspec_modifier] = STATE(805), - [sym_macro_modifier] = STATE(788), - [sym_ms_call_modifier] = STATE(627), - [sym_compound_statement] = STATE(290), - [sym_storage_class_specifier] = STATE(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(899), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [sym_attributed_statement] = STATE(306), - [sym_statement] = STATE(40), - [sym_labeled_statement] = STATE(290), - [sym_expression_statement] = STATE(290), - [sym_if_statement] = STATE(290), - [sym_switch_statement] = STATE(290), - [sym_case_statement] = STATE(290), - [sym_while_statement] = STATE(290), - [sym_do_statement] = STATE(290), - [sym_for_statement] = STATE(290), - [sym_return_statement] = STATE(290), - [sym_break_statement] = STATE(290), - [sym_continue_statement] = STATE(290), - [sym_goto_statement] = STATE(290), - [sym_seh_try_statement] = STATE(290), - [sym_seh_leave_statement] = STATE(290), - [sym_expression] = STATE(1167), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2207), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [sym__empty_declaration] = STATE(40), - [sym_macro_type_specifier] = STATE(873), - [aux_sym_preproc_if_repeat1] = STATE(40), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_attributed_declarator_repeat1] = STATE(428), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), - [sym_identifier] = ACTIONS(371), - [aux_sym_preproc_include_token1] = ACTIONS(373), - [aux_sym_preproc_def_token1] = ACTIONS(375), - [aux_sym_preproc_if_token1] = ACTIONS(377), - [aux_sym_preproc_ifdef_token1] = ACTIONS(379), - [aux_sym_preproc_ifdef_token2] = ACTIONS(379), - [sym_preproc_directive] = ACTIONS(381), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(383), - [anon_sym___extension__] = ACTIONS(385), - [anon_sym_typedef] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym___read_mostly] = ACTIONS(37), - [anon_sym___must_hold] = ACTIONS(33), - [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___noreturn] = ACTIONS(37), - [anon_sym___cold] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(39), - [anon_sym___declspec] = ACTIONS(41), - [anon_sym___init] = ACTIONS(43), - [anon_sym___exit] = ACTIONS(43), - [anon_sym___cdecl] = ACTIONS(45), - [anon_sym___clrcall] = ACTIONS(45), - [anon_sym___stdcall] = ACTIONS(45), - [anon_sym___fastcall] = ACTIONS(45), - [anon_sym___thiscall] = ACTIONS(45), - [anon_sym___vectorcall] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_RBRACE] = ACTIONS(423), - [anon_sym_signed] = ACTIONS(49), - [anon_sym_unsigned] = ACTIONS(49), - [anon_sym_long] = ACTIONS(49), - [anon_sym_short] = ACTIONS(49), - [anon_sym_static] = ACTIONS(51), - [anon_sym_auto] = ACTIONS(51), - [anon_sym_register] = ACTIONS(51), - [anon_sym_inline] = ACTIONS(51), - [anon_sym___inline] = ACTIONS(51), - [anon_sym___inline__] = ACTIONS(51), - [anon_sym___forceinline] = ACTIONS(51), - [anon_sym_thread_local] = ACTIONS(51), - [anon_sym___thread] = ACTIONS(51), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [anon_sym_if] = ACTIONS(395), - [anon_sym_switch] = ACTIONS(397), - [anon_sym_case] = ACTIONS(399), - [anon_sym_default] = ACTIONS(401), - [anon_sym_while] = ACTIONS(403), - [anon_sym_do] = ACTIONS(405), - [anon_sym_for] = ACTIONS(407), - [anon_sym_return] = ACTIONS(409), - [anon_sym_break] = ACTIONS(411), - [anon_sym_continue] = ACTIONS(413), - [anon_sym_goto] = ACTIONS(415), - [anon_sym___try] = ACTIONS(417), - [anon_sym___leave] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - }, - [26] = { - [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(312), - [sym_declaration] = STATE(40), - [sym_type_definition] = STATE(40), - [sym__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1234), - [sym_linkage_specification] = STATE(40), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(468), - [sym_ms_declspec_modifier] = STATE(805), - [sym_macro_modifier] = STATE(788), - [sym_ms_call_modifier] = STATE(627), - [sym_compound_statement] = STATE(290), - [sym_storage_class_specifier] = STATE(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(899), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [sym_attributed_statement] = STATE(306), - [sym_statement] = STATE(40), - [sym_labeled_statement] = STATE(290), - [sym_expression_statement] = STATE(290), - [sym_if_statement] = STATE(290), - [sym_switch_statement] = STATE(290), - [sym_case_statement] = STATE(290), - [sym_while_statement] = STATE(290), - [sym_do_statement] = STATE(290), - [sym_for_statement] = STATE(290), - [sym_return_statement] = STATE(290), - [sym_break_statement] = STATE(290), - [sym_continue_statement] = STATE(290), - [sym_goto_statement] = STATE(290), - [sym_seh_try_statement] = STATE(290), - [sym_seh_leave_statement] = STATE(290), - [sym_expression] = STATE(1167), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2207), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [sym__empty_declaration] = STATE(40), - [sym_macro_type_specifier] = STATE(873), - [aux_sym_preproc_if_repeat1] = STATE(40), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_attributed_declarator_repeat1] = STATE(428), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), - [sym_identifier] = ACTIONS(371), - [aux_sym_preproc_include_token1] = ACTIONS(373), - [aux_sym_preproc_def_token1] = ACTIONS(375), - [aux_sym_preproc_if_token1] = ACTIONS(377), - [aux_sym_preproc_ifdef_token1] = ACTIONS(379), - [aux_sym_preproc_ifdef_token2] = ACTIONS(379), - [sym_preproc_directive] = ACTIONS(381), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(383), - [anon_sym___extension__] = ACTIONS(385), - [anon_sym_typedef] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym___read_mostly] = ACTIONS(37), - [anon_sym___must_hold] = ACTIONS(33), - [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___noreturn] = ACTIONS(37), - [anon_sym___cold] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(39), - [anon_sym___declspec] = ACTIONS(41), - [anon_sym___init] = ACTIONS(43), - [anon_sym___exit] = ACTIONS(43), - [anon_sym___cdecl] = ACTIONS(45), - [anon_sym___clrcall] = ACTIONS(45), - [anon_sym___stdcall] = ACTIONS(45), - [anon_sym___fastcall] = ACTIONS(45), - [anon_sym___thiscall] = ACTIONS(45), - [anon_sym___vectorcall] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_RBRACE] = ACTIONS(425), - [anon_sym_signed] = ACTIONS(49), - [anon_sym_unsigned] = ACTIONS(49), - [anon_sym_long] = ACTIONS(49), - [anon_sym_short] = ACTIONS(49), - [anon_sym_static] = ACTIONS(51), - [anon_sym_auto] = ACTIONS(51), - [anon_sym_register] = ACTIONS(51), - [anon_sym_inline] = ACTIONS(51), - [anon_sym___inline] = ACTIONS(51), - [anon_sym___inline__] = ACTIONS(51), - [anon_sym___forceinline] = ACTIONS(51), - [anon_sym_thread_local] = ACTIONS(51), - [anon_sym___thread] = ACTIONS(51), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [anon_sym_if] = ACTIONS(395), - [anon_sym_switch] = ACTIONS(397), - [anon_sym_case] = ACTIONS(399), - [anon_sym_default] = ACTIONS(401), - [anon_sym_while] = ACTIONS(403), - [anon_sym_do] = ACTIONS(405), - [anon_sym_for] = ACTIONS(407), - [anon_sym_return] = ACTIONS(409), - [anon_sym_break] = ACTIONS(411), - [anon_sym_continue] = ACTIONS(413), - [anon_sym_goto] = ACTIONS(415), - [anon_sym___try] = ACTIONS(417), - [anon_sym___leave] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + case 185: + if (lookahead == 'i') ADVANCE(271); + END_STATE(); + case 186: + if (lookahead == 'u') ADVANCE(272); + END_STATE(); + case 187: + if (lookahead == 'n') ADVANCE(273); + END_STATE(); + case 188: + if (lookahead == 'l') ADVANCE(274); + END_STATE(); + case 189: + ACCEPT_TOKEN(anon_sym_else); + END_STATE(); + case 190: + ACCEPT_TOKEN(anon_sym_enum); + END_STATE(); + case 191: + if (lookahead == 'r') ADVANCE(275); + END_STATE(); + case 192: + if (lookahead == 'e') ADVANCE(224); + END_STATE(); + case 193: + if (lookahead == 't') ADVANCE(180); + END_STATE(); + case 194: + ACCEPT_TOKEN(anon_sym_goto); + END_STATE(); + case 195: + if (lookahead == 'n') ADVANCE(276); + END_STATE(); + case 196: + if (lookahead == '6') ADVANCE(277); + END_STATE(); + case 197: + if (lookahead == '2') ADVANCE(278); + END_STATE(); + case 198: + if (lookahead == '4') ADVANCE(279); + END_STATE(); + case 199: + if (lookahead == '_') ADVANCE(280); + END_STATE(); + case 200: + if (lookahead == 't') ADVANCE(281); + END_STATE(); + case 201: + ACCEPT_TOKEN(anon_sym_long); + END_STATE(); + case 202: + if (lookahead == 'a') ADVANCE(282); + END_STATE(); + case 203: + if (lookahead == 't') ADVANCE(283); + END_STATE(); + case 204: + if (lookahead == 'p') ADVANCE(284); + END_STATE(); + case 205: + if (lookahead == 'e') ADVANCE(285); + END_STATE(); + case 206: + if (lookahead == 'i') ADVANCE(286); + END_STATE(); + case 207: + if (lookahead == 's') ADVANCE(287); + END_STATE(); + case 208: + if (lookahead == 'r') ADVANCE(288); + END_STATE(); + case 209: + if (lookahead == 'r') ADVANCE(289); + END_STATE(); + case 210: + if (lookahead == 't') ADVANCE(290); + END_STATE(); + case 211: + if (lookahead == 'e') ADVANCE(291); + END_STATE(); + case 212: + if (lookahead == '_') ADVANCE(292); + if (lookahead == 'o') ADVANCE(293); + END_STATE(); + case 213: + if (lookahead == 'e') ADVANCE(294); + END_STATE(); + case 214: + if (lookahead == 'i') ADVANCE(295); + END_STATE(); + case 215: + if (lookahead == 'c') ADVANCE(296); + END_STATE(); + case 216: + if (lookahead == 'c') ADVANCE(297); + END_STATE(); + case 217: + if (lookahead == 'a') ADVANCE(298); + END_STATE(); + case 218: + if (lookahead == 'd') ADVANCE(299); + END_STATE(); + case 219: + if (lookahead == '1') ADVANCE(300); + if (lookahead == '3') ADVANCE(301); + if (lookahead == '6') ADVANCE(302); + if (lookahead == '8') ADVANCE(303); + if (lookahead == 'p') ADVANCE(304); + END_STATE(); + case 220: + if (lookahead == 'n') ADVANCE(305); + END_STATE(); + case 221: + if (lookahead == 'g') ADVANCE(306); + END_STATE(); + case 222: + if (lookahead == 't') ADVANCE(307); + END_STATE(); + case 223: + if (lookahead == 'e') ADVANCE(308); + END_STATE(); + case 224: + ACCEPT_TOKEN(sym_false); + END_STATE(); + case 225: + if (lookahead == 'n') ADVANCE(309); + END_STATE(); + case 226: + if (lookahead == 'i') ADVANCE(310); + END_STATE(); + case 227: + if (lookahead == 'r') ADVANCE(311); + END_STATE(); + case 228: + if (lookahead == 't') ADVANCE(312); + END_STATE(); + case 229: + if (lookahead == 'g') ADVANCE(313); + END_STATE(); + case 230: + if (lookahead == '_') ADVANCE(314); + END_STATE(); + case 231: + if (lookahead == 'r') ADVANCE(315); + END_STATE(); + case 232: + if (lookahead == 'e') ADVANCE(316); + END_STATE(); + case 233: + if (lookahead == 'c') ADVANCE(317); + END_STATE(); + case 234: + if (lookahead == 'c') ADVANCE(318); + END_STATE(); + case 235: + if (lookahead == 'd') ADVANCE(319); + END_STATE(); + case 236: + if (lookahead == 'l') ADVANCE(320); + END_STATE(); + case 237: + if (lookahead == 'e') ADVANCE(321); + END_STATE(); + case 238: + if (lookahead == 't') ADVANCE(322); + END_STATE(); + case 239: + if (lookahead == 'e') ADVANCE(323); + END_STATE(); + case 240: + if (lookahead == 't') ADVANCE(324); + END_STATE(); + case 241: + if (lookahead == 'a') ADVANCE(325); + END_STATE(); + case 242: + if (lookahead == 'c') ADVANCE(326); + END_STATE(); + case 243: + if (lookahead == 't') ADVANCE(327); + END_STATE(); + case 244: + if (lookahead == 'i') ADVANCE(328); + END_STATE(); + case 245: + if (lookahead == 'v') ADVANCE(329); + END_STATE(); + case 246: + if (lookahead == 't') ADVANCE(330); + END_STATE(); + case 247: + if (lookahead == 'e') ADVANCE(331); + END_STATE(); + case 248: + if (lookahead == 'n') ADVANCE(332); + END_STATE(); + case 249: + if (lookahead == 'd') ADVANCE(333); + END_STATE(); + case 250: + if (lookahead == 't') ADVANCE(334); + END_STATE(); + case 251: + if (lookahead == 'a') ADVANCE(335); + END_STATE(); + case 252: + if (lookahead == 'n') ADVANCE(336); + END_STATE(); + case 253: + if (lookahead == 'r') ADVANCE(337); + END_STATE(); + case 254: + if (lookahead == 'c') ADVANCE(338); + END_STATE(); + case 255: + if (lookahead == 's') ADVANCE(339); + END_STATE(); + case 256: + if (lookahead == 'e') ADVANCE(340); + END_STATE(); + case 257: + ACCEPT_TOKEN(anon_sym___try); + END_STATE(); + case 258: + if (lookahead == 'l') ADVANCE(341); + END_STATE(); + case 259: + if (lookahead == 'r') ADVANCE(342); + END_STATE(); + case 260: + if (lookahead == 't') ADVANCE(343); + END_STATE(); + case 261: + if (lookahead == 'n') ADVANCE(344); + END_STATE(); + case 262: + if (lookahead == 'i') ADVANCE(345); + END_STATE(); + case 263: + if (lookahead == 'a') ADVANCE(346); + if (lookahead == 'o') ADVANCE(347); + END_STATE(); + case 264: + ACCEPT_TOKEN(anon_sym_break); + END_STATE(); + case 265: + if (lookahead == '6') ADVANCE(348); + END_STATE(); + case 266: + if (lookahead == '2') ADVANCE(349); + END_STATE(); + case 267: + if (lookahead == '4') ADVANCE(350); + END_STATE(); + case 268: + if (lookahead == '_') ADVANCE(351); + END_STATE(); + case 269: + if (lookahead == 't') ADVANCE(352); + END_STATE(); + case 270: + ACCEPT_TOKEN(anon_sym_const); + if (lookahead == 'e') ADVANCE(353); + END_STATE(); + case 271: + if (lookahead == 'n') ADVANCE(354); + END_STATE(); + case 272: + if (lookahead == 'l') ADVANCE(355); + END_STATE(); + case 273: + if (lookahead == 'e') ADVANCE(356); + END_STATE(); + case 274: + if (lookahead == 'e') ADVANCE(180); + END_STATE(); + case 275: + if (lookahead == 'n') ADVANCE(357); + END_STATE(); + case 276: + if (lookahead == 'e') ADVANCE(358); + END_STATE(); + case 277: + if (lookahead == '_') ADVANCE(359); + END_STATE(); + case 278: + if (lookahead == '_') ADVANCE(360); + END_STATE(); + case 279: + if (lookahead == '_') ADVANCE(361); + END_STATE(); + case 280: + if (lookahead == 't') ADVANCE(180); + END_STATE(); + case 281: + if (lookahead == 'r') ADVANCE(362); + END_STATE(); + case 282: + if (lookahead == 'l') ADVANCE(363); + END_STATE(); + case 283: + if (lookahead == 'u') ADVANCE(364); + END_STATE(); + case 284: + if (lookahead == 't') ADVANCE(365); + END_STATE(); + case 285: + if (lookahead == 't') ADVANCE(366); + END_STATE(); + case 286: + if (lookahead == 'f') ADVANCE(367); + END_STATE(); + case 287: + if (lookahead == 't') ADVANCE(368); + END_STATE(); + case 288: + if (lookahead == 'i') ADVANCE(369); + END_STATE(); + case 289: + if (lookahead == 'n') ADVANCE(370); + END_STATE(); + case 290: + ACCEPT_TOKEN(anon_sym_short); + END_STATE(); + case 291: + if (lookahead == 'd') ADVANCE(371); + END_STATE(); + case 292: + if (lookahead == 't') ADVANCE(180); + END_STATE(); + case 293: + if (lookahead == 'f') ADVANCE(372); + END_STATE(); + case 294: + if (lookahead == '_') ADVANCE(373); + END_STATE(); + case 295: + if (lookahead == 'c') ADVANCE(374); + END_STATE(); + case 296: + if (lookahead == 't') ADVANCE(375); + END_STATE(); + case 297: + if (lookahead == 'h') ADVANCE(376); + END_STATE(); + case 298: + if (lookahead == 'd') ADVANCE(377); + END_STATE(); + case 299: + if (lookahead == 'e') ADVANCE(378); + END_STATE(); + case 300: + if (lookahead == '6') ADVANCE(379); + END_STATE(); + case 301: + if (lookahead == '2') ADVANCE(380); + END_STATE(); + case 302: + if (lookahead == '4') ADVANCE(381); + END_STATE(); + case 303: + if (lookahead == '_') ADVANCE(382); + END_STATE(); + case 304: + if (lookahead == 't') ADVANCE(383); + END_STATE(); + case 305: + ACCEPT_TOKEN(anon_sym_union); + END_STATE(); + case 306: + if (lookahead == 'n') ADVANCE(384); + END_STATE(); + case 307: + if (lookahead == 'i') ADVANCE(385); + END_STATE(); + case 308: + ACCEPT_TOKEN(anon_sym_while); + END_STATE(); + case 309: + if (lookahead == 'a') ADVANCE(386); + if (lookahead == 'o') ADVANCE(387); + END_STATE(); + case 310: + if (lookahead == 'c') ADVANCE(388); + END_STATE(); + case 311: + if (lookahead == 'i') ADVANCE(389); + END_STATE(); + case 312: + if (lookahead == 'u') ADVANCE(390); + END_STATE(); + case 313: + if (lookahead == 'n') ADVANCE(391); + END_STATE(); + case 314: + if (lookahead == '_') ADVANCE(392); + END_STATE(); + case 315: + if (lookahead == 'i') ADVANCE(393); + END_STATE(); + case 316: + if (lookahead == 'd') ADVANCE(394); + END_STATE(); + case 317: + if (lookahead == 'l') ADVANCE(395); + END_STATE(); + case 318: + if (lookahead == 'a') ADVANCE(396); + END_STATE(); + case 319: + ACCEPT_TOKEN(anon_sym___cold); + END_STATE(); + case 320: + if (lookahead == 's') ADVANCE(397); + END_STATE(); + case 321: + if (lookahead == 'p') ADVANCE(398); + END_STATE(); + case 322: + ACCEPT_TOKEN(anon_sym___exit); + END_STATE(); + case 323: + if (lookahead == 'n') ADVANCE(399); + END_STATE(); + case 324: + if (lookahead == 'c') ADVANCE(400); + END_STATE(); + case 325: + if (lookahead == 'l') ADVANCE(401); + END_STATE(); + case 326: + if (lookahead == 'e') ADVANCE(402); + END_STATE(); + case 327: + ACCEPT_TOKEN(anon_sym___init); + END_STATE(); + case 328: + if (lookahead == 'n') ADVANCE(403); + END_STATE(); + case 329: + if (lookahead == 'e') ADVANCE(404); + END_STATE(); + case 330: + if (lookahead == '_') ADVANCE(405); + END_STATE(); + case 331: + if (lookahead == 't') ADVANCE(406); + END_STATE(); + case 332: + if (lookahead == 't') ADVANCE(407); + END_STATE(); + case 333: + if (lookahead == '_') ADVANCE(408); + END_STATE(); + case 334: + if (lookahead == 'r') ADVANCE(409); + END_STATE(); + case 335: + if (lookahead == 'f') ADVANCE(410); + END_STATE(); + case 336: + if (lookahead == 'f') ADVANCE(411); + END_STATE(); + case 337: + ACCEPT_TOKEN(sym_ms_signed_ptr_modifier); + END_STATE(); + case 338: + if (lookahead == 'a') ADVANCE(412); + END_STATE(); + case 339: + if (lookahead == 'c') ADVANCE(413); + END_STATE(); + case 340: + if (lookahead == 'a') ADVANCE(414); + END_STATE(); + case 341: + if (lookahead == 'i') ADVANCE(415); + END_STATE(); + case 342: + ACCEPT_TOKEN(sym_ms_unsigned_ptr_modifier); + END_STATE(); + case 343: + if (lookahead == 'o') ADVANCE(416); + END_STATE(); + case 344: + if (lookahead == 'o') ADVANCE(417); + END_STATE(); + case 345: + if (lookahead == 'g') ADVANCE(418); + END_STATE(); + case 346: + if (lookahead == 's') ADVANCE(419); + END_STATE(); + case 347: + if (lookahead == 'f') ADVANCE(420); + END_STATE(); + case 348: + if (lookahead == '_') ADVANCE(421); + END_STATE(); + case 349: + if (lookahead == '_') ADVANCE(422); + END_STATE(); + case 350: + if (lookahead == '_') ADVANCE(423); + END_STATE(); + case 351: + if (lookahead == 't') ADVANCE(180); + END_STATE(); + case 352: + if (lookahead == 'r') ADVANCE(424); + END_STATE(); + case 353: + if (lookahead == 'x') ADVANCE(425); + END_STATE(); + case 354: + if (lookahead == 'u') ADVANCE(426); + END_STATE(); + case 355: + if (lookahead == 't') ADVANCE(427); + END_STATE(); + case 356: + if (lookahead == 'd') ADVANCE(428); + END_STATE(); + case 357: + ACCEPT_TOKEN(anon_sym_extern); + END_STATE(); + case 358: + ACCEPT_TOKEN(anon_sym_inline); + END_STATE(); + case 359: + if (lookahead == 't') ADVANCE(180); + END_STATE(); + case 360: + if (lookahead == 't') ADVANCE(180); + END_STATE(); + case 361: + if (lookahead == 't') ADVANCE(180); + END_STATE(); + case 362: + if (lookahead == '_') ADVANCE(429); + END_STATE(); + case 363: + if (lookahead == 'i') ADVANCE(430); + END_STATE(); + case 364: + if (lookahead == 'r') ADVANCE(431); + END_STATE(); + case 365: + if (lookahead == 'r') ADVANCE(432); + END_STATE(); + case 366: + if (lookahead == 'o') ADVANCE(433); + END_STATE(); + case 367: + if (lookahead == 'f') ADVANCE(434); + END_STATE(); + case 368: + if (lookahead == 'e') ADVANCE(435); + END_STATE(); + case 369: + if (lookahead == 'c') ADVANCE(436); + END_STATE(); + case 370: + ACCEPT_TOKEN(anon_sym_return); + END_STATE(); + case 371: + ACCEPT_TOKEN(anon_sym_signed); + END_STATE(); + case 372: + ACCEPT_TOKEN(anon_sym_sizeof); + END_STATE(); + case 373: + if (lookahead == 't') ADVANCE(180); + END_STATE(); + case 374: + ACCEPT_TOKEN(anon_sym_static); + END_STATE(); + case 375: + ACCEPT_TOKEN(anon_sym_struct); + END_STATE(); + case 376: + ACCEPT_TOKEN(anon_sym_switch); + END_STATE(); + case 377: + if (lookahead == '_') ADVANCE(437); + END_STATE(); + case 378: + if (lookahead == 'f') ADVANCE(438); + END_STATE(); + case 379: + if (lookahead == '_') ADVANCE(439); + END_STATE(); + case 380: + if (lookahead == '_') ADVANCE(440); + END_STATE(); + case 381: + if (lookahead == '_') ADVANCE(441); + END_STATE(); + case 382: + if (lookahead == 't') ADVANCE(180); + END_STATE(); + case 383: + if (lookahead == 'r') ADVANCE(442); + END_STATE(); + case 384: + if (lookahead == 'e') ADVANCE(443); + END_STATE(); + case 385: + if (lookahead == 'l') ADVANCE(444); + END_STATE(); + case 386: + if (lookahead == 's') ADVANCE(445); + END_STATE(); + case 387: + if (lookahead == 'f') ADVANCE(446); + END_STATE(); + case 388: + ACCEPT_TOKEN(anon_sym__Atomic); + END_STATE(); + case 389: + if (lookahead == 'c') ADVANCE(447); + END_STATE(); + case 390: + if (lookahead == 'r') ADVANCE(448); + END_STATE(); + case 391: + if (lookahead == 'e') ADVANCE(449); + if (lookahead == 'o') ADVANCE(450); + END_STATE(); + case 392: + ACCEPT_TOKEN(anon_sym___asm__); + END_STATE(); + case 393: + if (lookahead == 'b') ADVANCE(451); + END_STATE(); + case 394: + ACCEPT_TOKEN(anon_sym___based); + END_STATE(); + case 395: + ACCEPT_TOKEN(anon_sym___cdecl); + END_STATE(); + case 396: + if (lookahead == 'l') ADVANCE(452); + END_STATE(); + case 397: + if (lookahead == 'p') ADVANCE(453); + END_STATE(); + case 398: + if (lookahead == 't') ADVANCE(454); + END_STATE(); + case 399: + if (lookahead == 's') ADVANCE(455); + END_STATE(); + case 400: + if (lookahead == 'a') ADVANCE(456); + END_STATE(); + case 401: + if (lookahead == 'l') ADVANCE(457); + END_STATE(); + case 402: + if (lookahead == 'i') ADVANCE(458); + END_STATE(); + case 403: + if (lookahead == 'e') ADVANCE(459); + END_STATE(); + case 404: + ACCEPT_TOKEN(anon_sym___leave); + END_STATE(); + case 405: + if (lookahead == 'h') ADVANCE(460); + END_STATE(); + case 406: + if (lookahead == 'u') ADVANCE(461); + END_STATE(); + case 407: + if (lookahead == 'f') ADVANCE(462); + END_STATE(); + case 408: + if (lookahead == 'm') ADVANCE(463); + END_STATE(); + case 409: + if (lookahead == 'i') ADVANCE(464); + END_STATE(); + case 410: + if (lookahead == 't') ADVANCE(465); + END_STATE(); + case 411: + ACCEPT_TOKEN(anon_sym___scanf); + END_STATE(); + case 412: + if (lookahead == 'l') ADVANCE(466); + END_STATE(); + case 413: + if (lookahead == 'a') ADVANCE(467); + END_STATE(); + case 414: + if (lookahead == 'd') ADVANCE(468); + END_STATE(); + case 415: + if (lookahead == 'g') ADVANCE(469); + END_STATE(); + case 416: + if (lookahead == 'r') ADVANCE(470); + END_STATE(); + case 417: + if (lookahead == 'f') ADVANCE(471); + END_STATE(); + case 418: + if (lookahead == 'n') ADVANCE(472); + END_STATE(); + case 419: + ACCEPT_TOKEN(anon_sym_alignas); + END_STATE(); + case 420: + ACCEPT_TOKEN(anon_sym_alignof); + END_STATE(); + case 421: + if (lookahead == 't') ADVANCE(180); + END_STATE(); + case 422: + if (lookahead == 't') ADVANCE(180); + END_STATE(); + case 423: + if (lookahead == 't') ADVANCE(180); + END_STATE(); + case 424: + if (lookahead == '_') ADVANCE(473); + END_STATE(); + case 425: + if (lookahead == 'p') ADVANCE(474); + END_STATE(); + case 426: + if (lookahead == 'e') ADVANCE(475); + END_STATE(); + case 427: + ACCEPT_TOKEN(anon_sym_default); + END_STATE(); + case 428: + ACCEPT_TOKEN(anon_sym_defined); + END_STATE(); + case 429: + if (lookahead == 't') ADVANCE(180); + END_STATE(); + case 430: + if (lookahead == 'g') ADVANCE(476); + END_STATE(); + case 431: + if (lookahead == 'n') ADVANCE(477); + END_STATE(); + case 432: + ACCEPT_TOKEN(anon_sym_nullptr); + if (lookahead == '_') ADVANCE(478); + END_STATE(); + case 433: + if (lookahead == 'f') ADVANCE(479); + END_STATE(); + case 434: + if (lookahead == '_') ADVANCE(480); + END_STATE(); + case 435: + if (lookahead == 'r') ADVANCE(481); + END_STATE(); + case 436: + if (lookahead == 't') ADVANCE(482); + END_STATE(); + case 437: + if (lookahead == 'l') ADVANCE(483); + END_STATE(); + case 438: + ACCEPT_TOKEN(anon_sym_typedef); + END_STATE(); + case 439: + if (lookahead == 't') ADVANCE(180); + END_STATE(); + case 440: + if (lookahead == 't') ADVANCE(180); + END_STATE(); + case 441: + if (lookahead == 't') ADVANCE(180); + END_STATE(); + case 442: + if (lookahead == '_') ADVANCE(484); + END_STATE(); + case 443: + if (lookahead == 'd') ADVANCE(485); + END_STATE(); + case 444: + if (lookahead == 'e') ADVANCE(486); + END_STATE(); + case 445: + ACCEPT_TOKEN(anon_sym__Alignas); + END_STATE(); + case 446: + ACCEPT_TOKEN(anon_sym__Alignof); + END_STATE(); + case 447: + ACCEPT_TOKEN(anon_sym__Generic); + END_STATE(); + case 448: + if (lookahead == 'n') ADVANCE(487); + END_STATE(); + case 449: + if (lookahead == 'd') ADVANCE(488); + END_STATE(); + case 450: + if (lookahead == 'f') ADVANCE(489); + END_STATE(); + case 451: + if (lookahead == 'u') ADVANCE(490); + END_STATE(); + case 452: + if (lookahead == 'l') ADVANCE(491); + END_STATE(); + case 453: + if (lookahead == 'e') ADVANCE(492); + END_STATE(); + case 454: + ACCEPT_TOKEN(anon_sym___except); + END_STATE(); + case 455: + if (lookahead == 'i') ADVANCE(493); + END_STATE(); + case 456: + if (lookahead == 'l') ADVANCE(494); + END_STATE(); + case 457: + if (lookahead == 'y') ADVANCE(495); + END_STATE(); + case 458: + if (lookahead == 'n') ADVANCE(496); + END_STATE(); + case 459: + ACCEPT_TOKEN(anon_sym___inline); + if (lookahead == '_') ADVANCE(497); + END_STATE(); + case 460: + if (lookahead == 'o') ADVANCE(498); + END_STATE(); + case 461: + if (lookahead == 'r') ADVANCE(499); + END_STATE(); + case 462: + ACCEPT_TOKEN(anon_sym___printf); + END_STATE(); + case 463: + if (lookahead == 'o') ADVANCE(500); + END_STATE(); + case 464: + if (lookahead == 'c') ADVANCE(501); + END_STATE(); + case 465: + if (lookahead == 'e') ADVANCE(502); + END_STATE(); + case 466: + if (lookahead == 'l') ADVANCE(503); + END_STATE(); + case 467: + if (lookahead == 'l') ADVANCE(504); + END_STATE(); + case 468: + ACCEPT_TOKEN(anon_sym___thread); + END_STATE(); + case 469: + if (lookahead == 'n') ADVANCE(505); + END_STATE(); + case 470: + if (lookahead == 'c') ADVANCE(506); + END_STATE(); + case 471: + ACCEPT_TOKEN(anon_sym__alignof); + END_STATE(); + case 472: + if (lookahead == 'e') ADVANCE(507); + END_STATE(); + case 473: + if (lookahead == 't') ADVANCE(180); + END_STATE(); + case 474: + if (lookahead == 'r') ADVANCE(508); + END_STATE(); + case 475: + ACCEPT_TOKEN(anon_sym_continue); + END_STATE(); + case 476: + if (lookahead == 'n') ADVANCE(509); + END_STATE(); + case 477: + ACCEPT_TOKEN(anon_sym_noreturn); + END_STATE(); + case 478: + if (lookahead == 't') ADVANCE(180); + END_STATE(); + case 479: + ACCEPT_TOKEN(anon_sym_offsetof); + END_STATE(); + case 480: + if (lookahead == 't') ADVANCE(180); + END_STATE(); + case 481: + ACCEPT_TOKEN(anon_sym_register); + END_STATE(); + case 482: + ACCEPT_TOKEN(anon_sym_restrict); + END_STATE(); + case 483: + if (lookahead == 'o') ADVANCE(510); + END_STATE(); + case 484: + if (lookahead == 't') ADVANCE(180); + END_STATE(); + case 485: + ACCEPT_TOKEN(anon_sym_unsigned); + END_STATE(); + case 486: + ACCEPT_TOKEN(anon_sym_volatile); + END_STATE(); + case 487: + ACCEPT_TOKEN(anon_sym__Noreturn); + END_STATE(); + case 488: + ACCEPT_TOKEN(anon_sym___aligned); + END_STATE(); + case 489: + ACCEPT_TOKEN(anon_sym___alignof); + if (lookahead == '_') ADVANCE(511); + END_STATE(); + case 490: + if (lookahead == 't') ADVANCE(512); + END_STATE(); + case 491: + ACCEPT_TOKEN(anon_sym___clrcall); + END_STATE(); + case 492: + if (lookahead == 'c') ADVANCE(513); + END_STATE(); + case 493: + if (lookahead == 'o') ADVANCE(514); + END_STATE(); + case 494: + if (lookahead == 'l') ADVANCE(515); + END_STATE(); + case 495: + ACCEPT_TOKEN(anon_sym___finally); + END_STATE(); + case 496: + if (lookahead == 'l') ADVANCE(516); + END_STATE(); + case 497: + if (lookahead == '_') ADVANCE(517); + END_STATE(); + case 498: + if (lookahead == 'l') ADVANCE(518); + END_STATE(); + case 499: + if (lookahead == 'n') ADVANCE(519); + END_STATE(); + case 500: + if (lookahead == 's') ADVANCE(520); + END_STATE(); + case 501: + if (lookahead == 't') ADVANCE(521); + END_STATE(); + case 502: + if (lookahead == 'r') ADVANCE(522); + END_STATE(); + case 503: + ACCEPT_TOKEN(anon_sym___stdcall); + END_STATE(); + case 504: + if (lookahead == 'l') ADVANCE(523); + END_STATE(); + case 505: + if (lookahead == 'e') ADVANCE(524); + END_STATE(); + case 506: + if (lookahead == 'a') ADVANCE(525); + END_STATE(); + case 507: + if (lookahead == 'd') ADVANCE(526); + END_STATE(); + case 508: + ACCEPT_TOKEN(anon_sym_constexpr); + END_STATE(); + case 509: + if (lookahead == '_') ADVANCE(527); + END_STATE(); + case 510: + if (lookahead == 'c') ADVANCE(528); + END_STATE(); + case 511: + if (lookahead == '_') ADVANCE(529); + END_STATE(); + case 512: + if (lookahead == 'e') ADVANCE(530); + END_STATE(); + case 513: + ACCEPT_TOKEN(anon_sym___declspec); + END_STATE(); + case 514: + if (lookahead == 'n') ADVANCE(531); + END_STATE(); + case 515: + ACCEPT_TOKEN(anon_sym___fastcall); + END_STATE(); + case 516: + if (lookahead == 'i') ADVANCE(532); + END_STATE(); + case 517: + ACCEPT_TOKEN(anon_sym___inline__); + END_STATE(); + case 518: + if (lookahead == 'd') ADVANCE(533); + END_STATE(); + case 519: + ACCEPT_TOKEN(anon_sym___noreturn); + END_STATE(); + case 520: + if (lookahead == 't') ADVANCE(534); + END_STATE(); + case 521: + ACCEPT_TOKEN(sym_ms_restrict_modifier); + if (lookahead == '_') ADVANCE(535); + END_STATE(); + case 522: + if (lookahead == '_') ADVANCE(536); + END_STATE(); + case 523: + ACCEPT_TOKEN(anon_sym___thiscall); + END_STATE(); + case 524: + if (lookahead == 'd') ADVANCE(537); + END_STATE(); + case 525: + if (lookahead == 'l') ADVANCE(538); + END_STATE(); + case 526: + ACCEPT_TOKEN(anon_sym__unaligned); + END_STATE(); + case 527: + if (lookahead == 't') ADVANCE(180); + END_STATE(); + case 528: + if (lookahead == 'a') ADVANCE(539); + END_STATE(); + case 529: + ACCEPT_TOKEN(anon_sym___alignof__); + END_STATE(); + case 530: + if (lookahead == '_') ADVANCE(540); + END_STATE(); + case 531: + if (lookahead == '_') ADVANCE(541); + END_STATE(); + case 532: + if (lookahead == 'n') ADVANCE(542); + END_STATE(); + case 533: + ACCEPT_TOKEN(anon_sym___must_hold); + END_STATE(); + case 534: + if (lookahead == 'l') ADVANCE(543); + END_STATE(); + case 535: + if (lookahead == '_') ADVANCE(544); + END_STATE(); + case 536: + if (lookahead == 'i') ADVANCE(545); + END_STATE(); + case 537: + ACCEPT_TOKEN(anon_sym___unaligned); + END_STATE(); + case 538: + if (lookahead == 'l') ADVANCE(546); + END_STATE(); + case 539: + if (lookahead == 'l') ADVANCE(547); + END_STATE(); + case 540: + if (lookahead == '_') ADVANCE(548); + END_STATE(); + case 541: + if (lookahead == '_') ADVANCE(549); + END_STATE(); + case 542: + if (lookahead == 'e') ADVANCE(550); + END_STATE(); + case 543: + if (lookahead == 'y') ADVANCE(551); + END_STATE(); + case 544: + ACCEPT_TOKEN(anon_sym___restrict__); + END_STATE(); + case 545: + if (lookahead == 'n') ADVANCE(552); + END_STATE(); + case 546: + ACCEPT_TOKEN(anon_sym___vectorcall); + END_STATE(); + case 547: + ACCEPT_TOKEN(anon_sym_thread_local); + END_STATE(); + case 548: + ACCEPT_TOKEN(anon_sym___attribute__); + END_STATE(); + case 549: + ACCEPT_TOKEN(anon_sym___extension__); + END_STATE(); + case 550: + ACCEPT_TOKEN(anon_sym___forceinline); + END_STATE(); + case 551: + ACCEPT_TOKEN(anon_sym___read_mostly); + END_STATE(); + case 552: + if (lookahead == 'i') ADVANCE(553); + END_STATE(); + case 553: + if (lookahead == 't') ADVANCE(554); + END_STATE(); + case 554: + ACCEPT_TOKEN(anon_sym___ro_after_init); + END_STATE(); + default: + return false; + } +} + +static const TSLexMode ts_lex_modes[STATE_COUNT] = { + [0] = {.lex_state = 0}, + [1] = {.lex_state = 249}, + [2] = {.lex_state = 52}, + [3] = {.lex_state = 52}, + [4] = {.lex_state = 52}, + [5] = {.lex_state = 52}, + [6] = {.lex_state = 52}, + [7] = {.lex_state = 52}, + [8] = {.lex_state = 52}, + [9] = {.lex_state = 52}, + [10] = {.lex_state = 52}, + [11] = {.lex_state = 52}, + [12] = {.lex_state = 52}, + [13] = {.lex_state = 52}, + [14] = {.lex_state = 52}, + [15] = {.lex_state = 52}, + [16] = {.lex_state = 52}, + [17] = {.lex_state = 52}, + [18] = {.lex_state = 52}, + [19] = {.lex_state = 52}, + [20] = {.lex_state = 52}, + [21] = {.lex_state = 52}, + [22] = {.lex_state = 52}, + [23] = {.lex_state = 249}, + [24] = {.lex_state = 249}, + [25] = {.lex_state = 249}, + [26] = {.lex_state = 249}, + [27] = {.lex_state = 249}, + [28] = {.lex_state = 249}, + [29] = {.lex_state = 249}, + [30] = {.lex_state = 249}, + [31] = {.lex_state = 249}, + [32] = {.lex_state = 249}, + [33] = {.lex_state = 54}, + [34] = {.lex_state = 54}, + [35] = {.lex_state = 249}, + [36] = {.lex_state = 54}, + [37] = {.lex_state = 249}, + [38] = {.lex_state = 249}, + [39] = {.lex_state = 249}, + [40] = {.lex_state = 249}, + [41] = {.lex_state = 249}, + [42] = {.lex_state = 249}, + [43] = {.lex_state = 249}, + [44] = {.lex_state = 249}, + [45] = {.lex_state = 249}, + [46] = {.lex_state = 249}, + [47] = {.lex_state = 249}, + [48] = {.lex_state = 249}, + [49] = {.lex_state = 52}, + [50] = {.lex_state = 52}, + [51] = {.lex_state = 52}, + [52] = {.lex_state = 52}, + [53] = {.lex_state = 52}, + [54] = {.lex_state = 249}, + [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}, + [63] = {.lex_state = 249}, + [64] = {.lex_state = 249}, + [65] = {.lex_state = 249}, + [66] = {.lex_state = 249}, + [67] = {.lex_state = 249}, + [68] = {.lex_state = 249}, + [69] = {.lex_state = 249}, + [70] = {.lex_state = 249}, + [71] = {.lex_state = 249}, + [72] = {.lex_state = 249}, + [73] = {.lex_state = 249}, + [74] = {.lex_state = 249}, + [75] = {.lex_state = 249}, + [76] = {.lex_state = 249}, + [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}, + [85] = {.lex_state = 52}, + [86] = {.lex_state = 52}, + [87] = {.lex_state = 52}, + [88] = {.lex_state = 52}, + [89] = {.lex_state = 52}, + [90] = {.lex_state = 52}, + [91] = {.lex_state = 52}, + [92] = {.lex_state = 52}, + [93] = {.lex_state = 52}, + [94] = {.lex_state = 52}, + [95] = {.lex_state = 52}, + [96] = {.lex_state = 52}, + [97] = {.lex_state = 52}, + [98] = {.lex_state = 52}, + [99] = {.lex_state = 52}, + [100] = {.lex_state = 52}, + [101] = {.lex_state = 52}, + [102] = {.lex_state = 52}, + [103] = {.lex_state = 52}, + [104] = {.lex_state = 52}, + [105] = {.lex_state = 52}, + [106] = {.lex_state = 52}, + [107] = {.lex_state = 52}, + [108] = {.lex_state = 52}, + [109] = {.lex_state = 52}, + [110] = {.lex_state = 52}, + [111] = {.lex_state = 52}, + [112] = {.lex_state = 52}, + [113] = {.lex_state = 52}, + [114] = {.lex_state = 52}, + [115] = {.lex_state = 52}, + [116] = {.lex_state = 52}, + [117] = {.lex_state = 52}, + [118] = {.lex_state = 52}, + [119] = {.lex_state = 52}, + [120] = {.lex_state = 52}, + [121] = {.lex_state = 52}, + [122] = {.lex_state = 52}, + [123] = {.lex_state = 52}, + [124] = {.lex_state = 52}, + [125] = {.lex_state = 52}, + [126] = {.lex_state = 52}, + [127] = {.lex_state = 52}, + [128] = {.lex_state = 52}, + [129] = {.lex_state = 52}, + [130] = {.lex_state = 52}, + [131] = {.lex_state = 52}, + [132] = {.lex_state = 52}, + [133] = {.lex_state = 52}, + [134] = {.lex_state = 52}, + [135] = {.lex_state = 52}, + [136] = {.lex_state = 52}, + [137] = {.lex_state = 52}, + [138] = {.lex_state = 52}, + [139] = {.lex_state = 52}, + [140] = {.lex_state = 52}, + [141] = {.lex_state = 52}, + [142] = {.lex_state = 52}, + [143] = {.lex_state = 52}, + [144] = {.lex_state = 52}, + [145] = {.lex_state = 52}, + [146] = {.lex_state = 52}, + [147] = {.lex_state = 52}, + [148] = {.lex_state = 52}, + [149] = {.lex_state = 52}, + [150] = {.lex_state = 52}, + [151] = {.lex_state = 52}, + [152] = {.lex_state = 52}, + [153] = {.lex_state = 52}, + [154] = {.lex_state = 52}, + [155] = {.lex_state = 52}, + [156] = {.lex_state = 52}, + [157] = {.lex_state = 52}, + [158] = {.lex_state = 52}, + [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}, + [168] = {.lex_state = 249}, + [169] = {.lex_state = 249}, + [170] = {.lex_state = 54}, + [171] = {.lex_state = 54}, + [172] = {.lex_state = 249}, + [173] = {.lex_state = 249}, + [174] = {.lex_state = 249}, + [175] = {.lex_state = 249}, + [176] = {.lex_state = 249}, + [177] = {.lex_state = 54}, + [178] = {.lex_state = 249}, + [179] = {.lex_state = 249}, + [180] = {.lex_state = 54}, + [181] = {.lex_state = 54}, + [182] = {.lex_state = 54}, + [183] = {.lex_state = 249}, + [184] = {.lex_state = 249}, + [185] = {.lex_state = 249}, + [186] = {.lex_state = 54}, + [187] = {.lex_state = 54}, + [188] = {.lex_state = 54}, + [189] = {.lex_state = 249}, + [190] = {.lex_state = 249}, + [191] = {.lex_state = 249}, + [192] = {.lex_state = 249}, + [193] = {.lex_state = 249}, + [194] = {.lex_state = 249}, + [195] = {.lex_state = 249}, + [196] = {.lex_state = 249}, + [197] = {.lex_state = 54}, + [198] = {.lex_state = 249}, + [199] = {.lex_state = 54}, + [200] = {.lex_state = 249}, + [201] = {.lex_state = 249}, + [202] = {.lex_state = 249}, + [203] = {.lex_state = 54}, + [204] = {.lex_state = 249}, + [205] = {.lex_state = 54}, + [206] = {.lex_state = 249}, + [207] = {.lex_state = 54}, + [208] = {.lex_state = 249}, + [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}, + [217] = {.lex_state = 249}, + [218] = {.lex_state = 249}, + [219] = {.lex_state = 249}, + [220] = {.lex_state = 54}, + [221] = {.lex_state = 249}, + [222] = {.lex_state = 249}, + [223] = {.lex_state = 249}, + [224] = {.lex_state = 249}, + [225] = {.lex_state = 249}, + [226] = {.lex_state = 249}, + [227] = {.lex_state = 249}, + [228] = {.lex_state = 249}, + [229] = {.lex_state = 54}, + [230] = {.lex_state = 54}, + [231] = {.lex_state = 249}, + [232] = {.lex_state = 249}, + [233] = {.lex_state = 54}, + [234] = {.lex_state = 54}, + [235] = {.lex_state = 54}, + [236] = {.lex_state = 54}, + [237] = {.lex_state = 249}, + [238] = {.lex_state = 54}, + [239] = {.lex_state = 249}, + [240] = {.lex_state = 249}, + [241] = {.lex_state = 249}, + [242] = {.lex_state = 249}, + [243] = {.lex_state = 249}, + [244] = {.lex_state = 249}, + [245] = {.lex_state = 249}, + [246] = {.lex_state = 249}, + [247] = {.lex_state = 249}, + [248] = {.lex_state = 249}, + [249] = {.lex_state = 54}, + [250] = {.lex_state = 249}, + [251] = {.lex_state = 54}, + [252] = {.lex_state = 249}, + [253] = {.lex_state = 249}, + [254] = {.lex_state = 249}, + [255] = {.lex_state = 54}, + [256] = {.lex_state = 54}, + [257] = {.lex_state = 249}, + [258] = {.lex_state = 249}, + [259] = {.lex_state = 249}, + [260] = {.lex_state = 249}, + [261] = {.lex_state = 54}, + [262] = {.lex_state = 249}, + [263] = {.lex_state = 54}, + [264] = {.lex_state = 54}, + [265] = {.lex_state = 54}, + [266] = {.lex_state = 54}, + [267] = {.lex_state = 249}, + [268] = {.lex_state = 249}, + [269] = {.lex_state = 249}, + [270] = {.lex_state = 249}, + [271] = {.lex_state = 249}, + [272] = {.lex_state = 54}, + [273] = {.lex_state = 54}, + [274] = {.lex_state = 249}, + [275] = {.lex_state = 249}, + [276] = {.lex_state = 249}, + [277] = {.lex_state = 249}, + [278] = {.lex_state = 54}, + [279] = {.lex_state = 249}, + [280] = {.lex_state = 249}, + [281] = {.lex_state = 54}, + [282] = {.lex_state = 249}, + [283] = {.lex_state = 249}, + [284] = {.lex_state = 249}, + [285] = {.lex_state = 54}, + [286] = {.lex_state = 54}, + [287] = {.lex_state = 249}, + [288] = {.lex_state = 54}, + [289] = {.lex_state = 54}, + [290] = {.lex_state = 54}, + [291] = {.lex_state = 249}, + [292] = {.lex_state = 249}, + [293] = {.lex_state = 249}, + [294] = {.lex_state = 249}, + [295] = {.lex_state = 249}, + [296] = {.lex_state = 249}, + [297] = {.lex_state = 54}, + [298] = {.lex_state = 54}, + [299] = {.lex_state = 54}, + [300] = {.lex_state = 249}, + [301] = {.lex_state = 249}, + [302] = {.lex_state = 249}, + [303] = {.lex_state = 249}, + [304] = {.lex_state = 249}, + [305] = {.lex_state = 249}, + [306] = {.lex_state = 249}, + [307] = {.lex_state = 249}, + [308] = {.lex_state = 249}, + [309] = {.lex_state = 249}, + [310] = {.lex_state = 249}, + [311] = {.lex_state = 249}, + [312] = {.lex_state = 249}, + [313] = {.lex_state = 249}, + [314] = {.lex_state = 249}, + [315] = {.lex_state = 54}, + [316] = {.lex_state = 249}, + [317] = {.lex_state = 54}, + [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}, + [326] = {.lex_state = 249}, + [327] = {.lex_state = 249}, + [328] = {.lex_state = 249}, + [329] = {.lex_state = 249}, + [330] = {.lex_state = 54}, + [331] = {.lex_state = 249}, + [332] = {.lex_state = 54}, + [333] = {.lex_state = 249}, + [334] = {.lex_state = 249}, + [335] = {.lex_state = 54}, + [336] = {.lex_state = 249}, + [337] = {.lex_state = 54}, + [338] = {.lex_state = 54}, + [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}, + [346] = {.lex_state = 54}, + [347] = {.lex_state = 249}, + [348] = {.lex_state = 249}, + [349] = {.lex_state = 54}, + [350] = {.lex_state = 54}, + [351] = {.lex_state = 54}, + [352] = {.lex_state = 54}, + [353] = {.lex_state = 249}, + [354] = {.lex_state = 54}, + [355] = {.lex_state = 54}, + [356] = {.lex_state = 54}, + [357] = {.lex_state = 54}, + [358] = {.lex_state = 54}, + [359] = {.lex_state = 249}, + [360] = {.lex_state = 54}, + [361] = {.lex_state = 249}, + [362] = {.lex_state = 249}, + [363] = {.lex_state = 54}, + [364] = {.lex_state = 54}, + [365] = {.lex_state = 54}, + [366] = {.lex_state = 54}, + [367] = {.lex_state = 54}, + [368] = {.lex_state = 54}, + [369] = {.lex_state = 249}, + [370] = {.lex_state = 54}, + [371] = {.lex_state = 249}, + [372] = {.lex_state = 249}, + [373] = {.lex_state = 249}, + [374] = {.lex_state = 249}, + [375] = {.lex_state = 249}, + [376] = {.lex_state = 249}, + [377] = {.lex_state = 249}, + [378] = {.lex_state = 249}, + [379] = {.lex_state = 249}, + [380] = {.lex_state = 249}, + [381] = {.lex_state = 249}, + [382] = {.lex_state = 249}, + [383] = {.lex_state = 249}, + [384] = {.lex_state = 249}, + [385] = {.lex_state = 249}, + [386] = {.lex_state = 249}, + [387] = {.lex_state = 249}, + [388] = {.lex_state = 249}, + [389] = {.lex_state = 249}, + [390] = {.lex_state = 249}, + [391] = {.lex_state = 249}, + [392] = {.lex_state = 249}, + [393] = {.lex_state = 249}, + [394] = {.lex_state = 249}, + [395] = {.lex_state = 249}, + [396] = {.lex_state = 249}, + [397] = {.lex_state = 249}, + [398] = {.lex_state = 249}, + [399] = {.lex_state = 249}, + [400] = {.lex_state = 249}, + [401] = {.lex_state = 249}, + [402] = {.lex_state = 249}, + [403] = {.lex_state = 249}, + [404] = {.lex_state = 249}, + [405] = {.lex_state = 249}, + [406] = {.lex_state = 249}, + [407] = {.lex_state = 249}, + [408] = {.lex_state = 249}, + [409] = {.lex_state = 51}, + [410] = {.lex_state = 51}, + [411] = {.lex_state = 249}, + [412] = {.lex_state = 249}, + [413] = {.lex_state = 249}, + [414] = {.lex_state = 249}, + [415] = {.lex_state = 249}, + [416] = {.lex_state = 249}, + [417] = {.lex_state = 249}, + [418] = {.lex_state = 249}, + [419] = {.lex_state = 249}, + [420] = {.lex_state = 249}, + [421] = {.lex_state = 249}, + [422] = {.lex_state = 249}, + [423] = {.lex_state = 249}, + [424] = {.lex_state = 249}, + [425] = {.lex_state = 249}, + [426] = {.lex_state = 249}, + [427] = {.lex_state = 249}, + [428] = {.lex_state = 249}, + [429] = {.lex_state = 249}, + [430] = {.lex_state = 249}, + [431] = {.lex_state = 249}, + [432] = {.lex_state = 249}, + [433] = {.lex_state = 249}, + [434] = {.lex_state = 249}, + [435] = {.lex_state = 249}, + [436] = {.lex_state = 249}, + [437] = {.lex_state = 249}, + [438] = {.lex_state = 249}, + [439] = {.lex_state = 249}, + [440] = {.lex_state = 249}, + [441] = {.lex_state = 249}, + [442] = {.lex_state = 51}, + [443] = {.lex_state = 249}, + [444] = {.lex_state = 249}, + [445] = {.lex_state = 249}, + [446] = {.lex_state = 249}, + [447] = {.lex_state = 249}, + [448] = {.lex_state = 249}, + [449] = {.lex_state = 249}, + [450] = {.lex_state = 249}, + [451] = {.lex_state = 249}, + [452] = {.lex_state = 249}, + [453] = {.lex_state = 249}, + [454] = {.lex_state = 249}, + [455] = {.lex_state = 249}, + [456] = {.lex_state = 249}, + [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}, + [469] = {.lex_state = 56}, + [470] = {.lex_state = 249}, + [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}, + [478] = {.lex_state = 249}, + [479] = {.lex_state = 249}, + [480] = {.lex_state = 249}, + [481] = {.lex_state = 249}, + [482] = {.lex_state = 249}, + [483] = {.lex_state = 249}, + [484] = {.lex_state = 249}, + [485] = {.lex_state = 249}, + [486] = {.lex_state = 249}, + [487] = {.lex_state = 249}, + [488] = {.lex_state = 249}, + [489] = {.lex_state = 249}, + [490] = {.lex_state = 249}, + [491] = {.lex_state = 249}, + [492] = {.lex_state = 249}, + [493] = {.lex_state = 249}, + [494] = {.lex_state = 249}, + [495] = {.lex_state = 249}, + [496] = {.lex_state = 249}, + [497] = {.lex_state = 249}, + [498] = {.lex_state = 249}, + [499] = {.lex_state = 249}, + [500] = {.lex_state = 249}, + [501] = {.lex_state = 249}, + [502] = {.lex_state = 249}, + [503] = {.lex_state = 249}, + [504] = {.lex_state = 249}, + [505] = {.lex_state = 249}, + [506] = {.lex_state = 249}, + [507] = {.lex_state = 249}, + [508] = {.lex_state = 249}, + [509] = {.lex_state = 249}, + [510] = {.lex_state = 249}, + [511] = {.lex_state = 249}, + [512] = {.lex_state = 249}, + [513] = {.lex_state = 249}, + [514] = {.lex_state = 249}, + [515] = {.lex_state = 249}, + [516] = {.lex_state = 249}, + [517] = {.lex_state = 249}, + [518] = {.lex_state = 249}, + [519] = {.lex_state = 249}, + [520] = {.lex_state = 249}, + [521] = {.lex_state = 249}, + [522] = {.lex_state = 249}, + [523] = {.lex_state = 249}, + [524] = {.lex_state = 249}, + [525] = {.lex_state = 249}, + [526] = {.lex_state = 249}, + [527] = {.lex_state = 249}, + [528] = {.lex_state = 249}, + [529] = {.lex_state = 249}, + [530] = {.lex_state = 249}, + [531] = {.lex_state = 249}, + [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}, + [541] = {.lex_state = 249}, + [542] = {.lex_state = 249}, + [543] = {.lex_state = 58}, + [544] = {.lex_state = 58}, + [545] = {.lex_state = 58}, + [546] = {.lex_state = 58}, + [547] = {.lex_state = 58}, + [548] = {.lex_state = 249}, + [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}, + [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}, + [571] = {.lex_state = 68}, + [572] = {.lex_state = 68}, + [573] = {.lex_state = 68}, + [574] = {.lex_state = 68}, + [575] = {.lex_state = 68}, + [576] = {.lex_state = 68}, + [577] = {.lex_state = 68}, + [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}, + [593] = {.lex_state = 249}, + [594] = {.lex_state = 249}, + [595] = {.lex_state = 249}, + [596] = {.lex_state = 249}, + [597] = {.lex_state = 249}, + [598] = {.lex_state = 249}, + [599] = {.lex_state = 249}, + [600] = {.lex_state = 249}, + [601] = {.lex_state = 249}, + [602] = {.lex_state = 249}, + [603] = {.lex_state = 249}, + [604] = {.lex_state = 249}, + [605] = {.lex_state = 249}, + [606] = {.lex_state = 58}, + [607] = {.lex_state = 58}, + [608] = {.lex_state = 58}, + [609] = {.lex_state = 249}, + [610] = {.lex_state = 58}, + [611] = {.lex_state = 249}, + [612] = {.lex_state = 249}, + [613] = {.lex_state = 249}, + [614] = {.lex_state = 249}, + [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}, + [623] = {.lex_state = 249}, + [624] = {.lex_state = 58}, + [625] = {.lex_state = 58}, + [626] = {.lex_state = 58}, + [627] = {.lex_state = 249}, + [628] = {.lex_state = 58}, + [629] = {.lex_state = 249}, + [630] = {.lex_state = 58}, + [631] = {.lex_state = 249}, + [632] = {.lex_state = 58}, + [633] = {.lex_state = 58}, + [634] = {.lex_state = 249}, + [635] = {.lex_state = 249}, + [636] = {.lex_state = 249}, + [637] = {.lex_state = 249}, + [638] = {.lex_state = 58}, + [639] = {.lex_state = 58}, + [640] = {.lex_state = 249}, + [641] = {.lex_state = 249}, + [642] = {.lex_state = 249}, + [643] = {.lex_state = 249}, + [644] = {.lex_state = 58}, + [645] = {.lex_state = 249}, + [646] = {.lex_state = 249}, + [647] = {.lex_state = 249}, + [648] = {.lex_state = 249}, + [649] = {.lex_state = 58}, + [650] = {.lex_state = 58}, + [651] = {.lex_state = 58}, + [652] = {.lex_state = 58}, + [653] = {.lex_state = 58}, + [654] = {.lex_state = 58}, + [655] = {.lex_state = 249}, + [656] = {.lex_state = 249}, + [657] = {.lex_state = 58}, + [658] = {.lex_state = 58}, + [659] = {.lex_state = 58}, + [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}, + [668] = {.lex_state = 58}, + [669] = {.lex_state = 58}, + [670] = {.lex_state = 249}, + [671] = {.lex_state = 249}, + [672] = {.lex_state = 249}, + [673] = {.lex_state = 249}, + [674] = {.lex_state = 249}, + [675] = {.lex_state = 249}, + [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}, + [683] = {.lex_state = 58}, + [684] = {.lex_state = 58}, + [685] = {.lex_state = 56}, + [686] = {.lex_state = 249}, + [687] = {.lex_state = 249}, + [688] = {.lex_state = 58}, + [689] = {.lex_state = 58}, + [690] = {.lex_state = 58}, + [691] = {.lex_state = 58}, + [692] = {.lex_state = 249}, + [693] = {.lex_state = 249}, + [694] = {.lex_state = 249}, + [695] = {.lex_state = 249}, + [696] = {.lex_state = 58}, + [697] = {.lex_state = 58}, + [698] = {.lex_state = 249}, + [699] = {.lex_state = 58}, + [700] = {.lex_state = 249}, + [701] = {.lex_state = 249}, + [702] = {.lex_state = 58}, + [703] = {.lex_state = 249}, + [704] = {.lex_state = 249}, + [705] = {.lex_state = 249}, + [706] = {.lex_state = 249}, + [707] = {.lex_state = 249}, + [708] = {.lex_state = 249}, + [709] = {.lex_state = 249}, + [710] = {.lex_state = 249}, + [711] = {.lex_state = 249}, + [712] = {.lex_state = 58}, + [713] = {.lex_state = 58}, + [714] = {.lex_state = 58}, + [715] = {.lex_state = 249}, + [716] = {.lex_state = 249}, + [717] = {.lex_state = 249}, + [718] = {.lex_state = 249}, + [719] = {.lex_state = 249}, + [720] = {.lex_state = 249}, + [721] = {.lex_state = 249}, + [722] = {.lex_state = 249}, + [723] = {.lex_state = 249}, + [724] = {.lex_state = 249}, + [725] = {.lex_state = 249}, + [726] = {.lex_state = 249}, + [727] = {.lex_state = 249}, + [728] = {.lex_state = 249}, + [729] = {.lex_state = 249}, + [730] = {.lex_state = 249}, + [731] = {.lex_state = 249}, + [732] = {.lex_state = 249}, + [733] = {.lex_state = 249}, + [734] = {.lex_state = 249}, + [735] = {.lex_state = 249}, + [736] = {.lex_state = 249}, + [737] = {.lex_state = 249}, + [738] = {.lex_state = 249}, + [739] = {.lex_state = 249}, + [740] = {.lex_state = 249}, + [741] = {.lex_state = 249}, + [742] = {.lex_state = 249}, + [743] = {.lex_state = 249}, + [744] = {.lex_state = 249}, + [745] = {.lex_state = 249}, + [746] = {.lex_state = 249}, + [747] = {.lex_state = 249}, + [748] = {.lex_state = 249}, + [749] = {.lex_state = 249}, + [750] = {.lex_state = 249}, + [751] = {.lex_state = 249}, + [752] = {.lex_state = 249}, + [753] = {.lex_state = 249}, + [754] = {.lex_state = 249}, + [755] = {.lex_state = 249}, + [756] = {.lex_state = 249}, + [757] = {.lex_state = 249}, + [758] = {.lex_state = 249}, + [759] = {.lex_state = 249}, + [760] = {.lex_state = 249}, + [761] = {.lex_state = 249}, + [762] = {.lex_state = 249}, + [763] = {.lex_state = 249}, + [764] = {.lex_state = 249}, + [765] = {.lex_state = 249}, + [766] = {.lex_state = 249}, + [767] = {.lex_state = 249}, + [768] = {.lex_state = 249}, + [769] = {.lex_state = 249}, + [770] = {.lex_state = 249}, + [771] = {.lex_state = 249}, + [772] = {.lex_state = 249}, + [773] = {.lex_state = 249}, + [774] = {.lex_state = 249}, + [775] = {.lex_state = 249}, + [776] = {.lex_state = 249}, + [777] = {.lex_state = 249}, + [778] = {.lex_state = 249}, + [779] = {.lex_state = 249}, + [780] = {.lex_state = 249}, + [781] = {.lex_state = 249}, + [782] = {.lex_state = 249}, + [783] = {.lex_state = 249}, + [784] = {.lex_state = 249}, + [785] = {.lex_state = 249}, + [786] = {.lex_state = 249}, + [787] = {.lex_state = 249}, + [788] = {.lex_state = 249}, + [789] = {.lex_state = 249}, + [790] = {.lex_state = 249}, + [791] = {.lex_state = 249}, + [792] = {.lex_state = 249}, + [793] = {.lex_state = 249}, + [794] = {.lex_state = 249}, + [795] = {.lex_state = 249}, + [796] = {.lex_state = 249}, + [797] = {.lex_state = 249}, + [798] = {.lex_state = 249}, + [799] = {.lex_state = 249}, + [800] = {.lex_state = 249}, + [801] = {.lex_state = 249}, + [802] = {.lex_state = 249}, + [803] = {.lex_state = 249}, + [804] = {.lex_state = 249}, + [805] = {.lex_state = 249}, + [806] = {.lex_state = 249}, + [807] = {.lex_state = 249}, + [808] = {.lex_state = 249}, + [809] = {.lex_state = 249}, + [810] = {.lex_state = 249}, + [811] = {.lex_state = 249}, + [812] = {.lex_state = 249}, + [813] = {.lex_state = 249}, + [814] = {.lex_state = 249}, + [815] = {.lex_state = 249}, + [816] = {.lex_state = 249}, + [817] = {.lex_state = 249}, + [818] = {.lex_state = 249}, + [819] = {.lex_state = 249}, + [820] = {.lex_state = 249}, + [821] = {.lex_state = 249}, + [822] = {.lex_state = 249}, + [823] = {.lex_state = 249}, + [824] = {.lex_state = 249}, + [825] = {.lex_state = 249}, + [826] = {.lex_state = 249}, + [827] = {.lex_state = 249}, + [828] = {.lex_state = 249}, + [829] = {.lex_state = 249}, + [830] = {.lex_state = 249}, + [831] = {.lex_state = 249}, + [832] = {.lex_state = 249}, + [833] = {.lex_state = 249}, + [834] = {.lex_state = 249}, + [835] = {.lex_state = 249}, + [836] = {.lex_state = 249}, + [837] = {.lex_state = 249}, + [838] = {.lex_state = 249}, + [839] = {.lex_state = 249}, + [840] = {.lex_state = 249}, + [841] = {.lex_state = 249}, + [842] = {.lex_state = 249}, + [843] = {.lex_state = 249}, + [844] = {.lex_state = 249}, + [845] = {.lex_state = 249}, + [846] = {.lex_state = 249}, + [847] = {.lex_state = 249}, + [848] = {.lex_state = 249}, + [849] = {.lex_state = 249}, + [850] = {.lex_state = 249}, + [851] = {.lex_state = 249}, + [852] = {.lex_state = 249}, + [853] = {.lex_state = 249}, + [854] = {.lex_state = 249}, + [855] = {.lex_state = 249}, + [856] = {.lex_state = 249}, + [857] = {.lex_state = 249}, + [858] = {.lex_state = 249}, + [859] = {.lex_state = 249}, + [860] = {.lex_state = 249}, + [861] = {.lex_state = 249}, + [862] = {.lex_state = 249}, + [863] = {.lex_state = 249}, + [864] = {.lex_state = 249}, + [865] = {.lex_state = 249}, + [866] = {.lex_state = 249}, + [867] = {.lex_state = 249}, + [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}, + [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}, + [886] = {.lex_state = 58}, + [887] = {.lex_state = 58}, + [888] = {.lex_state = 58}, + [889] = {.lex_state = 56}, + [890] = {.lex_state = 58}, + [891] = {.lex_state = 58}, + [892] = {.lex_state = 58}, + [893] = {.lex_state = 58}, + [894] = {.lex_state = 56}, + [895] = {.lex_state = 56}, + [896] = {.lex_state = 56}, + [897] = {.lex_state = 56}, + [898] = {.lex_state = 56}, + [899] = {.lex_state = 58}, + [900] = {.lex_state = 58}, + [901] = {.lex_state = 58}, + [902] = {.lex_state = 58}, + [903] = {.lex_state = 58}, + [904] = {.lex_state = 58}, + [905] = {.lex_state = 58}, + [906] = {.lex_state = 58}, + [907] = {.lex_state = 58}, + [908] = {.lex_state = 58}, + [909] = {.lex_state = 58}, + [910] = {.lex_state = 58}, + [911] = {.lex_state = 58}, + [912] = {.lex_state = 58}, + [913] = {.lex_state = 58}, + [914] = {.lex_state = 58}, + [915] = {.lex_state = 56}, + [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}, + [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}, + [932] = {.lex_state = 58}, + [933] = {.lex_state = 249}, + [934] = {.lex_state = 249}, + [935] = {.lex_state = 249}, + [936] = {.lex_state = 58}, + [937] = {.lex_state = 58}, + [938] = {.lex_state = 58}, + [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}, + [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}, + [958] = {.lex_state = 68}, + [959] = {.lex_state = 68}, + [960] = {.lex_state = 68}, + [961] = {.lex_state = 69}, + [962] = {.lex_state = 69}, + [963] = {.lex_state = 68}, + [964] = {.lex_state = 68}, + [965] = {.lex_state = 68}, + [966] = {.lex_state = 69}, + [967] = {.lex_state = 68}, + [968] = {.lex_state = 69}, + [969] = {.lex_state = 68}, + [970] = {.lex_state = 69}, + [971] = {.lex_state = 68}, + [972] = {.lex_state = 69}, + [973] = {.lex_state = 58}, + [974] = {.lex_state = 68}, + [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}, + [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}, + [1006] = {.lex_state = 58}, + [1007] = {.lex_state = 58}, + [1008] = {.lex_state = 58}, + [1009] = {.lex_state = 58}, + [1010] = {.lex_state = 58}, + [1011] = {.lex_state = 58}, + [1012] = {.lex_state = 58}, + [1013] = {.lex_state = 58}, + [1014] = {.lex_state = 58}, + [1015] = {.lex_state = 58}, + [1016] = {.lex_state = 58}, + [1017] = {.lex_state = 58}, + [1018] = {.lex_state = 58}, + [1019] = {.lex_state = 58}, + [1020] = {.lex_state = 58}, + [1021] = {.lex_state = 58}, + [1022] = {.lex_state = 58}, + [1023] = {.lex_state = 58}, + [1024] = {.lex_state = 58}, + [1025] = {.lex_state = 58}, + [1026] = {.lex_state = 58}, + [1027] = {.lex_state = 58}, + [1028] = {.lex_state = 58}, + [1029] = {.lex_state = 58}, + [1030] = {.lex_state = 58}, + [1031] = {.lex_state = 58}, + [1032] = {.lex_state = 58}, + [1033] = {.lex_state = 58}, + [1034] = {.lex_state = 58}, + [1035] = {.lex_state = 58}, + [1036] = {.lex_state = 58}, + [1037] = {.lex_state = 58}, + [1038] = {.lex_state = 58}, + [1039] = {.lex_state = 58}, + [1040] = {.lex_state = 56}, + [1041] = {.lex_state = 58}, + [1042] = {.lex_state = 58}, + [1043] = {.lex_state = 56}, + [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}, + [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}, + [1058] = {.lex_state = 58}, + [1059] = {.lex_state = 58}, + [1060] = {.lex_state = 58}, + [1061] = {.lex_state = 58}, + [1062] = {.lex_state = 58}, + [1063] = {.lex_state = 58}, + [1064] = {.lex_state = 58}, + [1065] = {.lex_state = 58}, + [1066] = {.lex_state = 58}, + [1067] = {.lex_state = 58}, + [1068] = {.lex_state = 58}, + [1069] = {.lex_state = 58}, + [1070] = {.lex_state = 58}, + [1071] = {.lex_state = 58}, + [1072] = {.lex_state = 58}, + [1073] = {.lex_state = 58}, + [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}, + [1081] = {.lex_state = 58}, + [1082] = {.lex_state = 58}, + [1083] = {.lex_state = 58}, + [1084] = {.lex_state = 58}, + [1085] = {.lex_state = 250}, + [1086] = {.lex_state = 58}, + [1087] = {.lex_state = 58}, + [1088] = {.lex_state = 58}, + [1089] = {.lex_state = 58}, + [1090] = {.lex_state = 58}, + [1091] = {.lex_state = 58}, + [1092] = {.lex_state = 58}, + [1093] = {.lex_state = 58}, + [1094] = {.lex_state = 58}, + [1095] = {.lex_state = 58}, + [1096] = {.lex_state = 250}, + [1097] = {.lex_state = 250}, + [1098] = {.lex_state = 58}, + [1099] = {.lex_state = 250}, + [1100] = {.lex_state = 58}, + [1101] = {.lex_state = 58}, + [1102] = {.lex_state = 58}, + [1103] = {.lex_state = 250}, + [1104] = {.lex_state = 58}, + [1105] = {.lex_state = 58}, + [1106] = {.lex_state = 58}, + [1107] = {.lex_state = 58}, + [1108] = {.lex_state = 58}, + [1109] = {.lex_state = 58}, + [1110] = {.lex_state = 58}, + [1111] = {.lex_state = 58}, + [1112] = {.lex_state = 58}, + [1113] = {.lex_state = 250}, + [1114] = {.lex_state = 250}, + [1115] = {.lex_state = 58}, + [1116] = {.lex_state = 58}, + [1117] = {.lex_state = 58}, + [1118] = {.lex_state = 250}, + [1119] = {.lex_state = 58}, + [1120] = {.lex_state = 58}, + [1121] = {.lex_state = 58}, + [1122] = {.lex_state = 58}, + [1123] = {.lex_state = 58}, + [1124] = {.lex_state = 58}, + [1125] = {.lex_state = 58}, + [1126] = {.lex_state = 58}, + [1127] = {.lex_state = 58}, + [1128] = {.lex_state = 58}, + [1129] = {.lex_state = 57}, + [1130] = {.lex_state = 58}, + [1131] = {.lex_state = 58}, + [1132] = {.lex_state = 58}, + [1133] = {.lex_state = 58}, + [1134] = {.lex_state = 58}, + [1135] = {.lex_state = 58}, + [1136] = {.lex_state = 57}, + [1137] = {.lex_state = 58}, + [1138] = {.lex_state = 58}, + [1139] = {.lex_state = 250}, + [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}, + [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}, + [1154] = {.lex_state = 58}, + [1155] = {.lex_state = 58}, + [1156] = {.lex_state = 58}, + [1157] = {.lex_state = 58}, + [1158] = {.lex_state = 58}, + [1159] = {.lex_state = 57}, + [1160] = {.lex_state = 57}, + [1161] = {.lex_state = 58}, + [1162] = {.lex_state = 57}, + [1163] = {.lex_state = 58}, + [1164] = {.lex_state = 58}, + [1165] = {.lex_state = 57}, + [1166] = {.lex_state = 58}, + [1167] = {.lex_state = 57}, + [1168] = {.lex_state = 58}, + [1169] = {.lex_state = 58}, + [1170] = {.lex_state = 58}, + [1171] = {.lex_state = 57}, + [1172] = {.lex_state = 58}, + [1173] = {.lex_state = 58}, + [1174] = {.lex_state = 58}, + [1175] = {.lex_state = 58}, + [1176] = {.lex_state = 58}, + [1177] = {.lex_state = 58}, + [1178] = {.lex_state = 57}, + [1179] = {.lex_state = 57}, + [1180] = {.lex_state = 57}, + [1181] = {.lex_state = 57}, + [1182] = {.lex_state = 57}, + [1183] = {.lex_state = 57}, + [1184] = {.lex_state = 57}, + [1185] = {.lex_state = 57}, + [1186] = {.lex_state = 57}, + [1187] = {.lex_state = 250}, + [1188] = {.lex_state = 57}, + [1189] = {.lex_state = 250}, + [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}, + [1197] = {.lex_state = 57}, + [1198] = {.lex_state = 57}, + [1199] = {.lex_state = 250}, + [1200] = {.lex_state = 57}, + [1201] = {.lex_state = 57}, + [1202] = {.lex_state = 58}, + [1203] = {.lex_state = 57}, + [1204] = {.lex_state = 57}, + [1205] = {.lex_state = 57}, + [1206] = {.lex_state = 57}, + [1207] = {.lex_state = 250}, + [1208] = {.lex_state = 250}, + [1209] = {.lex_state = 57}, + [1210] = {.lex_state = 57}, + [1211] = {.lex_state = 57}, + [1212] = {.lex_state = 57}, + [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}, + [1220] = {.lex_state = 250}, + [1221] = {.lex_state = 250}, + [1222] = {.lex_state = 57}, + [1223] = {.lex_state = 250}, + [1224] = {.lex_state = 57}, + [1225] = {.lex_state = 57}, + [1226] = {.lex_state = 250}, + [1227] = {.lex_state = 58}, + [1228] = {.lex_state = 57}, + [1229] = {.lex_state = 57}, + [1230] = {.lex_state = 57}, + [1231] = {.lex_state = 58}, + [1232] = {.lex_state = 57}, + [1233] = {.lex_state = 250}, + [1234] = {.lex_state = 57}, + [1235] = {.lex_state = 250}, + [1236] = {.lex_state = 250}, + [1237] = {.lex_state = 58}, + [1238] = {.lex_state = 58}, + [1239] = {.lex_state = 250}, + [1240] = {.lex_state = 57}, + [1241] = {.lex_state = 57}, + [1242] = {.lex_state = 58}, + [1243] = {.lex_state = 250}, + [1244] = {.lex_state = 250}, + [1245] = {.lex_state = 250}, + [1246] = {.lex_state = 250}, + [1247] = {.lex_state = 57}, + [1248] = {.lex_state = 58}, + [1249] = {.lex_state = 58}, + [1250] = {.lex_state = 250}, + [1251] = {.lex_state = 58}, + [1252] = {.lex_state = 250}, + [1253] = {.lex_state = 250}, + [1254] = {.lex_state = 57}, + [1255] = {.lex_state = 57}, + [1256] = {.lex_state = 58}, + [1257] = {.lex_state = 250}, + [1258] = {.lex_state = 59}, + [1259] = {.lex_state = 250}, + [1260] = {.lex_state = 250}, + [1261] = {.lex_state = 250}, + [1262] = {.lex_state = 250}, + [1263] = {.lex_state = 250}, + [1264] = {.lex_state = 250}, + [1265] = {.lex_state = 250}, + [1266] = {.lex_state = 250}, + [1267] = {.lex_state = 58}, + [1268] = {.lex_state = 59}, + [1269] = {.lex_state = 58}, + [1270] = {.lex_state = 250}, + [1271] = {.lex_state = 58}, + [1272] = {.lex_state = 59}, + [1273] = {.lex_state = 250}, + [1274] = {.lex_state = 250}, + [1275] = {.lex_state = 250}, + [1276] = {.lex_state = 58}, + [1277] = {.lex_state = 250}, + [1278] = {.lex_state = 250}, + [1279] = {.lex_state = 58}, + [1280] = {.lex_state = 58}, + [1281] = {.lex_state = 250}, + [1282] = {.lex_state = 250}, + [1283] = {.lex_state = 58}, + [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}, + [1292] = {.lex_state = 250}, + [1293] = {.lex_state = 58}, + [1294] = {.lex_state = 58}, + [1295] = {.lex_state = 58}, + [1296] = {.lex_state = 58}, + [1297] = {.lex_state = 58}, + [1298] = {.lex_state = 58}, + [1299] = {.lex_state = 58}, + [1300] = {.lex_state = 58}, + [1301] = {.lex_state = 58}, + [1302] = {.lex_state = 58}, + [1303] = {.lex_state = 58}, + [1304] = {.lex_state = 58}, + [1305] = {.lex_state = 58}, + [1306] = {.lex_state = 58}, + [1307] = {.lex_state = 58}, + [1308] = {.lex_state = 58}, + [1309] = {.lex_state = 58}, + [1310] = {.lex_state = 58}, + [1311] = {.lex_state = 58}, + [1312] = {.lex_state = 58}, + [1313] = {.lex_state = 58}, + [1314] = {.lex_state = 58}, + [1315] = {.lex_state = 58}, + [1316] = {.lex_state = 58}, + [1317] = {.lex_state = 58}, + [1318] = {.lex_state = 58}, + [1319] = {.lex_state = 58}, + [1320] = {.lex_state = 58}, + [1321] = {.lex_state = 58}, + [1322] = {.lex_state = 58}, + [1323] = {.lex_state = 58}, + [1324] = {.lex_state = 58}, + [1325] = {.lex_state = 58}, + [1326] = {.lex_state = 58}, + [1327] = {.lex_state = 58}, + [1328] = {.lex_state = 58}, + [1329] = {.lex_state = 58}, + [1330] = {.lex_state = 58}, + [1331] = {.lex_state = 58}, + [1332] = {.lex_state = 58}, + [1333] = {.lex_state = 58}, + [1334] = {.lex_state = 58}, + [1335] = {.lex_state = 58}, + [1336] = {.lex_state = 58}, + [1337] = {.lex_state = 58}, + [1338] = {.lex_state = 58}, + [1339] = {.lex_state = 58}, + [1340] = {.lex_state = 58}, + [1341] = {.lex_state = 58}, + [1342] = {.lex_state = 58}, + [1343] = {.lex_state = 250}, + [1344] = {.lex_state = 58}, + [1345] = {.lex_state = 58}, + [1346] = {.lex_state = 58}, + [1347] = {.lex_state = 58}, + [1348] = {.lex_state = 58}, + [1349] = {.lex_state = 58}, + [1350] = {.lex_state = 58}, + [1351] = {.lex_state = 58}, + [1352] = {.lex_state = 58}, + [1353] = {.lex_state = 250}, + [1354] = {.lex_state = 58}, + [1355] = {.lex_state = 58}, + [1356] = {.lex_state = 250}, + [1357] = {.lex_state = 250}, + [1358] = {.lex_state = 250}, + [1359] = {.lex_state = 250}, + [1360] = {.lex_state = 58}, + [1361] = {.lex_state = 250}, + [1362] = {.lex_state = 58}, + [1363] = {.lex_state = 58}, + [1364] = {.lex_state = 250}, + [1365] = {.lex_state = 250}, + [1366] = {.lex_state = 250}, + [1367] = {.lex_state = 250}, + [1368] = {.lex_state = 250}, + [1369] = {.lex_state = 250}, + [1370] = {.lex_state = 250}, + [1371] = {.lex_state = 58}, + [1372] = {.lex_state = 250}, + [1373] = {.lex_state = 250}, + [1374] = {.lex_state = 250}, + [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}, + [1385] = {.lex_state = 58}, + [1386] = {.lex_state = 58}, + [1387] = {.lex_state = 58}, + [1388] = {.lex_state = 58}, + [1389] = {.lex_state = 58}, + [1390] = {.lex_state = 58}, + [1391] = {.lex_state = 58}, + [1392] = {.lex_state = 58}, + [1393] = {.lex_state = 58}, + [1394] = {.lex_state = 58}, + [1395] = {.lex_state = 250}, + [1396] = {.lex_state = 58}, + [1397] = {.lex_state = 250}, + [1398] = {.lex_state = 250}, + [1399] = {.lex_state = 250}, + [1400] = {.lex_state = 58}, + [1401] = {.lex_state = 58}, + [1402] = {.lex_state = 58}, + [1403] = {.lex_state = 250}, + [1404] = {.lex_state = 58}, + [1405] = {.lex_state = 58}, + [1406] = {.lex_state = 250}, + [1407] = {.lex_state = 58}, + [1408] = {.lex_state = 58}, + [1409] = {.lex_state = 58}, + [1410] = {.lex_state = 250}, + [1411] = {.lex_state = 58}, + [1412] = {.lex_state = 58}, + [1413] = {.lex_state = 58}, + [1414] = {.lex_state = 249}, + [1415] = {.lex_state = 249}, + [1416] = {.lex_state = 249}, + [1417] = {.lex_state = 249}, + [1418] = {.lex_state = 58}, + [1419] = {.lex_state = 249}, + [1420] = {.lex_state = 249}, + [1421] = {.lex_state = 249}, + [1422] = {.lex_state = 249}, + [1423] = {.lex_state = 249}, + [1424] = {.lex_state = 249}, + [1425] = {.lex_state = 249}, + [1426] = {.lex_state = 249}, + [1427] = {.lex_state = 249}, + [1428] = {.lex_state = 58}, + [1429] = {.lex_state = 58}, + [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}, + [1437] = {.lex_state = 249}, + [1438] = {.lex_state = 58}, + [1439] = {.lex_state = 249}, + [1440] = {.lex_state = 58}, + [1441] = {.lex_state = 58}, + [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}, + [1450] = {.lex_state = 58}, + [1451] = {.lex_state = 58}, + [1452] = {.lex_state = 57}, + [1453] = {.lex_state = 57}, + [1454] = {.lex_state = 58}, + [1455] = {.lex_state = 58}, + [1456] = {.lex_state = 57}, + [1457] = {.lex_state = 57}, + [1458] = {.lex_state = 57}, + [1459] = {.lex_state = 57}, + [1460] = {.lex_state = 57}, + [1461] = {.lex_state = 58}, + [1462] = {.lex_state = 57}, + [1463] = {.lex_state = 57}, + [1464] = {.lex_state = 58}, + [1465] = {.lex_state = 58}, + [1466] = {.lex_state = 58}, + [1467] = {.lex_state = 58}, + [1468] = {.lex_state = 58}, + [1469] = {.lex_state = 57}, + [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}, + [1485] = {.lex_state = 58}, + [1486] = {.lex_state = 250}, + [1487] = {.lex_state = 58}, + [1488] = {.lex_state = 250}, + [1489] = {.lex_state = 250}, + [1490] = {.lex_state = 250}, + [1491] = {.lex_state = 250}, + [1492] = {.lex_state = 58}, + [1493] = {.lex_state = 58}, + [1494] = {.lex_state = 58}, + [1495] = {.lex_state = 58}, + [1496] = {.lex_state = 58}, + [1497] = {.lex_state = 58}, + [1498] = {.lex_state = 58}, + [1499] = {.lex_state = 58}, + [1500] = {.lex_state = 58}, + [1501] = {.lex_state = 250}, + [1502] = {.lex_state = 250}, + [1503] = {.lex_state = 58}, + [1504] = {.lex_state = 58}, + [1505] = {.lex_state = 58}, + [1506] = {.lex_state = 58}, + [1507] = {.lex_state = 58}, + [1508] = {.lex_state = 58}, + [1509] = {.lex_state = 58}, + [1510] = {.lex_state = 58}, + [1511] = {.lex_state = 58}, + [1512] = {.lex_state = 58}, + [1513] = {.lex_state = 58}, + [1514] = {.lex_state = 58}, + [1515] = {.lex_state = 58}, + [1516] = {.lex_state = 58}, + [1517] = {.lex_state = 58}, + [1518] = {.lex_state = 58}, + [1519] = {.lex_state = 58}, + [1520] = {.lex_state = 58}, + [1521] = {.lex_state = 58}, + [1522] = {.lex_state = 58}, + [1523] = {.lex_state = 58}, + [1524] = {.lex_state = 58}, + [1525] = {.lex_state = 58}, + [1526] = {.lex_state = 58}, + [1527] = {.lex_state = 58}, + [1528] = {.lex_state = 250}, + [1529] = {.lex_state = 58}, + [1530] = {.lex_state = 58}, + [1531] = {.lex_state = 58}, + [1532] = {.lex_state = 58}, + [1533] = {.lex_state = 250}, + [1534] = {.lex_state = 250}, + [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}, + [1544] = {.lex_state = 58}, + [1545] = {.lex_state = 58}, + [1546] = {.lex_state = 58}, + [1547] = {.lex_state = 250}, + [1548] = {.lex_state = 250}, + [1549] = {.lex_state = 58}, + [1550] = {.lex_state = 250}, + [1551] = {.lex_state = 58}, + [1552] = {.lex_state = 58}, + [1553] = {.lex_state = 250}, + [1554] = {.lex_state = 250}, + [1555] = {.lex_state = 250}, + [1556] = {.lex_state = 58}, + [1557] = {.lex_state = 58}, + [1558] = {.lex_state = 250}, + [1559] = {.lex_state = 58}, + [1560] = {.lex_state = 250}, + [1561] = {.lex_state = 250}, + [1562] = {.lex_state = 250}, + [1563] = {.lex_state = 250}, + [1564] = {.lex_state = 58}, + [1565] = {.lex_state = 250}, + [1566] = {.lex_state = 250}, + [1567] = {.lex_state = 250}, + [1568] = {.lex_state = 250}, + [1569] = {.lex_state = 250}, + [1570] = {.lex_state = 250}, + [1571] = {.lex_state = 250}, + [1572] = {.lex_state = 58}, + [1573] = {.lex_state = 250}, + [1574] = {.lex_state = 250}, + [1575] = {.lex_state = 250}, + [1576] = {.lex_state = 250}, + [1577] = {.lex_state = 250}, + [1578] = {.lex_state = 250}, + [1579] = {.lex_state = 250}, + [1580] = {.lex_state = 250}, + [1581] = {.lex_state = 250}, + [1582] = {.lex_state = 250}, + [1583] = {.lex_state = 250}, + [1584] = {.lex_state = 250}, + [1585] = {.lex_state = 250}, + [1586] = {.lex_state = 250}, + [1587] = {.lex_state = 250}, + [1588] = {.lex_state = 250}, + [1589] = {.lex_state = 250}, + [1590] = {.lex_state = 250}, + [1591] = {.lex_state = 250}, + [1592] = {.lex_state = 250}, + [1593] = {.lex_state = 250}, + [1594] = {.lex_state = 58}, + [1595] = {.lex_state = 250}, + [1596] = {.lex_state = 58}, + [1597] = {.lex_state = 58}, + [1598] = {.lex_state = 250}, + [1599] = {.lex_state = 250}, + [1600] = {.lex_state = 250}, + [1601] = {.lex_state = 250}, + [1602] = {.lex_state = 250}, + [1603] = {.lex_state = 250}, + [1604] = {.lex_state = 250}, + [1605] = {.lex_state = 250}, + [1606] = {.lex_state = 250}, + [1607] = {.lex_state = 250}, + [1608] = {.lex_state = 250}, + [1609] = {.lex_state = 250}, + [1610] = {.lex_state = 58}, + [1611] = {.lex_state = 250}, + [1612] = {.lex_state = 250}, + [1613] = {.lex_state = 250}, + [1614] = {.lex_state = 250}, + [1615] = {.lex_state = 58}, + [1616] = {.lex_state = 58}, + [1617] = {.lex_state = 250}, + [1618] = {.lex_state = 58}, + [1619] = {.lex_state = 250}, + [1620] = {.lex_state = 250}, + [1621] = {.lex_state = 58}, + [1622] = {.lex_state = 250}, + [1623] = {.lex_state = 250}, + [1624] = {.lex_state = 250}, + [1625] = {.lex_state = 58}, + [1626] = {.lex_state = 250}, + [1627] = {.lex_state = 58}, + [1628] = {.lex_state = 250}, + [1629] = {.lex_state = 58}, + [1630] = {.lex_state = 250}, + [1631] = {.lex_state = 250}, + [1632] = {.lex_state = 250}, + [1633] = {.lex_state = 250}, + [1634] = {.lex_state = 250}, + [1635] = {.lex_state = 250}, + [1636] = {.lex_state = 250}, + [1637] = {.lex_state = 250}, + [1638] = {.lex_state = 250}, + [1639] = {.lex_state = 250}, + [1640] = {.lex_state = 250}, + [1641] = {.lex_state = 250}, + [1642] = {.lex_state = 58}, + [1643] = {.lex_state = 250}, + [1644] = {.lex_state = 250}, + [1645] = {.lex_state = 250}, + [1646] = {.lex_state = 250}, + [1647] = {.lex_state = 250}, + [1648] = {.lex_state = 250}, + [1649] = {.lex_state = 58}, + [1650] = {.lex_state = 58}, + [1651] = {.lex_state = 250}, + [1652] = {.lex_state = 250}, + [1653] = {.lex_state = 250}, + [1654] = {.lex_state = 250}, + [1655] = {.lex_state = 250}, + [1656] = {.lex_state = 250}, + [1657] = {.lex_state = 250}, + [1658] = {.lex_state = 250}, + [1659] = {.lex_state = 250}, + [1660] = {.lex_state = 250}, + [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}, + [1670] = {.lex_state = 250}, + [1671] = {.lex_state = 58}, + [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}, + [1683] = {.lex_state = 58}, + [1684] = {.lex_state = 58}, + [1685] = {.lex_state = 58}, + [1686] = {.lex_state = 58}, + [1687] = {.lex_state = 58}, + [1688] = {.lex_state = 58}, + [1689] = {.lex_state = 58}, + [1690] = {.lex_state = 58}, + [1691] = {.lex_state = 58}, + [1692] = {.lex_state = 58}, + [1693] = {.lex_state = 58}, + [1694] = {.lex_state = 58}, + [1695] = {.lex_state = 58}, + [1696] = {.lex_state = 58}, + [1697] = {.lex_state = 58}, + [1698] = {.lex_state = 58}, + [1699] = {.lex_state = 58}, + [1700] = {.lex_state = 58}, + [1701] = {.lex_state = 58}, + [1702] = {.lex_state = 58}, + [1703] = {.lex_state = 58}, + [1704] = {.lex_state = 58}, + [1705] = {.lex_state = 58}, + [1706] = {.lex_state = 58}, + [1707] = {.lex_state = 58}, + [1708] = {.lex_state = 58}, + [1709] = {.lex_state = 58}, + [1710] = {.lex_state = 58}, + [1711] = {.lex_state = 58}, + [1712] = {.lex_state = 58}, + [1713] = {.lex_state = 58}, + [1714] = {.lex_state = 58}, + [1715] = {.lex_state = 58}, + [1716] = {.lex_state = 58}, + [1717] = {.lex_state = 58}, + [1718] = {.lex_state = 58}, + [1719] = {.lex_state = 58}, + [1720] = {.lex_state = 58}, + [1721] = {.lex_state = 58}, + [1722] = {.lex_state = 58}, + [1723] = {.lex_state = 58}, + [1724] = {.lex_state = 58}, + [1725] = {.lex_state = 58}, + [1726] = {.lex_state = 58}, + [1727] = {.lex_state = 58}, + [1728] = {.lex_state = 58}, + [1729] = {.lex_state = 58}, + [1730] = {.lex_state = 58}, + [1731] = {.lex_state = 58}, + [1732] = {.lex_state = 58}, + [1733] = {.lex_state = 60}, + [1734] = {.lex_state = 58}, + [1735] = {.lex_state = 58}, + [1736] = {.lex_state = 58}, + [1737] = {.lex_state = 58}, + [1738] = {.lex_state = 58}, + [1739] = {.lex_state = 58}, + [1740] = {.lex_state = 58}, + [1741] = {.lex_state = 58}, + [1742] = {.lex_state = 58}, + [1743] = {.lex_state = 58}, + [1744] = {.lex_state = 58}, + [1745] = {.lex_state = 58}, + [1746] = {.lex_state = 58}, + [1747] = {.lex_state = 58}, + [1748] = {.lex_state = 58}, + [1749] = {.lex_state = 58}, + [1750] = {.lex_state = 58}, + [1751] = {.lex_state = 58}, + [1752] = {.lex_state = 58}, + [1753] = {.lex_state = 55}, + [1754] = {.lex_state = 58}, + [1755] = {.lex_state = 25}, + [1756] = {.lex_state = 55}, + [1757] = {.lex_state = 58}, + [1758] = {.lex_state = 58}, + [1759] = {.lex_state = 58}, + [1760] = {.lex_state = 58}, + [1761] = {.lex_state = 58}, + [1762] = {.lex_state = 58}, + [1763] = {.lex_state = 58}, + [1764] = {.lex_state = 58}, + [1765] = {.lex_state = 58}, + [1766] = {.lex_state = 58}, + [1767] = {.lex_state = 55}, + [1768] = {.lex_state = 58}, + [1769] = {.lex_state = 58}, + [1770] = {.lex_state = 58}, + [1771] = {.lex_state = 60}, + [1772] = {.lex_state = 58}, + [1773] = {.lex_state = 58}, + [1774] = {.lex_state = 60}, + [1775] = {.lex_state = 58}, + [1776] = {.lex_state = 60}, + [1777] = {.lex_state = 58}, + [1778] = {.lex_state = 58}, + [1779] = {.lex_state = 55}, + [1780] = {.lex_state = 58}, + [1781] = {.lex_state = 58}, + [1782] = {.lex_state = 58}, + [1783] = {.lex_state = 58}, + [1784] = {.lex_state = 60}, + [1785] = {.lex_state = 58}, + [1786] = {.lex_state = 58}, + [1787] = {.lex_state = 58}, + [1788] = {.lex_state = 58}, + [1789] = {.lex_state = 58}, + [1790] = {.lex_state = 58}, + [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}, + [1799] = {.lex_state = 58}, + [1800] = {.lex_state = 55}, + [1801] = {.lex_state = 55}, + [1802] = {.lex_state = 55}, + [1803] = {.lex_state = 55}, + [1804] = {.lex_state = 55}, + [1805] = {.lex_state = 55}, + [1806] = {.lex_state = 55}, + [1807] = {.lex_state = 55}, + [1808] = {.lex_state = 58}, + [1809] = {.lex_state = 55}, + [1810] = {.lex_state = 55}, + [1811] = {.lex_state = 60}, + [1812] = {.lex_state = 58}, + [1813] = {.lex_state = 58}, + [1814] = {.lex_state = 60}, + [1815] = {.lex_state = 58}, + [1816] = {.lex_state = 55}, + [1817] = {.lex_state = 55}, + [1818] = {.lex_state = 55}, + [1819] = {.lex_state = 58}, + [1820] = {.lex_state = 58}, + [1821] = {.lex_state = 58}, + [1822] = {.lex_state = 55}, + [1823] = {.lex_state = 55}, + [1824] = {.lex_state = 55}, + [1825] = {.lex_state = 55}, + [1826] = {.lex_state = 55}, + [1827] = {.lex_state = 58}, + [1828] = {.lex_state = 55}, + [1829] = {.lex_state = 55}, + [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}, + [1837] = {.lex_state = 55}, + [1838] = {.lex_state = 60}, + [1839] = {.lex_state = 60}, + [1840] = {.lex_state = 60}, + [1841] = {.lex_state = 58}, + [1842] = {.lex_state = 60}, + [1843] = {.lex_state = 58}, + [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}, + [1854] = {.lex_state = 58}, + [1855] = {.lex_state = 58}, + [1856] = {.lex_state = 58}, + [1857] = {.lex_state = 60}, + [1858] = {.lex_state = 58}, + [1859] = {.lex_state = 58}, + [1860] = {.lex_state = 55}, + [1861] = {.lex_state = 58}, + [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}, + [1873] = {.lex_state = 55}, + [1874] = {.lex_state = 58}, + [1875] = {.lex_state = 60}, + [1876] = {.lex_state = 60}, + [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}, + [1902] = {.lex_state = 58}, + [1903] = {.lex_state = 60}, + [1904] = {.lex_state = 25}, + [1905] = {.lex_state = 58}, + [1906] = {.lex_state = 58}, + [1907] = {.lex_state = 58}, + [1908] = {.lex_state = 25}, + [1909] = {.lex_state = 58}, + [1910] = {.lex_state = 58}, + [1911] = {.lex_state = 58}, + [1912] = {.lex_state = 58}, + [1913] = {.lex_state = 60}, + [1914] = {.lex_state = 58}, + [1915] = {.lex_state = 58}, + [1916] = {.lex_state = 58}, + [1917] = {.lex_state = 25}, + [1918] = {.lex_state = 25}, + [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}, + [1934] = {.lex_state = 58}, + [1935] = {.lex_state = 25}, + [1936] = {.lex_state = 58}, + [1937] = {.lex_state = 25}, + [1938] = {.lex_state = 25}, + [1939] = {.lex_state = 25}, + [1940] = {.lex_state = 58}, + [1941] = {.lex_state = 25}, + [1942] = {.lex_state = 25}, + [1943] = {.lex_state = 25}, + [1944] = {.lex_state = 25}, + [1945] = {.lex_state = 58}, + [1946] = {.lex_state = 58}, + [1947] = {.lex_state = 58}, + [1948] = {.lex_state = 58}, + [1949] = {.lex_state = 58}, + [1950] = {.lex_state = 58}, + [1951] = {.lex_state = 58}, + [1952] = {.lex_state = 58}, + [1953] = {.lex_state = 58}, + [1954] = {.lex_state = 58}, + [1955] = {.lex_state = 58}, + [1956] = {.lex_state = 58}, + [1957] = {.lex_state = 58}, + [1958] = {.lex_state = 58}, + [1959] = {.lex_state = 58}, + [1960] = {.lex_state = 58}, + [1961] = {.lex_state = 58}, + [1962] = {.lex_state = 58}, + [1963] = {.lex_state = 58}, + [1964] = {.lex_state = 58}, + [1965] = {.lex_state = 58}, + [1966] = {.lex_state = 58}, + [1967] = {.lex_state = 58}, + [1968] = {.lex_state = 58}, + [1969] = {.lex_state = 58}, + [1970] = {.lex_state = 58}, + [1971] = {.lex_state = 58}, + [1972] = {.lex_state = 58}, + [1973] = {.lex_state = 58}, + [1974] = {.lex_state = 58}, + [1975] = {.lex_state = 58}, + [1976] = {.lex_state = 58}, + [1977] = {.lex_state = 58}, + [1978] = {.lex_state = 58}, + [1979] = {.lex_state = 58}, + [1980] = {.lex_state = 58}, + [1981] = {.lex_state = 58}, + [1982] = {.lex_state = 58}, + [1983] = {.lex_state = 58}, + [1984] = {.lex_state = 58}, + [1985] = {.lex_state = 58}, + [1986] = {.lex_state = 58}, + [1987] = {.lex_state = 58}, + [1988] = {.lex_state = 58}, + [1989] = {.lex_state = 58}, + [1990] = {.lex_state = 58}, + [1991] = {.lex_state = 58}, + [1992] = {.lex_state = 58}, + [1993] = {.lex_state = 58}, + [1994] = {.lex_state = 58}, + [1995] = {.lex_state = 58}, + [1996] = {.lex_state = 58}, + [1997] = {.lex_state = 58}, + [1998] = {.lex_state = 58}, + [1999] = {.lex_state = 58}, + [2000] = {.lex_state = 58}, + [2001] = {.lex_state = 58}, + [2002] = {.lex_state = 58}, + [2003] = {.lex_state = 58}, + [2004] = {.lex_state = 58}, + [2005] = {.lex_state = 58}, + [2006] = {.lex_state = 58}, + [2007] = {.lex_state = 58}, + [2008] = {.lex_state = 58}, + [2009] = {.lex_state = 58}, + [2010] = {.lex_state = 58}, + [2011] = {.lex_state = 58}, + [2012] = {.lex_state = 58}, + [2013] = {.lex_state = 58}, + [2014] = {.lex_state = 58}, + [2015] = {.lex_state = 58}, + [2016] = {.lex_state = 58}, + [2017] = {.lex_state = 58}, + [2018] = {.lex_state = 58}, + [2019] = {.lex_state = 58}, + [2020] = {.lex_state = 58}, + [2021] = {.lex_state = 58}, + [2022] = {.lex_state = 58}, + [2023] = {.lex_state = 58}, + [2024] = {.lex_state = 58}, + [2025] = {.lex_state = 58}, + [2026] = {.lex_state = 58}, + [2027] = {.lex_state = 58}, + [2028] = {.lex_state = 58}, + [2029] = {.lex_state = 58}, + [2030] = {.lex_state = 58}, + [2031] = {.lex_state = 58}, + [2032] = {.lex_state = 58}, + [2033] = {.lex_state = 58}, + [2034] = {.lex_state = 58}, + [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}, + [2042] = {.lex_state = 58}, + [2043] = {.lex_state = 58}, + [2044] = {.lex_state = 58}, + [2045] = {.lex_state = 58}, + [2046] = {.lex_state = 58}, + [2047] = {.lex_state = 58}, + [2048] = {.lex_state = 58}, + [2049] = {.lex_state = 58}, + [2050] = {.lex_state = 58}, + [2051] = {.lex_state = 58}, + [2052] = {.lex_state = 58}, + [2053] = {.lex_state = 58}, + [2054] = {.lex_state = 58}, + [2055] = {.lex_state = 58}, + [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}, + [2063] = {.lex_state = 58}, + [2064] = {.lex_state = 58}, + [2065] = {.lex_state = 58}, + [2066] = {.lex_state = 58}, + [2067] = {.lex_state = 58}, + [2068] = {.lex_state = 58}, + [2069] = {.lex_state = 58}, + [2070] = {.lex_state = 58}, + [2071] = {.lex_state = 58}, + [2072] = {.lex_state = 58}, + [2073] = {.lex_state = 67}, + [2074] = {.lex_state = 67}, + [2075] = {.lex_state = 58}, + [2076] = {.lex_state = 58}, + [2077] = {.lex_state = 58}, + [2078] = {.lex_state = 67}, + [2079] = {.lex_state = 58}, + [2080] = {.lex_state = 58}, + [2081] = {.lex_state = 58}, + [2082] = {.lex_state = 58}, + [2083] = {.lex_state = 58}, + [2084] = {.lex_state = 58}, + [2085] = {.lex_state = 58}, + [2086] = {.lex_state = 58}, + [2087] = {.lex_state = 58}, + [2088] = {.lex_state = 58}, + [2089] = {.lex_state = 58}, + [2090] = {.lex_state = 58}, + [2091] = {.lex_state = 67}, + [2092] = {.lex_state = 67}, + [2093] = {.lex_state = 58}, + [2094] = {.lex_state = 58}, + [2095] = {.lex_state = 58}, + [2096] = {.lex_state = 58}, + [2097] = {.lex_state = 58}, + [2098] = {.lex_state = 58}, + [2099] = {.lex_state = 58}, + [2100] = {.lex_state = 58}, + [2101] = {.lex_state = 67}, + [2102] = {.lex_state = 58}, + [2103] = {.lex_state = 58}, + [2104] = {.lex_state = 58}, + [2105] = {.lex_state = 58}, + [2106] = {.lex_state = 58}, + [2107] = {.lex_state = 58}, + [2108] = {.lex_state = 67}, + [2109] = {.lex_state = 58}, + [2110] = {.lex_state = 58}, + [2111] = {.lex_state = 58}, + [2112] = {.lex_state = 58}, + [2113] = {.lex_state = 58}, + [2114] = {.lex_state = 67}, + [2115] = {.lex_state = 58}, + [2116] = {.lex_state = 58}, + [2117] = {.lex_state = 58}, + [2118] = {.lex_state = 58}, + [2119] = {.lex_state = 58}, + [2120] = {.lex_state = 58}, + [2121] = {.lex_state = 58}, + [2122] = {.lex_state = 58}, + [2123] = {.lex_state = 58}, + [2124] = {.lex_state = 58}, + [2125] = {.lex_state = 58}, + [2126] = {.lex_state = 58}, + [2127] = {.lex_state = 58}, + [2128] = {.lex_state = 58}, + [2129] = {.lex_state = 58}, + [2130] = {.lex_state = 58}, + [2131] = {.lex_state = 58}, + [2132] = {.lex_state = 58}, + [2133] = {.lex_state = 58}, + [2134] = {.lex_state = 58}, + [2135] = {.lex_state = 58}, + [2136] = {.lex_state = 58}, + [2137] = {.lex_state = 58}, + [2138] = {.lex_state = 58}, + [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}, + [2147] = {.lex_state = 58}, + [2148] = {.lex_state = 58}, + [2149] = {.lex_state = 57}, + [2150] = {.lex_state = 58}, + [2151] = {.lex_state = 58}, + [2152] = {.lex_state = 57}, + [2153] = {.lex_state = 58}, + [2154] = {.lex_state = 57}, + [2155] = {.lex_state = 58}, + [2156] = {.lex_state = 57}, + [2157] = {.lex_state = 58}, + [2158] = {.lex_state = 58}, + [2159] = {.lex_state = 58}, + [2160] = {.lex_state = 58}, + [2161] = {.lex_state = 58}, + [2162] = {.lex_state = 58}, + [2163] = {.lex_state = 58}, + [2164] = {.lex_state = 58}, + [2165] = {.lex_state = 58}, + [2166] = {.lex_state = 58}, + [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}, + [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}, + [2183] = {.lex_state = 58}, + [2184] = {.lex_state = 58}, + [2185] = {.lex_state = 57}, + [2186] = {.lex_state = 57}, + [2187] = {.lex_state = 58}, + [2188] = {.lex_state = 58}, + [2189] = {.lex_state = 57}, + [2190] = {.lex_state = 58}, + [2191] = {.lex_state = 58}, + [2192] = {.lex_state = 250}, + [2193] = {.lex_state = 58}, + [2194] = {.lex_state = 58}, + [2195] = {.lex_state = 58}, + [2196] = {.lex_state = 58}, + [2197] = {.lex_state = 58}, + [2198] = {.lex_state = 58}, + [2199] = {.lex_state = 58}, + [2200] = {.lex_state = 58}, + [2201] = {.lex_state = 250}, + [2202] = {.lex_state = 58}, + [2203] = {.lex_state = 250}, + [2204] = {.lex_state = 58}, + [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}, + [2213] = {.lex_state = 58}, + [2214] = {.lex_state = 56}, + [2215] = {.lex_state = 250}, + [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}, + [2234] = {.lex_state = 250}, + [2235] = {.lex_state = 56}, + [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}, + [2244] = {.lex_state = 250}, + [2245] = {.lex_state = 250}, + [2246] = {.lex_state = 57}, + [2247] = {.lex_state = 250}, + [2248] = {.lex_state = 250}, + [2249] = {.lex_state = 250}, + [2250] = {.lex_state = 250}, + [2251] = {.lex_state = 250}, + [2252] = {.lex_state = 250}, + [2253] = {.lex_state = 250}, + [2254] = {.lex_state = 250}, + [2255] = {.lex_state = 250}, + [2256] = {.lex_state = 250}, + [2257] = {.lex_state = 250}, + [2258] = {.lex_state = 250}, + [2259] = {.lex_state = 250}, + [2260] = {.lex_state = 250}, + [2261] = {.lex_state = 250}, + [2262] = {.lex_state = 250}, + [2263] = {.lex_state = 250}, + [2264] = {.lex_state = 250}, + [2265] = {.lex_state = 250}, + [2266] = {.lex_state = 250}, + [2267] = {.lex_state = 250}, + [2268] = {.lex_state = 250}, + [2269] = {.lex_state = 250}, + [2270] = {.lex_state = 57}, + [2271] = {.lex_state = 250}, + [2272] = {.lex_state = 250}, + [2273] = {.lex_state = 250}, + [2274] = {.lex_state = 250}, + [2275] = {.lex_state = 250}, + [2276] = {.lex_state = 250}, + [2277] = {.lex_state = 250}, + [2278] = {.lex_state = 250}, + [2279] = {.lex_state = 250}, + [2280] = {.lex_state = 250}, + [2281] = {.lex_state = 250}, + [2282] = {.lex_state = 250}, + [2283] = {.lex_state = 250}, + [2284] = {.lex_state = 250}, + [2285] = {.lex_state = 250}, + [2286] = {.lex_state = 57}, + [2287] = {.lex_state = 250}, + [2288] = {.lex_state = 250}, + [2289] = {.lex_state = 250}, + [2290] = {.lex_state = 250}, + [2291] = {.lex_state = 250}, + [2292] = {.lex_state = 250}, + [2293] = {.lex_state = 250}, + [2294] = {.lex_state = 250}, + [2295] = {.lex_state = 250}, + [2296] = {.lex_state = 250}, + [2297] = {.lex_state = 250}, + [2298] = {.lex_state = 250}, + [2299] = {.lex_state = 58}, + [2300] = {.lex_state = 58}, + [2301] = {.lex_state = 58}, + [2302] = {.lex_state = 250}, + [2303] = {.lex_state = 58}, + [2304] = {.lex_state = 67}, + [2305] = {.lex_state = 58}, + [2306] = {.lex_state = 250}, + [2307] = {.lex_state = 67}, + [2308] = {.lex_state = 67}, + [2309] = {.lex_state = 58}, + [2310] = {.lex_state = 58}, + [2311] = {.lex_state = 250}, + [2312] = {.lex_state = 250}, + [2313] = {.lex_state = 58}, + [2314] = {.lex_state = 250}, + [2315] = {.lex_state = 58}, + [2316] = {.lex_state = 58}, + [2317] = {.lex_state = 250}, + [2318] = {.lex_state = 250}, + [2319] = {.lex_state = 58}, + [2320] = {.lex_state = 250}, + [2321] = {.lex_state = 58}, + [2322] = {.lex_state = 58}, + [2323] = {.lex_state = 58}, + [2324] = {.lex_state = 67}, + [2325] = {.lex_state = 250}, + [2326] = {.lex_state = 67}, + [2327] = {.lex_state = 67}, + [2328] = {.lex_state = 67}, + [2329] = {.lex_state = 67}, + [2330] = {.lex_state = 58}, + [2331] = {.lex_state = 250}, + [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}, + [2342] = {.lex_state = 58}, + [2343] = {.lex_state = 67}, + [2344] = {.lex_state = 250}, + [2345] = {.lex_state = 58}, + [2346] = {.lex_state = 58}, + [2347] = {.lex_state = 67}, + [2348] = {.lex_state = 57}, + [2349] = {.lex_state = 67}, + [2350] = {.lex_state = 58}, + [2351] = {.lex_state = 58}, + [2352] = {.lex_state = 58}, + [2353] = {.lex_state = 58}, + [2354] = {.lex_state = 58}, + [2355] = {.lex_state = 250}, + [2356] = {.lex_state = 250}, + [2357] = {.lex_state = 58}, + [2358] = {.lex_state = 58}, + [2359] = {.lex_state = 58}, + [2360] = {.lex_state = 58}, + [2361] = {.lex_state = 250}, + [2362] = {.lex_state = 58}, + [2363] = {.lex_state = 58}, + [2364] = {.lex_state = 250}, + [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}, + [2375] = {.lex_state = 250}, + [2376] = {.lex_state = 58}, + [2377] = {.lex_state = 30}, + [2378] = {.lex_state = 58}, + [2379] = {.lex_state = 58}, + [2380] = {.lex_state = 250}, + [2381] = {.lex_state = 250}, + [2382] = {.lex_state = 250}, + [2383] = {.lex_state = 250}, + [2384] = {.lex_state = 250}, + [2385] = {.lex_state = 250}, + [2386] = {.lex_state = 58}, + [2387] = {.lex_state = 58}, + [2388] = {.lex_state = 60}, + [2389] = {.lex_state = 250}, + [2390] = {.lex_state = 58}, + [2391] = {.lex_state = 58}, + [2392] = {.lex_state = 30}, + [2393] = {.lex_state = 58}, + [2394] = {.lex_state = 57}, + [2395] = {.lex_state = 30}, + [2396] = {.lex_state = 30}, + [2397] = {.lex_state = 58}, + [2398] = {.lex_state = 58}, + [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}, + [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}, + [2421] = {.lex_state = 250}, + [2422] = {.lex_state = 250}, + [2423] = {.lex_state = 250}, + [2424] = {.lex_state = 37}, + [2425] = {.lex_state = 250}, + [2426] = {.lex_state = 250}, + [2427] = {.lex_state = 250}, + [2428] = {.lex_state = 39}, + [2429] = {.lex_state = 250}, + [2430] = {.lex_state = 250}, + [2431] = {.lex_state = 58}, + [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}, + [2439] = {.lex_state = 250}, + [2440] = {.lex_state = 250}, + [2441] = {.lex_state = 250}, + [2442] = {.lex_state = 37}, + [2443] = {.lex_state = 250}, + [2444] = {.lex_state = 250}, + [2445] = {.lex_state = 250}, + [2446] = {.lex_state = 37}, + [2447] = {.lex_state = 39}, + [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}, + [2456] = {.lex_state = 58}, + [2457] = {.lex_state = 37}, + [2458] = {.lex_state = 250}, + [2459] = {.lex_state = 39}, + [2460] = {.lex_state = 250}, + [2461] = {.lex_state = 37}, + [2462] = {.lex_state = 59}, + [2463] = {.lex_state = 250}, + [2464] = {.lex_state = 250}, + [2465] = {.lex_state = 37}, + [2466] = {.lex_state = 250}, + [2467] = {.lex_state = 58}, + [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}, + [2489] = {.lex_state = 58}, + [2490] = {.lex_state = 32}, + [2491] = {.lex_state = 39}, + [2492] = {.lex_state = 250}, + [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}, + [2501] = {.lex_state = 250}, + [2502] = {.lex_state = 250}, + [2503] = {.lex_state = 250}, + [2504] = {.lex_state = 250}, + [2505] = {.lex_state = 33}, + [2506] = {.lex_state = 250}, + [2507] = {.lex_state = 58}, + [2508] = {.lex_state = 58}, + [2509] = {.lex_state = 250}, + [2510] = {.lex_state = 250}, + [2511] = {.lex_state = 39}, + [2512] = {.lex_state = 59}, + [2513] = {.lex_state = 250}, + [2514] = {.lex_state = 250}, + [2515] = {.lex_state = 250}, + [2516] = {.lex_state = 250}, + [2517] = {.lex_state = 250}, + [2518] = {.lex_state = 250}, + [2519] = {.lex_state = 250}, + [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}, + [2527] = {.lex_state = 250}, + [2528] = {.lex_state = 31}, + [2529] = {.lex_state = 250}, + [2530] = {.lex_state = 250}, + [2531] = {.lex_state = 250}, + [2532] = {.lex_state = 250}, + [2533] = {.lex_state = 250}, + [2534] = {.lex_state = 39}, + [2535] = {.lex_state = 250}, + [2536] = {.lex_state = 250}, + [2537] = {.lex_state = 250}, + [2538] = {.lex_state = 59}, + [2539] = {.lex_state = 250}, + [2540] = {.lex_state = 250}, + [2541] = {.lex_state = 250}, + [2542] = {.lex_state = 250}, + [2543] = {.lex_state = 250}, + [2544] = {.lex_state = 250}, + [2545] = {.lex_state = 250}, + [2546] = {.lex_state = 250}, + [2547] = {.lex_state = 58}, + [2548] = {.lex_state = 250}, + [2549] = {.lex_state = 250}, + [2550] = {.lex_state = 58}, + [2551] = {.lex_state = 250}, + [2552] = {.lex_state = 250}, + [2553] = {.lex_state = 250}, + [2554] = {.lex_state = 250}, + [2555] = {.lex_state = 250}, + [2556] = {.lex_state = 250}, + [2557] = {.lex_state = 250}, + [2558] = {.lex_state = 250}, + [2559] = {.lex_state = 250}, + [2560] = {.lex_state = 250}, + [2561] = {.lex_state = 250}, + [2562] = {.lex_state = 250}, + [2563] = {.lex_state = 250}, + [2564] = {.lex_state = 250}, + [2565] = {.lex_state = 250}, + [2566] = {.lex_state = 250}, + [2567] = {.lex_state = 250}, + [2568] = {.lex_state = 250}, + [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}, + [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}, + [2583] = {.lex_state = 250}, + [2584] = {.lex_state = 250}, + [2585] = {.lex_state = 250}, + [2586] = {.lex_state = 250}, + [2587] = {.lex_state = 250}, + [2588] = {.lex_state = 250}, + [2589] = {.lex_state = 250}, + [2590] = {.lex_state = 250}, + [2591] = {.lex_state = 250}, + [2592] = {.lex_state = 250}, + [2593] = {.lex_state = 250}, + [2594] = {.lex_state = 250}, + [2595] = {.lex_state = 250}, + [2596] = {.lex_state = 250}, + [2597] = {.lex_state = 250}, + [2598] = {.lex_state = 250}, + [2599] = {.lex_state = 250}, + [2600] = {.lex_state = 250}, + [2601] = {.lex_state = 250}, + [2602] = {.lex_state = 250}, + [2603] = {.lex_state = 250}, + [2604] = {.lex_state = 250}, + [2605] = {.lex_state = 58}, + [2606] = {.lex_state = 250}, + [2607] = {.lex_state = 250}, + [2608] = {.lex_state = 250}, + [2609] = {.lex_state = 250}, + [2610] = {.lex_state = 250}, + [2611] = {.lex_state = 250}, + [2612] = {.lex_state = 31}, + [2613] = {.lex_state = 250}, + [2614] = {.lex_state = 250}, + [2615] = {.lex_state = 250}, + [2616] = {.lex_state = 250}, + [2617] = {.lex_state = 59}, + [2618] = {.lex_state = 250}, + [2619] = {.lex_state = 31}, + [2620] = {.lex_state = 250}, + [2621] = {.lex_state = 250}, + [2622] = {.lex_state = 250}, + [2623] = {.lex_state = 250}, + [2624] = {.lex_state = 250}, + [2625] = {.lex_state = 250}, + [2626] = {.lex_state = 250}, + [2627] = {.lex_state = 250}, + [2628] = {.lex_state = 250}, + [2629] = {.lex_state = 250}, + [2630] = {.lex_state = 250}, + [2631] = {.lex_state = 250}, + [2632] = {.lex_state = 250}, + [2633] = {.lex_state = 250}, + [2634] = {.lex_state = 250}, + [2635] = {.lex_state = 31}, + [2636] = {.lex_state = 250}, + [2637] = {.lex_state = 250}, + [2638] = {.lex_state = 250}, + [2639] = {.lex_state = 250}, + [2640] = {.lex_state = 250}, + [2641] = {.lex_state = 250}, + [2642] = {.lex_state = 250}, + [2643] = {.lex_state = 250}, + [2644] = {.lex_state = 250}, + [2645] = {.lex_state = 250}, + [2646] = {.lex_state = 250}, + [2647] = {.lex_state = 250}, + [2648] = {.lex_state = 250}, + [2649] = {.lex_state = 250}, + [2650] = {.lex_state = 250}, + [2651] = {.lex_state = 59}, + [2652] = {.lex_state = 250}, + [2653] = {.lex_state = 31}, + [2654] = {.lex_state = 250}, + [2655] = {.lex_state = 250}, + [2656] = {.lex_state = 250}, + [2657] = {.lex_state = 59}, + [2658] = {.lex_state = 31}, + [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}, + [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}, + [2673] = {.lex_state = 250}, + [2674] = {.lex_state = 250}, + [2675] = {.lex_state = 250}, + [2676] = {.lex_state = 250}, + [2677] = {.lex_state = 250}, + [2678] = {.lex_state = 59}, + [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}, + [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}, + [2696] = {.lex_state = 250}, + [2697] = {.lex_state = 250}, + [2698] = {.lex_state = 250}, + [2699] = {.lex_state = 250}, + [2700] = {.lex_state = 58}, + [2701] = {.lex_state = 58}, + [2702] = {.lex_state = 58}, + [2703] = {.lex_state = 250}, + [2704] = {.lex_state = 250}, + [2705] = {.lex_state = 250}, + [2706] = {.lex_state = 250}, + [2707] = {.lex_state = 250}, + [2708] = {.lex_state = 250}, + [2709] = {.lex_state = 250}, + [2710] = {.lex_state = 250}, + [2711] = {.lex_state = 250}, + [2712] = {.lex_state = 250}, + [2713] = {.lex_state = 58}, + [2714] = {.lex_state = 250}, + [2715] = {.lex_state = 250}, + [2716] = {.lex_state = 250}, + [2717] = {.lex_state = 250}, + [2718] = {.lex_state = 250}, + [2719] = {.lex_state = 250}, + [2720] = {.lex_state = 250}, + [2721] = {.lex_state = 31}, + [2722] = {.lex_state = 250}, + [2723] = {.lex_state = 250}, + [2724] = {.lex_state = 250}, + [2725] = {.lex_state = 250}, + [2726] = {.lex_state = 250}, + [2727] = {.lex_state = 250}, + [2728] = {.lex_state = 250}, + [2729] = {.lex_state = 59}, + [2730] = {.lex_state = 250}, + [2731] = {.lex_state = 58}, + [2732] = {.lex_state = 250}, + [2733] = {.lex_state = 250}, + [2734] = {.lex_state = 250}, + [2735] = {.lex_state = 250}, + [2736] = {.lex_state = 250}, + [2737] = {.lex_state = 250}, + [2738] = {.lex_state = 250}, + [2739] = {.lex_state = 250}, + [2740] = {.lex_state = 250}, + [2741] = {.lex_state = 250}, + [2742] = {.lex_state = 250}, + [2743] = {.lex_state = 250}, + [2744] = {.lex_state = 250}, + [2745] = {.lex_state = 58}, + [2746] = {.lex_state = 250}, + [2747] = {.lex_state = 58}, + [2748] = {.lex_state = 58}, + [2749] = {.lex_state = 58}, + [2750] = {.lex_state = 250}, + [2751] = {.lex_state = 250}, + [2752] = {.lex_state = 58}, + [2753] = {.lex_state = 58}, + [2754] = {.lex_state = 58}, + [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}, + [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}, + [2769] = {.lex_state = 250}, + [2770] = {.lex_state = 250}, + [2771] = {.lex_state = 250}, + [2772] = {.lex_state = 250}, + [2773] = {.lex_state = 250}, + [2774] = {.lex_state = 250}, + [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}, + [2782] = {.lex_state = 58}, + [2783] = {.lex_state = 250}, + [2784] = {.lex_state = 58}, + [2785] = {.lex_state = 58}, + [2786] = {.lex_state = 250}, + [2787] = {.lex_state = 250}, + [2788] = {.lex_state = 250}, + [2789] = {.lex_state = 58}, + [2790] = {.lex_state = 250}, + [2791] = {.lex_state = 250}, + [2792] = {.lex_state = 58}, + [2793] = {.lex_state = 250}, + [2794] = {.lex_state = 58}, + [2795] = {.lex_state = 58}, + [2796] = {.lex_state = 58}, + [2797] = {.lex_state = 250}, + [2798] = {.lex_state = 250}, + [2799] = {.lex_state = 250}, + [2800] = {.lex_state = 58}, + [2801] = {.lex_state = 250}, + [2802] = {.lex_state = 250}, + [2803] = {.lex_state = 58}, + [2804] = {.lex_state = 250}, + [2805] = {.lex_state = 58}, + [2806] = {.lex_state = 250}, + [2807] = {.lex_state = 250}, + [2808] = {.lex_state = 250}, + [2809] = {.lex_state = 250}, + [2810] = {.lex_state = 250}, + [2811] = {.lex_state = 250}, + [2812] = {.lex_state = 250}, + [2813] = {.lex_state = 250}, + [2814] = {.lex_state = 250}, + [2815] = {.lex_state = 250}, + [2816] = {.lex_state = 250}, + [2817] = {.lex_state = 250}, + [2818] = {.lex_state = 250}, + [2819] = {.lex_state = 250}, + [2820] = {.lex_state = 250}, + [2821] = {.lex_state = 250}, + [2822] = {.lex_state = 250}, + [2823] = {.lex_state = 250}, + [2824] = {.lex_state = 250}, + [2825] = {.lex_state = 250}, + [2826] = {.lex_state = 250}, + [2827] = {.lex_state = 72}, + [2828] = {.lex_state = 250}, + [2829] = {.lex_state = 31}, + [2830] = {.lex_state = 250}, + [2831] = {.lex_state = 250}, + [2832] = {.lex_state = 250}, + [2833] = {.lex_state = 250}, + [2834] = {.lex_state = 59}, + [2835] = {.lex_state = 250}, + [2836] = {.lex_state = 250}, + [2837] = {.lex_state = 250}, + [2838] = {.lex_state = 250}, + [2839] = {.lex_state = 58}, + [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}, + [2847] = {.lex_state = 250}, + [2848] = {.lex_state = 250}, + [2849] = {.lex_state = 250}, + [2850] = {.lex_state = 250}, + [2851] = {.lex_state = 250}, + [2852] = {.lex_state = 250}, + [2853] = {.lex_state = 250}, + [2854] = {.lex_state = 250}, + [2855] = {.lex_state = 250}, + [2856] = {.lex_state = 250}, + [2857] = {.lex_state = 72}, + [2858] = {.lex_state = 250}, + [2859] = {.lex_state = 250}, + [2860] = {.lex_state = 250}, + [2861] = {.lex_state = 58}, + [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}, + [2869] = {.lex_state = 250}, + [2870] = {.lex_state = 250}, + [2871] = {.lex_state = 58}, + [2872] = {.lex_state = 58}, + [2873] = {.lex_state = 250}, + [2874] = {.lex_state = 250}, + [2875] = {.lex_state = 250}, + [2876] = {.lex_state = 31}, + [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}, + [2884] = {.lex_state = 250}, + [2885] = {.lex_state = 250}, + [2886] = {.lex_state = 72}, + [2887] = {.lex_state = 250}, + [2888] = {.lex_state = 59}, + [2889] = {.lex_state = 250}, + [2890] = {.lex_state = 250}, + [2891] = {.lex_state = 250}, + [2892] = {.lex_state = 250}, + [2893] = {.lex_state = 250}, + [2894] = {.lex_state = 250}, + [2895] = {.lex_state = 250}, + [2896] = {.lex_state = 250}, + [2897] = {.lex_state = 250}, + [2898] = {.lex_state = 250}, + [2899] = {.lex_state = 250}, + [2900] = {.lex_state = 250}, + [2901] = {.lex_state = 250}, + [2902] = {.lex_state = 250}, + [2903] = {.lex_state = 250}, + [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}, + [2911] = {.lex_state = 250}, + [2912] = {.lex_state = 250}, + [2913] = {.lex_state = 250}, + [2914] = {.lex_state = 250}, + [2915] = {.lex_state = 250}, + [2916] = {.lex_state = 250}, + [2917] = {.lex_state = 250}, + [2918] = {.lex_state = 250}, + [2919] = {.lex_state = 250}, + [2920] = {.lex_state = 72}, + [2921] = {.lex_state = 250}, + [2922] = {.lex_state = 250}, + [2923] = {.lex_state = 250}, + [2924] = {.lex_state = 58}, + [2925] = {.lex_state = 31}, + [2926] = {.lex_state = 250}, + [2927] = {.lex_state = 250}, + [2928] = {.lex_state = 250}, + [2929] = {.lex_state = 250}, + [2930] = {.lex_state = 250}, + [2931] = {.lex_state = 250}, + [2932] = {.lex_state = 250}, + [2933] = {.lex_state = 250}, + [2934] = {.lex_state = 250}, + [2935] = {.lex_state = 250}, + [2936] = {.lex_state = 250}, + [2937] = {.lex_state = 250}, + [2938] = {.lex_state = 250}, + [2939] = {.lex_state = 250}, + [2940] = {.lex_state = 250}, + [2941] = {.lex_state = 250}, + [2942] = {.lex_state = 250}, + [2943] = {.lex_state = 250}, + [2944] = {.lex_state = 250}, + [2945] = {.lex_state = 58}, + [2946] = {.lex_state = 250}, + [2947] = {.lex_state = 72}, + [2948] = {.lex_state = 72}, + [2949] = {.lex_state = 250}, + [2950] = {.lex_state = 72}, + [2951] = {.lex_state = 250}, + [2952] = {.lex_state = 250}, + [2953] = {.lex_state = 72}, + [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}, + [2961] = {.lex_state = 250}, + [2962] = {.lex_state = 250}, + [2963] = {.lex_state = 250}, + [2964] = {.lex_state = 58}, + [2965] = {.lex_state = 32}, + [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}, + [2973] = {.lex_state = 250}, + [2974] = {.lex_state = 32}, + [2975] = {.lex_state = 250}, + [2976] = {.lex_state = 250}, + [2977] = {.lex_state = 58}, + [2978] = {.lex_state = 250}, + [2979] = {.lex_state = 250}, + [2980] = {.lex_state = 32}, + [2981] = {.lex_state = 250}, + [2982] = {.lex_state = 250}, + [2983] = {.lex_state = 58}, + [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}, + [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}, + [2998] = {.lex_state = 250}, + [2999] = {.lex_state = 250}, + [3000] = {.lex_state = 250}, + [3001] = {.lex_state = 32}, + [3002] = {.lex_state = 250}, + [3003] = {.lex_state = 250}, + [3004] = {.lex_state = 32}, + [3005] = {.lex_state = 250}, + [3006] = {.lex_state = 250}, + [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}, + [3014] = {.lex_state = 250}, + [3015] = {.lex_state = 250}, + [3016] = {.lex_state = 58}, + [3017] = {.lex_state = 58}, + [3018] = {.lex_state = 250}, + [3019] = {.lex_state = 250}, + [3020] = {.lex_state = 250}, + [3021] = {.lex_state = 250}, + [3022] = {.lex_state = 250}, + [3023] = {.lex_state = 250}, + [3024] = {.lex_state = 250}, + [3025] = {.lex_state = 250}, + [3026] = {.lex_state = 58}, + [3027] = {.lex_state = 32}, + [3028] = {.lex_state = 250}, + [3029] = {.lex_state = 250}, + [3030] = {.lex_state = 250}, + [3031] = {.lex_state = 250}, + [3032] = {.lex_state = 250}, + [3033] = {.lex_state = 250}, + [3034] = {.lex_state = 250}, + [3035] = {.lex_state = 32}, + [3036] = {.lex_state = 58}, + [3037] = {.lex_state = 250}, + [3038] = {.lex_state = 250}, + [3039] = {.lex_state = 250}, + [3040] = {.lex_state = 250}, + [3041] = {.lex_state = 250}, + [3042] = {.lex_state = 250}, + [3043] = {.lex_state = 250}, + [3044] = {.lex_state = 58}, + [3045] = {.lex_state = 250}, + [3046] = {.lex_state = 250}, + [3047] = {.lex_state = 250}, + [3048] = {.lex_state = 58}, + [3049] = {.lex_state = 250}, + [3050] = {.lex_state = 250}, + [3051] = {.lex_state = 250}, + [3052] = {.lex_state = 250}, + [3053] = {.lex_state = 250}, + [3054] = {.lex_state = 250}, + [3055] = {.lex_state = 250}, + [3056] = {.lex_state = 250}, + [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}, + [3064] = {.lex_state = 250}, + [3065] = {.lex_state = 250}, + [3066] = {.lex_state = 250}, + [3067] = {.lex_state = 58}, + [3068] = {.lex_state = 250}, + [3069] = {.lex_state = 250}, + [3070] = {.lex_state = 250}, + [3071] = {.lex_state = 250}, + [3072] = {.lex_state = 250}, + [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}, + [3080] = {.lex_state = 250}, + [3081] = {.lex_state = 250}, + [3082] = {.lex_state = 58}, + [3083] = {.lex_state = 250}, + [3084] = {.lex_state = 250}, + [3085] = {.lex_state = 250}, + [3086] = {.lex_state = 58}, + [3087] = {.lex_state = 250}, + [3088] = {.lex_state = 250}, + [3089] = {.lex_state = 250}, + [3090] = {.lex_state = 250}, + [3091] = {.lex_state = 250}, + [3092] = {.lex_state = 250}, + [3093] = {.lex_state = 250}, + [3094] = {.lex_state = 250}, + [3095] = {.lex_state = 250}, + [3096] = {.lex_state = 250}, + [3097] = {.lex_state = 250}, + [3098] = {.lex_state = 250}, + [3099] = {.lex_state = 250}, + [3100] = {.lex_state = 250}, + [3101] = {.lex_state = 250}, + [3102] = {.lex_state = 250}, + [3103] = {.lex_state = 250}, + [3104] = {.lex_state = 250}, + [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}, + [3112] = {.lex_state = 250}, + [3113] = {.lex_state = 250}, + [3114] = {.lex_state = 250}, + [3115] = {.lex_state = 250}, + [3116] = {.lex_state = 250}, + [3117] = {.lex_state = 250}, + [3118] = {.lex_state = 250}, + [3119] = {.lex_state = 250}, + [3120] = {.lex_state = 250}, + [3121] = {.lex_state = 250}, + [3122] = {.lex_state = 58}, + [3123] = {.lex_state = 250}, + [3124] = {.lex_state = 58}, + [3125] = {.lex_state = 250}, + [3126] = {.lex_state = 250}, + [3127] = {.lex_state = 58}, + [3128] = {.lex_state = 250}, + [3129] = {.lex_state = 250}, + [3130] = {.lex_state = 250}, + [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}, + [3139] = {.lex_state = 250}, + [3140] = {.lex_state = 250}, + [3141] = {.lex_state = 250}, + [3142] = {.lex_state = 250}, + [3143] = {.lex_state = 250}, + [3144] = {.lex_state = 250}, + [3145] = {.lex_state = 58}, + [3146] = {.lex_state = 32}, + [3147] = {.lex_state = 250}, + [3148] = {.lex_state = 250}, + [3149] = {.lex_state = 250}, + [3150] = {.lex_state = 250}, + [3151] = {.lex_state = 58}, + [3152] = {.lex_state = 250}, + [3153] = {.lex_state = 250}, + [3154] = {.lex_state = 250}, + [3155] = {.lex_state = 32}, + [3156] = {.lex_state = 250}, + [3157] = {.lex_state = 250}, + [3158] = {.lex_state = 250}, + [3159] = {.lex_state = 32}, + [3160] = {.lex_state = 250}, + [3161] = {.lex_state = 32}, + [3162] = {.lex_state = 250}, + [3163] = {.lex_state = 58}, + [3164] = {.lex_state = 250}, + [3165] = {.lex_state = 58}, + [3166] = {.lex_state = 250}, + [3167] = {.lex_state = 250}, + [3168] = {.lex_state = 250}, + [3169] = {.lex_state = 250}, + [3170] = {.lex_state = 58}, + [3171] = {.lex_state = 250}, + [3172] = {.lex_state = 250}, + [3173] = {.lex_state = 250}, + [3174] = {.lex_state = 250}, + [3175] = {.lex_state = 32}, + [3176] = {.lex_state = 250}, + [3177] = {.lex_state = 32}, + [3178] = {.lex_state = 32}, + [3179] = {.lex_state = 58}, + [3180] = {.lex_state = 250}, + [3181] = {.lex_state = 250}, + [3182] = {.lex_state = 250}, + [3183] = {.lex_state = 250}, + [3184] = {.lex_state = 250}, + [3185] = {.lex_state = 250}, + [3186] = {.lex_state = 250}, + [3187] = {.lex_state = 250}, + [3188] = {.lex_state = 250}, + [3189] = {.lex_state = 250}, + [3190] = {.lex_state = 250}, + [3191] = {.lex_state = 250}, + [3192] = {.lex_state = 250}, + [3193] = {.lex_state = 250}, + [3194] = {.lex_state = 250}, + [3195] = {.lex_state = 250}, + [3196] = {.lex_state = 250}, + [3197] = {.lex_state = 58}, + [3198] = {.lex_state = 250}, + [3199] = {.lex_state = 250}, + [3200] = {.lex_state = 32}, + [3201] = {.lex_state = 250}, + [3202] = {.lex_state = 250}, + [3203] = {.lex_state = 250}, + [3204] = {.lex_state = 250}, + [3205] = {.lex_state = 58}, + [3206] = {.lex_state = 58}, + [3207] = {.lex_state = 250}, + [3208] = {.lex_state = 250}, + [3209] = {.lex_state = 32}, + [3210] = {.lex_state = 250}, + [3211] = {.lex_state = 250}, + [3212] = {.lex_state = 250}, + [3213] = {.lex_state = 250}, + [3214] = {.lex_state = 250}, + [3215] = {.lex_state = 58}, + [3216] = {.lex_state = 250}, + [3217] = {.lex_state = 250}, + [3218] = {.lex_state = 250}, + [3219] = {.lex_state = 72}, + [3220] = {.lex_state = 250}, + [3221] = {.lex_state = 250}, + [3222] = {.lex_state = 250}, + [3223] = {.lex_state = 250}, + [3224] = {.lex_state = 250}, + [3225] = {.lex_state = 250}, + [3226] = {.lex_state = 250}, + [3227] = {.lex_state = 250}, + [3228] = {.lex_state = 250}, + [3229] = {.lex_state = 32}, + [3230] = {.lex_state = 250}, + [3231] = {.lex_state = 250}, + [3232] = {.lex_state = 250}, + [3233] = {.lex_state = 250}, + [3234] = {.lex_state = 32}, + [3235] = {.lex_state = 250}, + [3236] = {.lex_state = 250}, + [3237] = {.lex_state = 250}, + [3238] = {.lex_state = 250}, + [3239] = {.lex_state = 250}, + [3240] = {.lex_state = 250}, + [3241] = {.lex_state = 250}, + [3242] = {.lex_state = 250}, + [3243] = {.lex_state = 250}, + [3244] = {.lex_state = 250}, + [3245] = {.lex_state = 250}, + [3246] = {.lex_state = 250}, + [3247] = {.lex_state = 250}, + [3248] = {.lex_state = 250}, + [3249] = {.lex_state = 250}, + [3250] = {.lex_state = 250}, + [3251] = {.lex_state = 250}, + [3252] = {.lex_state = 250}, + [3253] = {.lex_state = 250}, + [3254] = {.lex_state = 250}, + [3255] = {.lex_state = 250}, + [3256] = {.lex_state = 250}, + [3257] = {.lex_state = 250}, + [3258] = {.lex_state = 250}, + [3259] = {.lex_state = 250}, + [3260] = {.lex_state = 250}, + [3261] = {.lex_state = 250}, + [3262] = {.lex_state = 250}, + [3263] = {.lex_state = 250}, + [3264] = {.lex_state = 250}, + [3265] = {.lex_state = 58}, + [3266] = {.lex_state = 250}, + [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}, + [3275] = {.lex_state = 250}, + [3276] = {.lex_state = 250}, + [3277] = {.lex_state = 250}, + [3278] = {.lex_state = 250}, + [3279] = {.lex_state = 250}, + [3280] = {.lex_state = 250}, + [3281] = {.lex_state = 250}, + [3282] = {.lex_state = 250}, + [3283] = {.lex_state = 250}, + [3284] = {.lex_state = 58}, + [3285] = {.lex_state = 58}, + [3286] = {.lex_state = 250}, + [3287] = {.lex_state = 250}, + [3288] = {.lex_state = 58}, + [3289] = {.lex_state = 32}, + [3290] = {.lex_state = 250}, + [3291] = {.lex_state = 250}, + [3292] = {.lex_state = 250}, + [3293] = {.lex_state = 58}, + [3294] = {.lex_state = 32}, + [3295] = {.lex_state = 250}, + [3296] = {.lex_state = 250}, + [3297] = {.lex_state = 58}, + [3298] = {.lex_state = 58}, + [3299] = {.lex_state = 58}, + [3300] = {.lex_state = 250}, + [3301] = {.lex_state = 250}, + [3302] = {.lex_state = 250}, + [3303] = {.lex_state = 250}, + [3304] = {.lex_state = 250}, + [3305] = {.lex_state = 250}, + [3306] = {.lex_state = 250}, + [3307] = {.lex_state = 32}, + [3308] = {.lex_state = 250}, + [3309] = {.lex_state = 250}, + [3310] = {.lex_state = 250}, + [3311] = {.lex_state = 32}, + [3312] = {.lex_state = 250}, + [3313] = {.lex_state = 250}, + [3314] = {.lex_state = 250}, + [3315] = {.lex_state = 250}, + [3316] = {.lex_state = 250}, + [3317] = {.lex_state = 58}, + [3318] = {.lex_state = 250}, + [3319] = {.lex_state = 32}, + [3320] = {.lex_state = 250}, + [3321] = {.lex_state = 250}, + [3322] = {.lex_state = 250}, + [3323] = {.lex_state = 250}, + [3324] = {.lex_state = 250}, + [3325] = {.lex_state = 58}, + [3326] = {.lex_state = 58}, + [3327] = {.lex_state = 58}, + [3328] = {.lex_state = 32}, + [3329] = {.lex_state = 250}, + [3330] = {.lex_state = 250}, + [3331] = {.lex_state = 58}, + [3332] = {.lex_state = 58}, + [3333] = {.lex_state = 250}, + [3334] = {.lex_state = 250}, + [3335] = {.lex_state = 250}, + [3336] = {.lex_state = 250}, + [3337] = {.lex_state = 250}, + [3338] = {.lex_state = 250}, + [3339] = {.lex_state = 250}, + [3340] = {.lex_state = 250}, + [3341] = {.lex_state = 250}, + [3342] = {.lex_state = 250}, + [3343] = {.lex_state = 250}, + [3344] = {.lex_state = 250}, + [3345] = {.lex_state = 250}, + [3346] = {.lex_state = 250}, + [3347] = {.lex_state = 250}, + [3348] = {.lex_state = 250}, + [3349] = {.lex_state = 250}, + [3350] = {.lex_state = 250}, + [3351] = {.lex_state = 250}, + [3352] = {.lex_state = 250}, + [3353] = {.lex_state = 250}, + [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}, + [3361] = {.lex_state = 250}, + [3362] = {.lex_state = 250}, + [3363] = {.lex_state = 58}, + [3364] = {.lex_state = 250}, + [3365] = {.lex_state = 250}, + [3366] = {.lex_state = 58}, + [3367] = {.lex_state = 250}, + [3368] = {.lex_state = 250}, + [3369] = {.lex_state = 250}, + [3370] = {.lex_state = 250}, + [3371] = {.lex_state = 58}, + [3372] = {.lex_state = 250}, + [3373] = {.lex_state = 250}, + [3374] = {.lex_state = 250}, + [3375] = {.lex_state = 250}, + [3376] = {.lex_state = 250}, + [3377] = {.lex_state = 250}, + [3378] = {.lex_state = 250}, + [3379] = {.lex_state = 250}, + [3380] = {.lex_state = 250}, + [3381] = {.lex_state = 250}, + [3382] = {.lex_state = 250}, + [3383] = {.lex_state = 250}, + [3384] = {.lex_state = 250}, + [3385] = {.lex_state = 250}, + [3386] = {.lex_state = 250}, + [3387] = {.lex_state = 250}, + [3388] = {.lex_state = 250}, + [3389] = {.lex_state = 250}, + [3390] = {.lex_state = 250}, + [3391] = {.lex_state = 250}, + [3392] = {.lex_state = 250}, + [3393] = {.lex_state = 250}, + [3394] = {.lex_state = 250}, + [3395] = {.lex_state = 250}, + [3396] = {.lex_state = 250}, + [3397] = {.lex_state = 250}, + [3398] = {.lex_state = 250}, + [3399] = {.lex_state = 32}, + [3400] = {.lex_state = 58}, + [3401] = {.lex_state = 250}, + [3402] = {.lex_state = 32}, + [3403] = {.lex_state = 250}, + [3404] = {.lex_state = 32}, + [3405] = {.lex_state = 250}, + [3406] = {.lex_state = 250}, + [3407] = {.lex_state = 250}, + [3408] = {.lex_state = 250}, + [3409] = {.lex_state = 250}, + [3410] = {.lex_state = 250}, + [3411] = {.lex_state = 250}, + [3412] = {.lex_state = 250}, + [3413] = {.lex_state = 250}, + [3414] = {.lex_state = 250}, + [3415] = {.lex_state = 250}, + [3416] = {.lex_state = 250}, + [3417] = {.lex_state = 250}, + [3418] = {.lex_state = 250}, + [3419] = {.lex_state = 250}, + [3420] = {.lex_state = 250}, + [3421] = {.lex_state = 250}, + [3422] = {.lex_state = 250}, + [3423] = {.lex_state = 250}, + [3424] = {.lex_state = 250}, + [3425] = {.lex_state = 250}, + [3426] = {.lex_state = 250}, + [3427] = {.lex_state = 58}, + [3428] = {.lex_state = 250}, + [3429] = {.lex_state = 250}, + [3430] = {.lex_state = 58}, + [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}, + [3438] = {.lex_state = 250}, + [3439] = {.lex_state = 250}, + [3440] = {.lex_state = 250}, + [3441] = {.lex_state = 250}, + [3442] = {.lex_state = 250}, + [3443] = {.lex_state = 250}, + [3444] = {.lex_state = 250}, + [3445] = {.lex_state = 250}, + [3446] = {.lex_state = 58}, + [3447] = {.lex_state = 250}, + [3448] = {.lex_state = 250}, + [3449] = {.lex_state = 250}, + [3450] = {.lex_state = 250}, + [3451] = {.lex_state = 250}, + [3452] = {.lex_state = 250}, + [3453] = {.lex_state = 250}, + [3454] = {.lex_state = 250}, + [3455] = {.lex_state = 250}, + [3456] = {.lex_state = 250}, + [3457] = {.lex_state = 250}, + [3458] = {.lex_state = 58}, + [3459] = {.lex_state = 250}, + [3460] = {.lex_state = 250}, +}; + +static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { + [0] = { + [ts_builtin_sym_end] = ACTIONS(1), + [sym_identifier] = ACTIONS(1), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(1), + [aux_sym_preproc_def_token1] = ACTIONS(1), + [anon_sym_LPAREN] = ACTIONS(1), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1), + [anon_sym_COMMA] = ACTIONS(1), + [anon_sym_RPAREN] = ACTIONS(1), + [aux_sym_preproc_if_token1] = ACTIONS(1), + [aux_sym_preproc_if_token2] = ACTIONS(1), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1), + [aux_sym_preproc_else_token1] = ACTIONS(1), + [aux_sym_preproc_elif_token1] = ACTIONS(1), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1), + [sym_preproc_directive] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(1), + [anon_sym_defined] = ACTIONS(1), + [anon_sym_BANG] = ACTIONS(1), + [anon_sym_TILDE] = ACTIONS(1), + [anon_sym_DASH] = ACTIONS(1), + [anon_sym_PLUS] = ACTIONS(1), + [anon_sym_STAR] = ACTIONS(1), + [anon_sym_SLASH] = ACTIONS(1), + [anon_sym_PERCENT] = ACTIONS(1), + [anon_sym_PIPE_PIPE] = ACTIONS(1), + [anon_sym_AMP_AMP] = ACTIONS(1), + [anon_sym_PIPE] = ACTIONS(1), + [anon_sym_CARET] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(1), + [anon_sym_EQ_EQ] = ACTIONS(1), + [anon_sym_BANG_EQ] = ACTIONS(1), + [anon_sym_GT] = ACTIONS(1), + [anon_sym_GT_EQ] = ACTIONS(1), + [anon_sym_LT_EQ] = ACTIONS(1), + [anon_sym_LT] = ACTIONS(1), + [anon_sym_LT_LT] = ACTIONS(1), + [anon_sym_GT_GT] = ACTIONS(1), + [anon_sym_SEMI] = ACTIONS(1), + [anon_sym___extension__] = ACTIONS(1), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym___attribute__] = ACTIONS(1), + [anon_sym___scanf] = ACTIONS(1), + [anon_sym___printf] = ACTIONS(1), + [anon_sym___read_mostly] = ACTIONS(1), + [anon_sym___must_hold] = ACTIONS(1), + [anon_sym___ro_after_init] = ACTIONS(1), + [anon_sym___noreturn] = ACTIONS(1), + [anon_sym___cold] = ACTIONS(1), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1), + [anon_sym___declspec] = ACTIONS(1), + [anon_sym___based] = ACTIONS(1), + [anon_sym___init] = ACTIONS(1), + [anon_sym___exit] = ACTIONS(1), + [anon_sym___cdecl] = ACTIONS(1), + [anon_sym___clrcall] = ACTIONS(1), + [anon_sym___stdcall] = ACTIONS(1), + [anon_sym___fastcall] = ACTIONS(1), + [anon_sym___thiscall] = ACTIONS(1), + [anon_sym___vectorcall] = ACTIONS(1), + [sym_ms_restrict_modifier] = ACTIONS(1), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(1), + [sym_ms_signed_ptr_modifier] = ACTIONS(1), + [anon_sym__unaligned] = ACTIONS(1), + [anon_sym___unaligned] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(1), + [anon_sym_RBRACE] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [anon_sym_LBRACK] = ACTIONS(1), + [anon_sym_static] = ACTIONS(1), + [anon_sym_RBRACK] = ACTIONS(1), + [anon_sym_EQ] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym___inline] = ACTIONS(1), + [anon_sym___inline__] = ACTIONS(1), + [anon_sym___forceinline] = ACTIONS(1), + [anon_sym_thread_local] = ACTIONS(1), + [anon_sym___thread] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_constexpr] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym___restrict__] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym__Noreturn] = ACTIONS(1), + [anon_sym_noreturn] = ACTIONS(1), + [anon_sym_alignas] = ACTIONS(1), + [anon_sym__Alignas] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_COLON] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym___aligned] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_else] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_default] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_goto] = ACTIONS(1), + [anon_sym___try] = ACTIONS(1), + [anon_sym___except] = ACTIONS(1), + [anon_sym___finally] = ACTIONS(1), + [anon_sym___leave] = ACTIONS(1), + [anon_sym_QMARK] = ACTIONS(1), + [anon_sym_STAR_EQ] = ACTIONS(1), + [anon_sym_SLASH_EQ] = ACTIONS(1), + [anon_sym_PERCENT_EQ] = ACTIONS(1), + [anon_sym_PLUS_EQ] = ACTIONS(1), + [anon_sym_DASH_EQ] = ACTIONS(1), + [anon_sym_LT_LT_EQ] = ACTIONS(1), + [anon_sym_GT_GT_EQ] = ACTIONS(1), + [anon_sym_AMP_EQ] = ACTIONS(1), + [anon_sym_CARET_EQ] = ACTIONS(1), + [anon_sym_PIPE_EQ] = ACTIONS(1), + [anon_sym_DASH_DASH] = ACTIONS(1), + [anon_sym_PLUS_PLUS] = ACTIONS(1), + [anon_sym_sizeof] = ACTIONS(1), + [anon_sym___alignof__] = ACTIONS(1), + [anon_sym___alignof] = ACTIONS(1), + [anon_sym__alignof] = ACTIONS(1), + [anon_sym_alignof] = ACTIONS(1), + [anon_sym__Alignof] = ACTIONS(1), + [anon_sym_offsetof] = ACTIONS(1), + [anon_sym__Generic] = ACTIONS(1), + [anon_sym_asm] = ACTIONS(1), + [anon_sym___asm__] = ACTIONS(1), + [anon_sym_DOT] = ACTIONS(1), + [anon_sym_DASH_GT] = ACTIONS(1), + [sym_number_literal] = ACTIONS(1), + [anon_sym_L_SQUOTE] = ACTIONS(1), + [anon_sym_u_SQUOTE] = ACTIONS(1), + [anon_sym_U_SQUOTE] = ACTIONS(1), + [anon_sym_u8_SQUOTE] = ACTIONS(1), + [anon_sym_SQUOTE] = ACTIONS(1), + [anon_sym_L_DQUOTE] = ACTIONS(1), + [anon_sym_u_DQUOTE] = ACTIONS(1), + [anon_sym_U_DQUOTE] = ACTIONS(1), + [anon_sym_u8_DQUOTE] = ACTIONS(1), + [anon_sym_DQUOTE] = ACTIONS(1), + [sym_true] = ACTIONS(1), + [sym_false] = ACTIONS(1), + [anon_sym_NULL] = ACTIONS(1), + [anon_sym_nullptr] = ACTIONS(1), + [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), + [ts_builtin_sym_end] = ACTIONS(7), + [sym_identifier] = ACTIONS(9), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(11), + [aux_sym_preproc_def_token1] = ACTIONS(13), + [aux_sym_preproc_if_token1] = ACTIONS(15), + [aux_sym_preproc_ifdef_token1] = ACTIONS(17), + [aux_sym_preproc_ifdef_token2] = ACTIONS(17), + [sym_preproc_directive] = ACTIONS(19), + [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(29), + [anon_sym_typedef] = ACTIONS(31), + [anon_sym_extern] = ACTIONS(33), + [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(49), + [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(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_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(101), + [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(107), + [sym_false] = ACTIONS(107), + [anon_sym_NULL] = ACTIONS(109), + [anon_sym_nullptr] = ACTIONS(109), + [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_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(119), + [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), + }, + [3] = { + [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(3276), + [sym_preproc_elif] = STATE(3276), + [sym_preproc_elifdef] = STATE(3276), + [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(171), + [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), + }, + [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_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(173), + [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), + }, + [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_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(175), + [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), + }, + [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_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(177), + [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), + }, + [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_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(179), + [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), + }, + [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_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(181), + [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), + }, + [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_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(183), + [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), + }, + [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_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(185), + [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), + }, + [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_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(187), + [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), + }, + [12] = { + [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(2992), + [sym_preproc_elif] = STATE(2992), + [sym_preproc_elifdef] = STATE(2992), + [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(189), + [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), + }, + [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_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(191), + [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), + }, + [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_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(193), + [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), + }, + [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_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(195), + [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), + }, + [16] = { + [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(3370), + [sym_preproc_elif] = STATE(3370), + [sym_preproc_elifdef] = STATE(3370), + [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(197), + [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), }, - [27] = { - [sym__block_item] = STATE(33), - [sym_preproc_include] = STATE(33), - [sym_preproc_def] = STATE(33), - [sym_preproc_function_def] = STATE(33), - [sym_preproc_call] = STATE(33), - [sym_preproc_if] = STATE(33), - [sym_preproc_ifdef] = STATE(33), - [sym_function_definition] = STATE(33), - [sym__old_style_function_definition] = STATE(312), - [sym_declaration] = STATE(33), - [sym_type_definition] = STATE(33), - [sym__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1234), - [sym_linkage_specification] = STATE(33), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(468), - [sym_ms_declspec_modifier] = STATE(805), - [sym_macro_modifier] = STATE(788), - [sym_ms_call_modifier] = STATE(627), - [sym_compound_statement] = STATE(290), - [sym_storage_class_specifier] = STATE(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(899), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [sym_attributed_statement] = STATE(306), - [sym_statement] = STATE(33), - [sym_labeled_statement] = STATE(290), - [sym_expression_statement] = STATE(290), - [sym_if_statement] = STATE(290), - [sym_switch_statement] = STATE(290), - [sym_case_statement] = STATE(290), - [sym_while_statement] = STATE(290), - [sym_do_statement] = STATE(290), - [sym_for_statement] = STATE(290), - [sym_return_statement] = STATE(290), - [sym_break_statement] = STATE(290), - [sym_continue_statement] = STATE(290), - [sym_goto_statement] = STATE(290), - [sym_seh_try_statement] = STATE(290), - [sym_seh_leave_statement] = STATE(290), - [sym_expression] = STATE(1167), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2207), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [sym__empty_declaration] = STATE(33), - [sym_macro_type_specifier] = STATE(873), - [aux_sym_preproc_if_repeat1] = STATE(33), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_attributed_declarator_repeat1] = STATE(428), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), - [sym_identifier] = ACTIONS(371), - [aux_sym_preproc_include_token1] = ACTIONS(373), - [aux_sym_preproc_def_token1] = ACTIONS(375), - [aux_sym_preproc_if_token1] = ACTIONS(377), - [aux_sym_preproc_ifdef_token1] = ACTIONS(379), - [aux_sym_preproc_ifdef_token2] = ACTIONS(379), - [sym_preproc_directive] = ACTIONS(381), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(383), - [anon_sym___extension__] = ACTIONS(385), - [anon_sym_typedef] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym___read_mostly] = ACTIONS(37), - [anon_sym___must_hold] = ACTIONS(33), - [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___noreturn] = ACTIONS(37), - [anon_sym___cold] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(39), - [anon_sym___declspec] = ACTIONS(41), - [anon_sym___init] = ACTIONS(43), - [anon_sym___exit] = ACTIONS(43), - [anon_sym___cdecl] = ACTIONS(45), - [anon_sym___clrcall] = ACTIONS(45), - [anon_sym___stdcall] = ACTIONS(45), - [anon_sym___fastcall] = ACTIONS(45), - [anon_sym___thiscall] = ACTIONS(45), - [anon_sym___vectorcall] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_RBRACE] = ACTIONS(427), - [anon_sym_signed] = ACTIONS(49), - [anon_sym_unsigned] = ACTIONS(49), - [anon_sym_long] = ACTIONS(49), - [anon_sym_short] = ACTIONS(49), - [anon_sym_static] = ACTIONS(51), - [anon_sym_auto] = ACTIONS(51), - [anon_sym_register] = ACTIONS(51), - [anon_sym_inline] = ACTIONS(51), - [anon_sym___inline] = ACTIONS(51), - [anon_sym___inline__] = ACTIONS(51), - [anon_sym___forceinline] = ACTIONS(51), - [anon_sym_thread_local] = ACTIONS(51), - [anon_sym___thread] = ACTIONS(51), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [anon_sym_if] = ACTIONS(395), - [anon_sym_switch] = ACTIONS(397), - [anon_sym_case] = ACTIONS(399), - [anon_sym_default] = ACTIONS(401), - [anon_sym_while] = ACTIONS(403), - [anon_sym_do] = ACTIONS(405), - [anon_sym_for] = ACTIONS(407), - [anon_sym_return] = ACTIONS(409), - [anon_sym_break] = ACTIONS(411), - [anon_sym_continue] = ACTIONS(413), - [anon_sym_goto] = ACTIONS(415), - [anon_sym___try] = ACTIONS(417), - [anon_sym___leave] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [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), }, - [28] = { - [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(312), - [sym_declaration] = STATE(25), - [sym_type_definition] = STATE(25), - [sym__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1234), - [sym_linkage_specification] = STATE(25), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(468), - [sym_ms_declspec_modifier] = STATE(805), - [sym_macro_modifier] = STATE(788), - [sym_ms_call_modifier] = STATE(627), - [sym_compound_statement] = STATE(290), - [sym_storage_class_specifier] = STATE(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(899), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [sym_attributed_statement] = STATE(306), - [sym_statement] = STATE(25), - [sym_labeled_statement] = STATE(290), - [sym_expression_statement] = STATE(290), - [sym_if_statement] = STATE(290), - [sym_switch_statement] = STATE(290), - [sym_case_statement] = STATE(290), - [sym_while_statement] = STATE(290), - [sym_do_statement] = STATE(290), - [sym_for_statement] = STATE(290), - [sym_return_statement] = STATE(290), - [sym_break_statement] = STATE(290), - [sym_continue_statement] = STATE(290), - [sym_goto_statement] = STATE(290), - [sym_seh_try_statement] = STATE(290), - [sym_seh_leave_statement] = STATE(290), - [sym_expression] = STATE(1167), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2207), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [sym__empty_declaration] = STATE(25), - [sym_macro_type_specifier] = STATE(873), - [aux_sym_preproc_if_repeat1] = STATE(25), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_attributed_declarator_repeat1] = STATE(428), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), - [sym_identifier] = ACTIONS(371), - [aux_sym_preproc_include_token1] = ACTIONS(373), - [aux_sym_preproc_def_token1] = ACTIONS(375), - [aux_sym_preproc_if_token1] = ACTIONS(377), - [aux_sym_preproc_ifdef_token1] = ACTIONS(379), - [aux_sym_preproc_ifdef_token2] = ACTIONS(379), - [sym_preproc_directive] = ACTIONS(381), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(383), - [anon_sym___extension__] = ACTIONS(385), - [anon_sym_typedef] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym___read_mostly] = ACTIONS(37), - [anon_sym___must_hold] = ACTIONS(33), - [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___noreturn] = ACTIONS(37), - [anon_sym___cold] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(39), - [anon_sym___declspec] = ACTIONS(41), - [anon_sym___init] = ACTIONS(43), - [anon_sym___exit] = ACTIONS(43), - [anon_sym___cdecl] = ACTIONS(45), - [anon_sym___clrcall] = ACTIONS(45), - [anon_sym___stdcall] = ACTIONS(45), - [anon_sym___fastcall] = ACTIONS(45), - [anon_sym___thiscall] = ACTIONS(45), - [anon_sym___vectorcall] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_RBRACE] = ACTIONS(429), - [anon_sym_signed] = ACTIONS(49), - [anon_sym_unsigned] = ACTIONS(49), - [anon_sym_long] = ACTIONS(49), - [anon_sym_short] = ACTIONS(49), - [anon_sym_static] = ACTIONS(51), - [anon_sym_auto] = ACTIONS(51), - [anon_sym_register] = ACTIONS(51), - [anon_sym_inline] = ACTIONS(51), - [anon_sym___inline] = ACTIONS(51), - [anon_sym___inline__] = ACTIONS(51), - [anon_sym___forceinline] = ACTIONS(51), - [anon_sym_thread_local] = ACTIONS(51), - [anon_sym___thread] = ACTIONS(51), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [anon_sym_if] = ACTIONS(395), - [anon_sym_switch] = ACTIONS(397), - [anon_sym_case] = ACTIONS(399), - [anon_sym_default] = ACTIONS(401), - [anon_sym_while] = ACTIONS(403), - [anon_sym_do] = ACTIONS(405), - [anon_sym_for] = ACTIONS(407), - [anon_sym_return] = ACTIONS(409), - [anon_sym_break] = ACTIONS(411), - [anon_sym_continue] = ACTIONS(413), - [anon_sym_goto] = ACTIONS(415), - [anon_sym___try] = ACTIONS(417), - [anon_sym___leave] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [18] = { + [sym__block_item] = STATE(3), + [sym_preproc_include] = STATE(3), + [sym_preproc_def] = STATE(3), + [sym_preproc_function_def] = STATE(3), + [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_function_definition] = STATE(3), + [sym__old_style_function_definition] = STATE(138), + [sym_declaration] = STATE(3), + [sym_type_definition] = STATE(3), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1691), + [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_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__empty_declaration] = STATE(3), + [sym_macro_type_specifier] = STATE(1122), + [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), + [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_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), }, - [29] = { + [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), + [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), + [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), + }, + [20] = { + [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(3038), + [sym_preproc_elif] = STATE(3038), + [sym_preproc_elifdef] = STATE(3038), + [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(205), + [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), + }, + [21] = { + [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(3010), + [sym_preproc_elif] = STATE(3010), + [sym_preproc_elifdef] = STATE(3010), + [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(207), + [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), + }, + [22] = { + [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_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(209), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(212), + [aux_sym_preproc_def_token1] = ACTIONS(215), + [aux_sym_preproc_if_token1] = ACTIONS(218), + [aux_sym_preproc_if_token2] = ACTIONS(221), + [aux_sym_preproc_ifdef_token1] = ACTIONS(223), + [aux_sym_preproc_ifdef_token2] = ACTIONS(223), + [aux_sym_preproc_else_token1] = ACTIONS(221), + [aux_sym_preproc_elif_token1] = ACTIONS(221), + [aux_sym_preproc_elifdef_token1] = ACTIONS(221), + [aux_sym_preproc_elifdef_token2] = ACTIONS(221), + [sym_preproc_directive] = ACTIONS(226), + [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(241), + [anon_sym___extension__] = ACTIONS(244), + [anon_sym_typedef] = ACTIONS(247), + [anon_sym_extern] = ACTIONS(250), + [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(274), + [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(301), + [anon_sym_switch] = ACTIONS(304), + [anon_sym_case] = ACTIONS(307), + [anon_sym_default] = ACTIONS(310), + [anon_sym_while] = ACTIONS(313), + [anon_sym_do] = ACTIONS(316), + [anon_sym_for] = ACTIONS(319), + [anon_sym_return] = ACTIONS(322), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(328), + [anon_sym_goto] = ACTIONS(331), + [anon_sym___try] = ACTIONS(334), + [anon_sym___leave] = ACTIONS(337), + [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), + }, + [23] = { [sym__block_item] = STATE(26), [sym_preproc_include] = STATE(26), [sym_preproc_def] = STATE(26), @@ -17747,180 +21181,913 @@ 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(312), + [sym__old_style_function_definition] = STATE(353), [sym_declaration] = STATE(26), [sym_type_definition] = STATE(26), - [sym__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1234), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1700), [sym_linkage_specification] = STATE(26), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(468), - [sym_ms_declspec_modifier] = STATE(805), - [sym_macro_modifier] = STATE(788), - [sym_ms_call_modifier] = STATE(627), - [sym_compound_statement] = STATE(290), - [sym_storage_class_specifier] = STATE(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(899), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [sym_attributed_statement] = STATE(306), + [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(26), - [sym_labeled_statement] = STATE(290), - [sym_expression_statement] = STATE(290), - [sym_if_statement] = STATE(290), - [sym_switch_statement] = STATE(290), - [sym_case_statement] = STATE(290), - [sym_while_statement] = STATE(290), - [sym_do_statement] = STATE(290), - [sym_for_statement] = STATE(290), - [sym_return_statement] = STATE(290), - [sym_break_statement] = STATE(290), - [sym_continue_statement] = STATE(290), - [sym_goto_statement] = STATE(290), - [sym_seh_try_statement] = STATE(290), - [sym_seh_leave_statement] = STATE(290), - [sym_expression] = STATE(1167), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2207), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), + [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(26), - [sym_macro_type_specifier] = STATE(873), + [sym_macro_type_specifier] = STATE(1122), [aux_sym_preproc_if_repeat1] = STATE(26), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_attributed_declarator_repeat1] = STATE(428), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), - [sym_identifier] = ACTIONS(371), - [aux_sym_preproc_include_token1] = ACTIONS(373), - [aux_sym_preproc_def_token1] = ACTIONS(375), - [aux_sym_preproc_if_token1] = ACTIONS(377), - [aux_sym_preproc_ifdef_token1] = ACTIONS(379), - [aux_sym_preproc_ifdef_token2] = ACTIONS(379), - [sym_preproc_directive] = ACTIONS(381), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(383), - [anon_sym___extension__] = ACTIONS(385), - [anon_sym_typedef] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym___read_mostly] = ACTIONS(37), - [anon_sym___must_hold] = ACTIONS(33), - [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___noreturn] = ACTIONS(37), - [anon_sym___cold] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(39), - [anon_sym___declspec] = ACTIONS(41), - [anon_sym___init] = ACTIONS(43), - [anon_sym___exit] = ACTIONS(43), - [anon_sym___cdecl] = ACTIONS(45), - [anon_sym___clrcall] = ACTIONS(45), - [anon_sym___stdcall] = ACTIONS(45), - [anon_sym___fastcall] = ACTIONS(45), - [anon_sym___thiscall] = ACTIONS(45), - [anon_sym___vectorcall] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_RBRACE] = ACTIONS(431), - [anon_sym_signed] = ACTIONS(49), - [anon_sym_unsigned] = ACTIONS(49), - [anon_sym_long] = ACTIONS(49), - [anon_sym_short] = ACTIONS(49), - [anon_sym_static] = ACTIONS(51), - [anon_sym_auto] = ACTIONS(51), - [anon_sym_register] = ACTIONS(51), - [anon_sym_inline] = ACTIONS(51), - [anon_sym___inline] = ACTIONS(51), - [anon_sym___inline__] = ACTIONS(51), - [anon_sym___forceinline] = ACTIONS(51), - [anon_sym_thread_local] = ACTIONS(51), - [anon_sym___thread] = ACTIONS(51), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [anon_sym_if] = ACTIONS(395), - [anon_sym_switch] = ACTIONS(397), - [anon_sym_case] = ACTIONS(399), - [anon_sym_default] = ACTIONS(401), - [anon_sym_while] = ACTIONS(403), - [anon_sym_do] = ACTIONS(405), - [anon_sym_for] = ACTIONS(407), - [anon_sym_return] = ACTIONS(409), - [anon_sym_break] = ACTIONS(411), - [anon_sym_continue] = ACTIONS(413), - [anon_sym_goto] = ACTIONS(415), - [anon_sym___try] = ACTIONS(417), - [anon_sym___leave] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [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), + [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___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), + [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(393), + [anon_sym_RBRACE] = ACTIONS(395), + [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(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), }, - [30] = { + [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_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), + [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___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), + [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(393), + [anon_sym_RBRACE] = ACTIONS(423), + [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(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), + }, + [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_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), + [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___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), + [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(393), + [anon_sym_RBRACE] = ACTIONS(425), + [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(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), + }, + [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_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), + [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___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), + [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(393), + [anon_sym_RBRACE] = ACTIONS(427), + [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(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), + }, + [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), + [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), + [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___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), + [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(393), + [anon_sym_RBRACE] = ACTIONS(429), + [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(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), + }, + [28] = { [sym__block_item] = STATE(31), [sym_preproc_include] = STATE(31), [sym_preproc_def] = STATE(31), @@ -17929,2182 +22096,2377 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_if] = STATE(31), [sym_preproc_ifdef] = STATE(31), [sym_function_definition] = STATE(31), - [sym__old_style_function_definition] = STATE(364), + [sym__old_style_function_definition] = STATE(353), [sym_declaration] = STATE(31), [sym_type_definition] = STATE(31), - [sym__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1235), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1700), [sym_linkage_specification] = STATE(31), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(468), - [sym_ms_declspec_modifier] = STATE(805), - [sym_macro_modifier] = STATE(778), - [sym_ms_call_modifier] = STATE(622), - [sym_compound_statement] = STATE(205), - [sym_storage_class_specifier] = STATE(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(902), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [sym_attributed_statement] = STATE(310), + [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(205), - [sym_expression_statement] = STATE(205), - [sym_if_statement] = STATE(205), - [sym_switch_statement] = STATE(205), - [sym_case_statement] = STATE(205), - [sym_while_statement] = STATE(205), - [sym_do_statement] = STATE(205), - [sym_for_statement] = STATE(205), - [sym_return_statement] = STATE(205), - [sym_break_statement] = STATE(205), - [sym_continue_statement] = STATE(205), - [sym_goto_statement] = STATE(205), - [sym_seh_try_statement] = STATE(205), - [sym_seh_leave_statement] = STATE(205), - [sym_expression] = STATE(1193), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2067), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), + [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(873), + [sym_macro_type_specifier] = STATE(1122), [aux_sym_preproc_if_repeat1] = STATE(31), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_attributed_declarator_repeat1] = STATE(415), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), - [sym_identifier] = ACTIONS(433), - [aux_sym_preproc_include_token1] = ACTIONS(435), - [aux_sym_preproc_def_token1] = ACTIONS(437), - [aux_sym_preproc_if_token1] = ACTIONS(439), - [aux_sym_preproc_if_token2] = ACTIONS(441), - [aux_sym_preproc_ifdef_token1] = ACTIONS(443), - [aux_sym_preproc_ifdef_token2] = ACTIONS(443), - [sym_preproc_directive] = ACTIONS(445), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(447), - [anon_sym___extension__] = ACTIONS(449), - [anon_sym_typedef] = ACTIONS(451), - [anon_sym_extern] = ACTIONS(453), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym___read_mostly] = ACTIONS(37), - [anon_sym___must_hold] = ACTIONS(33), - [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___noreturn] = ACTIONS(37), - [anon_sym___cold] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(39), - [anon_sym___declspec] = ACTIONS(41), - [anon_sym___init] = ACTIONS(43), - [anon_sym___exit] = ACTIONS(43), - [anon_sym___cdecl] = ACTIONS(45), - [anon_sym___clrcall] = ACTIONS(45), - [anon_sym___stdcall] = ACTIONS(45), - [anon_sym___fastcall] = ACTIONS(45), - [anon_sym___thiscall] = ACTIONS(45), - [anon_sym___vectorcall] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(455), - [anon_sym_signed] = ACTIONS(49), - [anon_sym_unsigned] = ACTIONS(49), - [anon_sym_long] = ACTIONS(49), - [anon_sym_short] = ACTIONS(49), - [anon_sym_static] = ACTIONS(51), - [anon_sym_auto] = ACTIONS(51), - [anon_sym_register] = ACTIONS(51), - [anon_sym_inline] = ACTIONS(51), - [anon_sym___inline] = ACTIONS(51), - [anon_sym___inline__] = ACTIONS(51), - [anon_sym___forceinline] = ACTIONS(51), - [anon_sym_thread_local] = ACTIONS(51), - [anon_sym___thread] = ACTIONS(51), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [anon_sym_if] = ACTIONS(457), - [anon_sym_switch] = ACTIONS(459), - [anon_sym_case] = ACTIONS(461), - [anon_sym_default] = ACTIONS(463), - [anon_sym_while] = ACTIONS(465), - [anon_sym_do] = ACTIONS(467), - [anon_sym_for] = ACTIONS(469), - [anon_sym_return] = ACTIONS(471), - [anon_sym_break] = ACTIONS(473), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_goto] = ACTIONS(477), - [anon_sym___try] = ACTIONS(479), - [anon_sym___leave] = ACTIONS(481), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [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), + [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___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), + [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(393), + [anon_sym_RBRACE] = ACTIONS(431), + [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(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), + }, + [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), + [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), + [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___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), + [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(393), + [anon_sym_RBRACE] = ACTIONS(433), + [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(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), + }, + [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), + [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), + [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___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), + [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(393), + [anon_sym_RBRACE] = ACTIONS(435), + [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(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), }, [31] = { - [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(364), - [sym_declaration] = STATE(37), - [sym_type_definition] = STATE(37), - [sym__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1235), - [sym_linkage_specification] = STATE(37), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(468), - [sym_ms_declspec_modifier] = STATE(805), - [sym_macro_modifier] = STATE(778), - [sym_ms_call_modifier] = STATE(622), - [sym_compound_statement] = STATE(205), - [sym_storage_class_specifier] = STATE(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(902), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [sym_attributed_statement] = STATE(310), - [sym_statement] = STATE(37), - [sym_labeled_statement] = STATE(205), - [sym_expression_statement] = STATE(205), - [sym_if_statement] = STATE(205), - [sym_switch_statement] = STATE(205), - [sym_case_statement] = STATE(205), - [sym_while_statement] = STATE(205), - [sym_do_statement] = STATE(205), - [sym_for_statement] = STATE(205), - [sym_return_statement] = STATE(205), - [sym_break_statement] = STATE(205), - [sym_continue_statement] = STATE(205), - [sym_goto_statement] = STATE(205), - [sym_seh_try_statement] = STATE(205), - [sym_seh_leave_statement] = STATE(205), - [sym_expression] = STATE(1193), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2067), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [sym__empty_declaration] = STATE(37), - [sym_macro_type_specifier] = STATE(873), - [aux_sym_preproc_if_repeat1] = STATE(37), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_attributed_declarator_repeat1] = STATE(415), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), - [sym_identifier] = ACTIONS(433), - [aux_sym_preproc_include_token1] = ACTIONS(435), - [aux_sym_preproc_def_token1] = ACTIONS(437), - [aux_sym_preproc_if_token1] = ACTIONS(439), - [aux_sym_preproc_if_token2] = ACTIONS(483), - [aux_sym_preproc_ifdef_token1] = ACTIONS(443), - [aux_sym_preproc_ifdef_token2] = ACTIONS(443), - [sym_preproc_directive] = ACTIONS(445), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(447), - [anon_sym___extension__] = ACTIONS(449), - [anon_sym_typedef] = ACTIONS(451), - [anon_sym_extern] = ACTIONS(453), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym___read_mostly] = ACTIONS(37), - [anon_sym___must_hold] = ACTIONS(33), - [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___noreturn] = ACTIONS(37), - [anon_sym___cold] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(39), - [anon_sym___declspec] = ACTIONS(41), - [anon_sym___init] = ACTIONS(43), - [anon_sym___exit] = ACTIONS(43), - [anon_sym___cdecl] = ACTIONS(45), - [anon_sym___clrcall] = ACTIONS(45), - [anon_sym___stdcall] = ACTIONS(45), - [anon_sym___fastcall] = ACTIONS(45), - [anon_sym___thiscall] = ACTIONS(45), - [anon_sym___vectorcall] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(455), - [anon_sym_signed] = ACTIONS(49), - [anon_sym_unsigned] = ACTIONS(49), - [anon_sym_long] = ACTIONS(49), - [anon_sym_short] = ACTIONS(49), - [anon_sym_static] = ACTIONS(51), - [anon_sym_auto] = ACTIONS(51), - [anon_sym_register] = ACTIONS(51), - [anon_sym_inline] = ACTIONS(51), - [anon_sym___inline] = ACTIONS(51), - [anon_sym___inline__] = ACTIONS(51), - [anon_sym___forceinline] = ACTIONS(51), - [anon_sym_thread_local] = ACTIONS(51), - [anon_sym___thread] = ACTIONS(51), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [anon_sym_if] = ACTIONS(457), - [anon_sym_switch] = ACTIONS(459), - [anon_sym_case] = ACTIONS(461), - [anon_sym_default] = ACTIONS(463), - [anon_sym_while] = ACTIONS(465), - [anon_sym_do] = ACTIONS(467), - [anon_sym_for] = ACTIONS(469), - [anon_sym_return] = ACTIONS(471), - [anon_sym_break] = ACTIONS(473), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_goto] = ACTIONS(477), - [anon_sym___try] = ACTIONS(479), - [anon_sym___leave] = ACTIONS(481), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [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), + [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___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), + [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(393), + [anon_sym_RBRACE] = ACTIONS(437), + [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(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), }, [32] = { - [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(312), - [sym_declaration] = STATE(40), - [sym_type_definition] = STATE(40), - [sym__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1234), - [sym_linkage_specification] = STATE(40), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(468), - [sym_ms_declspec_modifier] = STATE(805), - [sym_macro_modifier] = STATE(788), - [sym_ms_call_modifier] = STATE(627), - [sym_compound_statement] = STATE(290), - [sym_storage_class_specifier] = STATE(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(899), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [sym_attributed_statement] = STATE(306), - [sym_statement] = STATE(40), - [sym_labeled_statement] = STATE(290), - [sym_expression_statement] = STATE(290), - [sym_if_statement] = STATE(290), - [sym_switch_statement] = STATE(290), - [sym_case_statement] = STATE(290), - [sym_while_statement] = STATE(290), - [sym_do_statement] = STATE(290), - [sym_for_statement] = STATE(290), - [sym_return_statement] = STATE(290), - [sym_break_statement] = STATE(290), - [sym_continue_statement] = STATE(290), - [sym_goto_statement] = STATE(290), - [sym_seh_try_statement] = STATE(290), - [sym_seh_leave_statement] = STATE(290), - [sym_expression] = STATE(1167), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2207), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [sym__empty_declaration] = STATE(40), - [sym_macro_type_specifier] = STATE(873), - [aux_sym_preproc_if_repeat1] = STATE(40), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_attributed_declarator_repeat1] = STATE(428), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), - [sym_identifier] = ACTIONS(371), - [aux_sym_preproc_include_token1] = ACTIONS(373), - [aux_sym_preproc_def_token1] = ACTIONS(375), - [aux_sym_preproc_if_token1] = ACTIONS(377), - [aux_sym_preproc_ifdef_token1] = ACTIONS(379), - [aux_sym_preproc_ifdef_token2] = ACTIONS(379), - [sym_preproc_directive] = ACTIONS(381), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(383), - [anon_sym___extension__] = ACTIONS(385), - [anon_sym_typedef] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym___read_mostly] = ACTIONS(37), - [anon_sym___must_hold] = ACTIONS(33), - [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___noreturn] = ACTIONS(37), - [anon_sym___cold] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(39), - [anon_sym___declspec] = ACTIONS(41), - [anon_sym___init] = ACTIONS(43), - [anon_sym___exit] = ACTIONS(43), - [anon_sym___cdecl] = ACTIONS(45), - [anon_sym___clrcall] = ACTIONS(45), - [anon_sym___stdcall] = ACTIONS(45), - [anon_sym___fastcall] = ACTIONS(45), - [anon_sym___thiscall] = ACTIONS(45), - [anon_sym___vectorcall] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_RBRACE] = ACTIONS(485), - [anon_sym_signed] = ACTIONS(49), - [anon_sym_unsigned] = ACTIONS(49), - [anon_sym_long] = ACTIONS(49), - [anon_sym_short] = ACTIONS(49), - [anon_sym_static] = ACTIONS(51), - [anon_sym_auto] = ACTIONS(51), - [anon_sym_register] = ACTIONS(51), - [anon_sym_inline] = ACTIONS(51), - [anon_sym___inline] = ACTIONS(51), - [anon_sym___inline__] = ACTIONS(51), - [anon_sym___forceinline] = ACTIONS(51), - [anon_sym_thread_local] = ACTIONS(51), - [anon_sym___thread] = ACTIONS(51), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [anon_sym_if] = ACTIONS(395), - [anon_sym_switch] = ACTIONS(397), - [anon_sym_case] = ACTIONS(399), - [anon_sym_default] = ACTIONS(401), - [anon_sym_while] = ACTIONS(403), - [anon_sym_do] = ACTIONS(405), - [anon_sym_for] = ACTIONS(407), - [anon_sym_return] = ACTIONS(409), - [anon_sym_break] = ACTIONS(411), - [anon_sym_continue] = ACTIONS(413), - [anon_sym_goto] = ACTIONS(415), - [anon_sym___try] = ACTIONS(417), - [anon_sym___leave] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [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), + [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), + [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___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), + [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(393), + [anon_sym_RBRACE] = ACTIONS(439), + [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(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), }, [33] = { - [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(312), - [sym_declaration] = STATE(40), - [sym_type_definition] = STATE(40), - [sym__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1234), - [sym_linkage_specification] = STATE(40), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(468), - [sym_ms_declspec_modifier] = STATE(805), - [sym_macro_modifier] = STATE(788), - [sym_ms_call_modifier] = STATE(627), - [sym_compound_statement] = STATE(290), - [sym_storage_class_specifier] = STATE(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(899), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [sym_attributed_statement] = STATE(306), - [sym_statement] = STATE(40), - [sym_labeled_statement] = STATE(290), - [sym_expression_statement] = STATE(290), - [sym_if_statement] = STATE(290), - [sym_switch_statement] = STATE(290), - [sym_case_statement] = STATE(290), - [sym_while_statement] = STATE(290), - [sym_do_statement] = STATE(290), - [sym_for_statement] = STATE(290), - [sym_return_statement] = STATE(290), - [sym_break_statement] = STATE(290), - [sym_continue_statement] = STATE(290), - [sym_goto_statement] = STATE(290), - [sym_seh_try_statement] = STATE(290), - [sym_seh_leave_statement] = STATE(290), - [sym_expression] = STATE(1167), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2207), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [sym__empty_declaration] = STATE(40), - [sym_macro_type_specifier] = STATE(873), - [aux_sym_preproc_if_repeat1] = STATE(40), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_attributed_declarator_repeat1] = STATE(428), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), - [sym_identifier] = ACTIONS(371), - [aux_sym_preproc_include_token1] = ACTIONS(373), - [aux_sym_preproc_def_token1] = ACTIONS(375), - [aux_sym_preproc_if_token1] = ACTIONS(377), - [aux_sym_preproc_ifdef_token1] = ACTIONS(379), - [aux_sym_preproc_ifdef_token2] = ACTIONS(379), - [sym_preproc_directive] = ACTIONS(381), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(383), - [anon_sym___extension__] = ACTIONS(385), - [anon_sym_typedef] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym___read_mostly] = ACTIONS(37), - [anon_sym___must_hold] = ACTIONS(33), - [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___noreturn] = ACTIONS(37), - [anon_sym___cold] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(39), - [anon_sym___declspec] = ACTIONS(41), - [anon_sym___init] = ACTIONS(43), - [anon_sym___exit] = ACTIONS(43), - [anon_sym___cdecl] = ACTIONS(45), - [anon_sym___clrcall] = ACTIONS(45), - [anon_sym___stdcall] = ACTIONS(45), - [anon_sym___fastcall] = ACTIONS(45), - [anon_sym___thiscall] = ACTIONS(45), - [anon_sym___vectorcall] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_RBRACE] = ACTIONS(487), - [anon_sym_signed] = ACTIONS(49), - [anon_sym_unsigned] = ACTIONS(49), - [anon_sym_long] = ACTIONS(49), - [anon_sym_short] = ACTIONS(49), - [anon_sym_static] = ACTIONS(51), - [anon_sym_auto] = ACTIONS(51), - [anon_sym_register] = ACTIONS(51), - [anon_sym_inline] = ACTIONS(51), - [anon_sym___inline] = ACTIONS(51), - [anon_sym___inline__] = ACTIONS(51), - [anon_sym___forceinline] = ACTIONS(51), - [anon_sym_thread_local] = ACTIONS(51), - [anon_sym___thread] = ACTIONS(51), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [anon_sym_if] = ACTIONS(395), - [anon_sym_switch] = ACTIONS(397), - [anon_sym_case] = ACTIONS(399), - [anon_sym_default] = ACTIONS(401), - [anon_sym_while] = ACTIONS(403), - [anon_sym_do] = ACTIONS(405), - [anon_sym_for] = ACTIONS(407), - [anon_sym_return] = ACTIONS(409), - [anon_sym_break] = ACTIONS(411), - [anon_sym_continue] = ACTIONS(413), - [anon_sym_goto] = ACTIONS(415), - [anon_sym___try] = ACTIONS(417), - [anon_sym___leave] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [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), + [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), }, [34] = { - [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(312), - [sym_declaration] = STATE(32), - [sym_type_definition] = STATE(32), - [sym__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1234), - [sym_linkage_specification] = STATE(32), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(468), - [sym_ms_declspec_modifier] = STATE(805), - [sym_macro_modifier] = STATE(788), - [sym_ms_call_modifier] = STATE(627), - [sym_compound_statement] = STATE(290), - [sym_storage_class_specifier] = STATE(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(899), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [sym_attributed_statement] = STATE(306), - [sym_statement] = STATE(32), - [sym_labeled_statement] = STATE(290), - [sym_expression_statement] = STATE(290), - [sym_if_statement] = STATE(290), - [sym_switch_statement] = STATE(290), - [sym_case_statement] = STATE(290), - [sym_while_statement] = STATE(290), - [sym_do_statement] = STATE(290), - [sym_for_statement] = STATE(290), - [sym_return_statement] = STATE(290), - [sym_break_statement] = STATE(290), - [sym_continue_statement] = STATE(290), - [sym_goto_statement] = STATE(290), - [sym_seh_try_statement] = STATE(290), - [sym_seh_leave_statement] = STATE(290), - [sym_expression] = STATE(1167), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2207), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [sym__empty_declaration] = STATE(32), - [sym_macro_type_specifier] = STATE(873), - [aux_sym_preproc_if_repeat1] = STATE(32), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_attributed_declarator_repeat1] = STATE(428), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), - [sym_identifier] = ACTIONS(371), - [aux_sym_preproc_include_token1] = ACTIONS(373), - [aux_sym_preproc_def_token1] = ACTIONS(375), - [aux_sym_preproc_if_token1] = ACTIONS(377), - [aux_sym_preproc_ifdef_token1] = ACTIONS(379), - [aux_sym_preproc_ifdef_token2] = ACTIONS(379), - [sym_preproc_directive] = ACTIONS(381), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(383), - [anon_sym___extension__] = ACTIONS(385), - [anon_sym_typedef] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym___read_mostly] = ACTIONS(37), - [anon_sym___must_hold] = ACTIONS(33), - [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___noreturn] = ACTIONS(37), - [anon_sym___cold] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(39), - [anon_sym___declspec] = ACTIONS(41), - [anon_sym___init] = ACTIONS(43), - [anon_sym___exit] = ACTIONS(43), - [anon_sym___cdecl] = ACTIONS(45), - [anon_sym___clrcall] = ACTIONS(45), - [anon_sym___stdcall] = ACTIONS(45), - [anon_sym___fastcall] = ACTIONS(45), - [anon_sym___thiscall] = ACTIONS(45), - [anon_sym___vectorcall] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_RBRACE] = ACTIONS(489), - [anon_sym_signed] = ACTIONS(49), - [anon_sym_unsigned] = ACTIONS(49), - [anon_sym_long] = ACTIONS(49), - [anon_sym_short] = ACTIONS(49), - [anon_sym_static] = ACTIONS(51), - [anon_sym_auto] = ACTIONS(51), - [anon_sym_register] = ACTIONS(51), - [anon_sym_inline] = ACTIONS(51), - [anon_sym___inline] = ACTIONS(51), - [anon_sym___inline__] = ACTIONS(51), - [anon_sym___forceinline] = ACTIONS(51), - [anon_sym_thread_local] = ACTIONS(51), - [anon_sym___thread] = ACTIONS(51), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [anon_sym_if] = ACTIONS(395), - [anon_sym_switch] = ACTIONS(397), - [anon_sym_case] = ACTIONS(399), - [anon_sym_default] = ACTIONS(401), - [anon_sym_while] = ACTIONS(403), - [anon_sym_do] = ACTIONS(405), - [anon_sym_for] = ACTIONS(407), - [anon_sym_return] = ACTIONS(409), - [anon_sym_break] = ACTIONS(411), - [anon_sym_continue] = ACTIONS(413), - [anon_sym_goto] = ACTIONS(415), - [anon_sym___try] = ACTIONS(417), - [anon_sym___leave] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [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(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(312), - [sym_declaration] = STATE(39), - [sym_type_definition] = STATE(39), - [sym__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1234), - [sym_linkage_specification] = STATE(39), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(468), - [sym_ms_declspec_modifier] = STATE(805), - [sym_macro_modifier] = STATE(788), - [sym_ms_call_modifier] = STATE(627), - [sym_compound_statement] = STATE(290), - [sym_storage_class_specifier] = STATE(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(899), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [sym_attributed_statement] = STATE(306), - [sym_statement] = STATE(39), - [sym_labeled_statement] = STATE(290), - [sym_expression_statement] = STATE(290), - [sym_if_statement] = STATE(290), - [sym_switch_statement] = STATE(290), - [sym_case_statement] = STATE(290), - [sym_while_statement] = STATE(290), - [sym_do_statement] = STATE(290), - [sym_for_statement] = STATE(290), - [sym_return_statement] = STATE(290), - [sym_break_statement] = STATE(290), - [sym_continue_statement] = STATE(290), - [sym_goto_statement] = STATE(290), - [sym_seh_try_statement] = STATE(290), - [sym_seh_leave_statement] = STATE(290), - [sym_expression] = STATE(1167), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2207), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [sym__empty_declaration] = STATE(39), - [sym_macro_type_specifier] = STATE(873), - [aux_sym_preproc_if_repeat1] = STATE(39), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_attributed_declarator_repeat1] = STATE(428), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), - [sym_identifier] = ACTIONS(371), - [aux_sym_preproc_include_token1] = ACTIONS(373), - [aux_sym_preproc_def_token1] = ACTIONS(375), - [aux_sym_preproc_if_token1] = ACTIONS(377), - [aux_sym_preproc_ifdef_token1] = ACTIONS(379), - [aux_sym_preproc_ifdef_token2] = ACTIONS(379), - [sym_preproc_directive] = ACTIONS(381), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(383), - [anon_sym___extension__] = ACTIONS(385), - [anon_sym_typedef] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym___read_mostly] = ACTIONS(37), - [anon_sym___must_hold] = ACTIONS(33), - [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___noreturn] = ACTIONS(37), - [anon_sym___cold] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(39), - [anon_sym___declspec] = ACTIONS(41), - [anon_sym___init] = ACTIONS(43), - [anon_sym___exit] = ACTIONS(43), - [anon_sym___cdecl] = ACTIONS(45), - [anon_sym___clrcall] = ACTIONS(45), - [anon_sym___stdcall] = ACTIONS(45), - [anon_sym___fastcall] = ACTIONS(45), - [anon_sym___thiscall] = ACTIONS(45), - [anon_sym___vectorcall] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_RBRACE] = ACTIONS(491), - [anon_sym_signed] = ACTIONS(49), - [anon_sym_unsigned] = ACTIONS(49), - [anon_sym_long] = ACTIONS(49), - [anon_sym_short] = ACTIONS(49), - [anon_sym_static] = ACTIONS(51), - [anon_sym_auto] = ACTIONS(51), - [anon_sym_register] = ACTIONS(51), - [anon_sym_inline] = ACTIONS(51), - [anon_sym___inline] = ACTIONS(51), - [anon_sym___inline__] = ACTIONS(51), - [anon_sym___forceinline] = ACTIONS(51), - [anon_sym_thread_local] = ACTIONS(51), - [anon_sym___thread] = ACTIONS(51), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [anon_sym_if] = ACTIONS(395), - [anon_sym_switch] = ACTIONS(397), - [anon_sym_case] = ACTIONS(399), - [anon_sym_default] = ACTIONS(401), - [anon_sym_while] = ACTIONS(403), - [anon_sym_do] = ACTIONS(405), - [anon_sym_for] = ACTIONS(407), - [anon_sym_return] = ACTIONS(409), - [anon_sym_break] = ACTIONS(411), - [anon_sym_continue] = ACTIONS(413), - [anon_sym_goto] = ACTIONS(415), - [anon_sym___try] = ACTIONS(417), - [anon_sym___leave] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [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), + [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___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), + [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(393), + [anon_sym_RBRACE] = ACTIONS(563), + [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(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), }, [36] = { - [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(312), - [sym_declaration] = STATE(23), - [sym_type_definition] = STATE(23), - [sym__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1234), - [sym_linkage_specification] = STATE(23), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(468), - [sym_ms_declspec_modifier] = STATE(805), - [sym_macro_modifier] = STATE(788), - [sym_ms_call_modifier] = STATE(627), - [sym_compound_statement] = STATE(290), - [sym_storage_class_specifier] = STATE(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(899), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [sym_attributed_statement] = STATE(306), - [sym_statement] = STATE(23), - [sym_labeled_statement] = STATE(290), - [sym_expression_statement] = STATE(290), - [sym_if_statement] = STATE(290), - [sym_switch_statement] = STATE(290), - [sym_case_statement] = STATE(290), - [sym_while_statement] = STATE(290), - [sym_do_statement] = STATE(290), - [sym_for_statement] = STATE(290), - [sym_return_statement] = STATE(290), - [sym_break_statement] = STATE(290), - [sym_continue_statement] = STATE(290), - [sym_goto_statement] = STATE(290), - [sym_seh_try_statement] = STATE(290), - [sym_seh_leave_statement] = STATE(290), - [sym_expression] = STATE(1167), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2207), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [sym__empty_declaration] = STATE(23), - [sym_macro_type_specifier] = STATE(873), - [aux_sym_preproc_if_repeat1] = STATE(23), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_attributed_declarator_repeat1] = STATE(428), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), - [sym_identifier] = ACTIONS(371), - [aux_sym_preproc_include_token1] = ACTIONS(373), - [aux_sym_preproc_def_token1] = ACTIONS(375), - [aux_sym_preproc_if_token1] = ACTIONS(377), - [aux_sym_preproc_ifdef_token1] = ACTIONS(379), - [aux_sym_preproc_ifdef_token2] = ACTIONS(379), - [sym_preproc_directive] = ACTIONS(381), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(383), - [anon_sym___extension__] = ACTIONS(385), - [anon_sym_typedef] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym___read_mostly] = ACTIONS(37), - [anon_sym___must_hold] = ACTIONS(33), - [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___noreturn] = ACTIONS(37), - [anon_sym___cold] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(39), - [anon_sym___declspec] = ACTIONS(41), - [anon_sym___init] = ACTIONS(43), - [anon_sym___exit] = ACTIONS(43), - [anon_sym___cdecl] = ACTIONS(45), - [anon_sym___clrcall] = ACTIONS(45), - [anon_sym___stdcall] = ACTIONS(45), - [anon_sym___fastcall] = ACTIONS(45), - [anon_sym___thiscall] = ACTIONS(45), - [anon_sym___vectorcall] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_RBRACE] = ACTIONS(493), - [anon_sym_signed] = ACTIONS(49), - [anon_sym_unsigned] = ACTIONS(49), - [anon_sym_long] = ACTIONS(49), - [anon_sym_short] = ACTIONS(49), - [anon_sym_static] = ACTIONS(51), - [anon_sym_auto] = ACTIONS(51), - [anon_sym_register] = ACTIONS(51), - [anon_sym_inline] = ACTIONS(51), - [anon_sym___inline] = ACTIONS(51), - [anon_sym___inline__] = ACTIONS(51), - [anon_sym___forceinline] = ACTIONS(51), - [anon_sym_thread_local] = ACTIONS(51), - [anon_sym___thread] = ACTIONS(51), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [anon_sym_if] = ACTIONS(395), - [anon_sym_switch] = ACTIONS(397), - [anon_sym_case] = ACTIONS(399), - [anon_sym_default] = ACTIONS(401), - [anon_sym_while] = ACTIONS(403), - [anon_sym_do] = ACTIONS(405), - [anon_sym_for] = ACTIONS(407), - [anon_sym_return] = ACTIONS(409), - [anon_sym_break] = ACTIONS(411), - [anon_sym_continue] = ACTIONS(413), - [anon_sym_goto] = ACTIONS(415), - [anon_sym___try] = ACTIONS(417), - [anon_sym___leave] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [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(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(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(364), - [sym_declaration] = STATE(37), - [sym_type_definition] = STATE(37), - [sym__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1235), - [sym_linkage_specification] = STATE(37), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(468), - [sym_ms_declspec_modifier] = STATE(805), - [sym_macro_modifier] = STATE(778), - [sym_ms_call_modifier] = STATE(622), - [sym_compound_statement] = STATE(205), - [sym_storage_class_specifier] = STATE(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(902), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [sym_attributed_statement] = STATE(310), - [sym_statement] = STATE(37), - [sym_labeled_statement] = STATE(205), - [sym_expression_statement] = STATE(205), - [sym_if_statement] = STATE(205), - [sym_switch_statement] = STATE(205), - [sym_case_statement] = STATE(205), - [sym_while_statement] = STATE(205), - [sym_do_statement] = STATE(205), - [sym_for_statement] = STATE(205), - [sym_return_statement] = STATE(205), - [sym_break_statement] = STATE(205), - [sym_continue_statement] = STATE(205), - [sym_goto_statement] = STATE(205), - [sym_seh_try_statement] = STATE(205), - [sym_seh_leave_statement] = STATE(205), - [sym_expression] = STATE(1193), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2067), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [sym__empty_declaration] = STATE(37), - [sym_macro_type_specifier] = STATE(873), - [aux_sym_preproc_if_repeat1] = STATE(37), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_attributed_declarator_repeat1] = STATE(415), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), - [sym_identifier] = ACTIONS(495), - [aux_sym_preproc_include_token1] = ACTIONS(498), - [aux_sym_preproc_def_token1] = ACTIONS(501), - [aux_sym_preproc_if_token1] = ACTIONS(504), - [aux_sym_preproc_if_token2] = ACTIONS(219), - [aux_sym_preproc_ifdef_token1] = ACTIONS(507), - [aux_sym_preproc_ifdef_token2] = ACTIONS(507), - [sym_preproc_directive] = ACTIONS(510), - [anon_sym_LPAREN2] = ACTIONS(227), - [anon_sym_BANG] = ACTIONS(230), - [anon_sym_TILDE] = ACTIONS(230), - [anon_sym_DASH] = ACTIONS(233), - [anon_sym_PLUS] = ACTIONS(233), - [anon_sym_STAR] = ACTIONS(236), - [anon_sym_AMP] = ACTIONS(236), - [anon_sym_SEMI] = ACTIONS(513), - [anon_sym___extension__] = ACTIONS(516), - [anon_sym_typedef] = ACTIONS(519), - [anon_sym_extern] = ACTIONS(522), - [anon_sym___attribute__] = ACTIONS(251), - [anon_sym___scanf] = ACTIONS(254), - [anon_sym___printf] = ACTIONS(254), - [anon_sym___read_mostly] = ACTIONS(257), - [anon_sym___must_hold] = ACTIONS(251), - [anon_sym___ro_after_init] = ACTIONS(257), - [anon_sym___noreturn] = ACTIONS(257), - [anon_sym___cold] = ACTIONS(257), - [anon_sym_LBRACK_LBRACK] = ACTIONS(260), - [anon_sym___declspec] = ACTIONS(263), - [anon_sym___init] = ACTIONS(266), - [anon_sym___exit] = ACTIONS(266), - [anon_sym___cdecl] = ACTIONS(269), - [anon_sym___clrcall] = ACTIONS(269), - [anon_sym___stdcall] = ACTIONS(269), - [anon_sym___fastcall] = ACTIONS(269), - [anon_sym___thiscall] = ACTIONS(269), - [anon_sym___vectorcall] = ACTIONS(269), - [anon_sym_LBRACE] = ACTIONS(525), - [anon_sym_signed] = ACTIONS(275), - [anon_sym_unsigned] = ACTIONS(275), - [anon_sym_long] = ACTIONS(275), - [anon_sym_short] = ACTIONS(275), - [anon_sym_static] = ACTIONS(278), - [anon_sym_auto] = ACTIONS(278), - [anon_sym_register] = ACTIONS(278), - [anon_sym_inline] = ACTIONS(278), - [anon_sym___inline] = ACTIONS(278), - [anon_sym___inline__] = ACTIONS(278), - [anon_sym___forceinline] = ACTIONS(278), - [anon_sym_thread_local] = ACTIONS(278), - [anon_sym___thread] = ACTIONS(278), - [anon_sym_const] = ACTIONS(281), - [anon_sym_constexpr] = ACTIONS(281), - [anon_sym_volatile] = ACTIONS(281), - [anon_sym_restrict] = ACTIONS(281), - [anon_sym___restrict__] = ACTIONS(281), - [anon_sym__Atomic] = ACTIONS(281), - [anon_sym__Noreturn] = ACTIONS(281), - [anon_sym_noreturn] = ACTIONS(281), - [anon_sym_alignas] = ACTIONS(284), - [anon_sym__Alignas] = ACTIONS(284), - [sym_primitive_type] = ACTIONS(287), - [anon_sym_enum] = ACTIONS(290), - [anon_sym_struct] = ACTIONS(293), - [anon_sym_union] = ACTIONS(296), - [anon_sym_if] = ACTIONS(528), - [anon_sym_switch] = ACTIONS(531), - [anon_sym_case] = ACTIONS(534), - [anon_sym_default] = ACTIONS(537), - [anon_sym_while] = ACTIONS(540), - [anon_sym_do] = ACTIONS(543), - [anon_sym_for] = ACTIONS(546), - [anon_sym_return] = ACTIONS(549), - [anon_sym_break] = ACTIONS(552), - [anon_sym_continue] = ACTIONS(555), - [anon_sym_goto] = ACTIONS(558), - [anon_sym___try] = ACTIONS(561), - [anon_sym___leave] = ACTIONS(564), - [anon_sym_DASH_DASH] = ACTIONS(338), - [anon_sym_PLUS_PLUS] = ACTIONS(338), - [anon_sym_sizeof] = ACTIONS(341), - [anon_sym___alignof__] = ACTIONS(344), - [anon_sym___alignof] = ACTIONS(344), - [anon_sym__alignof] = ACTIONS(344), - [anon_sym_alignof] = ACTIONS(344), - [anon_sym__Alignof] = ACTIONS(344), - [anon_sym_offsetof] = ACTIONS(347), - [anon_sym__Generic] = ACTIONS(350), - [anon_sym_asm] = ACTIONS(353), - [anon_sym___asm__] = ACTIONS(353), - [sym_number_literal] = ACTIONS(356), - [anon_sym_L_SQUOTE] = ACTIONS(359), - [anon_sym_u_SQUOTE] = ACTIONS(359), - [anon_sym_U_SQUOTE] = ACTIONS(359), - [anon_sym_u8_SQUOTE] = ACTIONS(359), - [anon_sym_SQUOTE] = ACTIONS(359), - [anon_sym_L_DQUOTE] = ACTIONS(362), - [anon_sym_u_DQUOTE] = ACTIONS(362), - [anon_sym_U_DQUOTE] = ACTIONS(362), - [anon_sym_u8_DQUOTE] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(362), - [sym_true] = ACTIONS(365), - [sym_false] = ACTIONS(365), - [anon_sym_NULL] = ACTIONS(368), - [anon_sym_nullptr] = ACTIONS(368), - [sym_comment] = ACTIONS(3), + [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), + [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), + [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___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), + [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(393), + [anon_sym_RBRACE] = ACTIONS(567), + [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(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), }, [38] = { - [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(312), - [sym_declaration] = STATE(40), - [sym_type_definition] = STATE(40), - [sym__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1234), - [sym_linkage_specification] = STATE(40), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(468), - [sym_ms_declspec_modifier] = STATE(805), - [sym_macro_modifier] = STATE(788), - [sym_ms_call_modifier] = STATE(627), - [sym_compound_statement] = STATE(290), - [sym_storage_class_specifier] = STATE(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(899), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [sym_attributed_statement] = STATE(306), - [sym_statement] = STATE(40), - [sym_labeled_statement] = STATE(290), - [sym_expression_statement] = STATE(290), - [sym_if_statement] = STATE(290), - [sym_switch_statement] = STATE(290), - [sym_case_statement] = STATE(290), - [sym_while_statement] = STATE(290), - [sym_do_statement] = STATE(290), - [sym_for_statement] = STATE(290), - [sym_return_statement] = STATE(290), - [sym_break_statement] = STATE(290), - [sym_continue_statement] = STATE(290), - [sym_goto_statement] = STATE(290), - [sym_seh_try_statement] = STATE(290), - [sym_seh_leave_statement] = STATE(290), - [sym_expression] = STATE(1167), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2207), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [sym__empty_declaration] = STATE(40), - [sym_macro_type_specifier] = STATE(873), - [aux_sym_preproc_if_repeat1] = STATE(40), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_attributed_declarator_repeat1] = STATE(428), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), - [sym_identifier] = ACTIONS(371), - [aux_sym_preproc_include_token1] = ACTIONS(373), - [aux_sym_preproc_def_token1] = ACTIONS(375), - [aux_sym_preproc_if_token1] = ACTIONS(377), - [aux_sym_preproc_ifdef_token1] = ACTIONS(379), - [aux_sym_preproc_ifdef_token2] = ACTIONS(379), - [sym_preproc_directive] = ACTIONS(381), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(383), - [anon_sym___extension__] = ACTIONS(385), - [anon_sym_typedef] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym___read_mostly] = ACTIONS(37), - [anon_sym___must_hold] = ACTIONS(33), - [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___noreturn] = ACTIONS(37), - [anon_sym___cold] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(39), - [anon_sym___declspec] = ACTIONS(41), - [anon_sym___init] = ACTIONS(43), - [anon_sym___exit] = ACTIONS(43), - [anon_sym___cdecl] = ACTIONS(45), - [anon_sym___clrcall] = ACTIONS(45), - [anon_sym___stdcall] = ACTIONS(45), - [anon_sym___fastcall] = ACTIONS(45), - [anon_sym___thiscall] = ACTIONS(45), - [anon_sym___vectorcall] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_RBRACE] = ACTIONS(567), - [anon_sym_signed] = ACTIONS(49), - [anon_sym_unsigned] = ACTIONS(49), - [anon_sym_long] = ACTIONS(49), - [anon_sym_short] = ACTIONS(49), - [anon_sym_static] = ACTIONS(51), - [anon_sym_auto] = ACTIONS(51), - [anon_sym_register] = ACTIONS(51), - [anon_sym_inline] = ACTIONS(51), - [anon_sym___inline] = ACTIONS(51), - [anon_sym___inline__] = ACTIONS(51), - [anon_sym___forceinline] = ACTIONS(51), - [anon_sym_thread_local] = ACTIONS(51), - [anon_sym___thread] = ACTIONS(51), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [anon_sym_if] = ACTIONS(395), - [anon_sym_switch] = ACTIONS(397), - [anon_sym_case] = ACTIONS(399), - [anon_sym_default] = ACTIONS(401), - [anon_sym_while] = ACTIONS(403), - [anon_sym_do] = ACTIONS(405), - [anon_sym_for] = ACTIONS(407), - [anon_sym_return] = ACTIONS(409), - [anon_sym_break] = ACTIONS(411), - [anon_sym_continue] = ACTIONS(413), - [anon_sym_goto] = ACTIONS(415), - [anon_sym___try] = ACTIONS(417), - [anon_sym___leave] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [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), + [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), + [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___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), + [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(393), + [anon_sym_RBRACE] = ACTIONS(569), + [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(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), }, [39] = { - [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(312), - [sym_declaration] = STATE(40), - [sym_type_definition] = STATE(40), - [sym__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1234), - [sym_linkage_specification] = STATE(40), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(468), - [sym_ms_declspec_modifier] = STATE(805), - [sym_macro_modifier] = STATE(788), - [sym_ms_call_modifier] = STATE(627), - [sym_compound_statement] = STATE(290), - [sym_storage_class_specifier] = STATE(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(899), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [sym_attributed_statement] = STATE(306), - [sym_statement] = STATE(40), - [sym_labeled_statement] = STATE(290), - [sym_expression_statement] = STATE(290), - [sym_if_statement] = STATE(290), - [sym_switch_statement] = STATE(290), - [sym_case_statement] = STATE(290), - [sym_while_statement] = STATE(290), - [sym_do_statement] = STATE(290), - [sym_for_statement] = STATE(290), - [sym_return_statement] = STATE(290), - [sym_break_statement] = STATE(290), - [sym_continue_statement] = STATE(290), - [sym_goto_statement] = STATE(290), - [sym_seh_try_statement] = STATE(290), - [sym_seh_leave_statement] = STATE(290), - [sym_expression] = STATE(1167), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2207), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [sym__empty_declaration] = STATE(40), - [sym_macro_type_specifier] = STATE(873), - [aux_sym_preproc_if_repeat1] = STATE(40), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_attributed_declarator_repeat1] = STATE(428), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), - [sym_identifier] = ACTIONS(371), - [aux_sym_preproc_include_token1] = ACTIONS(373), - [aux_sym_preproc_def_token1] = ACTIONS(375), - [aux_sym_preproc_if_token1] = ACTIONS(377), - [aux_sym_preproc_ifdef_token1] = ACTIONS(379), - [aux_sym_preproc_ifdef_token2] = ACTIONS(379), - [sym_preproc_directive] = ACTIONS(381), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(383), - [anon_sym___extension__] = ACTIONS(385), - [anon_sym_typedef] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym___read_mostly] = ACTIONS(37), - [anon_sym___must_hold] = ACTIONS(33), - [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___noreturn] = ACTIONS(37), - [anon_sym___cold] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(39), - [anon_sym___declspec] = ACTIONS(41), - [anon_sym___init] = ACTIONS(43), - [anon_sym___exit] = ACTIONS(43), - [anon_sym___cdecl] = ACTIONS(45), - [anon_sym___clrcall] = ACTIONS(45), - [anon_sym___stdcall] = ACTIONS(45), - [anon_sym___fastcall] = ACTIONS(45), - [anon_sym___thiscall] = ACTIONS(45), - [anon_sym___vectorcall] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_RBRACE] = ACTIONS(569), - [anon_sym_signed] = ACTIONS(49), - [anon_sym_unsigned] = ACTIONS(49), - [anon_sym_long] = ACTIONS(49), - [anon_sym_short] = ACTIONS(49), - [anon_sym_static] = ACTIONS(51), - [anon_sym_auto] = ACTIONS(51), - [anon_sym_register] = ACTIONS(51), - [anon_sym_inline] = ACTIONS(51), - [anon_sym___inline] = ACTIONS(51), - [anon_sym___inline__] = ACTIONS(51), - [anon_sym___forceinline] = ACTIONS(51), - [anon_sym_thread_local] = ACTIONS(51), - [anon_sym___thread] = ACTIONS(51), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [anon_sym_if] = ACTIONS(395), - [anon_sym_switch] = ACTIONS(397), - [anon_sym_case] = ACTIONS(399), - [anon_sym_default] = ACTIONS(401), - [anon_sym_while] = ACTIONS(403), - [anon_sym_do] = ACTIONS(405), - [anon_sym_for] = ACTIONS(407), - [anon_sym_return] = ACTIONS(409), - [anon_sym_break] = ACTIONS(411), - [anon_sym_continue] = ACTIONS(413), - [anon_sym_goto] = ACTIONS(415), - [anon_sym___try] = ACTIONS(417), - [anon_sym___leave] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [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), + [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___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), + [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(393), + [anon_sym_RBRACE] = ACTIONS(571), + [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(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), }, [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(312), - [sym_declaration] = STATE(40), - [sym_type_definition] = STATE(40), - [sym__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1234), - [sym_linkage_specification] = STATE(40), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(468), - [sym_ms_declspec_modifier] = STATE(805), - [sym_macro_modifier] = STATE(788), - [sym_ms_call_modifier] = STATE(627), - [sym_compound_statement] = STATE(290), - [sym_storage_class_specifier] = STATE(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(899), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [sym_attributed_statement] = STATE(306), - [sym_statement] = STATE(40), - [sym_labeled_statement] = STATE(290), - [sym_expression_statement] = STATE(290), - [sym_if_statement] = STATE(290), - [sym_switch_statement] = STATE(290), - [sym_case_statement] = STATE(290), - [sym_while_statement] = STATE(290), - [sym_do_statement] = STATE(290), - [sym_for_statement] = STATE(290), - [sym_return_statement] = STATE(290), - [sym_break_statement] = STATE(290), - [sym_continue_statement] = STATE(290), - [sym_goto_statement] = STATE(290), - [sym_seh_try_statement] = STATE(290), - [sym_seh_leave_statement] = STATE(290), - [sym_expression] = STATE(1167), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2207), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [sym__empty_declaration] = STATE(40), - [sym_macro_type_specifier] = STATE(873), - [aux_sym_preproc_if_repeat1] = STATE(40), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_attributed_declarator_repeat1] = STATE(428), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), - [sym_identifier] = ACTIONS(571), - [aux_sym_preproc_include_token1] = ACTIONS(574), - [aux_sym_preproc_def_token1] = ACTIONS(577), - [aux_sym_preproc_if_token1] = ACTIONS(580), - [aux_sym_preproc_ifdef_token1] = ACTIONS(583), - [aux_sym_preproc_ifdef_token2] = ACTIONS(583), - [sym_preproc_directive] = ACTIONS(586), - [anon_sym_LPAREN2] = ACTIONS(227), - [anon_sym_BANG] = ACTIONS(230), - [anon_sym_TILDE] = ACTIONS(230), - [anon_sym_DASH] = ACTIONS(233), - [anon_sym_PLUS] = ACTIONS(233), - [anon_sym_STAR] = ACTIONS(236), - [anon_sym_AMP] = ACTIONS(236), - [anon_sym_SEMI] = ACTIONS(589), - [anon_sym___extension__] = ACTIONS(592), - [anon_sym_typedef] = ACTIONS(595), - [anon_sym_extern] = ACTIONS(598), - [anon_sym___attribute__] = ACTIONS(251), - [anon_sym___scanf] = ACTIONS(254), - [anon_sym___printf] = ACTIONS(254), - [anon_sym___read_mostly] = ACTIONS(257), - [anon_sym___must_hold] = ACTIONS(251), - [anon_sym___ro_after_init] = ACTIONS(257), - [anon_sym___noreturn] = ACTIONS(257), - [anon_sym___cold] = ACTIONS(257), - [anon_sym_LBRACK_LBRACK] = ACTIONS(260), - [anon_sym___declspec] = ACTIONS(263), - [anon_sym___init] = ACTIONS(266), - [anon_sym___exit] = ACTIONS(266), - [anon_sym___cdecl] = ACTIONS(269), - [anon_sym___clrcall] = ACTIONS(269), - [anon_sym___stdcall] = ACTIONS(269), - [anon_sym___fastcall] = ACTIONS(269), - [anon_sym___thiscall] = ACTIONS(269), - [anon_sym___vectorcall] = ACTIONS(269), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_RBRACE] = ACTIONS(604), - [anon_sym_signed] = ACTIONS(275), - [anon_sym_unsigned] = ACTIONS(275), - [anon_sym_long] = ACTIONS(275), - [anon_sym_short] = ACTIONS(275), - [anon_sym_static] = ACTIONS(278), - [anon_sym_auto] = ACTIONS(278), - [anon_sym_register] = ACTIONS(278), - [anon_sym_inline] = ACTIONS(278), - [anon_sym___inline] = ACTIONS(278), - [anon_sym___inline__] = ACTIONS(278), - [anon_sym___forceinline] = ACTIONS(278), - [anon_sym_thread_local] = ACTIONS(278), - [anon_sym___thread] = ACTIONS(278), - [anon_sym_const] = ACTIONS(281), - [anon_sym_constexpr] = ACTIONS(281), - [anon_sym_volatile] = ACTIONS(281), - [anon_sym_restrict] = ACTIONS(281), - [anon_sym___restrict__] = ACTIONS(281), - [anon_sym__Atomic] = ACTIONS(281), - [anon_sym__Noreturn] = ACTIONS(281), - [anon_sym_noreturn] = ACTIONS(281), - [anon_sym_alignas] = ACTIONS(284), - [anon_sym__Alignas] = ACTIONS(284), - [sym_primitive_type] = ACTIONS(287), - [anon_sym_enum] = ACTIONS(290), - [anon_sym_struct] = ACTIONS(293), - [anon_sym_union] = ACTIONS(296), - [anon_sym_if] = ACTIONS(606), - [anon_sym_switch] = ACTIONS(609), - [anon_sym_case] = ACTIONS(612), - [anon_sym_default] = ACTIONS(615), - [anon_sym_while] = ACTIONS(618), - [anon_sym_do] = ACTIONS(621), - [anon_sym_for] = ACTIONS(624), - [anon_sym_return] = ACTIONS(627), - [anon_sym_break] = ACTIONS(630), - [anon_sym_continue] = ACTIONS(633), - [anon_sym_goto] = ACTIONS(636), - [anon_sym___try] = ACTIONS(639), - [anon_sym___leave] = ACTIONS(642), - [anon_sym_DASH_DASH] = ACTIONS(338), - [anon_sym_PLUS_PLUS] = ACTIONS(338), - [anon_sym_sizeof] = ACTIONS(341), - [anon_sym___alignof__] = ACTIONS(344), - [anon_sym___alignof] = ACTIONS(344), - [anon_sym__alignof] = ACTIONS(344), - [anon_sym_alignof] = ACTIONS(344), - [anon_sym__Alignof] = ACTIONS(344), - [anon_sym_offsetof] = ACTIONS(347), - [anon_sym__Generic] = ACTIONS(350), - [anon_sym_asm] = ACTIONS(353), - [anon_sym___asm__] = ACTIONS(353), - [sym_number_literal] = ACTIONS(356), - [anon_sym_L_SQUOTE] = ACTIONS(359), - [anon_sym_u_SQUOTE] = ACTIONS(359), - [anon_sym_U_SQUOTE] = ACTIONS(359), - [anon_sym_u8_SQUOTE] = ACTIONS(359), - [anon_sym_SQUOTE] = ACTIONS(359), - [anon_sym_L_DQUOTE] = ACTIONS(362), - [anon_sym_u_DQUOTE] = ACTIONS(362), - [anon_sym_U_DQUOTE] = ACTIONS(362), - [anon_sym_u8_DQUOTE] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(362), - [sym_true] = ACTIONS(365), - [sym_false] = ACTIONS(365), - [anon_sym_NULL] = ACTIONS(368), - [anon_sym_nullptr] = ACTIONS(368), - [sym_comment] = ACTIONS(3), + [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), + [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), + [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___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), + [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(393), + [anon_sym_RBRACE] = ACTIONS(573), + [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(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), }, [41] = { - [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(312), - [sym_declaration] = STATE(40), - [sym_type_definition] = STATE(40), - [sym__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1234), - [sym_linkage_specification] = STATE(40), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(468), - [sym_ms_declspec_modifier] = STATE(805), - [sym_macro_modifier] = STATE(788), - [sym_ms_call_modifier] = STATE(627), - [sym_compound_statement] = STATE(290), - [sym_storage_class_specifier] = STATE(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(899), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [sym_attributed_statement] = STATE(306), - [sym_statement] = STATE(40), - [sym_labeled_statement] = STATE(290), - [sym_expression_statement] = STATE(290), - [sym_if_statement] = STATE(290), - [sym_switch_statement] = STATE(290), - [sym_case_statement] = STATE(290), - [sym_while_statement] = STATE(290), - [sym_do_statement] = STATE(290), - [sym_for_statement] = STATE(290), - [sym_return_statement] = STATE(290), - [sym_break_statement] = STATE(290), - [sym_continue_statement] = STATE(290), - [sym_goto_statement] = STATE(290), - [sym_seh_try_statement] = STATE(290), - [sym_seh_leave_statement] = STATE(290), - [sym_expression] = STATE(1167), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2207), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [sym__empty_declaration] = STATE(40), - [sym_macro_type_specifier] = STATE(873), - [aux_sym_preproc_if_repeat1] = STATE(40), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_attributed_declarator_repeat1] = STATE(428), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), - [sym_identifier] = ACTIONS(371), - [aux_sym_preproc_include_token1] = ACTIONS(373), - [aux_sym_preproc_def_token1] = ACTIONS(375), - [aux_sym_preproc_if_token1] = ACTIONS(377), - [aux_sym_preproc_ifdef_token1] = ACTIONS(379), - [aux_sym_preproc_ifdef_token2] = ACTIONS(379), - [sym_preproc_directive] = ACTIONS(381), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(383), - [anon_sym___extension__] = ACTIONS(385), - [anon_sym_typedef] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym___read_mostly] = ACTIONS(37), - [anon_sym___must_hold] = ACTIONS(33), - [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___noreturn] = ACTIONS(37), - [anon_sym___cold] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(39), - [anon_sym___declspec] = ACTIONS(41), - [anon_sym___init] = ACTIONS(43), - [anon_sym___exit] = ACTIONS(43), - [anon_sym___cdecl] = ACTIONS(45), - [anon_sym___clrcall] = ACTIONS(45), - [anon_sym___stdcall] = ACTIONS(45), - [anon_sym___fastcall] = ACTIONS(45), - [anon_sym___thiscall] = ACTIONS(45), - [anon_sym___vectorcall] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_RBRACE] = ACTIONS(645), - [anon_sym_signed] = ACTIONS(49), - [anon_sym_unsigned] = ACTIONS(49), - [anon_sym_long] = ACTIONS(49), - [anon_sym_short] = ACTIONS(49), - [anon_sym_static] = ACTIONS(51), - [anon_sym_auto] = ACTIONS(51), - [anon_sym_register] = ACTIONS(51), - [anon_sym_inline] = ACTIONS(51), - [anon_sym___inline] = ACTIONS(51), - [anon_sym___inline__] = ACTIONS(51), - [anon_sym___forceinline] = ACTIONS(51), - [anon_sym_thread_local] = ACTIONS(51), - [anon_sym___thread] = ACTIONS(51), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [anon_sym_if] = ACTIONS(395), - [anon_sym_switch] = ACTIONS(397), - [anon_sym_case] = ACTIONS(399), - [anon_sym_default] = ACTIONS(401), - [anon_sym_while] = ACTIONS(403), - [anon_sym_do] = ACTIONS(405), - [anon_sym_for] = ACTIONS(407), - [anon_sym_return] = ACTIONS(409), - [anon_sym_break] = ACTIONS(411), - [anon_sym_continue] = ACTIONS(413), - [anon_sym_goto] = ACTIONS(415), - [anon_sym___try] = ACTIONS(417), - [anon_sym___leave] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - }, - [42] = { [sym__block_item] = STATE(41), [sym_preproc_include] = STATE(41), [sym_preproc_def] = STATE(41), @@ -20113,725 +24475,1131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_if] = STATE(41), [sym_preproc_ifdef] = STATE(41), [sym_function_definition] = STATE(41), - [sym__old_style_function_definition] = STATE(312), + [sym__old_style_function_definition] = STATE(353), [sym_declaration] = STATE(41), [sym_type_definition] = STATE(41), - [sym__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1234), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1700), [sym_linkage_specification] = STATE(41), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(468), - [sym_ms_declspec_modifier] = STATE(805), - [sym_macro_modifier] = STATE(788), - [sym_ms_call_modifier] = STATE(627), - [sym_compound_statement] = STATE(290), - [sym_storage_class_specifier] = STATE(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(899), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [sym_attributed_statement] = STATE(306), + [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(290), - [sym_expression_statement] = STATE(290), - [sym_if_statement] = STATE(290), - [sym_switch_statement] = STATE(290), - [sym_case_statement] = STATE(290), - [sym_while_statement] = STATE(290), - [sym_do_statement] = STATE(290), - [sym_for_statement] = STATE(290), - [sym_return_statement] = STATE(290), - [sym_break_statement] = STATE(290), - [sym_continue_statement] = STATE(290), - [sym_goto_statement] = STATE(290), - [sym_seh_try_statement] = STATE(290), - [sym_seh_leave_statement] = STATE(290), - [sym_expression] = STATE(1167), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2207), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), + [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(873), + [sym_macro_type_specifier] = STATE(1122), [aux_sym_preproc_if_repeat1] = STATE(41), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_attributed_declarator_repeat1] = STATE(428), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), - [sym_identifier] = ACTIONS(371), - [aux_sym_preproc_include_token1] = ACTIONS(373), - [aux_sym_preproc_def_token1] = ACTIONS(375), - [aux_sym_preproc_if_token1] = ACTIONS(377), - [aux_sym_preproc_ifdef_token1] = ACTIONS(379), - [aux_sym_preproc_ifdef_token2] = ACTIONS(379), - [sym_preproc_directive] = ACTIONS(381), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(383), - [anon_sym___extension__] = ACTIONS(385), - [anon_sym_typedef] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym___read_mostly] = ACTIONS(37), - [anon_sym___must_hold] = ACTIONS(33), - [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___noreturn] = ACTIONS(37), - [anon_sym___cold] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(39), - [anon_sym___declspec] = ACTIONS(41), - [anon_sym___init] = ACTIONS(43), - [anon_sym___exit] = ACTIONS(43), - [anon_sym___cdecl] = ACTIONS(45), - [anon_sym___clrcall] = ACTIONS(45), - [anon_sym___stdcall] = ACTIONS(45), - [anon_sym___fastcall] = ACTIONS(45), - [anon_sym___thiscall] = ACTIONS(45), - [anon_sym___vectorcall] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_RBRACE] = ACTIONS(647), - [anon_sym_signed] = ACTIONS(49), - [anon_sym_unsigned] = ACTIONS(49), - [anon_sym_long] = ACTIONS(49), - [anon_sym_short] = ACTIONS(49), - [anon_sym_static] = ACTIONS(51), - [anon_sym_auto] = ACTIONS(51), - [anon_sym_register] = ACTIONS(51), - [anon_sym_inline] = ACTIONS(51), - [anon_sym___inline] = ACTIONS(51), - [anon_sym___inline__] = ACTIONS(51), - [anon_sym___forceinline] = ACTIONS(51), - [anon_sym_thread_local] = ACTIONS(51), - [anon_sym___thread] = ACTIONS(51), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [anon_sym_if] = ACTIONS(395), - [anon_sym_switch] = ACTIONS(397), - [anon_sym_case] = ACTIONS(399), - [anon_sym_default] = ACTIONS(401), - [anon_sym_while] = ACTIONS(403), - [anon_sym_do] = ACTIONS(405), - [anon_sym_for] = ACTIONS(407), - [anon_sym_return] = ACTIONS(409), - [anon_sym_break] = ACTIONS(411), - [anon_sym_continue] = ACTIONS(413), - [anon_sym_goto] = ACTIONS(415), - [anon_sym___try] = ACTIONS(417), - [anon_sym___leave] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [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), + [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(593), + [anon_sym___extension__] = ACTIONS(596), + [anon_sym_typedef] = ACTIONS(599), + [anon_sym_extern] = ACTIONS(602), + [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(605), + [anon_sym_RBRACE] = ACTIONS(608), + [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(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_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), + }, + [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), + [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), + [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___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), + [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(393), + [anon_sym_RBRACE] = ACTIONS(649), + [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(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), }, [43] = { - [sym__top_level_item] = STATE(43), - [sym_preproc_include] = STATE(43), - [sym_preproc_def] = STATE(43), - [sym_preproc_function_def] = STATE(43), - [sym_preproc_call] = STATE(43), - [sym_preproc_if] = STATE(43), - [sym_preproc_ifdef] = STATE(43), - [sym_function_definition] = STATE(43), - [sym__old_style_function_definition] = STATE(399), - [sym_declaration] = STATE(43), - [sym_type_definition] = STATE(43), - [sym__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1231), - [sym_linkage_specification] = STATE(43), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(468), - [sym_ms_declspec_modifier] = STATE(805), - [sym_macro_modifier] = STATE(794), - [sym_ms_call_modifier] = STATE(620), - [sym_compound_statement] = STATE(43), - [sym_storage_class_specifier] = STATE(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(901), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [sym_attributed_statement] = STATE(401), - [sym__top_level_statement] = STATE(43), - [sym_labeled_statement] = STATE(43), - [sym__top_level_expression_statement] = STATE(43), - [sym_if_statement] = STATE(43), - [sym_switch_statement] = STATE(43), - [sym_case_statement] = STATE(43), - [sym_while_statement] = STATE(43), - [sym_do_statement] = STATE(43), - [sym_for_statement] = STATE(43), - [sym_return_statement] = STATE(43), - [sym_break_statement] = STATE(43), - [sym_continue_statement] = STATE(43), - [sym_goto_statement] = STATE(43), - [sym_expression] = STATE(1225), - [sym__string] = STATE(1223), - [sym_conditional_expression] = STATE(1223), - [sym_assignment_expression] = STATE(1223), - [sym_pointer_expression] = STATE(1069), - [sym_unary_expression] = STATE(1223), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(1223), - [sym_cast_expression] = STATE(1223), - [sym_sizeof_expression] = STATE(1223), - [sym_alignof_expression] = STATE(1223), - [sym_offsetof_expression] = STATE(1223), - [sym_generic_expression] = STATE(1223), - [sym_subscript_expression] = STATE(1069), - [sym_call_expression] = STATE(1069), - [sym_gnu_asm_expression] = STATE(1223), - [sym_field_expression] = STATE(1069), - [sym_compound_literal_expression] = STATE(1223), - [sym_parenthesized_expression] = STATE(1069), - [sym_char_literal] = STATE(1223), - [sym_concatenated_string] = STATE(1223), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(1223), - [sym__empty_declaration] = STATE(43), - [sym_macro_type_specifier] = STATE(873), - [aux_sym_translation_unit_repeat1] = STATE(43), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_attributed_declarator_repeat1] = STATE(421), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), - [ts_builtin_sym_end] = ACTIONS(649), - [sym_identifier] = ACTIONS(651), - [aux_sym_preproc_include_token1] = ACTIONS(654), - [aux_sym_preproc_def_token1] = ACTIONS(657), - [aux_sym_preproc_if_token1] = ACTIONS(660), - [aux_sym_preproc_ifdef_token1] = ACTIONS(663), - [aux_sym_preproc_ifdef_token2] = ACTIONS(663), - [sym_preproc_directive] = ACTIONS(666), - [anon_sym_LPAREN2] = ACTIONS(669), - [anon_sym_BANG] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(675), - [anon_sym_STAR] = ACTIONS(678), - [anon_sym_AMP] = ACTIONS(678), - [anon_sym___extension__] = ACTIONS(681), - [anon_sym_typedef] = ACTIONS(684), - [anon_sym_extern] = ACTIONS(687), - [anon_sym___attribute__] = ACTIONS(690), - [anon_sym___scanf] = ACTIONS(693), - [anon_sym___printf] = ACTIONS(693), - [anon_sym___read_mostly] = ACTIONS(696), - [anon_sym___must_hold] = ACTIONS(690), - [anon_sym___ro_after_init] = ACTIONS(696), - [anon_sym___noreturn] = ACTIONS(696), - [anon_sym___cold] = ACTIONS(696), - [anon_sym_LBRACK_LBRACK] = ACTIONS(699), - [anon_sym___declspec] = ACTIONS(702), - [anon_sym___init] = ACTIONS(705), - [anon_sym___exit] = ACTIONS(705), - [anon_sym___cdecl] = ACTIONS(708), - [anon_sym___clrcall] = ACTIONS(708), - [anon_sym___stdcall] = ACTIONS(708), - [anon_sym___fastcall] = ACTIONS(708), - [anon_sym___thiscall] = ACTIONS(708), - [anon_sym___vectorcall] = ACTIONS(708), - [anon_sym_LBRACE] = ACTIONS(711), - [anon_sym_signed] = ACTIONS(714), - [anon_sym_unsigned] = ACTIONS(714), - [anon_sym_long] = ACTIONS(714), - [anon_sym_short] = ACTIONS(714), - [anon_sym_static] = ACTIONS(717), - [anon_sym_auto] = ACTIONS(717), - [anon_sym_register] = ACTIONS(717), - [anon_sym_inline] = ACTIONS(717), - [anon_sym___inline] = ACTIONS(717), - [anon_sym___inline__] = ACTIONS(717), - [anon_sym___forceinline] = ACTIONS(717), - [anon_sym_thread_local] = ACTIONS(717), - [anon_sym___thread] = ACTIONS(717), - [anon_sym_const] = ACTIONS(720), - [anon_sym_constexpr] = ACTIONS(720), - [anon_sym_volatile] = ACTIONS(720), - [anon_sym_restrict] = ACTIONS(720), - [anon_sym___restrict__] = ACTIONS(720), - [anon_sym__Atomic] = ACTIONS(720), - [anon_sym__Noreturn] = ACTIONS(720), - [anon_sym_noreturn] = ACTIONS(720), - [anon_sym_alignas] = ACTIONS(723), - [anon_sym__Alignas] = ACTIONS(723), - [sym_primitive_type] = ACTIONS(726), - [anon_sym_enum] = ACTIONS(729), - [anon_sym_struct] = ACTIONS(732), - [anon_sym_union] = ACTIONS(735), - [anon_sym_if] = ACTIONS(738), - [anon_sym_switch] = ACTIONS(741), - [anon_sym_case] = ACTIONS(744), - [anon_sym_default] = ACTIONS(747), - [anon_sym_while] = ACTIONS(750), - [anon_sym_do] = ACTIONS(753), - [anon_sym_for] = ACTIONS(756), - [anon_sym_return] = ACTIONS(759), - [anon_sym_break] = ACTIONS(762), - [anon_sym_continue] = ACTIONS(765), - [anon_sym_goto] = ACTIONS(768), - [anon_sym_DASH_DASH] = ACTIONS(771), - [anon_sym_PLUS_PLUS] = ACTIONS(771), - [anon_sym_sizeof] = ACTIONS(774), - [anon_sym___alignof__] = ACTIONS(777), - [anon_sym___alignof] = ACTIONS(777), - [anon_sym__alignof] = ACTIONS(777), - [anon_sym_alignof] = ACTIONS(777), - [anon_sym__Alignof] = ACTIONS(777), - [anon_sym_offsetof] = ACTIONS(780), - [anon_sym__Generic] = ACTIONS(783), - [anon_sym_asm] = ACTIONS(786), - [anon_sym___asm__] = ACTIONS(786), - [sym_number_literal] = ACTIONS(789), - [anon_sym_L_SQUOTE] = ACTIONS(792), - [anon_sym_u_SQUOTE] = ACTIONS(792), - [anon_sym_U_SQUOTE] = ACTIONS(792), - [anon_sym_u8_SQUOTE] = ACTIONS(792), - [anon_sym_SQUOTE] = ACTIONS(792), - [anon_sym_L_DQUOTE] = ACTIONS(795), - [anon_sym_u_DQUOTE] = ACTIONS(795), - [anon_sym_U_DQUOTE] = ACTIONS(795), - [anon_sym_u8_DQUOTE] = ACTIONS(795), - [anon_sym_DQUOTE] = ACTIONS(795), - [sym_true] = ACTIONS(798), - [sym_false] = ACTIONS(798), - [anon_sym_NULL] = ACTIONS(801), - [anon_sym_nullptr] = ACTIONS(801), - [sym_comment] = ACTIONS(3), + [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), + [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), + [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___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), + [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(393), + [anon_sym_RBRACE] = ACTIONS(651), + [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(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), }, [44] = { - [sym__top_level_item] = STATE(43), - [sym_preproc_include] = STATE(43), - [sym_preproc_def] = STATE(43), - [sym_preproc_function_def] = STATE(43), - [sym_preproc_call] = STATE(43), - [sym_preproc_if] = STATE(43), - [sym_preproc_ifdef] = STATE(43), - [sym_function_definition] = STATE(43), - [sym__old_style_function_definition] = STATE(399), - [sym_declaration] = STATE(43), - [sym_type_definition] = STATE(43), - [sym__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1231), - [sym_linkage_specification] = STATE(43), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(468), - [sym_ms_declspec_modifier] = STATE(805), - [sym_macro_modifier] = STATE(794), - [sym_ms_call_modifier] = STATE(620), - [sym_compound_statement] = STATE(43), - [sym_storage_class_specifier] = STATE(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(901), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [sym_attributed_statement] = STATE(401), - [sym__top_level_statement] = STATE(43), - [sym_labeled_statement] = STATE(43), - [sym__top_level_expression_statement] = STATE(43), - [sym_if_statement] = STATE(43), - [sym_switch_statement] = STATE(43), - [sym_case_statement] = STATE(43), - [sym_while_statement] = STATE(43), - [sym_do_statement] = STATE(43), - [sym_for_statement] = STATE(43), - [sym_return_statement] = STATE(43), - [sym_break_statement] = STATE(43), - [sym_continue_statement] = STATE(43), - [sym_goto_statement] = STATE(43), - [sym_expression] = STATE(1225), - [sym__string] = STATE(1223), - [sym_conditional_expression] = STATE(1223), - [sym_assignment_expression] = STATE(1223), - [sym_pointer_expression] = STATE(1069), - [sym_unary_expression] = STATE(1223), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(1223), - [sym_cast_expression] = STATE(1223), - [sym_sizeof_expression] = STATE(1223), - [sym_alignof_expression] = STATE(1223), - [sym_offsetof_expression] = STATE(1223), - [sym_generic_expression] = STATE(1223), - [sym_subscript_expression] = STATE(1069), - [sym_call_expression] = STATE(1069), - [sym_gnu_asm_expression] = STATE(1223), - [sym_field_expression] = STATE(1069), - [sym_compound_literal_expression] = STATE(1223), - [sym_parenthesized_expression] = STATE(1069), - [sym_char_literal] = STATE(1223), - [sym_concatenated_string] = STATE(1223), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(1223), - [sym__empty_declaration] = STATE(43), - [sym_macro_type_specifier] = STATE(873), - [aux_sym_translation_unit_repeat1] = STATE(43), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_attributed_declarator_repeat1] = STATE(421), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), - [ts_builtin_sym_end] = ACTIONS(804), - [sym_identifier] = ACTIONS(7), - [aux_sym_preproc_include_token1] = ACTIONS(9), - [aux_sym_preproc_def_token1] = ACTIONS(11), - [aux_sym_preproc_if_token1] = ACTIONS(13), - [aux_sym_preproc_ifdef_token1] = ACTIONS(15), - [aux_sym_preproc_ifdef_token2] = ACTIONS(15), - [sym_preproc_directive] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym___extension__] = ACTIONS(27), - [anon_sym_typedef] = ACTIONS(29), - [anon_sym_extern] = ACTIONS(31), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym___read_mostly] = ACTIONS(37), - [anon_sym___must_hold] = ACTIONS(33), - [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___noreturn] = ACTIONS(37), - [anon_sym___cold] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(39), - [anon_sym___declspec] = ACTIONS(41), - [anon_sym___init] = ACTIONS(43), - [anon_sym___exit] = ACTIONS(43), - [anon_sym___cdecl] = ACTIONS(45), - [anon_sym___clrcall] = ACTIONS(45), - [anon_sym___stdcall] = ACTIONS(45), - [anon_sym___fastcall] = ACTIONS(45), - [anon_sym___thiscall] = ACTIONS(45), - [anon_sym___vectorcall] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(49), - [anon_sym_unsigned] = ACTIONS(49), - [anon_sym_long] = ACTIONS(49), - [anon_sym_short] = ACTIONS(49), - [anon_sym_static] = ACTIONS(51), - [anon_sym_auto] = ACTIONS(51), - [anon_sym_register] = ACTIONS(51), - [anon_sym_inline] = ACTIONS(51), - [anon_sym___inline] = ACTIONS(51), - [anon_sym___inline__] = ACTIONS(51), - [anon_sym___forceinline] = ACTIONS(51), - [anon_sym_thread_local] = ACTIONS(51), - [anon_sym___thread] = ACTIONS(51), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_switch] = ACTIONS(67), - [anon_sym_case] = ACTIONS(69), - [anon_sym_default] = ACTIONS(71), - [anon_sym_while] = ACTIONS(73), - [anon_sym_do] = ACTIONS(75), - [anon_sym_for] = ACTIONS(77), - [anon_sym_return] = ACTIONS(79), - [anon_sym_break] = ACTIONS(81), - [anon_sym_continue] = ACTIONS(83), - [anon_sym_goto] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [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), + [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___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), + [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(393), + [anon_sym_RBRACE] = ACTIONS(653), + [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(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), }, [45] = { - [sym_declaration] = STATE(49), - [sym_type_definition] = STATE(49), - [sym__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1249), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(468), - [sym_ms_declspec_modifier] = STATE(805), - [sym_compound_statement] = STATE(49), - [sym_storage_class_specifier] = STATE(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(807), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [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(1157), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2232), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [sym_macro_type_specifier] = STATE(873), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_attributed_declarator_repeat1] = STATE(439), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), - [aux_sym_case_statement_repeat1] = STATE(49), - [sym_identifier] = ACTIONS(806), - [aux_sym_preproc_include_token1] = ACTIONS(808), - [aux_sym_preproc_def_token1] = ACTIONS(808), - [aux_sym_preproc_if_token1] = ACTIONS(808), - [aux_sym_preproc_if_token2] = ACTIONS(808), - [aux_sym_preproc_ifdef_token1] = ACTIONS(808), - [aux_sym_preproc_ifdef_token2] = ACTIONS(808), - [aux_sym_preproc_else_token1] = ACTIONS(808), - [aux_sym_preproc_elif_token1] = ACTIONS(808), - [aux_sym_preproc_elifdef_token1] = ACTIONS(808), - [aux_sym_preproc_elifdef_token2] = ACTIONS(808), - [sym_preproc_directive] = ACTIONS(808), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(129), - [anon_sym___extension__] = ACTIONS(131), - [anon_sym_typedef] = ACTIONS(133), - [anon_sym_extern] = ACTIONS(51), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym___read_mostly] = ACTIONS(37), - [anon_sym___must_hold] = ACTIONS(33), - [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___noreturn] = ACTIONS(37), - [anon_sym___cold] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(39), - [anon_sym___declspec] = ACTIONS(41), - [anon_sym___init] = ACTIONS(808), - [anon_sym___exit] = ACTIONS(808), - [anon_sym___cdecl] = ACTIONS(808), - [anon_sym___clrcall] = ACTIONS(808), - [anon_sym___stdcall] = ACTIONS(808), - [anon_sym___fastcall] = ACTIONS(808), - [anon_sym___thiscall] = ACTIONS(808), - [anon_sym___vectorcall] = ACTIONS(808), - [anon_sym_LBRACE] = ACTIONS(137), - [anon_sym_signed] = ACTIONS(49), - [anon_sym_unsigned] = ACTIONS(49), - [anon_sym_long] = ACTIONS(49), - [anon_sym_short] = ACTIONS(49), - [anon_sym_static] = ACTIONS(51), - [anon_sym_auto] = ACTIONS(51), - [anon_sym_register] = ACTIONS(51), - [anon_sym_inline] = ACTIONS(51), - [anon_sym___inline] = ACTIONS(51), - [anon_sym___inline__] = ACTIONS(51), - [anon_sym___forceinline] = ACTIONS(51), - [anon_sym_thread_local] = ACTIONS(51), - [anon_sym___thread] = ACTIONS(51), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [anon_sym_if] = ACTIONS(139), - [anon_sym_else] = ACTIONS(808), - [anon_sym_switch] = ACTIONS(141), - [anon_sym_case] = ACTIONS(808), - [anon_sym_default] = ACTIONS(808), - [anon_sym_while] = ACTIONS(147), - [anon_sym_do] = ACTIONS(149), - [anon_sym_for] = ACTIONS(151), - [anon_sym_return] = ACTIONS(153), - [anon_sym_break] = ACTIONS(155), - [anon_sym_continue] = ACTIONS(157), - [anon_sym_goto] = ACTIONS(159), - [anon_sym___try] = ACTIONS(161), - [anon_sym___leave] = ACTIONS(163), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [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), + [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___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), + [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(393), + [anon_sym_RBRACE] = ACTIONS(655), + [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(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), }, [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), + [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), + [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___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), + [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(393), + [anon_sym_RBRACE] = ACTIONS(657), + [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(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), + }, + [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(805), - [sym__declaration_specifiers] = STATE(1249), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(468), - [sym_ms_declspec_modifier] = STATE(805), + [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(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(807), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [sym_attributed_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_expression_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), @@ -20839,510 +25607,680 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(48), [sym_continue_statement] = STATE(48), [sym_goto_statement] = STATE(48), - [sym_seh_try_statement] = STATE(48), - [sym_seh_leave_statement] = STATE(48), - [sym_expression] = STATE(1157), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2232), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [sym_macro_type_specifier] = STATE(873), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_attributed_declarator_repeat1] = STATE(439), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), - [aux_sym_case_statement_repeat1] = STATE(48), - [sym_identifier] = ACTIONS(806), - [aux_sym_preproc_include_token1] = ACTIONS(810), - [aux_sym_preproc_def_token1] = ACTIONS(810), - [aux_sym_preproc_if_token1] = ACTIONS(810), - [aux_sym_preproc_if_token2] = ACTIONS(810), - [aux_sym_preproc_ifdef_token1] = ACTIONS(810), - [aux_sym_preproc_ifdef_token2] = ACTIONS(810), - [aux_sym_preproc_else_token1] = ACTIONS(810), - [aux_sym_preproc_elif_token1] = ACTIONS(810), - [aux_sym_preproc_elifdef_token1] = ACTIONS(810), - [aux_sym_preproc_elifdef_token2] = ACTIONS(810), - [sym_preproc_directive] = ACTIONS(810), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(129), - [anon_sym___extension__] = ACTIONS(131), - [anon_sym_typedef] = ACTIONS(133), - [anon_sym_extern] = ACTIONS(51), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym___read_mostly] = ACTIONS(37), - [anon_sym___must_hold] = ACTIONS(33), - [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___noreturn] = ACTIONS(37), - [anon_sym___cold] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(39), - [anon_sym___declspec] = ACTIONS(41), - [anon_sym___init] = ACTIONS(810), - [anon_sym___exit] = ACTIONS(810), - [anon_sym___cdecl] = ACTIONS(810), - [anon_sym___clrcall] = ACTIONS(810), - [anon_sym___stdcall] = ACTIONS(810), - [anon_sym___fastcall] = ACTIONS(810), - [anon_sym___thiscall] = ACTIONS(810), - [anon_sym___vectorcall] = ACTIONS(810), - [anon_sym_LBRACE] = ACTIONS(137), - [anon_sym_signed] = ACTIONS(49), - [anon_sym_unsigned] = ACTIONS(49), - [anon_sym_long] = ACTIONS(49), - [anon_sym_short] = ACTIONS(49), - [anon_sym_static] = ACTIONS(51), - [anon_sym_auto] = ACTIONS(51), - [anon_sym_register] = ACTIONS(51), - [anon_sym_inline] = ACTIONS(51), - [anon_sym___inline] = ACTIONS(51), - [anon_sym___inline__] = ACTIONS(51), - [anon_sym___forceinline] = ACTIONS(51), - [anon_sym_thread_local] = ACTIONS(51), - [anon_sym___thread] = ACTIONS(51), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [anon_sym_if] = ACTIONS(139), - [anon_sym_else] = ACTIONS(810), - [anon_sym_switch] = ACTIONS(141), - [anon_sym_case] = ACTIONS(810), - [anon_sym_default] = ACTIONS(810), - [anon_sym_while] = ACTIONS(147), - [anon_sym_do] = ACTIONS(149), - [anon_sym_for] = ACTIONS(151), - [anon_sym_return] = ACTIONS(153), - [anon_sym_break] = ACTIONS(155), - [anon_sym_continue] = ACTIONS(157), - [anon_sym_goto] = ACTIONS(159), - [anon_sym___try] = ACTIONS(161), - [anon_sym___leave] = ACTIONS(163), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - }, - [47] = { - [sym_declaration] = STATE(45), - [sym_type_definition] = STATE(45), - [sym__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1249), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(468), - [sym_ms_declspec_modifier] = STATE(805), - [sym_compound_statement] = STATE(45), - [sym_storage_class_specifier] = STATE(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(807), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [sym_attributed_statement] = STATE(45), - [sym_labeled_statement] = STATE(45), - [sym_expression_statement] = STATE(45), - [sym_if_statement] = STATE(45), - [sym_switch_statement] = STATE(45), - [sym_while_statement] = STATE(45), - [sym_do_statement] = STATE(45), - [sym_for_statement] = STATE(45), - [sym_return_statement] = STATE(45), - [sym_break_statement] = STATE(45), - [sym_continue_statement] = STATE(45), - [sym_goto_statement] = STATE(45), - [sym_seh_try_statement] = STATE(45), - [sym_seh_leave_statement] = STATE(45), - [sym_expression] = STATE(1157), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2232), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [sym_macro_type_specifier] = STATE(873), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_attributed_declarator_repeat1] = STATE(439), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), - [aux_sym_case_statement_repeat1] = STATE(45), - [sym_identifier] = ACTIONS(806), - [aux_sym_preproc_include_token1] = ACTIONS(812), - [aux_sym_preproc_def_token1] = ACTIONS(812), - [aux_sym_preproc_if_token1] = ACTIONS(812), - [aux_sym_preproc_if_token2] = ACTIONS(812), - [aux_sym_preproc_ifdef_token1] = ACTIONS(812), - [aux_sym_preproc_ifdef_token2] = ACTIONS(812), - [aux_sym_preproc_else_token1] = ACTIONS(812), - [aux_sym_preproc_elif_token1] = ACTIONS(812), - [aux_sym_preproc_elifdef_token1] = ACTIONS(812), - [aux_sym_preproc_elifdef_token2] = ACTIONS(812), - [sym_preproc_directive] = ACTIONS(812), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(129), - [anon_sym___extension__] = ACTIONS(131), - [anon_sym_typedef] = ACTIONS(133), - [anon_sym_extern] = ACTIONS(51), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym___read_mostly] = ACTIONS(37), - [anon_sym___must_hold] = ACTIONS(33), - [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___noreturn] = ACTIONS(37), - [anon_sym___cold] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(39), - [anon_sym___declspec] = ACTIONS(41), - [anon_sym___init] = ACTIONS(812), - [anon_sym___exit] = ACTIONS(812), - [anon_sym___cdecl] = ACTIONS(812), - [anon_sym___clrcall] = ACTIONS(812), - [anon_sym___stdcall] = ACTIONS(812), - [anon_sym___fastcall] = ACTIONS(812), - [anon_sym___thiscall] = ACTIONS(812), - [anon_sym___vectorcall] = ACTIONS(812), - [anon_sym_LBRACE] = ACTIONS(137), - [anon_sym_signed] = ACTIONS(49), - [anon_sym_unsigned] = ACTIONS(49), - [anon_sym_long] = ACTIONS(49), - [anon_sym_short] = ACTIONS(49), - [anon_sym_static] = ACTIONS(51), - [anon_sym_auto] = ACTIONS(51), - [anon_sym_register] = ACTIONS(51), - [anon_sym_inline] = ACTIONS(51), - [anon_sym___inline] = ACTIONS(51), - [anon_sym___inline__] = ACTIONS(51), - [anon_sym___forceinline] = ACTIONS(51), - [anon_sym_thread_local] = ACTIONS(51), - [anon_sym___thread] = ACTIONS(51), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [anon_sym_if] = ACTIONS(139), - [anon_sym_else] = ACTIONS(812), - [anon_sym_switch] = ACTIONS(141), - [anon_sym_case] = ACTIONS(812), - [anon_sym_default] = ACTIONS(812), - [anon_sym_while] = ACTIONS(147), - [anon_sym_do] = ACTIONS(149), - [anon_sym_for] = ACTIONS(151), - [anon_sym_return] = ACTIONS(153), - [anon_sym_break] = ACTIONS(155), - [anon_sym_continue] = ACTIONS(157), - [anon_sym_goto] = ACTIONS(159), - [anon_sym___try] = ACTIONS(161), - [anon_sym___leave] = ACTIONS(163), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [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(659), + [sym_identifier] = ACTIONS(9), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(11), + [aux_sym_preproc_def_token1] = ACTIONS(13), + [aux_sym_preproc_if_token1] = ACTIONS(15), + [aux_sym_preproc_ifdef_token1] = ACTIONS(17), + [aux_sym_preproc_ifdef_token2] = ACTIONS(17), + [sym_preproc_directive] = ACTIONS(19), + [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(29), + [anon_sym_typedef] = ACTIONS(31), + [anon_sym_extern] = ACTIONS(33), + [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(49), + [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(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_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(101), + [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(107), + [sym_false] = ACTIONS(107), + [anon_sym_NULL] = ACTIONS(109), + [anon_sym_nullptr] = ACTIONS(109), + [sym_comment] = ACTIONS(5), }, [48] = { - [sym_declaration] = STATE(49), - [sym_type_definition] = STATE(49), - [sym__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1249), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(468), - [sym_ms_declspec_modifier] = STATE(805), - [sym_compound_statement] = STATE(49), - [sym_storage_class_specifier] = STATE(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(807), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [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(1157), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2232), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [sym_macro_type_specifier] = STATE(873), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_attributed_declarator_repeat1] = STATE(439), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), - [aux_sym_case_statement_repeat1] = STATE(49), - [sym_identifier] = ACTIONS(806), - [aux_sym_preproc_include_token1] = ACTIONS(814), - [aux_sym_preproc_def_token1] = ACTIONS(814), - [aux_sym_preproc_if_token1] = ACTIONS(814), - [aux_sym_preproc_if_token2] = ACTIONS(814), - [aux_sym_preproc_ifdef_token1] = ACTIONS(814), - [aux_sym_preproc_ifdef_token2] = ACTIONS(814), - [aux_sym_preproc_else_token1] = ACTIONS(814), - [aux_sym_preproc_elif_token1] = ACTIONS(814), - [aux_sym_preproc_elifdef_token1] = ACTIONS(814), - [aux_sym_preproc_elifdef_token2] = ACTIONS(814), - [sym_preproc_directive] = ACTIONS(814), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(129), - [anon_sym___extension__] = ACTIONS(131), - [anon_sym_typedef] = ACTIONS(133), - [anon_sym_extern] = ACTIONS(51), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym___read_mostly] = ACTIONS(37), - [anon_sym___must_hold] = ACTIONS(33), - [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___noreturn] = ACTIONS(37), - [anon_sym___cold] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(39), - [anon_sym___declspec] = ACTIONS(41), - [anon_sym___init] = ACTIONS(814), - [anon_sym___exit] = ACTIONS(814), - [anon_sym___cdecl] = ACTIONS(814), - [anon_sym___clrcall] = ACTIONS(814), - [anon_sym___stdcall] = ACTIONS(814), - [anon_sym___fastcall] = ACTIONS(814), - [anon_sym___thiscall] = ACTIONS(814), - [anon_sym___vectorcall] = ACTIONS(814), - [anon_sym_LBRACE] = ACTIONS(137), - [anon_sym_signed] = ACTIONS(49), - [anon_sym_unsigned] = ACTIONS(49), - [anon_sym_long] = ACTIONS(49), - [anon_sym_short] = ACTIONS(49), - [anon_sym_static] = ACTIONS(51), - [anon_sym_auto] = ACTIONS(51), - [anon_sym_register] = ACTIONS(51), - [anon_sym_inline] = ACTIONS(51), - [anon_sym___inline] = ACTIONS(51), - [anon_sym___inline__] = ACTIONS(51), - [anon_sym___forceinline] = ACTIONS(51), - [anon_sym_thread_local] = ACTIONS(51), - [anon_sym___thread] = ACTIONS(51), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [anon_sym_if] = ACTIONS(139), - [anon_sym_else] = ACTIONS(814), - [anon_sym_switch] = ACTIONS(141), - [anon_sym_case] = ACTIONS(814), - [anon_sym_default] = ACTIONS(814), - [anon_sym_while] = ACTIONS(147), - [anon_sym_do] = ACTIONS(149), - [anon_sym_for] = ACTIONS(151), - [anon_sym_return] = ACTIONS(153), - [anon_sym_break] = ACTIONS(155), - [anon_sym_continue] = ACTIONS(157), - [anon_sym_goto] = ACTIONS(159), - [anon_sym___try] = ACTIONS(161), - [anon_sym___leave] = ACTIONS(163), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [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_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), + [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(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(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_else] = ACTIONS(818), + [anon_sym_switch] = ACTIONS(143), + [anon_sym_case] = ACTIONS(818), + [anon_sym_default] = ACTIONS(818), + [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), + }, + [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(805), - [sym__declaration_specifiers] = STATE(1249), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(468), - [sym_ms_declspec_modifier] = STATE(805), + [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(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(807), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), + [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), @@ -21357,1004 +26295,680 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(49), [sym_seh_try_statement] = STATE(49), [sym_seh_leave_statement] = STATE(49), - [sym_expression] = STATE(1157), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2232), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [sym_macro_type_specifier] = STATE(873), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_attributed_declarator_repeat1] = STATE(439), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [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), - [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(3), - }, - [50] = { - [sym_declaration] = STATE(60), - [sym_type_definition] = STATE(60), - [sym__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1241), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(468), - [sym_ms_declspec_modifier] = STATE(805), - [sym_compound_statement] = STATE(60), - [sym_storage_class_specifier] = STATE(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(807), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [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(1193), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2067), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [sym_macro_type_specifier] = STATE(873), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_attributed_declarator_repeat1] = STATE(415), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), - [aux_sym_case_statement_repeat1] = STATE(60), - [sym_identifier] = ACTIONS(950), - [aux_sym_preproc_include_token1] = ACTIONS(812), - [aux_sym_preproc_def_token1] = ACTIONS(812), - [aux_sym_preproc_if_token1] = ACTIONS(812), - [aux_sym_preproc_if_token2] = ACTIONS(812), - [aux_sym_preproc_ifdef_token1] = ACTIONS(812), - [aux_sym_preproc_ifdef_token2] = ACTIONS(812), - [sym_preproc_directive] = ACTIONS(812), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(447), - [anon_sym___extension__] = ACTIONS(449), - [anon_sym_typedef] = ACTIONS(451), - [anon_sym_extern] = ACTIONS(51), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym___read_mostly] = ACTIONS(37), - [anon_sym___must_hold] = ACTIONS(33), - [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___noreturn] = ACTIONS(37), - [anon_sym___cold] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(39), - [anon_sym___declspec] = ACTIONS(41), - [anon_sym___init] = ACTIONS(812), - [anon_sym___exit] = ACTIONS(812), - [anon_sym___cdecl] = ACTIONS(812), - [anon_sym___clrcall] = ACTIONS(812), - [anon_sym___stdcall] = ACTIONS(812), - [anon_sym___fastcall] = ACTIONS(812), - [anon_sym___thiscall] = ACTIONS(812), - [anon_sym___vectorcall] = ACTIONS(812), - [anon_sym_LBRACE] = ACTIONS(455), - [anon_sym_signed] = ACTIONS(49), - [anon_sym_unsigned] = ACTIONS(49), - [anon_sym_long] = ACTIONS(49), - [anon_sym_short] = ACTIONS(49), - [anon_sym_static] = ACTIONS(51), - [anon_sym_auto] = ACTIONS(51), - [anon_sym_register] = ACTIONS(51), - [anon_sym_inline] = ACTIONS(51), - [anon_sym___inline] = ACTIONS(51), - [anon_sym___inline__] = ACTIONS(51), - [anon_sym___forceinline] = ACTIONS(51), - [anon_sym_thread_local] = ACTIONS(51), - [anon_sym___thread] = ACTIONS(51), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [anon_sym_if] = ACTIONS(457), - [anon_sym_else] = ACTIONS(812), - [anon_sym_switch] = ACTIONS(459), - [anon_sym_case] = ACTIONS(812), - [anon_sym_default] = ACTIONS(812), - [anon_sym_while] = ACTIONS(465), - [anon_sym_do] = ACTIONS(467), - [anon_sym_for] = ACTIONS(469), - [anon_sym_return] = ACTIONS(471), - [anon_sym_break] = ACTIONS(473), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_goto] = ACTIONS(477), - [anon_sym___try] = ACTIONS(479), - [anon_sym___leave] = ACTIONS(481), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - }, - [51] = { - [sym_declaration] = STATE(51), - [sym_type_definition] = STATE(51), - [sym__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1242), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(468), - [sym_ms_declspec_modifier] = STATE(805), - [sym_compound_statement] = STATE(51), - [sym_storage_class_specifier] = STATE(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(807), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [sym_attributed_statement] = STATE(51), - [sym_labeled_statement] = STATE(51), - [sym_expression_statement] = STATE(51), - [sym_if_statement] = STATE(51), - [sym_switch_statement] = STATE(51), - [sym_while_statement] = STATE(51), - [sym_do_statement] = STATE(51), - [sym_for_statement] = STATE(51), - [sym_return_statement] = STATE(51), - [sym_break_statement] = STATE(51), - [sym_continue_statement] = STATE(51), - [sym_goto_statement] = STATE(51), - [sym_seh_try_statement] = STATE(51), - [sym_seh_leave_statement] = STATE(51), - [sym_expression] = STATE(1167), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2207), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [sym_macro_type_specifier] = STATE(873), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_attributed_declarator_repeat1] = STATE(428), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), - [aux_sym_case_statement_repeat1] = STATE(51), - [sym_identifier] = ACTIONS(952), - [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(955), - [anon_sym___extension__] = ACTIONS(958), - [anon_sym_typedef] = ACTIONS(961), - [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(964), - [anon_sym_RBRACE] = ACTIONS(967), - [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(969), - [anon_sym_else] = ACTIONS(819), - [anon_sym_switch] = ACTIONS(972), - [anon_sym_case] = ACTIONS(819), - [anon_sym_default] = ACTIONS(819), - [anon_sym_while] = ACTIONS(975), - [anon_sym_do] = ACTIONS(978), - [anon_sym_for] = ACTIONS(981), - [anon_sym_return] = ACTIONS(984), - [anon_sym_break] = ACTIONS(987), - [anon_sym_continue] = ACTIONS(990), - [anon_sym_goto] = ACTIONS(993), - [anon_sym___try] = ACTIONS(996), - [anon_sym___leave] = ACTIONS(999), - [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(3), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(954), + [aux_sym_preproc_def_token1] = ACTIONS(954), + [aux_sym_preproc_if_token1] = ACTIONS(954), + [aux_sym_preproc_if_token2] = ACTIONS(954), + [aux_sym_preproc_ifdef_token1] = ACTIONS(954), + [aux_sym_preproc_ifdef_token2] = ACTIONS(954), + [aux_sym_preproc_else_token1] = ACTIONS(954), + [aux_sym_preproc_elif_token1] = ACTIONS(954), + [aux_sym_preproc_elifdef_token1] = ACTIONS(954), + [aux_sym_preproc_elifdef_token2] = ACTIONS(954), + [sym_preproc_directive] = ACTIONS(954), + [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(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(954), + [anon_sym___exit] = ACTIONS(954), + [anon_sym___cdecl] = ACTIONS(954), + [anon_sym___clrcall] = ACTIONS(954), + [anon_sym___stdcall] = ACTIONS(954), + [anon_sym___fastcall] = ACTIONS(954), + [anon_sym___thiscall] = ACTIONS(954), + [anon_sym___vectorcall] = ACTIONS(954), + [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_else] = ACTIONS(954), + [anon_sym_switch] = ACTIONS(143), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(954), + [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), }, [52] = { - [sym_declaration] = STATE(55), - [sym_type_definition] = STATE(55), - [sym__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1244), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(468), - [sym_ms_declspec_modifier] = STATE(805), - [sym_compound_statement] = STATE(55), - [sym_storage_class_specifier] = STATE(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(807), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [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(1179), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2159), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [sym_macro_type_specifier] = STATE(873), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_attributed_declarator_repeat1] = STATE(421), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), - [aux_sym_case_statement_repeat1] = STATE(55), - [ts_builtin_sym_end] = ACTIONS(1002), - [sym_identifier] = ACTIONS(1004), - [aux_sym_preproc_include_token1] = ACTIONS(808), - [aux_sym_preproc_def_token1] = ACTIONS(808), - [aux_sym_preproc_if_token1] = ACTIONS(808), - [aux_sym_preproc_ifdef_token1] = ACTIONS(808), - [aux_sym_preproc_ifdef_token2] = ACTIONS(808), - [sym_preproc_directive] = ACTIONS(808), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1006), - [anon_sym___extension__] = ACTIONS(27), - [anon_sym_typedef] = ACTIONS(29), - [anon_sym_extern] = ACTIONS(51), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym___read_mostly] = ACTIONS(37), - [anon_sym___must_hold] = ACTIONS(33), - [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___noreturn] = ACTIONS(37), - [anon_sym___cold] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(39), - [anon_sym___declspec] = ACTIONS(41), - [anon_sym___init] = ACTIONS(808), - [anon_sym___exit] = ACTIONS(808), - [anon_sym___cdecl] = ACTIONS(808), - [anon_sym___clrcall] = ACTIONS(808), - [anon_sym___stdcall] = ACTIONS(808), - [anon_sym___fastcall] = ACTIONS(808), - [anon_sym___thiscall] = ACTIONS(808), - [anon_sym___vectorcall] = ACTIONS(808), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(49), - [anon_sym_unsigned] = ACTIONS(49), - [anon_sym_long] = ACTIONS(49), - [anon_sym_short] = ACTIONS(49), - [anon_sym_static] = ACTIONS(51), - [anon_sym_auto] = ACTIONS(51), - [anon_sym_register] = ACTIONS(51), - [anon_sym_inline] = ACTIONS(51), - [anon_sym___inline] = ACTIONS(51), - [anon_sym___inline__] = ACTIONS(51), - [anon_sym___forceinline] = ACTIONS(51), - [anon_sym_thread_local] = ACTIONS(51), - [anon_sym___thread] = ACTIONS(51), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_else] = ACTIONS(808), - [anon_sym_switch] = ACTIONS(67), - [anon_sym_case] = ACTIONS(808), - [anon_sym_default] = ACTIONS(808), - [anon_sym_while] = ACTIONS(73), - [anon_sym_do] = ACTIONS(75), - [anon_sym_for] = ACTIONS(77), - [anon_sym_return] = ACTIONS(79), - [anon_sym_break] = ACTIONS(81), - [anon_sym_continue] = ACTIONS(83), - [anon_sym_goto] = ACTIONS(85), - [anon_sym___try] = ACTIONS(1008), - [anon_sym___leave] = ACTIONS(1010), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [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__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_if_token2] = ACTIONS(956), + [aux_sym_preproc_ifdef_token1] = ACTIONS(956), + [aux_sym_preproc_ifdef_token2] = ACTIONS(956), + [aux_sym_preproc_else_token1] = ACTIONS(956), + [aux_sym_preproc_elif_token1] = ACTIONS(956), + [aux_sym_preproc_elifdef_token1] = ACTIONS(956), + [aux_sym_preproc_elifdef_token2] = ACTIONS(956), + [sym_preproc_directive] = ACTIONS(956), + [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(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(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(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_else] = ACTIONS(956), + [anon_sym_switch] = ACTIONS(143), + [anon_sym_case] = ACTIONS(956), + [anon_sym_default] = ACTIONS(956), + [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), }, [53] = { - [sym_declaration] = STATE(62), - [sym_type_definition] = STATE(62), - [sym__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1244), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(468), - [sym_ms_declspec_modifier] = STATE(805), - [sym_compound_statement] = STATE(62), - [sym_storage_class_specifier] = STATE(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(807), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [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(1179), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2159), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [sym_macro_type_specifier] = STATE(873), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_attributed_declarator_repeat1] = STATE(421), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), - [aux_sym_case_statement_repeat1] = STATE(62), - [ts_builtin_sym_end] = ACTIONS(1012), - [sym_identifier] = ACTIONS(1004), - [aux_sym_preproc_include_token1] = ACTIONS(810), - [aux_sym_preproc_def_token1] = ACTIONS(810), - [aux_sym_preproc_if_token1] = ACTIONS(810), - [aux_sym_preproc_ifdef_token1] = ACTIONS(810), - [aux_sym_preproc_ifdef_token2] = ACTIONS(810), - [sym_preproc_directive] = ACTIONS(810), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1006), - [anon_sym___extension__] = ACTIONS(27), - [anon_sym_typedef] = ACTIONS(29), - [anon_sym_extern] = ACTIONS(51), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym___read_mostly] = ACTIONS(37), - [anon_sym___must_hold] = ACTIONS(33), - [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___noreturn] = ACTIONS(37), - [anon_sym___cold] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(39), - [anon_sym___declspec] = ACTIONS(41), - [anon_sym___init] = ACTIONS(810), - [anon_sym___exit] = ACTIONS(810), - [anon_sym___cdecl] = ACTIONS(810), - [anon_sym___clrcall] = ACTIONS(810), - [anon_sym___stdcall] = ACTIONS(810), - [anon_sym___fastcall] = ACTIONS(810), - [anon_sym___thiscall] = ACTIONS(810), - [anon_sym___vectorcall] = ACTIONS(810), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(49), - [anon_sym_unsigned] = ACTIONS(49), - [anon_sym_long] = ACTIONS(49), - [anon_sym_short] = ACTIONS(49), - [anon_sym_static] = ACTIONS(51), - [anon_sym_auto] = ACTIONS(51), - [anon_sym_register] = ACTIONS(51), - [anon_sym_inline] = ACTIONS(51), - [anon_sym___inline] = ACTIONS(51), - [anon_sym___inline__] = ACTIONS(51), - [anon_sym___forceinline] = ACTIONS(51), - [anon_sym_thread_local] = ACTIONS(51), - [anon_sym___thread] = ACTIONS(51), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_else] = ACTIONS(810), - [anon_sym_switch] = ACTIONS(67), - [anon_sym_case] = ACTIONS(810), - [anon_sym_default] = ACTIONS(810), - [anon_sym_while] = ACTIONS(73), - [anon_sym_do] = ACTIONS(75), - [anon_sym_for] = ACTIONS(77), - [anon_sym_return] = ACTIONS(79), - [anon_sym_break] = ACTIONS(81), - [anon_sym_continue] = ACTIONS(83), - [anon_sym_goto] = ACTIONS(85), - [anon_sym___try] = ACTIONS(1008), - [anon_sym___leave] = ACTIONS(1010), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [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(816), + [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), + [aux_sym_preproc_else_token1] = ACTIONS(958), + [aux_sym_preproc_elif_token1] = ACTIONS(958), + [aux_sym_preproc_elifdef_token1] = ACTIONS(958), + [aux_sym_preproc_elifdef_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(131), + [anon_sym___extension__] = ACTIONS(133), + [anon_sym_typedef] = ACTIONS(135), + [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(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_else] = ACTIONS(958), + [anon_sym_switch] = ACTIONS(143), + [anon_sym_case] = ACTIONS(958), + [anon_sym_default] = ACTIONS(958), + [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), }, [54] = { - [sym_declaration] = STATE(52), - [sym_type_definition] = STATE(52), - [sym__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1244), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(468), - [sym_ms_declspec_modifier] = STATE(805), - [sym_compound_statement] = STATE(52), - [sym_storage_class_specifier] = STATE(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(807), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [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(1179), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2159), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [sym_macro_type_specifier] = STATE(873), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_attributed_declarator_repeat1] = STATE(421), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), - [aux_sym_case_statement_repeat1] = STATE(52), - [ts_builtin_sym_end] = ACTIONS(1014), - [sym_identifier] = ACTIONS(1004), - [aux_sym_preproc_include_token1] = ACTIONS(812), - [aux_sym_preproc_def_token1] = ACTIONS(812), - [aux_sym_preproc_if_token1] = ACTIONS(812), - [aux_sym_preproc_ifdef_token1] = ACTIONS(812), - [aux_sym_preproc_ifdef_token2] = ACTIONS(812), - [sym_preproc_directive] = ACTIONS(812), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1006), - [anon_sym___extension__] = ACTIONS(27), - [anon_sym_typedef] = ACTIONS(29), - [anon_sym_extern] = ACTIONS(51), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym___read_mostly] = ACTIONS(37), - [anon_sym___must_hold] = ACTIONS(33), - [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___noreturn] = ACTIONS(37), - [anon_sym___cold] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(39), - [anon_sym___declspec] = ACTIONS(41), - [anon_sym___init] = ACTIONS(812), - [anon_sym___exit] = ACTIONS(812), - [anon_sym___cdecl] = ACTIONS(812), - [anon_sym___clrcall] = ACTIONS(812), - [anon_sym___stdcall] = ACTIONS(812), - [anon_sym___fastcall] = ACTIONS(812), - [anon_sym___thiscall] = ACTIONS(812), - [anon_sym___vectorcall] = ACTIONS(812), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(49), - [anon_sym_unsigned] = ACTIONS(49), - [anon_sym_long] = ACTIONS(49), - [anon_sym_short] = ACTIONS(49), - [anon_sym_static] = ACTIONS(51), - [anon_sym_auto] = ACTIONS(51), - [anon_sym_register] = ACTIONS(51), - [anon_sym_inline] = ACTIONS(51), - [anon_sym___inline] = ACTIONS(51), - [anon_sym___inline__] = ACTIONS(51), - [anon_sym___forceinline] = ACTIONS(51), - [anon_sym_thread_local] = ACTIONS(51), - [anon_sym___thread] = ACTIONS(51), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_else] = ACTIONS(812), - [anon_sym_switch] = ACTIONS(67), - [anon_sym_case] = ACTIONS(812), - [anon_sym_default] = ACTIONS(812), - [anon_sym_while] = ACTIONS(73), - [anon_sym_do] = ACTIONS(75), - [anon_sym_for] = ACTIONS(77), - [anon_sym_return] = ACTIONS(79), - [anon_sym_break] = ACTIONS(81), - [anon_sym_continue] = ACTIONS(83), - [anon_sym_goto] = ACTIONS(85), - [anon_sym___try] = ACTIONS(1008), - [anon_sym___leave] = ACTIONS(1010), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [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(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), + [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___extension__] = ACTIONS(29), + [anon_sym_typedef] = ACTIONS(31), + [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(49), + [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(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(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), + [sym_comment] = ACTIONS(5), }, [55] = { [sym_declaration] = STATE(55), [sym_type_definition] = STATE(55), - [sym__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1244), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(468), - [sym_ms_declspec_modifier] = STATE(805), + [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(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(807), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), + [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), @@ -22369,496 +26983,499 @@ 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(1179), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2159), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [sym_macro_type_specifier] = STATE(873), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_attributed_declarator_repeat1] = STATE(421), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [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), - [ts_builtin_sym_end] = ACTIONS(967), - [sym_identifier] = ACTIONS(1016), - [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(1019), - [anon_sym___extension__] = ACTIONS(1022), - [anon_sym_typedef] = ACTIONS(1025), - [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(1028), - [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(1031), - [anon_sym_else] = ACTIONS(819), - [anon_sym_switch] = ACTIONS(1034), - [anon_sym_case] = ACTIONS(819), - [anon_sym_default] = ACTIONS(819), - [anon_sym_while] = ACTIONS(1037), - [anon_sym_do] = ACTIONS(1040), - [anon_sym_for] = ACTIONS(1043), - [anon_sym_return] = ACTIONS(1046), - [anon_sym_break] = ACTIONS(1049), - [anon_sym_continue] = ACTIONS(1052), - [anon_sym_goto] = ACTIONS(1055), - [anon_sym___try] = ACTIONS(1058), - [anon_sym___leave] = ACTIONS(1061), - [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(3), + [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(51), - [sym_type_definition] = STATE(51), - [sym__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1242), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(468), - [sym_ms_declspec_modifier] = STATE(805), - [sym_compound_statement] = STATE(51), - [sym_storage_class_specifier] = STATE(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(807), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [sym_attributed_statement] = STATE(51), - [sym_labeled_statement] = STATE(51), - [sym_expression_statement] = STATE(51), - [sym_if_statement] = STATE(51), - [sym_switch_statement] = STATE(51), - [sym_while_statement] = STATE(51), - [sym_do_statement] = STATE(51), - [sym_for_statement] = STATE(51), - [sym_return_statement] = STATE(51), - [sym_break_statement] = STATE(51), - [sym_continue_statement] = STATE(51), - [sym_goto_statement] = STATE(51), - [sym_seh_try_statement] = STATE(51), - [sym_seh_leave_statement] = STATE(51), - [sym_expression] = STATE(1167), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2207), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [sym_macro_type_specifier] = STATE(873), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_attributed_declarator_repeat1] = STATE(428), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), - [aux_sym_case_statement_repeat1] = STATE(51), - [sym_identifier] = ACTIONS(1064), - [aux_sym_preproc_include_token1] = ACTIONS(808), - [aux_sym_preproc_def_token1] = ACTIONS(808), - [aux_sym_preproc_if_token1] = ACTIONS(808), - [aux_sym_preproc_ifdef_token1] = ACTIONS(808), - [aux_sym_preproc_ifdef_token2] = ACTIONS(808), - [sym_preproc_directive] = ACTIONS(808), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(383), - [anon_sym___extension__] = ACTIONS(385), - [anon_sym_typedef] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(51), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym___read_mostly] = ACTIONS(37), - [anon_sym___must_hold] = ACTIONS(33), - [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___noreturn] = ACTIONS(37), - [anon_sym___cold] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(39), - [anon_sym___declspec] = ACTIONS(41), - [anon_sym___init] = ACTIONS(808), - [anon_sym___exit] = ACTIONS(808), - [anon_sym___cdecl] = ACTIONS(808), - [anon_sym___clrcall] = ACTIONS(808), - [anon_sym___stdcall] = ACTIONS(808), - [anon_sym___fastcall] = ACTIONS(808), - [anon_sym___thiscall] = ACTIONS(808), - [anon_sym___vectorcall] = ACTIONS(808), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_RBRACE] = ACTIONS(1002), - [anon_sym_signed] = ACTIONS(49), - [anon_sym_unsigned] = ACTIONS(49), - [anon_sym_long] = ACTIONS(49), - [anon_sym_short] = ACTIONS(49), - [anon_sym_static] = ACTIONS(51), - [anon_sym_auto] = ACTIONS(51), - [anon_sym_register] = ACTIONS(51), - [anon_sym_inline] = ACTIONS(51), - [anon_sym___inline] = ACTIONS(51), - [anon_sym___inline__] = ACTIONS(51), - [anon_sym___forceinline] = ACTIONS(51), - [anon_sym_thread_local] = ACTIONS(51), - [anon_sym___thread] = ACTIONS(51), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [anon_sym_if] = ACTIONS(395), - [anon_sym_else] = ACTIONS(808), - [anon_sym_switch] = ACTIONS(397), - [anon_sym_case] = ACTIONS(808), - [anon_sym_default] = ACTIONS(808), - [anon_sym_while] = ACTIONS(403), - [anon_sym_do] = ACTIONS(405), - [anon_sym_for] = ACTIONS(407), - [anon_sym_return] = ACTIONS(409), - [anon_sym_break] = ACTIONS(411), - [anon_sym_continue] = ACTIONS(413), - [anon_sym_goto] = ACTIONS(415), - [anon_sym___try] = ACTIONS(417), - [anon_sym___leave] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [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__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_if_token2] = 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), + [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(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(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(956), + [anon_sym_switch] = ACTIONS(467), + [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_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), }, [57] = { - [sym_declaration] = STATE(64), - [sym_type_definition] = STATE(64), - [sym__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1242), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(468), - [sym_ms_declspec_modifier] = STATE(805), - [sym_compound_statement] = STATE(64), - [sym_storage_class_specifier] = STATE(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(807), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [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(1167), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2207), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [sym_macro_type_specifier] = STATE(873), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_attributed_declarator_repeat1] = STATE(428), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), - [aux_sym_case_statement_repeat1] = STATE(64), - [sym_identifier] = ACTIONS(1064), - [aux_sym_preproc_include_token1] = ACTIONS(810), - [aux_sym_preproc_def_token1] = ACTIONS(810), - [aux_sym_preproc_if_token1] = ACTIONS(810), - [aux_sym_preproc_ifdef_token1] = ACTIONS(810), - [aux_sym_preproc_ifdef_token2] = ACTIONS(810), - [sym_preproc_directive] = ACTIONS(810), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(383), - [anon_sym___extension__] = ACTIONS(385), - [anon_sym_typedef] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(51), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym___read_mostly] = ACTIONS(37), - [anon_sym___must_hold] = ACTIONS(33), - [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___noreturn] = ACTIONS(37), - [anon_sym___cold] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(39), - [anon_sym___declspec] = ACTIONS(41), - [anon_sym___init] = ACTIONS(810), - [anon_sym___exit] = ACTIONS(810), - [anon_sym___cdecl] = ACTIONS(810), - [anon_sym___clrcall] = ACTIONS(810), - [anon_sym___stdcall] = ACTIONS(810), - [anon_sym___fastcall] = ACTIONS(810), - [anon_sym___thiscall] = ACTIONS(810), - [anon_sym___vectorcall] = ACTIONS(810), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_RBRACE] = ACTIONS(1012), - [anon_sym_signed] = ACTIONS(49), - [anon_sym_unsigned] = ACTIONS(49), - [anon_sym_long] = ACTIONS(49), - [anon_sym_short] = ACTIONS(49), - [anon_sym_static] = ACTIONS(51), - [anon_sym_auto] = ACTIONS(51), - [anon_sym_register] = ACTIONS(51), - [anon_sym_inline] = ACTIONS(51), - [anon_sym___inline] = ACTIONS(51), - [anon_sym___inline__] = ACTIONS(51), - [anon_sym___forceinline] = ACTIONS(51), - [anon_sym_thread_local] = ACTIONS(51), - [anon_sym___thread] = ACTIONS(51), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [anon_sym_if] = ACTIONS(395), - [anon_sym_else] = ACTIONS(810), - [anon_sym_switch] = ACTIONS(397), - [anon_sym_case] = ACTIONS(810), - [anon_sym_default] = ACTIONS(810), - [anon_sym_while] = ACTIONS(403), - [anon_sym_do] = ACTIONS(405), - [anon_sym_for] = ACTIONS(407), - [anon_sym_return] = ACTIONS(409), - [anon_sym_break] = ACTIONS(411), - [anon_sym_continue] = ACTIONS(413), - [anon_sym_goto] = ACTIONS(415), - [anon_sym___try] = ACTIONS(417), - [anon_sym___leave] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [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__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(954), + [aux_sym_preproc_def_token1] = ACTIONS(954), + [aux_sym_preproc_if_token1] = ACTIONS(954), + [aux_sym_preproc_if_token2] = ACTIONS(954), + [aux_sym_preproc_ifdef_token1] = ACTIONS(954), + [aux_sym_preproc_ifdef_token2] = ACTIONS(954), + [sym_preproc_directive] = ACTIONS(954), + [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(954), + [anon_sym___exit] = ACTIONS(954), + [anon_sym___cdecl] = ACTIONS(954), + [anon_sym___clrcall] = ACTIONS(954), + [anon_sym___stdcall] = ACTIONS(954), + [anon_sym___fastcall] = ACTIONS(954), + [anon_sym___thiscall] = ACTIONS(954), + [anon_sym___vectorcall] = ACTIONS(954), + [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(954), + [anon_sym_switch] = ACTIONS(467), + [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_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), }, [58] = { [sym_declaration] = STATE(58), [sym_type_definition] = STATE(58), - [sym__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1241), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(468), - [sym_ms_declspec_modifier] = STATE(805), + [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(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(807), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), + [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), @@ -22873,328 +27490,837 @@ 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(1193), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2067), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [sym_macro_type_specifier] = STATE(873), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_attributed_declarator_repeat1] = STATE(415), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [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), - [sym_identifier] = ACTIONS(1066), - [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(1069), - [anon_sym___extension__] = ACTIONS(1072), - [anon_sym_typedef] = ACTIONS(1075), - [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(1078), - [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(1081), - [anon_sym_else] = ACTIONS(819), - [anon_sym_switch] = ACTIONS(1084), - [anon_sym_case] = ACTIONS(819), - [anon_sym_default] = ACTIONS(819), - [anon_sym_while] = ACTIONS(1087), - [anon_sym_do] = ACTIONS(1090), - [anon_sym_for] = ACTIONS(1093), - [anon_sym_return] = ACTIONS(1096), - [anon_sym_break] = ACTIONS(1099), - [anon_sym_continue] = ACTIONS(1102), - [anon_sym_goto] = ACTIONS(1105), - [anon_sym___try] = ACTIONS(1108), - [anon_sym___leave] = ACTIONS(1111), - [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(3), + [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), + [sym_comment] = ACTIONS(5), }, [59] = { - [sym_declaration] = STATE(58), - [sym_type_definition] = STATE(58), - [sym__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1241), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(468), - [sym_ms_declspec_modifier] = STATE(805), - [sym_compound_statement] = STATE(58), - [sym_storage_class_specifier] = STATE(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(807), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [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(1193), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2067), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [sym_macro_type_specifier] = STATE(873), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_attributed_declarator_repeat1] = STATE(415), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), - [aux_sym_case_statement_repeat1] = STATE(58), - [sym_identifier] = ACTIONS(950), - [aux_sym_preproc_include_token1] = ACTIONS(814), - [aux_sym_preproc_def_token1] = ACTIONS(814), - [aux_sym_preproc_if_token1] = ACTIONS(814), - [aux_sym_preproc_if_token2] = ACTIONS(814), - [aux_sym_preproc_ifdef_token1] = ACTIONS(814), - [aux_sym_preproc_ifdef_token2] = ACTIONS(814), - [sym_preproc_directive] = ACTIONS(814), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(447), - [anon_sym___extension__] = ACTIONS(449), - [anon_sym_typedef] = ACTIONS(451), - [anon_sym_extern] = ACTIONS(51), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym___read_mostly] = ACTIONS(37), - [anon_sym___must_hold] = ACTIONS(33), - [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___noreturn] = ACTIONS(37), - [anon_sym___cold] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(39), - [anon_sym___declspec] = ACTIONS(41), - [anon_sym___init] = ACTIONS(814), - [anon_sym___exit] = ACTIONS(814), - [anon_sym___cdecl] = ACTIONS(814), - [anon_sym___clrcall] = ACTIONS(814), - [anon_sym___stdcall] = ACTIONS(814), - [anon_sym___fastcall] = ACTIONS(814), - [anon_sym___thiscall] = ACTIONS(814), - [anon_sym___vectorcall] = ACTIONS(814), - [anon_sym_LBRACE] = ACTIONS(455), - [anon_sym_signed] = ACTIONS(49), - [anon_sym_unsigned] = ACTIONS(49), - [anon_sym_long] = ACTIONS(49), - [anon_sym_short] = ACTIONS(49), - [anon_sym_static] = ACTIONS(51), - [anon_sym_auto] = ACTIONS(51), - [anon_sym_register] = ACTIONS(51), - [anon_sym_inline] = ACTIONS(51), - [anon_sym___inline] = ACTIONS(51), - [anon_sym___inline__] = ACTIONS(51), - [anon_sym___forceinline] = ACTIONS(51), - [anon_sym_thread_local] = ACTIONS(51), - [anon_sym___thread] = ACTIONS(51), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [anon_sym_if] = ACTIONS(457), - [anon_sym_else] = ACTIONS(814), - [anon_sym_switch] = ACTIONS(459), - [anon_sym_case] = ACTIONS(814), - [anon_sym_default] = ACTIONS(814), - [anon_sym_while] = ACTIONS(465), - [anon_sym_do] = ACTIONS(467), - [anon_sym_for] = ACTIONS(469), - [anon_sym_return] = ACTIONS(471), - [anon_sym_break] = ACTIONS(473), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_goto] = ACTIONS(477), - [anon_sym___try] = ACTIONS(479), - [anon_sym___leave] = ACTIONS(481), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [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(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__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(954), + [aux_sym_preproc_def_token1] = ACTIONS(954), + [aux_sym_preproc_if_token1] = ACTIONS(954), + [aux_sym_preproc_ifdef_token1] = ACTIONS(954), + [aux_sym_preproc_ifdef_token2] = ACTIONS(954), + [sym_preproc_directive] = ACTIONS(954), + [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___extension__] = ACTIONS(29), + [anon_sym_typedef] = ACTIONS(31), + [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(954), + [anon_sym___exit] = ACTIONS(954), + [anon_sym___cdecl] = ACTIONS(954), + [anon_sym___clrcall] = ACTIONS(954), + [anon_sym___stdcall] = ACTIONS(954), + [anon_sym___fastcall] = ACTIONS(954), + [anon_sym___thiscall] = ACTIONS(954), + [anon_sym___vectorcall] = ACTIONS(954), + [anon_sym_LBRACE] = ACTIONS(49), + [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(67), + [anon_sym_else] = ACTIONS(954), + [anon_sym_switch] = ACTIONS(69), + [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_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), + }, + [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), + [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(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_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(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_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), + }, + [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(805), - [sym__declaration_specifiers] = STATE(1241), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(468), - [sym_ms_declspec_modifier] = STATE(805), + [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(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(807), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), + [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), @@ -23209,328 +28335,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(1193), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2067), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [sym_macro_type_specifier] = STATE(873), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_attributed_declarator_repeat1] = STATE(415), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [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), - [sym_identifier] = ACTIONS(950), - [aux_sym_preproc_include_token1] = ACTIONS(808), - [aux_sym_preproc_def_token1] = ACTIONS(808), - [aux_sym_preproc_if_token1] = ACTIONS(808), - [aux_sym_preproc_if_token2] = ACTIONS(808), - [aux_sym_preproc_ifdef_token1] = ACTIONS(808), - [aux_sym_preproc_ifdef_token2] = ACTIONS(808), - [sym_preproc_directive] = ACTIONS(808), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(447), - [anon_sym___extension__] = ACTIONS(449), - [anon_sym_typedef] = ACTIONS(451), - [anon_sym_extern] = ACTIONS(51), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym___read_mostly] = ACTIONS(37), - [anon_sym___must_hold] = ACTIONS(33), - [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___noreturn] = ACTIONS(37), - [anon_sym___cold] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(39), - [anon_sym___declspec] = ACTIONS(41), - [anon_sym___init] = ACTIONS(808), - [anon_sym___exit] = ACTIONS(808), - [anon_sym___cdecl] = ACTIONS(808), - [anon_sym___clrcall] = ACTIONS(808), - [anon_sym___stdcall] = ACTIONS(808), - [anon_sym___fastcall] = ACTIONS(808), - [anon_sym___thiscall] = ACTIONS(808), - [anon_sym___vectorcall] = ACTIONS(808), - [anon_sym_LBRACE] = ACTIONS(455), - [anon_sym_signed] = ACTIONS(49), - [anon_sym_unsigned] = ACTIONS(49), - [anon_sym_long] = ACTIONS(49), - [anon_sym_short] = ACTIONS(49), - [anon_sym_static] = ACTIONS(51), - [anon_sym_auto] = ACTIONS(51), - [anon_sym_register] = ACTIONS(51), - [anon_sym_inline] = ACTIONS(51), - [anon_sym___inline] = ACTIONS(51), - [anon_sym___inline__] = ACTIONS(51), - [anon_sym___forceinline] = ACTIONS(51), - [anon_sym_thread_local] = ACTIONS(51), - [anon_sym___thread] = ACTIONS(51), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [anon_sym_if] = ACTIONS(457), - [anon_sym_else] = ACTIONS(808), - [anon_sym_switch] = ACTIONS(459), - [anon_sym_case] = ACTIONS(808), - [anon_sym_default] = ACTIONS(808), - [anon_sym_while] = ACTIONS(465), - [anon_sym_do] = ACTIONS(467), - [anon_sym_for] = ACTIONS(469), - [anon_sym_return] = ACTIONS(471), - [anon_sym_break] = ACTIONS(473), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_goto] = ACTIONS(477), - [anon_sym___try] = ACTIONS(479), - [anon_sym___leave] = ACTIONS(481), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - }, - [61] = { - [sym_declaration] = STATE(59), - [sym_type_definition] = STATE(59), - [sym__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1241), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(468), - [sym_ms_declspec_modifier] = STATE(805), - [sym_compound_statement] = STATE(59), - [sym_storage_class_specifier] = STATE(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(807), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [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(1193), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2067), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [sym_macro_type_specifier] = STATE(873), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_attributed_declarator_repeat1] = STATE(415), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), - [aux_sym_case_statement_repeat1] = STATE(59), - [sym_identifier] = ACTIONS(950), - [aux_sym_preproc_include_token1] = ACTIONS(810), - [aux_sym_preproc_def_token1] = ACTIONS(810), - [aux_sym_preproc_if_token1] = ACTIONS(810), - [aux_sym_preproc_if_token2] = ACTIONS(810), - [aux_sym_preproc_ifdef_token1] = ACTIONS(810), - [aux_sym_preproc_ifdef_token2] = ACTIONS(810), - [sym_preproc_directive] = ACTIONS(810), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(447), - [anon_sym___extension__] = ACTIONS(449), - [anon_sym_typedef] = ACTIONS(451), - [anon_sym_extern] = ACTIONS(51), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym___read_mostly] = ACTIONS(37), - [anon_sym___must_hold] = ACTIONS(33), - [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___noreturn] = ACTIONS(37), - [anon_sym___cold] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(39), - [anon_sym___declspec] = ACTIONS(41), - [anon_sym___init] = ACTIONS(810), - [anon_sym___exit] = ACTIONS(810), - [anon_sym___cdecl] = ACTIONS(810), - [anon_sym___clrcall] = ACTIONS(810), - [anon_sym___stdcall] = ACTIONS(810), - [anon_sym___fastcall] = ACTIONS(810), - [anon_sym___thiscall] = ACTIONS(810), - [anon_sym___vectorcall] = ACTIONS(810), - [anon_sym_LBRACE] = ACTIONS(455), - [anon_sym_signed] = ACTIONS(49), - [anon_sym_unsigned] = ACTIONS(49), - [anon_sym_long] = ACTIONS(49), - [anon_sym_short] = ACTIONS(49), - [anon_sym_static] = ACTIONS(51), - [anon_sym_auto] = ACTIONS(51), - [anon_sym_register] = ACTIONS(51), - [anon_sym_inline] = ACTIONS(51), - [anon_sym___inline] = ACTIONS(51), - [anon_sym___inline__] = ACTIONS(51), - [anon_sym___forceinline] = ACTIONS(51), - [anon_sym_thread_local] = ACTIONS(51), - [anon_sym___thread] = ACTIONS(51), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [anon_sym_if] = ACTIONS(457), - [anon_sym_else] = ACTIONS(810), - [anon_sym_switch] = ACTIONS(459), - [anon_sym_case] = ACTIONS(810), - [anon_sym_default] = ACTIONS(810), - [anon_sym_while] = ACTIONS(465), - [anon_sym_do] = ACTIONS(467), - [anon_sym_for] = ACTIONS(469), - [anon_sym_return] = ACTIONS(471), - [anon_sym_break] = ACTIONS(473), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_goto] = ACTIONS(477), - [anon_sym___try] = ACTIONS(479), - [anon_sym___leave] = ACTIONS(481), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [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), + [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___extension__] = ACTIONS(29), + [anon_sym_typedef] = ACTIONS(31), + [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(49), + [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(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_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), }, - [62] = { + [64] = { [sym_declaration] = STATE(55), [sym_type_definition] = STATE(55), - [sym__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1244), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(468), - [sym_ms_declspec_modifier] = STATE(805), + [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(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(807), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), + [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), @@ -23545,798 +28504,668 @@ 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(1179), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2159), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [sym_macro_type_specifier] = STATE(873), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_attributed_declarator_repeat1] = STATE(421), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [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), - [ts_builtin_sym_end] = ACTIONS(1114), - [sym_identifier] = ACTIONS(1004), - [aux_sym_preproc_include_token1] = ACTIONS(814), - [aux_sym_preproc_def_token1] = ACTIONS(814), - [aux_sym_preproc_if_token1] = ACTIONS(814), - [aux_sym_preproc_ifdef_token1] = ACTIONS(814), - [aux_sym_preproc_ifdef_token2] = ACTIONS(814), - [sym_preproc_directive] = ACTIONS(814), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1006), - [anon_sym___extension__] = ACTIONS(27), - [anon_sym_typedef] = ACTIONS(29), - [anon_sym_extern] = ACTIONS(51), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym___read_mostly] = ACTIONS(37), - [anon_sym___must_hold] = ACTIONS(33), - [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___noreturn] = ACTIONS(37), - [anon_sym___cold] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(39), - [anon_sym___declspec] = ACTIONS(41), - [anon_sym___init] = ACTIONS(814), - [anon_sym___exit] = ACTIONS(814), - [anon_sym___cdecl] = ACTIONS(814), - [anon_sym___clrcall] = ACTIONS(814), - [anon_sym___stdcall] = ACTIONS(814), - [anon_sym___fastcall] = ACTIONS(814), - [anon_sym___thiscall] = ACTIONS(814), - [anon_sym___vectorcall] = ACTIONS(814), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(49), - [anon_sym_unsigned] = ACTIONS(49), - [anon_sym_long] = ACTIONS(49), - [anon_sym_short] = ACTIONS(49), - [anon_sym_static] = ACTIONS(51), - [anon_sym_auto] = ACTIONS(51), - [anon_sym_register] = ACTIONS(51), - [anon_sym_inline] = ACTIONS(51), - [anon_sym___inline] = ACTIONS(51), - [anon_sym___inline__] = ACTIONS(51), - [anon_sym___forceinline] = ACTIONS(51), - [anon_sym_thread_local] = ACTIONS(51), - [anon_sym___thread] = ACTIONS(51), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_else] = ACTIONS(814), - [anon_sym_switch] = ACTIONS(67), - [anon_sym_case] = ACTIONS(814), - [anon_sym_default] = ACTIONS(814), - [anon_sym_while] = ACTIONS(73), - [anon_sym_do] = ACTIONS(75), - [anon_sym_for] = ACTIONS(77), - [anon_sym_return] = ACTIONS(79), - [anon_sym_break] = ACTIONS(81), - [anon_sym_continue] = ACTIONS(83), - [anon_sym_goto] = ACTIONS(85), - [anon_sym___try] = ACTIONS(1008), - [anon_sym___leave] = ACTIONS(1010), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - }, - [63] = { - [sym_declaration] = STATE(56), - [sym_type_definition] = STATE(56), - [sym__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1242), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(468), - [sym_ms_declspec_modifier] = STATE(805), - [sym_compound_statement] = STATE(56), - [sym_storage_class_specifier] = STATE(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(807), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [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(1167), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2207), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [sym_macro_type_specifier] = STATE(873), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_attributed_declarator_repeat1] = STATE(428), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), - [aux_sym_case_statement_repeat1] = STATE(56), - [sym_identifier] = ACTIONS(1064), - [aux_sym_preproc_include_token1] = ACTIONS(812), - [aux_sym_preproc_def_token1] = ACTIONS(812), - [aux_sym_preproc_if_token1] = ACTIONS(812), - [aux_sym_preproc_ifdef_token1] = ACTIONS(812), - [aux_sym_preproc_ifdef_token2] = ACTIONS(812), - [sym_preproc_directive] = ACTIONS(812), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(383), - [anon_sym___extension__] = ACTIONS(385), - [anon_sym_typedef] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(51), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym___read_mostly] = ACTIONS(37), - [anon_sym___must_hold] = ACTIONS(33), - [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___noreturn] = ACTIONS(37), - [anon_sym___cold] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(39), - [anon_sym___declspec] = ACTIONS(41), - [anon_sym___init] = ACTIONS(812), - [anon_sym___exit] = ACTIONS(812), - [anon_sym___cdecl] = ACTIONS(812), - [anon_sym___clrcall] = ACTIONS(812), - [anon_sym___stdcall] = ACTIONS(812), - [anon_sym___fastcall] = ACTIONS(812), - [anon_sym___thiscall] = ACTIONS(812), - [anon_sym___vectorcall] = ACTIONS(812), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_RBRACE] = ACTIONS(1014), - [anon_sym_signed] = ACTIONS(49), - [anon_sym_unsigned] = ACTIONS(49), - [anon_sym_long] = ACTIONS(49), - [anon_sym_short] = ACTIONS(49), - [anon_sym_static] = ACTIONS(51), - [anon_sym_auto] = ACTIONS(51), - [anon_sym_register] = ACTIONS(51), - [anon_sym_inline] = ACTIONS(51), - [anon_sym___inline] = ACTIONS(51), - [anon_sym___inline__] = ACTIONS(51), - [anon_sym___forceinline] = ACTIONS(51), - [anon_sym_thread_local] = ACTIONS(51), - [anon_sym___thread] = ACTIONS(51), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [anon_sym_if] = ACTIONS(395), - [anon_sym_else] = ACTIONS(812), - [anon_sym_switch] = ACTIONS(397), - [anon_sym_case] = ACTIONS(812), - [anon_sym_default] = ACTIONS(812), - [anon_sym_while] = ACTIONS(403), - [anon_sym_do] = ACTIONS(405), - [anon_sym_for] = ACTIONS(407), - [anon_sym_return] = ACTIONS(409), - [anon_sym_break] = ACTIONS(411), - [anon_sym_continue] = ACTIONS(413), - [anon_sym_goto] = ACTIONS(415), - [anon_sym___try] = ACTIONS(417), - [anon_sym___leave] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - }, - [64] = { - [sym_declaration] = STATE(51), - [sym_type_definition] = STATE(51), - [sym__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1242), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(468), - [sym_ms_declspec_modifier] = STATE(805), - [sym_compound_statement] = STATE(51), - [sym_storage_class_specifier] = STATE(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(807), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [sym_attributed_statement] = STATE(51), - [sym_labeled_statement] = STATE(51), - [sym_expression_statement] = STATE(51), - [sym_if_statement] = STATE(51), - [sym_switch_statement] = STATE(51), - [sym_while_statement] = STATE(51), - [sym_do_statement] = STATE(51), - [sym_for_statement] = STATE(51), - [sym_return_statement] = STATE(51), - [sym_break_statement] = STATE(51), - [sym_continue_statement] = STATE(51), - [sym_goto_statement] = STATE(51), - [sym_seh_try_statement] = STATE(51), - [sym_seh_leave_statement] = STATE(51), - [sym_expression] = STATE(1167), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2207), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [sym_macro_type_specifier] = STATE(873), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_attributed_declarator_repeat1] = STATE(428), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), - [aux_sym_case_statement_repeat1] = STATE(51), - [sym_identifier] = ACTIONS(1064), - [aux_sym_preproc_include_token1] = ACTIONS(814), - [aux_sym_preproc_def_token1] = ACTIONS(814), - [aux_sym_preproc_if_token1] = ACTIONS(814), - [aux_sym_preproc_ifdef_token1] = ACTIONS(814), - [aux_sym_preproc_ifdef_token2] = ACTIONS(814), - [sym_preproc_directive] = ACTIONS(814), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(383), - [anon_sym___extension__] = ACTIONS(385), - [anon_sym_typedef] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(51), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym___read_mostly] = ACTIONS(37), - [anon_sym___must_hold] = ACTIONS(33), - [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___noreturn] = ACTIONS(37), - [anon_sym___cold] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(39), - [anon_sym___declspec] = ACTIONS(41), - [anon_sym___init] = ACTIONS(814), - [anon_sym___exit] = ACTIONS(814), - [anon_sym___cdecl] = ACTIONS(814), - [anon_sym___clrcall] = ACTIONS(814), - [anon_sym___stdcall] = ACTIONS(814), - [anon_sym___fastcall] = ACTIONS(814), - [anon_sym___thiscall] = ACTIONS(814), - [anon_sym___vectorcall] = ACTIONS(814), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_RBRACE] = ACTIONS(1114), - [anon_sym_signed] = ACTIONS(49), - [anon_sym_unsigned] = ACTIONS(49), - [anon_sym_long] = ACTIONS(49), - [anon_sym_short] = ACTIONS(49), - [anon_sym_static] = ACTIONS(51), - [anon_sym_auto] = ACTIONS(51), - [anon_sym_register] = ACTIONS(51), - [anon_sym_inline] = ACTIONS(51), - [anon_sym___inline] = ACTIONS(51), - [anon_sym___inline__] = ACTIONS(51), - [anon_sym___forceinline] = ACTIONS(51), - [anon_sym_thread_local] = ACTIONS(51), - [anon_sym___thread] = ACTIONS(51), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [anon_sym_if] = ACTIONS(395), - [anon_sym_else] = ACTIONS(814), - [anon_sym_switch] = ACTIONS(397), - [anon_sym_case] = ACTIONS(814), - [anon_sym_default] = ACTIONS(814), - [anon_sym_while] = ACTIONS(403), - [anon_sym_do] = ACTIONS(405), - [anon_sym_for] = ACTIONS(407), - [anon_sym_return] = ACTIONS(409), - [anon_sym_break] = ACTIONS(411), - [anon_sym_continue] = ACTIONS(413), - [anon_sym_goto] = ACTIONS(415), - [anon_sym___try] = ACTIONS(417), - [anon_sym___leave] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1122), + [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), + [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___extension__] = ACTIONS(387), + [anon_sym_typedef] = ACTIONS(389), + [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(393), + [anon_sym_RBRACE] = ACTIONS(960), + [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(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), + [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), }, [65] = { - [sym_declaration] = STATE(66), - [sym_type_definition] = STATE(66), - [sym__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1244), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(468), - [sym_ms_declspec_modifier] = STATE(805), - [sym_compound_statement] = STATE(66), - [sym_storage_class_specifier] = STATE(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(807), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [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(1167), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2207), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [sym_macro_type_specifier] = STATE(873), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_attributed_declarator_repeat1] = STATE(442), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), - [aux_sym_case_statement_repeat1] = STATE(66), - [sym_identifier] = ACTIONS(1116), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(383), - [anon_sym___extension__] = ACTIONS(27), - [anon_sym_typedef] = ACTIONS(29), - [anon_sym_extern] = ACTIONS(51), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym___read_mostly] = ACTIONS(37), - [anon_sym___must_hold] = ACTIONS(33), - [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___noreturn] = ACTIONS(37), - [anon_sym___cold] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(39), - [anon_sym___declspec] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(49), - [anon_sym_unsigned] = ACTIONS(49), - [anon_sym_long] = ACTIONS(49), - [anon_sym_short] = ACTIONS(49), - [anon_sym_static] = ACTIONS(51), - [anon_sym_auto] = ACTIONS(51), - [anon_sym_register] = ACTIONS(51), - [anon_sym_inline] = ACTIONS(51), - [anon_sym___inline] = ACTIONS(51), - [anon_sym___inline__] = ACTIONS(51), - [anon_sym___forceinline] = ACTIONS(51), - [anon_sym_thread_local] = ACTIONS(51), - [anon_sym___thread] = ACTIONS(51), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [anon_sym_if] = ACTIONS(1118), - [anon_sym_else] = ACTIONS(814), - [anon_sym_switch] = ACTIONS(67), - [anon_sym_while] = ACTIONS(1120), - [anon_sym_do] = ACTIONS(75), - [anon_sym_for] = ACTIONS(1122), - [anon_sym_return] = ACTIONS(79), - [anon_sym_break] = ACTIONS(81), - [anon_sym_continue] = ACTIONS(83), - [anon_sym_goto] = ACTIONS(85), - [anon_sym___try] = ACTIONS(1124), - [anon_sym___leave] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [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), + [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), + [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___extension__] = ACTIONS(29), + [anon_sym_typedef] = ACTIONS(31), + [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(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(49), + [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(67), + [anon_sym_else] = ACTIONS(956), + [anon_sym_switch] = ACTIONS(69), + [anon_sym_case] = ACTIONS(956), + [anon_sym_default] = ACTIONS(956), + [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), + [sym_comment] = ACTIONS(5), }, [66] = { - [sym_declaration] = STATE(66), - [sym_type_definition] = STATE(66), - [sym__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1244), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(468), - [sym_ms_declspec_modifier] = STATE(805), - [sym_compound_statement] = STATE(66), - [sym_storage_class_specifier] = STATE(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(807), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [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(1167), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2207), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [sym_macro_type_specifier] = STATE(873), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_attributed_declarator_repeat1] = STATE(442), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), - [aux_sym_case_statement_repeat1] = STATE(66), - [sym_identifier] = ACTIONS(1126), - [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(955), - [anon_sym___extension__] = ACTIONS(1022), - [anon_sym_typedef] = ACTIONS(1025), - [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(1028), - [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(1129), - [anon_sym_else] = ACTIONS(819), - [anon_sym_switch] = ACTIONS(1034), - [anon_sym_while] = ACTIONS(1132), - [anon_sym_do] = ACTIONS(1040), - [anon_sym_for] = ACTIONS(1135), - [anon_sym_return] = ACTIONS(1046), - [anon_sym_break] = ACTIONS(1049), - [anon_sym_continue] = ACTIONS(1052), - [anon_sym_goto] = ACTIONS(1055), - [anon_sym___try] = ACTIONS(1138), - [anon_sym___leave] = ACTIONS(999), - [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(3), + [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), + [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), + [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___extension__] = ACTIONS(387), + [anon_sym_typedef] = ACTIONS(389), + [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(393), + [anon_sym_RBRACE] = ACTIONS(1120), + [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(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_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), }, [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), + [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), + [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___extension__] = ACTIONS(387), + [anon_sym_typedef] = ACTIONS(389), + [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(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(1124), + [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(397), + [anon_sym_else] = ACTIONS(956), + [anon_sym_switch] = ACTIONS(399), + [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), + [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), + }, + [68] = { [sym_declaration] = STATE(66), [sym_type_definition] = STATE(66), - [sym__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1244), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(468), - [sym_ms_declspec_modifier] = STATE(805), + [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(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(807), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), + [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), @@ -24351,47688 +29180,83074 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(66), [sym_seh_try_statement] = STATE(66), [sym_seh_leave_statement] = STATE(66), - [sym_expression] = STATE(1167), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2207), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [sym_macro_type_specifier] = STATE(873), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_attributed_declarator_repeat1] = STATE(442), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [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(1116), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(383), - [anon_sym___extension__] = ACTIONS(27), - [anon_sym_typedef] = ACTIONS(29), - [anon_sym_extern] = ACTIONS(51), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym___read_mostly] = ACTIONS(37), - [anon_sym___must_hold] = ACTIONS(33), - [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___noreturn] = ACTIONS(37), - [anon_sym___cold] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(39), - [anon_sym___declspec] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(49), - [anon_sym_unsigned] = ACTIONS(49), - [anon_sym_long] = ACTIONS(49), - [anon_sym_short] = ACTIONS(49), - [anon_sym_static] = ACTIONS(51), - [anon_sym_auto] = ACTIONS(51), - [anon_sym_register] = ACTIONS(51), - [anon_sym_inline] = ACTIONS(51), - [anon_sym___inline] = ACTIONS(51), - [anon_sym___inline__] = ACTIONS(51), - [anon_sym___forceinline] = ACTIONS(51), - [anon_sym_thread_local] = ACTIONS(51), - [anon_sym___thread] = ACTIONS(51), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [anon_sym_if] = ACTIONS(1118), - [anon_sym_else] = ACTIONS(808), - [anon_sym_switch] = ACTIONS(67), - [anon_sym_while] = ACTIONS(1120), - [anon_sym_do] = ACTIONS(75), - [anon_sym_for] = ACTIONS(1122), - [anon_sym_return] = ACTIONS(79), - [anon_sym_break] = ACTIONS(81), - [anon_sym_continue] = ACTIONS(83), - [anon_sym_goto] = ACTIONS(85), - [anon_sym___try] = ACTIONS(1124), - [anon_sym___leave] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), - }, - [68] = { - [sym_declaration] = STATE(67), - [sym_type_definition] = STATE(67), - [sym__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1244), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(468), - [sym_ms_declspec_modifier] = STATE(805), - [sym_compound_statement] = STATE(67), - [sym_storage_class_specifier] = STATE(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(807), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [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(1167), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2207), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [sym_macro_type_specifier] = STATE(873), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_attributed_declarator_repeat1] = STATE(442), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), - [aux_sym_case_statement_repeat1] = STATE(67), - [sym_identifier] = ACTIONS(1116), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(383), - [anon_sym___extension__] = ACTIONS(27), - [anon_sym_typedef] = ACTIONS(29), - [anon_sym_extern] = ACTIONS(51), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym___read_mostly] = ACTIONS(37), - [anon_sym___must_hold] = ACTIONS(33), - [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___noreturn] = ACTIONS(37), - [anon_sym___cold] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(39), - [anon_sym___declspec] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(49), - [anon_sym_unsigned] = ACTIONS(49), - [anon_sym_long] = ACTIONS(49), - [anon_sym_short] = ACTIONS(49), - [anon_sym_static] = ACTIONS(51), - [anon_sym_auto] = ACTIONS(51), - [anon_sym_register] = ACTIONS(51), - [anon_sym_inline] = ACTIONS(51), - [anon_sym___inline] = ACTIONS(51), - [anon_sym___inline__] = ACTIONS(51), - [anon_sym___forceinline] = ACTIONS(51), - [anon_sym_thread_local] = ACTIONS(51), - [anon_sym___thread] = ACTIONS(51), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [anon_sym_if] = ACTIONS(1118), - [anon_sym_else] = ACTIONS(812), - [anon_sym_switch] = ACTIONS(67), - [anon_sym_while] = ACTIONS(1120), - [anon_sym_do] = ACTIONS(75), - [anon_sym_for] = ACTIONS(1122), - [anon_sym_return] = ACTIONS(79), - [anon_sym_break] = ACTIONS(81), - [anon_sym_continue] = ACTIONS(83), - [anon_sym_goto] = ACTIONS(85), - [anon_sym___try] = ACTIONS(1124), - [anon_sym___leave] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1122), + [sym__linux_kernel_annotations] = ACTIONS(3), + [aux_sym_preproc_include_token1] = ACTIONS(954), + [aux_sym_preproc_def_token1] = ACTIONS(954), + [aux_sym_preproc_if_token1] = ACTIONS(954), + [aux_sym_preproc_ifdef_token1] = ACTIONS(954), + [aux_sym_preproc_ifdef_token2] = ACTIONS(954), + [sym_preproc_directive] = ACTIONS(954), + [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___extension__] = ACTIONS(387), + [anon_sym_typedef] = ACTIONS(389), + [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(954), + [anon_sym___exit] = ACTIONS(954), + [anon_sym___cdecl] = ACTIONS(954), + [anon_sym___clrcall] = ACTIONS(954), + [anon_sym___stdcall] = ACTIONS(954), + [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_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(397), + [anon_sym_else] = ACTIONS(954), + [anon_sym_switch] = ACTIONS(399), + [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_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), }, [69] = { - [sym_declaration] = STATE(65), - [sym_type_definition] = STATE(65), - [sym__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1244), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(468), - [sym_ms_declspec_modifier] = STATE(805), - [sym_compound_statement] = STATE(65), - [sym_storage_class_specifier] = STATE(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(807), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [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(1167), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2207), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [sym_macro_type_specifier] = STATE(873), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_attributed_declarator_repeat1] = STATE(442), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), - [aux_sym_case_statement_repeat1] = STATE(65), - [sym_identifier] = ACTIONS(1116), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(383), - [anon_sym___extension__] = ACTIONS(27), - [anon_sym_typedef] = ACTIONS(29), - [anon_sym_extern] = ACTIONS(51), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym___read_mostly] = ACTIONS(37), - [anon_sym___must_hold] = ACTIONS(33), - [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___noreturn] = ACTIONS(37), - [anon_sym___cold] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(39), - [anon_sym___declspec] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(49), - [anon_sym_unsigned] = ACTIONS(49), - [anon_sym_long] = ACTIONS(49), - [anon_sym_short] = ACTIONS(49), - [anon_sym_static] = ACTIONS(51), - [anon_sym_auto] = ACTIONS(51), - [anon_sym_register] = ACTIONS(51), - [anon_sym_inline] = ACTIONS(51), - [anon_sym___inline] = ACTIONS(51), - [anon_sym___inline__] = ACTIONS(51), - [anon_sym___forceinline] = ACTIONS(51), - [anon_sym_thread_local] = ACTIONS(51), - [anon_sym___thread] = ACTIONS(51), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [anon_sym_if] = ACTIONS(1118), - [anon_sym_else] = ACTIONS(810), - [anon_sym_switch] = ACTIONS(67), - [anon_sym_while] = ACTIONS(1120), - [anon_sym_do] = ACTIONS(75), - [anon_sym_for] = ACTIONS(1122), - [anon_sym_return] = ACTIONS(79), - [anon_sym_break] = ACTIONS(81), - [anon_sym_continue] = ACTIONS(83), - [anon_sym_goto] = ACTIONS(85), - [anon_sym___try] = ACTIONS(1124), - [anon_sym___leave] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [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_identifier] = ACTIONS(1126), + [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___extension__] = ACTIONS(1130), + [anon_sym_typedef] = ACTIONS(1132), + [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_LBRACE] = ACTIONS(1134), + [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(1136), + [anon_sym_else] = ACTIONS(954), + [anon_sym_switch] = ACTIONS(1138), + [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), + [sym_comment] = ACTIONS(5), }, [70] = { - [sym_declaration] = STATE(601), - [sym__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1247), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(805), - [sym_ms_declspec_modifier] = STATE(805), - [sym_storage_class_specifier] = STATE(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(807), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [sym__for_statement_body] = STATE(2201), - [sym_expression] = STATE(1189), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2084), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [sym_macro_type_specifier] = STATE(873), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), - [sym_identifier] = ACTIONS(1141), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1143), - [anon_sym___extension__] = ACTIONS(53), - [anon_sym_extern] = ACTIONS(51), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym___read_mostly] = ACTIONS(37), - [anon_sym___must_hold] = ACTIONS(33), - [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___noreturn] = ACTIONS(37), - [anon_sym___cold] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1145), - [anon_sym___declspec] = ACTIONS(41), - [anon_sym_signed] = ACTIONS(49), - [anon_sym_unsigned] = ACTIONS(49), - [anon_sym_long] = ACTIONS(49), - [anon_sym_short] = ACTIONS(49), - [anon_sym_static] = ACTIONS(51), - [anon_sym_auto] = ACTIONS(51), - [anon_sym_register] = ACTIONS(51), - [anon_sym_inline] = ACTIONS(51), - [anon_sym___inline] = ACTIONS(51), - [anon_sym___inline__] = ACTIONS(51), - [anon_sym___forceinline] = ACTIONS(51), - [anon_sym_thread_local] = ACTIONS(51), - [anon_sym___thread] = ACTIONS(51), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [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(1126), + [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___extension__] = ACTIONS(1130), + [anon_sym_typedef] = ACTIONS(1132), + [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_LBRACE] = ACTIONS(1134), + [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(1136), + [anon_sym_else] = ACTIONS(958), + [anon_sym_switch] = ACTIONS(1138), + [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), + [sym_comment] = ACTIONS(5), }, [71] = { - [sym_declaration] = STATE(601), - [sym__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1247), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(805), - [sym_ms_declspec_modifier] = STATE(805), - [sym_storage_class_specifier] = STATE(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(807), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [sym__for_statement_body] = STATE(2215), - [sym_expression] = STATE(1189), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2084), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [sym_macro_type_specifier] = STATE(873), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), - [sym_identifier] = ACTIONS(1141), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1143), - [anon_sym___extension__] = ACTIONS(53), - [anon_sym_extern] = ACTIONS(51), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym___read_mostly] = ACTIONS(37), - [anon_sym___must_hold] = ACTIONS(33), - [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___noreturn] = ACTIONS(37), - [anon_sym___cold] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1145), - [anon_sym___declspec] = ACTIONS(41), - [anon_sym_signed] = ACTIONS(49), - [anon_sym_unsigned] = ACTIONS(49), - [anon_sym_long] = ACTIONS(49), - [anon_sym_short] = ACTIONS(49), - [anon_sym_static] = ACTIONS(51), - [anon_sym_auto] = ACTIONS(51), - [anon_sym_register] = ACTIONS(51), - [anon_sym_inline] = ACTIONS(51), - [anon_sym___inline] = ACTIONS(51), - [anon_sym___inline__] = ACTIONS(51), - [anon_sym___forceinline] = ACTIONS(51), - [anon_sym_thread_local] = ACTIONS(51), - [anon_sym___thread] = ACTIONS(51), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [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(601), - [sym__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1247), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(805), - [sym_ms_declspec_modifier] = STATE(805), - [sym_storage_class_specifier] = STATE(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(807), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [sym__for_statement_body] = STATE(2080), - [sym_expression] = STATE(1189), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2084), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [sym_macro_type_specifier] = STATE(873), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), - [sym_identifier] = ACTIONS(1141), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1143), - [anon_sym___extension__] = ACTIONS(53), - [anon_sym_extern] = ACTIONS(51), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym___read_mostly] = ACTIONS(37), - [anon_sym___must_hold] = ACTIONS(33), - [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___noreturn] = ACTIONS(37), - [anon_sym___cold] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1145), - [anon_sym___declspec] = ACTIONS(41), - [anon_sym_signed] = ACTIONS(49), - [anon_sym_unsigned] = ACTIONS(49), - [anon_sym_long] = ACTIONS(49), - [anon_sym_short] = ACTIONS(49), - [anon_sym_static] = ACTIONS(51), - [anon_sym_auto] = ACTIONS(51), - [anon_sym_register] = ACTIONS(51), - [anon_sym_inline] = ACTIONS(51), - [anon_sym___inline] = ACTIONS(51), - [anon_sym___inline__] = ACTIONS(51), - [anon_sym___forceinline] = ACTIONS(51), - [anon_sym_thread_local] = ACTIONS(51), - [anon_sym___thread] = ACTIONS(51), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [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(1126), + [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___extension__] = ACTIONS(1130), + [anon_sym_typedef] = ACTIONS(1132), + [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_LBRACE] = ACTIONS(1134), + [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(1136), + [anon_sym_else] = ACTIONS(818), + [anon_sym_switch] = ACTIONS(1138), + [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), + [sym_comment] = ACTIONS(5), }, [73] = { - [sym_declaration] = STATE(601), - [sym__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1247), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(805), - [sym_ms_declspec_modifier] = STATE(805), - [sym_storage_class_specifier] = STATE(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(807), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [sym__for_statement_body] = STATE(2202), - [sym_expression] = STATE(1189), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2084), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [sym_macro_type_specifier] = STATE(873), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), - [sym_identifier] = ACTIONS(1141), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1143), - [anon_sym___extension__] = ACTIONS(53), - [anon_sym_extern] = ACTIONS(51), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym___read_mostly] = ACTIONS(37), - [anon_sym___must_hold] = ACTIONS(33), - [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___noreturn] = ACTIONS(37), - [anon_sym___cold] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1145), - [anon_sym___declspec] = ACTIONS(41), - [anon_sym_signed] = ACTIONS(49), - [anon_sym_unsigned] = ACTIONS(49), - [anon_sym_long] = ACTIONS(49), - [anon_sym_short] = ACTIONS(49), - [anon_sym_static] = ACTIONS(51), - [anon_sym_auto] = ACTIONS(51), - [anon_sym_register] = ACTIONS(51), - [anon_sym_inline] = ACTIONS(51), - [anon_sym___inline] = ACTIONS(51), - [anon_sym___inline__] = ACTIONS(51), - [anon_sym___forceinline] = ACTIONS(51), - [anon_sym_thread_local] = ACTIONS(51), - [anon_sym___thread] = ACTIONS(51), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [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), + [sym_identifier] = ACTIONS(1126), + [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___extension__] = ACTIONS(1130), + [anon_sym_typedef] = ACTIONS(1132), + [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_LBRACE] = ACTIONS(1134), + [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(1136), + [anon_sym_else] = ACTIONS(956), + [anon_sym_switch] = ACTIONS(1138), + [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), + [sym_comment] = ACTIONS(5), }, [74] = { - [sym_declaration] = STATE(601), - [sym__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1247), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(805), - [sym_ms_declspec_modifier] = STATE(805), - [sym_storage_class_specifier] = STATE(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(807), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [sym__for_statement_body] = STATE(2153), - [sym_expression] = STATE(1189), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2084), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [sym_macro_type_specifier] = STATE(873), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), - [sym_identifier] = ACTIONS(1141), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1143), - [anon_sym___extension__] = ACTIONS(53), - [anon_sym_extern] = ACTIONS(51), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym___read_mostly] = ACTIONS(37), - [anon_sym___must_hold] = ACTIONS(33), - [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___noreturn] = ACTIONS(37), - [anon_sym___cold] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1145), - [anon_sym___declspec] = ACTIONS(41), - [anon_sym_signed] = ACTIONS(49), - [anon_sym_unsigned] = ACTIONS(49), - [anon_sym_long] = ACTIONS(49), - [anon_sym_short] = ACTIONS(49), - [anon_sym_static] = ACTIONS(51), - [anon_sym_auto] = ACTIONS(51), - [anon_sym_register] = ACTIONS(51), - [anon_sym_inline] = ACTIONS(51), - [anon_sym___inline] = ACTIONS(51), - [anon_sym___inline__] = ACTIONS(51), - [anon_sym___forceinline] = ACTIONS(51), - [anon_sym_thread_local] = ACTIONS(51), - [anon_sym___thread] = ACTIONS(51), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [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_identifier] = ACTIONS(1206), + [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(1208), + [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_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), }, [75] = { - [sym_else_clause] = STATE(93), - [sym_identifier] = ACTIONS(1147), - [aux_sym_preproc_include_token1] = ACTIONS(1147), - [aux_sym_preproc_def_token1] = ACTIONS(1147), - [aux_sym_preproc_if_token1] = ACTIONS(1147), - [aux_sym_preproc_if_token2] = ACTIONS(1147), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1147), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1147), - [aux_sym_preproc_else_token1] = ACTIONS(1147), - [aux_sym_preproc_elif_token1] = ACTIONS(1147), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1147), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1147), - [sym_preproc_directive] = ACTIONS(1147), - [anon_sym_LPAREN2] = ACTIONS(1149), - [anon_sym_BANG] = ACTIONS(1149), - [anon_sym_TILDE] = ACTIONS(1149), - [anon_sym_DASH] = ACTIONS(1147), - [anon_sym_PLUS] = ACTIONS(1147), - [anon_sym_STAR] = ACTIONS(1149), - [anon_sym_AMP] = ACTIONS(1149), - [anon_sym_SEMI] = ACTIONS(1149), - [anon_sym___extension__] = ACTIONS(1147), - [anon_sym_typedef] = ACTIONS(1147), - [anon_sym_extern] = ACTIONS(1147), - [anon_sym___attribute__] = ACTIONS(1147), - [anon_sym___scanf] = ACTIONS(1147), - [anon_sym___printf] = ACTIONS(1147), - [anon_sym___read_mostly] = ACTIONS(1147), - [anon_sym___must_hold] = ACTIONS(1147), - [anon_sym___ro_after_init] = ACTIONS(1147), - [anon_sym___noreturn] = ACTIONS(1147), - [anon_sym___cold] = ACTIONS(1147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1149), - [anon_sym___declspec] = ACTIONS(1147), - [anon_sym___init] = ACTIONS(1147), - [anon_sym___exit] = ACTIONS(1147), - [anon_sym___cdecl] = ACTIONS(1147), - [anon_sym___clrcall] = ACTIONS(1147), - [anon_sym___stdcall] = ACTIONS(1147), - [anon_sym___fastcall] = ACTIONS(1147), - [anon_sym___thiscall] = ACTIONS(1147), - [anon_sym___vectorcall] = ACTIONS(1147), - [anon_sym_LBRACE] = ACTIONS(1149), - [anon_sym_signed] = ACTIONS(1147), - [anon_sym_unsigned] = ACTIONS(1147), - [anon_sym_long] = ACTIONS(1147), - [anon_sym_short] = ACTIONS(1147), - [anon_sym_static] = ACTIONS(1147), - [anon_sym_auto] = ACTIONS(1147), - [anon_sym_register] = ACTIONS(1147), - [anon_sym_inline] = ACTIONS(1147), - [anon_sym___inline] = ACTIONS(1147), - [anon_sym___inline__] = ACTIONS(1147), - [anon_sym___forceinline] = ACTIONS(1147), - [anon_sym_thread_local] = ACTIONS(1147), - [anon_sym___thread] = ACTIONS(1147), - [anon_sym_const] = ACTIONS(1147), - [anon_sym_constexpr] = ACTIONS(1147), - [anon_sym_volatile] = ACTIONS(1147), - [anon_sym_restrict] = ACTIONS(1147), - [anon_sym___restrict__] = ACTIONS(1147), - [anon_sym__Atomic] = ACTIONS(1147), - [anon_sym__Noreturn] = ACTIONS(1147), - [anon_sym_noreturn] = ACTIONS(1147), - [anon_sym_alignas] = ACTIONS(1147), - [anon_sym__Alignas] = ACTIONS(1147), - [sym_primitive_type] = ACTIONS(1147), - [anon_sym_enum] = ACTIONS(1147), - [anon_sym_struct] = ACTIONS(1147), - [anon_sym_union] = ACTIONS(1147), - [anon_sym_if] = ACTIONS(1147), - [anon_sym_else] = ACTIONS(1151), - [anon_sym_switch] = ACTIONS(1147), - [anon_sym_case] = ACTIONS(1147), - [anon_sym_default] = ACTIONS(1147), - [anon_sym_while] = ACTIONS(1147), - [anon_sym_do] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1147), - [anon_sym_return] = ACTIONS(1147), - [anon_sym_break] = ACTIONS(1147), - [anon_sym_continue] = ACTIONS(1147), - [anon_sym_goto] = ACTIONS(1147), - [anon_sym___try] = ACTIONS(1147), - [anon_sym___leave] = ACTIONS(1147), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_sizeof] = ACTIONS(1147), - [anon_sym___alignof__] = ACTIONS(1147), - [anon_sym___alignof] = ACTIONS(1147), - [anon_sym__alignof] = ACTIONS(1147), - [anon_sym_alignof] = ACTIONS(1147), - [anon_sym__Alignof] = ACTIONS(1147), - [anon_sym_offsetof] = ACTIONS(1147), - [anon_sym__Generic] = ACTIONS(1147), - [anon_sym_asm] = ACTIONS(1147), - [anon_sym___asm__] = ACTIONS(1147), - [sym_number_literal] = ACTIONS(1149), - [anon_sym_L_SQUOTE] = ACTIONS(1149), - [anon_sym_u_SQUOTE] = ACTIONS(1149), - [anon_sym_U_SQUOTE] = ACTIONS(1149), - [anon_sym_u8_SQUOTE] = ACTIONS(1149), - [anon_sym_SQUOTE] = ACTIONS(1149), - [anon_sym_L_DQUOTE] = ACTIONS(1149), - [anon_sym_u_DQUOTE] = ACTIONS(1149), - [anon_sym_U_DQUOTE] = ACTIONS(1149), - [anon_sym_u8_DQUOTE] = ACTIONS(1149), - [anon_sym_DQUOTE] = ACTIONS(1149), - [sym_true] = ACTIONS(1147), - [sym_false] = ACTIONS(1147), - [anon_sym_NULL] = ACTIONS(1147), - [anon_sym_nullptr] = ACTIONS(1147), - [sym_comment] = ACTIONS(3), + [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__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(1208), + [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_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), }, [76] = { - [sym_identifier] = ACTIONS(1153), - [aux_sym_preproc_include_token1] = ACTIONS(1153), - [aux_sym_preproc_def_token1] = ACTIONS(1153), - [aux_sym_preproc_if_token1] = ACTIONS(1153), - [aux_sym_preproc_if_token2] = ACTIONS(1153), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1153), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1153), - [aux_sym_preproc_else_token1] = ACTIONS(1153), - [aux_sym_preproc_elif_token1] = ACTIONS(1153), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1153), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1153), - [sym_preproc_directive] = ACTIONS(1153), - [anon_sym_LPAREN2] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1155), - [anon_sym_TILDE] = ACTIONS(1155), - [anon_sym_DASH] = ACTIONS(1153), - [anon_sym_PLUS] = ACTIONS(1153), - [anon_sym_STAR] = ACTIONS(1155), - [anon_sym_AMP] = ACTIONS(1155), - [anon_sym_SEMI] = ACTIONS(1155), - [anon_sym___extension__] = ACTIONS(1153), - [anon_sym_typedef] = ACTIONS(1153), - [anon_sym_extern] = ACTIONS(1153), - [anon_sym___attribute__] = ACTIONS(1153), - [anon_sym___scanf] = ACTIONS(1153), - [anon_sym___printf] = ACTIONS(1153), - [anon_sym___read_mostly] = ACTIONS(1153), - [anon_sym___must_hold] = ACTIONS(1153), - [anon_sym___ro_after_init] = ACTIONS(1153), - [anon_sym___noreturn] = ACTIONS(1153), - [anon_sym___cold] = ACTIONS(1153), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1155), - [anon_sym___declspec] = ACTIONS(1153), - [anon_sym___init] = ACTIONS(1153), - [anon_sym___exit] = ACTIONS(1153), - [anon_sym___cdecl] = ACTIONS(1153), - [anon_sym___clrcall] = ACTIONS(1153), - [anon_sym___stdcall] = ACTIONS(1153), - [anon_sym___fastcall] = ACTIONS(1153), - [anon_sym___thiscall] = ACTIONS(1153), - [anon_sym___vectorcall] = ACTIONS(1153), - [anon_sym_LBRACE] = ACTIONS(1155), - [anon_sym_signed] = ACTIONS(1153), - [anon_sym_unsigned] = ACTIONS(1153), - [anon_sym_long] = ACTIONS(1153), - [anon_sym_short] = ACTIONS(1153), - [anon_sym_static] = ACTIONS(1153), - [anon_sym_auto] = ACTIONS(1153), - [anon_sym_register] = ACTIONS(1153), - [anon_sym_inline] = ACTIONS(1153), - [anon_sym___inline] = ACTIONS(1153), - [anon_sym___inline__] = ACTIONS(1153), - [anon_sym___forceinline] = ACTIONS(1153), - [anon_sym_thread_local] = ACTIONS(1153), - [anon_sym___thread] = ACTIONS(1153), - [anon_sym_const] = ACTIONS(1153), - [anon_sym_constexpr] = ACTIONS(1153), - [anon_sym_volatile] = ACTIONS(1153), - [anon_sym_restrict] = ACTIONS(1153), - [anon_sym___restrict__] = ACTIONS(1153), - [anon_sym__Atomic] = ACTIONS(1153), - [anon_sym__Noreturn] = ACTIONS(1153), - [anon_sym_noreturn] = ACTIONS(1153), - [anon_sym_alignas] = ACTIONS(1153), - [anon_sym__Alignas] = ACTIONS(1153), - [sym_primitive_type] = ACTIONS(1153), - [anon_sym_enum] = ACTIONS(1153), - [anon_sym_struct] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1153), - [anon_sym_if] = ACTIONS(1153), - [anon_sym_else] = ACTIONS(1153), - [anon_sym_switch] = ACTIONS(1153), - [anon_sym_case] = ACTIONS(1153), - [anon_sym_default] = ACTIONS(1153), - [anon_sym_while] = ACTIONS(1153), - [anon_sym_do] = ACTIONS(1153), - [anon_sym_for] = ACTIONS(1153), - [anon_sym_return] = ACTIONS(1153), - [anon_sym_break] = ACTIONS(1153), - [anon_sym_continue] = ACTIONS(1153), - [anon_sym_goto] = ACTIONS(1153), - [anon_sym___try] = ACTIONS(1153), - [anon_sym___leave] = ACTIONS(1153), - [anon_sym_DASH_DASH] = ACTIONS(1155), - [anon_sym_PLUS_PLUS] = ACTIONS(1155), - [anon_sym_sizeof] = ACTIONS(1153), - [anon_sym___alignof__] = ACTIONS(1153), - [anon_sym___alignof] = ACTIONS(1153), - [anon_sym__alignof] = ACTIONS(1153), - [anon_sym_alignof] = ACTIONS(1153), - [anon_sym__Alignof] = ACTIONS(1153), - [anon_sym_offsetof] = ACTIONS(1153), - [anon_sym__Generic] = ACTIONS(1153), - [anon_sym_asm] = ACTIONS(1153), - [anon_sym___asm__] = ACTIONS(1153), - [sym_number_literal] = ACTIONS(1155), - [anon_sym_L_SQUOTE] = ACTIONS(1155), - [anon_sym_u_SQUOTE] = ACTIONS(1155), - [anon_sym_U_SQUOTE] = ACTIONS(1155), - [anon_sym_u8_SQUOTE] = ACTIONS(1155), - [anon_sym_SQUOTE] = ACTIONS(1155), - [anon_sym_L_DQUOTE] = ACTIONS(1155), - [anon_sym_u_DQUOTE] = ACTIONS(1155), - [anon_sym_U_DQUOTE] = ACTIONS(1155), - [anon_sym_u8_DQUOTE] = ACTIONS(1155), - [anon_sym_DQUOTE] = ACTIONS(1155), - [sym_true] = ACTIONS(1153), - [sym_false] = ACTIONS(1153), - [anon_sym_NULL] = ACTIONS(1153), - [anon_sym_nullptr] = ACTIONS(1153), - [sym_comment] = ACTIONS(3), + [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_identifier] = ACTIONS(1206), + [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(1208), + [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_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), }, [77] = { - [sym_identifier] = ACTIONS(1157), - [aux_sym_preproc_include_token1] = ACTIONS(1157), - [aux_sym_preproc_def_token1] = ACTIONS(1157), - [aux_sym_preproc_if_token1] = ACTIONS(1157), - [aux_sym_preproc_if_token2] = ACTIONS(1157), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1157), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1157), - [aux_sym_preproc_else_token1] = ACTIONS(1157), - [aux_sym_preproc_elif_token1] = ACTIONS(1157), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1157), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1157), - [sym_preproc_directive] = ACTIONS(1157), - [anon_sym_LPAREN2] = ACTIONS(1159), - [anon_sym_BANG] = ACTIONS(1159), - [anon_sym_TILDE] = ACTIONS(1159), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_STAR] = ACTIONS(1159), - [anon_sym_AMP] = ACTIONS(1159), - [anon_sym_SEMI] = ACTIONS(1159), - [anon_sym___extension__] = ACTIONS(1157), - [anon_sym_typedef] = ACTIONS(1157), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym___attribute__] = ACTIONS(1157), - [anon_sym___scanf] = ACTIONS(1157), - [anon_sym___printf] = ACTIONS(1157), - [anon_sym___read_mostly] = ACTIONS(1157), - [anon_sym___must_hold] = ACTIONS(1157), - [anon_sym___ro_after_init] = ACTIONS(1157), - [anon_sym___noreturn] = ACTIONS(1157), - [anon_sym___cold] = ACTIONS(1157), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1159), - [anon_sym___declspec] = ACTIONS(1157), - [anon_sym___init] = ACTIONS(1157), - [anon_sym___exit] = ACTIONS(1157), - [anon_sym___cdecl] = ACTIONS(1157), - [anon_sym___clrcall] = ACTIONS(1157), - [anon_sym___stdcall] = ACTIONS(1157), - [anon_sym___fastcall] = ACTIONS(1157), - [anon_sym___thiscall] = ACTIONS(1157), - [anon_sym___vectorcall] = ACTIONS(1157), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_signed] = ACTIONS(1157), - [anon_sym_unsigned] = ACTIONS(1157), - [anon_sym_long] = ACTIONS(1157), - [anon_sym_short] = ACTIONS(1157), - [anon_sym_static] = ACTIONS(1157), - [anon_sym_auto] = ACTIONS(1157), - [anon_sym_register] = ACTIONS(1157), - [anon_sym_inline] = ACTIONS(1157), - [anon_sym___inline] = ACTIONS(1157), - [anon_sym___inline__] = ACTIONS(1157), - [anon_sym___forceinline] = ACTIONS(1157), - [anon_sym_thread_local] = ACTIONS(1157), - [anon_sym___thread] = ACTIONS(1157), - [anon_sym_const] = ACTIONS(1157), - [anon_sym_constexpr] = ACTIONS(1157), - [anon_sym_volatile] = ACTIONS(1157), - [anon_sym_restrict] = ACTIONS(1157), - [anon_sym___restrict__] = ACTIONS(1157), - [anon_sym__Atomic] = ACTIONS(1157), - [anon_sym__Noreturn] = ACTIONS(1157), - [anon_sym_noreturn] = ACTIONS(1157), - [anon_sym_alignas] = ACTIONS(1157), - [anon_sym__Alignas] = ACTIONS(1157), - [sym_primitive_type] = ACTIONS(1157), - [anon_sym_enum] = ACTIONS(1157), - [anon_sym_struct] = ACTIONS(1157), - [anon_sym_union] = ACTIONS(1157), - [anon_sym_if] = ACTIONS(1157), - [anon_sym_else] = ACTIONS(1157), - [anon_sym_switch] = ACTIONS(1157), - [anon_sym_case] = ACTIONS(1157), - [anon_sym_default] = ACTIONS(1157), - [anon_sym_while] = ACTIONS(1157), - [anon_sym_do] = ACTIONS(1157), - [anon_sym_for] = ACTIONS(1157), - [anon_sym_return] = ACTIONS(1157), - [anon_sym_break] = ACTIONS(1157), - [anon_sym_continue] = ACTIONS(1157), - [anon_sym_goto] = ACTIONS(1157), - [anon_sym___try] = ACTIONS(1157), - [anon_sym___leave] = ACTIONS(1157), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_sizeof] = ACTIONS(1157), - [anon_sym___alignof__] = ACTIONS(1157), - [anon_sym___alignof] = ACTIONS(1157), - [anon_sym__alignof] = ACTIONS(1157), - [anon_sym_alignof] = ACTIONS(1157), - [anon_sym__Alignof] = ACTIONS(1157), - [anon_sym_offsetof] = ACTIONS(1157), - [anon_sym__Generic] = ACTIONS(1157), - [anon_sym_asm] = ACTIONS(1157), - [anon_sym___asm__] = ACTIONS(1157), - [sym_number_literal] = ACTIONS(1159), - [anon_sym_L_SQUOTE] = ACTIONS(1159), - [anon_sym_u_SQUOTE] = ACTIONS(1159), - [anon_sym_U_SQUOTE] = ACTIONS(1159), - [anon_sym_u8_SQUOTE] = ACTIONS(1159), - [anon_sym_SQUOTE] = ACTIONS(1159), - [anon_sym_L_DQUOTE] = ACTIONS(1159), - [anon_sym_u_DQUOTE] = ACTIONS(1159), - [anon_sym_U_DQUOTE] = ACTIONS(1159), - [anon_sym_u8_DQUOTE] = ACTIONS(1159), - [anon_sym_DQUOTE] = ACTIONS(1159), - [sym_true] = ACTIONS(1157), - [sym_false] = ACTIONS(1157), - [anon_sym_NULL] = ACTIONS(1157), - [anon_sym_nullptr] = ACTIONS(1157), - [sym_comment] = ACTIONS(3), + [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__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(1208), + [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_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), }, [78] = { - [sym_identifier] = ACTIONS(1161), - [aux_sym_preproc_include_token1] = ACTIONS(1161), - [aux_sym_preproc_def_token1] = ACTIONS(1161), - [aux_sym_preproc_if_token1] = ACTIONS(1161), - [aux_sym_preproc_if_token2] = ACTIONS(1161), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1161), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1161), - [aux_sym_preproc_else_token1] = ACTIONS(1161), - [aux_sym_preproc_elif_token1] = ACTIONS(1161), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1161), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1161), - [sym_preproc_directive] = ACTIONS(1161), - [anon_sym_LPAREN2] = ACTIONS(1163), - [anon_sym_BANG] = ACTIONS(1163), - [anon_sym_TILDE] = ACTIONS(1163), - [anon_sym_DASH] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_STAR] = ACTIONS(1163), - [anon_sym_AMP] = ACTIONS(1163), - [anon_sym_SEMI] = ACTIONS(1163), - [anon_sym___extension__] = ACTIONS(1161), - [anon_sym_typedef] = ACTIONS(1161), - [anon_sym_extern] = ACTIONS(1161), - [anon_sym___attribute__] = ACTIONS(1161), - [anon_sym___scanf] = ACTIONS(1161), - [anon_sym___printf] = ACTIONS(1161), - [anon_sym___read_mostly] = ACTIONS(1161), - [anon_sym___must_hold] = ACTIONS(1161), - [anon_sym___ro_after_init] = ACTIONS(1161), - [anon_sym___noreturn] = ACTIONS(1161), - [anon_sym___cold] = ACTIONS(1161), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1163), - [anon_sym___declspec] = ACTIONS(1161), - [anon_sym___init] = ACTIONS(1161), - [anon_sym___exit] = ACTIONS(1161), - [anon_sym___cdecl] = ACTIONS(1161), - [anon_sym___clrcall] = ACTIONS(1161), - [anon_sym___stdcall] = ACTIONS(1161), - [anon_sym___fastcall] = ACTIONS(1161), - [anon_sym___thiscall] = ACTIONS(1161), - [anon_sym___vectorcall] = ACTIONS(1161), - [anon_sym_LBRACE] = ACTIONS(1163), - [anon_sym_signed] = ACTIONS(1161), - [anon_sym_unsigned] = ACTIONS(1161), - [anon_sym_long] = ACTIONS(1161), - [anon_sym_short] = ACTIONS(1161), - [anon_sym_static] = ACTIONS(1161), - [anon_sym_auto] = ACTIONS(1161), - [anon_sym_register] = ACTIONS(1161), - [anon_sym_inline] = ACTIONS(1161), - [anon_sym___inline] = ACTIONS(1161), - [anon_sym___inline__] = ACTIONS(1161), - [anon_sym___forceinline] = ACTIONS(1161), - [anon_sym_thread_local] = ACTIONS(1161), - [anon_sym___thread] = ACTIONS(1161), - [anon_sym_const] = ACTIONS(1161), - [anon_sym_constexpr] = ACTIONS(1161), - [anon_sym_volatile] = ACTIONS(1161), - [anon_sym_restrict] = ACTIONS(1161), - [anon_sym___restrict__] = ACTIONS(1161), - [anon_sym__Atomic] = ACTIONS(1161), - [anon_sym__Noreturn] = ACTIONS(1161), - [anon_sym_noreturn] = ACTIONS(1161), - [anon_sym_alignas] = ACTIONS(1161), - [anon_sym__Alignas] = ACTIONS(1161), - [sym_primitive_type] = ACTIONS(1161), - [anon_sym_enum] = ACTIONS(1161), - [anon_sym_struct] = ACTIONS(1161), - [anon_sym_union] = ACTIONS(1161), - [anon_sym_if] = ACTIONS(1161), - [anon_sym_else] = ACTIONS(1161), - [anon_sym_switch] = ACTIONS(1161), - [anon_sym_case] = ACTIONS(1161), - [anon_sym_default] = ACTIONS(1161), - [anon_sym_while] = ACTIONS(1161), - [anon_sym_do] = ACTIONS(1161), - [anon_sym_for] = ACTIONS(1161), - [anon_sym_return] = ACTIONS(1161), - [anon_sym_break] = ACTIONS(1161), - [anon_sym_continue] = ACTIONS(1161), - [anon_sym_goto] = ACTIONS(1161), - [anon_sym___try] = ACTIONS(1161), - [anon_sym___leave] = ACTIONS(1161), - [anon_sym_DASH_DASH] = ACTIONS(1163), - [anon_sym_PLUS_PLUS] = ACTIONS(1163), - [anon_sym_sizeof] = ACTIONS(1161), - [anon_sym___alignof__] = ACTIONS(1161), - [anon_sym___alignof] = ACTIONS(1161), - [anon_sym__alignof] = ACTIONS(1161), - [anon_sym_alignof] = ACTIONS(1161), - [anon_sym__Alignof] = ACTIONS(1161), - [anon_sym_offsetof] = ACTIONS(1161), - [anon_sym__Generic] = ACTIONS(1161), - [anon_sym_asm] = ACTIONS(1161), - [anon_sym___asm__] = ACTIONS(1161), - [sym_number_literal] = ACTIONS(1163), - [anon_sym_L_SQUOTE] = ACTIONS(1163), - [anon_sym_u_SQUOTE] = ACTIONS(1163), - [anon_sym_U_SQUOTE] = ACTIONS(1163), - [anon_sym_u8_SQUOTE] = ACTIONS(1163), - [anon_sym_SQUOTE] = ACTIONS(1163), - [anon_sym_L_DQUOTE] = ACTIONS(1163), - [anon_sym_u_DQUOTE] = ACTIONS(1163), - [anon_sym_U_DQUOTE] = ACTIONS(1163), - [anon_sym_u8_DQUOTE] = ACTIONS(1163), - [anon_sym_DQUOTE] = ACTIONS(1163), - [sym_true] = ACTIONS(1161), - [sym_false] = ACTIONS(1161), - [anon_sym_NULL] = ACTIONS(1161), - [anon_sym_nullptr] = ACTIONS(1161), - [sym_comment] = ACTIONS(3), + [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__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(1208), + [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_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), }, [79] = { - [sym_identifier] = ACTIONS(1165), - [aux_sym_preproc_include_token1] = ACTIONS(1165), - [aux_sym_preproc_def_token1] = ACTIONS(1165), - [aux_sym_preproc_if_token1] = ACTIONS(1165), - [aux_sym_preproc_if_token2] = ACTIONS(1165), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1165), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1165), - [aux_sym_preproc_else_token1] = ACTIONS(1165), - [aux_sym_preproc_elif_token1] = ACTIONS(1165), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1165), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1165), - [sym_preproc_directive] = ACTIONS(1165), - [anon_sym_LPAREN2] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1167), - [anon_sym_TILDE] = ACTIONS(1167), - [anon_sym_DASH] = ACTIONS(1165), - [anon_sym_PLUS] = ACTIONS(1165), - [anon_sym_STAR] = ACTIONS(1167), - [anon_sym_AMP] = ACTIONS(1167), - [anon_sym_SEMI] = ACTIONS(1167), - [anon_sym___extension__] = ACTIONS(1165), - [anon_sym_typedef] = ACTIONS(1165), - [anon_sym_extern] = ACTIONS(1165), - [anon_sym___attribute__] = ACTIONS(1165), - [anon_sym___scanf] = ACTIONS(1165), - [anon_sym___printf] = ACTIONS(1165), - [anon_sym___read_mostly] = ACTIONS(1165), - [anon_sym___must_hold] = ACTIONS(1165), - [anon_sym___ro_after_init] = ACTIONS(1165), - [anon_sym___noreturn] = ACTIONS(1165), - [anon_sym___cold] = ACTIONS(1165), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1167), - [anon_sym___declspec] = ACTIONS(1165), - [anon_sym___init] = ACTIONS(1165), - [anon_sym___exit] = ACTIONS(1165), - [anon_sym___cdecl] = ACTIONS(1165), - [anon_sym___clrcall] = ACTIONS(1165), - [anon_sym___stdcall] = ACTIONS(1165), - [anon_sym___fastcall] = ACTIONS(1165), - [anon_sym___thiscall] = ACTIONS(1165), - [anon_sym___vectorcall] = ACTIONS(1165), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_signed] = ACTIONS(1165), - [anon_sym_unsigned] = ACTIONS(1165), - [anon_sym_long] = ACTIONS(1165), - [anon_sym_short] = ACTIONS(1165), - [anon_sym_static] = ACTIONS(1165), - [anon_sym_auto] = ACTIONS(1165), - [anon_sym_register] = ACTIONS(1165), - [anon_sym_inline] = ACTIONS(1165), - [anon_sym___inline] = ACTIONS(1165), - [anon_sym___inline__] = ACTIONS(1165), - [anon_sym___forceinline] = ACTIONS(1165), - [anon_sym_thread_local] = ACTIONS(1165), - [anon_sym___thread] = ACTIONS(1165), - [anon_sym_const] = ACTIONS(1165), - [anon_sym_constexpr] = ACTIONS(1165), - [anon_sym_volatile] = ACTIONS(1165), - [anon_sym_restrict] = ACTIONS(1165), - [anon_sym___restrict__] = ACTIONS(1165), - [anon_sym__Atomic] = ACTIONS(1165), - [anon_sym__Noreturn] = ACTIONS(1165), - [anon_sym_noreturn] = ACTIONS(1165), - [anon_sym_alignas] = ACTIONS(1165), - [anon_sym__Alignas] = ACTIONS(1165), - [sym_primitive_type] = ACTIONS(1165), - [anon_sym_enum] = ACTIONS(1165), - [anon_sym_struct] = ACTIONS(1165), - [anon_sym_union] = ACTIONS(1165), - [anon_sym_if] = ACTIONS(1165), - [anon_sym_else] = ACTIONS(1165), - [anon_sym_switch] = ACTIONS(1165), - [anon_sym_case] = ACTIONS(1165), - [anon_sym_default] = ACTIONS(1165), - [anon_sym_while] = ACTIONS(1165), - [anon_sym_do] = ACTIONS(1165), - [anon_sym_for] = ACTIONS(1165), - [anon_sym_return] = ACTIONS(1165), - [anon_sym_break] = ACTIONS(1165), - [anon_sym_continue] = ACTIONS(1165), - [anon_sym_goto] = ACTIONS(1165), - [anon_sym___try] = ACTIONS(1165), - [anon_sym___leave] = ACTIONS(1165), - [anon_sym_DASH_DASH] = ACTIONS(1167), - [anon_sym_PLUS_PLUS] = ACTIONS(1167), - [anon_sym_sizeof] = ACTIONS(1165), - [anon_sym___alignof__] = ACTIONS(1165), - [anon_sym___alignof] = ACTIONS(1165), - [anon_sym__alignof] = ACTIONS(1165), - [anon_sym_alignof] = ACTIONS(1165), - [anon_sym__Alignof] = ACTIONS(1165), - [anon_sym_offsetof] = ACTIONS(1165), - [anon_sym__Generic] = ACTIONS(1165), - [anon_sym_asm] = ACTIONS(1165), - [anon_sym___asm__] = ACTIONS(1165), - [sym_number_literal] = ACTIONS(1167), - [anon_sym_L_SQUOTE] = ACTIONS(1167), - [anon_sym_u_SQUOTE] = ACTIONS(1167), - [anon_sym_U_SQUOTE] = ACTIONS(1167), - [anon_sym_u8_SQUOTE] = ACTIONS(1167), - [anon_sym_SQUOTE] = ACTIONS(1167), - [anon_sym_L_DQUOTE] = ACTIONS(1167), - [anon_sym_u_DQUOTE] = ACTIONS(1167), - [anon_sym_U_DQUOTE] = ACTIONS(1167), - [anon_sym_u8_DQUOTE] = ACTIONS(1167), - [anon_sym_DQUOTE] = ACTIONS(1167), - [sym_true] = ACTIONS(1165), - [sym_false] = ACTIONS(1165), - [anon_sym_NULL] = ACTIONS(1165), - [anon_sym_nullptr] = ACTIONS(1165), - [sym_comment] = ACTIONS(3), + [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__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(1208), + [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_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), }, [80] = { - [sym_identifier] = ACTIONS(1169), - [aux_sym_preproc_include_token1] = ACTIONS(1169), - [aux_sym_preproc_def_token1] = ACTIONS(1169), - [aux_sym_preproc_if_token1] = ACTIONS(1169), - [aux_sym_preproc_if_token2] = ACTIONS(1169), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1169), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1169), - [aux_sym_preproc_else_token1] = ACTIONS(1169), - [aux_sym_preproc_elif_token1] = ACTIONS(1169), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1169), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1169), - [sym_preproc_directive] = ACTIONS(1169), - [anon_sym_LPAREN2] = ACTIONS(1171), - [anon_sym_BANG] = ACTIONS(1171), - [anon_sym_TILDE] = ACTIONS(1171), - [anon_sym_DASH] = ACTIONS(1169), - [anon_sym_PLUS] = ACTIONS(1169), - [anon_sym_STAR] = ACTIONS(1171), - [anon_sym_AMP] = ACTIONS(1171), - [anon_sym_SEMI] = ACTIONS(1171), - [anon_sym___extension__] = ACTIONS(1169), - [anon_sym_typedef] = ACTIONS(1169), - [anon_sym_extern] = ACTIONS(1169), - [anon_sym___attribute__] = ACTIONS(1169), - [anon_sym___scanf] = ACTIONS(1169), - [anon_sym___printf] = ACTIONS(1169), - [anon_sym___read_mostly] = ACTIONS(1169), - [anon_sym___must_hold] = ACTIONS(1169), - [anon_sym___ro_after_init] = ACTIONS(1169), - [anon_sym___noreturn] = ACTIONS(1169), - [anon_sym___cold] = ACTIONS(1169), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1171), - [anon_sym___declspec] = ACTIONS(1169), - [anon_sym___init] = ACTIONS(1169), - [anon_sym___exit] = ACTIONS(1169), - [anon_sym___cdecl] = ACTIONS(1169), - [anon_sym___clrcall] = ACTIONS(1169), - [anon_sym___stdcall] = ACTIONS(1169), - [anon_sym___fastcall] = ACTIONS(1169), - [anon_sym___thiscall] = ACTIONS(1169), - [anon_sym___vectorcall] = ACTIONS(1169), - [anon_sym_LBRACE] = ACTIONS(1171), - [anon_sym_signed] = ACTIONS(1169), - [anon_sym_unsigned] = ACTIONS(1169), - [anon_sym_long] = ACTIONS(1169), - [anon_sym_short] = ACTIONS(1169), - [anon_sym_static] = ACTIONS(1169), - [anon_sym_auto] = ACTIONS(1169), - [anon_sym_register] = ACTIONS(1169), - [anon_sym_inline] = ACTIONS(1169), - [anon_sym___inline] = ACTIONS(1169), - [anon_sym___inline__] = ACTIONS(1169), - [anon_sym___forceinline] = ACTIONS(1169), - [anon_sym_thread_local] = ACTIONS(1169), - [anon_sym___thread] = ACTIONS(1169), - [anon_sym_const] = ACTIONS(1169), - [anon_sym_constexpr] = ACTIONS(1169), - [anon_sym_volatile] = ACTIONS(1169), - [anon_sym_restrict] = ACTIONS(1169), - [anon_sym___restrict__] = ACTIONS(1169), - [anon_sym__Atomic] = ACTIONS(1169), - [anon_sym__Noreturn] = ACTIONS(1169), - [anon_sym_noreturn] = ACTIONS(1169), - [anon_sym_alignas] = ACTIONS(1169), - [anon_sym__Alignas] = ACTIONS(1169), - [sym_primitive_type] = ACTIONS(1169), - [anon_sym_enum] = ACTIONS(1169), - [anon_sym_struct] = ACTIONS(1169), - [anon_sym_union] = ACTIONS(1169), - [anon_sym_if] = ACTIONS(1169), - [anon_sym_else] = ACTIONS(1169), - [anon_sym_switch] = ACTIONS(1169), - [anon_sym_case] = ACTIONS(1169), - [anon_sym_default] = ACTIONS(1169), - [anon_sym_while] = ACTIONS(1169), - [anon_sym_do] = ACTIONS(1169), - [anon_sym_for] = ACTIONS(1169), - [anon_sym_return] = ACTIONS(1169), - [anon_sym_break] = ACTIONS(1169), - [anon_sym_continue] = ACTIONS(1169), - [anon_sym_goto] = ACTIONS(1169), - [anon_sym___try] = ACTIONS(1169), - [anon_sym___leave] = ACTIONS(1169), - [anon_sym_DASH_DASH] = ACTIONS(1171), - [anon_sym_PLUS_PLUS] = ACTIONS(1171), - [anon_sym_sizeof] = ACTIONS(1169), - [anon_sym___alignof__] = ACTIONS(1169), - [anon_sym___alignof] = ACTIONS(1169), - [anon_sym__alignof] = ACTIONS(1169), - [anon_sym_alignof] = ACTIONS(1169), - [anon_sym__Alignof] = ACTIONS(1169), - [anon_sym_offsetof] = ACTIONS(1169), - [anon_sym__Generic] = ACTIONS(1169), - [anon_sym_asm] = ACTIONS(1169), - [anon_sym___asm__] = ACTIONS(1169), - [sym_number_literal] = ACTIONS(1171), - [anon_sym_L_SQUOTE] = ACTIONS(1171), - [anon_sym_u_SQUOTE] = ACTIONS(1171), - [anon_sym_U_SQUOTE] = ACTIONS(1171), - [anon_sym_u8_SQUOTE] = ACTIONS(1171), - [anon_sym_SQUOTE] = ACTIONS(1171), - [anon_sym_L_DQUOTE] = ACTIONS(1171), - [anon_sym_u_DQUOTE] = ACTIONS(1171), - [anon_sym_U_DQUOTE] = ACTIONS(1171), - [anon_sym_u8_DQUOTE] = ACTIONS(1171), - [anon_sym_DQUOTE] = ACTIONS(1171), - [sym_true] = ACTIONS(1169), - [sym_false] = ACTIONS(1169), - [anon_sym_NULL] = ACTIONS(1169), - [anon_sym_nullptr] = ACTIONS(1169), - [sym_comment] = ACTIONS(3), + [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), + [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(1173), - [aux_sym_preproc_include_token1] = ACTIONS(1173), - [aux_sym_preproc_def_token1] = ACTIONS(1173), - [aux_sym_preproc_if_token1] = ACTIONS(1173), - [aux_sym_preproc_if_token2] = ACTIONS(1173), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1173), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1173), - [aux_sym_preproc_else_token1] = ACTIONS(1173), - [aux_sym_preproc_elif_token1] = ACTIONS(1173), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1173), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1173), - [sym_preproc_directive] = ACTIONS(1173), - [anon_sym_LPAREN2] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1175), - [anon_sym_TILDE] = ACTIONS(1175), - [anon_sym_DASH] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1173), - [anon_sym_STAR] = ACTIONS(1175), - [anon_sym_AMP] = ACTIONS(1175), - [anon_sym_SEMI] = ACTIONS(1175), - [anon_sym___extension__] = ACTIONS(1173), - [anon_sym_typedef] = ACTIONS(1173), - [anon_sym_extern] = ACTIONS(1173), - [anon_sym___attribute__] = ACTIONS(1173), - [anon_sym___scanf] = ACTIONS(1173), - [anon_sym___printf] = ACTIONS(1173), - [anon_sym___read_mostly] = ACTIONS(1173), - [anon_sym___must_hold] = ACTIONS(1173), - [anon_sym___ro_after_init] = ACTIONS(1173), - [anon_sym___noreturn] = ACTIONS(1173), - [anon_sym___cold] = ACTIONS(1173), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1175), - [anon_sym___declspec] = ACTIONS(1173), - [anon_sym___init] = ACTIONS(1173), - [anon_sym___exit] = ACTIONS(1173), - [anon_sym___cdecl] = ACTIONS(1173), - [anon_sym___clrcall] = ACTIONS(1173), - [anon_sym___stdcall] = ACTIONS(1173), - [anon_sym___fastcall] = ACTIONS(1173), - [anon_sym___thiscall] = ACTIONS(1173), - [anon_sym___vectorcall] = ACTIONS(1173), - [anon_sym_LBRACE] = ACTIONS(1175), - [anon_sym_signed] = ACTIONS(1173), - [anon_sym_unsigned] = ACTIONS(1173), - [anon_sym_long] = ACTIONS(1173), - [anon_sym_short] = ACTIONS(1173), - [anon_sym_static] = ACTIONS(1173), - [anon_sym_auto] = ACTIONS(1173), - [anon_sym_register] = ACTIONS(1173), - [anon_sym_inline] = ACTIONS(1173), - [anon_sym___inline] = ACTIONS(1173), - [anon_sym___inline__] = ACTIONS(1173), - [anon_sym___forceinline] = ACTIONS(1173), - [anon_sym_thread_local] = ACTIONS(1173), - [anon_sym___thread] = ACTIONS(1173), - [anon_sym_const] = ACTIONS(1173), - [anon_sym_constexpr] = ACTIONS(1173), - [anon_sym_volatile] = ACTIONS(1173), - [anon_sym_restrict] = ACTIONS(1173), - [anon_sym___restrict__] = ACTIONS(1173), - [anon_sym__Atomic] = ACTIONS(1173), - [anon_sym__Noreturn] = ACTIONS(1173), - [anon_sym_noreturn] = ACTIONS(1173), - [anon_sym_alignas] = ACTIONS(1173), - [anon_sym__Alignas] = ACTIONS(1173), - [sym_primitive_type] = ACTIONS(1173), - [anon_sym_enum] = ACTIONS(1173), - [anon_sym_struct] = ACTIONS(1173), - [anon_sym_union] = ACTIONS(1173), - [anon_sym_if] = ACTIONS(1173), - [anon_sym_else] = ACTIONS(1173), - [anon_sym_switch] = ACTIONS(1173), - [anon_sym_case] = ACTIONS(1173), - [anon_sym_default] = ACTIONS(1173), - [anon_sym_while] = ACTIONS(1173), - [anon_sym_do] = ACTIONS(1173), - [anon_sym_for] = ACTIONS(1173), - [anon_sym_return] = ACTIONS(1173), - [anon_sym_break] = ACTIONS(1173), - [anon_sym_continue] = ACTIONS(1173), - [anon_sym_goto] = ACTIONS(1173), - [anon_sym___try] = ACTIONS(1173), - [anon_sym___leave] = ACTIONS(1173), - [anon_sym_DASH_DASH] = ACTIONS(1175), - [anon_sym_PLUS_PLUS] = ACTIONS(1175), - [anon_sym_sizeof] = ACTIONS(1173), - [anon_sym___alignof__] = ACTIONS(1173), - [anon_sym___alignof] = ACTIONS(1173), - [anon_sym__alignof] = ACTIONS(1173), - [anon_sym_alignof] = ACTIONS(1173), - [anon_sym__Alignof] = ACTIONS(1173), - [anon_sym_offsetof] = ACTIONS(1173), - [anon_sym__Generic] = ACTIONS(1173), - [anon_sym_asm] = ACTIONS(1173), - [anon_sym___asm__] = ACTIONS(1173), - [sym_number_literal] = ACTIONS(1175), - [anon_sym_L_SQUOTE] = ACTIONS(1175), - [anon_sym_u_SQUOTE] = ACTIONS(1175), - [anon_sym_U_SQUOTE] = ACTIONS(1175), - [anon_sym_u8_SQUOTE] = ACTIONS(1175), - [anon_sym_SQUOTE] = ACTIONS(1175), - [anon_sym_L_DQUOTE] = ACTIONS(1175), - [anon_sym_u_DQUOTE] = ACTIONS(1175), - [anon_sym_U_DQUOTE] = ACTIONS(1175), - [anon_sym_u8_DQUOTE] = ACTIONS(1175), - [anon_sym_DQUOTE] = ACTIONS(1175), - [sym_true] = ACTIONS(1173), - [sym_false] = ACTIONS(1173), - [anon_sym_NULL] = ACTIONS(1173), - [anon_sym_nullptr] = ACTIONS(1173), - [sym_comment] = ACTIONS(3), + [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), + [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(1177), - [aux_sym_preproc_include_token1] = ACTIONS(1177), - [aux_sym_preproc_def_token1] = ACTIONS(1177), - [aux_sym_preproc_if_token1] = ACTIONS(1177), - [aux_sym_preproc_if_token2] = ACTIONS(1177), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1177), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1177), - [aux_sym_preproc_else_token1] = ACTIONS(1177), - [aux_sym_preproc_elif_token1] = ACTIONS(1177), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1177), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1177), - [sym_preproc_directive] = ACTIONS(1177), - [anon_sym_LPAREN2] = ACTIONS(1179), - [anon_sym_BANG] = ACTIONS(1179), - [anon_sym_TILDE] = ACTIONS(1179), - [anon_sym_DASH] = ACTIONS(1177), - [anon_sym_PLUS] = ACTIONS(1177), - [anon_sym_STAR] = ACTIONS(1179), - [anon_sym_AMP] = ACTIONS(1179), - [anon_sym_SEMI] = ACTIONS(1179), - [anon_sym___extension__] = ACTIONS(1177), - [anon_sym_typedef] = ACTIONS(1177), - [anon_sym_extern] = ACTIONS(1177), - [anon_sym___attribute__] = ACTIONS(1177), - [anon_sym___scanf] = ACTIONS(1177), - [anon_sym___printf] = ACTIONS(1177), - [anon_sym___read_mostly] = ACTIONS(1177), - [anon_sym___must_hold] = ACTIONS(1177), - [anon_sym___ro_after_init] = ACTIONS(1177), - [anon_sym___noreturn] = ACTIONS(1177), - [anon_sym___cold] = ACTIONS(1177), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1179), - [anon_sym___declspec] = ACTIONS(1177), - [anon_sym___init] = ACTIONS(1177), - [anon_sym___exit] = ACTIONS(1177), - [anon_sym___cdecl] = ACTIONS(1177), - [anon_sym___clrcall] = ACTIONS(1177), - [anon_sym___stdcall] = ACTIONS(1177), - [anon_sym___fastcall] = ACTIONS(1177), - [anon_sym___thiscall] = ACTIONS(1177), - [anon_sym___vectorcall] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_signed] = ACTIONS(1177), - [anon_sym_unsigned] = ACTIONS(1177), - [anon_sym_long] = ACTIONS(1177), - [anon_sym_short] = ACTIONS(1177), - [anon_sym_static] = ACTIONS(1177), - [anon_sym_auto] = ACTIONS(1177), - [anon_sym_register] = ACTIONS(1177), - [anon_sym_inline] = ACTIONS(1177), - [anon_sym___inline] = ACTIONS(1177), - [anon_sym___inline__] = ACTIONS(1177), - [anon_sym___forceinline] = ACTIONS(1177), - [anon_sym_thread_local] = ACTIONS(1177), - [anon_sym___thread] = ACTIONS(1177), - [anon_sym_const] = ACTIONS(1177), - [anon_sym_constexpr] = ACTIONS(1177), - [anon_sym_volatile] = ACTIONS(1177), - [anon_sym_restrict] = ACTIONS(1177), - [anon_sym___restrict__] = ACTIONS(1177), - [anon_sym__Atomic] = ACTIONS(1177), - [anon_sym__Noreturn] = ACTIONS(1177), - [anon_sym_noreturn] = ACTIONS(1177), - [anon_sym_alignas] = ACTIONS(1177), - [anon_sym__Alignas] = ACTIONS(1177), - [sym_primitive_type] = ACTIONS(1177), - [anon_sym_enum] = ACTIONS(1177), - [anon_sym_struct] = ACTIONS(1177), - [anon_sym_union] = ACTIONS(1177), - [anon_sym_if] = ACTIONS(1177), - [anon_sym_else] = ACTIONS(1177), - [anon_sym_switch] = ACTIONS(1177), - [anon_sym_case] = ACTIONS(1177), - [anon_sym_default] = ACTIONS(1177), - [anon_sym_while] = ACTIONS(1177), - [anon_sym_do] = ACTIONS(1177), - [anon_sym_for] = ACTIONS(1177), - [anon_sym_return] = ACTIONS(1177), - [anon_sym_break] = ACTIONS(1177), - [anon_sym_continue] = ACTIONS(1177), - [anon_sym_goto] = ACTIONS(1177), - [anon_sym___try] = ACTIONS(1177), - [anon_sym___leave] = ACTIONS(1177), - [anon_sym_DASH_DASH] = ACTIONS(1179), - [anon_sym_PLUS_PLUS] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1177), - [anon_sym___alignof__] = ACTIONS(1177), - [anon_sym___alignof] = ACTIONS(1177), - [anon_sym__alignof] = ACTIONS(1177), - [anon_sym_alignof] = ACTIONS(1177), - [anon_sym__Alignof] = ACTIONS(1177), - [anon_sym_offsetof] = ACTIONS(1177), - [anon_sym__Generic] = ACTIONS(1177), - [anon_sym_asm] = ACTIONS(1177), - [anon_sym___asm__] = ACTIONS(1177), - [sym_number_literal] = ACTIONS(1179), - [anon_sym_L_SQUOTE] = ACTIONS(1179), - [anon_sym_u_SQUOTE] = ACTIONS(1179), - [anon_sym_U_SQUOTE] = ACTIONS(1179), - [anon_sym_u8_SQUOTE] = ACTIONS(1179), - [anon_sym_SQUOTE] = ACTIONS(1179), - [anon_sym_L_DQUOTE] = ACTIONS(1179), - [anon_sym_u_DQUOTE] = ACTIONS(1179), - [anon_sym_U_DQUOTE] = ACTIONS(1179), - [anon_sym_u8_DQUOTE] = ACTIONS(1179), - [anon_sym_DQUOTE] = ACTIONS(1179), - [sym_true] = ACTIONS(1177), - [sym_false] = ACTIONS(1177), - [anon_sym_NULL] = ACTIONS(1177), - [anon_sym_nullptr] = ACTIONS(1177), - [sym_comment] = ACTIONS(3), + [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_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), }, [83] = { - [sym_identifier] = ACTIONS(1181), - [aux_sym_preproc_include_token1] = ACTIONS(1181), - [aux_sym_preproc_def_token1] = ACTIONS(1181), - [aux_sym_preproc_if_token1] = ACTIONS(1181), - [aux_sym_preproc_if_token2] = ACTIONS(1181), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1181), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1181), - [aux_sym_preproc_else_token1] = ACTIONS(1181), - [aux_sym_preproc_elif_token1] = ACTIONS(1181), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1181), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1181), - [sym_preproc_directive] = ACTIONS(1181), - [anon_sym_LPAREN2] = ACTIONS(1183), - [anon_sym_BANG] = ACTIONS(1183), - [anon_sym_TILDE] = ACTIONS(1183), - [anon_sym_DASH] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1181), - [anon_sym_STAR] = ACTIONS(1183), - [anon_sym_AMP] = ACTIONS(1183), - [anon_sym_SEMI] = ACTIONS(1183), - [anon_sym___extension__] = ACTIONS(1181), - [anon_sym_typedef] = ACTIONS(1181), - [anon_sym_extern] = ACTIONS(1181), - [anon_sym___attribute__] = ACTIONS(1181), - [anon_sym___scanf] = ACTIONS(1181), - [anon_sym___printf] = ACTIONS(1181), - [anon_sym___read_mostly] = ACTIONS(1181), - [anon_sym___must_hold] = ACTIONS(1181), - [anon_sym___ro_after_init] = ACTIONS(1181), - [anon_sym___noreturn] = ACTIONS(1181), - [anon_sym___cold] = ACTIONS(1181), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1183), - [anon_sym___declspec] = ACTIONS(1181), - [anon_sym___init] = ACTIONS(1181), - [anon_sym___exit] = ACTIONS(1181), - [anon_sym___cdecl] = ACTIONS(1181), - [anon_sym___clrcall] = ACTIONS(1181), - [anon_sym___stdcall] = ACTIONS(1181), - [anon_sym___fastcall] = ACTIONS(1181), - [anon_sym___thiscall] = ACTIONS(1181), - [anon_sym___vectorcall] = ACTIONS(1181), - [anon_sym_LBRACE] = ACTIONS(1183), - [anon_sym_signed] = ACTIONS(1181), - [anon_sym_unsigned] = ACTIONS(1181), - [anon_sym_long] = ACTIONS(1181), - [anon_sym_short] = ACTIONS(1181), - [anon_sym_static] = ACTIONS(1181), - [anon_sym_auto] = ACTIONS(1181), - [anon_sym_register] = ACTIONS(1181), - [anon_sym_inline] = ACTIONS(1181), - [anon_sym___inline] = ACTIONS(1181), - [anon_sym___inline__] = ACTIONS(1181), - [anon_sym___forceinline] = ACTIONS(1181), - [anon_sym_thread_local] = ACTIONS(1181), - [anon_sym___thread] = ACTIONS(1181), - [anon_sym_const] = ACTIONS(1181), - [anon_sym_constexpr] = ACTIONS(1181), - [anon_sym_volatile] = ACTIONS(1181), - [anon_sym_restrict] = ACTIONS(1181), - [anon_sym___restrict__] = ACTIONS(1181), - [anon_sym__Atomic] = ACTIONS(1181), - [anon_sym__Noreturn] = ACTIONS(1181), - [anon_sym_noreturn] = ACTIONS(1181), - [anon_sym_alignas] = ACTIONS(1181), - [anon_sym__Alignas] = ACTIONS(1181), - [sym_primitive_type] = ACTIONS(1181), - [anon_sym_enum] = ACTIONS(1181), - [anon_sym_struct] = ACTIONS(1181), - [anon_sym_union] = ACTIONS(1181), - [anon_sym_if] = ACTIONS(1181), - [anon_sym_else] = ACTIONS(1181), - [anon_sym_switch] = ACTIONS(1181), - [anon_sym_case] = ACTIONS(1181), - [anon_sym_default] = ACTIONS(1181), - [anon_sym_while] = ACTIONS(1181), - [anon_sym_do] = ACTIONS(1181), - [anon_sym_for] = ACTIONS(1181), - [anon_sym_return] = ACTIONS(1181), - [anon_sym_break] = ACTIONS(1181), - [anon_sym_continue] = ACTIONS(1181), - [anon_sym_goto] = ACTIONS(1181), - [anon_sym___try] = ACTIONS(1181), - [anon_sym___leave] = ACTIONS(1181), - [anon_sym_DASH_DASH] = ACTIONS(1183), - [anon_sym_PLUS_PLUS] = ACTIONS(1183), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym___alignof__] = ACTIONS(1181), - [anon_sym___alignof] = ACTIONS(1181), - [anon_sym__alignof] = ACTIONS(1181), - [anon_sym_alignof] = ACTIONS(1181), - [anon_sym__Alignof] = ACTIONS(1181), - [anon_sym_offsetof] = ACTIONS(1181), - [anon_sym__Generic] = ACTIONS(1181), - [anon_sym_asm] = ACTIONS(1181), - [anon_sym___asm__] = ACTIONS(1181), - [sym_number_literal] = ACTIONS(1183), - [anon_sym_L_SQUOTE] = ACTIONS(1183), - [anon_sym_u_SQUOTE] = ACTIONS(1183), - [anon_sym_U_SQUOTE] = ACTIONS(1183), - [anon_sym_u8_SQUOTE] = ACTIONS(1183), - [anon_sym_SQUOTE] = ACTIONS(1183), - [anon_sym_L_DQUOTE] = ACTIONS(1183), - [anon_sym_u_DQUOTE] = ACTIONS(1183), - [anon_sym_U_DQUOTE] = ACTIONS(1183), - [anon_sym_u8_DQUOTE] = ACTIONS(1183), - [anon_sym_DQUOTE] = ACTIONS(1183), - [sym_true] = ACTIONS(1181), - [sym_false] = ACTIONS(1181), - [anon_sym_NULL] = ACTIONS(1181), - [anon_sym_nullptr] = ACTIONS(1181), - [sym_comment] = ACTIONS(3), + [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_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), }, [84] = { - [sym_identifier] = ACTIONS(1185), - [aux_sym_preproc_include_token1] = ACTIONS(1185), - [aux_sym_preproc_def_token1] = ACTIONS(1185), - [aux_sym_preproc_if_token1] = ACTIONS(1185), - [aux_sym_preproc_if_token2] = ACTIONS(1185), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1185), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1185), - [aux_sym_preproc_else_token1] = ACTIONS(1185), - [aux_sym_preproc_elif_token1] = ACTIONS(1185), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1185), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1185), - [sym_preproc_directive] = ACTIONS(1185), - [anon_sym_LPAREN2] = ACTIONS(1187), - [anon_sym_BANG] = ACTIONS(1187), - [anon_sym_TILDE] = ACTIONS(1187), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1187), - [anon_sym_AMP] = ACTIONS(1187), - [anon_sym_SEMI] = ACTIONS(1187), - [anon_sym___extension__] = ACTIONS(1185), - [anon_sym_typedef] = ACTIONS(1185), - [anon_sym_extern] = ACTIONS(1185), - [anon_sym___attribute__] = ACTIONS(1185), - [anon_sym___scanf] = ACTIONS(1185), - [anon_sym___printf] = ACTIONS(1185), - [anon_sym___read_mostly] = ACTIONS(1185), - [anon_sym___must_hold] = ACTIONS(1185), - [anon_sym___ro_after_init] = ACTIONS(1185), - [anon_sym___noreturn] = ACTIONS(1185), - [anon_sym___cold] = ACTIONS(1185), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1187), - [anon_sym___declspec] = ACTIONS(1185), - [anon_sym___init] = ACTIONS(1185), - [anon_sym___exit] = ACTIONS(1185), - [anon_sym___cdecl] = ACTIONS(1185), - [anon_sym___clrcall] = ACTIONS(1185), - [anon_sym___stdcall] = ACTIONS(1185), - [anon_sym___fastcall] = ACTIONS(1185), - [anon_sym___thiscall] = ACTIONS(1185), - [anon_sym___vectorcall] = ACTIONS(1185), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_signed] = ACTIONS(1185), - [anon_sym_unsigned] = ACTIONS(1185), - [anon_sym_long] = ACTIONS(1185), - [anon_sym_short] = ACTIONS(1185), - [anon_sym_static] = ACTIONS(1185), - [anon_sym_auto] = ACTIONS(1185), - [anon_sym_register] = ACTIONS(1185), - [anon_sym_inline] = ACTIONS(1185), - [anon_sym___inline] = ACTIONS(1185), - [anon_sym___inline__] = ACTIONS(1185), - [anon_sym___forceinline] = ACTIONS(1185), - [anon_sym_thread_local] = ACTIONS(1185), - [anon_sym___thread] = ACTIONS(1185), - [anon_sym_const] = ACTIONS(1185), - [anon_sym_constexpr] = ACTIONS(1185), - [anon_sym_volatile] = ACTIONS(1185), - [anon_sym_restrict] = ACTIONS(1185), - [anon_sym___restrict__] = ACTIONS(1185), - [anon_sym__Atomic] = ACTIONS(1185), - [anon_sym__Noreturn] = ACTIONS(1185), - [anon_sym_noreturn] = ACTIONS(1185), - [anon_sym_alignas] = ACTIONS(1185), - [anon_sym__Alignas] = ACTIONS(1185), - [sym_primitive_type] = ACTIONS(1185), - [anon_sym_enum] = ACTIONS(1185), - [anon_sym_struct] = ACTIONS(1185), - [anon_sym_union] = ACTIONS(1185), - [anon_sym_if] = ACTIONS(1185), - [anon_sym_else] = ACTIONS(1185), - [anon_sym_switch] = ACTIONS(1185), - [anon_sym_case] = ACTIONS(1185), - [anon_sym_default] = ACTIONS(1185), - [anon_sym_while] = ACTIONS(1185), - [anon_sym_do] = ACTIONS(1185), - [anon_sym_for] = ACTIONS(1185), - [anon_sym_return] = ACTIONS(1185), - [anon_sym_break] = ACTIONS(1185), - [anon_sym_continue] = ACTIONS(1185), - [anon_sym_goto] = ACTIONS(1185), - [anon_sym___try] = ACTIONS(1185), - [anon_sym___leave] = ACTIONS(1185), - [anon_sym_DASH_DASH] = ACTIONS(1187), - [anon_sym_PLUS_PLUS] = ACTIONS(1187), - [anon_sym_sizeof] = ACTIONS(1185), - [anon_sym___alignof__] = ACTIONS(1185), - [anon_sym___alignof] = ACTIONS(1185), - [anon_sym__alignof] = ACTIONS(1185), - [anon_sym_alignof] = ACTIONS(1185), - [anon_sym__Alignof] = ACTIONS(1185), - [anon_sym_offsetof] = ACTIONS(1185), - [anon_sym__Generic] = ACTIONS(1185), - [anon_sym_asm] = ACTIONS(1185), - [anon_sym___asm__] = ACTIONS(1185), - [sym_number_literal] = ACTIONS(1187), - [anon_sym_L_SQUOTE] = ACTIONS(1187), - [anon_sym_u_SQUOTE] = ACTIONS(1187), - [anon_sym_U_SQUOTE] = ACTIONS(1187), - [anon_sym_u8_SQUOTE] = ACTIONS(1187), - [anon_sym_SQUOTE] = ACTIONS(1187), - [anon_sym_L_DQUOTE] = ACTIONS(1187), - [anon_sym_u_DQUOTE] = ACTIONS(1187), - [anon_sym_U_DQUOTE] = ACTIONS(1187), - [anon_sym_u8_DQUOTE] = ACTIONS(1187), - [anon_sym_DQUOTE] = ACTIONS(1187), - [sym_true] = ACTIONS(1185), - [sym_false] = ACTIONS(1185), - [anon_sym_NULL] = ACTIONS(1185), - [anon_sym_nullptr] = ACTIONS(1185), - [sym_comment] = ACTIONS(3), + [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_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(1189), - [aux_sym_preproc_include_token1] = ACTIONS(1189), - [aux_sym_preproc_def_token1] = ACTIONS(1189), - [aux_sym_preproc_if_token1] = ACTIONS(1189), - [aux_sym_preproc_if_token2] = ACTIONS(1189), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1189), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1189), - [aux_sym_preproc_else_token1] = ACTIONS(1189), - [aux_sym_preproc_elif_token1] = ACTIONS(1189), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1189), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1189), - [sym_preproc_directive] = ACTIONS(1189), - [anon_sym_LPAREN2] = ACTIONS(1191), - [anon_sym_BANG] = ACTIONS(1191), - [anon_sym_TILDE] = ACTIONS(1191), - [anon_sym_DASH] = ACTIONS(1189), - [anon_sym_PLUS] = ACTIONS(1189), - [anon_sym_STAR] = ACTIONS(1191), - [anon_sym_AMP] = ACTIONS(1191), - [anon_sym_SEMI] = ACTIONS(1191), - [anon_sym___extension__] = ACTIONS(1189), - [anon_sym_typedef] = ACTIONS(1189), - [anon_sym_extern] = ACTIONS(1189), - [anon_sym___attribute__] = ACTIONS(1189), - [anon_sym___scanf] = ACTIONS(1189), - [anon_sym___printf] = ACTIONS(1189), - [anon_sym___read_mostly] = ACTIONS(1189), - [anon_sym___must_hold] = ACTIONS(1189), - [anon_sym___ro_after_init] = ACTIONS(1189), - [anon_sym___noreturn] = ACTIONS(1189), - [anon_sym___cold] = ACTIONS(1189), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1191), - [anon_sym___declspec] = ACTIONS(1189), - [anon_sym___init] = ACTIONS(1189), - [anon_sym___exit] = ACTIONS(1189), - [anon_sym___cdecl] = ACTIONS(1189), - [anon_sym___clrcall] = ACTIONS(1189), - [anon_sym___stdcall] = ACTIONS(1189), - [anon_sym___fastcall] = ACTIONS(1189), - [anon_sym___thiscall] = ACTIONS(1189), - [anon_sym___vectorcall] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_signed] = ACTIONS(1189), - [anon_sym_unsigned] = ACTIONS(1189), - [anon_sym_long] = ACTIONS(1189), - [anon_sym_short] = ACTIONS(1189), - [anon_sym_static] = ACTIONS(1189), - [anon_sym_auto] = ACTIONS(1189), - [anon_sym_register] = ACTIONS(1189), - [anon_sym_inline] = ACTIONS(1189), - [anon_sym___inline] = ACTIONS(1189), - [anon_sym___inline__] = ACTIONS(1189), - [anon_sym___forceinline] = ACTIONS(1189), - [anon_sym_thread_local] = ACTIONS(1189), - [anon_sym___thread] = ACTIONS(1189), - [anon_sym_const] = ACTIONS(1189), - [anon_sym_constexpr] = ACTIONS(1189), - [anon_sym_volatile] = ACTIONS(1189), - [anon_sym_restrict] = ACTIONS(1189), - [anon_sym___restrict__] = ACTIONS(1189), - [anon_sym__Atomic] = ACTIONS(1189), - [anon_sym__Noreturn] = ACTIONS(1189), - [anon_sym_noreturn] = ACTIONS(1189), - [anon_sym_alignas] = ACTIONS(1189), - [anon_sym__Alignas] = ACTIONS(1189), - [sym_primitive_type] = ACTIONS(1189), - [anon_sym_enum] = ACTIONS(1189), - [anon_sym_struct] = ACTIONS(1189), - [anon_sym_union] = ACTIONS(1189), - [anon_sym_if] = ACTIONS(1189), - [anon_sym_else] = ACTIONS(1189), - [anon_sym_switch] = ACTIONS(1189), - [anon_sym_case] = ACTIONS(1189), - [anon_sym_default] = ACTIONS(1189), - [anon_sym_while] = ACTIONS(1189), - [anon_sym_do] = ACTIONS(1189), - [anon_sym_for] = ACTIONS(1189), - [anon_sym_return] = ACTIONS(1189), - [anon_sym_break] = ACTIONS(1189), - [anon_sym_continue] = ACTIONS(1189), - [anon_sym_goto] = ACTIONS(1189), - [anon_sym___try] = ACTIONS(1189), - [anon_sym___leave] = ACTIONS(1189), - [anon_sym_DASH_DASH] = ACTIONS(1191), - [anon_sym_PLUS_PLUS] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1189), - [anon_sym___alignof__] = ACTIONS(1189), - [anon_sym___alignof] = ACTIONS(1189), - [anon_sym__alignof] = ACTIONS(1189), - [anon_sym_alignof] = ACTIONS(1189), - [anon_sym__Alignof] = ACTIONS(1189), - [anon_sym_offsetof] = ACTIONS(1189), - [anon_sym__Generic] = ACTIONS(1189), - [anon_sym_asm] = ACTIONS(1189), - [anon_sym___asm__] = ACTIONS(1189), - [sym_number_literal] = ACTIONS(1191), - [anon_sym_L_SQUOTE] = ACTIONS(1191), - [anon_sym_u_SQUOTE] = ACTIONS(1191), - [anon_sym_U_SQUOTE] = ACTIONS(1191), - [anon_sym_u8_SQUOTE] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1191), - [anon_sym_L_DQUOTE] = ACTIONS(1191), - [anon_sym_u_DQUOTE] = ACTIONS(1191), - [anon_sym_U_DQUOTE] = ACTIONS(1191), - [anon_sym_u8_DQUOTE] = ACTIONS(1191), - [anon_sym_DQUOTE] = ACTIONS(1191), - [sym_true] = ACTIONS(1189), - [sym_false] = ACTIONS(1189), - [anon_sym_NULL] = ACTIONS(1189), - [anon_sym_nullptr] = ACTIONS(1189), - [sym_comment] = ACTIONS(3), + [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(1193), - [aux_sym_preproc_include_token1] = ACTIONS(1193), - [aux_sym_preproc_def_token1] = ACTIONS(1193), - [aux_sym_preproc_if_token1] = ACTIONS(1193), - [aux_sym_preproc_if_token2] = ACTIONS(1193), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1193), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1193), - [aux_sym_preproc_else_token1] = ACTIONS(1193), - [aux_sym_preproc_elif_token1] = ACTIONS(1193), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1193), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1193), - [sym_preproc_directive] = ACTIONS(1193), - [anon_sym_LPAREN2] = ACTIONS(1195), - [anon_sym_BANG] = ACTIONS(1195), - [anon_sym_TILDE] = ACTIONS(1195), - [anon_sym_DASH] = ACTIONS(1193), - [anon_sym_PLUS] = ACTIONS(1193), - [anon_sym_STAR] = ACTIONS(1195), - [anon_sym_AMP] = ACTIONS(1195), - [anon_sym_SEMI] = ACTIONS(1195), - [anon_sym___extension__] = ACTIONS(1193), - [anon_sym_typedef] = ACTIONS(1193), - [anon_sym_extern] = ACTIONS(1193), - [anon_sym___attribute__] = ACTIONS(1193), - [anon_sym___scanf] = ACTIONS(1193), - [anon_sym___printf] = ACTIONS(1193), - [anon_sym___read_mostly] = ACTIONS(1193), - [anon_sym___must_hold] = ACTIONS(1193), - [anon_sym___ro_after_init] = ACTIONS(1193), - [anon_sym___noreturn] = ACTIONS(1193), - [anon_sym___cold] = ACTIONS(1193), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1195), - [anon_sym___declspec] = ACTIONS(1193), - [anon_sym___init] = ACTIONS(1193), - [anon_sym___exit] = ACTIONS(1193), - [anon_sym___cdecl] = ACTIONS(1193), - [anon_sym___clrcall] = ACTIONS(1193), - [anon_sym___stdcall] = ACTIONS(1193), - [anon_sym___fastcall] = ACTIONS(1193), - [anon_sym___thiscall] = ACTIONS(1193), - [anon_sym___vectorcall] = ACTIONS(1193), - [anon_sym_LBRACE] = ACTIONS(1195), - [anon_sym_signed] = ACTIONS(1193), - [anon_sym_unsigned] = ACTIONS(1193), - [anon_sym_long] = ACTIONS(1193), - [anon_sym_short] = ACTIONS(1193), - [anon_sym_static] = ACTIONS(1193), - [anon_sym_auto] = ACTIONS(1193), - [anon_sym_register] = ACTIONS(1193), - [anon_sym_inline] = ACTIONS(1193), - [anon_sym___inline] = ACTIONS(1193), - [anon_sym___inline__] = ACTIONS(1193), - [anon_sym___forceinline] = ACTIONS(1193), - [anon_sym_thread_local] = ACTIONS(1193), - [anon_sym___thread] = ACTIONS(1193), - [anon_sym_const] = ACTIONS(1193), - [anon_sym_constexpr] = ACTIONS(1193), - [anon_sym_volatile] = ACTIONS(1193), - [anon_sym_restrict] = ACTIONS(1193), - [anon_sym___restrict__] = ACTIONS(1193), - [anon_sym__Atomic] = ACTIONS(1193), - [anon_sym__Noreturn] = ACTIONS(1193), - [anon_sym_noreturn] = ACTIONS(1193), - [anon_sym_alignas] = ACTIONS(1193), - [anon_sym__Alignas] = ACTIONS(1193), - [sym_primitive_type] = ACTIONS(1193), - [anon_sym_enum] = ACTIONS(1193), - [anon_sym_struct] = ACTIONS(1193), - [anon_sym_union] = ACTIONS(1193), - [anon_sym_if] = ACTIONS(1193), - [anon_sym_else] = ACTIONS(1193), - [anon_sym_switch] = ACTIONS(1193), - [anon_sym_case] = ACTIONS(1193), - [anon_sym_default] = ACTIONS(1193), - [anon_sym_while] = ACTIONS(1193), - [anon_sym_do] = ACTIONS(1193), - [anon_sym_for] = ACTIONS(1193), - [anon_sym_return] = ACTIONS(1193), - [anon_sym_break] = ACTIONS(1193), - [anon_sym_continue] = ACTIONS(1193), - [anon_sym_goto] = ACTIONS(1193), - [anon_sym___try] = ACTIONS(1193), - [anon_sym___leave] = ACTIONS(1193), - [anon_sym_DASH_DASH] = ACTIONS(1195), - [anon_sym_PLUS_PLUS] = ACTIONS(1195), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym___alignof__] = ACTIONS(1193), - [anon_sym___alignof] = ACTIONS(1193), - [anon_sym__alignof] = ACTIONS(1193), - [anon_sym_alignof] = ACTIONS(1193), - [anon_sym__Alignof] = ACTIONS(1193), - [anon_sym_offsetof] = ACTIONS(1193), - [anon_sym__Generic] = ACTIONS(1193), - [anon_sym_asm] = ACTIONS(1193), - [anon_sym___asm__] = ACTIONS(1193), - [sym_number_literal] = ACTIONS(1195), - [anon_sym_L_SQUOTE] = ACTIONS(1195), - [anon_sym_u_SQUOTE] = ACTIONS(1195), - [anon_sym_U_SQUOTE] = ACTIONS(1195), - [anon_sym_u8_SQUOTE] = ACTIONS(1195), - [anon_sym_SQUOTE] = ACTIONS(1195), - [anon_sym_L_DQUOTE] = ACTIONS(1195), - [anon_sym_u_DQUOTE] = ACTIONS(1195), - [anon_sym_U_DQUOTE] = ACTIONS(1195), - [anon_sym_u8_DQUOTE] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1195), - [sym_true] = ACTIONS(1193), - [sym_false] = ACTIONS(1193), - [anon_sym_NULL] = ACTIONS(1193), - [anon_sym_nullptr] = ACTIONS(1193), - [sym_comment] = ACTIONS(3), + [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), }, [87] = { - [sym_identifier] = ACTIONS(1193), - [aux_sym_preproc_include_token1] = ACTIONS(1193), - [aux_sym_preproc_def_token1] = ACTIONS(1193), - [aux_sym_preproc_if_token1] = ACTIONS(1193), - [aux_sym_preproc_if_token2] = ACTIONS(1193), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1193), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1193), - [aux_sym_preproc_else_token1] = ACTIONS(1193), - [aux_sym_preproc_elif_token1] = ACTIONS(1193), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1193), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1193), - [sym_preproc_directive] = ACTIONS(1193), - [anon_sym_LPAREN2] = ACTIONS(1195), - [anon_sym_BANG] = ACTIONS(1195), - [anon_sym_TILDE] = ACTIONS(1195), - [anon_sym_DASH] = ACTIONS(1193), - [anon_sym_PLUS] = ACTIONS(1193), - [anon_sym_STAR] = ACTIONS(1195), - [anon_sym_AMP] = ACTIONS(1195), - [anon_sym_SEMI] = ACTIONS(1195), - [anon_sym___extension__] = ACTIONS(1193), - [anon_sym_typedef] = ACTIONS(1193), - [anon_sym_extern] = ACTIONS(1193), - [anon_sym___attribute__] = ACTIONS(1193), - [anon_sym___scanf] = ACTIONS(1193), - [anon_sym___printf] = ACTIONS(1193), - [anon_sym___read_mostly] = ACTIONS(1193), - [anon_sym___must_hold] = ACTIONS(1193), - [anon_sym___ro_after_init] = ACTIONS(1193), - [anon_sym___noreturn] = ACTIONS(1193), - [anon_sym___cold] = ACTIONS(1193), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1195), - [anon_sym___declspec] = ACTIONS(1193), - [anon_sym___init] = ACTIONS(1193), - [anon_sym___exit] = ACTIONS(1193), - [anon_sym___cdecl] = ACTIONS(1193), - [anon_sym___clrcall] = ACTIONS(1193), - [anon_sym___stdcall] = ACTIONS(1193), - [anon_sym___fastcall] = ACTIONS(1193), - [anon_sym___thiscall] = ACTIONS(1193), - [anon_sym___vectorcall] = ACTIONS(1193), - [anon_sym_LBRACE] = ACTIONS(1195), - [anon_sym_signed] = ACTIONS(1193), - [anon_sym_unsigned] = ACTIONS(1193), - [anon_sym_long] = ACTIONS(1193), - [anon_sym_short] = ACTIONS(1193), - [anon_sym_static] = ACTIONS(1193), - [anon_sym_auto] = ACTIONS(1193), - [anon_sym_register] = ACTIONS(1193), - [anon_sym_inline] = ACTIONS(1193), - [anon_sym___inline] = ACTIONS(1193), - [anon_sym___inline__] = ACTIONS(1193), - [anon_sym___forceinline] = ACTIONS(1193), - [anon_sym_thread_local] = ACTIONS(1193), - [anon_sym___thread] = ACTIONS(1193), - [anon_sym_const] = ACTIONS(1193), - [anon_sym_constexpr] = ACTIONS(1193), - [anon_sym_volatile] = ACTIONS(1193), - [anon_sym_restrict] = ACTIONS(1193), - [anon_sym___restrict__] = ACTIONS(1193), - [anon_sym__Atomic] = ACTIONS(1193), - [anon_sym__Noreturn] = ACTIONS(1193), - [anon_sym_noreturn] = ACTIONS(1193), - [anon_sym_alignas] = ACTIONS(1193), - [anon_sym__Alignas] = ACTIONS(1193), - [sym_primitive_type] = ACTIONS(1193), - [anon_sym_enum] = ACTIONS(1193), - [anon_sym_struct] = ACTIONS(1193), - [anon_sym_union] = ACTIONS(1193), - [anon_sym_if] = ACTIONS(1193), - [anon_sym_else] = ACTIONS(1193), - [anon_sym_switch] = ACTIONS(1193), - [anon_sym_case] = ACTIONS(1193), - [anon_sym_default] = ACTIONS(1193), - [anon_sym_while] = ACTIONS(1193), - [anon_sym_do] = ACTIONS(1193), - [anon_sym_for] = ACTIONS(1193), - [anon_sym_return] = ACTIONS(1193), - [anon_sym_break] = ACTIONS(1193), - [anon_sym_continue] = ACTIONS(1193), - [anon_sym_goto] = ACTIONS(1193), - [anon_sym___try] = ACTIONS(1193), - [anon_sym___leave] = ACTIONS(1193), - [anon_sym_DASH_DASH] = ACTIONS(1195), - [anon_sym_PLUS_PLUS] = ACTIONS(1195), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym___alignof__] = ACTIONS(1193), - [anon_sym___alignof] = ACTIONS(1193), - [anon_sym__alignof] = ACTIONS(1193), - [anon_sym_alignof] = ACTIONS(1193), - [anon_sym__Alignof] = ACTIONS(1193), - [anon_sym_offsetof] = ACTIONS(1193), - [anon_sym__Generic] = ACTIONS(1193), - [anon_sym_asm] = ACTIONS(1193), - [anon_sym___asm__] = ACTIONS(1193), - [sym_number_literal] = ACTIONS(1195), - [anon_sym_L_SQUOTE] = ACTIONS(1195), - [anon_sym_u_SQUOTE] = ACTIONS(1195), - [anon_sym_U_SQUOTE] = ACTIONS(1195), - [anon_sym_u8_SQUOTE] = ACTIONS(1195), - [anon_sym_SQUOTE] = ACTIONS(1195), - [anon_sym_L_DQUOTE] = ACTIONS(1195), - [anon_sym_u_DQUOTE] = ACTIONS(1195), - [anon_sym_U_DQUOTE] = ACTIONS(1195), - [anon_sym_u8_DQUOTE] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1195), - [sym_true] = ACTIONS(1193), - [sym_false] = ACTIONS(1193), - [anon_sym_NULL] = ACTIONS(1193), - [anon_sym_nullptr] = ACTIONS(1193), - [sym_comment] = ACTIONS(3), + [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), }, [88] = { - [sym_identifier] = ACTIONS(1197), - [aux_sym_preproc_include_token1] = ACTIONS(1197), - [aux_sym_preproc_def_token1] = ACTIONS(1197), - [aux_sym_preproc_if_token1] = ACTIONS(1197), - [aux_sym_preproc_if_token2] = ACTIONS(1197), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1197), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1197), - [aux_sym_preproc_else_token1] = ACTIONS(1197), - [aux_sym_preproc_elif_token1] = ACTIONS(1197), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1197), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1197), - [sym_preproc_directive] = ACTIONS(1197), - [anon_sym_LPAREN2] = ACTIONS(1199), - [anon_sym_BANG] = ACTIONS(1199), - [anon_sym_TILDE] = ACTIONS(1199), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_AMP] = ACTIONS(1199), - [anon_sym_SEMI] = ACTIONS(1199), - [anon_sym___extension__] = ACTIONS(1197), - [anon_sym_typedef] = ACTIONS(1197), - [anon_sym_extern] = ACTIONS(1197), - [anon_sym___attribute__] = ACTIONS(1197), - [anon_sym___scanf] = ACTIONS(1197), - [anon_sym___printf] = ACTIONS(1197), - [anon_sym___read_mostly] = ACTIONS(1197), - [anon_sym___must_hold] = ACTIONS(1197), - [anon_sym___ro_after_init] = ACTIONS(1197), - [anon_sym___noreturn] = ACTIONS(1197), - [anon_sym___cold] = ACTIONS(1197), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1199), - [anon_sym___declspec] = ACTIONS(1197), - [anon_sym___init] = ACTIONS(1197), - [anon_sym___exit] = ACTIONS(1197), - [anon_sym___cdecl] = ACTIONS(1197), - [anon_sym___clrcall] = ACTIONS(1197), - [anon_sym___stdcall] = ACTIONS(1197), - [anon_sym___fastcall] = ACTIONS(1197), - [anon_sym___thiscall] = ACTIONS(1197), - [anon_sym___vectorcall] = ACTIONS(1197), - [anon_sym_LBRACE] = ACTIONS(1199), - [anon_sym_signed] = ACTIONS(1197), - [anon_sym_unsigned] = ACTIONS(1197), - [anon_sym_long] = ACTIONS(1197), - [anon_sym_short] = ACTIONS(1197), - [anon_sym_static] = ACTIONS(1197), - [anon_sym_auto] = ACTIONS(1197), - [anon_sym_register] = ACTIONS(1197), - [anon_sym_inline] = ACTIONS(1197), - [anon_sym___inline] = ACTIONS(1197), - [anon_sym___inline__] = ACTIONS(1197), - [anon_sym___forceinline] = ACTIONS(1197), - [anon_sym_thread_local] = ACTIONS(1197), - [anon_sym___thread] = ACTIONS(1197), - [anon_sym_const] = ACTIONS(1197), - [anon_sym_constexpr] = ACTIONS(1197), - [anon_sym_volatile] = ACTIONS(1197), - [anon_sym_restrict] = ACTIONS(1197), - [anon_sym___restrict__] = ACTIONS(1197), - [anon_sym__Atomic] = ACTIONS(1197), - [anon_sym__Noreturn] = ACTIONS(1197), - [anon_sym_noreturn] = ACTIONS(1197), - [anon_sym_alignas] = ACTIONS(1197), - [anon_sym__Alignas] = ACTIONS(1197), - [sym_primitive_type] = ACTIONS(1197), - [anon_sym_enum] = ACTIONS(1197), - [anon_sym_struct] = ACTIONS(1197), - [anon_sym_union] = ACTIONS(1197), - [anon_sym_if] = ACTIONS(1197), - [anon_sym_else] = ACTIONS(1197), - [anon_sym_switch] = ACTIONS(1197), - [anon_sym_case] = ACTIONS(1197), - [anon_sym_default] = ACTIONS(1197), - [anon_sym_while] = ACTIONS(1197), - [anon_sym_do] = ACTIONS(1197), - [anon_sym_for] = ACTIONS(1197), - [anon_sym_return] = ACTIONS(1197), - [anon_sym_break] = ACTIONS(1197), - [anon_sym_continue] = ACTIONS(1197), - [anon_sym_goto] = ACTIONS(1197), - [anon_sym___try] = ACTIONS(1197), - [anon_sym___leave] = ACTIONS(1197), - [anon_sym_DASH_DASH] = ACTIONS(1199), - [anon_sym_PLUS_PLUS] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1197), - [anon_sym___alignof__] = ACTIONS(1197), - [anon_sym___alignof] = ACTIONS(1197), - [anon_sym__alignof] = ACTIONS(1197), - [anon_sym_alignof] = ACTIONS(1197), - [anon_sym__Alignof] = ACTIONS(1197), - [anon_sym_offsetof] = ACTIONS(1197), - [anon_sym__Generic] = ACTIONS(1197), - [anon_sym_asm] = ACTIONS(1197), - [anon_sym___asm__] = ACTIONS(1197), - [sym_number_literal] = ACTIONS(1199), - [anon_sym_L_SQUOTE] = ACTIONS(1199), - [anon_sym_u_SQUOTE] = ACTIONS(1199), - [anon_sym_U_SQUOTE] = ACTIONS(1199), - [anon_sym_u8_SQUOTE] = ACTIONS(1199), - [anon_sym_SQUOTE] = ACTIONS(1199), - [anon_sym_L_DQUOTE] = ACTIONS(1199), - [anon_sym_u_DQUOTE] = ACTIONS(1199), - [anon_sym_U_DQUOTE] = ACTIONS(1199), - [anon_sym_u8_DQUOTE] = ACTIONS(1199), - [anon_sym_DQUOTE] = ACTIONS(1199), - [sym_true] = ACTIONS(1197), - [sym_false] = ACTIONS(1197), - [anon_sym_NULL] = ACTIONS(1197), - [anon_sym_nullptr] = ACTIONS(1197), - [sym_comment] = ACTIONS(3), + [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), + [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), }, [89] = { - [sym_identifier] = ACTIONS(1197), - [aux_sym_preproc_include_token1] = ACTIONS(1197), - [aux_sym_preproc_def_token1] = ACTIONS(1197), - [aux_sym_preproc_if_token1] = ACTIONS(1197), - [aux_sym_preproc_if_token2] = ACTIONS(1197), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1197), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1197), - [aux_sym_preproc_else_token1] = ACTIONS(1197), - [aux_sym_preproc_elif_token1] = ACTIONS(1197), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1197), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1197), - [sym_preproc_directive] = ACTIONS(1197), - [anon_sym_LPAREN2] = ACTIONS(1199), - [anon_sym_BANG] = ACTIONS(1199), - [anon_sym_TILDE] = ACTIONS(1199), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_AMP] = ACTIONS(1199), - [anon_sym_SEMI] = ACTIONS(1199), - [anon_sym___extension__] = ACTIONS(1197), - [anon_sym_typedef] = ACTIONS(1197), - [anon_sym_extern] = ACTIONS(1197), - [anon_sym___attribute__] = ACTIONS(1197), - [anon_sym___scanf] = ACTIONS(1197), - [anon_sym___printf] = ACTIONS(1197), - [anon_sym___read_mostly] = ACTIONS(1197), - [anon_sym___must_hold] = ACTIONS(1197), - [anon_sym___ro_after_init] = ACTIONS(1197), - [anon_sym___noreturn] = ACTIONS(1197), - [anon_sym___cold] = ACTIONS(1197), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1199), - [anon_sym___declspec] = ACTIONS(1197), - [anon_sym___init] = ACTIONS(1197), - [anon_sym___exit] = ACTIONS(1197), - [anon_sym___cdecl] = ACTIONS(1197), - [anon_sym___clrcall] = ACTIONS(1197), - [anon_sym___stdcall] = ACTIONS(1197), - [anon_sym___fastcall] = ACTIONS(1197), - [anon_sym___thiscall] = ACTIONS(1197), - [anon_sym___vectorcall] = ACTIONS(1197), - [anon_sym_LBRACE] = ACTIONS(1199), - [anon_sym_signed] = ACTIONS(1197), - [anon_sym_unsigned] = ACTIONS(1197), - [anon_sym_long] = ACTIONS(1197), - [anon_sym_short] = ACTIONS(1197), - [anon_sym_static] = ACTIONS(1197), - [anon_sym_auto] = ACTIONS(1197), - [anon_sym_register] = ACTIONS(1197), - [anon_sym_inline] = ACTIONS(1197), - [anon_sym___inline] = ACTIONS(1197), - [anon_sym___inline__] = ACTIONS(1197), - [anon_sym___forceinline] = ACTIONS(1197), - [anon_sym_thread_local] = ACTIONS(1197), - [anon_sym___thread] = ACTIONS(1197), - [anon_sym_const] = ACTIONS(1197), - [anon_sym_constexpr] = ACTIONS(1197), - [anon_sym_volatile] = ACTIONS(1197), - [anon_sym_restrict] = ACTIONS(1197), - [anon_sym___restrict__] = ACTIONS(1197), - [anon_sym__Atomic] = ACTIONS(1197), - [anon_sym__Noreturn] = ACTIONS(1197), - [anon_sym_noreturn] = ACTIONS(1197), - [anon_sym_alignas] = ACTIONS(1197), - [anon_sym__Alignas] = ACTIONS(1197), - [sym_primitive_type] = ACTIONS(1197), - [anon_sym_enum] = ACTIONS(1197), - [anon_sym_struct] = ACTIONS(1197), - [anon_sym_union] = ACTIONS(1197), - [anon_sym_if] = ACTIONS(1197), - [anon_sym_else] = ACTIONS(1197), - [anon_sym_switch] = ACTIONS(1197), - [anon_sym_case] = ACTIONS(1197), - [anon_sym_default] = ACTIONS(1197), - [anon_sym_while] = ACTIONS(1197), - [anon_sym_do] = ACTIONS(1197), - [anon_sym_for] = ACTIONS(1197), - [anon_sym_return] = ACTIONS(1197), - [anon_sym_break] = ACTIONS(1197), - [anon_sym_continue] = ACTIONS(1197), - [anon_sym_goto] = ACTIONS(1197), - [anon_sym___try] = ACTIONS(1197), - [anon_sym___leave] = ACTIONS(1197), - [anon_sym_DASH_DASH] = ACTIONS(1199), - [anon_sym_PLUS_PLUS] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1197), - [anon_sym___alignof__] = ACTIONS(1197), - [anon_sym___alignof] = ACTIONS(1197), - [anon_sym__alignof] = ACTIONS(1197), - [anon_sym_alignof] = ACTIONS(1197), - [anon_sym__Alignof] = ACTIONS(1197), - [anon_sym_offsetof] = ACTIONS(1197), - [anon_sym__Generic] = ACTIONS(1197), - [anon_sym_asm] = ACTIONS(1197), - [anon_sym___asm__] = ACTIONS(1197), - [sym_number_literal] = ACTIONS(1199), - [anon_sym_L_SQUOTE] = ACTIONS(1199), - [anon_sym_u_SQUOTE] = ACTIONS(1199), - [anon_sym_U_SQUOTE] = ACTIONS(1199), - [anon_sym_u8_SQUOTE] = ACTIONS(1199), - [anon_sym_SQUOTE] = ACTIONS(1199), - [anon_sym_L_DQUOTE] = ACTIONS(1199), - [anon_sym_u_DQUOTE] = ACTIONS(1199), - [anon_sym_U_DQUOTE] = ACTIONS(1199), - [anon_sym_u8_DQUOTE] = ACTIONS(1199), - [anon_sym_DQUOTE] = ACTIONS(1199), - [sym_true] = ACTIONS(1197), - [sym_false] = ACTIONS(1197), - [anon_sym_NULL] = ACTIONS(1197), - [anon_sym_nullptr] = ACTIONS(1197), - [sym_comment] = ACTIONS(3), + [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), }, [90] = { - [sym_identifier] = ACTIONS(1197), - [aux_sym_preproc_include_token1] = ACTIONS(1197), - [aux_sym_preproc_def_token1] = ACTIONS(1197), - [aux_sym_preproc_if_token1] = ACTIONS(1197), - [aux_sym_preproc_if_token2] = ACTIONS(1197), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1197), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1197), - [aux_sym_preproc_else_token1] = ACTIONS(1197), - [aux_sym_preproc_elif_token1] = ACTIONS(1197), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1197), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1197), - [sym_preproc_directive] = ACTIONS(1197), - [anon_sym_LPAREN2] = ACTIONS(1199), - [anon_sym_BANG] = ACTIONS(1199), - [anon_sym_TILDE] = ACTIONS(1199), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_AMP] = ACTIONS(1199), - [anon_sym_SEMI] = ACTIONS(1199), - [anon_sym___extension__] = ACTIONS(1197), - [anon_sym_typedef] = ACTIONS(1197), - [anon_sym_extern] = ACTIONS(1197), - [anon_sym___attribute__] = ACTIONS(1197), - [anon_sym___scanf] = ACTIONS(1197), - [anon_sym___printf] = ACTIONS(1197), - [anon_sym___read_mostly] = ACTIONS(1197), - [anon_sym___must_hold] = ACTIONS(1197), - [anon_sym___ro_after_init] = ACTIONS(1197), - [anon_sym___noreturn] = ACTIONS(1197), - [anon_sym___cold] = ACTIONS(1197), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1199), - [anon_sym___declspec] = ACTIONS(1197), - [anon_sym___init] = ACTIONS(1197), - [anon_sym___exit] = ACTIONS(1197), - [anon_sym___cdecl] = ACTIONS(1197), - [anon_sym___clrcall] = ACTIONS(1197), - [anon_sym___stdcall] = ACTIONS(1197), - [anon_sym___fastcall] = ACTIONS(1197), - [anon_sym___thiscall] = ACTIONS(1197), - [anon_sym___vectorcall] = ACTIONS(1197), - [anon_sym_LBRACE] = ACTIONS(1199), - [anon_sym_signed] = ACTIONS(1197), - [anon_sym_unsigned] = ACTIONS(1197), - [anon_sym_long] = ACTIONS(1197), - [anon_sym_short] = ACTIONS(1197), - [anon_sym_static] = ACTIONS(1197), - [anon_sym_auto] = ACTIONS(1197), - [anon_sym_register] = ACTIONS(1197), - [anon_sym_inline] = ACTIONS(1197), - [anon_sym___inline] = ACTIONS(1197), - [anon_sym___inline__] = ACTIONS(1197), - [anon_sym___forceinline] = ACTIONS(1197), - [anon_sym_thread_local] = ACTIONS(1197), - [anon_sym___thread] = ACTIONS(1197), - [anon_sym_const] = ACTIONS(1197), - [anon_sym_constexpr] = ACTIONS(1197), - [anon_sym_volatile] = ACTIONS(1197), - [anon_sym_restrict] = ACTIONS(1197), - [anon_sym___restrict__] = ACTIONS(1197), - [anon_sym__Atomic] = ACTIONS(1197), - [anon_sym__Noreturn] = ACTIONS(1197), - [anon_sym_noreturn] = ACTIONS(1197), - [anon_sym_alignas] = ACTIONS(1197), - [anon_sym__Alignas] = ACTIONS(1197), - [sym_primitive_type] = ACTIONS(1197), - [anon_sym_enum] = ACTIONS(1197), - [anon_sym_struct] = ACTIONS(1197), - [anon_sym_union] = ACTIONS(1197), - [anon_sym_if] = ACTIONS(1197), - [anon_sym_else] = ACTIONS(1197), - [anon_sym_switch] = ACTIONS(1197), - [anon_sym_case] = ACTIONS(1197), - [anon_sym_default] = ACTIONS(1197), - [anon_sym_while] = ACTIONS(1197), - [anon_sym_do] = ACTIONS(1197), - [anon_sym_for] = ACTIONS(1197), - [anon_sym_return] = ACTIONS(1197), - [anon_sym_break] = ACTIONS(1197), - [anon_sym_continue] = ACTIONS(1197), - [anon_sym_goto] = ACTIONS(1197), - [anon_sym___try] = ACTIONS(1197), - [anon_sym___leave] = ACTIONS(1197), - [anon_sym_DASH_DASH] = ACTIONS(1199), - [anon_sym_PLUS_PLUS] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1197), - [anon_sym___alignof__] = ACTIONS(1197), - [anon_sym___alignof] = ACTIONS(1197), - [anon_sym__alignof] = ACTIONS(1197), - [anon_sym_alignof] = ACTIONS(1197), - [anon_sym__Alignof] = ACTIONS(1197), - [anon_sym_offsetof] = ACTIONS(1197), - [anon_sym__Generic] = ACTIONS(1197), - [anon_sym_asm] = ACTIONS(1197), - [anon_sym___asm__] = ACTIONS(1197), - [sym_number_literal] = ACTIONS(1199), - [anon_sym_L_SQUOTE] = ACTIONS(1199), - [anon_sym_u_SQUOTE] = ACTIONS(1199), - [anon_sym_U_SQUOTE] = ACTIONS(1199), - [anon_sym_u8_SQUOTE] = ACTIONS(1199), - [anon_sym_SQUOTE] = ACTIONS(1199), - [anon_sym_L_DQUOTE] = ACTIONS(1199), - [anon_sym_u_DQUOTE] = ACTIONS(1199), - [anon_sym_U_DQUOTE] = ACTIONS(1199), - [anon_sym_u8_DQUOTE] = ACTIONS(1199), - [anon_sym_DQUOTE] = ACTIONS(1199), - [sym_true] = ACTIONS(1197), - [sym_false] = ACTIONS(1197), - [anon_sym_NULL] = ACTIONS(1197), - [anon_sym_nullptr] = ACTIONS(1197), - [sym_comment] = ACTIONS(3), + [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] = { - [ts_builtin_sym_end] = ACTIONS(1201), - [sym_identifier] = ACTIONS(1203), - [aux_sym_preproc_include_token1] = ACTIONS(1203), - [aux_sym_preproc_def_token1] = ACTIONS(1203), - [anon_sym_COMMA] = ACTIONS(1201), - [anon_sym_RPAREN] = ACTIONS(1201), - [aux_sym_preproc_if_token1] = ACTIONS(1203), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1203), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1203), - [sym_preproc_directive] = ACTIONS(1203), - [anon_sym_LPAREN2] = ACTIONS(1201), - [anon_sym_BANG] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1201), - [anon_sym_DASH] = ACTIONS(1203), - [anon_sym_PLUS] = ACTIONS(1203), - [anon_sym_STAR] = ACTIONS(1201), - [anon_sym_AMP] = ACTIONS(1201), - [anon_sym_SEMI] = ACTIONS(1201), - [anon_sym___extension__] = ACTIONS(1203), - [anon_sym_typedef] = ACTIONS(1203), - [anon_sym_extern] = ACTIONS(1203), - [anon_sym___attribute__] = ACTIONS(1203), - [anon_sym___scanf] = ACTIONS(1203), - [anon_sym___printf] = ACTIONS(1203), - [anon_sym___read_mostly] = ACTIONS(1203), - [anon_sym___must_hold] = ACTIONS(1203), - [anon_sym___ro_after_init] = ACTIONS(1203), - [anon_sym___noreturn] = ACTIONS(1203), - [anon_sym___cold] = ACTIONS(1203), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1201), - [anon_sym___declspec] = ACTIONS(1203), - [anon_sym___init] = ACTIONS(1203), - [anon_sym___exit] = ACTIONS(1203), - [anon_sym___cdecl] = ACTIONS(1203), - [anon_sym___clrcall] = ACTIONS(1203), - [anon_sym___stdcall] = ACTIONS(1203), - [anon_sym___fastcall] = ACTIONS(1203), - [anon_sym___thiscall] = ACTIONS(1203), - [anon_sym___vectorcall] = ACTIONS(1203), - [anon_sym_LBRACE] = ACTIONS(1201), - [anon_sym_signed] = ACTIONS(1203), - [anon_sym_unsigned] = ACTIONS(1203), - [anon_sym_long] = ACTIONS(1203), - [anon_sym_short] = ACTIONS(1203), - [anon_sym_static] = ACTIONS(1203), - [anon_sym_auto] = ACTIONS(1203), - [anon_sym_register] = ACTIONS(1203), - [anon_sym_inline] = ACTIONS(1203), - [anon_sym___inline] = ACTIONS(1203), - [anon_sym___inline__] = ACTIONS(1203), - [anon_sym___forceinline] = ACTIONS(1203), - [anon_sym_thread_local] = ACTIONS(1203), - [anon_sym___thread] = ACTIONS(1203), - [anon_sym_const] = ACTIONS(1203), - [anon_sym_constexpr] = ACTIONS(1203), - [anon_sym_volatile] = ACTIONS(1203), - [anon_sym_restrict] = ACTIONS(1203), - [anon_sym___restrict__] = ACTIONS(1203), - [anon_sym__Atomic] = ACTIONS(1203), - [anon_sym__Noreturn] = ACTIONS(1203), - [anon_sym_noreturn] = ACTIONS(1203), - [anon_sym_alignas] = ACTIONS(1203), - [anon_sym__Alignas] = ACTIONS(1203), - [sym_primitive_type] = ACTIONS(1203), - [anon_sym_enum] = ACTIONS(1203), - [anon_sym_struct] = ACTIONS(1203), - [anon_sym_union] = ACTIONS(1203), - [anon_sym_if] = ACTIONS(1203), - [anon_sym_else] = ACTIONS(1203), - [anon_sym_switch] = ACTIONS(1203), - [anon_sym_case] = ACTIONS(1203), - [anon_sym_default] = ACTIONS(1203), - [anon_sym_while] = ACTIONS(1203), - [anon_sym_do] = ACTIONS(1203), - [anon_sym_for] = ACTIONS(1203), - [anon_sym_return] = ACTIONS(1203), - [anon_sym_break] = ACTIONS(1203), - [anon_sym_continue] = ACTIONS(1203), - [anon_sym_goto] = ACTIONS(1203), - [anon_sym___try] = ACTIONS(1203), - [anon_sym___except] = ACTIONS(1203), - [anon_sym___finally] = ACTIONS(1203), - [anon_sym___leave] = ACTIONS(1203), - [anon_sym_DASH_DASH] = ACTIONS(1201), - [anon_sym_PLUS_PLUS] = ACTIONS(1201), - [anon_sym_sizeof] = ACTIONS(1203), - [anon_sym___alignof__] = ACTIONS(1203), - [anon_sym___alignof] = ACTIONS(1203), - [anon_sym__alignof] = ACTIONS(1203), - [anon_sym_alignof] = ACTIONS(1203), - [anon_sym__Alignof] = ACTIONS(1203), - [anon_sym_offsetof] = ACTIONS(1203), - [anon_sym__Generic] = ACTIONS(1203), - [anon_sym_asm] = ACTIONS(1203), - [anon_sym___asm__] = ACTIONS(1203), - [sym_number_literal] = ACTIONS(1201), - [anon_sym_L_SQUOTE] = ACTIONS(1201), - [anon_sym_u_SQUOTE] = ACTIONS(1201), - [anon_sym_U_SQUOTE] = ACTIONS(1201), - [anon_sym_u8_SQUOTE] = ACTIONS(1201), - [anon_sym_SQUOTE] = ACTIONS(1201), - [anon_sym_L_DQUOTE] = ACTIONS(1201), - [anon_sym_u_DQUOTE] = ACTIONS(1201), - [anon_sym_U_DQUOTE] = ACTIONS(1201), - [anon_sym_u8_DQUOTE] = ACTIONS(1201), - [anon_sym_DQUOTE] = ACTIONS(1201), - [sym_true] = ACTIONS(1203), - [sym_false] = ACTIONS(1203), - [anon_sym_NULL] = ACTIONS(1203), - [anon_sym_nullptr] = ACTIONS(1203), - [sym_comment] = ACTIONS(3), + [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(1165), - [aux_sym_preproc_include_token1] = ACTIONS(1165), - [aux_sym_preproc_def_token1] = ACTIONS(1165), - [aux_sym_preproc_if_token1] = ACTIONS(1165), - [aux_sym_preproc_if_token2] = ACTIONS(1165), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1165), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1165), - [aux_sym_preproc_else_token1] = ACTIONS(1165), - [aux_sym_preproc_elif_token1] = ACTIONS(1165), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1165), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1165), - [sym_preproc_directive] = ACTIONS(1165), - [anon_sym_LPAREN2] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1167), - [anon_sym_TILDE] = ACTIONS(1167), - [anon_sym_DASH] = ACTIONS(1165), - [anon_sym_PLUS] = ACTIONS(1165), - [anon_sym_STAR] = ACTIONS(1167), - [anon_sym_AMP] = ACTIONS(1167), - [anon_sym_SEMI] = ACTIONS(1167), - [anon_sym___extension__] = ACTIONS(1165), - [anon_sym_typedef] = ACTIONS(1165), - [anon_sym_extern] = ACTIONS(1165), - [anon_sym___attribute__] = ACTIONS(1165), - [anon_sym___scanf] = ACTIONS(1165), - [anon_sym___printf] = ACTIONS(1165), - [anon_sym___read_mostly] = ACTIONS(1165), - [anon_sym___must_hold] = ACTIONS(1165), - [anon_sym___ro_after_init] = ACTIONS(1165), - [anon_sym___noreturn] = ACTIONS(1165), - [anon_sym___cold] = ACTIONS(1165), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1167), - [anon_sym___declspec] = ACTIONS(1165), - [anon_sym___init] = ACTIONS(1165), - [anon_sym___exit] = ACTIONS(1165), - [anon_sym___cdecl] = ACTIONS(1165), - [anon_sym___clrcall] = ACTIONS(1165), - [anon_sym___stdcall] = ACTIONS(1165), - [anon_sym___fastcall] = ACTIONS(1165), - [anon_sym___thiscall] = ACTIONS(1165), - [anon_sym___vectorcall] = ACTIONS(1165), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_signed] = ACTIONS(1165), - [anon_sym_unsigned] = ACTIONS(1165), - [anon_sym_long] = ACTIONS(1165), - [anon_sym_short] = ACTIONS(1165), - [anon_sym_static] = ACTIONS(1165), - [anon_sym_auto] = ACTIONS(1165), - [anon_sym_register] = ACTIONS(1165), - [anon_sym_inline] = ACTIONS(1165), - [anon_sym___inline] = ACTIONS(1165), - [anon_sym___inline__] = ACTIONS(1165), - [anon_sym___forceinline] = ACTIONS(1165), - [anon_sym_thread_local] = ACTIONS(1165), - [anon_sym___thread] = ACTIONS(1165), - [anon_sym_const] = ACTIONS(1165), - [anon_sym_constexpr] = ACTIONS(1165), - [anon_sym_volatile] = ACTIONS(1165), - [anon_sym_restrict] = ACTIONS(1165), - [anon_sym___restrict__] = ACTIONS(1165), - [anon_sym__Atomic] = ACTIONS(1165), - [anon_sym__Noreturn] = ACTIONS(1165), - [anon_sym_noreturn] = ACTIONS(1165), - [anon_sym_alignas] = ACTIONS(1165), - [anon_sym__Alignas] = ACTIONS(1165), - [sym_primitive_type] = ACTIONS(1165), - [anon_sym_enum] = ACTIONS(1165), - [anon_sym_struct] = ACTIONS(1165), - [anon_sym_union] = ACTIONS(1165), - [anon_sym_if] = ACTIONS(1165), - [anon_sym_else] = ACTIONS(1165), - [anon_sym_switch] = ACTIONS(1165), - [anon_sym_case] = ACTIONS(1165), - [anon_sym_default] = ACTIONS(1165), - [anon_sym_while] = ACTIONS(1165), - [anon_sym_do] = ACTIONS(1165), - [anon_sym_for] = ACTIONS(1165), - [anon_sym_return] = ACTIONS(1165), - [anon_sym_break] = ACTIONS(1165), - [anon_sym_continue] = ACTIONS(1165), - [anon_sym_goto] = ACTIONS(1165), - [anon_sym___try] = ACTIONS(1165), - [anon_sym___leave] = ACTIONS(1165), - [anon_sym_DASH_DASH] = ACTIONS(1167), - [anon_sym_PLUS_PLUS] = ACTIONS(1167), - [anon_sym_sizeof] = ACTIONS(1165), - [anon_sym___alignof__] = ACTIONS(1165), - [anon_sym___alignof] = ACTIONS(1165), - [anon_sym__alignof] = ACTIONS(1165), - [anon_sym_alignof] = ACTIONS(1165), - [anon_sym__Alignof] = ACTIONS(1165), - [anon_sym_offsetof] = ACTIONS(1165), - [anon_sym__Generic] = ACTIONS(1165), - [anon_sym_asm] = ACTIONS(1165), - [anon_sym___asm__] = ACTIONS(1165), - [sym_number_literal] = ACTIONS(1167), - [anon_sym_L_SQUOTE] = ACTIONS(1167), - [anon_sym_u_SQUOTE] = ACTIONS(1167), - [anon_sym_U_SQUOTE] = ACTIONS(1167), - [anon_sym_u8_SQUOTE] = ACTIONS(1167), - [anon_sym_SQUOTE] = ACTIONS(1167), - [anon_sym_L_DQUOTE] = ACTIONS(1167), - [anon_sym_u_DQUOTE] = ACTIONS(1167), - [anon_sym_U_DQUOTE] = ACTIONS(1167), - [anon_sym_u8_DQUOTE] = ACTIONS(1167), - [anon_sym_DQUOTE] = ACTIONS(1167), - [sym_true] = ACTIONS(1165), - [sym_false] = ACTIONS(1165), - [anon_sym_NULL] = ACTIONS(1165), - [anon_sym_nullptr] = ACTIONS(1165), - [sym_comment] = ACTIONS(3), + [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(1205), - [aux_sym_preproc_include_token1] = ACTIONS(1205), - [aux_sym_preproc_def_token1] = ACTIONS(1205), - [aux_sym_preproc_if_token1] = ACTIONS(1205), - [aux_sym_preproc_if_token2] = ACTIONS(1205), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1205), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1205), - [aux_sym_preproc_else_token1] = ACTIONS(1205), - [aux_sym_preproc_elif_token1] = ACTIONS(1205), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1205), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1205), - [sym_preproc_directive] = ACTIONS(1205), - [anon_sym_LPAREN2] = ACTIONS(1207), - [anon_sym_BANG] = ACTIONS(1207), - [anon_sym_TILDE] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1205), - [anon_sym_PLUS] = ACTIONS(1205), - [anon_sym_STAR] = ACTIONS(1207), - [anon_sym_AMP] = ACTIONS(1207), - [anon_sym_SEMI] = ACTIONS(1207), - [anon_sym___extension__] = ACTIONS(1205), - [anon_sym_typedef] = ACTIONS(1205), - [anon_sym_extern] = ACTIONS(1205), - [anon_sym___attribute__] = ACTIONS(1205), - [anon_sym___scanf] = ACTIONS(1205), - [anon_sym___printf] = ACTIONS(1205), - [anon_sym___read_mostly] = ACTIONS(1205), - [anon_sym___must_hold] = ACTIONS(1205), - [anon_sym___ro_after_init] = ACTIONS(1205), - [anon_sym___noreturn] = ACTIONS(1205), - [anon_sym___cold] = ACTIONS(1205), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1207), - [anon_sym___declspec] = ACTIONS(1205), - [anon_sym___init] = ACTIONS(1205), - [anon_sym___exit] = ACTIONS(1205), - [anon_sym___cdecl] = ACTIONS(1205), - [anon_sym___clrcall] = ACTIONS(1205), - [anon_sym___stdcall] = ACTIONS(1205), - [anon_sym___fastcall] = ACTIONS(1205), - [anon_sym___thiscall] = ACTIONS(1205), - [anon_sym___vectorcall] = ACTIONS(1205), - [anon_sym_LBRACE] = ACTIONS(1207), - [anon_sym_signed] = ACTIONS(1205), - [anon_sym_unsigned] = ACTIONS(1205), - [anon_sym_long] = ACTIONS(1205), - [anon_sym_short] = ACTIONS(1205), - [anon_sym_static] = ACTIONS(1205), - [anon_sym_auto] = ACTIONS(1205), - [anon_sym_register] = ACTIONS(1205), - [anon_sym_inline] = ACTIONS(1205), - [anon_sym___inline] = ACTIONS(1205), - [anon_sym___inline__] = ACTIONS(1205), - [anon_sym___forceinline] = ACTIONS(1205), - [anon_sym_thread_local] = ACTIONS(1205), - [anon_sym___thread] = ACTIONS(1205), - [anon_sym_const] = ACTIONS(1205), - [anon_sym_constexpr] = ACTIONS(1205), - [anon_sym_volatile] = ACTIONS(1205), - [anon_sym_restrict] = ACTIONS(1205), - [anon_sym___restrict__] = ACTIONS(1205), - [anon_sym__Atomic] = ACTIONS(1205), - [anon_sym__Noreturn] = ACTIONS(1205), - [anon_sym_noreturn] = ACTIONS(1205), - [anon_sym_alignas] = ACTIONS(1205), - [anon_sym__Alignas] = ACTIONS(1205), - [sym_primitive_type] = ACTIONS(1205), - [anon_sym_enum] = ACTIONS(1205), - [anon_sym_struct] = ACTIONS(1205), - [anon_sym_union] = ACTIONS(1205), - [anon_sym_if] = ACTIONS(1205), - [anon_sym_else] = ACTIONS(1205), - [anon_sym_switch] = ACTIONS(1205), - [anon_sym_case] = ACTIONS(1205), - [anon_sym_default] = ACTIONS(1205), - [anon_sym_while] = ACTIONS(1205), - [anon_sym_do] = ACTIONS(1205), - [anon_sym_for] = ACTIONS(1205), - [anon_sym_return] = ACTIONS(1205), - [anon_sym_break] = ACTIONS(1205), - [anon_sym_continue] = ACTIONS(1205), - [anon_sym_goto] = ACTIONS(1205), - [anon_sym___try] = ACTIONS(1205), - [anon_sym___leave] = ACTIONS(1205), - [anon_sym_DASH_DASH] = ACTIONS(1207), - [anon_sym_PLUS_PLUS] = ACTIONS(1207), - [anon_sym_sizeof] = ACTIONS(1205), - [anon_sym___alignof__] = ACTIONS(1205), - [anon_sym___alignof] = ACTIONS(1205), - [anon_sym__alignof] = ACTIONS(1205), - [anon_sym_alignof] = ACTIONS(1205), - [anon_sym__Alignof] = ACTIONS(1205), - [anon_sym_offsetof] = ACTIONS(1205), - [anon_sym__Generic] = ACTIONS(1205), - [anon_sym_asm] = ACTIONS(1205), - [anon_sym___asm__] = ACTIONS(1205), - [sym_number_literal] = ACTIONS(1207), - [anon_sym_L_SQUOTE] = ACTIONS(1207), - [anon_sym_u_SQUOTE] = ACTIONS(1207), - [anon_sym_U_SQUOTE] = ACTIONS(1207), - [anon_sym_u8_SQUOTE] = ACTIONS(1207), - [anon_sym_SQUOTE] = ACTIONS(1207), - [anon_sym_L_DQUOTE] = ACTIONS(1207), - [anon_sym_u_DQUOTE] = ACTIONS(1207), - [anon_sym_U_DQUOTE] = ACTIONS(1207), - [anon_sym_u8_DQUOTE] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1207), - [sym_true] = ACTIONS(1205), - [sym_false] = ACTIONS(1205), - [anon_sym_NULL] = ACTIONS(1205), - [anon_sym_nullptr] = ACTIONS(1205), - [sym_comment] = ACTIONS(3), + [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] = { - [sym_identifier] = ACTIONS(1209), - [aux_sym_preproc_include_token1] = ACTIONS(1209), - [aux_sym_preproc_def_token1] = ACTIONS(1209), - [aux_sym_preproc_if_token1] = ACTIONS(1209), - [aux_sym_preproc_if_token2] = ACTIONS(1209), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1209), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1209), - [aux_sym_preproc_else_token1] = ACTIONS(1209), - [aux_sym_preproc_elif_token1] = ACTIONS(1209), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1209), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1209), - [sym_preproc_directive] = ACTIONS(1209), - [anon_sym_LPAREN2] = ACTIONS(1211), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1211), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_PLUS] = ACTIONS(1209), - [anon_sym_STAR] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1211), - [anon_sym_SEMI] = ACTIONS(1211), - [anon_sym___extension__] = ACTIONS(1209), - [anon_sym_typedef] = ACTIONS(1209), - [anon_sym_extern] = ACTIONS(1209), - [anon_sym___attribute__] = ACTIONS(1209), - [anon_sym___scanf] = ACTIONS(1209), - [anon_sym___printf] = ACTIONS(1209), - [anon_sym___read_mostly] = ACTIONS(1209), - [anon_sym___must_hold] = ACTIONS(1209), - [anon_sym___ro_after_init] = ACTIONS(1209), - [anon_sym___noreturn] = ACTIONS(1209), - [anon_sym___cold] = ACTIONS(1209), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1211), - [anon_sym___declspec] = ACTIONS(1209), - [anon_sym___init] = ACTIONS(1209), - [anon_sym___exit] = ACTIONS(1209), - [anon_sym___cdecl] = ACTIONS(1209), - [anon_sym___clrcall] = ACTIONS(1209), - [anon_sym___stdcall] = ACTIONS(1209), - [anon_sym___fastcall] = ACTIONS(1209), - [anon_sym___thiscall] = ACTIONS(1209), - [anon_sym___vectorcall] = ACTIONS(1209), - [anon_sym_LBRACE] = ACTIONS(1211), - [anon_sym_signed] = ACTIONS(1209), - [anon_sym_unsigned] = ACTIONS(1209), - [anon_sym_long] = ACTIONS(1209), - [anon_sym_short] = ACTIONS(1209), - [anon_sym_static] = ACTIONS(1209), - [anon_sym_auto] = ACTIONS(1209), - [anon_sym_register] = ACTIONS(1209), - [anon_sym_inline] = ACTIONS(1209), - [anon_sym___inline] = ACTIONS(1209), - [anon_sym___inline__] = ACTIONS(1209), - [anon_sym___forceinline] = ACTIONS(1209), - [anon_sym_thread_local] = ACTIONS(1209), - [anon_sym___thread] = ACTIONS(1209), - [anon_sym_const] = ACTIONS(1209), - [anon_sym_constexpr] = ACTIONS(1209), - [anon_sym_volatile] = ACTIONS(1209), - [anon_sym_restrict] = ACTIONS(1209), - [anon_sym___restrict__] = ACTIONS(1209), - [anon_sym__Atomic] = ACTIONS(1209), - [anon_sym__Noreturn] = ACTIONS(1209), - [anon_sym_noreturn] = ACTIONS(1209), - [anon_sym_alignas] = ACTIONS(1209), - [anon_sym__Alignas] = ACTIONS(1209), - [sym_primitive_type] = ACTIONS(1209), - [anon_sym_enum] = ACTIONS(1209), - [anon_sym_struct] = ACTIONS(1209), - [anon_sym_union] = ACTIONS(1209), - [anon_sym_if] = ACTIONS(1209), - [anon_sym_else] = ACTIONS(1209), - [anon_sym_switch] = ACTIONS(1209), - [anon_sym_case] = ACTIONS(1209), - [anon_sym_default] = ACTIONS(1209), - [anon_sym_while] = ACTIONS(1209), - [anon_sym_do] = ACTIONS(1209), - [anon_sym_for] = ACTIONS(1209), - [anon_sym_return] = ACTIONS(1209), - [anon_sym_break] = ACTIONS(1209), - [anon_sym_continue] = ACTIONS(1209), - [anon_sym_goto] = ACTIONS(1209), - [anon_sym___try] = ACTIONS(1209), - [anon_sym___leave] = ACTIONS(1209), - [anon_sym_DASH_DASH] = ACTIONS(1211), - [anon_sym_PLUS_PLUS] = ACTIONS(1211), - [anon_sym_sizeof] = ACTIONS(1209), - [anon_sym___alignof__] = ACTIONS(1209), - [anon_sym___alignof] = ACTIONS(1209), - [anon_sym__alignof] = ACTIONS(1209), - [anon_sym_alignof] = ACTIONS(1209), - [anon_sym__Alignof] = ACTIONS(1209), - [anon_sym_offsetof] = ACTIONS(1209), - [anon_sym__Generic] = ACTIONS(1209), - [anon_sym_asm] = ACTIONS(1209), - [anon_sym___asm__] = ACTIONS(1209), - [sym_number_literal] = ACTIONS(1211), - [anon_sym_L_SQUOTE] = ACTIONS(1211), - [anon_sym_u_SQUOTE] = ACTIONS(1211), - [anon_sym_U_SQUOTE] = ACTIONS(1211), - [anon_sym_u8_SQUOTE] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1211), - [anon_sym_L_DQUOTE] = ACTIONS(1211), - [anon_sym_u_DQUOTE] = ACTIONS(1211), - [anon_sym_U_DQUOTE] = ACTIONS(1211), - [anon_sym_u8_DQUOTE] = ACTIONS(1211), - [anon_sym_DQUOTE] = ACTIONS(1211), - [sym_true] = ACTIONS(1209), - [sym_false] = ACTIONS(1209), - [anon_sym_NULL] = ACTIONS(1209), - [anon_sym_nullptr] = ACTIONS(1209), - [sym_comment] = ACTIONS(3), + [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), }, [95] = { - [sym_identifier] = ACTIONS(1213), - [aux_sym_preproc_include_token1] = ACTIONS(1213), - [aux_sym_preproc_def_token1] = ACTIONS(1213), - [aux_sym_preproc_if_token1] = ACTIONS(1213), - [aux_sym_preproc_if_token2] = ACTIONS(1213), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1213), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1213), - [aux_sym_preproc_else_token1] = ACTIONS(1213), - [aux_sym_preproc_elif_token1] = ACTIONS(1213), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1213), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1213), - [sym_preproc_directive] = ACTIONS(1213), - [anon_sym_LPAREN2] = ACTIONS(1215), - [anon_sym_BANG] = ACTIONS(1215), - [anon_sym_TILDE] = ACTIONS(1215), - [anon_sym_DASH] = ACTIONS(1213), - [anon_sym_PLUS] = ACTIONS(1213), - [anon_sym_STAR] = ACTIONS(1215), - [anon_sym_AMP] = ACTIONS(1215), - [anon_sym_SEMI] = ACTIONS(1215), - [anon_sym___extension__] = ACTIONS(1213), - [anon_sym_typedef] = ACTIONS(1213), - [anon_sym_extern] = ACTIONS(1213), - [anon_sym___attribute__] = ACTIONS(1213), - [anon_sym___scanf] = ACTIONS(1213), - [anon_sym___printf] = ACTIONS(1213), - [anon_sym___read_mostly] = ACTIONS(1213), - [anon_sym___must_hold] = ACTIONS(1213), - [anon_sym___ro_after_init] = ACTIONS(1213), - [anon_sym___noreturn] = ACTIONS(1213), - [anon_sym___cold] = ACTIONS(1213), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1215), - [anon_sym___declspec] = ACTIONS(1213), - [anon_sym___init] = ACTIONS(1213), - [anon_sym___exit] = ACTIONS(1213), - [anon_sym___cdecl] = ACTIONS(1213), - [anon_sym___clrcall] = ACTIONS(1213), - [anon_sym___stdcall] = ACTIONS(1213), - [anon_sym___fastcall] = ACTIONS(1213), - [anon_sym___thiscall] = ACTIONS(1213), - [anon_sym___vectorcall] = ACTIONS(1213), - [anon_sym_LBRACE] = ACTIONS(1215), - [anon_sym_signed] = ACTIONS(1213), - [anon_sym_unsigned] = ACTIONS(1213), - [anon_sym_long] = ACTIONS(1213), - [anon_sym_short] = ACTIONS(1213), - [anon_sym_static] = ACTIONS(1213), - [anon_sym_auto] = ACTIONS(1213), - [anon_sym_register] = ACTIONS(1213), - [anon_sym_inline] = ACTIONS(1213), - [anon_sym___inline] = ACTIONS(1213), - [anon_sym___inline__] = ACTIONS(1213), - [anon_sym___forceinline] = ACTIONS(1213), - [anon_sym_thread_local] = ACTIONS(1213), - [anon_sym___thread] = ACTIONS(1213), - [anon_sym_const] = ACTIONS(1213), - [anon_sym_constexpr] = ACTIONS(1213), - [anon_sym_volatile] = ACTIONS(1213), - [anon_sym_restrict] = ACTIONS(1213), - [anon_sym___restrict__] = ACTIONS(1213), - [anon_sym__Atomic] = ACTIONS(1213), - [anon_sym__Noreturn] = ACTIONS(1213), - [anon_sym_noreturn] = ACTIONS(1213), - [anon_sym_alignas] = ACTIONS(1213), - [anon_sym__Alignas] = ACTIONS(1213), - [sym_primitive_type] = ACTIONS(1213), - [anon_sym_enum] = ACTIONS(1213), - [anon_sym_struct] = ACTIONS(1213), - [anon_sym_union] = ACTIONS(1213), - [anon_sym_if] = ACTIONS(1213), - [anon_sym_else] = ACTIONS(1213), - [anon_sym_switch] = ACTIONS(1213), - [anon_sym_case] = ACTIONS(1213), - [anon_sym_default] = ACTIONS(1213), - [anon_sym_while] = ACTIONS(1213), - [anon_sym_do] = ACTIONS(1213), - [anon_sym_for] = ACTIONS(1213), - [anon_sym_return] = ACTIONS(1213), - [anon_sym_break] = ACTIONS(1213), - [anon_sym_continue] = ACTIONS(1213), - [anon_sym_goto] = ACTIONS(1213), - [anon_sym___try] = ACTIONS(1213), - [anon_sym___leave] = ACTIONS(1213), - [anon_sym_DASH_DASH] = ACTIONS(1215), - [anon_sym_PLUS_PLUS] = ACTIONS(1215), - [anon_sym_sizeof] = ACTIONS(1213), - [anon_sym___alignof__] = ACTIONS(1213), - [anon_sym___alignof] = ACTIONS(1213), - [anon_sym__alignof] = ACTIONS(1213), - [anon_sym_alignof] = ACTIONS(1213), - [anon_sym__Alignof] = ACTIONS(1213), - [anon_sym_offsetof] = ACTIONS(1213), - [anon_sym__Generic] = ACTIONS(1213), - [anon_sym_asm] = ACTIONS(1213), - [anon_sym___asm__] = ACTIONS(1213), - [sym_number_literal] = ACTIONS(1215), - [anon_sym_L_SQUOTE] = ACTIONS(1215), - [anon_sym_u_SQUOTE] = ACTIONS(1215), - [anon_sym_U_SQUOTE] = ACTIONS(1215), - [anon_sym_u8_SQUOTE] = ACTIONS(1215), - [anon_sym_SQUOTE] = ACTIONS(1215), - [anon_sym_L_DQUOTE] = ACTIONS(1215), - [anon_sym_u_DQUOTE] = ACTIONS(1215), - [anon_sym_U_DQUOTE] = ACTIONS(1215), - [anon_sym_u8_DQUOTE] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1215), - [sym_true] = ACTIONS(1213), - [sym_false] = ACTIONS(1213), - [anon_sym_NULL] = ACTIONS(1213), - [anon_sym_nullptr] = ACTIONS(1213), - [sym_comment] = ACTIONS(3), + [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), + [aux_sym_preproc_else_token1] = ACTIONS(1254), + [aux_sym_preproc_elif_token1] = ACTIONS(1254), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1254), + [aux_sym_preproc_elifdef_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), }, [96] = { - [sym_identifier] = ACTIONS(1217), - [aux_sym_preproc_include_token1] = ACTIONS(1217), - [aux_sym_preproc_def_token1] = ACTIONS(1217), - [aux_sym_preproc_if_token1] = ACTIONS(1217), - [aux_sym_preproc_if_token2] = ACTIONS(1217), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1217), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1217), - [aux_sym_preproc_else_token1] = ACTIONS(1217), - [aux_sym_preproc_elif_token1] = ACTIONS(1217), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1217), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1217), - [sym_preproc_directive] = ACTIONS(1217), - [anon_sym_LPAREN2] = ACTIONS(1219), - [anon_sym_BANG] = ACTIONS(1219), - [anon_sym_TILDE] = ACTIONS(1219), - [anon_sym_DASH] = ACTIONS(1217), - [anon_sym_PLUS] = ACTIONS(1217), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_AMP] = ACTIONS(1219), - [anon_sym_SEMI] = ACTIONS(1219), - [anon_sym___extension__] = ACTIONS(1217), - [anon_sym_typedef] = ACTIONS(1217), - [anon_sym_extern] = ACTIONS(1217), - [anon_sym___attribute__] = ACTIONS(1217), - [anon_sym___scanf] = ACTIONS(1217), - [anon_sym___printf] = ACTIONS(1217), - [anon_sym___read_mostly] = ACTIONS(1217), - [anon_sym___must_hold] = ACTIONS(1217), - [anon_sym___ro_after_init] = ACTIONS(1217), - [anon_sym___noreturn] = ACTIONS(1217), - [anon_sym___cold] = ACTIONS(1217), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1219), - [anon_sym___declspec] = ACTIONS(1217), - [anon_sym___init] = ACTIONS(1217), - [anon_sym___exit] = ACTIONS(1217), - [anon_sym___cdecl] = ACTIONS(1217), - [anon_sym___clrcall] = ACTIONS(1217), - [anon_sym___stdcall] = ACTIONS(1217), - [anon_sym___fastcall] = ACTIONS(1217), - [anon_sym___thiscall] = ACTIONS(1217), - [anon_sym___vectorcall] = ACTIONS(1217), - [anon_sym_LBRACE] = ACTIONS(1219), - [anon_sym_signed] = ACTIONS(1217), - [anon_sym_unsigned] = ACTIONS(1217), - [anon_sym_long] = ACTIONS(1217), - [anon_sym_short] = ACTIONS(1217), - [anon_sym_static] = ACTIONS(1217), - [anon_sym_auto] = ACTIONS(1217), - [anon_sym_register] = ACTIONS(1217), - [anon_sym_inline] = ACTIONS(1217), - [anon_sym___inline] = ACTIONS(1217), - [anon_sym___inline__] = ACTIONS(1217), - [anon_sym___forceinline] = ACTIONS(1217), - [anon_sym_thread_local] = ACTIONS(1217), - [anon_sym___thread] = ACTIONS(1217), - [anon_sym_const] = ACTIONS(1217), - [anon_sym_constexpr] = ACTIONS(1217), - [anon_sym_volatile] = ACTIONS(1217), - [anon_sym_restrict] = ACTIONS(1217), - [anon_sym___restrict__] = ACTIONS(1217), - [anon_sym__Atomic] = ACTIONS(1217), - [anon_sym__Noreturn] = ACTIONS(1217), - [anon_sym_noreturn] = ACTIONS(1217), - [anon_sym_alignas] = ACTIONS(1217), - [anon_sym__Alignas] = ACTIONS(1217), - [sym_primitive_type] = ACTIONS(1217), - [anon_sym_enum] = ACTIONS(1217), - [anon_sym_struct] = ACTIONS(1217), - [anon_sym_union] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1217), - [anon_sym_else] = ACTIONS(1217), - [anon_sym_switch] = ACTIONS(1217), - [anon_sym_case] = ACTIONS(1217), - [anon_sym_default] = ACTIONS(1217), - [anon_sym_while] = ACTIONS(1217), - [anon_sym_do] = ACTIONS(1217), - [anon_sym_for] = ACTIONS(1217), - [anon_sym_return] = ACTIONS(1217), - [anon_sym_break] = ACTIONS(1217), - [anon_sym_continue] = ACTIONS(1217), - [anon_sym_goto] = ACTIONS(1217), - [anon_sym___try] = ACTIONS(1217), - [anon_sym___leave] = ACTIONS(1217), - [anon_sym_DASH_DASH] = ACTIONS(1219), - [anon_sym_PLUS_PLUS] = ACTIONS(1219), - [anon_sym_sizeof] = ACTIONS(1217), - [anon_sym___alignof__] = ACTIONS(1217), - [anon_sym___alignof] = ACTIONS(1217), - [anon_sym__alignof] = ACTIONS(1217), - [anon_sym_alignof] = ACTIONS(1217), - [anon_sym__Alignof] = ACTIONS(1217), - [anon_sym_offsetof] = ACTIONS(1217), - [anon_sym__Generic] = ACTIONS(1217), - [anon_sym_asm] = ACTIONS(1217), - [anon_sym___asm__] = ACTIONS(1217), - [sym_number_literal] = ACTIONS(1219), - [anon_sym_L_SQUOTE] = ACTIONS(1219), - [anon_sym_u_SQUOTE] = ACTIONS(1219), - [anon_sym_U_SQUOTE] = ACTIONS(1219), - [anon_sym_u8_SQUOTE] = ACTIONS(1219), - [anon_sym_SQUOTE] = ACTIONS(1219), - [anon_sym_L_DQUOTE] = ACTIONS(1219), - [anon_sym_u_DQUOTE] = ACTIONS(1219), - [anon_sym_U_DQUOTE] = ACTIONS(1219), - [anon_sym_u8_DQUOTE] = ACTIONS(1219), - [anon_sym_DQUOTE] = ACTIONS(1219), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [anon_sym_NULL] = ACTIONS(1217), - [anon_sym_nullptr] = ACTIONS(1217), - [sym_comment] = ACTIONS(3), + [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_if_token2] = ACTIONS(1258), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1258), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1258), + [aux_sym_preproc_else_token1] = ACTIONS(1258), + [aux_sym_preproc_elif_token1] = ACTIONS(1258), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1258), + [aux_sym_preproc_elifdef_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), }, [97] = { - [sym_identifier] = ACTIONS(1221), - [aux_sym_preproc_include_token1] = ACTIONS(1221), - [aux_sym_preproc_def_token1] = ACTIONS(1221), - [aux_sym_preproc_if_token1] = ACTIONS(1221), - [aux_sym_preproc_if_token2] = ACTIONS(1221), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1221), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1221), - [aux_sym_preproc_else_token1] = ACTIONS(1221), - [aux_sym_preproc_elif_token1] = ACTIONS(1221), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1221), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1221), - [sym_preproc_directive] = ACTIONS(1221), - [anon_sym_LPAREN2] = ACTIONS(1223), - [anon_sym_BANG] = ACTIONS(1223), - [anon_sym_TILDE] = ACTIONS(1223), - [anon_sym_DASH] = ACTIONS(1221), - [anon_sym_PLUS] = ACTIONS(1221), - [anon_sym_STAR] = ACTIONS(1223), - [anon_sym_AMP] = ACTIONS(1223), - [anon_sym_SEMI] = ACTIONS(1223), - [anon_sym___extension__] = ACTIONS(1221), - [anon_sym_typedef] = ACTIONS(1221), - [anon_sym_extern] = ACTIONS(1221), - [anon_sym___attribute__] = ACTIONS(1221), - [anon_sym___scanf] = ACTIONS(1221), - [anon_sym___printf] = ACTIONS(1221), - [anon_sym___read_mostly] = ACTIONS(1221), - [anon_sym___must_hold] = ACTIONS(1221), - [anon_sym___ro_after_init] = ACTIONS(1221), - [anon_sym___noreturn] = ACTIONS(1221), - [anon_sym___cold] = ACTIONS(1221), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1223), - [anon_sym___declspec] = ACTIONS(1221), - [anon_sym___init] = ACTIONS(1221), - [anon_sym___exit] = ACTIONS(1221), - [anon_sym___cdecl] = ACTIONS(1221), - [anon_sym___clrcall] = ACTIONS(1221), - [anon_sym___stdcall] = ACTIONS(1221), - [anon_sym___fastcall] = ACTIONS(1221), - [anon_sym___thiscall] = ACTIONS(1221), - [anon_sym___vectorcall] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_signed] = ACTIONS(1221), - [anon_sym_unsigned] = ACTIONS(1221), - [anon_sym_long] = ACTIONS(1221), - [anon_sym_short] = ACTIONS(1221), - [anon_sym_static] = ACTIONS(1221), - [anon_sym_auto] = ACTIONS(1221), - [anon_sym_register] = ACTIONS(1221), - [anon_sym_inline] = ACTIONS(1221), - [anon_sym___inline] = ACTIONS(1221), - [anon_sym___inline__] = ACTIONS(1221), - [anon_sym___forceinline] = ACTIONS(1221), - [anon_sym_thread_local] = ACTIONS(1221), - [anon_sym___thread] = ACTIONS(1221), - [anon_sym_const] = ACTIONS(1221), - [anon_sym_constexpr] = ACTIONS(1221), - [anon_sym_volatile] = ACTIONS(1221), - [anon_sym_restrict] = ACTIONS(1221), - [anon_sym___restrict__] = ACTIONS(1221), - [anon_sym__Atomic] = ACTIONS(1221), - [anon_sym__Noreturn] = ACTIONS(1221), - [anon_sym_noreturn] = ACTIONS(1221), - [anon_sym_alignas] = ACTIONS(1221), - [anon_sym__Alignas] = ACTIONS(1221), - [sym_primitive_type] = ACTIONS(1221), - [anon_sym_enum] = ACTIONS(1221), - [anon_sym_struct] = ACTIONS(1221), - [anon_sym_union] = ACTIONS(1221), - [anon_sym_if] = ACTIONS(1221), - [anon_sym_else] = ACTIONS(1221), - [anon_sym_switch] = ACTIONS(1221), - [anon_sym_case] = ACTIONS(1221), - [anon_sym_default] = ACTIONS(1221), - [anon_sym_while] = ACTIONS(1221), - [anon_sym_do] = ACTIONS(1221), - [anon_sym_for] = ACTIONS(1221), - [anon_sym_return] = ACTIONS(1221), - [anon_sym_break] = ACTIONS(1221), - [anon_sym_continue] = ACTIONS(1221), - [anon_sym_goto] = ACTIONS(1221), - [anon_sym___try] = ACTIONS(1221), - [anon_sym___leave] = ACTIONS(1221), - [anon_sym_DASH_DASH] = ACTIONS(1223), - [anon_sym_PLUS_PLUS] = ACTIONS(1223), - [anon_sym_sizeof] = ACTIONS(1221), - [anon_sym___alignof__] = ACTIONS(1221), - [anon_sym___alignof] = ACTIONS(1221), - [anon_sym__alignof] = ACTIONS(1221), - [anon_sym_alignof] = ACTIONS(1221), - [anon_sym__Alignof] = ACTIONS(1221), - [anon_sym_offsetof] = ACTIONS(1221), - [anon_sym__Generic] = ACTIONS(1221), - [anon_sym_asm] = ACTIONS(1221), - [anon_sym___asm__] = ACTIONS(1221), - [sym_number_literal] = ACTIONS(1223), - [anon_sym_L_SQUOTE] = ACTIONS(1223), - [anon_sym_u_SQUOTE] = ACTIONS(1223), - [anon_sym_U_SQUOTE] = ACTIONS(1223), - [anon_sym_u8_SQUOTE] = ACTIONS(1223), - [anon_sym_SQUOTE] = ACTIONS(1223), - [anon_sym_L_DQUOTE] = ACTIONS(1223), - [anon_sym_u_DQUOTE] = ACTIONS(1223), - [anon_sym_U_DQUOTE] = ACTIONS(1223), - [anon_sym_u8_DQUOTE] = ACTIONS(1223), - [anon_sym_DQUOTE] = ACTIONS(1223), - [sym_true] = ACTIONS(1221), - [sym_false] = ACTIONS(1221), - [anon_sym_NULL] = ACTIONS(1221), - [anon_sym_nullptr] = ACTIONS(1221), - [sym_comment] = ACTIONS(3), + [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), + [aux_sym_preproc_else_token1] = ACTIONS(1262), + [aux_sym_preproc_elif_token1] = ACTIONS(1262), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1262), + [aux_sym_preproc_elifdef_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), }, [98] = { - [sym_identifier] = ACTIONS(1225), - [aux_sym_preproc_include_token1] = ACTIONS(1225), - [aux_sym_preproc_def_token1] = ACTIONS(1225), - [aux_sym_preproc_if_token1] = ACTIONS(1225), - [aux_sym_preproc_if_token2] = ACTIONS(1225), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1225), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1225), - [aux_sym_preproc_else_token1] = ACTIONS(1225), - [aux_sym_preproc_elif_token1] = ACTIONS(1225), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1225), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1225), - [sym_preproc_directive] = ACTIONS(1225), - [anon_sym_LPAREN2] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_TILDE] = ACTIONS(1227), - [anon_sym_DASH] = ACTIONS(1225), - [anon_sym_PLUS] = ACTIONS(1225), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1227), - [anon_sym_SEMI] = ACTIONS(1227), - [anon_sym___extension__] = ACTIONS(1225), - [anon_sym_typedef] = ACTIONS(1225), - [anon_sym_extern] = ACTIONS(1225), - [anon_sym___attribute__] = ACTIONS(1225), - [anon_sym___scanf] = ACTIONS(1225), - [anon_sym___printf] = ACTIONS(1225), - [anon_sym___read_mostly] = ACTIONS(1225), - [anon_sym___must_hold] = ACTIONS(1225), - [anon_sym___ro_after_init] = ACTIONS(1225), - [anon_sym___noreturn] = ACTIONS(1225), - [anon_sym___cold] = ACTIONS(1225), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1227), - [anon_sym___declspec] = ACTIONS(1225), - [anon_sym___init] = ACTIONS(1225), - [anon_sym___exit] = ACTIONS(1225), - [anon_sym___cdecl] = ACTIONS(1225), - [anon_sym___clrcall] = ACTIONS(1225), - [anon_sym___stdcall] = ACTIONS(1225), - [anon_sym___fastcall] = ACTIONS(1225), - [anon_sym___thiscall] = ACTIONS(1225), - [anon_sym___vectorcall] = ACTIONS(1225), - [anon_sym_LBRACE] = ACTIONS(1227), - [anon_sym_signed] = ACTIONS(1225), - [anon_sym_unsigned] = ACTIONS(1225), - [anon_sym_long] = ACTIONS(1225), - [anon_sym_short] = ACTIONS(1225), - [anon_sym_static] = ACTIONS(1225), - [anon_sym_auto] = ACTIONS(1225), - [anon_sym_register] = ACTIONS(1225), - [anon_sym_inline] = ACTIONS(1225), - [anon_sym___inline] = ACTIONS(1225), - [anon_sym___inline__] = ACTIONS(1225), - [anon_sym___forceinline] = ACTIONS(1225), - [anon_sym_thread_local] = ACTIONS(1225), - [anon_sym___thread] = ACTIONS(1225), - [anon_sym_const] = ACTIONS(1225), - [anon_sym_constexpr] = ACTIONS(1225), - [anon_sym_volatile] = ACTIONS(1225), - [anon_sym_restrict] = ACTIONS(1225), - [anon_sym___restrict__] = ACTIONS(1225), - [anon_sym__Atomic] = ACTIONS(1225), - [anon_sym__Noreturn] = ACTIONS(1225), - [anon_sym_noreturn] = ACTIONS(1225), - [anon_sym_alignas] = ACTIONS(1225), - [anon_sym__Alignas] = ACTIONS(1225), - [sym_primitive_type] = ACTIONS(1225), - [anon_sym_enum] = ACTIONS(1225), - [anon_sym_struct] = ACTIONS(1225), - [anon_sym_union] = ACTIONS(1225), - [anon_sym_if] = ACTIONS(1225), - [anon_sym_else] = ACTIONS(1225), - [anon_sym_switch] = ACTIONS(1225), - [anon_sym_case] = ACTIONS(1225), - [anon_sym_default] = ACTIONS(1225), - [anon_sym_while] = ACTIONS(1225), - [anon_sym_do] = ACTIONS(1225), - [anon_sym_for] = ACTIONS(1225), - [anon_sym_return] = ACTIONS(1225), - [anon_sym_break] = ACTIONS(1225), - [anon_sym_continue] = ACTIONS(1225), - [anon_sym_goto] = ACTIONS(1225), - [anon_sym___try] = ACTIONS(1225), - [anon_sym___leave] = ACTIONS(1225), - [anon_sym_DASH_DASH] = ACTIONS(1227), - [anon_sym_PLUS_PLUS] = ACTIONS(1227), - [anon_sym_sizeof] = ACTIONS(1225), - [anon_sym___alignof__] = ACTIONS(1225), - [anon_sym___alignof] = ACTIONS(1225), - [anon_sym__alignof] = ACTIONS(1225), - [anon_sym_alignof] = ACTIONS(1225), - [anon_sym__Alignof] = ACTIONS(1225), - [anon_sym_offsetof] = ACTIONS(1225), - [anon_sym__Generic] = ACTIONS(1225), - [anon_sym_asm] = ACTIONS(1225), - [anon_sym___asm__] = ACTIONS(1225), - [sym_number_literal] = ACTIONS(1227), - [anon_sym_L_SQUOTE] = ACTIONS(1227), - [anon_sym_u_SQUOTE] = ACTIONS(1227), - [anon_sym_U_SQUOTE] = ACTIONS(1227), - [anon_sym_u8_SQUOTE] = ACTIONS(1227), - [anon_sym_SQUOTE] = ACTIONS(1227), - [anon_sym_L_DQUOTE] = ACTIONS(1227), - [anon_sym_u_DQUOTE] = ACTIONS(1227), - [anon_sym_U_DQUOTE] = ACTIONS(1227), - [anon_sym_u8_DQUOTE] = ACTIONS(1227), - [anon_sym_DQUOTE] = ACTIONS(1227), - [sym_true] = ACTIONS(1225), - [sym_false] = ACTIONS(1225), - [anon_sym_NULL] = ACTIONS(1225), - [anon_sym_nullptr] = ACTIONS(1225), - [sym_comment] = ACTIONS(3), + [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), + [aux_sym_preproc_else_token1] = ACTIONS(1266), + [aux_sym_preproc_elif_token1] = ACTIONS(1266), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1266), + [aux_sym_preproc_elifdef_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), }, [99] = { - [sym_identifier] = ACTIONS(1165), - [aux_sym_preproc_include_token1] = ACTIONS(1165), - [aux_sym_preproc_def_token1] = ACTIONS(1165), - [aux_sym_preproc_if_token1] = ACTIONS(1165), - [aux_sym_preproc_if_token2] = ACTIONS(1165), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1165), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1165), - [aux_sym_preproc_else_token1] = ACTIONS(1165), - [aux_sym_preproc_elif_token1] = ACTIONS(1165), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1165), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1165), - [sym_preproc_directive] = ACTIONS(1165), - [anon_sym_LPAREN2] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1167), - [anon_sym_TILDE] = ACTIONS(1167), - [anon_sym_DASH] = ACTIONS(1165), - [anon_sym_PLUS] = ACTIONS(1165), - [anon_sym_STAR] = ACTIONS(1167), - [anon_sym_AMP] = ACTIONS(1167), - [anon_sym_SEMI] = ACTIONS(1167), - [anon_sym___extension__] = ACTIONS(1165), - [anon_sym_typedef] = ACTIONS(1165), - [anon_sym_extern] = ACTIONS(1165), - [anon_sym___attribute__] = ACTIONS(1165), - [anon_sym___scanf] = ACTIONS(1165), - [anon_sym___printf] = ACTIONS(1165), - [anon_sym___read_mostly] = ACTIONS(1165), - [anon_sym___must_hold] = ACTIONS(1165), - [anon_sym___ro_after_init] = ACTIONS(1165), - [anon_sym___noreturn] = ACTIONS(1165), - [anon_sym___cold] = ACTIONS(1165), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1167), - [anon_sym___declspec] = ACTIONS(1165), - [anon_sym___init] = ACTIONS(1165), - [anon_sym___exit] = ACTIONS(1165), - [anon_sym___cdecl] = ACTIONS(1165), - [anon_sym___clrcall] = ACTIONS(1165), - [anon_sym___stdcall] = ACTIONS(1165), - [anon_sym___fastcall] = ACTIONS(1165), - [anon_sym___thiscall] = ACTIONS(1165), - [anon_sym___vectorcall] = ACTIONS(1165), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_signed] = ACTIONS(1165), - [anon_sym_unsigned] = ACTIONS(1165), - [anon_sym_long] = ACTIONS(1165), - [anon_sym_short] = ACTIONS(1165), - [anon_sym_static] = ACTIONS(1165), - [anon_sym_auto] = ACTIONS(1165), - [anon_sym_register] = ACTIONS(1165), - [anon_sym_inline] = ACTIONS(1165), - [anon_sym___inline] = ACTIONS(1165), - [anon_sym___inline__] = ACTIONS(1165), - [anon_sym___forceinline] = ACTIONS(1165), - [anon_sym_thread_local] = ACTIONS(1165), - [anon_sym___thread] = ACTIONS(1165), - [anon_sym_const] = ACTIONS(1165), - [anon_sym_constexpr] = ACTIONS(1165), - [anon_sym_volatile] = ACTIONS(1165), - [anon_sym_restrict] = ACTIONS(1165), - [anon_sym___restrict__] = ACTIONS(1165), - [anon_sym__Atomic] = ACTIONS(1165), - [anon_sym__Noreturn] = ACTIONS(1165), - [anon_sym_noreturn] = ACTIONS(1165), - [anon_sym_alignas] = ACTIONS(1165), - [anon_sym__Alignas] = ACTIONS(1165), - [sym_primitive_type] = ACTIONS(1165), - [anon_sym_enum] = ACTIONS(1165), - [anon_sym_struct] = ACTIONS(1165), - [anon_sym_union] = ACTIONS(1165), - [anon_sym_if] = ACTIONS(1165), - [anon_sym_else] = ACTIONS(1165), - [anon_sym_switch] = ACTIONS(1165), - [anon_sym_case] = ACTIONS(1165), - [anon_sym_default] = ACTIONS(1165), - [anon_sym_while] = ACTIONS(1165), - [anon_sym_do] = ACTIONS(1165), - [anon_sym_for] = ACTIONS(1165), - [anon_sym_return] = ACTIONS(1165), - [anon_sym_break] = ACTIONS(1165), - [anon_sym_continue] = ACTIONS(1165), - [anon_sym_goto] = ACTIONS(1165), - [anon_sym___try] = ACTIONS(1165), - [anon_sym___leave] = ACTIONS(1165), - [anon_sym_DASH_DASH] = ACTIONS(1167), - [anon_sym_PLUS_PLUS] = ACTIONS(1167), - [anon_sym_sizeof] = ACTIONS(1165), - [anon_sym___alignof__] = ACTIONS(1165), - [anon_sym___alignof] = ACTIONS(1165), - [anon_sym__alignof] = ACTIONS(1165), - [anon_sym_alignof] = ACTIONS(1165), - [anon_sym__Alignof] = ACTIONS(1165), - [anon_sym_offsetof] = ACTIONS(1165), - [anon_sym__Generic] = ACTIONS(1165), - [anon_sym_asm] = ACTIONS(1165), - [anon_sym___asm__] = ACTIONS(1165), - [sym_number_literal] = ACTIONS(1167), - [anon_sym_L_SQUOTE] = ACTIONS(1167), - [anon_sym_u_SQUOTE] = ACTIONS(1167), - [anon_sym_U_SQUOTE] = ACTIONS(1167), - [anon_sym_u8_SQUOTE] = ACTIONS(1167), - [anon_sym_SQUOTE] = ACTIONS(1167), - [anon_sym_L_DQUOTE] = ACTIONS(1167), - [anon_sym_u_DQUOTE] = ACTIONS(1167), - [anon_sym_U_DQUOTE] = ACTIONS(1167), - [anon_sym_u8_DQUOTE] = ACTIONS(1167), - [anon_sym_DQUOTE] = ACTIONS(1167), - [sym_true] = ACTIONS(1165), - [sym_false] = ACTIONS(1165), - [anon_sym_NULL] = ACTIONS(1165), - [anon_sym_nullptr] = ACTIONS(1165), - [sym_comment] = ACTIONS(3), + [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), + [aux_sym_preproc_else_token1] = ACTIONS(1270), + [aux_sym_preproc_elif_token1] = ACTIONS(1270), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1270), + [aux_sym_preproc_elifdef_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), }, [100] = { - [sym_identifier] = ACTIONS(1225), - [aux_sym_preproc_include_token1] = ACTIONS(1225), - [aux_sym_preproc_def_token1] = ACTIONS(1225), - [aux_sym_preproc_if_token1] = ACTIONS(1225), - [aux_sym_preproc_if_token2] = ACTIONS(1225), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1225), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1225), - [aux_sym_preproc_else_token1] = ACTIONS(1225), - [aux_sym_preproc_elif_token1] = ACTIONS(1225), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1225), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1225), - [sym_preproc_directive] = ACTIONS(1225), - [anon_sym_LPAREN2] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_TILDE] = ACTIONS(1227), - [anon_sym_DASH] = ACTIONS(1225), - [anon_sym_PLUS] = ACTIONS(1225), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1227), - [anon_sym_SEMI] = ACTIONS(1227), - [anon_sym___extension__] = ACTIONS(1225), - [anon_sym_typedef] = ACTIONS(1225), - [anon_sym_extern] = ACTIONS(1225), - [anon_sym___attribute__] = ACTIONS(1225), - [anon_sym___scanf] = ACTIONS(1225), - [anon_sym___printf] = ACTIONS(1225), - [anon_sym___read_mostly] = ACTIONS(1225), - [anon_sym___must_hold] = ACTIONS(1225), - [anon_sym___ro_after_init] = ACTIONS(1225), - [anon_sym___noreturn] = ACTIONS(1225), - [anon_sym___cold] = ACTIONS(1225), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1227), - [anon_sym___declspec] = ACTIONS(1225), - [anon_sym___init] = ACTIONS(1225), - [anon_sym___exit] = ACTIONS(1225), - [anon_sym___cdecl] = ACTIONS(1225), - [anon_sym___clrcall] = ACTIONS(1225), - [anon_sym___stdcall] = ACTIONS(1225), - [anon_sym___fastcall] = ACTIONS(1225), - [anon_sym___thiscall] = ACTIONS(1225), - [anon_sym___vectorcall] = ACTIONS(1225), - [anon_sym_LBRACE] = ACTIONS(1227), - [anon_sym_signed] = ACTIONS(1225), - [anon_sym_unsigned] = ACTIONS(1225), - [anon_sym_long] = ACTIONS(1225), - [anon_sym_short] = ACTIONS(1225), - [anon_sym_static] = ACTIONS(1225), - [anon_sym_auto] = ACTIONS(1225), - [anon_sym_register] = ACTIONS(1225), - [anon_sym_inline] = ACTIONS(1225), - [anon_sym___inline] = ACTIONS(1225), - [anon_sym___inline__] = ACTIONS(1225), - [anon_sym___forceinline] = ACTIONS(1225), - [anon_sym_thread_local] = ACTIONS(1225), - [anon_sym___thread] = ACTIONS(1225), - [anon_sym_const] = ACTIONS(1225), - [anon_sym_constexpr] = ACTIONS(1225), - [anon_sym_volatile] = ACTIONS(1225), - [anon_sym_restrict] = ACTIONS(1225), - [anon_sym___restrict__] = ACTIONS(1225), - [anon_sym__Atomic] = ACTIONS(1225), - [anon_sym__Noreturn] = ACTIONS(1225), - [anon_sym_noreturn] = ACTIONS(1225), - [anon_sym_alignas] = ACTIONS(1225), - [anon_sym__Alignas] = ACTIONS(1225), - [sym_primitive_type] = ACTIONS(1225), - [anon_sym_enum] = ACTIONS(1225), - [anon_sym_struct] = ACTIONS(1225), - [anon_sym_union] = ACTIONS(1225), - [anon_sym_if] = ACTIONS(1225), - [anon_sym_else] = ACTIONS(1225), - [anon_sym_switch] = ACTIONS(1225), - [anon_sym_case] = ACTIONS(1225), - [anon_sym_default] = ACTIONS(1225), - [anon_sym_while] = ACTIONS(1225), - [anon_sym_do] = ACTIONS(1225), - [anon_sym_for] = ACTIONS(1225), - [anon_sym_return] = ACTIONS(1225), - [anon_sym_break] = ACTIONS(1225), - [anon_sym_continue] = ACTIONS(1225), - [anon_sym_goto] = ACTIONS(1225), - [anon_sym___try] = ACTIONS(1225), - [anon_sym___leave] = ACTIONS(1225), - [anon_sym_DASH_DASH] = ACTIONS(1227), - [anon_sym_PLUS_PLUS] = ACTIONS(1227), - [anon_sym_sizeof] = ACTIONS(1225), - [anon_sym___alignof__] = ACTIONS(1225), - [anon_sym___alignof] = ACTIONS(1225), - [anon_sym__alignof] = ACTIONS(1225), - [anon_sym_alignof] = ACTIONS(1225), - [anon_sym__Alignof] = ACTIONS(1225), - [anon_sym_offsetof] = ACTIONS(1225), - [anon_sym__Generic] = ACTIONS(1225), - [anon_sym_asm] = ACTIONS(1225), - [anon_sym___asm__] = ACTIONS(1225), - [sym_number_literal] = ACTIONS(1227), - [anon_sym_L_SQUOTE] = ACTIONS(1227), - [anon_sym_u_SQUOTE] = ACTIONS(1227), - [anon_sym_U_SQUOTE] = ACTIONS(1227), - [anon_sym_u8_SQUOTE] = ACTIONS(1227), - [anon_sym_SQUOTE] = ACTIONS(1227), - [anon_sym_L_DQUOTE] = ACTIONS(1227), - [anon_sym_u_DQUOTE] = ACTIONS(1227), - [anon_sym_U_DQUOTE] = ACTIONS(1227), - [anon_sym_u8_DQUOTE] = ACTIONS(1227), - [anon_sym_DQUOTE] = ACTIONS(1227), - [sym_true] = ACTIONS(1225), - [sym_false] = ACTIONS(1225), - [anon_sym_NULL] = ACTIONS(1225), - [anon_sym_nullptr] = ACTIONS(1225), - [sym_comment] = ACTIONS(3), + [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), }, [101] = { - [ts_builtin_sym_end] = ACTIONS(1223), - [sym_identifier] = ACTIONS(1221), - [aux_sym_preproc_include_token1] = ACTIONS(1221), - [aux_sym_preproc_def_token1] = ACTIONS(1221), - [anon_sym_COMMA] = ACTIONS(1223), - [anon_sym_RPAREN] = ACTIONS(1223), - [aux_sym_preproc_if_token1] = ACTIONS(1221), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1221), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1221), - [sym_preproc_directive] = ACTIONS(1221), - [anon_sym_LPAREN2] = ACTIONS(1223), - [anon_sym_BANG] = ACTIONS(1223), - [anon_sym_TILDE] = ACTIONS(1223), - [anon_sym_DASH] = ACTIONS(1221), - [anon_sym_PLUS] = ACTIONS(1221), - [anon_sym_STAR] = ACTIONS(1223), - [anon_sym_AMP] = ACTIONS(1223), - [anon_sym_SEMI] = ACTIONS(1223), - [anon_sym___extension__] = ACTIONS(1221), - [anon_sym_typedef] = ACTIONS(1221), - [anon_sym_extern] = ACTIONS(1221), - [anon_sym___attribute__] = ACTIONS(1221), - [anon_sym___scanf] = ACTIONS(1221), - [anon_sym___printf] = ACTIONS(1221), - [anon_sym___read_mostly] = ACTIONS(1221), - [anon_sym___must_hold] = ACTIONS(1221), - [anon_sym___ro_after_init] = ACTIONS(1221), - [anon_sym___noreturn] = ACTIONS(1221), - [anon_sym___cold] = ACTIONS(1221), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1223), - [anon_sym___declspec] = ACTIONS(1221), - [anon_sym___init] = ACTIONS(1221), - [anon_sym___exit] = ACTIONS(1221), - [anon_sym___cdecl] = ACTIONS(1221), - [anon_sym___clrcall] = ACTIONS(1221), - [anon_sym___stdcall] = ACTIONS(1221), - [anon_sym___fastcall] = ACTIONS(1221), - [anon_sym___thiscall] = ACTIONS(1221), - [anon_sym___vectorcall] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_signed] = ACTIONS(1221), - [anon_sym_unsigned] = ACTIONS(1221), - [anon_sym_long] = ACTIONS(1221), - [anon_sym_short] = ACTIONS(1221), - [anon_sym_static] = ACTIONS(1221), - [anon_sym_auto] = ACTIONS(1221), - [anon_sym_register] = ACTIONS(1221), - [anon_sym_inline] = ACTIONS(1221), - [anon_sym___inline] = ACTIONS(1221), - [anon_sym___inline__] = ACTIONS(1221), - [anon_sym___forceinline] = ACTIONS(1221), - [anon_sym_thread_local] = ACTIONS(1221), - [anon_sym___thread] = ACTIONS(1221), - [anon_sym_const] = ACTIONS(1221), - [anon_sym_constexpr] = ACTIONS(1221), - [anon_sym_volatile] = ACTIONS(1221), - [anon_sym_restrict] = ACTIONS(1221), - [anon_sym___restrict__] = ACTIONS(1221), - [anon_sym__Atomic] = ACTIONS(1221), - [anon_sym__Noreturn] = ACTIONS(1221), - [anon_sym_noreturn] = ACTIONS(1221), - [anon_sym_alignas] = ACTIONS(1221), - [anon_sym__Alignas] = ACTIONS(1221), - [sym_primitive_type] = ACTIONS(1221), - [anon_sym_enum] = ACTIONS(1221), - [anon_sym_struct] = ACTIONS(1221), - [anon_sym_union] = ACTIONS(1221), - [anon_sym_if] = ACTIONS(1221), - [anon_sym_else] = ACTIONS(1221), - [anon_sym_switch] = ACTIONS(1221), - [anon_sym_case] = ACTIONS(1221), - [anon_sym_default] = ACTIONS(1221), - [anon_sym_while] = ACTIONS(1221), - [anon_sym_do] = ACTIONS(1221), - [anon_sym_for] = ACTIONS(1221), - [anon_sym_return] = ACTIONS(1221), - [anon_sym_break] = ACTIONS(1221), - [anon_sym_continue] = ACTIONS(1221), - [anon_sym_goto] = ACTIONS(1221), - [anon_sym___try] = ACTIONS(1221), - [anon_sym___except] = ACTIONS(1221), - [anon_sym___finally] = ACTIONS(1221), - [anon_sym___leave] = ACTIONS(1221), - [anon_sym_DASH_DASH] = ACTIONS(1223), - [anon_sym_PLUS_PLUS] = ACTIONS(1223), - [anon_sym_sizeof] = ACTIONS(1221), - [anon_sym___alignof__] = ACTIONS(1221), - [anon_sym___alignof] = ACTIONS(1221), - [anon_sym__alignof] = ACTIONS(1221), - [anon_sym_alignof] = ACTIONS(1221), - [anon_sym__Alignof] = ACTIONS(1221), - [anon_sym_offsetof] = ACTIONS(1221), - [anon_sym__Generic] = ACTIONS(1221), - [anon_sym_asm] = ACTIONS(1221), - [anon_sym___asm__] = ACTIONS(1221), - [sym_number_literal] = ACTIONS(1223), - [anon_sym_L_SQUOTE] = ACTIONS(1223), - [anon_sym_u_SQUOTE] = ACTIONS(1223), - [anon_sym_U_SQUOTE] = ACTIONS(1223), - [anon_sym_u8_SQUOTE] = ACTIONS(1223), - [anon_sym_SQUOTE] = ACTIONS(1223), - [anon_sym_L_DQUOTE] = ACTIONS(1223), - [anon_sym_u_DQUOTE] = ACTIONS(1223), - [anon_sym_U_DQUOTE] = ACTIONS(1223), - [anon_sym_u8_DQUOTE] = ACTIONS(1223), - [anon_sym_DQUOTE] = ACTIONS(1223), - [sym_true] = ACTIONS(1221), - [sym_false] = ACTIONS(1221), - [anon_sym_NULL] = ACTIONS(1221), - [anon_sym_nullptr] = ACTIONS(1221), - [sym_comment] = ACTIONS(3), + [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_if_token2] = ACTIONS(1278), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1278), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1278), + [aux_sym_preproc_else_token1] = ACTIONS(1278), + [aux_sym_preproc_elif_token1] = ACTIONS(1278), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1278), + [aux_sym_preproc_elifdef_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), }, [102] = { - [sym_identifier] = ACTIONS(1161), - [aux_sym_preproc_include_token1] = ACTIONS(1161), - [aux_sym_preproc_def_token1] = ACTIONS(1161), - [aux_sym_preproc_if_token1] = ACTIONS(1161), - [aux_sym_preproc_if_token2] = ACTIONS(1161), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1161), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1161), - [aux_sym_preproc_else_token1] = ACTIONS(1161), - [aux_sym_preproc_elif_token1] = ACTIONS(1161), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1161), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1161), - [sym_preproc_directive] = ACTIONS(1161), - [anon_sym_LPAREN2] = ACTIONS(1163), - [anon_sym_BANG] = ACTIONS(1163), - [anon_sym_TILDE] = ACTIONS(1163), - [anon_sym_DASH] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_STAR] = ACTIONS(1163), - [anon_sym_AMP] = ACTIONS(1163), - [anon_sym_SEMI] = ACTIONS(1163), - [anon_sym___extension__] = ACTIONS(1161), - [anon_sym_typedef] = ACTIONS(1161), - [anon_sym_extern] = ACTIONS(1161), - [anon_sym___attribute__] = ACTIONS(1161), - [anon_sym___scanf] = ACTIONS(1161), - [anon_sym___printf] = ACTIONS(1161), - [anon_sym___read_mostly] = ACTIONS(1161), - [anon_sym___must_hold] = ACTIONS(1161), - [anon_sym___ro_after_init] = ACTIONS(1161), - [anon_sym___noreturn] = ACTIONS(1161), - [anon_sym___cold] = ACTIONS(1161), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1163), - [anon_sym___declspec] = ACTIONS(1161), - [anon_sym___init] = ACTIONS(1161), - [anon_sym___exit] = ACTIONS(1161), - [anon_sym___cdecl] = ACTIONS(1161), - [anon_sym___clrcall] = ACTIONS(1161), - [anon_sym___stdcall] = ACTIONS(1161), - [anon_sym___fastcall] = ACTIONS(1161), - [anon_sym___thiscall] = ACTIONS(1161), - [anon_sym___vectorcall] = ACTIONS(1161), - [anon_sym_LBRACE] = ACTIONS(1163), - [anon_sym_signed] = ACTIONS(1161), - [anon_sym_unsigned] = ACTIONS(1161), - [anon_sym_long] = ACTIONS(1161), - [anon_sym_short] = ACTIONS(1161), - [anon_sym_static] = ACTIONS(1161), - [anon_sym_auto] = ACTIONS(1161), - [anon_sym_register] = ACTIONS(1161), - [anon_sym_inline] = ACTIONS(1161), - [anon_sym___inline] = ACTIONS(1161), - [anon_sym___inline__] = ACTIONS(1161), - [anon_sym___forceinline] = ACTIONS(1161), - [anon_sym_thread_local] = ACTIONS(1161), - [anon_sym___thread] = ACTIONS(1161), - [anon_sym_const] = ACTIONS(1161), - [anon_sym_constexpr] = ACTIONS(1161), - [anon_sym_volatile] = ACTIONS(1161), - [anon_sym_restrict] = ACTIONS(1161), - [anon_sym___restrict__] = ACTIONS(1161), - [anon_sym__Atomic] = ACTIONS(1161), - [anon_sym__Noreturn] = ACTIONS(1161), - [anon_sym_noreturn] = ACTIONS(1161), - [anon_sym_alignas] = ACTIONS(1161), - [anon_sym__Alignas] = ACTIONS(1161), - [sym_primitive_type] = ACTIONS(1161), - [anon_sym_enum] = ACTIONS(1161), - [anon_sym_struct] = ACTIONS(1161), - [anon_sym_union] = ACTIONS(1161), - [anon_sym_if] = ACTIONS(1161), - [anon_sym_else] = ACTIONS(1161), - [anon_sym_switch] = ACTIONS(1161), - [anon_sym_case] = ACTIONS(1161), - [anon_sym_default] = ACTIONS(1161), - [anon_sym_while] = ACTIONS(1161), - [anon_sym_do] = ACTIONS(1161), - [anon_sym_for] = ACTIONS(1161), - [anon_sym_return] = ACTIONS(1161), - [anon_sym_break] = ACTIONS(1161), - [anon_sym_continue] = ACTIONS(1161), - [anon_sym_goto] = ACTIONS(1161), - [anon_sym___try] = ACTIONS(1161), - [anon_sym___leave] = ACTIONS(1161), - [anon_sym_DASH_DASH] = ACTIONS(1163), - [anon_sym_PLUS_PLUS] = ACTIONS(1163), - [anon_sym_sizeof] = ACTIONS(1161), - [anon_sym___alignof__] = ACTIONS(1161), - [anon_sym___alignof] = ACTIONS(1161), - [anon_sym__alignof] = ACTIONS(1161), - [anon_sym_alignof] = ACTIONS(1161), - [anon_sym__Alignof] = ACTIONS(1161), - [anon_sym_offsetof] = ACTIONS(1161), - [anon_sym__Generic] = ACTIONS(1161), - [anon_sym_asm] = ACTIONS(1161), - [anon_sym___asm__] = ACTIONS(1161), - [sym_number_literal] = ACTIONS(1163), - [anon_sym_L_SQUOTE] = ACTIONS(1163), - [anon_sym_u_SQUOTE] = ACTIONS(1163), - [anon_sym_U_SQUOTE] = ACTIONS(1163), - [anon_sym_u8_SQUOTE] = ACTIONS(1163), - [anon_sym_SQUOTE] = ACTIONS(1163), - [anon_sym_L_DQUOTE] = ACTIONS(1163), - [anon_sym_u_DQUOTE] = ACTIONS(1163), - [anon_sym_U_DQUOTE] = ACTIONS(1163), - [anon_sym_u8_DQUOTE] = ACTIONS(1163), - [anon_sym_DQUOTE] = ACTIONS(1163), - [sym_true] = ACTIONS(1161), - [sym_false] = ACTIONS(1161), - [anon_sym_NULL] = ACTIONS(1161), - [anon_sym_nullptr] = ACTIONS(1161), - [sym_comment] = ACTIONS(3), + [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), + [aux_sym_preproc_else_token1] = ACTIONS(1282), + [aux_sym_preproc_elif_token1] = ACTIONS(1282), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1282), + [aux_sym_preproc_elifdef_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), }, [103] = { - [sym_identifier] = ACTIONS(1161), - [aux_sym_preproc_include_token1] = ACTIONS(1161), - [aux_sym_preproc_def_token1] = ACTIONS(1161), - [aux_sym_preproc_if_token1] = ACTIONS(1161), - [aux_sym_preproc_if_token2] = ACTIONS(1161), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1161), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1161), - [aux_sym_preproc_else_token1] = ACTIONS(1161), - [aux_sym_preproc_elif_token1] = ACTIONS(1161), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1161), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1161), - [sym_preproc_directive] = ACTIONS(1161), - [anon_sym_LPAREN2] = ACTIONS(1163), - [anon_sym_BANG] = ACTIONS(1163), - [anon_sym_TILDE] = ACTIONS(1163), - [anon_sym_DASH] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_STAR] = ACTIONS(1163), - [anon_sym_AMP] = ACTIONS(1163), - [anon_sym_SEMI] = ACTIONS(1163), - [anon_sym___extension__] = ACTIONS(1161), - [anon_sym_typedef] = ACTIONS(1161), - [anon_sym_extern] = ACTIONS(1161), - [anon_sym___attribute__] = ACTIONS(1161), - [anon_sym___scanf] = ACTIONS(1161), - [anon_sym___printf] = ACTIONS(1161), - [anon_sym___read_mostly] = ACTIONS(1161), - [anon_sym___must_hold] = ACTIONS(1161), - [anon_sym___ro_after_init] = ACTIONS(1161), - [anon_sym___noreturn] = ACTIONS(1161), - [anon_sym___cold] = ACTIONS(1161), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1163), - [anon_sym___declspec] = ACTIONS(1161), - [anon_sym___init] = ACTIONS(1161), - [anon_sym___exit] = ACTIONS(1161), - [anon_sym___cdecl] = ACTIONS(1161), - [anon_sym___clrcall] = ACTIONS(1161), - [anon_sym___stdcall] = ACTIONS(1161), - [anon_sym___fastcall] = ACTIONS(1161), - [anon_sym___thiscall] = ACTIONS(1161), - [anon_sym___vectorcall] = ACTIONS(1161), - [anon_sym_LBRACE] = ACTIONS(1163), - [anon_sym_signed] = ACTIONS(1161), - [anon_sym_unsigned] = ACTIONS(1161), - [anon_sym_long] = ACTIONS(1161), - [anon_sym_short] = ACTIONS(1161), - [anon_sym_static] = ACTIONS(1161), - [anon_sym_auto] = ACTIONS(1161), - [anon_sym_register] = ACTIONS(1161), - [anon_sym_inline] = ACTIONS(1161), - [anon_sym___inline] = ACTIONS(1161), - [anon_sym___inline__] = ACTIONS(1161), - [anon_sym___forceinline] = ACTIONS(1161), - [anon_sym_thread_local] = ACTIONS(1161), - [anon_sym___thread] = ACTIONS(1161), - [anon_sym_const] = ACTIONS(1161), - [anon_sym_constexpr] = ACTIONS(1161), - [anon_sym_volatile] = ACTIONS(1161), - [anon_sym_restrict] = ACTIONS(1161), - [anon_sym___restrict__] = ACTIONS(1161), - [anon_sym__Atomic] = ACTIONS(1161), - [anon_sym__Noreturn] = ACTIONS(1161), - [anon_sym_noreturn] = ACTIONS(1161), - [anon_sym_alignas] = ACTIONS(1161), - [anon_sym__Alignas] = ACTIONS(1161), - [sym_primitive_type] = ACTIONS(1161), - [anon_sym_enum] = ACTIONS(1161), - [anon_sym_struct] = ACTIONS(1161), - [anon_sym_union] = ACTIONS(1161), - [anon_sym_if] = ACTIONS(1161), - [anon_sym_else] = ACTIONS(1161), - [anon_sym_switch] = ACTIONS(1161), - [anon_sym_case] = ACTIONS(1161), - [anon_sym_default] = ACTIONS(1161), - [anon_sym_while] = ACTIONS(1161), - [anon_sym_do] = ACTIONS(1161), - [anon_sym_for] = ACTIONS(1161), - [anon_sym_return] = ACTIONS(1161), - [anon_sym_break] = ACTIONS(1161), - [anon_sym_continue] = ACTIONS(1161), - [anon_sym_goto] = ACTIONS(1161), - [anon_sym___try] = ACTIONS(1161), - [anon_sym___leave] = ACTIONS(1161), - [anon_sym_DASH_DASH] = ACTIONS(1163), - [anon_sym_PLUS_PLUS] = ACTIONS(1163), - [anon_sym_sizeof] = ACTIONS(1161), - [anon_sym___alignof__] = ACTIONS(1161), - [anon_sym___alignof] = ACTIONS(1161), - [anon_sym__alignof] = ACTIONS(1161), - [anon_sym_alignof] = ACTIONS(1161), - [anon_sym__Alignof] = ACTIONS(1161), - [anon_sym_offsetof] = ACTIONS(1161), - [anon_sym__Generic] = ACTIONS(1161), - [anon_sym_asm] = ACTIONS(1161), - [anon_sym___asm__] = ACTIONS(1161), - [sym_number_literal] = ACTIONS(1163), - [anon_sym_L_SQUOTE] = ACTIONS(1163), - [anon_sym_u_SQUOTE] = ACTIONS(1163), - [anon_sym_U_SQUOTE] = ACTIONS(1163), - [anon_sym_u8_SQUOTE] = ACTIONS(1163), - [anon_sym_SQUOTE] = ACTIONS(1163), - [anon_sym_L_DQUOTE] = ACTIONS(1163), - [anon_sym_u_DQUOTE] = ACTIONS(1163), - [anon_sym_U_DQUOTE] = ACTIONS(1163), - [anon_sym_u8_DQUOTE] = ACTIONS(1163), - [anon_sym_DQUOTE] = ACTIONS(1163), - [sym_true] = ACTIONS(1161), - [sym_false] = ACTIONS(1161), - [anon_sym_NULL] = ACTIONS(1161), - [anon_sym_nullptr] = ACTIONS(1161), - [sym_comment] = ACTIONS(3), + [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), + [aux_sym_preproc_else_token1] = ACTIONS(1286), + [aux_sym_preproc_elif_token1] = ACTIONS(1286), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1286), + [aux_sym_preproc_elifdef_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), }, [104] = { - [sym_identifier] = ACTIONS(1229), - [aux_sym_preproc_include_token1] = ACTIONS(1229), - [aux_sym_preproc_def_token1] = ACTIONS(1229), - [aux_sym_preproc_if_token1] = ACTIONS(1229), - [aux_sym_preproc_if_token2] = ACTIONS(1229), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1229), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1229), - [aux_sym_preproc_else_token1] = ACTIONS(1229), - [aux_sym_preproc_elif_token1] = ACTIONS(1229), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1229), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1229), - [sym_preproc_directive] = ACTIONS(1229), - [anon_sym_LPAREN2] = ACTIONS(1231), - [anon_sym_BANG] = ACTIONS(1231), - [anon_sym_TILDE] = ACTIONS(1231), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_AMP] = ACTIONS(1231), - [anon_sym_SEMI] = ACTIONS(1231), - [anon_sym___extension__] = ACTIONS(1229), - [anon_sym_typedef] = ACTIONS(1229), - [anon_sym_extern] = ACTIONS(1229), - [anon_sym___attribute__] = ACTIONS(1229), - [anon_sym___scanf] = ACTIONS(1229), - [anon_sym___printf] = ACTIONS(1229), - [anon_sym___read_mostly] = ACTIONS(1229), - [anon_sym___must_hold] = ACTIONS(1229), - [anon_sym___ro_after_init] = ACTIONS(1229), - [anon_sym___noreturn] = ACTIONS(1229), - [anon_sym___cold] = ACTIONS(1229), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1231), - [anon_sym___declspec] = ACTIONS(1229), - [anon_sym___init] = ACTIONS(1229), - [anon_sym___exit] = ACTIONS(1229), - [anon_sym___cdecl] = ACTIONS(1229), - [anon_sym___clrcall] = ACTIONS(1229), - [anon_sym___stdcall] = ACTIONS(1229), - [anon_sym___fastcall] = ACTIONS(1229), - [anon_sym___thiscall] = ACTIONS(1229), - [anon_sym___vectorcall] = ACTIONS(1229), - [anon_sym_LBRACE] = ACTIONS(1231), - [anon_sym_signed] = ACTIONS(1229), - [anon_sym_unsigned] = ACTIONS(1229), - [anon_sym_long] = ACTIONS(1229), - [anon_sym_short] = ACTIONS(1229), - [anon_sym_static] = ACTIONS(1229), - [anon_sym_auto] = ACTIONS(1229), - [anon_sym_register] = ACTIONS(1229), - [anon_sym_inline] = ACTIONS(1229), - [anon_sym___inline] = ACTIONS(1229), - [anon_sym___inline__] = ACTIONS(1229), - [anon_sym___forceinline] = ACTIONS(1229), - [anon_sym_thread_local] = ACTIONS(1229), - [anon_sym___thread] = ACTIONS(1229), - [anon_sym_const] = ACTIONS(1229), - [anon_sym_constexpr] = ACTIONS(1229), - [anon_sym_volatile] = ACTIONS(1229), - [anon_sym_restrict] = ACTIONS(1229), - [anon_sym___restrict__] = ACTIONS(1229), - [anon_sym__Atomic] = ACTIONS(1229), - [anon_sym__Noreturn] = ACTIONS(1229), - [anon_sym_noreturn] = ACTIONS(1229), - [anon_sym_alignas] = ACTIONS(1229), - [anon_sym__Alignas] = ACTIONS(1229), - [sym_primitive_type] = ACTIONS(1229), - [anon_sym_enum] = ACTIONS(1229), - [anon_sym_struct] = ACTIONS(1229), - [anon_sym_union] = ACTIONS(1229), - [anon_sym_if] = ACTIONS(1229), - [anon_sym_else] = ACTIONS(1229), - [anon_sym_switch] = ACTIONS(1229), - [anon_sym_case] = ACTIONS(1229), - [anon_sym_default] = ACTIONS(1229), - [anon_sym_while] = ACTIONS(1229), - [anon_sym_do] = ACTIONS(1229), - [anon_sym_for] = ACTIONS(1229), - [anon_sym_return] = ACTIONS(1229), - [anon_sym_break] = ACTIONS(1229), - [anon_sym_continue] = ACTIONS(1229), - [anon_sym_goto] = ACTIONS(1229), - [anon_sym___try] = ACTIONS(1229), - [anon_sym___leave] = ACTIONS(1229), - [anon_sym_DASH_DASH] = ACTIONS(1231), - [anon_sym_PLUS_PLUS] = ACTIONS(1231), - [anon_sym_sizeof] = ACTIONS(1229), - [anon_sym___alignof__] = ACTIONS(1229), - [anon_sym___alignof] = ACTIONS(1229), - [anon_sym__alignof] = ACTIONS(1229), - [anon_sym_alignof] = ACTIONS(1229), - [anon_sym__Alignof] = ACTIONS(1229), - [anon_sym_offsetof] = ACTIONS(1229), - [anon_sym__Generic] = ACTIONS(1229), - [anon_sym_asm] = ACTIONS(1229), - [anon_sym___asm__] = ACTIONS(1229), - [sym_number_literal] = ACTIONS(1231), - [anon_sym_L_SQUOTE] = ACTIONS(1231), - [anon_sym_u_SQUOTE] = ACTIONS(1231), - [anon_sym_U_SQUOTE] = ACTIONS(1231), - [anon_sym_u8_SQUOTE] = ACTIONS(1231), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_L_DQUOTE] = ACTIONS(1231), - [anon_sym_u_DQUOTE] = ACTIONS(1231), - [anon_sym_U_DQUOTE] = ACTIONS(1231), - [anon_sym_u8_DQUOTE] = ACTIONS(1231), - [anon_sym_DQUOTE] = ACTIONS(1231), - [sym_true] = ACTIONS(1229), - [sym_false] = ACTIONS(1229), - [anon_sym_NULL] = ACTIONS(1229), - [anon_sym_nullptr] = ACTIONS(1229), - [sym_comment] = ACTIONS(3), + [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_if_token2] = ACTIONS(1290), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1290), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1290), + [aux_sym_preproc_else_token1] = ACTIONS(1290), + [aux_sym_preproc_elif_token1] = ACTIONS(1290), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1290), + [aux_sym_preproc_elifdef_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), }, [105] = { - [sym_identifier] = ACTIONS(1233), - [aux_sym_preproc_include_token1] = ACTIONS(1233), - [aux_sym_preproc_def_token1] = ACTIONS(1233), - [aux_sym_preproc_if_token1] = ACTIONS(1233), - [aux_sym_preproc_if_token2] = ACTIONS(1233), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1233), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1233), - [aux_sym_preproc_else_token1] = ACTIONS(1233), - [aux_sym_preproc_elif_token1] = ACTIONS(1233), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1233), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1233), - [sym_preproc_directive] = ACTIONS(1233), - [anon_sym_LPAREN2] = ACTIONS(1235), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_DASH] = ACTIONS(1233), - [anon_sym_PLUS] = ACTIONS(1233), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_AMP] = ACTIONS(1235), - [anon_sym_SEMI] = ACTIONS(1235), - [anon_sym___extension__] = ACTIONS(1233), - [anon_sym_typedef] = ACTIONS(1233), - [anon_sym_extern] = ACTIONS(1233), - [anon_sym___attribute__] = ACTIONS(1233), - [anon_sym___scanf] = ACTIONS(1233), - [anon_sym___printf] = ACTIONS(1233), - [anon_sym___read_mostly] = ACTIONS(1233), - [anon_sym___must_hold] = ACTIONS(1233), - [anon_sym___ro_after_init] = ACTIONS(1233), - [anon_sym___noreturn] = ACTIONS(1233), - [anon_sym___cold] = ACTIONS(1233), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1235), - [anon_sym___declspec] = ACTIONS(1233), - [anon_sym___init] = ACTIONS(1233), - [anon_sym___exit] = ACTIONS(1233), - [anon_sym___cdecl] = ACTIONS(1233), - [anon_sym___clrcall] = ACTIONS(1233), - [anon_sym___stdcall] = ACTIONS(1233), - [anon_sym___fastcall] = ACTIONS(1233), - [anon_sym___thiscall] = ACTIONS(1233), - [anon_sym___vectorcall] = ACTIONS(1233), - [anon_sym_LBRACE] = ACTIONS(1235), - [anon_sym_signed] = ACTIONS(1233), - [anon_sym_unsigned] = ACTIONS(1233), - [anon_sym_long] = ACTIONS(1233), - [anon_sym_short] = ACTIONS(1233), - [anon_sym_static] = ACTIONS(1233), - [anon_sym_auto] = ACTIONS(1233), - [anon_sym_register] = ACTIONS(1233), - [anon_sym_inline] = ACTIONS(1233), - [anon_sym___inline] = ACTIONS(1233), - [anon_sym___inline__] = ACTIONS(1233), - [anon_sym___forceinline] = ACTIONS(1233), - [anon_sym_thread_local] = ACTIONS(1233), - [anon_sym___thread] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_constexpr] = ACTIONS(1233), - [anon_sym_volatile] = ACTIONS(1233), - [anon_sym_restrict] = ACTIONS(1233), - [anon_sym___restrict__] = ACTIONS(1233), - [anon_sym__Atomic] = ACTIONS(1233), - [anon_sym__Noreturn] = ACTIONS(1233), - [anon_sym_noreturn] = ACTIONS(1233), - [anon_sym_alignas] = ACTIONS(1233), - [anon_sym__Alignas] = ACTIONS(1233), - [sym_primitive_type] = ACTIONS(1233), - [anon_sym_enum] = ACTIONS(1233), - [anon_sym_struct] = ACTIONS(1233), - [anon_sym_union] = ACTIONS(1233), - [anon_sym_if] = ACTIONS(1233), - [anon_sym_else] = ACTIONS(1233), - [anon_sym_switch] = ACTIONS(1233), - [anon_sym_case] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1233), - [anon_sym_while] = ACTIONS(1233), - [anon_sym_do] = ACTIONS(1233), - [anon_sym_for] = ACTIONS(1233), - [anon_sym_return] = ACTIONS(1233), - [anon_sym_break] = ACTIONS(1233), - [anon_sym_continue] = ACTIONS(1233), - [anon_sym_goto] = ACTIONS(1233), - [anon_sym___try] = ACTIONS(1233), - [anon_sym___leave] = ACTIONS(1233), - [anon_sym_DASH_DASH] = ACTIONS(1235), - [anon_sym_PLUS_PLUS] = ACTIONS(1235), - [anon_sym_sizeof] = ACTIONS(1233), - [anon_sym___alignof__] = ACTIONS(1233), - [anon_sym___alignof] = ACTIONS(1233), - [anon_sym__alignof] = ACTIONS(1233), - [anon_sym_alignof] = ACTIONS(1233), - [anon_sym__Alignof] = ACTIONS(1233), - [anon_sym_offsetof] = ACTIONS(1233), - [anon_sym__Generic] = ACTIONS(1233), - [anon_sym_asm] = ACTIONS(1233), - [anon_sym___asm__] = ACTIONS(1233), - [sym_number_literal] = ACTIONS(1235), - [anon_sym_L_SQUOTE] = ACTIONS(1235), - [anon_sym_u_SQUOTE] = ACTIONS(1235), - [anon_sym_U_SQUOTE] = ACTIONS(1235), - [anon_sym_u8_SQUOTE] = ACTIONS(1235), - [anon_sym_SQUOTE] = ACTIONS(1235), - [anon_sym_L_DQUOTE] = ACTIONS(1235), - [anon_sym_u_DQUOTE] = ACTIONS(1235), - [anon_sym_U_DQUOTE] = ACTIONS(1235), - [anon_sym_u8_DQUOTE] = ACTIONS(1235), - [anon_sym_DQUOTE] = ACTIONS(1235), - [sym_true] = ACTIONS(1233), - [sym_false] = ACTIONS(1233), - [anon_sym_NULL] = ACTIONS(1233), - [anon_sym_nullptr] = ACTIONS(1233), - [sym_comment] = ACTIONS(3), + [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] = { - [sym_identifier] = ACTIONS(1237), - [aux_sym_preproc_include_token1] = ACTIONS(1237), - [aux_sym_preproc_def_token1] = ACTIONS(1237), - [aux_sym_preproc_if_token1] = ACTIONS(1237), - [aux_sym_preproc_if_token2] = ACTIONS(1237), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1237), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1237), - [aux_sym_preproc_else_token1] = ACTIONS(1237), - [aux_sym_preproc_elif_token1] = ACTIONS(1237), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1237), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1237), - [sym_preproc_directive] = ACTIONS(1237), - [anon_sym_LPAREN2] = ACTIONS(1239), - [anon_sym_BANG] = ACTIONS(1239), - [anon_sym_TILDE] = ACTIONS(1239), - [anon_sym_DASH] = ACTIONS(1237), - [anon_sym_PLUS] = ACTIONS(1237), - [anon_sym_STAR] = ACTIONS(1239), - [anon_sym_AMP] = ACTIONS(1239), - [anon_sym_SEMI] = ACTIONS(1239), - [anon_sym___extension__] = ACTIONS(1237), - [anon_sym_typedef] = ACTIONS(1237), - [anon_sym_extern] = ACTIONS(1237), - [anon_sym___attribute__] = ACTIONS(1237), - [anon_sym___scanf] = ACTIONS(1237), - [anon_sym___printf] = ACTIONS(1237), - [anon_sym___read_mostly] = ACTIONS(1237), - [anon_sym___must_hold] = ACTIONS(1237), - [anon_sym___ro_after_init] = ACTIONS(1237), - [anon_sym___noreturn] = ACTIONS(1237), - [anon_sym___cold] = ACTIONS(1237), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1239), - [anon_sym___declspec] = ACTIONS(1237), - [anon_sym___init] = ACTIONS(1237), - [anon_sym___exit] = ACTIONS(1237), - [anon_sym___cdecl] = ACTIONS(1237), - [anon_sym___clrcall] = ACTIONS(1237), - [anon_sym___stdcall] = ACTIONS(1237), - [anon_sym___fastcall] = ACTIONS(1237), - [anon_sym___thiscall] = ACTIONS(1237), - [anon_sym___vectorcall] = ACTIONS(1237), - [anon_sym_LBRACE] = ACTIONS(1239), - [anon_sym_signed] = ACTIONS(1237), - [anon_sym_unsigned] = ACTIONS(1237), - [anon_sym_long] = ACTIONS(1237), - [anon_sym_short] = ACTIONS(1237), - [anon_sym_static] = ACTIONS(1237), - [anon_sym_auto] = ACTIONS(1237), - [anon_sym_register] = ACTIONS(1237), - [anon_sym_inline] = ACTIONS(1237), - [anon_sym___inline] = ACTIONS(1237), - [anon_sym___inline__] = ACTIONS(1237), - [anon_sym___forceinline] = ACTIONS(1237), - [anon_sym_thread_local] = ACTIONS(1237), - [anon_sym___thread] = ACTIONS(1237), - [anon_sym_const] = ACTIONS(1237), - [anon_sym_constexpr] = ACTIONS(1237), - [anon_sym_volatile] = ACTIONS(1237), - [anon_sym_restrict] = ACTIONS(1237), - [anon_sym___restrict__] = ACTIONS(1237), - [anon_sym__Atomic] = ACTIONS(1237), - [anon_sym__Noreturn] = ACTIONS(1237), - [anon_sym_noreturn] = ACTIONS(1237), - [anon_sym_alignas] = ACTIONS(1237), - [anon_sym__Alignas] = ACTIONS(1237), - [sym_primitive_type] = ACTIONS(1237), - [anon_sym_enum] = ACTIONS(1237), - [anon_sym_struct] = ACTIONS(1237), - [anon_sym_union] = ACTIONS(1237), - [anon_sym_if] = ACTIONS(1237), - [anon_sym_else] = ACTIONS(1237), - [anon_sym_switch] = ACTIONS(1237), - [anon_sym_case] = ACTIONS(1237), - [anon_sym_default] = ACTIONS(1237), - [anon_sym_while] = ACTIONS(1237), - [anon_sym_do] = ACTIONS(1237), - [anon_sym_for] = ACTIONS(1237), - [anon_sym_return] = ACTIONS(1237), - [anon_sym_break] = ACTIONS(1237), - [anon_sym_continue] = ACTIONS(1237), - [anon_sym_goto] = ACTIONS(1237), - [anon_sym___try] = ACTIONS(1237), - [anon_sym___leave] = ACTIONS(1237), - [anon_sym_DASH_DASH] = ACTIONS(1239), - [anon_sym_PLUS_PLUS] = ACTIONS(1239), - [anon_sym_sizeof] = ACTIONS(1237), - [anon_sym___alignof__] = ACTIONS(1237), - [anon_sym___alignof] = ACTIONS(1237), - [anon_sym__alignof] = ACTIONS(1237), - [anon_sym_alignof] = ACTIONS(1237), - [anon_sym__Alignof] = ACTIONS(1237), - [anon_sym_offsetof] = ACTIONS(1237), - [anon_sym__Generic] = ACTIONS(1237), - [anon_sym_asm] = ACTIONS(1237), - [anon_sym___asm__] = ACTIONS(1237), - [sym_number_literal] = ACTIONS(1239), - [anon_sym_L_SQUOTE] = ACTIONS(1239), - [anon_sym_u_SQUOTE] = ACTIONS(1239), - [anon_sym_U_SQUOTE] = ACTIONS(1239), - [anon_sym_u8_SQUOTE] = ACTIONS(1239), - [anon_sym_SQUOTE] = ACTIONS(1239), - [anon_sym_L_DQUOTE] = ACTIONS(1239), - [anon_sym_u_DQUOTE] = ACTIONS(1239), - [anon_sym_U_DQUOTE] = ACTIONS(1239), - [anon_sym_u8_DQUOTE] = ACTIONS(1239), - [anon_sym_DQUOTE] = ACTIONS(1239), - [sym_true] = ACTIONS(1237), - [sym_false] = ACTIONS(1237), - [anon_sym_NULL] = ACTIONS(1237), - [anon_sym_nullptr] = ACTIONS(1237), - [sym_comment] = ACTIONS(3), + [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), }, [107] = { - [sym_identifier] = ACTIONS(1241), - [aux_sym_preproc_include_token1] = ACTIONS(1241), - [aux_sym_preproc_def_token1] = ACTIONS(1241), - [aux_sym_preproc_if_token1] = ACTIONS(1241), - [aux_sym_preproc_if_token2] = ACTIONS(1241), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1241), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1241), - [aux_sym_preproc_else_token1] = ACTIONS(1241), - [aux_sym_preproc_elif_token1] = ACTIONS(1241), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1241), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1241), - [sym_preproc_directive] = ACTIONS(1241), - [anon_sym_LPAREN2] = ACTIONS(1243), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1243), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_PLUS] = ACTIONS(1241), - [anon_sym_STAR] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1243), - [anon_sym_SEMI] = ACTIONS(1243), - [anon_sym___extension__] = ACTIONS(1241), - [anon_sym_typedef] = ACTIONS(1241), - [anon_sym_extern] = ACTIONS(1241), - [anon_sym___attribute__] = ACTIONS(1241), - [anon_sym___scanf] = ACTIONS(1241), - [anon_sym___printf] = ACTIONS(1241), - [anon_sym___read_mostly] = ACTIONS(1241), - [anon_sym___must_hold] = ACTIONS(1241), - [anon_sym___ro_after_init] = ACTIONS(1241), - [anon_sym___noreturn] = ACTIONS(1241), - [anon_sym___cold] = ACTIONS(1241), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1243), - [anon_sym___declspec] = ACTIONS(1241), - [anon_sym___init] = ACTIONS(1241), - [anon_sym___exit] = ACTIONS(1241), - [anon_sym___cdecl] = ACTIONS(1241), - [anon_sym___clrcall] = ACTIONS(1241), - [anon_sym___stdcall] = ACTIONS(1241), - [anon_sym___fastcall] = ACTIONS(1241), - [anon_sym___thiscall] = ACTIONS(1241), - [anon_sym___vectorcall] = ACTIONS(1241), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_signed] = ACTIONS(1241), - [anon_sym_unsigned] = ACTIONS(1241), - [anon_sym_long] = ACTIONS(1241), - [anon_sym_short] = ACTIONS(1241), - [anon_sym_static] = ACTIONS(1241), - [anon_sym_auto] = ACTIONS(1241), - [anon_sym_register] = ACTIONS(1241), - [anon_sym_inline] = ACTIONS(1241), - [anon_sym___inline] = ACTIONS(1241), - [anon_sym___inline__] = ACTIONS(1241), - [anon_sym___forceinline] = ACTIONS(1241), - [anon_sym_thread_local] = ACTIONS(1241), - [anon_sym___thread] = ACTIONS(1241), - [anon_sym_const] = ACTIONS(1241), - [anon_sym_constexpr] = ACTIONS(1241), - [anon_sym_volatile] = ACTIONS(1241), - [anon_sym_restrict] = ACTIONS(1241), - [anon_sym___restrict__] = ACTIONS(1241), - [anon_sym__Atomic] = ACTIONS(1241), - [anon_sym__Noreturn] = ACTIONS(1241), - [anon_sym_noreturn] = ACTIONS(1241), - [anon_sym_alignas] = ACTIONS(1241), - [anon_sym__Alignas] = ACTIONS(1241), - [sym_primitive_type] = ACTIONS(1241), - [anon_sym_enum] = ACTIONS(1241), - [anon_sym_struct] = ACTIONS(1241), - [anon_sym_union] = ACTIONS(1241), - [anon_sym_if] = ACTIONS(1241), - [anon_sym_else] = ACTIONS(1241), - [anon_sym_switch] = ACTIONS(1241), - [anon_sym_case] = ACTIONS(1241), - [anon_sym_default] = ACTIONS(1241), - [anon_sym_while] = ACTIONS(1241), - [anon_sym_do] = ACTIONS(1241), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_return] = ACTIONS(1241), - [anon_sym_break] = ACTIONS(1241), - [anon_sym_continue] = ACTIONS(1241), - [anon_sym_goto] = ACTIONS(1241), - [anon_sym___try] = ACTIONS(1241), - [anon_sym___leave] = ACTIONS(1241), - [anon_sym_DASH_DASH] = ACTIONS(1243), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_sizeof] = ACTIONS(1241), - [anon_sym___alignof__] = ACTIONS(1241), - [anon_sym___alignof] = ACTIONS(1241), - [anon_sym__alignof] = ACTIONS(1241), - [anon_sym_alignof] = ACTIONS(1241), - [anon_sym__Alignof] = ACTIONS(1241), - [anon_sym_offsetof] = ACTIONS(1241), - [anon_sym__Generic] = ACTIONS(1241), - [anon_sym_asm] = ACTIONS(1241), - [anon_sym___asm__] = ACTIONS(1241), - [sym_number_literal] = ACTIONS(1243), - [anon_sym_L_SQUOTE] = ACTIONS(1243), - [anon_sym_u_SQUOTE] = ACTIONS(1243), - [anon_sym_U_SQUOTE] = ACTIONS(1243), - [anon_sym_u8_SQUOTE] = ACTIONS(1243), - [anon_sym_SQUOTE] = ACTIONS(1243), - [anon_sym_L_DQUOTE] = ACTIONS(1243), - [anon_sym_u_DQUOTE] = ACTIONS(1243), - [anon_sym_U_DQUOTE] = ACTIONS(1243), - [anon_sym_u8_DQUOTE] = ACTIONS(1243), - [anon_sym_DQUOTE] = ACTIONS(1243), - [sym_true] = ACTIONS(1241), - [sym_false] = ACTIONS(1241), - [anon_sym_NULL] = ACTIONS(1241), - [anon_sym_nullptr] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), + [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_if_token2] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [aux_sym_preproc_else_token1] = ACTIONS(1298), + [aux_sym_preproc_elif_token1] = ACTIONS(1298), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_elifdef_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), }, [108] = { - [sym_identifier] = ACTIONS(1245), - [aux_sym_preproc_include_token1] = ACTIONS(1245), - [aux_sym_preproc_def_token1] = ACTIONS(1245), - [aux_sym_preproc_if_token1] = ACTIONS(1245), - [aux_sym_preproc_if_token2] = ACTIONS(1245), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1245), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1245), - [aux_sym_preproc_else_token1] = ACTIONS(1245), - [aux_sym_preproc_elif_token1] = ACTIONS(1245), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1245), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1245), - [sym_preproc_directive] = ACTIONS(1245), - [anon_sym_LPAREN2] = ACTIONS(1247), - [anon_sym_BANG] = ACTIONS(1247), - [anon_sym_TILDE] = ACTIONS(1247), - [anon_sym_DASH] = ACTIONS(1245), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_STAR] = ACTIONS(1247), - [anon_sym_AMP] = ACTIONS(1247), - [anon_sym_SEMI] = ACTIONS(1247), - [anon_sym___extension__] = ACTIONS(1245), - [anon_sym_typedef] = ACTIONS(1245), - [anon_sym_extern] = ACTIONS(1245), - [anon_sym___attribute__] = ACTIONS(1245), - [anon_sym___scanf] = ACTIONS(1245), - [anon_sym___printf] = ACTIONS(1245), - [anon_sym___read_mostly] = ACTIONS(1245), - [anon_sym___must_hold] = ACTIONS(1245), - [anon_sym___ro_after_init] = ACTIONS(1245), - [anon_sym___noreturn] = ACTIONS(1245), - [anon_sym___cold] = ACTIONS(1245), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1247), - [anon_sym___declspec] = ACTIONS(1245), - [anon_sym___init] = ACTIONS(1245), - [anon_sym___exit] = ACTIONS(1245), - [anon_sym___cdecl] = ACTIONS(1245), - [anon_sym___clrcall] = ACTIONS(1245), - [anon_sym___stdcall] = ACTIONS(1245), - [anon_sym___fastcall] = ACTIONS(1245), - [anon_sym___thiscall] = ACTIONS(1245), - [anon_sym___vectorcall] = ACTIONS(1245), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_signed] = ACTIONS(1245), - [anon_sym_unsigned] = ACTIONS(1245), - [anon_sym_long] = ACTIONS(1245), - [anon_sym_short] = ACTIONS(1245), - [anon_sym_static] = ACTIONS(1245), - [anon_sym_auto] = ACTIONS(1245), - [anon_sym_register] = ACTIONS(1245), - [anon_sym_inline] = ACTIONS(1245), - [anon_sym___inline] = ACTIONS(1245), - [anon_sym___inline__] = ACTIONS(1245), - [anon_sym___forceinline] = ACTIONS(1245), - [anon_sym_thread_local] = ACTIONS(1245), - [anon_sym___thread] = ACTIONS(1245), - [anon_sym_const] = ACTIONS(1245), - [anon_sym_constexpr] = ACTIONS(1245), - [anon_sym_volatile] = ACTIONS(1245), - [anon_sym_restrict] = ACTIONS(1245), - [anon_sym___restrict__] = ACTIONS(1245), - [anon_sym__Atomic] = ACTIONS(1245), - [anon_sym__Noreturn] = ACTIONS(1245), - [anon_sym_noreturn] = ACTIONS(1245), - [anon_sym_alignas] = ACTIONS(1245), - [anon_sym__Alignas] = ACTIONS(1245), - [sym_primitive_type] = ACTIONS(1245), - [anon_sym_enum] = ACTIONS(1245), - [anon_sym_struct] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1245), - [anon_sym_if] = ACTIONS(1245), - [anon_sym_else] = ACTIONS(1245), - [anon_sym_switch] = ACTIONS(1245), - [anon_sym_case] = ACTIONS(1245), - [anon_sym_default] = ACTIONS(1245), - [anon_sym_while] = ACTIONS(1245), - [anon_sym_do] = ACTIONS(1245), - [anon_sym_for] = ACTIONS(1245), - [anon_sym_return] = ACTIONS(1245), - [anon_sym_break] = ACTIONS(1245), - [anon_sym_continue] = ACTIONS(1245), - [anon_sym_goto] = ACTIONS(1245), - [anon_sym___try] = ACTIONS(1245), - [anon_sym___leave] = ACTIONS(1245), - [anon_sym_DASH_DASH] = ACTIONS(1247), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_sizeof] = ACTIONS(1245), - [anon_sym___alignof__] = ACTIONS(1245), - [anon_sym___alignof] = ACTIONS(1245), - [anon_sym__alignof] = ACTIONS(1245), - [anon_sym_alignof] = ACTIONS(1245), - [anon_sym__Alignof] = ACTIONS(1245), - [anon_sym_offsetof] = ACTIONS(1245), - [anon_sym__Generic] = ACTIONS(1245), - [anon_sym_asm] = ACTIONS(1245), - [anon_sym___asm__] = ACTIONS(1245), - [sym_number_literal] = ACTIONS(1247), - [anon_sym_L_SQUOTE] = ACTIONS(1247), - [anon_sym_u_SQUOTE] = ACTIONS(1247), - [anon_sym_U_SQUOTE] = ACTIONS(1247), - [anon_sym_u8_SQUOTE] = ACTIONS(1247), - [anon_sym_SQUOTE] = ACTIONS(1247), - [anon_sym_L_DQUOTE] = ACTIONS(1247), - [anon_sym_u_DQUOTE] = ACTIONS(1247), - [anon_sym_U_DQUOTE] = ACTIONS(1247), - [anon_sym_u8_DQUOTE] = ACTIONS(1247), - [anon_sym_DQUOTE] = ACTIONS(1247), - [sym_true] = ACTIONS(1245), - [sym_false] = ACTIONS(1245), - [anon_sym_NULL] = ACTIONS(1245), - [anon_sym_nullptr] = ACTIONS(1245), - [sym_comment] = ACTIONS(3), + [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), + [aux_sym_preproc_else_token1] = ACTIONS(1302), + [aux_sym_preproc_elif_token1] = ACTIONS(1302), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1302), + [aux_sym_preproc_elifdef_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), }, [109] = { - [sym_identifier] = ACTIONS(1249), - [aux_sym_preproc_include_token1] = ACTIONS(1249), - [aux_sym_preproc_def_token1] = ACTIONS(1249), - [aux_sym_preproc_if_token1] = ACTIONS(1249), - [aux_sym_preproc_if_token2] = ACTIONS(1249), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1249), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1249), - [aux_sym_preproc_else_token1] = ACTIONS(1249), - [aux_sym_preproc_elif_token1] = ACTIONS(1249), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1249), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1249), - [sym_preproc_directive] = ACTIONS(1249), - [anon_sym_LPAREN2] = ACTIONS(1251), - [anon_sym_BANG] = ACTIONS(1251), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1249), - [anon_sym_STAR] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1251), - [anon_sym_SEMI] = ACTIONS(1251), - [anon_sym___extension__] = ACTIONS(1249), - [anon_sym_typedef] = ACTIONS(1249), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym___attribute__] = ACTIONS(1249), - [anon_sym___scanf] = ACTIONS(1249), - [anon_sym___printf] = ACTIONS(1249), - [anon_sym___read_mostly] = ACTIONS(1249), - [anon_sym___must_hold] = ACTIONS(1249), - [anon_sym___ro_after_init] = ACTIONS(1249), - [anon_sym___noreturn] = ACTIONS(1249), - [anon_sym___cold] = ACTIONS(1249), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1251), - [anon_sym___declspec] = ACTIONS(1249), - [anon_sym___init] = ACTIONS(1249), - [anon_sym___exit] = ACTIONS(1249), - [anon_sym___cdecl] = ACTIONS(1249), - [anon_sym___clrcall] = ACTIONS(1249), - [anon_sym___stdcall] = ACTIONS(1249), - [anon_sym___fastcall] = ACTIONS(1249), - [anon_sym___thiscall] = ACTIONS(1249), - [anon_sym___vectorcall] = ACTIONS(1249), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_signed] = ACTIONS(1249), - [anon_sym_unsigned] = ACTIONS(1249), - [anon_sym_long] = ACTIONS(1249), - [anon_sym_short] = ACTIONS(1249), - [anon_sym_static] = ACTIONS(1249), - [anon_sym_auto] = ACTIONS(1249), - [anon_sym_register] = ACTIONS(1249), - [anon_sym_inline] = ACTIONS(1249), - [anon_sym___inline] = ACTIONS(1249), - [anon_sym___inline__] = ACTIONS(1249), - [anon_sym___forceinline] = ACTIONS(1249), - [anon_sym_thread_local] = ACTIONS(1249), - [anon_sym___thread] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_constexpr] = ACTIONS(1249), - [anon_sym_volatile] = ACTIONS(1249), - [anon_sym_restrict] = ACTIONS(1249), - [anon_sym___restrict__] = ACTIONS(1249), - [anon_sym__Atomic] = ACTIONS(1249), - [anon_sym__Noreturn] = ACTIONS(1249), - [anon_sym_noreturn] = ACTIONS(1249), - [anon_sym_alignas] = ACTIONS(1249), - [anon_sym__Alignas] = ACTIONS(1249), - [sym_primitive_type] = ACTIONS(1249), - [anon_sym_enum] = ACTIONS(1249), - [anon_sym_struct] = ACTIONS(1249), - [anon_sym_union] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1249), - [anon_sym_else] = ACTIONS(1249), - [anon_sym_switch] = ACTIONS(1249), - [anon_sym_case] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1249), - [anon_sym_while] = ACTIONS(1249), - [anon_sym_do] = ACTIONS(1249), - [anon_sym_for] = ACTIONS(1249), - [anon_sym_return] = ACTIONS(1249), - [anon_sym_break] = ACTIONS(1249), - [anon_sym_continue] = ACTIONS(1249), - [anon_sym_goto] = ACTIONS(1249), - [anon_sym___try] = ACTIONS(1249), - [anon_sym___leave] = ACTIONS(1249), - [anon_sym_DASH_DASH] = ACTIONS(1251), - [anon_sym_PLUS_PLUS] = ACTIONS(1251), - [anon_sym_sizeof] = ACTIONS(1249), - [anon_sym___alignof__] = ACTIONS(1249), - [anon_sym___alignof] = ACTIONS(1249), - [anon_sym__alignof] = ACTIONS(1249), - [anon_sym_alignof] = ACTIONS(1249), - [anon_sym__Alignof] = ACTIONS(1249), - [anon_sym_offsetof] = ACTIONS(1249), - [anon_sym__Generic] = ACTIONS(1249), - [anon_sym_asm] = ACTIONS(1249), - [anon_sym___asm__] = ACTIONS(1249), - [sym_number_literal] = ACTIONS(1251), - [anon_sym_L_SQUOTE] = ACTIONS(1251), - [anon_sym_u_SQUOTE] = ACTIONS(1251), - [anon_sym_U_SQUOTE] = ACTIONS(1251), - [anon_sym_u8_SQUOTE] = ACTIONS(1251), - [anon_sym_SQUOTE] = ACTIONS(1251), - [anon_sym_L_DQUOTE] = ACTIONS(1251), - [anon_sym_u_DQUOTE] = ACTIONS(1251), - [anon_sym_U_DQUOTE] = ACTIONS(1251), - [anon_sym_u8_DQUOTE] = ACTIONS(1251), - [anon_sym_DQUOTE] = ACTIONS(1251), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [anon_sym_NULL] = ACTIONS(1249), - [anon_sym_nullptr] = ACTIONS(1249), - [sym_comment] = ACTIONS(3), + [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(1253), - [aux_sym_preproc_include_token1] = ACTIONS(1253), - [aux_sym_preproc_def_token1] = ACTIONS(1253), - [aux_sym_preproc_if_token1] = ACTIONS(1253), - [aux_sym_preproc_if_token2] = ACTIONS(1253), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1253), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1253), - [aux_sym_preproc_else_token1] = ACTIONS(1253), - [aux_sym_preproc_elif_token1] = ACTIONS(1253), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1253), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1253), - [sym_preproc_directive] = ACTIONS(1253), - [anon_sym_LPAREN2] = ACTIONS(1255), - [anon_sym_BANG] = ACTIONS(1255), - [anon_sym_TILDE] = ACTIONS(1255), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_STAR] = ACTIONS(1255), - [anon_sym_AMP] = ACTIONS(1255), - [anon_sym_SEMI] = ACTIONS(1255), - [anon_sym___extension__] = ACTIONS(1253), - [anon_sym_typedef] = ACTIONS(1253), - [anon_sym_extern] = ACTIONS(1253), - [anon_sym___attribute__] = ACTIONS(1253), - [anon_sym___scanf] = ACTIONS(1253), - [anon_sym___printf] = ACTIONS(1253), - [anon_sym___read_mostly] = ACTIONS(1253), - [anon_sym___must_hold] = ACTIONS(1253), - [anon_sym___ro_after_init] = ACTIONS(1253), - [anon_sym___noreturn] = ACTIONS(1253), - [anon_sym___cold] = ACTIONS(1253), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1255), - [anon_sym___declspec] = ACTIONS(1253), - [anon_sym___init] = ACTIONS(1253), - [anon_sym___exit] = ACTIONS(1253), - [anon_sym___cdecl] = ACTIONS(1253), - [anon_sym___clrcall] = ACTIONS(1253), - [anon_sym___stdcall] = ACTIONS(1253), - [anon_sym___fastcall] = ACTIONS(1253), - [anon_sym___thiscall] = ACTIONS(1253), - [anon_sym___vectorcall] = ACTIONS(1253), - [anon_sym_LBRACE] = ACTIONS(1255), - [anon_sym_signed] = ACTIONS(1253), - [anon_sym_unsigned] = ACTIONS(1253), - [anon_sym_long] = ACTIONS(1253), - [anon_sym_short] = ACTIONS(1253), - [anon_sym_static] = ACTIONS(1253), - [anon_sym_auto] = ACTIONS(1253), - [anon_sym_register] = ACTIONS(1253), - [anon_sym_inline] = ACTIONS(1253), - [anon_sym___inline] = ACTIONS(1253), - [anon_sym___inline__] = ACTIONS(1253), - [anon_sym___forceinline] = ACTIONS(1253), - [anon_sym_thread_local] = ACTIONS(1253), - [anon_sym___thread] = ACTIONS(1253), - [anon_sym_const] = ACTIONS(1253), - [anon_sym_constexpr] = ACTIONS(1253), - [anon_sym_volatile] = ACTIONS(1253), - [anon_sym_restrict] = ACTIONS(1253), - [anon_sym___restrict__] = ACTIONS(1253), - [anon_sym__Atomic] = ACTIONS(1253), - [anon_sym__Noreturn] = ACTIONS(1253), - [anon_sym_noreturn] = ACTIONS(1253), - [anon_sym_alignas] = ACTIONS(1253), - [anon_sym__Alignas] = ACTIONS(1253), - [sym_primitive_type] = ACTIONS(1253), - [anon_sym_enum] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1253), - [anon_sym_union] = ACTIONS(1253), - [anon_sym_if] = ACTIONS(1253), - [anon_sym_else] = ACTIONS(1253), - [anon_sym_switch] = ACTIONS(1253), - [anon_sym_case] = ACTIONS(1253), - [anon_sym_default] = ACTIONS(1253), - [anon_sym_while] = ACTIONS(1253), - [anon_sym_do] = ACTIONS(1253), - [anon_sym_for] = ACTIONS(1253), - [anon_sym_return] = ACTIONS(1253), - [anon_sym_break] = ACTIONS(1253), - [anon_sym_continue] = ACTIONS(1253), - [anon_sym_goto] = ACTIONS(1253), - [anon_sym___try] = ACTIONS(1253), - [anon_sym___leave] = ACTIONS(1253), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_sizeof] = ACTIONS(1253), - [anon_sym___alignof__] = ACTIONS(1253), - [anon_sym___alignof] = ACTIONS(1253), - [anon_sym__alignof] = ACTIONS(1253), - [anon_sym_alignof] = ACTIONS(1253), - [anon_sym__Alignof] = ACTIONS(1253), - [anon_sym_offsetof] = ACTIONS(1253), - [anon_sym__Generic] = ACTIONS(1253), - [anon_sym_asm] = ACTIONS(1253), - [anon_sym___asm__] = ACTIONS(1253), - [sym_number_literal] = ACTIONS(1255), - [anon_sym_L_SQUOTE] = ACTIONS(1255), - [anon_sym_u_SQUOTE] = ACTIONS(1255), - [anon_sym_U_SQUOTE] = ACTIONS(1255), - [anon_sym_u8_SQUOTE] = ACTIONS(1255), - [anon_sym_SQUOTE] = ACTIONS(1255), - [anon_sym_L_DQUOTE] = ACTIONS(1255), - [anon_sym_u_DQUOTE] = ACTIONS(1255), - [anon_sym_U_DQUOTE] = ACTIONS(1255), - [anon_sym_u8_DQUOTE] = ACTIONS(1255), - [anon_sym_DQUOTE] = ACTIONS(1255), - [sym_true] = ACTIONS(1253), - [sym_false] = ACTIONS(1253), - [anon_sym_NULL] = ACTIONS(1253), - [anon_sym_nullptr] = ACTIONS(1253), - [sym_comment] = ACTIONS(3), + [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] = { - [sym_identifier] = ACTIONS(1257), - [aux_sym_preproc_include_token1] = ACTIONS(1257), - [aux_sym_preproc_def_token1] = ACTIONS(1257), - [aux_sym_preproc_if_token1] = ACTIONS(1257), - [aux_sym_preproc_if_token2] = ACTIONS(1257), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1257), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1257), - [aux_sym_preproc_else_token1] = ACTIONS(1257), - [aux_sym_preproc_elif_token1] = ACTIONS(1257), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1257), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1257), - [sym_preproc_directive] = ACTIONS(1257), - [anon_sym_LPAREN2] = ACTIONS(1259), - [anon_sym_BANG] = ACTIONS(1259), - [anon_sym_TILDE] = ACTIONS(1259), - [anon_sym_DASH] = ACTIONS(1257), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_STAR] = ACTIONS(1259), - [anon_sym_AMP] = ACTIONS(1259), - [anon_sym_SEMI] = ACTIONS(1259), - [anon_sym___extension__] = ACTIONS(1257), - [anon_sym_typedef] = ACTIONS(1257), - [anon_sym_extern] = ACTIONS(1257), - [anon_sym___attribute__] = ACTIONS(1257), - [anon_sym___scanf] = ACTIONS(1257), - [anon_sym___printf] = ACTIONS(1257), - [anon_sym___read_mostly] = ACTIONS(1257), - [anon_sym___must_hold] = ACTIONS(1257), - [anon_sym___ro_after_init] = ACTIONS(1257), - [anon_sym___noreturn] = ACTIONS(1257), - [anon_sym___cold] = ACTIONS(1257), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1259), - [anon_sym___declspec] = ACTIONS(1257), - [anon_sym___init] = ACTIONS(1257), - [anon_sym___exit] = ACTIONS(1257), - [anon_sym___cdecl] = ACTIONS(1257), - [anon_sym___clrcall] = ACTIONS(1257), - [anon_sym___stdcall] = ACTIONS(1257), - [anon_sym___fastcall] = ACTIONS(1257), - [anon_sym___thiscall] = ACTIONS(1257), - [anon_sym___vectorcall] = ACTIONS(1257), - [anon_sym_LBRACE] = ACTIONS(1259), - [anon_sym_signed] = ACTIONS(1257), - [anon_sym_unsigned] = ACTIONS(1257), - [anon_sym_long] = ACTIONS(1257), - [anon_sym_short] = ACTIONS(1257), - [anon_sym_static] = ACTIONS(1257), - [anon_sym_auto] = ACTIONS(1257), - [anon_sym_register] = ACTIONS(1257), - [anon_sym_inline] = ACTIONS(1257), - [anon_sym___inline] = ACTIONS(1257), - [anon_sym___inline__] = ACTIONS(1257), - [anon_sym___forceinline] = ACTIONS(1257), - [anon_sym_thread_local] = ACTIONS(1257), - [anon_sym___thread] = ACTIONS(1257), - [anon_sym_const] = ACTIONS(1257), - [anon_sym_constexpr] = ACTIONS(1257), - [anon_sym_volatile] = ACTIONS(1257), - [anon_sym_restrict] = ACTIONS(1257), - [anon_sym___restrict__] = ACTIONS(1257), - [anon_sym__Atomic] = ACTIONS(1257), - [anon_sym__Noreturn] = ACTIONS(1257), - [anon_sym_noreturn] = ACTIONS(1257), - [anon_sym_alignas] = ACTIONS(1257), - [anon_sym__Alignas] = ACTIONS(1257), - [sym_primitive_type] = ACTIONS(1257), - [anon_sym_enum] = ACTIONS(1257), - [anon_sym_struct] = ACTIONS(1257), - [anon_sym_union] = ACTIONS(1257), - [anon_sym_if] = ACTIONS(1257), - [anon_sym_else] = ACTIONS(1257), - [anon_sym_switch] = ACTIONS(1257), - [anon_sym_case] = ACTIONS(1257), - [anon_sym_default] = ACTIONS(1257), - [anon_sym_while] = ACTIONS(1257), - [anon_sym_do] = ACTIONS(1257), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_return] = ACTIONS(1257), - [anon_sym_break] = ACTIONS(1257), - [anon_sym_continue] = ACTIONS(1257), - [anon_sym_goto] = ACTIONS(1257), - [anon_sym___try] = ACTIONS(1257), - [anon_sym___leave] = ACTIONS(1257), - [anon_sym_DASH_DASH] = ACTIONS(1259), - [anon_sym_PLUS_PLUS] = ACTIONS(1259), - [anon_sym_sizeof] = ACTIONS(1257), - [anon_sym___alignof__] = ACTIONS(1257), - [anon_sym___alignof] = ACTIONS(1257), - [anon_sym__alignof] = ACTIONS(1257), - [anon_sym_alignof] = ACTIONS(1257), - [anon_sym__Alignof] = ACTIONS(1257), - [anon_sym_offsetof] = ACTIONS(1257), - [anon_sym__Generic] = ACTIONS(1257), - [anon_sym_asm] = ACTIONS(1257), - [anon_sym___asm__] = ACTIONS(1257), - [sym_number_literal] = ACTIONS(1259), - [anon_sym_L_SQUOTE] = ACTIONS(1259), - [anon_sym_u_SQUOTE] = ACTIONS(1259), - [anon_sym_U_SQUOTE] = ACTIONS(1259), - [anon_sym_u8_SQUOTE] = ACTIONS(1259), - [anon_sym_SQUOTE] = ACTIONS(1259), - [anon_sym_L_DQUOTE] = ACTIONS(1259), - [anon_sym_u_DQUOTE] = ACTIONS(1259), - [anon_sym_U_DQUOTE] = ACTIONS(1259), - [anon_sym_u8_DQUOTE] = ACTIONS(1259), - [anon_sym_DQUOTE] = ACTIONS(1259), - [sym_true] = ACTIONS(1257), - [sym_false] = ACTIONS(1257), - [anon_sym_NULL] = ACTIONS(1257), - [anon_sym_nullptr] = ACTIONS(1257), - [sym_comment] = ACTIONS(3), + [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), }, [112] = { - [sym_identifier] = ACTIONS(1261), - [aux_sym_preproc_include_token1] = ACTIONS(1261), - [aux_sym_preproc_def_token1] = ACTIONS(1261), - [aux_sym_preproc_if_token1] = ACTIONS(1261), - [aux_sym_preproc_if_token2] = ACTIONS(1261), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1261), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1261), - [aux_sym_preproc_else_token1] = ACTIONS(1261), - [aux_sym_preproc_elif_token1] = ACTIONS(1261), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1261), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1261), - [sym_preproc_directive] = ACTIONS(1261), - [anon_sym_LPAREN2] = ACTIONS(1263), - [anon_sym_BANG] = ACTIONS(1263), - [anon_sym_TILDE] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1261), - [anon_sym_PLUS] = ACTIONS(1261), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_AMP] = ACTIONS(1263), - [anon_sym_SEMI] = ACTIONS(1263), - [anon_sym___extension__] = ACTIONS(1261), - [anon_sym_typedef] = ACTIONS(1261), - [anon_sym_extern] = ACTIONS(1261), - [anon_sym___attribute__] = ACTIONS(1261), - [anon_sym___scanf] = ACTIONS(1261), - [anon_sym___printf] = ACTIONS(1261), - [anon_sym___read_mostly] = ACTIONS(1261), - [anon_sym___must_hold] = ACTIONS(1261), - [anon_sym___ro_after_init] = ACTIONS(1261), - [anon_sym___noreturn] = ACTIONS(1261), - [anon_sym___cold] = ACTIONS(1261), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1263), - [anon_sym___declspec] = ACTIONS(1261), - [anon_sym___init] = ACTIONS(1261), - [anon_sym___exit] = ACTIONS(1261), - [anon_sym___cdecl] = ACTIONS(1261), - [anon_sym___clrcall] = ACTIONS(1261), - [anon_sym___stdcall] = ACTIONS(1261), - [anon_sym___fastcall] = ACTIONS(1261), - [anon_sym___thiscall] = ACTIONS(1261), - [anon_sym___vectorcall] = ACTIONS(1261), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_signed] = ACTIONS(1261), - [anon_sym_unsigned] = ACTIONS(1261), - [anon_sym_long] = ACTIONS(1261), - [anon_sym_short] = ACTIONS(1261), - [anon_sym_static] = ACTIONS(1261), - [anon_sym_auto] = ACTIONS(1261), - [anon_sym_register] = ACTIONS(1261), - [anon_sym_inline] = ACTIONS(1261), - [anon_sym___inline] = ACTIONS(1261), - [anon_sym___inline__] = ACTIONS(1261), - [anon_sym___forceinline] = ACTIONS(1261), - [anon_sym_thread_local] = ACTIONS(1261), - [anon_sym___thread] = ACTIONS(1261), - [anon_sym_const] = ACTIONS(1261), - [anon_sym_constexpr] = ACTIONS(1261), - [anon_sym_volatile] = ACTIONS(1261), - [anon_sym_restrict] = ACTIONS(1261), - [anon_sym___restrict__] = ACTIONS(1261), - [anon_sym__Atomic] = ACTIONS(1261), - [anon_sym__Noreturn] = ACTIONS(1261), - [anon_sym_noreturn] = ACTIONS(1261), - [anon_sym_alignas] = ACTIONS(1261), - [anon_sym__Alignas] = ACTIONS(1261), - [sym_primitive_type] = ACTIONS(1261), - [anon_sym_enum] = ACTIONS(1261), - [anon_sym_struct] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1261), - [anon_sym_if] = ACTIONS(1261), - [anon_sym_else] = ACTIONS(1261), - [anon_sym_switch] = ACTIONS(1261), - [anon_sym_case] = ACTIONS(1261), - [anon_sym_default] = ACTIONS(1261), - [anon_sym_while] = ACTIONS(1261), - [anon_sym_do] = ACTIONS(1261), - [anon_sym_for] = ACTIONS(1261), - [anon_sym_return] = ACTIONS(1261), - [anon_sym_break] = ACTIONS(1261), - [anon_sym_continue] = ACTIONS(1261), - [anon_sym_goto] = ACTIONS(1261), - [anon_sym___try] = ACTIONS(1261), - [anon_sym___leave] = ACTIONS(1261), - [anon_sym_DASH_DASH] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_sizeof] = ACTIONS(1261), - [anon_sym___alignof__] = ACTIONS(1261), - [anon_sym___alignof] = ACTIONS(1261), - [anon_sym__alignof] = ACTIONS(1261), - [anon_sym_alignof] = ACTIONS(1261), - [anon_sym__Alignof] = ACTIONS(1261), - [anon_sym_offsetof] = ACTIONS(1261), - [anon_sym__Generic] = ACTIONS(1261), - [anon_sym_asm] = ACTIONS(1261), - [anon_sym___asm__] = ACTIONS(1261), - [sym_number_literal] = ACTIONS(1263), - [anon_sym_L_SQUOTE] = ACTIONS(1263), - [anon_sym_u_SQUOTE] = ACTIONS(1263), - [anon_sym_U_SQUOTE] = ACTIONS(1263), - [anon_sym_u8_SQUOTE] = ACTIONS(1263), - [anon_sym_SQUOTE] = ACTIONS(1263), - [anon_sym_L_DQUOTE] = ACTIONS(1263), - [anon_sym_u_DQUOTE] = ACTIONS(1263), - [anon_sym_U_DQUOTE] = ACTIONS(1263), - [anon_sym_u8_DQUOTE] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym_true] = ACTIONS(1261), - [sym_false] = ACTIONS(1261), - [anon_sym_NULL] = ACTIONS(1261), - [anon_sym_nullptr] = ACTIONS(1261), - [sym_comment] = ACTIONS(3), + [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(1265), - [aux_sym_preproc_include_token1] = ACTIONS(1265), - [aux_sym_preproc_def_token1] = ACTIONS(1265), - [aux_sym_preproc_if_token1] = ACTIONS(1265), - [aux_sym_preproc_if_token2] = ACTIONS(1265), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1265), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1265), - [aux_sym_preproc_else_token1] = ACTIONS(1265), - [aux_sym_preproc_elif_token1] = ACTIONS(1265), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1265), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1265), - [sym_preproc_directive] = ACTIONS(1265), - [anon_sym_LPAREN2] = ACTIONS(1267), - [anon_sym_BANG] = ACTIONS(1267), - [anon_sym_TILDE] = ACTIONS(1267), - [anon_sym_DASH] = ACTIONS(1265), - [anon_sym_PLUS] = ACTIONS(1265), - [anon_sym_STAR] = ACTIONS(1267), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_SEMI] = ACTIONS(1267), - [anon_sym___extension__] = ACTIONS(1265), - [anon_sym_typedef] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym___attribute__] = ACTIONS(1265), - [anon_sym___scanf] = ACTIONS(1265), - [anon_sym___printf] = ACTIONS(1265), - [anon_sym___read_mostly] = ACTIONS(1265), - [anon_sym___must_hold] = ACTIONS(1265), - [anon_sym___ro_after_init] = ACTIONS(1265), - [anon_sym___noreturn] = ACTIONS(1265), - [anon_sym___cold] = ACTIONS(1265), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1267), - [anon_sym___declspec] = ACTIONS(1265), - [anon_sym___init] = ACTIONS(1265), - [anon_sym___exit] = ACTIONS(1265), - [anon_sym___cdecl] = ACTIONS(1265), - [anon_sym___clrcall] = ACTIONS(1265), - [anon_sym___stdcall] = ACTIONS(1265), - [anon_sym___fastcall] = ACTIONS(1265), - [anon_sym___thiscall] = ACTIONS(1265), - [anon_sym___vectorcall] = ACTIONS(1265), - [anon_sym_LBRACE] = ACTIONS(1267), - [anon_sym_signed] = ACTIONS(1265), - [anon_sym_unsigned] = ACTIONS(1265), - [anon_sym_long] = ACTIONS(1265), - [anon_sym_short] = ACTIONS(1265), - [anon_sym_static] = ACTIONS(1265), - [anon_sym_auto] = ACTIONS(1265), - [anon_sym_register] = ACTIONS(1265), - [anon_sym_inline] = ACTIONS(1265), - [anon_sym___inline] = ACTIONS(1265), - [anon_sym___inline__] = ACTIONS(1265), - [anon_sym___forceinline] = ACTIONS(1265), - [anon_sym_thread_local] = ACTIONS(1265), - [anon_sym___thread] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_constexpr] = ACTIONS(1265), - [anon_sym_volatile] = ACTIONS(1265), - [anon_sym_restrict] = ACTIONS(1265), - [anon_sym___restrict__] = ACTIONS(1265), - [anon_sym__Atomic] = ACTIONS(1265), - [anon_sym__Noreturn] = ACTIONS(1265), - [anon_sym_noreturn] = ACTIONS(1265), - [anon_sym_alignas] = ACTIONS(1265), - [anon_sym__Alignas] = ACTIONS(1265), - [sym_primitive_type] = ACTIONS(1265), - [anon_sym_enum] = ACTIONS(1265), - [anon_sym_struct] = ACTIONS(1265), - [anon_sym_union] = ACTIONS(1265), - [anon_sym_if] = ACTIONS(1265), - [anon_sym_else] = ACTIONS(1265), - [anon_sym_switch] = ACTIONS(1265), - [anon_sym_case] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_while] = ACTIONS(1265), - [anon_sym_do] = ACTIONS(1265), - [anon_sym_for] = ACTIONS(1265), - [anon_sym_return] = ACTIONS(1265), - [anon_sym_break] = ACTIONS(1265), - [anon_sym_continue] = ACTIONS(1265), - [anon_sym_goto] = ACTIONS(1265), - [anon_sym___try] = ACTIONS(1265), - [anon_sym___leave] = ACTIONS(1265), - [anon_sym_DASH_DASH] = ACTIONS(1267), - [anon_sym_PLUS_PLUS] = ACTIONS(1267), - [anon_sym_sizeof] = ACTIONS(1265), - [anon_sym___alignof__] = ACTIONS(1265), - [anon_sym___alignof] = ACTIONS(1265), - [anon_sym__alignof] = ACTIONS(1265), - [anon_sym_alignof] = ACTIONS(1265), - [anon_sym__Alignof] = ACTIONS(1265), - [anon_sym_offsetof] = ACTIONS(1265), - [anon_sym__Generic] = ACTIONS(1265), - [anon_sym_asm] = ACTIONS(1265), - [anon_sym___asm__] = ACTIONS(1265), - [sym_number_literal] = ACTIONS(1267), - [anon_sym_L_SQUOTE] = ACTIONS(1267), - [anon_sym_u_SQUOTE] = ACTIONS(1267), - [anon_sym_U_SQUOTE] = ACTIONS(1267), - [anon_sym_u8_SQUOTE] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_L_DQUOTE] = ACTIONS(1267), - [anon_sym_u_DQUOTE] = ACTIONS(1267), - [anon_sym_U_DQUOTE] = ACTIONS(1267), - [anon_sym_u8_DQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1267), - [sym_true] = ACTIONS(1265), - [sym_false] = ACTIONS(1265), - [anon_sym_NULL] = ACTIONS(1265), - [anon_sym_nullptr] = ACTIONS(1265), - [sym_comment] = ACTIONS(3), + [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] = { - [sym_identifier] = ACTIONS(1153), - [aux_sym_preproc_include_token1] = ACTIONS(1153), - [aux_sym_preproc_def_token1] = ACTIONS(1153), - [aux_sym_preproc_if_token1] = ACTIONS(1153), - [aux_sym_preproc_if_token2] = ACTIONS(1153), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1153), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1153), - [aux_sym_preproc_else_token1] = ACTIONS(1153), - [aux_sym_preproc_elif_token1] = ACTIONS(1153), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1153), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1153), - [sym_preproc_directive] = ACTIONS(1153), - [anon_sym_LPAREN2] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1155), - [anon_sym_TILDE] = ACTIONS(1155), - [anon_sym_DASH] = ACTIONS(1153), - [anon_sym_PLUS] = ACTIONS(1153), - [anon_sym_STAR] = ACTIONS(1155), - [anon_sym_AMP] = ACTIONS(1155), - [anon_sym_SEMI] = ACTIONS(1155), - [anon_sym___extension__] = ACTIONS(1153), - [anon_sym_typedef] = ACTIONS(1153), - [anon_sym_extern] = ACTIONS(1153), - [anon_sym___attribute__] = ACTIONS(1153), - [anon_sym___scanf] = ACTIONS(1153), - [anon_sym___printf] = ACTIONS(1153), - [anon_sym___read_mostly] = ACTIONS(1153), - [anon_sym___must_hold] = ACTIONS(1153), - [anon_sym___ro_after_init] = ACTIONS(1153), - [anon_sym___noreturn] = ACTIONS(1153), - [anon_sym___cold] = ACTIONS(1153), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1155), - [anon_sym___declspec] = ACTIONS(1153), - [anon_sym___init] = ACTIONS(1153), - [anon_sym___exit] = ACTIONS(1153), - [anon_sym___cdecl] = ACTIONS(1153), - [anon_sym___clrcall] = ACTIONS(1153), - [anon_sym___stdcall] = ACTIONS(1153), - [anon_sym___fastcall] = ACTIONS(1153), - [anon_sym___thiscall] = ACTIONS(1153), - [anon_sym___vectorcall] = ACTIONS(1153), - [anon_sym_LBRACE] = ACTIONS(1155), - [anon_sym_signed] = ACTIONS(1153), - [anon_sym_unsigned] = ACTIONS(1153), - [anon_sym_long] = ACTIONS(1153), - [anon_sym_short] = ACTIONS(1153), - [anon_sym_static] = ACTIONS(1153), - [anon_sym_auto] = ACTIONS(1153), - [anon_sym_register] = ACTIONS(1153), - [anon_sym_inline] = ACTIONS(1153), - [anon_sym___inline] = ACTIONS(1153), - [anon_sym___inline__] = ACTIONS(1153), - [anon_sym___forceinline] = ACTIONS(1153), - [anon_sym_thread_local] = ACTIONS(1153), - [anon_sym___thread] = ACTIONS(1153), - [anon_sym_const] = ACTIONS(1153), - [anon_sym_constexpr] = ACTIONS(1153), - [anon_sym_volatile] = ACTIONS(1153), - [anon_sym_restrict] = ACTIONS(1153), - [anon_sym___restrict__] = ACTIONS(1153), - [anon_sym__Atomic] = ACTIONS(1153), - [anon_sym__Noreturn] = ACTIONS(1153), - [anon_sym_noreturn] = ACTIONS(1153), - [anon_sym_alignas] = ACTIONS(1153), - [anon_sym__Alignas] = ACTIONS(1153), - [sym_primitive_type] = ACTIONS(1153), - [anon_sym_enum] = ACTIONS(1153), - [anon_sym_struct] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1153), - [anon_sym_if] = ACTIONS(1153), - [anon_sym_else] = ACTIONS(1153), - [anon_sym_switch] = ACTIONS(1153), - [anon_sym_case] = ACTIONS(1153), - [anon_sym_default] = ACTIONS(1153), - [anon_sym_while] = ACTIONS(1153), - [anon_sym_do] = ACTIONS(1153), - [anon_sym_for] = ACTIONS(1153), - [anon_sym_return] = ACTIONS(1153), - [anon_sym_break] = ACTIONS(1153), - [anon_sym_continue] = ACTIONS(1153), - [anon_sym_goto] = ACTIONS(1153), - [anon_sym___try] = ACTIONS(1153), - [anon_sym___leave] = ACTIONS(1153), - [anon_sym_DASH_DASH] = ACTIONS(1155), - [anon_sym_PLUS_PLUS] = ACTIONS(1155), - [anon_sym_sizeof] = ACTIONS(1153), - [anon_sym___alignof__] = ACTIONS(1153), - [anon_sym___alignof] = ACTIONS(1153), - [anon_sym__alignof] = ACTIONS(1153), - [anon_sym_alignof] = ACTIONS(1153), - [anon_sym__Alignof] = ACTIONS(1153), - [anon_sym_offsetof] = ACTIONS(1153), - [anon_sym__Generic] = ACTIONS(1153), - [anon_sym_asm] = ACTIONS(1153), - [anon_sym___asm__] = ACTIONS(1153), - [sym_number_literal] = ACTIONS(1155), - [anon_sym_L_SQUOTE] = ACTIONS(1155), - [anon_sym_u_SQUOTE] = ACTIONS(1155), - [anon_sym_U_SQUOTE] = ACTIONS(1155), - [anon_sym_u8_SQUOTE] = ACTIONS(1155), - [anon_sym_SQUOTE] = ACTIONS(1155), - [anon_sym_L_DQUOTE] = ACTIONS(1155), - [anon_sym_u_DQUOTE] = ACTIONS(1155), - [anon_sym_U_DQUOTE] = ACTIONS(1155), - [anon_sym_u8_DQUOTE] = ACTIONS(1155), - [anon_sym_DQUOTE] = ACTIONS(1155), - [sym_true] = ACTIONS(1153), - [sym_false] = ACTIONS(1153), - [anon_sym_NULL] = ACTIONS(1153), - [anon_sym_nullptr] = ACTIONS(1153), - [sym_comment] = ACTIONS(3), + [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), + [aux_sym_preproc_else_token1] = ACTIONS(1310), + [aux_sym_preproc_elif_token1] = ACTIONS(1310), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1310), + [aux_sym_preproc_elifdef_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), }, [115] = { - [sym_identifier] = ACTIONS(1153), - [aux_sym_preproc_include_token1] = ACTIONS(1153), - [aux_sym_preproc_def_token1] = ACTIONS(1153), - [aux_sym_preproc_if_token1] = ACTIONS(1153), - [aux_sym_preproc_if_token2] = ACTIONS(1153), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1153), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1153), - [aux_sym_preproc_else_token1] = ACTIONS(1153), - [aux_sym_preproc_elif_token1] = ACTIONS(1153), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1153), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1153), - [sym_preproc_directive] = ACTIONS(1153), - [anon_sym_LPAREN2] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1155), - [anon_sym_TILDE] = ACTIONS(1155), - [anon_sym_DASH] = ACTIONS(1153), - [anon_sym_PLUS] = ACTIONS(1153), - [anon_sym_STAR] = ACTIONS(1155), - [anon_sym_AMP] = ACTIONS(1155), - [anon_sym_SEMI] = ACTIONS(1155), - [anon_sym___extension__] = ACTIONS(1153), - [anon_sym_typedef] = ACTIONS(1153), - [anon_sym_extern] = ACTIONS(1153), - [anon_sym___attribute__] = ACTIONS(1153), - [anon_sym___scanf] = ACTIONS(1153), - [anon_sym___printf] = ACTIONS(1153), - [anon_sym___read_mostly] = ACTIONS(1153), - [anon_sym___must_hold] = ACTIONS(1153), - [anon_sym___ro_after_init] = ACTIONS(1153), - [anon_sym___noreturn] = ACTIONS(1153), - [anon_sym___cold] = ACTIONS(1153), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1155), - [anon_sym___declspec] = ACTIONS(1153), - [anon_sym___init] = ACTIONS(1153), - [anon_sym___exit] = ACTIONS(1153), - [anon_sym___cdecl] = ACTIONS(1153), - [anon_sym___clrcall] = ACTIONS(1153), - [anon_sym___stdcall] = ACTIONS(1153), - [anon_sym___fastcall] = ACTIONS(1153), - [anon_sym___thiscall] = ACTIONS(1153), - [anon_sym___vectorcall] = ACTIONS(1153), - [anon_sym_LBRACE] = ACTIONS(1155), - [anon_sym_signed] = ACTIONS(1153), - [anon_sym_unsigned] = ACTIONS(1153), - [anon_sym_long] = ACTIONS(1153), - [anon_sym_short] = ACTIONS(1153), - [anon_sym_static] = ACTIONS(1153), - [anon_sym_auto] = ACTIONS(1153), - [anon_sym_register] = ACTIONS(1153), - [anon_sym_inline] = ACTIONS(1153), - [anon_sym___inline] = ACTIONS(1153), - [anon_sym___inline__] = ACTIONS(1153), - [anon_sym___forceinline] = ACTIONS(1153), - [anon_sym_thread_local] = ACTIONS(1153), - [anon_sym___thread] = ACTIONS(1153), - [anon_sym_const] = ACTIONS(1153), - [anon_sym_constexpr] = ACTIONS(1153), - [anon_sym_volatile] = ACTIONS(1153), - [anon_sym_restrict] = ACTIONS(1153), - [anon_sym___restrict__] = ACTIONS(1153), - [anon_sym__Atomic] = ACTIONS(1153), - [anon_sym__Noreturn] = ACTIONS(1153), - [anon_sym_noreturn] = ACTIONS(1153), - [anon_sym_alignas] = ACTIONS(1153), - [anon_sym__Alignas] = ACTIONS(1153), - [sym_primitive_type] = ACTIONS(1153), - [anon_sym_enum] = ACTIONS(1153), - [anon_sym_struct] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1153), - [anon_sym_if] = ACTIONS(1153), - [anon_sym_else] = ACTIONS(1153), - [anon_sym_switch] = ACTIONS(1153), - [anon_sym_case] = ACTIONS(1153), - [anon_sym_default] = ACTIONS(1153), - [anon_sym_while] = ACTIONS(1153), - [anon_sym_do] = ACTIONS(1153), - [anon_sym_for] = ACTIONS(1153), - [anon_sym_return] = ACTIONS(1153), - [anon_sym_break] = ACTIONS(1153), - [anon_sym_continue] = ACTIONS(1153), - [anon_sym_goto] = ACTIONS(1153), - [anon_sym___try] = ACTIONS(1153), - [anon_sym___leave] = ACTIONS(1153), - [anon_sym_DASH_DASH] = ACTIONS(1155), - [anon_sym_PLUS_PLUS] = ACTIONS(1155), - [anon_sym_sizeof] = ACTIONS(1153), - [anon_sym___alignof__] = ACTIONS(1153), - [anon_sym___alignof] = ACTIONS(1153), - [anon_sym__alignof] = ACTIONS(1153), - [anon_sym_alignof] = ACTIONS(1153), - [anon_sym__Alignof] = ACTIONS(1153), - [anon_sym_offsetof] = ACTIONS(1153), - [anon_sym__Generic] = ACTIONS(1153), - [anon_sym_asm] = ACTIONS(1153), - [anon_sym___asm__] = ACTIONS(1153), - [sym_number_literal] = ACTIONS(1155), - [anon_sym_L_SQUOTE] = ACTIONS(1155), - [anon_sym_u_SQUOTE] = ACTIONS(1155), - [anon_sym_U_SQUOTE] = ACTIONS(1155), - [anon_sym_u8_SQUOTE] = ACTIONS(1155), - [anon_sym_SQUOTE] = ACTIONS(1155), - [anon_sym_L_DQUOTE] = ACTIONS(1155), - [anon_sym_u_DQUOTE] = ACTIONS(1155), - [anon_sym_U_DQUOTE] = ACTIONS(1155), - [anon_sym_u8_DQUOTE] = ACTIONS(1155), - [anon_sym_DQUOTE] = ACTIONS(1155), - [sym_true] = ACTIONS(1153), - [sym_false] = ACTIONS(1153), - [anon_sym_NULL] = ACTIONS(1153), - [anon_sym_nullptr] = ACTIONS(1153), - [sym_comment] = ACTIONS(3), + [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), + [aux_sym_preproc_else_token1] = ACTIONS(1314), + [aux_sym_preproc_elif_token1] = ACTIONS(1314), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1314), + [aux_sym_preproc_elifdef_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), }, [116] = { - [sym_identifier] = ACTIONS(1269), - [aux_sym_preproc_include_token1] = ACTIONS(1269), - [aux_sym_preproc_def_token1] = ACTIONS(1269), - [aux_sym_preproc_if_token1] = ACTIONS(1269), - [aux_sym_preproc_if_token2] = ACTIONS(1269), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1269), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1269), - [aux_sym_preproc_else_token1] = ACTIONS(1269), - [aux_sym_preproc_elif_token1] = ACTIONS(1269), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1269), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1269), - [sym_preproc_directive] = ACTIONS(1269), - [anon_sym_LPAREN2] = ACTIONS(1271), - [anon_sym_BANG] = ACTIONS(1271), - [anon_sym_TILDE] = ACTIONS(1271), - [anon_sym_DASH] = ACTIONS(1269), - [anon_sym_PLUS] = ACTIONS(1269), - [anon_sym_STAR] = ACTIONS(1271), - [anon_sym_AMP] = ACTIONS(1271), - [anon_sym_SEMI] = ACTIONS(1271), - [anon_sym___extension__] = ACTIONS(1269), - [anon_sym_typedef] = ACTIONS(1269), - [anon_sym_extern] = ACTIONS(1269), - [anon_sym___attribute__] = ACTIONS(1269), - [anon_sym___scanf] = ACTIONS(1269), - [anon_sym___printf] = ACTIONS(1269), - [anon_sym___read_mostly] = ACTIONS(1269), - [anon_sym___must_hold] = ACTIONS(1269), - [anon_sym___ro_after_init] = ACTIONS(1269), - [anon_sym___noreturn] = ACTIONS(1269), - [anon_sym___cold] = ACTIONS(1269), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1271), - [anon_sym___declspec] = ACTIONS(1269), - [anon_sym___init] = ACTIONS(1269), - [anon_sym___exit] = ACTIONS(1269), - [anon_sym___cdecl] = ACTIONS(1269), - [anon_sym___clrcall] = ACTIONS(1269), - [anon_sym___stdcall] = ACTIONS(1269), - [anon_sym___fastcall] = ACTIONS(1269), - [anon_sym___thiscall] = ACTIONS(1269), - [anon_sym___vectorcall] = ACTIONS(1269), - [anon_sym_LBRACE] = ACTIONS(1271), - [anon_sym_signed] = ACTIONS(1269), - [anon_sym_unsigned] = ACTIONS(1269), - [anon_sym_long] = ACTIONS(1269), - [anon_sym_short] = ACTIONS(1269), - [anon_sym_static] = ACTIONS(1269), - [anon_sym_auto] = ACTIONS(1269), - [anon_sym_register] = ACTIONS(1269), - [anon_sym_inline] = ACTIONS(1269), - [anon_sym___inline] = ACTIONS(1269), - [anon_sym___inline__] = ACTIONS(1269), - [anon_sym___forceinline] = ACTIONS(1269), - [anon_sym_thread_local] = ACTIONS(1269), - [anon_sym___thread] = ACTIONS(1269), - [anon_sym_const] = ACTIONS(1269), - [anon_sym_constexpr] = ACTIONS(1269), - [anon_sym_volatile] = ACTIONS(1269), - [anon_sym_restrict] = ACTIONS(1269), - [anon_sym___restrict__] = ACTIONS(1269), - [anon_sym__Atomic] = ACTIONS(1269), - [anon_sym__Noreturn] = ACTIONS(1269), - [anon_sym_noreturn] = ACTIONS(1269), - [anon_sym_alignas] = ACTIONS(1269), - [anon_sym__Alignas] = ACTIONS(1269), - [sym_primitive_type] = ACTIONS(1269), - [anon_sym_enum] = ACTIONS(1269), - [anon_sym_struct] = ACTIONS(1269), - [anon_sym_union] = ACTIONS(1269), - [anon_sym_if] = ACTIONS(1269), - [anon_sym_else] = ACTIONS(1269), - [anon_sym_switch] = ACTIONS(1269), - [anon_sym_case] = ACTIONS(1269), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_while] = ACTIONS(1269), - [anon_sym_do] = ACTIONS(1269), - [anon_sym_for] = ACTIONS(1269), - [anon_sym_return] = ACTIONS(1269), - [anon_sym_break] = ACTIONS(1269), - [anon_sym_continue] = ACTIONS(1269), - [anon_sym_goto] = ACTIONS(1269), - [anon_sym___try] = ACTIONS(1269), - [anon_sym___leave] = ACTIONS(1269), - [anon_sym_DASH_DASH] = ACTIONS(1271), - [anon_sym_PLUS_PLUS] = ACTIONS(1271), - [anon_sym_sizeof] = ACTIONS(1269), - [anon_sym___alignof__] = ACTIONS(1269), - [anon_sym___alignof] = ACTIONS(1269), - [anon_sym__alignof] = ACTIONS(1269), - [anon_sym_alignof] = ACTIONS(1269), - [anon_sym__Alignof] = ACTIONS(1269), - [anon_sym_offsetof] = ACTIONS(1269), - [anon_sym__Generic] = ACTIONS(1269), - [anon_sym_asm] = ACTIONS(1269), - [anon_sym___asm__] = ACTIONS(1269), - [sym_number_literal] = ACTIONS(1271), - [anon_sym_L_SQUOTE] = ACTIONS(1271), - [anon_sym_u_SQUOTE] = ACTIONS(1271), - [anon_sym_U_SQUOTE] = ACTIONS(1271), - [anon_sym_u8_SQUOTE] = ACTIONS(1271), - [anon_sym_SQUOTE] = ACTIONS(1271), - [anon_sym_L_DQUOTE] = ACTIONS(1271), - [anon_sym_u_DQUOTE] = ACTIONS(1271), - [anon_sym_U_DQUOTE] = ACTIONS(1271), - [anon_sym_u8_DQUOTE] = ACTIONS(1271), - [anon_sym_DQUOTE] = ACTIONS(1271), - [sym_true] = ACTIONS(1269), - [sym_false] = ACTIONS(1269), - [anon_sym_NULL] = ACTIONS(1269), - [anon_sym_nullptr] = ACTIONS(1269), - [sym_comment] = ACTIONS(3), + [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_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), }, [117] = { - [sym_identifier] = ACTIONS(1273), - [aux_sym_preproc_include_token1] = ACTIONS(1273), - [aux_sym_preproc_def_token1] = ACTIONS(1273), - [aux_sym_preproc_if_token1] = ACTIONS(1273), - [aux_sym_preproc_if_token2] = ACTIONS(1273), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1273), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1273), - [aux_sym_preproc_else_token1] = ACTIONS(1273), - [aux_sym_preproc_elif_token1] = ACTIONS(1273), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1273), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1273), - [sym_preproc_directive] = ACTIONS(1273), - [anon_sym_LPAREN2] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(1275), - [anon_sym_TILDE] = ACTIONS(1275), - [anon_sym_DASH] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(1273), - [anon_sym_STAR] = ACTIONS(1275), - [anon_sym_AMP] = ACTIONS(1275), - [anon_sym_SEMI] = ACTIONS(1275), - [anon_sym___extension__] = ACTIONS(1273), - [anon_sym_typedef] = ACTIONS(1273), - [anon_sym_extern] = ACTIONS(1273), - [anon_sym___attribute__] = ACTIONS(1273), - [anon_sym___scanf] = ACTIONS(1273), - [anon_sym___printf] = ACTIONS(1273), - [anon_sym___read_mostly] = ACTIONS(1273), - [anon_sym___must_hold] = ACTIONS(1273), - [anon_sym___ro_after_init] = ACTIONS(1273), - [anon_sym___noreturn] = ACTIONS(1273), - [anon_sym___cold] = ACTIONS(1273), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1275), - [anon_sym___declspec] = ACTIONS(1273), - [anon_sym___init] = ACTIONS(1273), - [anon_sym___exit] = ACTIONS(1273), - [anon_sym___cdecl] = ACTIONS(1273), - [anon_sym___clrcall] = ACTIONS(1273), - [anon_sym___stdcall] = ACTIONS(1273), - [anon_sym___fastcall] = ACTIONS(1273), - [anon_sym___thiscall] = ACTIONS(1273), - [anon_sym___vectorcall] = ACTIONS(1273), - [anon_sym_LBRACE] = ACTIONS(1275), - [anon_sym_signed] = ACTIONS(1273), - [anon_sym_unsigned] = ACTIONS(1273), - [anon_sym_long] = ACTIONS(1273), - [anon_sym_short] = ACTIONS(1273), - [anon_sym_static] = ACTIONS(1273), - [anon_sym_auto] = ACTIONS(1273), - [anon_sym_register] = ACTIONS(1273), - [anon_sym_inline] = ACTIONS(1273), - [anon_sym___inline] = ACTIONS(1273), - [anon_sym___inline__] = ACTIONS(1273), - [anon_sym___forceinline] = ACTIONS(1273), - [anon_sym_thread_local] = ACTIONS(1273), - [anon_sym___thread] = ACTIONS(1273), - [anon_sym_const] = ACTIONS(1273), - [anon_sym_constexpr] = ACTIONS(1273), - [anon_sym_volatile] = ACTIONS(1273), - [anon_sym_restrict] = ACTIONS(1273), - [anon_sym___restrict__] = ACTIONS(1273), - [anon_sym__Atomic] = ACTIONS(1273), - [anon_sym__Noreturn] = ACTIONS(1273), - [anon_sym_noreturn] = ACTIONS(1273), - [anon_sym_alignas] = ACTIONS(1273), - [anon_sym__Alignas] = ACTIONS(1273), - [sym_primitive_type] = ACTIONS(1273), - [anon_sym_enum] = ACTIONS(1273), - [anon_sym_struct] = ACTIONS(1273), - [anon_sym_union] = ACTIONS(1273), - [anon_sym_if] = ACTIONS(1273), - [anon_sym_else] = ACTIONS(1273), - [anon_sym_switch] = ACTIONS(1273), - [anon_sym_case] = ACTIONS(1273), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_while] = ACTIONS(1273), - [anon_sym_do] = ACTIONS(1273), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_return] = ACTIONS(1273), - [anon_sym_break] = ACTIONS(1273), - [anon_sym_continue] = ACTIONS(1273), - [anon_sym_goto] = ACTIONS(1273), - [anon_sym___try] = ACTIONS(1273), - [anon_sym___leave] = ACTIONS(1273), - [anon_sym_DASH_DASH] = ACTIONS(1275), - [anon_sym_PLUS_PLUS] = ACTIONS(1275), - [anon_sym_sizeof] = ACTIONS(1273), - [anon_sym___alignof__] = ACTIONS(1273), - [anon_sym___alignof] = ACTIONS(1273), - [anon_sym__alignof] = ACTIONS(1273), - [anon_sym_alignof] = ACTIONS(1273), - [anon_sym__Alignof] = ACTIONS(1273), - [anon_sym_offsetof] = ACTIONS(1273), - [anon_sym__Generic] = ACTIONS(1273), - [anon_sym_asm] = ACTIONS(1273), - [anon_sym___asm__] = ACTIONS(1273), - [sym_number_literal] = ACTIONS(1275), - [anon_sym_L_SQUOTE] = ACTIONS(1275), - [anon_sym_u_SQUOTE] = ACTIONS(1275), - [anon_sym_U_SQUOTE] = ACTIONS(1275), - [anon_sym_u8_SQUOTE] = ACTIONS(1275), - [anon_sym_SQUOTE] = ACTIONS(1275), - [anon_sym_L_DQUOTE] = ACTIONS(1275), - [anon_sym_u_DQUOTE] = ACTIONS(1275), - [anon_sym_U_DQUOTE] = ACTIONS(1275), - [anon_sym_u8_DQUOTE] = ACTIONS(1275), - [anon_sym_DQUOTE] = ACTIONS(1275), - [sym_true] = ACTIONS(1273), - [sym_false] = ACTIONS(1273), - [anon_sym_NULL] = ACTIONS(1273), - [anon_sym_nullptr] = ACTIONS(1273), - [sym_comment] = ACTIONS(3), + [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), + [aux_sym_preproc_else_token1] = ACTIONS(1322), + [aux_sym_preproc_elif_token1] = ACTIONS(1322), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1322), + [aux_sym_preproc_elifdef_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), }, [118] = { - [sym_identifier] = ACTIONS(1277), - [aux_sym_preproc_include_token1] = ACTIONS(1277), - [aux_sym_preproc_def_token1] = ACTIONS(1277), - [aux_sym_preproc_if_token1] = ACTIONS(1277), - [aux_sym_preproc_if_token2] = ACTIONS(1277), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1277), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1277), - [aux_sym_preproc_else_token1] = ACTIONS(1277), - [aux_sym_preproc_elif_token1] = ACTIONS(1277), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1277), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1277), - [sym_preproc_directive] = ACTIONS(1277), - [anon_sym_LPAREN2] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_DASH] = ACTIONS(1277), - [anon_sym_PLUS] = ACTIONS(1277), - [anon_sym_STAR] = ACTIONS(1279), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_SEMI] = ACTIONS(1279), - [anon_sym___extension__] = ACTIONS(1277), - [anon_sym_typedef] = ACTIONS(1277), - [anon_sym_extern] = ACTIONS(1277), - [anon_sym___attribute__] = ACTIONS(1277), - [anon_sym___scanf] = ACTIONS(1277), - [anon_sym___printf] = ACTIONS(1277), - [anon_sym___read_mostly] = ACTIONS(1277), - [anon_sym___must_hold] = ACTIONS(1277), - [anon_sym___ro_after_init] = ACTIONS(1277), - [anon_sym___noreturn] = ACTIONS(1277), - [anon_sym___cold] = ACTIONS(1277), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1279), - [anon_sym___declspec] = ACTIONS(1277), - [anon_sym___init] = ACTIONS(1277), - [anon_sym___exit] = ACTIONS(1277), - [anon_sym___cdecl] = ACTIONS(1277), - [anon_sym___clrcall] = ACTIONS(1277), - [anon_sym___stdcall] = ACTIONS(1277), - [anon_sym___fastcall] = ACTIONS(1277), - [anon_sym___thiscall] = ACTIONS(1277), - [anon_sym___vectorcall] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(1279), - [anon_sym_signed] = ACTIONS(1277), - [anon_sym_unsigned] = ACTIONS(1277), - [anon_sym_long] = ACTIONS(1277), - [anon_sym_short] = ACTIONS(1277), - [anon_sym_static] = ACTIONS(1277), - [anon_sym_auto] = ACTIONS(1277), - [anon_sym_register] = ACTIONS(1277), - [anon_sym_inline] = ACTIONS(1277), - [anon_sym___inline] = ACTIONS(1277), - [anon_sym___inline__] = ACTIONS(1277), - [anon_sym___forceinline] = ACTIONS(1277), - [anon_sym_thread_local] = ACTIONS(1277), - [anon_sym___thread] = ACTIONS(1277), - [anon_sym_const] = ACTIONS(1277), - [anon_sym_constexpr] = ACTIONS(1277), - [anon_sym_volatile] = ACTIONS(1277), - [anon_sym_restrict] = ACTIONS(1277), - [anon_sym___restrict__] = ACTIONS(1277), - [anon_sym__Atomic] = ACTIONS(1277), - [anon_sym__Noreturn] = ACTIONS(1277), - [anon_sym_noreturn] = ACTIONS(1277), - [anon_sym_alignas] = ACTIONS(1277), - [anon_sym__Alignas] = ACTIONS(1277), - [sym_primitive_type] = ACTIONS(1277), - [anon_sym_enum] = ACTIONS(1277), - [anon_sym_struct] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1277), - [anon_sym_if] = ACTIONS(1277), - [anon_sym_else] = ACTIONS(1277), - [anon_sym_switch] = ACTIONS(1277), - [anon_sym_case] = ACTIONS(1277), - [anon_sym_default] = ACTIONS(1277), - [anon_sym_while] = ACTIONS(1277), - [anon_sym_do] = ACTIONS(1277), - [anon_sym_for] = ACTIONS(1277), - [anon_sym_return] = ACTIONS(1277), - [anon_sym_break] = ACTIONS(1277), - [anon_sym_continue] = ACTIONS(1277), - [anon_sym_goto] = ACTIONS(1277), - [anon_sym___try] = ACTIONS(1277), - [anon_sym___leave] = ACTIONS(1277), - [anon_sym_DASH_DASH] = ACTIONS(1279), - [anon_sym_PLUS_PLUS] = ACTIONS(1279), - [anon_sym_sizeof] = ACTIONS(1277), - [anon_sym___alignof__] = ACTIONS(1277), - [anon_sym___alignof] = ACTIONS(1277), - [anon_sym__alignof] = ACTIONS(1277), - [anon_sym_alignof] = ACTIONS(1277), - [anon_sym__Alignof] = ACTIONS(1277), - [anon_sym_offsetof] = ACTIONS(1277), - [anon_sym__Generic] = ACTIONS(1277), - [anon_sym_asm] = ACTIONS(1277), - [anon_sym___asm__] = ACTIONS(1277), - [sym_number_literal] = ACTIONS(1279), - [anon_sym_L_SQUOTE] = ACTIONS(1279), - [anon_sym_u_SQUOTE] = ACTIONS(1279), - [anon_sym_U_SQUOTE] = ACTIONS(1279), - [anon_sym_u8_SQUOTE] = ACTIONS(1279), - [anon_sym_SQUOTE] = ACTIONS(1279), - [anon_sym_L_DQUOTE] = ACTIONS(1279), - [anon_sym_u_DQUOTE] = ACTIONS(1279), - [anon_sym_U_DQUOTE] = ACTIONS(1279), - [anon_sym_u8_DQUOTE] = ACTIONS(1279), - [anon_sym_DQUOTE] = ACTIONS(1279), - [sym_true] = ACTIONS(1277), - [sym_false] = ACTIONS(1277), - [anon_sym_NULL] = ACTIONS(1277), - [anon_sym_nullptr] = ACTIONS(1277), - [sym_comment] = ACTIONS(3), + [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), + [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), }, [119] = { - [sym_identifier] = ACTIONS(1281), - [aux_sym_preproc_include_token1] = ACTIONS(1281), - [aux_sym_preproc_def_token1] = ACTIONS(1281), - [aux_sym_preproc_if_token1] = ACTIONS(1281), - [aux_sym_preproc_if_token2] = ACTIONS(1281), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1281), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1281), - [aux_sym_preproc_else_token1] = ACTIONS(1281), - [aux_sym_preproc_elif_token1] = ACTIONS(1281), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1281), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1281), - [sym_preproc_directive] = ACTIONS(1281), - [anon_sym_LPAREN2] = ACTIONS(1283), - [anon_sym_BANG] = ACTIONS(1283), - [anon_sym_TILDE] = ACTIONS(1283), - [anon_sym_DASH] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1281), - [anon_sym_STAR] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SEMI] = ACTIONS(1283), - [anon_sym___extension__] = ACTIONS(1281), - [anon_sym_typedef] = ACTIONS(1281), - [anon_sym_extern] = ACTIONS(1281), - [anon_sym___attribute__] = ACTIONS(1281), - [anon_sym___scanf] = ACTIONS(1281), - [anon_sym___printf] = ACTIONS(1281), - [anon_sym___read_mostly] = ACTIONS(1281), - [anon_sym___must_hold] = ACTIONS(1281), - [anon_sym___ro_after_init] = ACTIONS(1281), - [anon_sym___noreturn] = ACTIONS(1281), - [anon_sym___cold] = ACTIONS(1281), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1283), - [anon_sym___declspec] = ACTIONS(1281), - [anon_sym___init] = ACTIONS(1281), - [anon_sym___exit] = ACTIONS(1281), - [anon_sym___cdecl] = ACTIONS(1281), - [anon_sym___clrcall] = ACTIONS(1281), - [anon_sym___stdcall] = ACTIONS(1281), - [anon_sym___fastcall] = ACTIONS(1281), - [anon_sym___thiscall] = ACTIONS(1281), - [anon_sym___vectorcall] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(1283), - [anon_sym_signed] = ACTIONS(1281), - [anon_sym_unsigned] = ACTIONS(1281), - [anon_sym_long] = ACTIONS(1281), - [anon_sym_short] = ACTIONS(1281), - [anon_sym_static] = ACTIONS(1281), - [anon_sym_auto] = ACTIONS(1281), - [anon_sym_register] = ACTIONS(1281), - [anon_sym_inline] = ACTIONS(1281), - [anon_sym___inline] = ACTIONS(1281), - [anon_sym___inline__] = ACTIONS(1281), - [anon_sym___forceinline] = ACTIONS(1281), - [anon_sym_thread_local] = ACTIONS(1281), - [anon_sym___thread] = ACTIONS(1281), - [anon_sym_const] = ACTIONS(1281), - [anon_sym_constexpr] = ACTIONS(1281), - [anon_sym_volatile] = ACTIONS(1281), - [anon_sym_restrict] = ACTIONS(1281), - [anon_sym___restrict__] = ACTIONS(1281), - [anon_sym__Atomic] = ACTIONS(1281), - [anon_sym__Noreturn] = ACTIONS(1281), - [anon_sym_noreturn] = ACTIONS(1281), - [anon_sym_alignas] = ACTIONS(1281), - [anon_sym__Alignas] = ACTIONS(1281), - [sym_primitive_type] = ACTIONS(1281), - [anon_sym_enum] = ACTIONS(1281), - [anon_sym_struct] = ACTIONS(1281), - [anon_sym_union] = ACTIONS(1281), - [anon_sym_if] = ACTIONS(1281), - [anon_sym_else] = ACTIONS(1281), - [anon_sym_switch] = ACTIONS(1281), - [anon_sym_case] = ACTIONS(1281), - [anon_sym_default] = ACTIONS(1281), - [anon_sym_while] = ACTIONS(1281), - [anon_sym_do] = ACTIONS(1281), - [anon_sym_for] = ACTIONS(1281), - [anon_sym_return] = ACTIONS(1281), - [anon_sym_break] = ACTIONS(1281), - [anon_sym_continue] = ACTIONS(1281), - [anon_sym_goto] = ACTIONS(1281), - [anon_sym___try] = ACTIONS(1281), - [anon_sym___leave] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1283), - [anon_sym_PLUS_PLUS] = ACTIONS(1283), - [anon_sym_sizeof] = ACTIONS(1281), - [anon_sym___alignof__] = ACTIONS(1281), - [anon_sym___alignof] = ACTIONS(1281), - [anon_sym__alignof] = ACTIONS(1281), - [anon_sym_alignof] = ACTIONS(1281), - [anon_sym__Alignof] = ACTIONS(1281), - [anon_sym_offsetof] = ACTIONS(1281), - [anon_sym__Generic] = ACTIONS(1281), - [anon_sym_asm] = ACTIONS(1281), - [anon_sym___asm__] = ACTIONS(1281), - [sym_number_literal] = ACTIONS(1283), - [anon_sym_L_SQUOTE] = ACTIONS(1283), - [anon_sym_u_SQUOTE] = ACTIONS(1283), - [anon_sym_U_SQUOTE] = ACTIONS(1283), - [anon_sym_u8_SQUOTE] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1283), - [anon_sym_L_DQUOTE] = ACTIONS(1283), - [anon_sym_u_DQUOTE] = ACTIONS(1283), - [anon_sym_U_DQUOTE] = ACTIONS(1283), - [anon_sym_u8_DQUOTE] = ACTIONS(1283), - [anon_sym_DQUOTE] = ACTIONS(1283), - [sym_true] = ACTIONS(1281), - [sym_false] = ACTIONS(1281), - [anon_sym_NULL] = ACTIONS(1281), - [anon_sym_nullptr] = ACTIONS(1281), - [sym_comment] = ACTIONS(3), + [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), + [aux_sym_preproc_else_token1] = ACTIONS(1330), + [aux_sym_preproc_elif_token1] = ACTIONS(1330), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1330), + [aux_sym_preproc_elifdef_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), }, [120] = { - [sym_identifier] = ACTIONS(1285), - [aux_sym_preproc_include_token1] = ACTIONS(1285), - [aux_sym_preproc_def_token1] = ACTIONS(1285), - [aux_sym_preproc_if_token1] = ACTIONS(1285), - [aux_sym_preproc_if_token2] = ACTIONS(1285), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1285), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1285), - [aux_sym_preproc_else_token1] = ACTIONS(1285), - [aux_sym_preproc_elif_token1] = ACTIONS(1285), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1285), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1285), - [sym_preproc_directive] = ACTIONS(1285), - [anon_sym_LPAREN2] = ACTIONS(1287), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_TILDE] = ACTIONS(1287), - [anon_sym_DASH] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1287), - [anon_sym_AMP] = ACTIONS(1287), - [anon_sym_SEMI] = ACTIONS(1287), - [anon_sym___extension__] = ACTIONS(1285), - [anon_sym_typedef] = ACTIONS(1285), - [anon_sym_extern] = ACTIONS(1285), - [anon_sym___attribute__] = ACTIONS(1285), - [anon_sym___scanf] = ACTIONS(1285), - [anon_sym___printf] = ACTIONS(1285), - [anon_sym___read_mostly] = ACTIONS(1285), - [anon_sym___must_hold] = ACTIONS(1285), - [anon_sym___ro_after_init] = ACTIONS(1285), - [anon_sym___noreturn] = ACTIONS(1285), - [anon_sym___cold] = ACTIONS(1285), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1287), - [anon_sym___declspec] = ACTIONS(1285), - [anon_sym___init] = ACTIONS(1285), - [anon_sym___exit] = ACTIONS(1285), - [anon_sym___cdecl] = ACTIONS(1285), - [anon_sym___clrcall] = ACTIONS(1285), - [anon_sym___stdcall] = ACTIONS(1285), - [anon_sym___fastcall] = ACTIONS(1285), - [anon_sym___thiscall] = ACTIONS(1285), - [anon_sym___vectorcall] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1287), - [anon_sym_signed] = ACTIONS(1285), - [anon_sym_unsigned] = ACTIONS(1285), - [anon_sym_long] = ACTIONS(1285), - [anon_sym_short] = ACTIONS(1285), - [anon_sym_static] = ACTIONS(1285), - [anon_sym_auto] = ACTIONS(1285), - [anon_sym_register] = ACTIONS(1285), - [anon_sym_inline] = ACTIONS(1285), - [anon_sym___inline] = ACTIONS(1285), - [anon_sym___inline__] = ACTIONS(1285), - [anon_sym___forceinline] = ACTIONS(1285), - [anon_sym_thread_local] = ACTIONS(1285), - [anon_sym___thread] = ACTIONS(1285), - [anon_sym_const] = ACTIONS(1285), - [anon_sym_constexpr] = ACTIONS(1285), - [anon_sym_volatile] = ACTIONS(1285), - [anon_sym_restrict] = ACTIONS(1285), - [anon_sym___restrict__] = ACTIONS(1285), - [anon_sym__Atomic] = ACTIONS(1285), - [anon_sym__Noreturn] = ACTIONS(1285), - [anon_sym_noreturn] = ACTIONS(1285), - [anon_sym_alignas] = ACTIONS(1285), - [anon_sym__Alignas] = ACTIONS(1285), - [sym_primitive_type] = ACTIONS(1285), - [anon_sym_enum] = ACTIONS(1285), - [anon_sym_struct] = ACTIONS(1285), - [anon_sym_union] = ACTIONS(1285), - [anon_sym_if] = ACTIONS(1285), - [anon_sym_else] = ACTIONS(1285), - [anon_sym_switch] = ACTIONS(1285), - [anon_sym_case] = ACTIONS(1285), - [anon_sym_default] = ACTIONS(1285), - [anon_sym_while] = ACTIONS(1285), - [anon_sym_do] = ACTIONS(1285), - [anon_sym_for] = ACTIONS(1285), - [anon_sym_return] = ACTIONS(1285), - [anon_sym_break] = ACTIONS(1285), - [anon_sym_continue] = ACTIONS(1285), - [anon_sym_goto] = ACTIONS(1285), - [anon_sym___try] = ACTIONS(1285), - [anon_sym___leave] = ACTIONS(1285), - [anon_sym_DASH_DASH] = ACTIONS(1287), - [anon_sym_PLUS_PLUS] = ACTIONS(1287), - [anon_sym_sizeof] = ACTIONS(1285), - [anon_sym___alignof__] = ACTIONS(1285), - [anon_sym___alignof] = ACTIONS(1285), - [anon_sym__alignof] = ACTIONS(1285), - [anon_sym_alignof] = ACTIONS(1285), - [anon_sym__Alignof] = ACTIONS(1285), - [anon_sym_offsetof] = ACTIONS(1285), - [anon_sym__Generic] = ACTIONS(1285), - [anon_sym_asm] = ACTIONS(1285), - [anon_sym___asm__] = ACTIONS(1285), - [sym_number_literal] = ACTIONS(1287), - [anon_sym_L_SQUOTE] = ACTIONS(1287), - [anon_sym_u_SQUOTE] = ACTIONS(1287), - [anon_sym_U_SQUOTE] = ACTIONS(1287), - [anon_sym_u8_SQUOTE] = ACTIONS(1287), - [anon_sym_SQUOTE] = ACTIONS(1287), - [anon_sym_L_DQUOTE] = ACTIONS(1287), - [anon_sym_u_DQUOTE] = ACTIONS(1287), - [anon_sym_U_DQUOTE] = ACTIONS(1287), - [anon_sym_u8_DQUOTE] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1287), - [sym_true] = ACTIONS(1285), - [sym_false] = ACTIONS(1285), - [anon_sym_NULL] = ACTIONS(1285), - [anon_sym_nullptr] = ACTIONS(1285), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1334), + [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), + [aux_sym_preproc_else_token1] = ACTIONS(1334), + [aux_sym_preproc_elif_token1] = ACTIONS(1334), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1334), + [aux_sym_preproc_elifdef_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), }, [121] = { - [sym_identifier] = ACTIONS(1203), - [aux_sym_preproc_include_token1] = ACTIONS(1203), - [aux_sym_preproc_def_token1] = ACTIONS(1203), - [aux_sym_preproc_if_token1] = ACTIONS(1203), - [aux_sym_preproc_if_token2] = ACTIONS(1203), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1203), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1203), - [aux_sym_preproc_else_token1] = ACTIONS(1203), - [aux_sym_preproc_elif_token1] = ACTIONS(1203), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1203), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1203), - [sym_preproc_directive] = ACTIONS(1203), - [anon_sym_LPAREN2] = ACTIONS(1201), - [anon_sym_BANG] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1201), - [anon_sym_DASH] = ACTIONS(1203), - [anon_sym_PLUS] = ACTIONS(1203), - [anon_sym_STAR] = ACTIONS(1201), - [anon_sym_AMP] = ACTIONS(1201), - [anon_sym_SEMI] = ACTIONS(1201), - [anon_sym___extension__] = ACTIONS(1203), - [anon_sym_typedef] = ACTIONS(1203), - [anon_sym_extern] = ACTIONS(1203), - [anon_sym___attribute__] = ACTIONS(1203), - [anon_sym___scanf] = ACTIONS(1203), - [anon_sym___printf] = ACTIONS(1203), - [anon_sym___read_mostly] = ACTIONS(1203), - [anon_sym___must_hold] = ACTIONS(1203), - [anon_sym___ro_after_init] = ACTIONS(1203), - [anon_sym___noreturn] = ACTIONS(1203), - [anon_sym___cold] = ACTIONS(1203), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1201), - [anon_sym___declspec] = ACTIONS(1203), - [anon_sym___init] = ACTIONS(1203), - [anon_sym___exit] = ACTIONS(1203), - [anon_sym___cdecl] = ACTIONS(1203), - [anon_sym___clrcall] = ACTIONS(1203), - [anon_sym___stdcall] = ACTIONS(1203), - [anon_sym___fastcall] = ACTIONS(1203), - [anon_sym___thiscall] = ACTIONS(1203), - [anon_sym___vectorcall] = ACTIONS(1203), - [anon_sym_LBRACE] = ACTIONS(1201), - [anon_sym_signed] = ACTIONS(1203), - [anon_sym_unsigned] = ACTIONS(1203), - [anon_sym_long] = ACTIONS(1203), - [anon_sym_short] = ACTIONS(1203), - [anon_sym_static] = ACTIONS(1203), - [anon_sym_auto] = ACTIONS(1203), - [anon_sym_register] = ACTIONS(1203), - [anon_sym_inline] = ACTIONS(1203), - [anon_sym___inline] = ACTIONS(1203), - [anon_sym___inline__] = ACTIONS(1203), - [anon_sym___forceinline] = ACTIONS(1203), - [anon_sym_thread_local] = ACTIONS(1203), - [anon_sym___thread] = ACTIONS(1203), - [anon_sym_const] = ACTIONS(1203), - [anon_sym_constexpr] = ACTIONS(1203), - [anon_sym_volatile] = ACTIONS(1203), - [anon_sym_restrict] = ACTIONS(1203), - [anon_sym___restrict__] = ACTIONS(1203), - [anon_sym__Atomic] = ACTIONS(1203), - [anon_sym__Noreturn] = ACTIONS(1203), - [anon_sym_noreturn] = ACTIONS(1203), - [anon_sym_alignas] = ACTIONS(1203), - [anon_sym__Alignas] = ACTIONS(1203), - [sym_primitive_type] = ACTIONS(1203), - [anon_sym_enum] = ACTIONS(1203), - [anon_sym_struct] = ACTIONS(1203), - [anon_sym_union] = ACTIONS(1203), - [anon_sym_if] = ACTIONS(1203), - [anon_sym_else] = ACTIONS(1203), - [anon_sym_switch] = ACTIONS(1203), - [anon_sym_case] = ACTIONS(1203), - [anon_sym_default] = ACTIONS(1203), - [anon_sym_while] = ACTIONS(1203), - [anon_sym_do] = ACTIONS(1203), - [anon_sym_for] = ACTIONS(1203), - [anon_sym_return] = ACTIONS(1203), - [anon_sym_break] = ACTIONS(1203), - [anon_sym_continue] = ACTIONS(1203), - [anon_sym_goto] = ACTIONS(1203), - [anon_sym___try] = ACTIONS(1203), - [anon_sym___leave] = ACTIONS(1203), - [anon_sym_DASH_DASH] = ACTIONS(1201), - [anon_sym_PLUS_PLUS] = ACTIONS(1201), - [anon_sym_sizeof] = ACTIONS(1203), - [anon_sym___alignof__] = ACTIONS(1203), - [anon_sym___alignof] = ACTIONS(1203), - [anon_sym__alignof] = ACTIONS(1203), - [anon_sym_alignof] = ACTIONS(1203), - [anon_sym__Alignof] = ACTIONS(1203), - [anon_sym_offsetof] = ACTIONS(1203), - [anon_sym__Generic] = ACTIONS(1203), - [anon_sym_asm] = ACTIONS(1203), - [anon_sym___asm__] = ACTIONS(1203), - [sym_number_literal] = ACTIONS(1201), - [anon_sym_L_SQUOTE] = ACTIONS(1201), - [anon_sym_u_SQUOTE] = ACTIONS(1201), - [anon_sym_U_SQUOTE] = ACTIONS(1201), - [anon_sym_u8_SQUOTE] = ACTIONS(1201), - [anon_sym_SQUOTE] = ACTIONS(1201), - [anon_sym_L_DQUOTE] = ACTIONS(1201), - [anon_sym_u_DQUOTE] = ACTIONS(1201), - [anon_sym_U_DQUOTE] = ACTIONS(1201), - [anon_sym_u8_DQUOTE] = ACTIONS(1201), - [anon_sym_DQUOTE] = ACTIONS(1201), - [sym_true] = ACTIONS(1203), - [sym_false] = ACTIONS(1203), - [anon_sym_NULL] = ACTIONS(1203), - [anon_sym_nullptr] = ACTIONS(1203), - [sym_comment] = ACTIONS(3), + [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_if_token2] = ACTIONS(1338), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1338), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1338), + [aux_sym_preproc_else_token1] = ACTIONS(1338), + [aux_sym_preproc_elif_token1] = ACTIONS(1338), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1338), + [aux_sym_preproc_elifdef_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), }, [122] = { - [sym_identifier] = ACTIONS(1289), - [aux_sym_preproc_include_token1] = ACTIONS(1289), - [aux_sym_preproc_def_token1] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1289), - [aux_sym_preproc_if_token2] = ACTIONS(1289), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1289), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1289), - [aux_sym_preproc_else_token1] = ACTIONS(1289), - [aux_sym_preproc_elif_token1] = ACTIONS(1289), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1289), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1289), - [sym_preproc_directive] = ACTIONS(1289), - [anon_sym_LPAREN2] = ACTIONS(1291), - [anon_sym_BANG] = ACTIONS(1291), - [anon_sym_TILDE] = ACTIONS(1291), - [anon_sym_DASH] = ACTIONS(1289), - [anon_sym_PLUS] = ACTIONS(1289), - [anon_sym_STAR] = ACTIONS(1291), - [anon_sym_AMP] = ACTIONS(1291), - [anon_sym_SEMI] = ACTIONS(1291), - [anon_sym___extension__] = ACTIONS(1289), - [anon_sym_typedef] = ACTIONS(1289), - [anon_sym_extern] = ACTIONS(1289), - [anon_sym___attribute__] = ACTIONS(1289), - [anon_sym___scanf] = ACTIONS(1289), - [anon_sym___printf] = ACTIONS(1289), - [anon_sym___read_mostly] = ACTIONS(1289), - [anon_sym___must_hold] = ACTIONS(1289), - [anon_sym___ro_after_init] = ACTIONS(1289), - [anon_sym___noreturn] = ACTIONS(1289), - [anon_sym___cold] = ACTIONS(1289), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1291), - [anon_sym___declspec] = ACTIONS(1289), - [anon_sym___init] = ACTIONS(1289), - [anon_sym___exit] = ACTIONS(1289), - [anon_sym___cdecl] = ACTIONS(1289), - [anon_sym___clrcall] = ACTIONS(1289), - [anon_sym___stdcall] = ACTIONS(1289), - [anon_sym___fastcall] = ACTIONS(1289), - [anon_sym___thiscall] = ACTIONS(1289), - [anon_sym___vectorcall] = ACTIONS(1289), - [anon_sym_LBRACE] = ACTIONS(1291), - [anon_sym_signed] = ACTIONS(1289), - [anon_sym_unsigned] = ACTIONS(1289), - [anon_sym_long] = ACTIONS(1289), - [anon_sym_short] = ACTIONS(1289), - [anon_sym_static] = ACTIONS(1289), - [anon_sym_auto] = ACTIONS(1289), - [anon_sym_register] = ACTIONS(1289), - [anon_sym_inline] = ACTIONS(1289), - [anon_sym___inline] = ACTIONS(1289), - [anon_sym___inline__] = ACTIONS(1289), - [anon_sym___forceinline] = ACTIONS(1289), - [anon_sym_thread_local] = ACTIONS(1289), - [anon_sym___thread] = ACTIONS(1289), - [anon_sym_const] = ACTIONS(1289), - [anon_sym_constexpr] = ACTIONS(1289), - [anon_sym_volatile] = ACTIONS(1289), - [anon_sym_restrict] = ACTIONS(1289), - [anon_sym___restrict__] = ACTIONS(1289), - [anon_sym__Atomic] = ACTIONS(1289), - [anon_sym__Noreturn] = ACTIONS(1289), - [anon_sym_noreturn] = ACTIONS(1289), - [anon_sym_alignas] = ACTIONS(1289), - [anon_sym__Alignas] = ACTIONS(1289), - [sym_primitive_type] = ACTIONS(1289), - [anon_sym_enum] = ACTIONS(1289), - [anon_sym_struct] = ACTIONS(1289), - [anon_sym_union] = ACTIONS(1289), - [anon_sym_if] = ACTIONS(1289), - [anon_sym_switch] = ACTIONS(1289), - [anon_sym_case] = ACTIONS(1289), - [anon_sym_default] = ACTIONS(1289), - [anon_sym_while] = ACTIONS(1289), - [anon_sym_do] = ACTIONS(1289), - [anon_sym_for] = ACTIONS(1289), - [anon_sym_return] = ACTIONS(1289), - [anon_sym_break] = ACTIONS(1289), - [anon_sym_continue] = ACTIONS(1289), - [anon_sym_goto] = ACTIONS(1289), - [anon_sym___try] = ACTIONS(1289), - [anon_sym___leave] = ACTIONS(1289), - [anon_sym_DASH_DASH] = ACTIONS(1291), - [anon_sym_PLUS_PLUS] = ACTIONS(1291), - [anon_sym_sizeof] = ACTIONS(1289), - [anon_sym___alignof__] = ACTIONS(1289), - [anon_sym___alignof] = ACTIONS(1289), - [anon_sym__alignof] = ACTIONS(1289), - [anon_sym_alignof] = ACTIONS(1289), - [anon_sym__Alignof] = ACTIONS(1289), - [anon_sym_offsetof] = ACTIONS(1289), - [anon_sym__Generic] = ACTIONS(1289), - [anon_sym_asm] = ACTIONS(1289), - [anon_sym___asm__] = ACTIONS(1289), - [sym_number_literal] = ACTIONS(1291), - [anon_sym_L_SQUOTE] = ACTIONS(1291), - [anon_sym_u_SQUOTE] = ACTIONS(1291), - [anon_sym_U_SQUOTE] = ACTIONS(1291), - [anon_sym_u8_SQUOTE] = ACTIONS(1291), - [anon_sym_SQUOTE] = ACTIONS(1291), - [anon_sym_L_DQUOTE] = ACTIONS(1291), - [anon_sym_u_DQUOTE] = ACTIONS(1291), - [anon_sym_U_DQUOTE] = ACTIONS(1291), - [anon_sym_u8_DQUOTE] = ACTIONS(1291), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_true] = ACTIONS(1289), - [sym_false] = ACTIONS(1289), - [anon_sym_NULL] = ACTIONS(1289), - [anon_sym_nullptr] = ACTIONS(1289), - [sym_comment] = ACTIONS(3), + [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_if_token2] = ACTIONS(1342), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1342), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1342), + [aux_sym_preproc_else_token1] = ACTIONS(1342), + [aux_sym_preproc_elif_token1] = ACTIONS(1342), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1342), + [aux_sym_preproc_elifdef_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), }, [123] = { - [sym_identifier] = ACTIONS(1293), - [aux_sym_preproc_include_token1] = ACTIONS(1293), - [aux_sym_preproc_def_token1] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1293), - [aux_sym_preproc_if_token2] = ACTIONS(1293), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1293), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1293), - [aux_sym_preproc_else_token1] = ACTIONS(1293), - [aux_sym_preproc_elif_token1] = ACTIONS(1293), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1293), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1293), - [sym_preproc_directive] = ACTIONS(1293), - [anon_sym_LPAREN2] = ACTIONS(1295), - [anon_sym_BANG] = ACTIONS(1295), - [anon_sym_TILDE] = ACTIONS(1295), - [anon_sym_DASH] = ACTIONS(1293), - [anon_sym_PLUS] = ACTIONS(1293), - [anon_sym_STAR] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(1295), - [anon_sym_SEMI] = ACTIONS(1295), - [anon_sym___extension__] = ACTIONS(1293), - [anon_sym_typedef] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1293), - [anon_sym___attribute__] = ACTIONS(1293), - [anon_sym___scanf] = ACTIONS(1293), - [anon_sym___printf] = ACTIONS(1293), - [anon_sym___read_mostly] = ACTIONS(1293), - [anon_sym___must_hold] = ACTIONS(1293), - [anon_sym___ro_after_init] = ACTIONS(1293), - [anon_sym___noreturn] = ACTIONS(1293), - [anon_sym___cold] = ACTIONS(1293), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1295), - [anon_sym___declspec] = ACTIONS(1293), - [anon_sym___init] = ACTIONS(1293), - [anon_sym___exit] = ACTIONS(1293), - [anon_sym___cdecl] = ACTIONS(1293), - [anon_sym___clrcall] = ACTIONS(1293), - [anon_sym___stdcall] = ACTIONS(1293), - [anon_sym___fastcall] = ACTIONS(1293), - [anon_sym___thiscall] = ACTIONS(1293), - [anon_sym___vectorcall] = ACTIONS(1293), - [anon_sym_LBRACE] = ACTIONS(1295), - [anon_sym_signed] = ACTIONS(1293), - [anon_sym_unsigned] = ACTIONS(1293), - [anon_sym_long] = ACTIONS(1293), - [anon_sym_short] = ACTIONS(1293), - [anon_sym_static] = ACTIONS(1293), - [anon_sym_auto] = ACTIONS(1293), - [anon_sym_register] = ACTIONS(1293), - [anon_sym_inline] = ACTIONS(1293), - [anon_sym___inline] = ACTIONS(1293), - [anon_sym___inline__] = ACTIONS(1293), - [anon_sym___forceinline] = ACTIONS(1293), - [anon_sym_thread_local] = ACTIONS(1293), - [anon_sym___thread] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), - [anon_sym_constexpr] = ACTIONS(1293), - [anon_sym_volatile] = ACTIONS(1293), - [anon_sym_restrict] = ACTIONS(1293), - [anon_sym___restrict__] = ACTIONS(1293), - [anon_sym__Atomic] = ACTIONS(1293), - [anon_sym__Noreturn] = ACTIONS(1293), - [anon_sym_noreturn] = ACTIONS(1293), - [anon_sym_alignas] = ACTIONS(1293), - [anon_sym__Alignas] = ACTIONS(1293), - [sym_primitive_type] = ACTIONS(1293), - [anon_sym_enum] = ACTIONS(1293), - [anon_sym_struct] = ACTIONS(1293), - [anon_sym_union] = ACTIONS(1293), - [anon_sym_if] = ACTIONS(1293), - [anon_sym_switch] = ACTIONS(1293), - [anon_sym_case] = ACTIONS(1293), - [anon_sym_default] = ACTIONS(1293), - [anon_sym_while] = ACTIONS(1293), - [anon_sym_do] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1293), - [anon_sym_return] = ACTIONS(1293), - [anon_sym_break] = ACTIONS(1293), - [anon_sym_continue] = ACTIONS(1293), - [anon_sym_goto] = ACTIONS(1293), - [anon_sym___try] = ACTIONS(1293), - [anon_sym___leave] = ACTIONS(1293), - [anon_sym_DASH_DASH] = ACTIONS(1295), - [anon_sym_PLUS_PLUS] = ACTIONS(1295), - [anon_sym_sizeof] = ACTIONS(1293), - [anon_sym___alignof__] = ACTIONS(1293), - [anon_sym___alignof] = ACTIONS(1293), - [anon_sym__alignof] = ACTIONS(1293), - [anon_sym_alignof] = ACTIONS(1293), - [anon_sym__Alignof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1293), - [anon_sym__Generic] = ACTIONS(1293), - [anon_sym_asm] = ACTIONS(1293), - [anon_sym___asm__] = ACTIONS(1293), - [sym_number_literal] = ACTIONS(1295), - [anon_sym_L_SQUOTE] = ACTIONS(1295), - [anon_sym_u_SQUOTE] = ACTIONS(1295), - [anon_sym_U_SQUOTE] = ACTIONS(1295), - [anon_sym_u8_SQUOTE] = ACTIONS(1295), - [anon_sym_SQUOTE] = ACTIONS(1295), - [anon_sym_L_DQUOTE] = ACTIONS(1295), - [anon_sym_u_DQUOTE] = ACTIONS(1295), - [anon_sym_U_DQUOTE] = ACTIONS(1295), - [anon_sym_u8_DQUOTE] = ACTIONS(1295), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_true] = ACTIONS(1293), - [sym_false] = ACTIONS(1293), - [anon_sym_NULL] = ACTIONS(1293), - [anon_sym_nullptr] = ACTIONS(1293), - [sym_comment] = ACTIONS(3), + [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_if_token2] = ACTIONS(1346), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1346), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1346), + [aux_sym_preproc_else_token1] = ACTIONS(1346), + [aux_sym_preproc_elif_token1] = ACTIONS(1346), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1346), + [aux_sym_preproc_elifdef_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), }, [124] = { - [sym_identifier] = ACTIONS(1297), - [aux_sym_preproc_include_token1] = ACTIONS(1297), - [aux_sym_preproc_def_token1] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1297), - [aux_sym_preproc_if_token2] = ACTIONS(1297), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1297), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1297), - [aux_sym_preproc_else_token1] = ACTIONS(1297), - [aux_sym_preproc_elif_token1] = ACTIONS(1297), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1297), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1297), - [sym_preproc_directive] = ACTIONS(1297), - [anon_sym_LPAREN2] = ACTIONS(1299), - [anon_sym_BANG] = ACTIONS(1299), - [anon_sym_TILDE] = ACTIONS(1299), - [anon_sym_DASH] = ACTIONS(1297), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_STAR] = ACTIONS(1299), - [anon_sym_AMP] = ACTIONS(1299), - [anon_sym_SEMI] = ACTIONS(1299), - [anon_sym___extension__] = ACTIONS(1297), - [anon_sym_typedef] = ACTIONS(1297), - [anon_sym_extern] = ACTIONS(1297), - [anon_sym___attribute__] = ACTIONS(1297), - [anon_sym___scanf] = ACTIONS(1297), - [anon_sym___printf] = ACTIONS(1297), - [anon_sym___read_mostly] = ACTIONS(1297), - [anon_sym___must_hold] = ACTIONS(1297), - [anon_sym___ro_after_init] = ACTIONS(1297), - [anon_sym___noreturn] = ACTIONS(1297), - [anon_sym___cold] = ACTIONS(1297), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1299), - [anon_sym___declspec] = ACTIONS(1297), - [anon_sym___init] = ACTIONS(1297), - [anon_sym___exit] = ACTIONS(1297), - [anon_sym___cdecl] = ACTIONS(1297), - [anon_sym___clrcall] = ACTIONS(1297), - [anon_sym___stdcall] = ACTIONS(1297), - [anon_sym___fastcall] = ACTIONS(1297), - [anon_sym___thiscall] = ACTIONS(1297), - [anon_sym___vectorcall] = ACTIONS(1297), - [anon_sym_LBRACE] = ACTIONS(1299), - [anon_sym_signed] = ACTIONS(1297), - [anon_sym_unsigned] = ACTIONS(1297), - [anon_sym_long] = ACTIONS(1297), - [anon_sym_short] = ACTIONS(1297), - [anon_sym_static] = ACTIONS(1297), - [anon_sym_auto] = ACTIONS(1297), - [anon_sym_register] = ACTIONS(1297), - [anon_sym_inline] = ACTIONS(1297), - [anon_sym___inline] = ACTIONS(1297), - [anon_sym___inline__] = ACTIONS(1297), - [anon_sym___forceinline] = ACTIONS(1297), - [anon_sym_thread_local] = ACTIONS(1297), - [anon_sym___thread] = ACTIONS(1297), - [anon_sym_const] = ACTIONS(1297), - [anon_sym_constexpr] = ACTIONS(1297), - [anon_sym_volatile] = ACTIONS(1297), - [anon_sym_restrict] = ACTIONS(1297), - [anon_sym___restrict__] = ACTIONS(1297), - [anon_sym__Atomic] = ACTIONS(1297), - [anon_sym__Noreturn] = ACTIONS(1297), - [anon_sym_noreturn] = ACTIONS(1297), - [anon_sym_alignas] = ACTIONS(1297), - [anon_sym__Alignas] = ACTIONS(1297), - [sym_primitive_type] = ACTIONS(1297), - [anon_sym_enum] = ACTIONS(1297), - [anon_sym_struct] = ACTIONS(1297), - [anon_sym_union] = ACTIONS(1297), - [anon_sym_if] = ACTIONS(1297), - [anon_sym_switch] = ACTIONS(1297), - [anon_sym_case] = ACTIONS(1297), - [anon_sym_default] = ACTIONS(1297), - [anon_sym_while] = ACTIONS(1297), - [anon_sym_do] = ACTIONS(1297), - [anon_sym_for] = ACTIONS(1297), - [anon_sym_return] = ACTIONS(1297), - [anon_sym_break] = ACTIONS(1297), - [anon_sym_continue] = ACTIONS(1297), - [anon_sym_goto] = ACTIONS(1297), - [anon_sym___try] = ACTIONS(1297), - [anon_sym___leave] = ACTIONS(1297), - [anon_sym_DASH_DASH] = ACTIONS(1299), - [anon_sym_PLUS_PLUS] = ACTIONS(1299), - [anon_sym_sizeof] = ACTIONS(1297), - [anon_sym___alignof__] = ACTIONS(1297), - [anon_sym___alignof] = ACTIONS(1297), - [anon_sym__alignof] = ACTIONS(1297), - [anon_sym_alignof] = ACTIONS(1297), - [anon_sym__Alignof] = ACTIONS(1297), - [anon_sym_offsetof] = ACTIONS(1297), - [anon_sym__Generic] = ACTIONS(1297), - [anon_sym_asm] = ACTIONS(1297), - [anon_sym___asm__] = ACTIONS(1297), - [sym_number_literal] = ACTIONS(1299), - [anon_sym_L_SQUOTE] = ACTIONS(1299), - [anon_sym_u_SQUOTE] = ACTIONS(1299), - [anon_sym_U_SQUOTE] = ACTIONS(1299), - [anon_sym_u8_SQUOTE] = ACTIONS(1299), - [anon_sym_SQUOTE] = ACTIONS(1299), - [anon_sym_L_DQUOTE] = ACTIONS(1299), - [anon_sym_u_DQUOTE] = ACTIONS(1299), - [anon_sym_U_DQUOTE] = ACTIONS(1299), - [anon_sym_u8_DQUOTE] = ACTIONS(1299), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_true] = ACTIONS(1297), - [sym_false] = ACTIONS(1297), - [anon_sym_NULL] = ACTIONS(1297), - [anon_sym_nullptr] = ACTIONS(1297), - [sym_comment] = ACTIONS(3), + [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), + [aux_sym_preproc_else_token1] = ACTIONS(1350), + [aux_sym_preproc_elif_token1] = ACTIONS(1350), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_elifdef_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), }, [125] = { - [sym_identifier] = ACTIONS(1301), - [aux_sym_preproc_include_token1] = ACTIONS(1301), - [aux_sym_preproc_def_token1] = ACTIONS(1301), - [aux_sym_preproc_if_token1] = ACTIONS(1301), - [aux_sym_preproc_if_token2] = ACTIONS(1301), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1301), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1301), - [aux_sym_preproc_else_token1] = ACTIONS(1301), - [aux_sym_preproc_elif_token1] = ACTIONS(1301), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1301), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1301), - [sym_preproc_directive] = ACTIONS(1301), - [anon_sym_LPAREN2] = ACTIONS(1303), - [anon_sym_BANG] = ACTIONS(1303), - [anon_sym_TILDE] = ACTIONS(1303), - [anon_sym_DASH] = ACTIONS(1301), - [anon_sym_PLUS] = ACTIONS(1301), - [anon_sym_STAR] = ACTIONS(1303), - [anon_sym_AMP] = ACTIONS(1303), - [anon_sym_SEMI] = ACTIONS(1303), - [anon_sym___extension__] = ACTIONS(1301), - [anon_sym_typedef] = ACTIONS(1301), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym___attribute__] = ACTIONS(1301), - [anon_sym___scanf] = ACTIONS(1301), - [anon_sym___printf] = ACTIONS(1301), - [anon_sym___read_mostly] = ACTIONS(1301), - [anon_sym___must_hold] = ACTIONS(1301), - [anon_sym___ro_after_init] = ACTIONS(1301), - [anon_sym___noreturn] = ACTIONS(1301), - [anon_sym___cold] = ACTIONS(1301), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1303), - [anon_sym___declspec] = ACTIONS(1301), - [anon_sym___init] = ACTIONS(1301), - [anon_sym___exit] = ACTIONS(1301), - [anon_sym___cdecl] = ACTIONS(1301), - [anon_sym___clrcall] = ACTIONS(1301), - [anon_sym___stdcall] = ACTIONS(1301), - [anon_sym___fastcall] = ACTIONS(1301), - [anon_sym___thiscall] = ACTIONS(1301), - [anon_sym___vectorcall] = ACTIONS(1301), - [anon_sym_LBRACE] = ACTIONS(1303), - [anon_sym_signed] = ACTIONS(1301), - [anon_sym_unsigned] = ACTIONS(1301), - [anon_sym_long] = ACTIONS(1301), - [anon_sym_short] = ACTIONS(1301), - [anon_sym_static] = ACTIONS(1301), - [anon_sym_auto] = ACTIONS(1301), - [anon_sym_register] = ACTIONS(1301), - [anon_sym_inline] = ACTIONS(1301), - [anon_sym___inline] = ACTIONS(1301), - [anon_sym___inline__] = ACTIONS(1301), - [anon_sym___forceinline] = ACTIONS(1301), - [anon_sym_thread_local] = ACTIONS(1301), - [anon_sym___thread] = ACTIONS(1301), - [anon_sym_const] = ACTIONS(1301), - [anon_sym_constexpr] = ACTIONS(1301), - [anon_sym_volatile] = ACTIONS(1301), - [anon_sym_restrict] = ACTIONS(1301), - [anon_sym___restrict__] = ACTIONS(1301), - [anon_sym__Atomic] = ACTIONS(1301), - [anon_sym__Noreturn] = ACTIONS(1301), - [anon_sym_noreturn] = ACTIONS(1301), - [anon_sym_alignas] = ACTIONS(1301), - [anon_sym__Alignas] = ACTIONS(1301), - [sym_primitive_type] = ACTIONS(1301), - [anon_sym_enum] = ACTIONS(1301), - [anon_sym_struct] = ACTIONS(1301), - [anon_sym_union] = ACTIONS(1301), - [anon_sym_if] = ACTIONS(1301), - [anon_sym_switch] = ACTIONS(1301), - [anon_sym_case] = ACTIONS(1301), - [anon_sym_default] = ACTIONS(1301), - [anon_sym_while] = ACTIONS(1301), - [anon_sym_do] = ACTIONS(1301), - [anon_sym_for] = ACTIONS(1301), - [anon_sym_return] = ACTIONS(1301), - [anon_sym_break] = ACTIONS(1301), - [anon_sym_continue] = ACTIONS(1301), - [anon_sym_goto] = ACTIONS(1301), - [anon_sym___try] = ACTIONS(1301), - [anon_sym___leave] = ACTIONS(1301), - [anon_sym_DASH_DASH] = ACTIONS(1303), - [anon_sym_PLUS_PLUS] = ACTIONS(1303), - [anon_sym_sizeof] = ACTIONS(1301), - [anon_sym___alignof__] = ACTIONS(1301), - [anon_sym___alignof] = ACTIONS(1301), - [anon_sym__alignof] = ACTIONS(1301), - [anon_sym_alignof] = ACTIONS(1301), - [anon_sym__Alignof] = ACTIONS(1301), - [anon_sym_offsetof] = ACTIONS(1301), - [anon_sym__Generic] = ACTIONS(1301), - [anon_sym_asm] = ACTIONS(1301), - [anon_sym___asm__] = ACTIONS(1301), - [sym_number_literal] = ACTIONS(1303), - [anon_sym_L_SQUOTE] = ACTIONS(1303), - [anon_sym_u_SQUOTE] = ACTIONS(1303), - [anon_sym_U_SQUOTE] = ACTIONS(1303), - [anon_sym_u8_SQUOTE] = ACTIONS(1303), - [anon_sym_SQUOTE] = ACTIONS(1303), - [anon_sym_L_DQUOTE] = ACTIONS(1303), - [anon_sym_u_DQUOTE] = ACTIONS(1303), - [anon_sym_U_DQUOTE] = ACTIONS(1303), - [anon_sym_u8_DQUOTE] = ACTIONS(1303), - [anon_sym_DQUOTE] = ACTIONS(1303), - [sym_true] = ACTIONS(1301), - [sym_false] = ACTIONS(1301), - [anon_sym_NULL] = ACTIONS(1301), - [anon_sym_nullptr] = ACTIONS(1301), - [sym_comment] = ACTIONS(3), + [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), }, [126] = { - [sym_identifier] = ACTIONS(1305), - [aux_sym_preproc_include_token1] = ACTIONS(1305), - [aux_sym_preproc_def_token1] = ACTIONS(1305), - [aux_sym_preproc_if_token1] = ACTIONS(1305), - [aux_sym_preproc_if_token2] = ACTIONS(1305), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1305), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1305), - [aux_sym_preproc_else_token1] = ACTIONS(1305), - [aux_sym_preproc_elif_token1] = ACTIONS(1305), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1305), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1305), - [sym_preproc_directive] = ACTIONS(1305), - [anon_sym_LPAREN2] = ACTIONS(1307), - [anon_sym_BANG] = ACTIONS(1307), - [anon_sym_TILDE] = ACTIONS(1307), - [anon_sym_DASH] = ACTIONS(1305), - [anon_sym_PLUS] = ACTIONS(1305), - [anon_sym_STAR] = ACTIONS(1307), - [anon_sym_AMP] = ACTIONS(1307), - [anon_sym_SEMI] = ACTIONS(1307), - [anon_sym___extension__] = ACTIONS(1305), - [anon_sym_typedef] = ACTIONS(1305), - [anon_sym_extern] = ACTIONS(1305), - [anon_sym___attribute__] = ACTIONS(1305), - [anon_sym___scanf] = ACTIONS(1305), - [anon_sym___printf] = ACTIONS(1305), - [anon_sym___read_mostly] = ACTIONS(1305), - [anon_sym___must_hold] = ACTIONS(1305), - [anon_sym___ro_after_init] = ACTIONS(1305), - [anon_sym___noreturn] = ACTIONS(1305), - [anon_sym___cold] = ACTIONS(1305), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1307), - [anon_sym___declspec] = ACTIONS(1305), - [anon_sym___init] = ACTIONS(1305), - [anon_sym___exit] = ACTIONS(1305), - [anon_sym___cdecl] = ACTIONS(1305), - [anon_sym___clrcall] = ACTIONS(1305), - [anon_sym___stdcall] = ACTIONS(1305), - [anon_sym___fastcall] = ACTIONS(1305), - [anon_sym___thiscall] = ACTIONS(1305), - [anon_sym___vectorcall] = ACTIONS(1305), - [anon_sym_LBRACE] = ACTIONS(1307), - [anon_sym_signed] = ACTIONS(1305), - [anon_sym_unsigned] = ACTIONS(1305), - [anon_sym_long] = ACTIONS(1305), - [anon_sym_short] = ACTIONS(1305), - [anon_sym_static] = ACTIONS(1305), - [anon_sym_auto] = ACTIONS(1305), - [anon_sym_register] = ACTIONS(1305), - [anon_sym_inline] = ACTIONS(1305), - [anon_sym___inline] = ACTIONS(1305), - [anon_sym___inline__] = ACTIONS(1305), - [anon_sym___forceinline] = ACTIONS(1305), - [anon_sym_thread_local] = ACTIONS(1305), - [anon_sym___thread] = ACTIONS(1305), - [anon_sym_const] = ACTIONS(1305), - [anon_sym_constexpr] = ACTIONS(1305), - [anon_sym_volatile] = ACTIONS(1305), - [anon_sym_restrict] = ACTIONS(1305), - [anon_sym___restrict__] = ACTIONS(1305), - [anon_sym__Atomic] = ACTIONS(1305), - [anon_sym__Noreturn] = ACTIONS(1305), - [anon_sym_noreturn] = ACTIONS(1305), - [anon_sym_alignas] = ACTIONS(1305), - [anon_sym__Alignas] = ACTIONS(1305), - [sym_primitive_type] = ACTIONS(1305), - [anon_sym_enum] = ACTIONS(1305), - [anon_sym_struct] = ACTIONS(1305), - [anon_sym_union] = ACTIONS(1305), - [anon_sym_if] = ACTIONS(1305), - [anon_sym_switch] = ACTIONS(1305), - [anon_sym_case] = ACTIONS(1305), - [anon_sym_default] = ACTIONS(1305), - [anon_sym_while] = ACTIONS(1305), - [anon_sym_do] = ACTIONS(1305), - [anon_sym_for] = ACTIONS(1305), - [anon_sym_return] = ACTIONS(1305), - [anon_sym_break] = ACTIONS(1305), - [anon_sym_continue] = ACTIONS(1305), - [anon_sym_goto] = ACTIONS(1305), - [anon_sym___try] = ACTIONS(1305), - [anon_sym___leave] = ACTIONS(1305), - [anon_sym_DASH_DASH] = ACTIONS(1307), - [anon_sym_PLUS_PLUS] = ACTIONS(1307), - [anon_sym_sizeof] = ACTIONS(1305), - [anon_sym___alignof__] = ACTIONS(1305), - [anon_sym___alignof] = ACTIONS(1305), - [anon_sym__alignof] = ACTIONS(1305), - [anon_sym_alignof] = ACTIONS(1305), - [anon_sym__Alignof] = ACTIONS(1305), - [anon_sym_offsetof] = ACTIONS(1305), - [anon_sym__Generic] = ACTIONS(1305), - [anon_sym_asm] = ACTIONS(1305), - [anon_sym___asm__] = ACTIONS(1305), - [sym_number_literal] = ACTIONS(1307), - [anon_sym_L_SQUOTE] = ACTIONS(1307), - [anon_sym_u_SQUOTE] = ACTIONS(1307), - [anon_sym_U_SQUOTE] = ACTIONS(1307), - [anon_sym_u8_SQUOTE] = ACTIONS(1307), - [anon_sym_SQUOTE] = ACTIONS(1307), - [anon_sym_L_DQUOTE] = ACTIONS(1307), - [anon_sym_u_DQUOTE] = ACTIONS(1307), - [anon_sym_U_DQUOTE] = ACTIONS(1307), - [anon_sym_u8_DQUOTE] = ACTIONS(1307), - [anon_sym_DQUOTE] = ACTIONS(1307), - [sym_true] = ACTIONS(1305), - [sym_false] = ACTIONS(1305), - [anon_sym_NULL] = ACTIONS(1305), - [anon_sym_nullptr] = ACTIONS(1305), - [sym_comment] = ACTIONS(3), + [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_if_token2] = ACTIONS(1358), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1358), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1358), + [aux_sym_preproc_else_token1] = ACTIONS(1358), + [aux_sym_preproc_elif_token1] = ACTIONS(1358), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1358), + [aux_sym_preproc_elifdef_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), }, [127] = { - [sym_identifier] = ACTIONS(1309), - [aux_sym_preproc_include_token1] = ACTIONS(1309), - [aux_sym_preproc_def_token1] = ACTIONS(1309), - [aux_sym_preproc_if_token1] = ACTIONS(1309), - [aux_sym_preproc_if_token2] = ACTIONS(1309), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1309), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1309), - [aux_sym_preproc_else_token1] = ACTIONS(1309), - [aux_sym_preproc_elif_token1] = ACTIONS(1309), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1309), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1309), - [sym_preproc_directive] = ACTIONS(1309), - [anon_sym_LPAREN2] = ACTIONS(1311), - [anon_sym_BANG] = ACTIONS(1311), - [anon_sym_TILDE] = ACTIONS(1311), - [anon_sym_DASH] = ACTIONS(1309), - [anon_sym_PLUS] = ACTIONS(1309), - [anon_sym_STAR] = ACTIONS(1311), - [anon_sym_AMP] = ACTIONS(1311), - [anon_sym_SEMI] = ACTIONS(1311), - [anon_sym___extension__] = ACTIONS(1309), - [anon_sym_typedef] = ACTIONS(1309), - [anon_sym_extern] = ACTIONS(1309), - [anon_sym___attribute__] = ACTIONS(1309), - [anon_sym___scanf] = ACTIONS(1309), - [anon_sym___printf] = ACTIONS(1309), - [anon_sym___read_mostly] = ACTIONS(1309), - [anon_sym___must_hold] = ACTIONS(1309), - [anon_sym___ro_after_init] = ACTIONS(1309), - [anon_sym___noreturn] = ACTIONS(1309), - [anon_sym___cold] = ACTIONS(1309), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1311), - [anon_sym___declspec] = ACTIONS(1309), - [anon_sym___init] = ACTIONS(1309), - [anon_sym___exit] = ACTIONS(1309), - [anon_sym___cdecl] = ACTIONS(1309), - [anon_sym___clrcall] = ACTIONS(1309), - [anon_sym___stdcall] = ACTIONS(1309), - [anon_sym___fastcall] = ACTIONS(1309), - [anon_sym___thiscall] = ACTIONS(1309), - [anon_sym___vectorcall] = ACTIONS(1309), - [anon_sym_LBRACE] = ACTIONS(1311), - [anon_sym_signed] = ACTIONS(1309), - [anon_sym_unsigned] = ACTIONS(1309), - [anon_sym_long] = ACTIONS(1309), - [anon_sym_short] = ACTIONS(1309), - [anon_sym_static] = ACTIONS(1309), - [anon_sym_auto] = ACTIONS(1309), - [anon_sym_register] = ACTIONS(1309), - [anon_sym_inline] = ACTIONS(1309), - [anon_sym___inline] = ACTIONS(1309), - [anon_sym___inline__] = ACTIONS(1309), - [anon_sym___forceinline] = ACTIONS(1309), - [anon_sym_thread_local] = ACTIONS(1309), - [anon_sym___thread] = ACTIONS(1309), - [anon_sym_const] = ACTIONS(1309), - [anon_sym_constexpr] = ACTIONS(1309), - [anon_sym_volatile] = ACTIONS(1309), - [anon_sym_restrict] = ACTIONS(1309), - [anon_sym___restrict__] = ACTIONS(1309), - [anon_sym__Atomic] = ACTIONS(1309), - [anon_sym__Noreturn] = ACTIONS(1309), - [anon_sym_noreturn] = ACTIONS(1309), - [anon_sym_alignas] = ACTIONS(1309), - [anon_sym__Alignas] = ACTIONS(1309), - [sym_primitive_type] = ACTIONS(1309), - [anon_sym_enum] = ACTIONS(1309), - [anon_sym_struct] = ACTIONS(1309), - [anon_sym_union] = ACTIONS(1309), - [anon_sym_if] = ACTIONS(1309), - [anon_sym_switch] = ACTIONS(1309), - [anon_sym_case] = ACTIONS(1309), - [anon_sym_default] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1309), - [anon_sym_do] = ACTIONS(1309), - [anon_sym_for] = ACTIONS(1309), - [anon_sym_return] = ACTIONS(1309), - [anon_sym_break] = ACTIONS(1309), - [anon_sym_continue] = ACTIONS(1309), - [anon_sym_goto] = ACTIONS(1309), - [anon_sym___try] = ACTIONS(1309), - [anon_sym___leave] = ACTIONS(1309), - [anon_sym_DASH_DASH] = ACTIONS(1311), - [anon_sym_PLUS_PLUS] = ACTIONS(1311), - [anon_sym_sizeof] = ACTIONS(1309), - [anon_sym___alignof__] = ACTIONS(1309), - [anon_sym___alignof] = ACTIONS(1309), - [anon_sym__alignof] = ACTIONS(1309), - [anon_sym_alignof] = ACTIONS(1309), - [anon_sym__Alignof] = ACTIONS(1309), - [anon_sym_offsetof] = ACTIONS(1309), - [anon_sym__Generic] = ACTIONS(1309), - [anon_sym_asm] = ACTIONS(1309), - [anon_sym___asm__] = ACTIONS(1309), - [sym_number_literal] = ACTIONS(1311), - [anon_sym_L_SQUOTE] = ACTIONS(1311), - [anon_sym_u_SQUOTE] = ACTIONS(1311), - [anon_sym_U_SQUOTE] = ACTIONS(1311), - [anon_sym_u8_SQUOTE] = ACTIONS(1311), - [anon_sym_SQUOTE] = ACTIONS(1311), - [anon_sym_L_DQUOTE] = ACTIONS(1311), - [anon_sym_u_DQUOTE] = ACTIONS(1311), - [anon_sym_U_DQUOTE] = ACTIONS(1311), - [anon_sym_u8_DQUOTE] = ACTIONS(1311), - [anon_sym_DQUOTE] = ACTIONS(1311), - [sym_true] = ACTIONS(1309), - [sym_false] = ACTIONS(1309), - [anon_sym_NULL] = ACTIONS(1309), - [anon_sym_nullptr] = ACTIONS(1309), - [sym_comment] = ACTIONS(3), + [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_if_token2] = ACTIONS(1362), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1362), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1362), + [aux_sym_preproc_else_token1] = ACTIONS(1362), + [aux_sym_preproc_elif_token1] = ACTIONS(1362), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1362), + [aux_sym_preproc_elifdef_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), }, [128] = { - [sym_identifier] = ACTIONS(1313), - [aux_sym_preproc_include_token1] = ACTIONS(1313), - [aux_sym_preproc_def_token1] = ACTIONS(1313), - [aux_sym_preproc_if_token1] = ACTIONS(1313), - [aux_sym_preproc_if_token2] = ACTIONS(1313), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1313), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1313), - [aux_sym_preproc_else_token1] = ACTIONS(1313), - [aux_sym_preproc_elif_token1] = ACTIONS(1313), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1313), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1313), - [sym_preproc_directive] = ACTIONS(1313), - [anon_sym_LPAREN2] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1315), - [anon_sym_TILDE] = ACTIONS(1315), - [anon_sym_DASH] = ACTIONS(1313), - [anon_sym_PLUS] = ACTIONS(1313), - [anon_sym_STAR] = ACTIONS(1315), - [anon_sym_AMP] = ACTIONS(1315), - [anon_sym_SEMI] = ACTIONS(1315), - [anon_sym___extension__] = ACTIONS(1313), - [anon_sym_typedef] = ACTIONS(1313), - [anon_sym_extern] = ACTIONS(1313), - [anon_sym___attribute__] = ACTIONS(1313), - [anon_sym___scanf] = ACTIONS(1313), - [anon_sym___printf] = ACTIONS(1313), - [anon_sym___read_mostly] = ACTIONS(1313), - [anon_sym___must_hold] = ACTIONS(1313), - [anon_sym___ro_after_init] = ACTIONS(1313), - [anon_sym___noreturn] = ACTIONS(1313), - [anon_sym___cold] = ACTIONS(1313), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1315), - [anon_sym___declspec] = ACTIONS(1313), - [anon_sym___init] = ACTIONS(1313), - [anon_sym___exit] = ACTIONS(1313), - [anon_sym___cdecl] = ACTIONS(1313), - [anon_sym___clrcall] = ACTIONS(1313), - [anon_sym___stdcall] = ACTIONS(1313), - [anon_sym___fastcall] = ACTIONS(1313), - [anon_sym___thiscall] = ACTIONS(1313), - [anon_sym___vectorcall] = ACTIONS(1313), - [anon_sym_LBRACE] = ACTIONS(1315), - [anon_sym_signed] = ACTIONS(1313), - [anon_sym_unsigned] = ACTIONS(1313), - [anon_sym_long] = ACTIONS(1313), - [anon_sym_short] = ACTIONS(1313), - [anon_sym_static] = ACTIONS(1313), - [anon_sym_auto] = ACTIONS(1313), - [anon_sym_register] = ACTIONS(1313), - [anon_sym_inline] = ACTIONS(1313), - [anon_sym___inline] = ACTIONS(1313), - [anon_sym___inline__] = ACTIONS(1313), - [anon_sym___forceinline] = ACTIONS(1313), - [anon_sym_thread_local] = ACTIONS(1313), - [anon_sym___thread] = ACTIONS(1313), - [anon_sym_const] = ACTIONS(1313), - [anon_sym_constexpr] = ACTIONS(1313), - [anon_sym_volatile] = ACTIONS(1313), - [anon_sym_restrict] = ACTIONS(1313), - [anon_sym___restrict__] = ACTIONS(1313), - [anon_sym__Atomic] = ACTIONS(1313), - [anon_sym__Noreturn] = ACTIONS(1313), - [anon_sym_noreturn] = ACTIONS(1313), - [anon_sym_alignas] = ACTIONS(1313), - [anon_sym__Alignas] = ACTIONS(1313), - [sym_primitive_type] = ACTIONS(1313), - [anon_sym_enum] = ACTIONS(1313), - [anon_sym_struct] = ACTIONS(1313), - [anon_sym_union] = ACTIONS(1313), - [anon_sym_if] = ACTIONS(1313), - [anon_sym_switch] = ACTIONS(1313), - [anon_sym_case] = ACTIONS(1313), - [anon_sym_default] = ACTIONS(1313), - [anon_sym_while] = ACTIONS(1313), - [anon_sym_do] = ACTIONS(1313), - [anon_sym_for] = ACTIONS(1313), - [anon_sym_return] = ACTIONS(1313), - [anon_sym_break] = ACTIONS(1313), - [anon_sym_continue] = ACTIONS(1313), - [anon_sym_goto] = ACTIONS(1313), - [anon_sym___try] = ACTIONS(1313), - [anon_sym___leave] = ACTIONS(1313), - [anon_sym_DASH_DASH] = ACTIONS(1315), - [anon_sym_PLUS_PLUS] = ACTIONS(1315), - [anon_sym_sizeof] = ACTIONS(1313), - [anon_sym___alignof__] = ACTIONS(1313), - [anon_sym___alignof] = ACTIONS(1313), - [anon_sym__alignof] = ACTIONS(1313), - [anon_sym_alignof] = ACTIONS(1313), - [anon_sym__Alignof] = ACTIONS(1313), - [anon_sym_offsetof] = ACTIONS(1313), - [anon_sym__Generic] = ACTIONS(1313), - [anon_sym_asm] = ACTIONS(1313), - [anon_sym___asm__] = ACTIONS(1313), - [sym_number_literal] = ACTIONS(1315), - [anon_sym_L_SQUOTE] = ACTIONS(1315), - [anon_sym_u_SQUOTE] = ACTIONS(1315), - [anon_sym_U_SQUOTE] = ACTIONS(1315), - [anon_sym_u8_SQUOTE] = ACTIONS(1315), - [anon_sym_SQUOTE] = ACTIONS(1315), - [anon_sym_L_DQUOTE] = ACTIONS(1315), - [anon_sym_u_DQUOTE] = ACTIONS(1315), - [anon_sym_U_DQUOTE] = ACTIONS(1315), - [anon_sym_u8_DQUOTE] = ACTIONS(1315), - [anon_sym_DQUOTE] = ACTIONS(1315), - [sym_true] = ACTIONS(1313), - [sym_false] = ACTIONS(1313), - [anon_sym_NULL] = ACTIONS(1313), - [anon_sym_nullptr] = ACTIONS(1313), - [sym_comment] = ACTIONS(3), + [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), }, [129] = { - [sym_identifier] = ACTIONS(1317), - [aux_sym_preproc_include_token1] = ACTIONS(1317), - [aux_sym_preproc_def_token1] = ACTIONS(1317), - [aux_sym_preproc_if_token1] = ACTIONS(1317), - [aux_sym_preproc_if_token2] = ACTIONS(1317), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1317), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1317), - [aux_sym_preproc_else_token1] = ACTIONS(1317), - [aux_sym_preproc_elif_token1] = ACTIONS(1317), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1317), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1317), - [sym_preproc_directive] = ACTIONS(1317), - [anon_sym_LPAREN2] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1319), - [anon_sym_TILDE] = ACTIONS(1319), - [anon_sym_DASH] = ACTIONS(1317), - [anon_sym_PLUS] = ACTIONS(1317), - [anon_sym_STAR] = ACTIONS(1319), - [anon_sym_AMP] = ACTIONS(1319), - [anon_sym_SEMI] = ACTIONS(1319), - [anon_sym___extension__] = ACTIONS(1317), - [anon_sym_typedef] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1317), - [anon_sym___attribute__] = ACTIONS(1317), - [anon_sym___scanf] = ACTIONS(1317), - [anon_sym___printf] = ACTIONS(1317), - [anon_sym___read_mostly] = ACTIONS(1317), - [anon_sym___must_hold] = ACTIONS(1317), - [anon_sym___ro_after_init] = ACTIONS(1317), - [anon_sym___noreturn] = ACTIONS(1317), - [anon_sym___cold] = ACTIONS(1317), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1319), - [anon_sym___declspec] = ACTIONS(1317), - [anon_sym___init] = ACTIONS(1317), - [anon_sym___exit] = ACTIONS(1317), - [anon_sym___cdecl] = ACTIONS(1317), - [anon_sym___clrcall] = ACTIONS(1317), - [anon_sym___stdcall] = ACTIONS(1317), - [anon_sym___fastcall] = ACTIONS(1317), - [anon_sym___thiscall] = ACTIONS(1317), - [anon_sym___vectorcall] = ACTIONS(1317), - [anon_sym_LBRACE] = ACTIONS(1319), - [anon_sym_signed] = ACTIONS(1317), - [anon_sym_unsigned] = ACTIONS(1317), - [anon_sym_long] = ACTIONS(1317), - [anon_sym_short] = ACTIONS(1317), - [anon_sym_static] = ACTIONS(1317), - [anon_sym_auto] = ACTIONS(1317), - [anon_sym_register] = ACTIONS(1317), - [anon_sym_inline] = ACTIONS(1317), - [anon_sym___inline] = ACTIONS(1317), - [anon_sym___inline__] = ACTIONS(1317), - [anon_sym___forceinline] = ACTIONS(1317), - [anon_sym_thread_local] = ACTIONS(1317), - [anon_sym___thread] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_constexpr] = ACTIONS(1317), - [anon_sym_volatile] = ACTIONS(1317), - [anon_sym_restrict] = ACTIONS(1317), - [anon_sym___restrict__] = ACTIONS(1317), - [anon_sym__Atomic] = ACTIONS(1317), - [anon_sym__Noreturn] = ACTIONS(1317), - [anon_sym_noreturn] = ACTIONS(1317), - [anon_sym_alignas] = ACTIONS(1317), - [anon_sym__Alignas] = ACTIONS(1317), - [sym_primitive_type] = ACTIONS(1317), - [anon_sym_enum] = ACTIONS(1317), - [anon_sym_struct] = ACTIONS(1317), - [anon_sym_union] = ACTIONS(1317), - [anon_sym_if] = ACTIONS(1317), - [anon_sym_switch] = ACTIONS(1317), - [anon_sym_case] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(1317), - [anon_sym_while] = ACTIONS(1317), - [anon_sym_do] = ACTIONS(1317), - [anon_sym_for] = ACTIONS(1317), - [anon_sym_return] = ACTIONS(1317), - [anon_sym_break] = ACTIONS(1317), - [anon_sym_continue] = ACTIONS(1317), - [anon_sym_goto] = ACTIONS(1317), - [anon_sym___try] = ACTIONS(1317), - [anon_sym___leave] = ACTIONS(1317), - [anon_sym_DASH_DASH] = ACTIONS(1319), - [anon_sym_PLUS_PLUS] = ACTIONS(1319), - [anon_sym_sizeof] = ACTIONS(1317), - [anon_sym___alignof__] = ACTIONS(1317), - [anon_sym___alignof] = ACTIONS(1317), - [anon_sym__alignof] = ACTIONS(1317), - [anon_sym_alignof] = ACTIONS(1317), - [anon_sym__Alignof] = ACTIONS(1317), - [anon_sym_offsetof] = ACTIONS(1317), - [anon_sym__Generic] = ACTIONS(1317), - [anon_sym_asm] = ACTIONS(1317), - [anon_sym___asm__] = ACTIONS(1317), - [sym_number_literal] = ACTIONS(1319), - [anon_sym_L_SQUOTE] = ACTIONS(1319), - [anon_sym_u_SQUOTE] = ACTIONS(1319), - [anon_sym_U_SQUOTE] = ACTIONS(1319), - [anon_sym_u8_SQUOTE] = ACTIONS(1319), - [anon_sym_SQUOTE] = ACTIONS(1319), - [anon_sym_L_DQUOTE] = ACTIONS(1319), - [anon_sym_u_DQUOTE] = ACTIONS(1319), - [anon_sym_U_DQUOTE] = ACTIONS(1319), - [anon_sym_u8_DQUOTE] = ACTIONS(1319), - [anon_sym_DQUOTE] = ACTIONS(1319), - [sym_true] = ACTIONS(1317), - [sym_false] = ACTIONS(1317), - [anon_sym_NULL] = ACTIONS(1317), - [anon_sym_nullptr] = ACTIONS(1317), - [sym_comment] = ACTIONS(3), + [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] = { - [sym_identifier] = ACTIONS(1321), - [aux_sym_preproc_include_token1] = ACTIONS(1321), - [aux_sym_preproc_def_token1] = ACTIONS(1321), - [aux_sym_preproc_if_token1] = ACTIONS(1321), - [aux_sym_preproc_if_token2] = ACTIONS(1321), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1321), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1321), - [aux_sym_preproc_else_token1] = ACTIONS(1321), - [aux_sym_preproc_elif_token1] = ACTIONS(1321), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1321), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1321), - [sym_preproc_directive] = ACTIONS(1321), - [anon_sym_LPAREN2] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1323), - [anon_sym_TILDE] = ACTIONS(1323), - [anon_sym_DASH] = ACTIONS(1321), - [anon_sym_PLUS] = ACTIONS(1321), - [anon_sym_STAR] = ACTIONS(1323), - [anon_sym_AMP] = ACTIONS(1323), - [anon_sym_SEMI] = ACTIONS(1323), - [anon_sym___extension__] = ACTIONS(1321), - [anon_sym_typedef] = ACTIONS(1321), - [anon_sym_extern] = ACTIONS(1321), - [anon_sym___attribute__] = ACTIONS(1321), - [anon_sym___scanf] = ACTIONS(1321), - [anon_sym___printf] = ACTIONS(1321), - [anon_sym___read_mostly] = ACTIONS(1321), - [anon_sym___must_hold] = ACTIONS(1321), - [anon_sym___ro_after_init] = ACTIONS(1321), - [anon_sym___noreturn] = ACTIONS(1321), - [anon_sym___cold] = ACTIONS(1321), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1323), - [anon_sym___declspec] = ACTIONS(1321), - [anon_sym___init] = ACTIONS(1321), - [anon_sym___exit] = ACTIONS(1321), - [anon_sym___cdecl] = ACTIONS(1321), - [anon_sym___clrcall] = ACTIONS(1321), - [anon_sym___stdcall] = ACTIONS(1321), - [anon_sym___fastcall] = ACTIONS(1321), - [anon_sym___thiscall] = ACTIONS(1321), - [anon_sym___vectorcall] = ACTIONS(1321), - [anon_sym_LBRACE] = ACTIONS(1323), - [anon_sym_signed] = ACTIONS(1321), - [anon_sym_unsigned] = ACTIONS(1321), - [anon_sym_long] = ACTIONS(1321), - [anon_sym_short] = ACTIONS(1321), - [anon_sym_static] = ACTIONS(1321), - [anon_sym_auto] = ACTIONS(1321), - [anon_sym_register] = ACTIONS(1321), - [anon_sym_inline] = ACTIONS(1321), - [anon_sym___inline] = ACTIONS(1321), - [anon_sym___inline__] = ACTIONS(1321), - [anon_sym___forceinline] = ACTIONS(1321), - [anon_sym_thread_local] = ACTIONS(1321), - [anon_sym___thread] = ACTIONS(1321), - [anon_sym_const] = ACTIONS(1321), - [anon_sym_constexpr] = ACTIONS(1321), - [anon_sym_volatile] = ACTIONS(1321), - [anon_sym_restrict] = ACTIONS(1321), - [anon_sym___restrict__] = ACTIONS(1321), - [anon_sym__Atomic] = ACTIONS(1321), - [anon_sym__Noreturn] = ACTIONS(1321), - [anon_sym_noreturn] = ACTIONS(1321), - [anon_sym_alignas] = ACTIONS(1321), - [anon_sym__Alignas] = ACTIONS(1321), - [sym_primitive_type] = ACTIONS(1321), - [anon_sym_enum] = ACTIONS(1321), - [anon_sym_struct] = ACTIONS(1321), - [anon_sym_union] = ACTIONS(1321), - [anon_sym_if] = ACTIONS(1321), - [anon_sym_switch] = ACTIONS(1321), - [anon_sym_case] = ACTIONS(1321), - [anon_sym_default] = ACTIONS(1321), - [anon_sym_while] = ACTIONS(1321), - [anon_sym_do] = ACTIONS(1321), - [anon_sym_for] = ACTIONS(1321), - [anon_sym_return] = ACTIONS(1321), - [anon_sym_break] = ACTIONS(1321), - [anon_sym_continue] = ACTIONS(1321), - [anon_sym_goto] = ACTIONS(1321), - [anon_sym___try] = ACTIONS(1321), - [anon_sym___leave] = ACTIONS(1321), - [anon_sym_DASH_DASH] = ACTIONS(1323), - [anon_sym_PLUS_PLUS] = ACTIONS(1323), - [anon_sym_sizeof] = ACTIONS(1321), - [anon_sym___alignof__] = ACTIONS(1321), - [anon_sym___alignof] = ACTIONS(1321), - [anon_sym__alignof] = ACTIONS(1321), - [anon_sym_alignof] = ACTIONS(1321), - [anon_sym__Alignof] = ACTIONS(1321), - [anon_sym_offsetof] = ACTIONS(1321), - [anon_sym__Generic] = ACTIONS(1321), - [anon_sym_asm] = ACTIONS(1321), - [anon_sym___asm__] = ACTIONS(1321), - [sym_number_literal] = ACTIONS(1323), - [anon_sym_L_SQUOTE] = ACTIONS(1323), - [anon_sym_u_SQUOTE] = ACTIONS(1323), - [anon_sym_U_SQUOTE] = ACTIONS(1323), - [anon_sym_u8_SQUOTE] = ACTIONS(1323), - [anon_sym_SQUOTE] = ACTIONS(1323), - [anon_sym_L_DQUOTE] = ACTIONS(1323), - [anon_sym_u_DQUOTE] = ACTIONS(1323), - [anon_sym_U_DQUOTE] = ACTIONS(1323), - [anon_sym_u8_DQUOTE] = ACTIONS(1323), - [anon_sym_DQUOTE] = ACTIONS(1323), - [sym_true] = ACTIONS(1321), - [sym_false] = ACTIONS(1321), - [anon_sym_NULL] = ACTIONS(1321), - [anon_sym_nullptr] = ACTIONS(1321), - [sym_comment] = ACTIONS(3), + [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), + [aux_sym_preproc_else_token1] = ACTIONS(1370), + [aux_sym_preproc_elif_token1] = ACTIONS(1370), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1370), + [aux_sym_preproc_elifdef_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), }, [131] = { - [sym_identifier] = ACTIONS(1325), - [aux_sym_preproc_include_token1] = ACTIONS(1325), - [aux_sym_preproc_def_token1] = ACTIONS(1325), - [aux_sym_preproc_if_token1] = ACTIONS(1325), - [aux_sym_preproc_if_token2] = ACTIONS(1325), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1325), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1325), - [aux_sym_preproc_else_token1] = ACTIONS(1325), - [aux_sym_preproc_elif_token1] = ACTIONS(1325), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1325), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1325), - [sym_preproc_directive] = ACTIONS(1325), - [anon_sym_LPAREN2] = ACTIONS(1327), - [anon_sym_BANG] = ACTIONS(1327), - [anon_sym_TILDE] = ACTIONS(1327), - [anon_sym_DASH] = ACTIONS(1325), - [anon_sym_PLUS] = ACTIONS(1325), - [anon_sym_STAR] = ACTIONS(1327), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_SEMI] = ACTIONS(1327), - [anon_sym___extension__] = ACTIONS(1325), - [anon_sym_typedef] = ACTIONS(1325), - [anon_sym_extern] = ACTIONS(1325), - [anon_sym___attribute__] = ACTIONS(1325), - [anon_sym___scanf] = ACTIONS(1325), - [anon_sym___printf] = ACTIONS(1325), - [anon_sym___read_mostly] = ACTIONS(1325), - [anon_sym___must_hold] = ACTIONS(1325), - [anon_sym___ro_after_init] = ACTIONS(1325), - [anon_sym___noreturn] = ACTIONS(1325), - [anon_sym___cold] = ACTIONS(1325), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1327), - [anon_sym___declspec] = ACTIONS(1325), - [anon_sym___init] = ACTIONS(1325), - [anon_sym___exit] = ACTIONS(1325), - [anon_sym___cdecl] = ACTIONS(1325), - [anon_sym___clrcall] = ACTIONS(1325), - [anon_sym___stdcall] = ACTIONS(1325), - [anon_sym___fastcall] = ACTIONS(1325), - [anon_sym___thiscall] = ACTIONS(1325), - [anon_sym___vectorcall] = ACTIONS(1325), - [anon_sym_LBRACE] = ACTIONS(1327), - [anon_sym_signed] = ACTIONS(1325), - [anon_sym_unsigned] = ACTIONS(1325), - [anon_sym_long] = ACTIONS(1325), - [anon_sym_short] = ACTIONS(1325), - [anon_sym_static] = ACTIONS(1325), - [anon_sym_auto] = ACTIONS(1325), - [anon_sym_register] = ACTIONS(1325), - [anon_sym_inline] = ACTIONS(1325), - [anon_sym___inline] = ACTIONS(1325), - [anon_sym___inline__] = ACTIONS(1325), - [anon_sym___forceinline] = ACTIONS(1325), - [anon_sym_thread_local] = ACTIONS(1325), - [anon_sym___thread] = ACTIONS(1325), - [anon_sym_const] = ACTIONS(1325), - [anon_sym_constexpr] = ACTIONS(1325), - [anon_sym_volatile] = ACTIONS(1325), - [anon_sym_restrict] = ACTIONS(1325), - [anon_sym___restrict__] = ACTIONS(1325), - [anon_sym__Atomic] = ACTIONS(1325), - [anon_sym__Noreturn] = ACTIONS(1325), - [anon_sym_noreturn] = ACTIONS(1325), - [anon_sym_alignas] = ACTIONS(1325), - [anon_sym__Alignas] = ACTIONS(1325), - [sym_primitive_type] = ACTIONS(1325), - [anon_sym_enum] = ACTIONS(1325), - [anon_sym_struct] = ACTIONS(1325), - [anon_sym_union] = ACTIONS(1325), - [anon_sym_if] = ACTIONS(1325), - [anon_sym_switch] = ACTIONS(1325), - [anon_sym_case] = ACTIONS(1325), - [anon_sym_default] = ACTIONS(1325), - [anon_sym_while] = ACTIONS(1325), - [anon_sym_do] = ACTIONS(1325), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_return] = ACTIONS(1325), - [anon_sym_break] = ACTIONS(1325), - [anon_sym_continue] = ACTIONS(1325), - [anon_sym_goto] = ACTIONS(1325), - [anon_sym___try] = ACTIONS(1325), - [anon_sym___leave] = ACTIONS(1325), - [anon_sym_DASH_DASH] = ACTIONS(1327), - [anon_sym_PLUS_PLUS] = ACTIONS(1327), - [anon_sym_sizeof] = ACTIONS(1325), - [anon_sym___alignof__] = ACTIONS(1325), - [anon_sym___alignof] = ACTIONS(1325), - [anon_sym__alignof] = ACTIONS(1325), - [anon_sym_alignof] = ACTIONS(1325), - [anon_sym__Alignof] = ACTIONS(1325), - [anon_sym_offsetof] = ACTIONS(1325), - [anon_sym__Generic] = ACTIONS(1325), - [anon_sym_asm] = ACTIONS(1325), - [anon_sym___asm__] = ACTIONS(1325), - [sym_number_literal] = ACTIONS(1327), - [anon_sym_L_SQUOTE] = ACTIONS(1327), - [anon_sym_u_SQUOTE] = ACTIONS(1327), - [anon_sym_U_SQUOTE] = ACTIONS(1327), - [anon_sym_u8_SQUOTE] = ACTIONS(1327), - [anon_sym_SQUOTE] = ACTIONS(1327), - [anon_sym_L_DQUOTE] = ACTIONS(1327), - [anon_sym_u_DQUOTE] = ACTIONS(1327), - [anon_sym_U_DQUOTE] = ACTIONS(1327), - [anon_sym_u8_DQUOTE] = ACTIONS(1327), - [anon_sym_DQUOTE] = ACTIONS(1327), - [sym_true] = ACTIONS(1325), - [sym_false] = ACTIONS(1325), - [anon_sym_NULL] = ACTIONS(1325), - [anon_sym_nullptr] = ACTIONS(1325), - [sym_comment] = ACTIONS(3), + [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_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), }, [132] = { - [sym_identifier] = ACTIONS(1329), - [aux_sym_preproc_include_token1] = ACTIONS(1329), - [aux_sym_preproc_def_token1] = ACTIONS(1329), - [aux_sym_preproc_if_token1] = ACTIONS(1329), - [aux_sym_preproc_if_token2] = ACTIONS(1329), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1329), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1329), - [aux_sym_preproc_else_token1] = ACTIONS(1329), - [aux_sym_preproc_elif_token1] = ACTIONS(1329), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1329), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1329), - [sym_preproc_directive] = ACTIONS(1329), - [anon_sym_LPAREN2] = ACTIONS(1331), - [anon_sym_BANG] = ACTIONS(1331), - [anon_sym_TILDE] = ACTIONS(1331), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_STAR] = ACTIONS(1331), - [anon_sym_AMP] = ACTIONS(1331), - [anon_sym_SEMI] = ACTIONS(1331), - [anon_sym___extension__] = ACTIONS(1329), - [anon_sym_typedef] = ACTIONS(1329), - [anon_sym_extern] = ACTIONS(1329), - [anon_sym___attribute__] = ACTIONS(1329), - [anon_sym___scanf] = ACTIONS(1329), - [anon_sym___printf] = ACTIONS(1329), - [anon_sym___read_mostly] = ACTIONS(1329), - [anon_sym___must_hold] = ACTIONS(1329), - [anon_sym___ro_after_init] = ACTIONS(1329), - [anon_sym___noreturn] = ACTIONS(1329), - [anon_sym___cold] = ACTIONS(1329), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1331), - [anon_sym___declspec] = ACTIONS(1329), - [anon_sym___init] = ACTIONS(1329), - [anon_sym___exit] = ACTIONS(1329), - [anon_sym___cdecl] = ACTIONS(1329), - [anon_sym___clrcall] = ACTIONS(1329), - [anon_sym___stdcall] = ACTIONS(1329), - [anon_sym___fastcall] = ACTIONS(1329), - [anon_sym___thiscall] = ACTIONS(1329), - [anon_sym___vectorcall] = ACTIONS(1329), - [anon_sym_LBRACE] = ACTIONS(1331), - [anon_sym_signed] = ACTIONS(1329), - [anon_sym_unsigned] = ACTIONS(1329), - [anon_sym_long] = ACTIONS(1329), - [anon_sym_short] = ACTIONS(1329), - [anon_sym_static] = ACTIONS(1329), - [anon_sym_auto] = ACTIONS(1329), - [anon_sym_register] = ACTIONS(1329), - [anon_sym_inline] = ACTIONS(1329), - [anon_sym___inline] = ACTIONS(1329), - [anon_sym___inline__] = ACTIONS(1329), - [anon_sym___forceinline] = ACTIONS(1329), - [anon_sym_thread_local] = ACTIONS(1329), - [anon_sym___thread] = ACTIONS(1329), - [anon_sym_const] = ACTIONS(1329), - [anon_sym_constexpr] = ACTIONS(1329), - [anon_sym_volatile] = ACTIONS(1329), - [anon_sym_restrict] = ACTIONS(1329), - [anon_sym___restrict__] = ACTIONS(1329), - [anon_sym__Atomic] = ACTIONS(1329), - [anon_sym__Noreturn] = ACTIONS(1329), - [anon_sym_noreturn] = ACTIONS(1329), - [anon_sym_alignas] = ACTIONS(1329), - [anon_sym__Alignas] = ACTIONS(1329), - [sym_primitive_type] = ACTIONS(1329), - [anon_sym_enum] = ACTIONS(1329), - [anon_sym_struct] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1329), - [anon_sym_if] = ACTIONS(1329), - [anon_sym_switch] = ACTIONS(1329), - [anon_sym_case] = ACTIONS(1329), - [anon_sym_default] = ACTIONS(1329), - [anon_sym_while] = ACTIONS(1329), - [anon_sym_do] = ACTIONS(1329), - [anon_sym_for] = ACTIONS(1329), - [anon_sym_return] = ACTIONS(1329), - [anon_sym_break] = ACTIONS(1329), - [anon_sym_continue] = ACTIONS(1329), - [anon_sym_goto] = ACTIONS(1329), - [anon_sym___try] = ACTIONS(1329), - [anon_sym___leave] = ACTIONS(1329), - [anon_sym_DASH_DASH] = ACTIONS(1331), - [anon_sym_PLUS_PLUS] = ACTIONS(1331), - [anon_sym_sizeof] = ACTIONS(1329), - [anon_sym___alignof__] = ACTIONS(1329), - [anon_sym___alignof] = ACTIONS(1329), - [anon_sym__alignof] = ACTIONS(1329), - [anon_sym_alignof] = ACTIONS(1329), - [anon_sym__Alignof] = ACTIONS(1329), - [anon_sym_offsetof] = ACTIONS(1329), - [anon_sym__Generic] = ACTIONS(1329), - [anon_sym_asm] = ACTIONS(1329), - [anon_sym___asm__] = ACTIONS(1329), - [sym_number_literal] = ACTIONS(1331), - [anon_sym_L_SQUOTE] = ACTIONS(1331), - [anon_sym_u_SQUOTE] = ACTIONS(1331), - [anon_sym_U_SQUOTE] = ACTIONS(1331), - [anon_sym_u8_SQUOTE] = ACTIONS(1331), - [anon_sym_SQUOTE] = ACTIONS(1331), - [anon_sym_L_DQUOTE] = ACTIONS(1331), - [anon_sym_u_DQUOTE] = ACTIONS(1331), - [anon_sym_U_DQUOTE] = ACTIONS(1331), - [anon_sym_u8_DQUOTE] = ACTIONS(1331), - [anon_sym_DQUOTE] = ACTIONS(1331), - [sym_true] = ACTIONS(1329), - [sym_false] = ACTIONS(1329), - [anon_sym_NULL] = ACTIONS(1329), - [anon_sym_nullptr] = ACTIONS(1329), - [sym_comment] = ACTIONS(3), + [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_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), }, [133] = { - [sym_identifier] = ACTIONS(1333), - [aux_sym_preproc_include_token1] = ACTIONS(1333), - [aux_sym_preproc_def_token1] = ACTIONS(1333), - [aux_sym_preproc_if_token1] = ACTIONS(1333), - [aux_sym_preproc_if_token2] = ACTIONS(1333), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1333), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1333), - [aux_sym_preproc_else_token1] = ACTIONS(1333), - [aux_sym_preproc_elif_token1] = ACTIONS(1333), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1333), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1333), - [sym_preproc_directive] = ACTIONS(1333), - [anon_sym_LPAREN2] = ACTIONS(1335), - [anon_sym_BANG] = ACTIONS(1335), - [anon_sym_TILDE] = ACTIONS(1335), - [anon_sym_DASH] = ACTIONS(1333), - [anon_sym_PLUS] = ACTIONS(1333), - [anon_sym_STAR] = ACTIONS(1335), - [anon_sym_AMP] = ACTIONS(1335), - [anon_sym_SEMI] = ACTIONS(1335), - [anon_sym___extension__] = ACTIONS(1333), - [anon_sym_typedef] = ACTIONS(1333), - [anon_sym_extern] = ACTIONS(1333), - [anon_sym___attribute__] = ACTIONS(1333), - [anon_sym___scanf] = ACTIONS(1333), - [anon_sym___printf] = ACTIONS(1333), - [anon_sym___read_mostly] = ACTIONS(1333), - [anon_sym___must_hold] = ACTIONS(1333), - [anon_sym___ro_after_init] = ACTIONS(1333), - [anon_sym___noreturn] = ACTIONS(1333), - [anon_sym___cold] = ACTIONS(1333), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1335), - [anon_sym___declspec] = ACTIONS(1333), - [anon_sym___init] = ACTIONS(1333), - [anon_sym___exit] = ACTIONS(1333), - [anon_sym___cdecl] = ACTIONS(1333), - [anon_sym___clrcall] = ACTIONS(1333), - [anon_sym___stdcall] = ACTIONS(1333), - [anon_sym___fastcall] = ACTIONS(1333), - [anon_sym___thiscall] = ACTIONS(1333), - [anon_sym___vectorcall] = ACTIONS(1333), - [anon_sym_LBRACE] = ACTIONS(1335), - [anon_sym_signed] = ACTIONS(1333), - [anon_sym_unsigned] = ACTIONS(1333), - [anon_sym_long] = ACTIONS(1333), - [anon_sym_short] = ACTIONS(1333), - [anon_sym_static] = ACTIONS(1333), - [anon_sym_auto] = ACTIONS(1333), - [anon_sym_register] = ACTIONS(1333), - [anon_sym_inline] = ACTIONS(1333), - [anon_sym___inline] = ACTIONS(1333), - [anon_sym___inline__] = ACTIONS(1333), - [anon_sym___forceinline] = ACTIONS(1333), - [anon_sym_thread_local] = ACTIONS(1333), - [anon_sym___thread] = ACTIONS(1333), - [anon_sym_const] = ACTIONS(1333), - [anon_sym_constexpr] = ACTIONS(1333), - [anon_sym_volatile] = ACTIONS(1333), - [anon_sym_restrict] = ACTIONS(1333), - [anon_sym___restrict__] = ACTIONS(1333), - [anon_sym__Atomic] = ACTIONS(1333), - [anon_sym__Noreturn] = ACTIONS(1333), - [anon_sym_noreturn] = ACTIONS(1333), - [anon_sym_alignas] = ACTIONS(1333), - [anon_sym__Alignas] = ACTIONS(1333), - [sym_primitive_type] = ACTIONS(1333), - [anon_sym_enum] = ACTIONS(1333), - [anon_sym_struct] = ACTIONS(1333), - [anon_sym_union] = ACTIONS(1333), - [anon_sym_if] = ACTIONS(1333), - [anon_sym_switch] = ACTIONS(1333), - [anon_sym_case] = ACTIONS(1333), - [anon_sym_default] = ACTIONS(1333), - [anon_sym_while] = ACTIONS(1333), - [anon_sym_do] = ACTIONS(1333), - [anon_sym_for] = ACTIONS(1333), - [anon_sym_return] = ACTIONS(1333), - [anon_sym_break] = ACTIONS(1333), - [anon_sym_continue] = ACTIONS(1333), - [anon_sym_goto] = ACTIONS(1333), - [anon_sym___try] = ACTIONS(1333), - [anon_sym___leave] = ACTIONS(1333), - [anon_sym_DASH_DASH] = ACTIONS(1335), - [anon_sym_PLUS_PLUS] = ACTIONS(1335), - [anon_sym_sizeof] = ACTIONS(1333), - [anon_sym___alignof__] = ACTIONS(1333), - [anon_sym___alignof] = ACTIONS(1333), - [anon_sym__alignof] = ACTIONS(1333), - [anon_sym_alignof] = ACTIONS(1333), - [anon_sym__Alignof] = ACTIONS(1333), - [anon_sym_offsetof] = ACTIONS(1333), - [anon_sym__Generic] = ACTIONS(1333), - [anon_sym_asm] = ACTIONS(1333), - [anon_sym___asm__] = ACTIONS(1333), - [sym_number_literal] = ACTIONS(1335), - [anon_sym_L_SQUOTE] = ACTIONS(1335), - [anon_sym_u_SQUOTE] = ACTIONS(1335), - [anon_sym_U_SQUOTE] = ACTIONS(1335), - [anon_sym_u8_SQUOTE] = ACTIONS(1335), - [anon_sym_SQUOTE] = ACTIONS(1335), - [anon_sym_L_DQUOTE] = ACTIONS(1335), - [anon_sym_u_DQUOTE] = ACTIONS(1335), - [anon_sym_U_DQUOTE] = ACTIONS(1335), - [anon_sym_u8_DQUOTE] = ACTIONS(1335), - [anon_sym_DQUOTE] = ACTIONS(1335), - [sym_true] = ACTIONS(1333), - [sym_false] = ACTIONS(1333), - [anon_sym_NULL] = ACTIONS(1333), - [anon_sym_nullptr] = ACTIONS(1333), - [sym_comment] = ACTIONS(3), + [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(1337), - [aux_sym_preproc_include_token1] = ACTIONS(1337), - [aux_sym_preproc_def_token1] = ACTIONS(1337), - [aux_sym_preproc_if_token1] = ACTIONS(1337), - [aux_sym_preproc_if_token2] = ACTIONS(1337), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1337), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1337), - [aux_sym_preproc_else_token1] = ACTIONS(1337), - [aux_sym_preproc_elif_token1] = ACTIONS(1337), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1337), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1337), - [sym_preproc_directive] = ACTIONS(1337), - [anon_sym_LPAREN2] = ACTIONS(1339), - [anon_sym_BANG] = ACTIONS(1339), - [anon_sym_TILDE] = ACTIONS(1339), - [anon_sym_DASH] = ACTIONS(1337), - [anon_sym_PLUS] = ACTIONS(1337), - [anon_sym_STAR] = ACTIONS(1339), - [anon_sym_AMP] = ACTIONS(1339), - [anon_sym_SEMI] = ACTIONS(1339), - [anon_sym___extension__] = ACTIONS(1337), - [anon_sym_typedef] = ACTIONS(1337), - [anon_sym_extern] = ACTIONS(1337), - [anon_sym___attribute__] = ACTIONS(1337), - [anon_sym___scanf] = ACTIONS(1337), - [anon_sym___printf] = ACTIONS(1337), - [anon_sym___read_mostly] = ACTIONS(1337), - [anon_sym___must_hold] = ACTIONS(1337), - [anon_sym___ro_after_init] = ACTIONS(1337), - [anon_sym___noreturn] = ACTIONS(1337), - [anon_sym___cold] = ACTIONS(1337), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1339), - [anon_sym___declspec] = ACTIONS(1337), - [anon_sym___init] = ACTIONS(1337), - [anon_sym___exit] = ACTIONS(1337), - [anon_sym___cdecl] = ACTIONS(1337), - [anon_sym___clrcall] = ACTIONS(1337), - [anon_sym___stdcall] = ACTIONS(1337), - [anon_sym___fastcall] = ACTIONS(1337), - [anon_sym___thiscall] = ACTIONS(1337), - [anon_sym___vectorcall] = ACTIONS(1337), - [anon_sym_LBRACE] = ACTIONS(1339), - [anon_sym_signed] = ACTIONS(1337), - [anon_sym_unsigned] = ACTIONS(1337), - [anon_sym_long] = ACTIONS(1337), - [anon_sym_short] = ACTIONS(1337), - [anon_sym_static] = ACTIONS(1337), - [anon_sym_auto] = ACTIONS(1337), - [anon_sym_register] = ACTIONS(1337), - [anon_sym_inline] = ACTIONS(1337), - [anon_sym___inline] = ACTIONS(1337), - [anon_sym___inline__] = ACTIONS(1337), - [anon_sym___forceinline] = ACTIONS(1337), - [anon_sym_thread_local] = ACTIONS(1337), - [anon_sym___thread] = ACTIONS(1337), - [anon_sym_const] = ACTIONS(1337), - [anon_sym_constexpr] = ACTIONS(1337), - [anon_sym_volatile] = ACTIONS(1337), - [anon_sym_restrict] = ACTIONS(1337), - [anon_sym___restrict__] = ACTIONS(1337), - [anon_sym__Atomic] = ACTIONS(1337), - [anon_sym__Noreturn] = ACTIONS(1337), - [anon_sym_noreturn] = ACTIONS(1337), - [anon_sym_alignas] = ACTIONS(1337), - [anon_sym__Alignas] = ACTIONS(1337), - [sym_primitive_type] = ACTIONS(1337), - [anon_sym_enum] = ACTIONS(1337), - [anon_sym_struct] = ACTIONS(1337), - [anon_sym_union] = ACTIONS(1337), - [anon_sym_if] = ACTIONS(1337), - [anon_sym_switch] = ACTIONS(1337), - [anon_sym_case] = ACTIONS(1337), - [anon_sym_default] = ACTIONS(1337), - [anon_sym_while] = ACTIONS(1337), - [anon_sym_do] = ACTIONS(1337), - [anon_sym_for] = ACTIONS(1337), - [anon_sym_return] = ACTIONS(1337), - [anon_sym_break] = ACTIONS(1337), - [anon_sym_continue] = ACTIONS(1337), - [anon_sym_goto] = ACTIONS(1337), - [anon_sym___try] = ACTIONS(1337), - [anon_sym___leave] = ACTIONS(1337), - [anon_sym_DASH_DASH] = ACTIONS(1339), - [anon_sym_PLUS_PLUS] = ACTIONS(1339), - [anon_sym_sizeof] = ACTIONS(1337), - [anon_sym___alignof__] = ACTIONS(1337), - [anon_sym___alignof] = ACTIONS(1337), - [anon_sym__alignof] = ACTIONS(1337), - [anon_sym_alignof] = ACTIONS(1337), - [anon_sym__Alignof] = ACTIONS(1337), - [anon_sym_offsetof] = ACTIONS(1337), - [anon_sym__Generic] = ACTIONS(1337), - [anon_sym_asm] = ACTIONS(1337), - [anon_sym___asm__] = ACTIONS(1337), - [sym_number_literal] = ACTIONS(1339), - [anon_sym_L_SQUOTE] = ACTIONS(1339), - [anon_sym_u_SQUOTE] = ACTIONS(1339), - [anon_sym_U_SQUOTE] = ACTIONS(1339), - [anon_sym_u8_SQUOTE] = ACTIONS(1339), - [anon_sym_SQUOTE] = ACTIONS(1339), - [anon_sym_L_DQUOTE] = ACTIONS(1339), - [anon_sym_u_DQUOTE] = ACTIONS(1339), - [anon_sym_U_DQUOTE] = ACTIONS(1339), - [anon_sym_u8_DQUOTE] = ACTIONS(1339), - [anon_sym_DQUOTE] = ACTIONS(1339), - [sym_true] = ACTIONS(1337), - [sym_false] = ACTIONS(1337), - [anon_sym_NULL] = ACTIONS(1337), - [anon_sym_nullptr] = ACTIONS(1337), - [sym_comment] = ACTIONS(3), + [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), }, [135] = { - [sym_identifier] = ACTIONS(1341), - [aux_sym_preproc_include_token1] = ACTIONS(1341), - [aux_sym_preproc_def_token1] = ACTIONS(1341), - [aux_sym_preproc_if_token1] = ACTIONS(1341), - [aux_sym_preproc_if_token2] = ACTIONS(1341), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1341), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1341), - [aux_sym_preproc_else_token1] = ACTIONS(1341), - [aux_sym_preproc_elif_token1] = ACTIONS(1341), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1341), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1341), - [sym_preproc_directive] = ACTIONS(1341), - [anon_sym_LPAREN2] = ACTIONS(1343), - [anon_sym_BANG] = ACTIONS(1343), - [anon_sym_TILDE] = ACTIONS(1343), - [anon_sym_DASH] = ACTIONS(1341), - [anon_sym_PLUS] = ACTIONS(1341), - [anon_sym_STAR] = ACTIONS(1343), - [anon_sym_AMP] = ACTIONS(1343), - [anon_sym_SEMI] = ACTIONS(1343), - [anon_sym___extension__] = ACTIONS(1341), - [anon_sym_typedef] = ACTIONS(1341), - [anon_sym_extern] = ACTIONS(1341), - [anon_sym___attribute__] = ACTIONS(1341), - [anon_sym___scanf] = ACTIONS(1341), - [anon_sym___printf] = ACTIONS(1341), - [anon_sym___read_mostly] = ACTIONS(1341), - [anon_sym___must_hold] = ACTIONS(1341), - [anon_sym___ro_after_init] = ACTIONS(1341), - [anon_sym___noreturn] = ACTIONS(1341), - [anon_sym___cold] = ACTIONS(1341), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1343), - [anon_sym___declspec] = ACTIONS(1341), - [anon_sym___init] = ACTIONS(1341), - [anon_sym___exit] = ACTIONS(1341), - [anon_sym___cdecl] = ACTIONS(1341), - [anon_sym___clrcall] = ACTIONS(1341), - [anon_sym___stdcall] = ACTIONS(1341), - [anon_sym___fastcall] = ACTIONS(1341), - [anon_sym___thiscall] = ACTIONS(1341), - [anon_sym___vectorcall] = ACTIONS(1341), - [anon_sym_LBRACE] = ACTIONS(1343), - [anon_sym_signed] = ACTIONS(1341), - [anon_sym_unsigned] = ACTIONS(1341), - [anon_sym_long] = ACTIONS(1341), - [anon_sym_short] = ACTIONS(1341), - [anon_sym_static] = ACTIONS(1341), - [anon_sym_auto] = ACTIONS(1341), - [anon_sym_register] = ACTIONS(1341), - [anon_sym_inline] = ACTIONS(1341), - [anon_sym___inline] = ACTIONS(1341), - [anon_sym___inline__] = ACTIONS(1341), - [anon_sym___forceinline] = ACTIONS(1341), - [anon_sym_thread_local] = ACTIONS(1341), - [anon_sym___thread] = ACTIONS(1341), - [anon_sym_const] = ACTIONS(1341), - [anon_sym_constexpr] = ACTIONS(1341), - [anon_sym_volatile] = ACTIONS(1341), - [anon_sym_restrict] = ACTIONS(1341), - [anon_sym___restrict__] = ACTIONS(1341), - [anon_sym__Atomic] = ACTIONS(1341), - [anon_sym__Noreturn] = ACTIONS(1341), - [anon_sym_noreturn] = ACTIONS(1341), - [anon_sym_alignas] = ACTIONS(1341), - [anon_sym__Alignas] = ACTIONS(1341), - [sym_primitive_type] = ACTIONS(1341), - [anon_sym_enum] = ACTIONS(1341), - [anon_sym_struct] = ACTIONS(1341), - [anon_sym_union] = ACTIONS(1341), - [anon_sym_if] = ACTIONS(1341), - [anon_sym_switch] = ACTIONS(1341), - [anon_sym_case] = ACTIONS(1341), - [anon_sym_default] = ACTIONS(1341), - [anon_sym_while] = ACTIONS(1341), - [anon_sym_do] = ACTIONS(1341), - [anon_sym_for] = ACTIONS(1341), - [anon_sym_return] = ACTIONS(1341), - [anon_sym_break] = ACTIONS(1341), - [anon_sym_continue] = ACTIONS(1341), - [anon_sym_goto] = ACTIONS(1341), - [anon_sym___try] = ACTIONS(1341), - [anon_sym___leave] = ACTIONS(1341), - [anon_sym_DASH_DASH] = ACTIONS(1343), - [anon_sym_PLUS_PLUS] = ACTIONS(1343), - [anon_sym_sizeof] = ACTIONS(1341), - [anon_sym___alignof__] = ACTIONS(1341), - [anon_sym___alignof] = ACTIONS(1341), - [anon_sym__alignof] = ACTIONS(1341), - [anon_sym_alignof] = ACTIONS(1341), - [anon_sym__Alignof] = ACTIONS(1341), - [anon_sym_offsetof] = ACTIONS(1341), - [anon_sym__Generic] = ACTIONS(1341), - [anon_sym_asm] = ACTIONS(1341), - [anon_sym___asm__] = ACTIONS(1341), - [sym_number_literal] = ACTIONS(1343), - [anon_sym_L_SQUOTE] = ACTIONS(1343), - [anon_sym_u_SQUOTE] = ACTIONS(1343), - [anon_sym_U_SQUOTE] = ACTIONS(1343), - [anon_sym_u8_SQUOTE] = ACTIONS(1343), - [anon_sym_SQUOTE] = ACTIONS(1343), - [anon_sym_L_DQUOTE] = ACTIONS(1343), - [anon_sym_u_DQUOTE] = ACTIONS(1343), - [anon_sym_U_DQUOTE] = ACTIONS(1343), - [anon_sym_u8_DQUOTE] = ACTIONS(1343), - [anon_sym_DQUOTE] = ACTIONS(1343), - [sym_true] = ACTIONS(1341), - [sym_false] = ACTIONS(1341), - [anon_sym_NULL] = ACTIONS(1341), - [anon_sym_nullptr] = ACTIONS(1341), - [sym_comment] = ACTIONS(3), + [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(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), + [sym_comment] = ACTIONS(5), }, [136] = { - [sym_identifier] = ACTIONS(1345), - [aux_sym_preproc_include_token1] = ACTIONS(1345), - [aux_sym_preproc_def_token1] = ACTIONS(1345), - [aux_sym_preproc_if_token1] = ACTIONS(1345), - [aux_sym_preproc_if_token2] = ACTIONS(1345), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1345), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1345), - [aux_sym_preproc_else_token1] = ACTIONS(1345), - [aux_sym_preproc_elif_token1] = ACTIONS(1345), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1345), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1345), - [sym_preproc_directive] = ACTIONS(1345), - [anon_sym_LPAREN2] = ACTIONS(1347), - [anon_sym_BANG] = ACTIONS(1347), - [anon_sym_TILDE] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_PLUS] = ACTIONS(1345), - [anon_sym_STAR] = ACTIONS(1347), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym_SEMI] = ACTIONS(1347), - [anon_sym___extension__] = ACTIONS(1345), - [anon_sym_typedef] = ACTIONS(1345), - [anon_sym_extern] = ACTIONS(1345), - [anon_sym___attribute__] = ACTIONS(1345), - [anon_sym___scanf] = ACTIONS(1345), - [anon_sym___printf] = ACTIONS(1345), - [anon_sym___read_mostly] = ACTIONS(1345), - [anon_sym___must_hold] = ACTIONS(1345), - [anon_sym___ro_after_init] = ACTIONS(1345), - [anon_sym___noreturn] = ACTIONS(1345), - [anon_sym___cold] = ACTIONS(1345), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1347), - [anon_sym___declspec] = ACTIONS(1345), - [anon_sym___init] = ACTIONS(1345), - [anon_sym___exit] = ACTIONS(1345), - [anon_sym___cdecl] = ACTIONS(1345), - [anon_sym___clrcall] = ACTIONS(1345), - [anon_sym___stdcall] = ACTIONS(1345), - [anon_sym___fastcall] = ACTIONS(1345), - [anon_sym___thiscall] = ACTIONS(1345), - [anon_sym___vectorcall] = ACTIONS(1345), - [anon_sym_LBRACE] = ACTIONS(1347), - [anon_sym_signed] = ACTIONS(1345), - [anon_sym_unsigned] = ACTIONS(1345), - [anon_sym_long] = ACTIONS(1345), - [anon_sym_short] = ACTIONS(1345), - [anon_sym_static] = ACTIONS(1345), - [anon_sym_auto] = ACTIONS(1345), - [anon_sym_register] = ACTIONS(1345), - [anon_sym_inline] = ACTIONS(1345), - [anon_sym___inline] = ACTIONS(1345), - [anon_sym___inline__] = ACTIONS(1345), - [anon_sym___forceinline] = ACTIONS(1345), - [anon_sym_thread_local] = ACTIONS(1345), - [anon_sym___thread] = ACTIONS(1345), - [anon_sym_const] = ACTIONS(1345), - [anon_sym_constexpr] = ACTIONS(1345), - [anon_sym_volatile] = ACTIONS(1345), - [anon_sym_restrict] = ACTIONS(1345), - [anon_sym___restrict__] = ACTIONS(1345), - [anon_sym__Atomic] = ACTIONS(1345), - [anon_sym__Noreturn] = ACTIONS(1345), - [anon_sym_noreturn] = ACTIONS(1345), - [anon_sym_alignas] = ACTIONS(1345), - [anon_sym__Alignas] = ACTIONS(1345), - [sym_primitive_type] = ACTIONS(1345), - [anon_sym_enum] = ACTIONS(1345), - [anon_sym_struct] = ACTIONS(1345), - [anon_sym_union] = ACTIONS(1345), - [anon_sym_if] = ACTIONS(1345), - [anon_sym_switch] = ACTIONS(1345), - [anon_sym_case] = ACTIONS(1345), - [anon_sym_default] = ACTIONS(1345), - [anon_sym_while] = ACTIONS(1345), - [anon_sym_do] = ACTIONS(1345), - [anon_sym_for] = ACTIONS(1345), - [anon_sym_return] = ACTIONS(1345), - [anon_sym_break] = ACTIONS(1345), - [anon_sym_continue] = ACTIONS(1345), - [anon_sym_goto] = ACTIONS(1345), - [anon_sym___try] = ACTIONS(1345), - [anon_sym___leave] = ACTIONS(1345), - [anon_sym_DASH_DASH] = ACTIONS(1347), - [anon_sym_PLUS_PLUS] = ACTIONS(1347), - [anon_sym_sizeof] = ACTIONS(1345), - [anon_sym___alignof__] = ACTIONS(1345), - [anon_sym___alignof] = ACTIONS(1345), - [anon_sym__alignof] = ACTIONS(1345), - [anon_sym_alignof] = ACTIONS(1345), - [anon_sym__Alignof] = ACTIONS(1345), - [anon_sym_offsetof] = ACTIONS(1345), - [anon_sym__Generic] = ACTIONS(1345), - [anon_sym_asm] = ACTIONS(1345), - [anon_sym___asm__] = ACTIONS(1345), - [sym_number_literal] = ACTIONS(1347), - [anon_sym_L_SQUOTE] = ACTIONS(1347), - [anon_sym_u_SQUOTE] = ACTIONS(1347), - [anon_sym_U_SQUOTE] = ACTIONS(1347), - [anon_sym_u8_SQUOTE] = ACTIONS(1347), - [anon_sym_SQUOTE] = ACTIONS(1347), - [anon_sym_L_DQUOTE] = ACTIONS(1347), - [anon_sym_u_DQUOTE] = ACTIONS(1347), - [anon_sym_U_DQUOTE] = ACTIONS(1347), - [anon_sym_u8_DQUOTE] = ACTIONS(1347), - [anon_sym_DQUOTE] = ACTIONS(1347), - [sym_true] = ACTIONS(1345), - [sym_false] = ACTIONS(1345), - [anon_sym_NULL] = ACTIONS(1345), - [anon_sym_nullptr] = ACTIONS(1345), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [137] = { - [sym_identifier] = ACTIONS(1349), - [aux_sym_preproc_include_token1] = ACTIONS(1349), - [aux_sym_preproc_def_token1] = ACTIONS(1349), - [aux_sym_preproc_if_token1] = ACTIONS(1349), - [aux_sym_preproc_if_token2] = ACTIONS(1349), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1349), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1349), - [aux_sym_preproc_else_token1] = ACTIONS(1349), - [aux_sym_preproc_elif_token1] = ACTIONS(1349), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1349), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1349), - [sym_preproc_directive] = ACTIONS(1349), - [anon_sym_LPAREN2] = ACTIONS(1351), - [anon_sym_BANG] = ACTIONS(1351), - [anon_sym_TILDE] = ACTIONS(1351), - [anon_sym_DASH] = ACTIONS(1349), - [anon_sym_PLUS] = ACTIONS(1349), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_AMP] = ACTIONS(1351), - [anon_sym_SEMI] = ACTIONS(1351), - [anon_sym___extension__] = ACTIONS(1349), - [anon_sym_typedef] = ACTIONS(1349), - [anon_sym_extern] = ACTIONS(1349), - [anon_sym___attribute__] = ACTIONS(1349), - [anon_sym___scanf] = ACTIONS(1349), - [anon_sym___printf] = ACTIONS(1349), - [anon_sym___read_mostly] = ACTIONS(1349), - [anon_sym___must_hold] = ACTIONS(1349), - [anon_sym___ro_after_init] = ACTIONS(1349), - [anon_sym___noreturn] = ACTIONS(1349), - [anon_sym___cold] = ACTIONS(1349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1351), - [anon_sym___declspec] = ACTIONS(1349), - [anon_sym___init] = ACTIONS(1349), - [anon_sym___exit] = ACTIONS(1349), - [anon_sym___cdecl] = ACTIONS(1349), - [anon_sym___clrcall] = ACTIONS(1349), - [anon_sym___stdcall] = ACTIONS(1349), - [anon_sym___fastcall] = ACTIONS(1349), - [anon_sym___thiscall] = ACTIONS(1349), - [anon_sym___vectorcall] = ACTIONS(1349), - [anon_sym_LBRACE] = ACTIONS(1351), - [anon_sym_signed] = ACTIONS(1349), - [anon_sym_unsigned] = ACTIONS(1349), - [anon_sym_long] = ACTIONS(1349), - [anon_sym_short] = ACTIONS(1349), - [anon_sym_static] = ACTIONS(1349), - [anon_sym_auto] = ACTIONS(1349), - [anon_sym_register] = ACTIONS(1349), - [anon_sym_inline] = ACTIONS(1349), - [anon_sym___inline] = ACTIONS(1349), - [anon_sym___inline__] = ACTIONS(1349), - [anon_sym___forceinline] = ACTIONS(1349), - [anon_sym_thread_local] = ACTIONS(1349), - [anon_sym___thread] = ACTIONS(1349), - [anon_sym_const] = ACTIONS(1349), - [anon_sym_constexpr] = ACTIONS(1349), - [anon_sym_volatile] = ACTIONS(1349), - [anon_sym_restrict] = ACTIONS(1349), - [anon_sym___restrict__] = ACTIONS(1349), - [anon_sym__Atomic] = ACTIONS(1349), - [anon_sym__Noreturn] = ACTIONS(1349), - [anon_sym_noreturn] = ACTIONS(1349), - [anon_sym_alignas] = ACTIONS(1349), - [anon_sym__Alignas] = ACTIONS(1349), - [sym_primitive_type] = ACTIONS(1349), - [anon_sym_enum] = ACTIONS(1349), - [anon_sym_struct] = ACTIONS(1349), - [anon_sym_union] = ACTIONS(1349), - [anon_sym_if] = ACTIONS(1349), - [anon_sym_switch] = ACTIONS(1349), - [anon_sym_case] = ACTIONS(1349), - [anon_sym_default] = ACTIONS(1349), - [anon_sym_while] = ACTIONS(1349), - [anon_sym_do] = ACTIONS(1349), - [anon_sym_for] = ACTIONS(1349), - [anon_sym_return] = ACTIONS(1349), - [anon_sym_break] = ACTIONS(1349), - [anon_sym_continue] = ACTIONS(1349), - [anon_sym_goto] = ACTIONS(1349), - [anon_sym___try] = ACTIONS(1349), - [anon_sym___leave] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1351), - [anon_sym_PLUS_PLUS] = ACTIONS(1351), - [anon_sym_sizeof] = ACTIONS(1349), - [anon_sym___alignof__] = ACTIONS(1349), - [anon_sym___alignof] = ACTIONS(1349), - [anon_sym__alignof] = ACTIONS(1349), - [anon_sym_alignof] = ACTIONS(1349), - [anon_sym__Alignof] = ACTIONS(1349), - [anon_sym_offsetof] = ACTIONS(1349), - [anon_sym__Generic] = ACTIONS(1349), - [anon_sym_asm] = ACTIONS(1349), - [anon_sym___asm__] = ACTIONS(1349), - [sym_number_literal] = ACTIONS(1351), - [anon_sym_L_SQUOTE] = ACTIONS(1351), - [anon_sym_u_SQUOTE] = ACTIONS(1351), - [anon_sym_U_SQUOTE] = ACTIONS(1351), - [anon_sym_u8_SQUOTE] = ACTIONS(1351), - [anon_sym_SQUOTE] = ACTIONS(1351), - [anon_sym_L_DQUOTE] = ACTIONS(1351), - [anon_sym_u_DQUOTE] = ACTIONS(1351), - [anon_sym_U_DQUOTE] = ACTIONS(1351), - [anon_sym_u8_DQUOTE] = ACTIONS(1351), - [anon_sym_DQUOTE] = ACTIONS(1351), - [sym_true] = ACTIONS(1349), - [sym_false] = ACTIONS(1349), - [anon_sym_NULL] = ACTIONS(1349), - [anon_sym_nullptr] = ACTIONS(1349), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [138] = { - [sym_identifier] = ACTIONS(1353), - [aux_sym_preproc_include_token1] = ACTIONS(1353), - [aux_sym_preproc_def_token1] = ACTIONS(1353), - [aux_sym_preproc_if_token1] = ACTIONS(1353), - [aux_sym_preproc_if_token2] = ACTIONS(1353), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1353), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1353), - [aux_sym_preproc_else_token1] = ACTIONS(1353), - [aux_sym_preproc_elif_token1] = ACTIONS(1353), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1353), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1353), - [sym_preproc_directive] = ACTIONS(1353), - [anon_sym_LPAREN2] = ACTIONS(1355), - [anon_sym_BANG] = ACTIONS(1355), - [anon_sym_TILDE] = ACTIONS(1355), - [anon_sym_DASH] = ACTIONS(1353), - [anon_sym_PLUS] = ACTIONS(1353), - [anon_sym_STAR] = ACTIONS(1355), - [anon_sym_AMP] = ACTIONS(1355), - [anon_sym_SEMI] = ACTIONS(1355), - [anon_sym___extension__] = ACTIONS(1353), - [anon_sym_typedef] = ACTIONS(1353), - [anon_sym_extern] = ACTIONS(1353), - [anon_sym___attribute__] = ACTIONS(1353), - [anon_sym___scanf] = ACTIONS(1353), - [anon_sym___printf] = ACTIONS(1353), - [anon_sym___read_mostly] = ACTIONS(1353), - [anon_sym___must_hold] = ACTIONS(1353), - [anon_sym___ro_after_init] = ACTIONS(1353), - [anon_sym___noreturn] = ACTIONS(1353), - [anon_sym___cold] = ACTIONS(1353), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1355), - [anon_sym___declspec] = ACTIONS(1353), - [anon_sym___init] = ACTIONS(1353), - [anon_sym___exit] = ACTIONS(1353), - [anon_sym___cdecl] = ACTIONS(1353), - [anon_sym___clrcall] = ACTIONS(1353), - [anon_sym___stdcall] = ACTIONS(1353), - [anon_sym___fastcall] = ACTIONS(1353), - [anon_sym___thiscall] = ACTIONS(1353), - [anon_sym___vectorcall] = ACTIONS(1353), - [anon_sym_LBRACE] = ACTIONS(1355), - [anon_sym_signed] = ACTIONS(1353), - [anon_sym_unsigned] = ACTIONS(1353), - [anon_sym_long] = ACTIONS(1353), - [anon_sym_short] = ACTIONS(1353), - [anon_sym_static] = ACTIONS(1353), - [anon_sym_auto] = ACTIONS(1353), - [anon_sym_register] = ACTIONS(1353), - [anon_sym_inline] = ACTIONS(1353), - [anon_sym___inline] = ACTIONS(1353), - [anon_sym___inline__] = ACTIONS(1353), - [anon_sym___forceinline] = ACTIONS(1353), - [anon_sym_thread_local] = ACTIONS(1353), - [anon_sym___thread] = ACTIONS(1353), - [anon_sym_const] = ACTIONS(1353), - [anon_sym_constexpr] = ACTIONS(1353), - [anon_sym_volatile] = ACTIONS(1353), - [anon_sym_restrict] = ACTIONS(1353), - [anon_sym___restrict__] = ACTIONS(1353), - [anon_sym__Atomic] = ACTIONS(1353), - [anon_sym__Noreturn] = ACTIONS(1353), - [anon_sym_noreturn] = ACTIONS(1353), - [anon_sym_alignas] = ACTIONS(1353), - [anon_sym__Alignas] = ACTIONS(1353), - [sym_primitive_type] = ACTIONS(1353), - [anon_sym_enum] = ACTIONS(1353), - [anon_sym_struct] = ACTIONS(1353), - [anon_sym_union] = ACTIONS(1353), - [anon_sym_if] = ACTIONS(1353), - [anon_sym_switch] = ACTIONS(1353), - [anon_sym_case] = ACTIONS(1353), - [anon_sym_default] = ACTIONS(1353), - [anon_sym_while] = ACTIONS(1353), - [anon_sym_do] = ACTIONS(1353), - [anon_sym_for] = ACTIONS(1353), - [anon_sym_return] = ACTIONS(1353), - [anon_sym_break] = ACTIONS(1353), - [anon_sym_continue] = ACTIONS(1353), - [anon_sym_goto] = ACTIONS(1353), - [anon_sym___try] = ACTIONS(1353), - [anon_sym___leave] = ACTIONS(1353), - [anon_sym_DASH_DASH] = ACTIONS(1355), - [anon_sym_PLUS_PLUS] = ACTIONS(1355), - [anon_sym_sizeof] = ACTIONS(1353), - [anon_sym___alignof__] = ACTIONS(1353), - [anon_sym___alignof] = ACTIONS(1353), - [anon_sym__alignof] = ACTIONS(1353), - [anon_sym_alignof] = ACTIONS(1353), - [anon_sym__Alignof] = ACTIONS(1353), - [anon_sym_offsetof] = ACTIONS(1353), - [anon_sym__Generic] = ACTIONS(1353), - [anon_sym_asm] = ACTIONS(1353), - [anon_sym___asm__] = ACTIONS(1353), - [sym_number_literal] = ACTIONS(1355), - [anon_sym_L_SQUOTE] = ACTIONS(1355), - [anon_sym_u_SQUOTE] = ACTIONS(1355), - [anon_sym_U_SQUOTE] = ACTIONS(1355), - [anon_sym_u8_SQUOTE] = ACTIONS(1355), - [anon_sym_SQUOTE] = ACTIONS(1355), - [anon_sym_L_DQUOTE] = ACTIONS(1355), - [anon_sym_u_DQUOTE] = ACTIONS(1355), - [anon_sym_U_DQUOTE] = ACTIONS(1355), - [anon_sym_u8_DQUOTE] = ACTIONS(1355), - [anon_sym_DQUOTE] = ACTIONS(1355), - [sym_true] = ACTIONS(1353), - [sym_false] = ACTIONS(1353), - [anon_sym_NULL] = ACTIONS(1353), - [anon_sym_nullptr] = ACTIONS(1353), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [139] = { - [sym_identifier] = ACTIONS(1357), - [aux_sym_preproc_include_token1] = ACTIONS(1357), - [aux_sym_preproc_def_token1] = ACTIONS(1357), - [aux_sym_preproc_if_token1] = ACTIONS(1357), - [aux_sym_preproc_if_token2] = ACTIONS(1357), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1357), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1357), - [aux_sym_preproc_else_token1] = ACTIONS(1357), - [aux_sym_preproc_elif_token1] = ACTIONS(1357), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1357), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1357), - [sym_preproc_directive] = ACTIONS(1357), - [anon_sym_LPAREN2] = ACTIONS(1359), - [anon_sym_BANG] = ACTIONS(1359), - [anon_sym_TILDE] = ACTIONS(1359), - [anon_sym_DASH] = ACTIONS(1357), - [anon_sym_PLUS] = ACTIONS(1357), - [anon_sym_STAR] = ACTIONS(1359), - [anon_sym_AMP] = ACTIONS(1359), - [anon_sym_SEMI] = ACTIONS(1359), - [anon_sym___extension__] = ACTIONS(1357), - [anon_sym_typedef] = ACTIONS(1357), - [anon_sym_extern] = ACTIONS(1357), - [anon_sym___attribute__] = ACTIONS(1357), - [anon_sym___scanf] = ACTIONS(1357), - [anon_sym___printf] = ACTIONS(1357), - [anon_sym___read_mostly] = ACTIONS(1357), - [anon_sym___must_hold] = ACTIONS(1357), - [anon_sym___ro_after_init] = ACTIONS(1357), - [anon_sym___noreturn] = ACTIONS(1357), - [anon_sym___cold] = ACTIONS(1357), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1359), - [anon_sym___declspec] = ACTIONS(1357), - [anon_sym___init] = ACTIONS(1357), - [anon_sym___exit] = ACTIONS(1357), - [anon_sym___cdecl] = ACTIONS(1357), - [anon_sym___clrcall] = ACTIONS(1357), - [anon_sym___stdcall] = ACTIONS(1357), - [anon_sym___fastcall] = ACTIONS(1357), - [anon_sym___thiscall] = ACTIONS(1357), - [anon_sym___vectorcall] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(1359), - [anon_sym_signed] = ACTIONS(1357), - [anon_sym_unsigned] = ACTIONS(1357), - [anon_sym_long] = ACTIONS(1357), - [anon_sym_short] = ACTIONS(1357), - [anon_sym_static] = ACTIONS(1357), - [anon_sym_auto] = ACTIONS(1357), - [anon_sym_register] = ACTIONS(1357), - [anon_sym_inline] = ACTIONS(1357), - [anon_sym___inline] = ACTIONS(1357), - [anon_sym___inline__] = ACTIONS(1357), - [anon_sym___forceinline] = ACTIONS(1357), - [anon_sym_thread_local] = ACTIONS(1357), - [anon_sym___thread] = ACTIONS(1357), - [anon_sym_const] = ACTIONS(1357), - [anon_sym_constexpr] = ACTIONS(1357), - [anon_sym_volatile] = ACTIONS(1357), - [anon_sym_restrict] = ACTIONS(1357), - [anon_sym___restrict__] = ACTIONS(1357), - [anon_sym__Atomic] = ACTIONS(1357), - [anon_sym__Noreturn] = ACTIONS(1357), - [anon_sym_noreturn] = ACTIONS(1357), - [anon_sym_alignas] = ACTIONS(1357), - [anon_sym__Alignas] = ACTIONS(1357), - [sym_primitive_type] = ACTIONS(1357), - [anon_sym_enum] = ACTIONS(1357), - [anon_sym_struct] = ACTIONS(1357), - [anon_sym_union] = ACTIONS(1357), - [anon_sym_if] = ACTIONS(1357), - [anon_sym_switch] = ACTIONS(1357), - [anon_sym_case] = ACTIONS(1357), - [anon_sym_default] = ACTIONS(1357), - [anon_sym_while] = ACTIONS(1357), - [anon_sym_do] = ACTIONS(1357), - [anon_sym_for] = ACTIONS(1357), - [anon_sym_return] = ACTIONS(1357), - [anon_sym_break] = ACTIONS(1357), - [anon_sym_continue] = ACTIONS(1357), - [anon_sym_goto] = ACTIONS(1357), - [anon_sym___try] = ACTIONS(1357), - [anon_sym___leave] = ACTIONS(1357), - [anon_sym_DASH_DASH] = ACTIONS(1359), - [anon_sym_PLUS_PLUS] = ACTIONS(1359), - [anon_sym_sizeof] = ACTIONS(1357), - [anon_sym___alignof__] = ACTIONS(1357), - [anon_sym___alignof] = ACTIONS(1357), - [anon_sym__alignof] = ACTIONS(1357), - [anon_sym_alignof] = ACTIONS(1357), - [anon_sym__Alignof] = ACTIONS(1357), - [anon_sym_offsetof] = ACTIONS(1357), - [anon_sym__Generic] = ACTIONS(1357), - [anon_sym_asm] = ACTIONS(1357), - [anon_sym___asm__] = ACTIONS(1357), - [sym_number_literal] = ACTIONS(1359), - [anon_sym_L_SQUOTE] = ACTIONS(1359), - [anon_sym_u_SQUOTE] = ACTIONS(1359), - [anon_sym_U_SQUOTE] = ACTIONS(1359), - [anon_sym_u8_SQUOTE] = ACTIONS(1359), - [anon_sym_SQUOTE] = ACTIONS(1359), - [anon_sym_L_DQUOTE] = ACTIONS(1359), - [anon_sym_u_DQUOTE] = ACTIONS(1359), - [anon_sym_U_DQUOTE] = ACTIONS(1359), - [anon_sym_u8_DQUOTE] = ACTIONS(1359), - [anon_sym_DQUOTE] = ACTIONS(1359), - [sym_true] = ACTIONS(1357), - [sym_false] = ACTIONS(1357), - [anon_sym_NULL] = ACTIONS(1357), - [anon_sym_nullptr] = ACTIONS(1357), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [140] = { - [sym_identifier] = ACTIONS(1361), - [aux_sym_preproc_include_token1] = ACTIONS(1361), - [aux_sym_preproc_def_token1] = ACTIONS(1361), - [aux_sym_preproc_if_token1] = ACTIONS(1361), - [aux_sym_preproc_if_token2] = ACTIONS(1361), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1361), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1361), - [aux_sym_preproc_else_token1] = ACTIONS(1361), - [aux_sym_preproc_elif_token1] = ACTIONS(1361), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1361), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1361), - [sym_preproc_directive] = ACTIONS(1361), - [anon_sym_LPAREN2] = ACTIONS(1363), - [anon_sym_BANG] = ACTIONS(1363), - [anon_sym_TILDE] = ACTIONS(1363), - [anon_sym_DASH] = ACTIONS(1361), - [anon_sym_PLUS] = ACTIONS(1361), - [anon_sym_STAR] = ACTIONS(1363), - [anon_sym_AMP] = ACTIONS(1363), - [anon_sym_SEMI] = ACTIONS(1363), - [anon_sym___extension__] = ACTIONS(1361), - [anon_sym_typedef] = ACTIONS(1361), - [anon_sym_extern] = ACTIONS(1361), - [anon_sym___attribute__] = ACTIONS(1361), - [anon_sym___scanf] = ACTIONS(1361), - [anon_sym___printf] = ACTIONS(1361), - [anon_sym___read_mostly] = ACTIONS(1361), - [anon_sym___must_hold] = ACTIONS(1361), - [anon_sym___ro_after_init] = ACTIONS(1361), - [anon_sym___noreturn] = ACTIONS(1361), - [anon_sym___cold] = ACTIONS(1361), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1363), - [anon_sym___declspec] = ACTIONS(1361), - [anon_sym___init] = ACTIONS(1361), - [anon_sym___exit] = ACTIONS(1361), - [anon_sym___cdecl] = ACTIONS(1361), - [anon_sym___clrcall] = ACTIONS(1361), - [anon_sym___stdcall] = ACTIONS(1361), - [anon_sym___fastcall] = ACTIONS(1361), - [anon_sym___thiscall] = ACTIONS(1361), - [anon_sym___vectorcall] = ACTIONS(1361), - [anon_sym_LBRACE] = ACTIONS(1363), - [anon_sym_signed] = ACTIONS(1361), - [anon_sym_unsigned] = ACTIONS(1361), - [anon_sym_long] = ACTIONS(1361), - [anon_sym_short] = ACTIONS(1361), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_auto] = ACTIONS(1361), - [anon_sym_register] = ACTIONS(1361), - [anon_sym_inline] = ACTIONS(1361), - [anon_sym___inline] = ACTIONS(1361), - [anon_sym___inline__] = ACTIONS(1361), - [anon_sym___forceinline] = ACTIONS(1361), - [anon_sym_thread_local] = ACTIONS(1361), - [anon_sym___thread] = ACTIONS(1361), - [anon_sym_const] = ACTIONS(1361), - [anon_sym_constexpr] = ACTIONS(1361), - [anon_sym_volatile] = ACTIONS(1361), - [anon_sym_restrict] = ACTIONS(1361), - [anon_sym___restrict__] = ACTIONS(1361), - [anon_sym__Atomic] = ACTIONS(1361), - [anon_sym__Noreturn] = ACTIONS(1361), - [anon_sym_noreturn] = ACTIONS(1361), - [anon_sym_alignas] = ACTIONS(1361), - [anon_sym__Alignas] = ACTIONS(1361), - [sym_primitive_type] = ACTIONS(1361), - [anon_sym_enum] = ACTIONS(1361), - [anon_sym_struct] = ACTIONS(1361), - [anon_sym_union] = ACTIONS(1361), - [anon_sym_if] = ACTIONS(1361), - [anon_sym_switch] = ACTIONS(1361), - [anon_sym_case] = ACTIONS(1361), - [anon_sym_default] = ACTIONS(1361), - [anon_sym_while] = ACTIONS(1361), - [anon_sym_do] = ACTIONS(1361), - [anon_sym_for] = ACTIONS(1361), - [anon_sym_return] = ACTIONS(1361), - [anon_sym_break] = ACTIONS(1361), - [anon_sym_continue] = ACTIONS(1361), - [anon_sym_goto] = ACTIONS(1361), - [anon_sym___try] = ACTIONS(1361), - [anon_sym___leave] = ACTIONS(1361), - [anon_sym_DASH_DASH] = ACTIONS(1363), - [anon_sym_PLUS_PLUS] = ACTIONS(1363), - [anon_sym_sizeof] = ACTIONS(1361), - [anon_sym___alignof__] = ACTIONS(1361), - [anon_sym___alignof] = ACTIONS(1361), - [anon_sym__alignof] = ACTIONS(1361), - [anon_sym_alignof] = ACTIONS(1361), - [anon_sym__Alignof] = ACTIONS(1361), - [anon_sym_offsetof] = ACTIONS(1361), - [anon_sym__Generic] = ACTIONS(1361), - [anon_sym_asm] = ACTIONS(1361), - [anon_sym___asm__] = ACTIONS(1361), - [sym_number_literal] = ACTIONS(1363), - [anon_sym_L_SQUOTE] = ACTIONS(1363), - [anon_sym_u_SQUOTE] = ACTIONS(1363), - [anon_sym_U_SQUOTE] = ACTIONS(1363), - [anon_sym_u8_SQUOTE] = ACTIONS(1363), - [anon_sym_SQUOTE] = ACTIONS(1363), - [anon_sym_L_DQUOTE] = ACTIONS(1363), - [anon_sym_u_DQUOTE] = ACTIONS(1363), - [anon_sym_U_DQUOTE] = ACTIONS(1363), - [anon_sym_u8_DQUOTE] = ACTIONS(1363), - [anon_sym_DQUOTE] = ACTIONS(1363), - [sym_true] = ACTIONS(1361), - [sym_false] = ACTIONS(1361), - [anon_sym_NULL] = ACTIONS(1361), - [anon_sym_nullptr] = ACTIONS(1361), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [141] = { - [sym_identifier] = ACTIONS(1365), - [aux_sym_preproc_include_token1] = ACTIONS(1365), - [aux_sym_preproc_def_token1] = ACTIONS(1365), - [aux_sym_preproc_if_token1] = ACTIONS(1365), - [aux_sym_preproc_if_token2] = ACTIONS(1365), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1365), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1365), - [aux_sym_preproc_else_token1] = ACTIONS(1365), - [aux_sym_preproc_elif_token1] = ACTIONS(1365), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1365), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1365), - [sym_preproc_directive] = ACTIONS(1365), - [anon_sym_LPAREN2] = ACTIONS(1367), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_DASH] = ACTIONS(1365), - [anon_sym_PLUS] = ACTIONS(1365), - [anon_sym_STAR] = ACTIONS(1367), - [anon_sym_AMP] = ACTIONS(1367), - [anon_sym_SEMI] = ACTIONS(1367), - [anon_sym___extension__] = ACTIONS(1365), - [anon_sym_typedef] = ACTIONS(1365), - [anon_sym_extern] = ACTIONS(1365), - [anon_sym___attribute__] = ACTIONS(1365), - [anon_sym___scanf] = ACTIONS(1365), - [anon_sym___printf] = ACTIONS(1365), - [anon_sym___read_mostly] = ACTIONS(1365), - [anon_sym___must_hold] = ACTIONS(1365), - [anon_sym___ro_after_init] = ACTIONS(1365), - [anon_sym___noreturn] = ACTIONS(1365), - [anon_sym___cold] = ACTIONS(1365), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1367), - [anon_sym___declspec] = ACTIONS(1365), - [anon_sym___init] = ACTIONS(1365), - [anon_sym___exit] = ACTIONS(1365), - [anon_sym___cdecl] = ACTIONS(1365), - [anon_sym___clrcall] = ACTIONS(1365), - [anon_sym___stdcall] = ACTIONS(1365), - [anon_sym___fastcall] = ACTIONS(1365), - [anon_sym___thiscall] = ACTIONS(1365), - [anon_sym___vectorcall] = ACTIONS(1365), - [anon_sym_LBRACE] = ACTIONS(1367), - [anon_sym_signed] = ACTIONS(1365), - [anon_sym_unsigned] = ACTIONS(1365), - [anon_sym_long] = ACTIONS(1365), - [anon_sym_short] = ACTIONS(1365), - [anon_sym_static] = ACTIONS(1365), - [anon_sym_auto] = ACTIONS(1365), - [anon_sym_register] = ACTIONS(1365), - [anon_sym_inline] = ACTIONS(1365), - [anon_sym___inline] = ACTIONS(1365), - [anon_sym___inline__] = ACTIONS(1365), - [anon_sym___forceinline] = ACTIONS(1365), - [anon_sym_thread_local] = ACTIONS(1365), - [anon_sym___thread] = ACTIONS(1365), - [anon_sym_const] = ACTIONS(1365), - [anon_sym_constexpr] = ACTIONS(1365), - [anon_sym_volatile] = ACTIONS(1365), - [anon_sym_restrict] = ACTIONS(1365), - [anon_sym___restrict__] = ACTIONS(1365), - [anon_sym__Atomic] = ACTIONS(1365), - [anon_sym__Noreturn] = ACTIONS(1365), - [anon_sym_noreturn] = ACTIONS(1365), - [anon_sym_alignas] = ACTIONS(1365), - [anon_sym__Alignas] = ACTIONS(1365), - [sym_primitive_type] = ACTIONS(1365), - [anon_sym_enum] = ACTIONS(1365), - [anon_sym_struct] = ACTIONS(1365), - [anon_sym_union] = ACTIONS(1365), - [anon_sym_if] = ACTIONS(1365), - [anon_sym_switch] = ACTIONS(1365), - [anon_sym_case] = ACTIONS(1365), - [anon_sym_default] = ACTIONS(1365), - [anon_sym_while] = ACTIONS(1365), - [anon_sym_do] = ACTIONS(1365), - [anon_sym_for] = ACTIONS(1365), - [anon_sym_return] = ACTIONS(1365), - [anon_sym_break] = ACTIONS(1365), - [anon_sym_continue] = ACTIONS(1365), - [anon_sym_goto] = ACTIONS(1365), - [anon_sym___try] = ACTIONS(1365), - [anon_sym___leave] = ACTIONS(1365), - [anon_sym_DASH_DASH] = ACTIONS(1367), - [anon_sym_PLUS_PLUS] = ACTIONS(1367), - [anon_sym_sizeof] = ACTIONS(1365), - [anon_sym___alignof__] = ACTIONS(1365), - [anon_sym___alignof] = ACTIONS(1365), - [anon_sym__alignof] = ACTIONS(1365), - [anon_sym_alignof] = ACTIONS(1365), - [anon_sym__Alignof] = ACTIONS(1365), - [anon_sym_offsetof] = ACTIONS(1365), - [anon_sym__Generic] = ACTIONS(1365), - [anon_sym_asm] = ACTIONS(1365), - [anon_sym___asm__] = ACTIONS(1365), - [sym_number_literal] = ACTIONS(1367), - [anon_sym_L_SQUOTE] = ACTIONS(1367), - [anon_sym_u_SQUOTE] = ACTIONS(1367), - [anon_sym_U_SQUOTE] = ACTIONS(1367), - [anon_sym_u8_SQUOTE] = ACTIONS(1367), - [anon_sym_SQUOTE] = ACTIONS(1367), - [anon_sym_L_DQUOTE] = ACTIONS(1367), - [anon_sym_u_DQUOTE] = ACTIONS(1367), - [anon_sym_U_DQUOTE] = ACTIONS(1367), - [anon_sym_u8_DQUOTE] = ACTIONS(1367), - [anon_sym_DQUOTE] = ACTIONS(1367), - [sym_true] = ACTIONS(1365), - [sym_false] = ACTIONS(1365), - [anon_sym_NULL] = ACTIONS(1365), - [anon_sym_nullptr] = ACTIONS(1365), - [sym_comment] = ACTIONS(3), + [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_comment] = ACTIONS(5), }, [142] = { - [sym_identifier] = ACTIONS(1369), - [aux_sym_preproc_include_token1] = ACTIONS(1369), - [aux_sym_preproc_def_token1] = ACTIONS(1369), - [aux_sym_preproc_if_token1] = ACTIONS(1369), - [aux_sym_preproc_if_token2] = ACTIONS(1369), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1369), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1369), - [aux_sym_preproc_else_token1] = ACTIONS(1369), - [aux_sym_preproc_elif_token1] = ACTIONS(1369), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1369), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1369), - [sym_preproc_directive] = ACTIONS(1369), - [anon_sym_LPAREN2] = ACTIONS(1371), - [anon_sym_BANG] = ACTIONS(1371), - [anon_sym_TILDE] = ACTIONS(1371), - [anon_sym_DASH] = ACTIONS(1369), - [anon_sym_PLUS] = ACTIONS(1369), - [anon_sym_STAR] = ACTIONS(1371), - [anon_sym_AMP] = ACTIONS(1371), - [anon_sym_SEMI] = ACTIONS(1371), - [anon_sym___extension__] = ACTIONS(1369), - [anon_sym_typedef] = ACTIONS(1369), - [anon_sym_extern] = ACTIONS(1369), - [anon_sym___attribute__] = ACTIONS(1369), - [anon_sym___scanf] = ACTIONS(1369), - [anon_sym___printf] = ACTIONS(1369), - [anon_sym___read_mostly] = ACTIONS(1369), - [anon_sym___must_hold] = ACTIONS(1369), - [anon_sym___ro_after_init] = ACTIONS(1369), - [anon_sym___noreturn] = ACTIONS(1369), - [anon_sym___cold] = ACTIONS(1369), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1371), - [anon_sym___declspec] = ACTIONS(1369), - [anon_sym___init] = ACTIONS(1369), - [anon_sym___exit] = ACTIONS(1369), - [anon_sym___cdecl] = ACTIONS(1369), - [anon_sym___clrcall] = ACTIONS(1369), - [anon_sym___stdcall] = ACTIONS(1369), - [anon_sym___fastcall] = ACTIONS(1369), - [anon_sym___thiscall] = ACTIONS(1369), - [anon_sym___vectorcall] = ACTIONS(1369), - [anon_sym_LBRACE] = ACTIONS(1371), - [anon_sym_signed] = ACTIONS(1369), - [anon_sym_unsigned] = ACTIONS(1369), - [anon_sym_long] = ACTIONS(1369), - [anon_sym_short] = ACTIONS(1369), - [anon_sym_static] = ACTIONS(1369), - [anon_sym_auto] = ACTIONS(1369), - [anon_sym_register] = ACTIONS(1369), - [anon_sym_inline] = ACTIONS(1369), - [anon_sym___inline] = ACTIONS(1369), - [anon_sym___inline__] = ACTIONS(1369), - [anon_sym___forceinline] = ACTIONS(1369), - [anon_sym_thread_local] = ACTIONS(1369), - [anon_sym___thread] = ACTIONS(1369), - [anon_sym_const] = ACTIONS(1369), - [anon_sym_constexpr] = ACTIONS(1369), - [anon_sym_volatile] = ACTIONS(1369), - [anon_sym_restrict] = ACTIONS(1369), - [anon_sym___restrict__] = ACTIONS(1369), - [anon_sym__Atomic] = ACTIONS(1369), - [anon_sym__Noreturn] = ACTIONS(1369), - [anon_sym_noreturn] = ACTIONS(1369), - [anon_sym_alignas] = ACTIONS(1369), - [anon_sym__Alignas] = ACTIONS(1369), - [sym_primitive_type] = ACTIONS(1369), - [anon_sym_enum] = ACTIONS(1369), - [anon_sym_struct] = ACTIONS(1369), - [anon_sym_union] = ACTIONS(1369), - [anon_sym_if] = ACTIONS(1369), - [anon_sym_switch] = ACTIONS(1369), - [anon_sym_case] = ACTIONS(1369), - [anon_sym_default] = ACTIONS(1369), - [anon_sym_while] = ACTIONS(1369), - [anon_sym_do] = ACTIONS(1369), - [anon_sym_for] = ACTIONS(1369), - [anon_sym_return] = ACTIONS(1369), - [anon_sym_break] = ACTIONS(1369), - [anon_sym_continue] = ACTIONS(1369), - [anon_sym_goto] = ACTIONS(1369), - [anon_sym___try] = ACTIONS(1369), - [anon_sym___leave] = ACTIONS(1369), - [anon_sym_DASH_DASH] = ACTIONS(1371), - [anon_sym_PLUS_PLUS] = ACTIONS(1371), - [anon_sym_sizeof] = ACTIONS(1369), - [anon_sym___alignof__] = ACTIONS(1369), - [anon_sym___alignof] = ACTIONS(1369), - [anon_sym__alignof] = ACTIONS(1369), - [anon_sym_alignof] = ACTIONS(1369), - [anon_sym__Alignof] = ACTIONS(1369), - [anon_sym_offsetof] = ACTIONS(1369), - [anon_sym__Generic] = ACTIONS(1369), - [anon_sym_asm] = ACTIONS(1369), - [anon_sym___asm__] = ACTIONS(1369), - [sym_number_literal] = ACTIONS(1371), - [anon_sym_L_SQUOTE] = ACTIONS(1371), - [anon_sym_u_SQUOTE] = ACTIONS(1371), - [anon_sym_U_SQUOTE] = ACTIONS(1371), - [anon_sym_u8_SQUOTE] = ACTIONS(1371), - [anon_sym_SQUOTE] = ACTIONS(1371), - [anon_sym_L_DQUOTE] = ACTIONS(1371), - [anon_sym_u_DQUOTE] = ACTIONS(1371), - [anon_sym_U_DQUOTE] = ACTIONS(1371), - [anon_sym_u8_DQUOTE] = ACTIONS(1371), - [anon_sym_DQUOTE] = ACTIONS(1371), - [sym_true] = ACTIONS(1369), - [sym_false] = ACTIONS(1369), - [anon_sym_NULL] = ACTIONS(1369), - [anon_sym_nullptr] = ACTIONS(1369), - [sym_comment] = ACTIONS(3), + [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_comment] = ACTIONS(5), }, [143] = { - [sym_identifier] = ACTIONS(1373), - [aux_sym_preproc_include_token1] = ACTIONS(1373), - [aux_sym_preproc_def_token1] = ACTIONS(1373), - [aux_sym_preproc_if_token1] = ACTIONS(1373), - [aux_sym_preproc_if_token2] = ACTIONS(1373), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1373), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1373), - [aux_sym_preproc_else_token1] = ACTIONS(1373), - [aux_sym_preproc_elif_token1] = ACTIONS(1373), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1373), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1373), - [sym_preproc_directive] = ACTIONS(1373), - [anon_sym_LPAREN2] = ACTIONS(1375), - [anon_sym_BANG] = ACTIONS(1375), - [anon_sym_TILDE] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1373), - [anon_sym_PLUS] = ACTIONS(1373), - [anon_sym_STAR] = ACTIONS(1375), - [anon_sym_AMP] = ACTIONS(1375), - [anon_sym_SEMI] = ACTIONS(1375), - [anon_sym___extension__] = ACTIONS(1373), - [anon_sym_typedef] = ACTIONS(1373), - [anon_sym_extern] = ACTIONS(1373), - [anon_sym___attribute__] = ACTIONS(1373), - [anon_sym___scanf] = ACTIONS(1373), - [anon_sym___printf] = ACTIONS(1373), - [anon_sym___read_mostly] = ACTIONS(1373), - [anon_sym___must_hold] = ACTIONS(1373), - [anon_sym___ro_after_init] = ACTIONS(1373), - [anon_sym___noreturn] = ACTIONS(1373), - [anon_sym___cold] = ACTIONS(1373), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1375), - [anon_sym___declspec] = ACTIONS(1373), - [anon_sym___init] = ACTIONS(1373), - [anon_sym___exit] = ACTIONS(1373), - [anon_sym___cdecl] = ACTIONS(1373), - [anon_sym___clrcall] = ACTIONS(1373), - [anon_sym___stdcall] = ACTIONS(1373), - [anon_sym___fastcall] = ACTIONS(1373), - [anon_sym___thiscall] = ACTIONS(1373), - [anon_sym___vectorcall] = ACTIONS(1373), - [anon_sym_LBRACE] = ACTIONS(1375), - [anon_sym_signed] = ACTIONS(1373), - [anon_sym_unsigned] = ACTIONS(1373), - [anon_sym_long] = ACTIONS(1373), - [anon_sym_short] = ACTIONS(1373), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_auto] = ACTIONS(1373), - [anon_sym_register] = ACTIONS(1373), - [anon_sym_inline] = ACTIONS(1373), - [anon_sym___inline] = ACTIONS(1373), - [anon_sym___inline__] = ACTIONS(1373), - [anon_sym___forceinline] = ACTIONS(1373), - [anon_sym_thread_local] = ACTIONS(1373), - [anon_sym___thread] = ACTIONS(1373), - [anon_sym_const] = ACTIONS(1373), - [anon_sym_constexpr] = ACTIONS(1373), - [anon_sym_volatile] = ACTIONS(1373), - [anon_sym_restrict] = ACTIONS(1373), - [anon_sym___restrict__] = ACTIONS(1373), - [anon_sym__Atomic] = ACTIONS(1373), - [anon_sym__Noreturn] = ACTIONS(1373), - [anon_sym_noreturn] = ACTIONS(1373), - [anon_sym_alignas] = ACTIONS(1373), - [anon_sym__Alignas] = ACTIONS(1373), - [sym_primitive_type] = ACTIONS(1373), - [anon_sym_enum] = ACTIONS(1373), - [anon_sym_struct] = ACTIONS(1373), - [anon_sym_union] = ACTIONS(1373), - [anon_sym_if] = ACTIONS(1373), - [anon_sym_switch] = ACTIONS(1373), - [anon_sym_case] = ACTIONS(1373), - [anon_sym_default] = ACTIONS(1373), - [anon_sym_while] = ACTIONS(1373), - [anon_sym_do] = ACTIONS(1373), - [anon_sym_for] = ACTIONS(1373), - [anon_sym_return] = ACTIONS(1373), - [anon_sym_break] = ACTIONS(1373), - [anon_sym_continue] = ACTIONS(1373), - [anon_sym_goto] = ACTIONS(1373), - [anon_sym___try] = ACTIONS(1373), - [anon_sym___leave] = ACTIONS(1373), - [anon_sym_DASH_DASH] = ACTIONS(1375), - [anon_sym_PLUS_PLUS] = ACTIONS(1375), - [anon_sym_sizeof] = ACTIONS(1373), - [anon_sym___alignof__] = ACTIONS(1373), - [anon_sym___alignof] = ACTIONS(1373), - [anon_sym__alignof] = ACTIONS(1373), - [anon_sym_alignof] = ACTIONS(1373), - [anon_sym__Alignof] = ACTIONS(1373), - [anon_sym_offsetof] = ACTIONS(1373), - [anon_sym__Generic] = ACTIONS(1373), - [anon_sym_asm] = ACTIONS(1373), - [anon_sym___asm__] = ACTIONS(1373), - [sym_number_literal] = ACTIONS(1375), - [anon_sym_L_SQUOTE] = ACTIONS(1375), - [anon_sym_u_SQUOTE] = ACTIONS(1375), - [anon_sym_U_SQUOTE] = ACTIONS(1375), - [anon_sym_u8_SQUOTE] = ACTIONS(1375), - [anon_sym_SQUOTE] = ACTIONS(1375), - [anon_sym_L_DQUOTE] = ACTIONS(1375), - [anon_sym_u_DQUOTE] = ACTIONS(1375), - [anon_sym_U_DQUOTE] = ACTIONS(1375), - [anon_sym_u8_DQUOTE] = ACTIONS(1375), - [anon_sym_DQUOTE] = ACTIONS(1375), - [sym_true] = ACTIONS(1373), - [sym_false] = ACTIONS(1373), - [anon_sym_NULL] = ACTIONS(1373), - [anon_sym_nullptr] = ACTIONS(1373), - [sym_comment] = ACTIONS(3), + [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_comment] = ACTIONS(5), }, [144] = { - [sym_identifier] = ACTIONS(1377), - [aux_sym_preproc_include_token1] = ACTIONS(1377), - [aux_sym_preproc_def_token1] = ACTIONS(1377), - [aux_sym_preproc_if_token1] = ACTIONS(1377), - [aux_sym_preproc_if_token2] = ACTIONS(1377), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1377), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1377), - [aux_sym_preproc_else_token1] = ACTIONS(1377), - [aux_sym_preproc_elif_token1] = ACTIONS(1377), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1377), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1377), - [sym_preproc_directive] = ACTIONS(1377), - [anon_sym_LPAREN2] = ACTIONS(1379), - [anon_sym_BANG] = ACTIONS(1379), - [anon_sym_TILDE] = ACTIONS(1379), - [anon_sym_DASH] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1377), - [anon_sym_STAR] = ACTIONS(1379), - [anon_sym_AMP] = ACTIONS(1379), - [anon_sym_SEMI] = ACTIONS(1379), - [anon_sym___extension__] = ACTIONS(1377), - [anon_sym_typedef] = ACTIONS(1377), - [anon_sym_extern] = ACTIONS(1377), - [anon_sym___attribute__] = ACTIONS(1377), - [anon_sym___scanf] = ACTIONS(1377), - [anon_sym___printf] = ACTIONS(1377), - [anon_sym___read_mostly] = ACTIONS(1377), - [anon_sym___must_hold] = ACTIONS(1377), - [anon_sym___ro_after_init] = ACTIONS(1377), - [anon_sym___noreturn] = ACTIONS(1377), - [anon_sym___cold] = ACTIONS(1377), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1379), - [anon_sym___declspec] = ACTIONS(1377), - [anon_sym___init] = ACTIONS(1377), - [anon_sym___exit] = ACTIONS(1377), - [anon_sym___cdecl] = ACTIONS(1377), - [anon_sym___clrcall] = ACTIONS(1377), - [anon_sym___stdcall] = ACTIONS(1377), - [anon_sym___fastcall] = ACTIONS(1377), - [anon_sym___thiscall] = ACTIONS(1377), - [anon_sym___vectorcall] = ACTIONS(1377), - [anon_sym_LBRACE] = ACTIONS(1379), - [anon_sym_signed] = ACTIONS(1377), - [anon_sym_unsigned] = ACTIONS(1377), - [anon_sym_long] = ACTIONS(1377), - [anon_sym_short] = ACTIONS(1377), - [anon_sym_static] = ACTIONS(1377), - [anon_sym_auto] = ACTIONS(1377), - [anon_sym_register] = ACTIONS(1377), - [anon_sym_inline] = ACTIONS(1377), - [anon_sym___inline] = ACTIONS(1377), - [anon_sym___inline__] = ACTIONS(1377), - [anon_sym___forceinline] = ACTIONS(1377), - [anon_sym_thread_local] = ACTIONS(1377), - [anon_sym___thread] = ACTIONS(1377), - [anon_sym_const] = ACTIONS(1377), - [anon_sym_constexpr] = ACTIONS(1377), - [anon_sym_volatile] = ACTIONS(1377), - [anon_sym_restrict] = ACTIONS(1377), - [anon_sym___restrict__] = ACTIONS(1377), - [anon_sym__Atomic] = ACTIONS(1377), - [anon_sym__Noreturn] = ACTIONS(1377), - [anon_sym_noreturn] = ACTIONS(1377), - [anon_sym_alignas] = ACTIONS(1377), - [anon_sym__Alignas] = ACTIONS(1377), - [sym_primitive_type] = ACTIONS(1377), - [anon_sym_enum] = ACTIONS(1377), - [anon_sym_struct] = ACTIONS(1377), - [anon_sym_union] = ACTIONS(1377), - [anon_sym_if] = ACTIONS(1377), - [anon_sym_switch] = ACTIONS(1377), - [anon_sym_case] = ACTIONS(1377), - [anon_sym_default] = ACTIONS(1377), - [anon_sym_while] = ACTIONS(1377), - [anon_sym_do] = ACTIONS(1377), - [anon_sym_for] = ACTIONS(1377), - [anon_sym_return] = ACTIONS(1377), - [anon_sym_break] = ACTIONS(1377), - [anon_sym_continue] = ACTIONS(1377), - [anon_sym_goto] = ACTIONS(1377), - [anon_sym___try] = ACTIONS(1377), - [anon_sym___leave] = ACTIONS(1377), - [anon_sym_DASH_DASH] = ACTIONS(1379), - [anon_sym_PLUS_PLUS] = ACTIONS(1379), - [anon_sym_sizeof] = ACTIONS(1377), - [anon_sym___alignof__] = ACTIONS(1377), - [anon_sym___alignof] = ACTIONS(1377), - [anon_sym__alignof] = ACTIONS(1377), - [anon_sym_alignof] = ACTIONS(1377), - [anon_sym__Alignof] = ACTIONS(1377), - [anon_sym_offsetof] = ACTIONS(1377), - [anon_sym__Generic] = ACTIONS(1377), - [anon_sym_asm] = ACTIONS(1377), - [anon_sym___asm__] = ACTIONS(1377), - [sym_number_literal] = ACTIONS(1379), - [anon_sym_L_SQUOTE] = ACTIONS(1379), - [anon_sym_u_SQUOTE] = ACTIONS(1379), - [anon_sym_U_SQUOTE] = ACTIONS(1379), - [anon_sym_u8_SQUOTE] = ACTIONS(1379), - [anon_sym_SQUOTE] = ACTIONS(1379), - [anon_sym_L_DQUOTE] = ACTIONS(1379), - [anon_sym_u_DQUOTE] = ACTIONS(1379), - [anon_sym_U_DQUOTE] = ACTIONS(1379), - [anon_sym_u8_DQUOTE] = ACTIONS(1379), - [anon_sym_DQUOTE] = ACTIONS(1379), - [sym_true] = ACTIONS(1377), - [sym_false] = ACTIONS(1377), - [anon_sym_NULL] = ACTIONS(1377), - [anon_sym_nullptr] = ACTIONS(1377), - [sym_comment] = ACTIONS(3), + [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_comment] = ACTIONS(5), }, [145] = { - [sym_identifier] = ACTIONS(1381), - [aux_sym_preproc_include_token1] = ACTIONS(1381), - [aux_sym_preproc_def_token1] = ACTIONS(1381), - [aux_sym_preproc_if_token1] = ACTIONS(1381), - [aux_sym_preproc_if_token2] = ACTIONS(1381), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1381), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1381), - [aux_sym_preproc_else_token1] = ACTIONS(1381), - [aux_sym_preproc_elif_token1] = ACTIONS(1381), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1381), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1381), - [sym_preproc_directive] = ACTIONS(1381), - [anon_sym_LPAREN2] = ACTIONS(1383), - [anon_sym_BANG] = ACTIONS(1383), - [anon_sym_TILDE] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1381), - [anon_sym_PLUS] = ACTIONS(1381), - [anon_sym_STAR] = ACTIONS(1383), - [anon_sym_AMP] = ACTIONS(1383), - [anon_sym_SEMI] = ACTIONS(1383), - [anon_sym___extension__] = ACTIONS(1381), - [anon_sym_typedef] = ACTIONS(1381), - [anon_sym_extern] = ACTIONS(1381), - [anon_sym___attribute__] = ACTIONS(1381), - [anon_sym___scanf] = ACTIONS(1381), - [anon_sym___printf] = ACTIONS(1381), - [anon_sym___read_mostly] = ACTIONS(1381), - [anon_sym___must_hold] = ACTIONS(1381), - [anon_sym___ro_after_init] = ACTIONS(1381), - [anon_sym___noreturn] = ACTIONS(1381), - [anon_sym___cold] = ACTIONS(1381), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1383), - [anon_sym___declspec] = ACTIONS(1381), - [anon_sym___init] = ACTIONS(1381), - [anon_sym___exit] = ACTIONS(1381), - [anon_sym___cdecl] = ACTIONS(1381), - [anon_sym___clrcall] = ACTIONS(1381), - [anon_sym___stdcall] = ACTIONS(1381), - [anon_sym___fastcall] = ACTIONS(1381), - [anon_sym___thiscall] = ACTIONS(1381), - [anon_sym___vectorcall] = ACTIONS(1381), - [anon_sym_LBRACE] = ACTIONS(1383), - [anon_sym_signed] = ACTIONS(1381), - [anon_sym_unsigned] = ACTIONS(1381), - [anon_sym_long] = ACTIONS(1381), - [anon_sym_short] = ACTIONS(1381), - [anon_sym_static] = ACTIONS(1381), - [anon_sym_auto] = ACTIONS(1381), - [anon_sym_register] = ACTIONS(1381), - [anon_sym_inline] = ACTIONS(1381), - [anon_sym___inline] = ACTIONS(1381), - [anon_sym___inline__] = ACTIONS(1381), - [anon_sym___forceinline] = ACTIONS(1381), - [anon_sym_thread_local] = ACTIONS(1381), - [anon_sym___thread] = ACTIONS(1381), - [anon_sym_const] = ACTIONS(1381), - [anon_sym_constexpr] = ACTIONS(1381), - [anon_sym_volatile] = ACTIONS(1381), - [anon_sym_restrict] = ACTIONS(1381), - [anon_sym___restrict__] = ACTIONS(1381), - [anon_sym__Atomic] = ACTIONS(1381), - [anon_sym__Noreturn] = ACTIONS(1381), - [anon_sym_noreturn] = ACTIONS(1381), - [anon_sym_alignas] = ACTIONS(1381), - [anon_sym__Alignas] = ACTIONS(1381), - [sym_primitive_type] = ACTIONS(1381), - [anon_sym_enum] = ACTIONS(1381), - [anon_sym_struct] = ACTIONS(1381), - [anon_sym_union] = ACTIONS(1381), - [anon_sym_if] = ACTIONS(1381), - [anon_sym_switch] = ACTIONS(1381), - [anon_sym_case] = ACTIONS(1381), - [anon_sym_default] = ACTIONS(1381), - [anon_sym_while] = ACTIONS(1381), - [anon_sym_do] = ACTIONS(1381), - [anon_sym_for] = ACTIONS(1381), - [anon_sym_return] = ACTIONS(1381), - [anon_sym_break] = ACTIONS(1381), - [anon_sym_continue] = ACTIONS(1381), - [anon_sym_goto] = ACTIONS(1381), - [anon_sym___try] = ACTIONS(1381), - [anon_sym___leave] = ACTIONS(1381), - [anon_sym_DASH_DASH] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1383), - [anon_sym_sizeof] = ACTIONS(1381), - [anon_sym___alignof__] = ACTIONS(1381), - [anon_sym___alignof] = ACTIONS(1381), - [anon_sym__alignof] = ACTIONS(1381), - [anon_sym_alignof] = ACTIONS(1381), - [anon_sym__Alignof] = ACTIONS(1381), - [anon_sym_offsetof] = ACTIONS(1381), - [anon_sym__Generic] = ACTIONS(1381), - [anon_sym_asm] = ACTIONS(1381), - [anon_sym___asm__] = ACTIONS(1381), - [sym_number_literal] = ACTIONS(1383), - [anon_sym_L_SQUOTE] = ACTIONS(1383), - [anon_sym_u_SQUOTE] = ACTIONS(1383), - [anon_sym_U_SQUOTE] = ACTIONS(1383), - [anon_sym_u8_SQUOTE] = ACTIONS(1383), - [anon_sym_SQUOTE] = ACTIONS(1383), - [anon_sym_L_DQUOTE] = ACTIONS(1383), - [anon_sym_u_DQUOTE] = ACTIONS(1383), - [anon_sym_U_DQUOTE] = ACTIONS(1383), - [anon_sym_u8_DQUOTE] = ACTIONS(1383), - [anon_sym_DQUOTE] = ACTIONS(1383), - [sym_true] = ACTIONS(1381), - [sym_false] = ACTIONS(1381), - [anon_sym_NULL] = ACTIONS(1381), - [anon_sym_nullptr] = ACTIONS(1381), - [sym_comment] = ACTIONS(3), + [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_comment] = ACTIONS(5), }, [146] = { - [sym_identifier] = ACTIONS(1385), - [aux_sym_preproc_include_token1] = ACTIONS(1385), - [aux_sym_preproc_def_token1] = ACTIONS(1385), - [aux_sym_preproc_if_token1] = ACTIONS(1385), - [aux_sym_preproc_if_token2] = ACTIONS(1385), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1385), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1385), - [aux_sym_preproc_else_token1] = ACTIONS(1385), - [aux_sym_preproc_elif_token1] = ACTIONS(1385), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1385), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1385), - [sym_preproc_directive] = ACTIONS(1385), - [anon_sym_LPAREN2] = ACTIONS(1387), - [anon_sym_BANG] = ACTIONS(1387), - [anon_sym_TILDE] = ACTIONS(1387), - [anon_sym_DASH] = ACTIONS(1385), - [anon_sym_PLUS] = ACTIONS(1385), - [anon_sym_STAR] = ACTIONS(1387), - [anon_sym_AMP] = ACTIONS(1387), - [anon_sym_SEMI] = ACTIONS(1387), - [anon_sym___extension__] = ACTIONS(1385), - [anon_sym_typedef] = ACTIONS(1385), - [anon_sym_extern] = ACTIONS(1385), - [anon_sym___attribute__] = ACTIONS(1385), - [anon_sym___scanf] = ACTIONS(1385), - [anon_sym___printf] = ACTIONS(1385), - [anon_sym___read_mostly] = ACTIONS(1385), - [anon_sym___must_hold] = ACTIONS(1385), - [anon_sym___ro_after_init] = ACTIONS(1385), - [anon_sym___noreturn] = ACTIONS(1385), - [anon_sym___cold] = ACTIONS(1385), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1387), - [anon_sym___declspec] = ACTIONS(1385), - [anon_sym___init] = ACTIONS(1385), - [anon_sym___exit] = ACTIONS(1385), - [anon_sym___cdecl] = ACTIONS(1385), - [anon_sym___clrcall] = ACTIONS(1385), - [anon_sym___stdcall] = ACTIONS(1385), - [anon_sym___fastcall] = ACTIONS(1385), - [anon_sym___thiscall] = ACTIONS(1385), - [anon_sym___vectorcall] = ACTIONS(1385), - [anon_sym_LBRACE] = ACTIONS(1387), - [anon_sym_signed] = ACTIONS(1385), - [anon_sym_unsigned] = ACTIONS(1385), - [anon_sym_long] = ACTIONS(1385), - [anon_sym_short] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1385), - [anon_sym_auto] = ACTIONS(1385), - [anon_sym_register] = ACTIONS(1385), - [anon_sym_inline] = ACTIONS(1385), - [anon_sym___inline] = ACTIONS(1385), - [anon_sym___inline__] = ACTIONS(1385), - [anon_sym___forceinline] = ACTIONS(1385), - [anon_sym_thread_local] = ACTIONS(1385), - [anon_sym___thread] = ACTIONS(1385), - [anon_sym_const] = ACTIONS(1385), - [anon_sym_constexpr] = ACTIONS(1385), - [anon_sym_volatile] = ACTIONS(1385), - [anon_sym_restrict] = ACTIONS(1385), - [anon_sym___restrict__] = ACTIONS(1385), - [anon_sym__Atomic] = ACTIONS(1385), - [anon_sym__Noreturn] = ACTIONS(1385), - [anon_sym_noreturn] = ACTIONS(1385), - [anon_sym_alignas] = ACTIONS(1385), - [anon_sym__Alignas] = ACTIONS(1385), - [sym_primitive_type] = ACTIONS(1385), - [anon_sym_enum] = ACTIONS(1385), - [anon_sym_struct] = ACTIONS(1385), - [anon_sym_union] = ACTIONS(1385), - [anon_sym_if] = ACTIONS(1385), - [anon_sym_switch] = ACTIONS(1385), - [anon_sym_case] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1385), - [anon_sym_while] = ACTIONS(1385), - [anon_sym_do] = ACTIONS(1385), - [anon_sym_for] = ACTIONS(1385), - [anon_sym_return] = ACTIONS(1385), - [anon_sym_break] = ACTIONS(1385), - [anon_sym_continue] = ACTIONS(1385), - [anon_sym_goto] = ACTIONS(1385), - [anon_sym___try] = ACTIONS(1385), - [anon_sym___leave] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1387), - [anon_sym_PLUS_PLUS] = ACTIONS(1387), - [anon_sym_sizeof] = ACTIONS(1385), - [anon_sym___alignof__] = ACTIONS(1385), - [anon_sym___alignof] = ACTIONS(1385), - [anon_sym__alignof] = ACTIONS(1385), - [anon_sym_alignof] = ACTIONS(1385), - [anon_sym__Alignof] = ACTIONS(1385), - [anon_sym_offsetof] = ACTIONS(1385), - [anon_sym__Generic] = ACTIONS(1385), - [anon_sym_asm] = ACTIONS(1385), - [anon_sym___asm__] = ACTIONS(1385), - [sym_number_literal] = ACTIONS(1387), - [anon_sym_L_SQUOTE] = ACTIONS(1387), - [anon_sym_u_SQUOTE] = ACTIONS(1387), - [anon_sym_U_SQUOTE] = ACTIONS(1387), - [anon_sym_u8_SQUOTE] = ACTIONS(1387), - [anon_sym_SQUOTE] = ACTIONS(1387), - [anon_sym_L_DQUOTE] = ACTIONS(1387), - [anon_sym_u_DQUOTE] = ACTIONS(1387), - [anon_sym_U_DQUOTE] = ACTIONS(1387), - [anon_sym_u8_DQUOTE] = ACTIONS(1387), - [anon_sym_DQUOTE] = ACTIONS(1387), - [sym_true] = ACTIONS(1385), - [sym_false] = ACTIONS(1385), - [anon_sym_NULL] = ACTIONS(1385), - [anon_sym_nullptr] = ACTIONS(1385), - [sym_comment] = ACTIONS(3), + [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_comment] = ACTIONS(5), }, [147] = { - [sym_identifier] = ACTIONS(1389), - [aux_sym_preproc_include_token1] = ACTIONS(1389), - [aux_sym_preproc_def_token1] = ACTIONS(1389), - [aux_sym_preproc_if_token1] = ACTIONS(1389), - [aux_sym_preproc_if_token2] = ACTIONS(1389), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1389), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1389), - [aux_sym_preproc_else_token1] = ACTIONS(1389), - [aux_sym_preproc_elif_token1] = ACTIONS(1389), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1389), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1389), - [sym_preproc_directive] = ACTIONS(1389), - [anon_sym_LPAREN2] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1391), - [anon_sym_TILDE] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(1389), - [anon_sym_STAR] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1391), - [anon_sym_SEMI] = ACTIONS(1391), - [anon_sym___extension__] = ACTIONS(1389), - [anon_sym_typedef] = ACTIONS(1389), - [anon_sym_extern] = ACTIONS(1389), - [anon_sym___attribute__] = ACTIONS(1389), - [anon_sym___scanf] = ACTIONS(1389), - [anon_sym___printf] = ACTIONS(1389), - [anon_sym___read_mostly] = ACTIONS(1389), - [anon_sym___must_hold] = ACTIONS(1389), - [anon_sym___ro_after_init] = ACTIONS(1389), - [anon_sym___noreturn] = ACTIONS(1389), - [anon_sym___cold] = ACTIONS(1389), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1391), - [anon_sym___declspec] = ACTIONS(1389), - [anon_sym___init] = ACTIONS(1389), - [anon_sym___exit] = ACTIONS(1389), - [anon_sym___cdecl] = ACTIONS(1389), - [anon_sym___clrcall] = ACTIONS(1389), - [anon_sym___stdcall] = ACTIONS(1389), - [anon_sym___fastcall] = ACTIONS(1389), - [anon_sym___thiscall] = ACTIONS(1389), - [anon_sym___vectorcall] = ACTIONS(1389), - [anon_sym_LBRACE] = ACTIONS(1391), - [anon_sym_signed] = ACTIONS(1389), - [anon_sym_unsigned] = ACTIONS(1389), - [anon_sym_long] = ACTIONS(1389), - [anon_sym_short] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1389), - [anon_sym_auto] = ACTIONS(1389), - [anon_sym_register] = ACTIONS(1389), - [anon_sym_inline] = ACTIONS(1389), - [anon_sym___inline] = ACTIONS(1389), - [anon_sym___inline__] = ACTIONS(1389), - [anon_sym___forceinline] = ACTIONS(1389), - [anon_sym_thread_local] = ACTIONS(1389), - [anon_sym___thread] = ACTIONS(1389), - [anon_sym_const] = ACTIONS(1389), - [anon_sym_constexpr] = ACTIONS(1389), - [anon_sym_volatile] = ACTIONS(1389), - [anon_sym_restrict] = ACTIONS(1389), - [anon_sym___restrict__] = ACTIONS(1389), - [anon_sym__Atomic] = ACTIONS(1389), - [anon_sym__Noreturn] = ACTIONS(1389), - [anon_sym_noreturn] = ACTIONS(1389), - [anon_sym_alignas] = ACTIONS(1389), - [anon_sym__Alignas] = ACTIONS(1389), - [sym_primitive_type] = ACTIONS(1389), - [anon_sym_enum] = ACTIONS(1389), - [anon_sym_struct] = ACTIONS(1389), - [anon_sym_union] = ACTIONS(1389), - [anon_sym_if] = ACTIONS(1389), - [anon_sym_switch] = ACTIONS(1389), - [anon_sym_case] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1389), - [anon_sym_while] = ACTIONS(1389), - [anon_sym_do] = ACTIONS(1389), - [anon_sym_for] = ACTIONS(1389), - [anon_sym_return] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1389), - [anon_sym_continue] = ACTIONS(1389), - [anon_sym_goto] = ACTIONS(1389), - [anon_sym___try] = ACTIONS(1389), - [anon_sym___leave] = ACTIONS(1389), - [anon_sym_DASH_DASH] = ACTIONS(1391), - [anon_sym_PLUS_PLUS] = ACTIONS(1391), - [anon_sym_sizeof] = ACTIONS(1389), - [anon_sym___alignof__] = ACTIONS(1389), - [anon_sym___alignof] = ACTIONS(1389), - [anon_sym__alignof] = ACTIONS(1389), - [anon_sym_alignof] = ACTIONS(1389), - [anon_sym__Alignof] = ACTIONS(1389), - [anon_sym_offsetof] = ACTIONS(1389), - [anon_sym__Generic] = ACTIONS(1389), - [anon_sym_asm] = ACTIONS(1389), - [anon_sym___asm__] = ACTIONS(1389), - [sym_number_literal] = ACTIONS(1391), - [anon_sym_L_SQUOTE] = ACTIONS(1391), - [anon_sym_u_SQUOTE] = ACTIONS(1391), - [anon_sym_U_SQUOTE] = ACTIONS(1391), - [anon_sym_u8_SQUOTE] = ACTIONS(1391), - [anon_sym_SQUOTE] = ACTIONS(1391), - [anon_sym_L_DQUOTE] = ACTIONS(1391), - [anon_sym_u_DQUOTE] = ACTIONS(1391), - [anon_sym_U_DQUOTE] = ACTIONS(1391), - [anon_sym_u8_DQUOTE] = ACTIONS(1391), - [anon_sym_DQUOTE] = ACTIONS(1391), - [sym_true] = ACTIONS(1389), - [sym_false] = ACTIONS(1389), - [anon_sym_NULL] = ACTIONS(1389), - [anon_sym_nullptr] = ACTIONS(1389), - [sym_comment] = ACTIONS(3), + [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_comment] = ACTIONS(5), }, [148] = { - [sym_identifier] = ACTIONS(1393), - [aux_sym_preproc_include_token1] = ACTIONS(1393), - [aux_sym_preproc_def_token1] = ACTIONS(1393), - [aux_sym_preproc_if_token1] = ACTIONS(1393), - [aux_sym_preproc_if_token2] = ACTIONS(1393), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1393), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1393), - [aux_sym_preproc_else_token1] = ACTIONS(1393), - [aux_sym_preproc_elif_token1] = ACTIONS(1393), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1393), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1393), - [sym_preproc_directive] = ACTIONS(1393), - [anon_sym_LPAREN2] = ACTIONS(1395), - [anon_sym_BANG] = ACTIONS(1395), - [anon_sym_TILDE] = ACTIONS(1395), - [anon_sym_DASH] = ACTIONS(1393), - [anon_sym_PLUS] = ACTIONS(1393), - [anon_sym_STAR] = ACTIONS(1395), - [anon_sym_AMP] = ACTIONS(1395), - [anon_sym_SEMI] = ACTIONS(1395), - [anon_sym___extension__] = ACTIONS(1393), - [anon_sym_typedef] = ACTIONS(1393), - [anon_sym_extern] = ACTIONS(1393), - [anon_sym___attribute__] = ACTIONS(1393), - [anon_sym___scanf] = ACTIONS(1393), - [anon_sym___printf] = ACTIONS(1393), - [anon_sym___read_mostly] = ACTIONS(1393), - [anon_sym___must_hold] = ACTIONS(1393), - [anon_sym___ro_after_init] = ACTIONS(1393), - [anon_sym___noreturn] = ACTIONS(1393), - [anon_sym___cold] = ACTIONS(1393), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1395), - [anon_sym___declspec] = ACTIONS(1393), - [anon_sym___init] = ACTIONS(1393), - [anon_sym___exit] = ACTIONS(1393), - [anon_sym___cdecl] = ACTIONS(1393), - [anon_sym___clrcall] = ACTIONS(1393), - [anon_sym___stdcall] = ACTIONS(1393), - [anon_sym___fastcall] = ACTIONS(1393), - [anon_sym___thiscall] = ACTIONS(1393), - [anon_sym___vectorcall] = ACTIONS(1393), - [anon_sym_LBRACE] = ACTIONS(1395), - [anon_sym_signed] = ACTIONS(1393), - [anon_sym_unsigned] = ACTIONS(1393), - [anon_sym_long] = ACTIONS(1393), - [anon_sym_short] = ACTIONS(1393), - [anon_sym_static] = ACTIONS(1393), - [anon_sym_auto] = ACTIONS(1393), - [anon_sym_register] = ACTIONS(1393), - [anon_sym_inline] = ACTIONS(1393), - [anon_sym___inline] = ACTIONS(1393), - [anon_sym___inline__] = ACTIONS(1393), - [anon_sym___forceinline] = ACTIONS(1393), - [anon_sym_thread_local] = ACTIONS(1393), - [anon_sym___thread] = ACTIONS(1393), - [anon_sym_const] = ACTIONS(1393), - [anon_sym_constexpr] = ACTIONS(1393), - [anon_sym_volatile] = ACTIONS(1393), - [anon_sym_restrict] = ACTIONS(1393), - [anon_sym___restrict__] = ACTIONS(1393), - [anon_sym__Atomic] = ACTIONS(1393), - [anon_sym__Noreturn] = ACTIONS(1393), - [anon_sym_noreturn] = ACTIONS(1393), - [anon_sym_alignas] = ACTIONS(1393), - [anon_sym__Alignas] = ACTIONS(1393), - [sym_primitive_type] = ACTIONS(1393), - [anon_sym_enum] = ACTIONS(1393), - [anon_sym_struct] = ACTIONS(1393), - [anon_sym_union] = ACTIONS(1393), - [anon_sym_if] = ACTIONS(1393), - [anon_sym_switch] = ACTIONS(1393), - [anon_sym_case] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1393), - [anon_sym_while] = ACTIONS(1393), - [anon_sym_do] = ACTIONS(1393), - [anon_sym_for] = ACTIONS(1393), - [anon_sym_return] = ACTIONS(1393), - [anon_sym_break] = ACTIONS(1393), - [anon_sym_continue] = ACTIONS(1393), - [anon_sym_goto] = ACTIONS(1393), - [anon_sym___try] = ACTIONS(1393), - [anon_sym___leave] = ACTIONS(1393), - [anon_sym_DASH_DASH] = ACTIONS(1395), - [anon_sym_PLUS_PLUS] = ACTIONS(1395), - [anon_sym_sizeof] = ACTIONS(1393), - [anon_sym___alignof__] = ACTIONS(1393), - [anon_sym___alignof] = ACTIONS(1393), - [anon_sym__alignof] = ACTIONS(1393), - [anon_sym_alignof] = ACTIONS(1393), - [anon_sym__Alignof] = ACTIONS(1393), - [anon_sym_offsetof] = ACTIONS(1393), - [anon_sym__Generic] = ACTIONS(1393), - [anon_sym_asm] = ACTIONS(1393), - [anon_sym___asm__] = ACTIONS(1393), - [sym_number_literal] = ACTIONS(1395), - [anon_sym_L_SQUOTE] = ACTIONS(1395), - [anon_sym_u_SQUOTE] = ACTIONS(1395), - [anon_sym_U_SQUOTE] = ACTIONS(1395), - [anon_sym_u8_SQUOTE] = ACTIONS(1395), - [anon_sym_SQUOTE] = ACTIONS(1395), - [anon_sym_L_DQUOTE] = ACTIONS(1395), - [anon_sym_u_DQUOTE] = ACTIONS(1395), - [anon_sym_U_DQUOTE] = ACTIONS(1395), - [anon_sym_u8_DQUOTE] = ACTIONS(1395), - [anon_sym_DQUOTE] = ACTIONS(1395), - [sym_true] = ACTIONS(1393), - [sym_false] = ACTIONS(1393), - [anon_sym_NULL] = ACTIONS(1393), - [anon_sym_nullptr] = ACTIONS(1393), - [sym_comment] = ACTIONS(3), + [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_comment] = ACTIONS(5), }, [149] = { - [sym_identifier] = ACTIONS(1397), - [aux_sym_preproc_include_token1] = ACTIONS(1397), - [aux_sym_preproc_def_token1] = ACTIONS(1397), - [aux_sym_preproc_if_token1] = ACTIONS(1397), - [aux_sym_preproc_if_token2] = ACTIONS(1397), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1397), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1397), - [aux_sym_preproc_else_token1] = ACTIONS(1397), - [aux_sym_preproc_elif_token1] = ACTIONS(1397), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1397), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1397), - [sym_preproc_directive] = ACTIONS(1397), - [anon_sym_LPAREN2] = ACTIONS(1399), - [anon_sym_BANG] = ACTIONS(1399), - [anon_sym_TILDE] = ACTIONS(1399), - [anon_sym_DASH] = ACTIONS(1397), - [anon_sym_PLUS] = ACTIONS(1397), - [anon_sym_STAR] = ACTIONS(1399), - [anon_sym_AMP] = ACTIONS(1399), - [anon_sym_SEMI] = ACTIONS(1399), - [anon_sym___extension__] = ACTIONS(1397), - [anon_sym_typedef] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1397), - [anon_sym___attribute__] = ACTIONS(1397), - [anon_sym___scanf] = ACTIONS(1397), - [anon_sym___printf] = ACTIONS(1397), - [anon_sym___read_mostly] = ACTIONS(1397), - [anon_sym___must_hold] = ACTIONS(1397), - [anon_sym___ro_after_init] = ACTIONS(1397), - [anon_sym___noreturn] = ACTIONS(1397), - [anon_sym___cold] = ACTIONS(1397), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1399), - [anon_sym___declspec] = ACTIONS(1397), - [anon_sym___init] = ACTIONS(1397), - [anon_sym___exit] = ACTIONS(1397), - [anon_sym___cdecl] = ACTIONS(1397), - [anon_sym___clrcall] = ACTIONS(1397), - [anon_sym___stdcall] = ACTIONS(1397), - [anon_sym___fastcall] = ACTIONS(1397), - [anon_sym___thiscall] = ACTIONS(1397), - [anon_sym___vectorcall] = ACTIONS(1397), - [anon_sym_LBRACE] = ACTIONS(1399), - [anon_sym_signed] = ACTIONS(1397), - [anon_sym_unsigned] = ACTIONS(1397), - [anon_sym_long] = ACTIONS(1397), - [anon_sym_short] = ACTIONS(1397), - [anon_sym_static] = ACTIONS(1397), - [anon_sym_auto] = ACTIONS(1397), - [anon_sym_register] = ACTIONS(1397), - [anon_sym_inline] = ACTIONS(1397), - [anon_sym___inline] = ACTIONS(1397), - [anon_sym___inline__] = ACTIONS(1397), - [anon_sym___forceinline] = ACTIONS(1397), - [anon_sym_thread_local] = ACTIONS(1397), - [anon_sym___thread] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_constexpr] = ACTIONS(1397), - [anon_sym_volatile] = ACTIONS(1397), - [anon_sym_restrict] = ACTIONS(1397), - [anon_sym___restrict__] = ACTIONS(1397), - [anon_sym__Atomic] = ACTIONS(1397), - [anon_sym__Noreturn] = ACTIONS(1397), - [anon_sym_noreturn] = ACTIONS(1397), - [anon_sym_alignas] = ACTIONS(1397), - [anon_sym__Alignas] = ACTIONS(1397), - [sym_primitive_type] = ACTIONS(1397), - [anon_sym_enum] = ACTIONS(1397), - [anon_sym_struct] = ACTIONS(1397), - [anon_sym_union] = ACTIONS(1397), - [anon_sym_if] = ACTIONS(1397), - [anon_sym_switch] = ACTIONS(1397), - [anon_sym_case] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_while] = ACTIONS(1397), - [anon_sym_do] = ACTIONS(1397), - [anon_sym_for] = ACTIONS(1397), - [anon_sym_return] = ACTIONS(1397), - [anon_sym_break] = ACTIONS(1397), - [anon_sym_continue] = ACTIONS(1397), - [anon_sym_goto] = ACTIONS(1397), - [anon_sym___try] = ACTIONS(1397), - [anon_sym___leave] = ACTIONS(1397), - [anon_sym_DASH_DASH] = ACTIONS(1399), - [anon_sym_PLUS_PLUS] = ACTIONS(1399), - [anon_sym_sizeof] = ACTIONS(1397), - [anon_sym___alignof__] = ACTIONS(1397), - [anon_sym___alignof] = ACTIONS(1397), - [anon_sym__alignof] = ACTIONS(1397), - [anon_sym_alignof] = ACTIONS(1397), - [anon_sym__Alignof] = ACTIONS(1397), - [anon_sym_offsetof] = ACTIONS(1397), - [anon_sym__Generic] = ACTIONS(1397), - [anon_sym_asm] = ACTIONS(1397), - [anon_sym___asm__] = ACTIONS(1397), - [sym_number_literal] = ACTIONS(1399), - [anon_sym_L_SQUOTE] = ACTIONS(1399), - [anon_sym_u_SQUOTE] = ACTIONS(1399), - [anon_sym_U_SQUOTE] = ACTIONS(1399), - [anon_sym_u8_SQUOTE] = ACTIONS(1399), - [anon_sym_SQUOTE] = ACTIONS(1399), - [anon_sym_L_DQUOTE] = ACTIONS(1399), - [anon_sym_u_DQUOTE] = ACTIONS(1399), - [anon_sym_U_DQUOTE] = ACTIONS(1399), - [anon_sym_u8_DQUOTE] = ACTIONS(1399), - [anon_sym_DQUOTE] = ACTIONS(1399), - [sym_true] = ACTIONS(1397), - [sym_false] = ACTIONS(1397), - [anon_sym_NULL] = ACTIONS(1397), - [anon_sym_nullptr] = ACTIONS(1397), - [sym_comment] = ACTIONS(3), + [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_comment] = ACTIONS(5), }, [150] = { - [sym_identifier] = ACTIONS(1325), - [aux_sym_preproc_include_token1] = ACTIONS(1325), - [aux_sym_preproc_def_token1] = ACTIONS(1325), - [aux_sym_preproc_if_token1] = ACTIONS(1325), - [aux_sym_preproc_if_token2] = ACTIONS(1325), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1325), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1325), - [aux_sym_preproc_else_token1] = ACTIONS(1325), - [aux_sym_preproc_elif_token1] = ACTIONS(1325), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1325), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1325), - [sym_preproc_directive] = ACTIONS(1325), - [anon_sym_LPAREN2] = ACTIONS(1327), - [anon_sym_BANG] = ACTIONS(1327), - [anon_sym_TILDE] = ACTIONS(1327), - [anon_sym_DASH] = ACTIONS(1325), - [anon_sym_PLUS] = ACTIONS(1325), - [anon_sym_STAR] = ACTIONS(1327), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_SEMI] = ACTIONS(1327), - [anon_sym___extension__] = ACTIONS(1325), - [anon_sym_typedef] = ACTIONS(1325), - [anon_sym_extern] = ACTIONS(1325), - [anon_sym___attribute__] = ACTIONS(1325), - [anon_sym___scanf] = ACTIONS(1325), - [anon_sym___printf] = ACTIONS(1325), - [anon_sym___read_mostly] = ACTIONS(1325), - [anon_sym___must_hold] = ACTIONS(1325), - [anon_sym___ro_after_init] = ACTIONS(1325), - [anon_sym___noreturn] = ACTIONS(1325), - [anon_sym___cold] = ACTIONS(1325), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1327), - [anon_sym___declspec] = ACTIONS(1325), - [anon_sym___init] = ACTIONS(1325), - [anon_sym___exit] = ACTIONS(1325), - [anon_sym___cdecl] = ACTIONS(1325), - [anon_sym___clrcall] = ACTIONS(1325), - [anon_sym___stdcall] = ACTIONS(1325), - [anon_sym___fastcall] = ACTIONS(1325), - [anon_sym___thiscall] = ACTIONS(1325), - [anon_sym___vectorcall] = ACTIONS(1325), - [anon_sym_LBRACE] = ACTIONS(1327), - [anon_sym_signed] = ACTIONS(1325), - [anon_sym_unsigned] = ACTIONS(1325), - [anon_sym_long] = ACTIONS(1325), - [anon_sym_short] = ACTIONS(1325), - [anon_sym_static] = ACTIONS(1325), - [anon_sym_auto] = ACTIONS(1325), - [anon_sym_register] = ACTIONS(1325), - [anon_sym_inline] = ACTIONS(1325), - [anon_sym___inline] = ACTIONS(1325), - [anon_sym___inline__] = ACTIONS(1325), - [anon_sym___forceinline] = ACTIONS(1325), - [anon_sym_thread_local] = ACTIONS(1325), - [anon_sym___thread] = ACTIONS(1325), - [anon_sym_const] = ACTIONS(1325), - [anon_sym_constexpr] = ACTIONS(1325), - [anon_sym_volatile] = ACTIONS(1325), - [anon_sym_restrict] = ACTIONS(1325), - [anon_sym___restrict__] = ACTIONS(1325), - [anon_sym__Atomic] = ACTIONS(1325), - [anon_sym__Noreturn] = ACTIONS(1325), - [anon_sym_noreturn] = ACTIONS(1325), - [anon_sym_alignas] = ACTIONS(1325), - [anon_sym__Alignas] = ACTIONS(1325), - [sym_primitive_type] = ACTIONS(1325), - [anon_sym_enum] = ACTIONS(1325), - [anon_sym_struct] = ACTIONS(1325), - [anon_sym_union] = ACTIONS(1325), - [anon_sym_if] = ACTIONS(1325), - [anon_sym_switch] = ACTIONS(1325), - [anon_sym_case] = ACTIONS(1325), - [anon_sym_default] = ACTIONS(1325), - [anon_sym_while] = ACTIONS(1325), - [anon_sym_do] = ACTIONS(1325), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_return] = ACTIONS(1325), - [anon_sym_break] = ACTIONS(1325), - [anon_sym_continue] = ACTIONS(1325), - [anon_sym_goto] = ACTIONS(1325), - [anon_sym___try] = ACTIONS(1325), - [anon_sym___leave] = ACTIONS(1325), - [anon_sym_DASH_DASH] = ACTIONS(1327), - [anon_sym_PLUS_PLUS] = ACTIONS(1327), - [anon_sym_sizeof] = ACTIONS(1325), - [anon_sym___alignof__] = ACTIONS(1325), - [anon_sym___alignof] = ACTIONS(1325), - [anon_sym__alignof] = ACTIONS(1325), - [anon_sym_alignof] = ACTIONS(1325), - [anon_sym__Alignof] = ACTIONS(1325), - [anon_sym_offsetof] = ACTIONS(1325), - [anon_sym__Generic] = ACTIONS(1325), - [anon_sym_asm] = ACTIONS(1325), - [anon_sym___asm__] = ACTIONS(1325), - [sym_number_literal] = ACTIONS(1327), - [anon_sym_L_SQUOTE] = ACTIONS(1327), - [anon_sym_u_SQUOTE] = ACTIONS(1327), - [anon_sym_U_SQUOTE] = ACTIONS(1327), - [anon_sym_u8_SQUOTE] = ACTIONS(1327), - [anon_sym_SQUOTE] = ACTIONS(1327), - [anon_sym_L_DQUOTE] = ACTIONS(1327), - [anon_sym_u_DQUOTE] = ACTIONS(1327), - [anon_sym_U_DQUOTE] = ACTIONS(1327), - [anon_sym_u8_DQUOTE] = ACTIONS(1327), - [anon_sym_DQUOTE] = ACTIONS(1327), - [sym_true] = ACTIONS(1325), - [sym_false] = ACTIONS(1325), - [anon_sym_NULL] = ACTIONS(1325), - [anon_sym_nullptr] = ACTIONS(1325), - [sym_comment] = ACTIONS(3), + [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_comment] = ACTIONS(5), }, [151] = { - [sym_identifier] = ACTIONS(1401), - [aux_sym_preproc_include_token1] = ACTIONS(1401), - [aux_sym_preproc_def_token1] = ACTIONS(1401), - [aux_sym_preproc_if_token1] = ACTIONS(1401), - [aux_sym_preproc_if_token2] = ACTIONS(1401), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1401), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1401), - [aux_sym_preproc_else_token1] = ACTIONS(1401), - [aux_sym_preproc_elif_token1] = ACTIONS(1401), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1401), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1401), - [sym_preproc_directive] = ACTIONS(1401), - [anon_sym_LPAREN2] = ACTIONS(1404), - [anon_sym_BANG] = ACTIONS(1404), - [anon_sym_TILDE] = ACTIONS(1404), - [anon_sym_DASH] = ACTIONS(1401), - [anon_sym_PLUS] = ACTIONS(1401), - [anon_sym_STAR] = ACTIONS(1404), - [anon_sym_AMP] = ACTIONS(1404), - [anon_sym_SEMI] = ACTIONS(1404), - [anon_sym___extension__] = ACTIONS(1401), - [anon_sym_typedef] = ACTIONS(1401), - [anon_sym_extern] = ACTIONS(1401), - [anon_sym___attribute__] = ACTIONS(1401), - [anon_sym___scanf] = ACTIONS(1401), - [anon_sym___printf] = ACTIONS(1401), - [anon_sym___read_mostly] = ACTIONS(1401), - [anon_sym___must_hold] = ACTIONS(1401), - [anon_sym___ro_after_init] = ACTIONS(1401), - [anon_sym___noreturn] = ACTIONS(1401), - [anon_sym___cold] = ACTIONS(1401), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1404), - [anon_sym___declspec] = ACTIONS(1401), - [anon_sym___init] = ACTIONS(1401), - [anon_sym___exit] = ACTIONS(1401), - [anon_sym___cdecl] = ACTIONS(1401), - [anon_sym___clrcall] = ACTIONS(1401), - [anon_sym___stdcall] = ACTIONS(1401), - [anon_sym___fastcall] = ACTIONS(1401), - [anon_sym___thiscall] = ACTIONS(1401), - [anon_sym___vectorcall] = ACTIONS(1401), - [anon_sym_LBRACE] = ACTIONS(1404), - [anon_sym_signed] = ACTIONS(1401), - [anon_sym_unsigned] = ACTIONS(1401), - [anon_sym_long] = ACTIONS(1401), - [anon_sym_short] = ACTIONS(1401), - [anon_sym_static] = ACTIONS(1401), - [anon_sym_auto] = ACTIONS(1401), - [anon_sym_register] = ACTIONS(1401), - [anon_sym_inline] = ACTIONS(1401), - [anon_sym___inline] = ACTIONS(1401), - [anon_sym___inline__] = ACTIONS(1401), - [anon_sym___forceinline] = ACTIONS(1401), - [anon_sym_thread_local] = ACTIONS(1401), - [anon_sym___thread] = ACTIONS(1401), - [anon_sym_const] = ACTIONS(1401), - [anon_sym_constexpr] = ACTIONS(1401), - [anon_sym_volatile] = ACTIONS(1401), - [anon_sym_restrict] = ACTIONS(1401), - [anon_sym___restrict__] = ACTIONS(1401), - [anon_sym__Atomic] = ACTIONS(1401), - [anon_sym__Noreturn] = ACTIONS(1401), - [anon_sym_noreturn] = ACTIONS(1401), - [anon_sym_alignas] = ACTIONS(1401), - [anon_sym__Alignas] = ACTIONS(1401), - [sym_primitive_type] = ACTIONS(1401), - [anon_sym_enum] = ACTIONS(1401), - [anon_sym_struct] = ACTIONS(1401), - [anon_sym_union] = ACTIONS(1401), - [anon_sym_if] = ACTIONS(1401), - [anon_sym_switch] = ACTIONS(1401), - [anon_sym_case] = ACTIONS(1401), - [anon_sym_default] = ACTIONS(1401), - [anon_sym_while] = ACTIONS(1401), - [anon_sym_do] = ACTIONS(1401), - [anon_sym_for] = ACTIONS(1401), - [anon_sym_return] = ACTIONS(1401), - [anon_sym_break] = ACTIONS(1401), - [anon_sym_continue] = ACTIONS(1401), - [anon_sym_goto] = ACTIONS(1401), - [anon_sym___try] = ACTIONS(1401), - [anon_sym___leave] = ACTIONS(1401), - [anon_sym_DASH_DASH] = ACTIONS(1404), - [anon_sym_PLUS_PLUS] = ACTIONS(1404), - [anon_sym_sizeof] = ACTIONS(1401), - [anon_sym___alignof__] = ACTIONS(1401), - [anon_sym___alignof] = ACTIONS(1401), - [anon_sym__alignof] = ACTIONS(1401), - [anon_sym_alignof] = ACTIONS(1401), - [anon_sym__Alignof] = ACTIONS(1401), - [anon_sym_offsetof] = ACTIONS(1401), - [anon_sym__Generic] = ACTIONS(1401), - [anon_sym_asm] = ACTIONS(1401), - [anon_sym___asm__] = ACTIONS(1401), - [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(1401), - [sym_false] = ACTIONS(1401), - [anon_sym_NULL] = ACTIONS(1401), - [anon_sym_nullptr] = ACTIONS(1401), - [sym_comment] = ACTIONS(3), + [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_comment] = ACTIONS(5), }, [152] = { - [sym_identifier] = ACTIONS(1407), - [aux_sym_preproc_include_token1] = ACTIONS(1407), - [aux_sym_preproc_def_token1] = ACTIONS(1407), - [aux_sym_preproc_if_token1] = ACTIONS(1407), - [aux_sym_preproc_if_token2] = ACTIONS(1407), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1407), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1407), - [aux_sym_preproc_else_token1] = ACTIONS(1407), - [aux_sym_preproc_elif_token1] = ACTIONS(1407), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1407), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1407), - [sym_preproc_directive] = ACTIONS(1407), - [anon_sym_LPAREN2] = ACTIONS(1409), - [anon_sym_BANG] = ACTIONS(1409), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1407), - [anon_sym_PLUS] = ACTIONS(1407), - [anon_sym_STAR] = ACTIONS(1409), - [anon_sym_AMP] = ACTIONS(1409), - [anon_sym_SEMI] = ACTIONS(1409), - [anon_sym___extension__] = ACTIONS(1407), - [anon_sym_typedef] = ACTIONS(1407), - [anon_sym_extern] = ACTIONS(1407), - [anon_sym___attribute__] = ACTIONS(1407), - [anon_sym___scanf] = ACTIONS(1407), - [anon_sym___printf] = ACTIONS(1407), - [anon_sym___read_mostly] = ACTIONS(1407), - [anon_sym___must_hold] = ACTIONS(1407), - [anon_sym___ro_after_init] = ACTIONS(1407), - [anon_sym___noreturn] = ACTIONS(1407), - [anon_sym___cold] = ACTIONS(1407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1409), - [anon_sym___declspec] = ACTIONS(1407), - [anon_sym___init] = ACTIONS(1407), - [anon_sym___exit] = ACTIONS(1407), - [anon_sym___cdecl] = ACTIONS(1407), - [anon_sym___clrcall] = ACTIONS(1407), - [anon_sym___stdcall] = ACTIONS(1407), - [anon_sym___fastcall] = ACTIONS(1407), - [anon_sym___thiscall] = ACTIONS(1407), - [anon_sym___vectorcall] = ACTIONS(1407), - [anon_sym_LBRACE] = ACTIONS(1409), - [anon_sym_signed] = ACTIONS(1407), - [anon_sym_unsigned] = ACTIONS(1407), - [anon_sym_long] = ACTIONS(1407), - [anon_sym_short] = ACTIONS(1407), - [anon_sym_static] = ACTIONS(1407), - [anon_sym_auto] = ACTIONS(1407), - [anon_sym_register] = ACTIONS(1407), - [anon_sym_inline] = ACTIONS(1407), - [anon_sym___inline] = ACTIONS(1407), - [anon_sym___inline__] = ACTIONS(1407), - [anon_sym___forceinline] = ACTIONS(1407), - [anon_sym_thread_local] = ACTIONS(1407), - [anon_sym___thread] = ACTIONS(1407), - [anon_sym_const] = ACTIONS(1407), - [anon_sym_constexpr] = ACTIONS(1407), - [anon_sym_volatile] = ACTIONS(1407), - [anon_sym_restrict] = ACTIONS(1407), - [anon_sym___restrict__] = ACTIONS(1407), - [anon_sym__Atomic] = ACTIONS(1407), - [anon_sym__Noreturn] = ACTIONS(1407), - [anon_sym_noreturn] = ACTIONS(1407), - [anon_sym_alignas] = ACTIONS(1407), - [anon_sym__Alignas] = ACTIONS(1407), - [sym_primitive_type] = ACTIONS(1407), - [anon_sym_enum] = ACTIONS(1407), - [anon_sym_struct] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1407), - [anon_sym_if] = ACTIONS(1407), - [anon_sym_switch] = ACTIONS(1407), - [anon_sym_case] = ACTIONS(1407), - [anon_sym_default] = ACTIONS(1407), - [anon_sym_while] = ACTIONS(1407), - [anon_sym_do] = ACTIONS(1407), - [anon_sym_for] = ACTIONS(1407), - [anon_sym_return] = ACTIONS(1407), - [anon_sym_break] = ACTIONS(1407), - [anon_sym_continue] = ACTIONS(1407), - [anon_sym_goto] = ACTIONS(1407), - [anon_sym___try] = ACTIONS(1407), - [anon_sym___leave] = ACTIONS(1407), - [anon_sym_DASH_DASH] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1409), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym___alignof__] = ACTIONS(1407), - [anon_sym___alignof] = ACTIONS(1407), - [anon_sym__alignof] = ACTIONS(1407), - [anon_sym_alignof] = ACTIONS(1407), - [anon_sym__Alignof] = ACTIONS(1407), - [anon_sym_offsetof] = ACTIONS(1407), - [anon_sym__Generic] = ACTIONS(1407), - [anon_sym_asm] = ACTIONS(1407), - [anon_sym___asm__] = ACTIONS(1407), - [sym_number_literal] = ACTIONS(1409), - [anon_sym_L_SQUOTE] = ACTIONS(1409), - [anon_sym_u_SQUOTE] = ACTIONS(1409), - [anon_sym_U_SQUOTE] = ACTIONS(1409), - [anon_sym_u8_SQUOTE] = ACTIONS(1409), - [anon_sym_SQUOTE] = ACTIONS(1409), - [anon_sym_L_DQUOTE] = ACTIONS(1409), - [anon_sym_u_DQUOTE] = ACTIONS(1409), - [anon_sym_U_DQUOTE] = ACTIONS(1409), - [anon_sym_u8_DQUOTE] = ACTIONS(1409), - [anon_sym_DQUOTE] = ACTIONS(1409), - [sym_true] = ACTIONS(1407), - [sym_false] = ACTIONS(1407), - [anon_sym_NULL] = ACTIONS(1407), - [anon_sym_nullptr] = ACTIONS(1407), - [sym_comment] = ACTIONS(3), + [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_comment] = ACTIONS(5), }, [153] = { - [sym_identifier] = ACTIONS(1289), - [aux_sym_preproc_include_token1] = ACTIONS(1289), - [aux_sym_preproc_def_token1] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1289), - [aux_sym_preproc_if_token2] = ACTIONS(1289), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1289), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1289), - [aux_sym_preproc_else_token1] = ACTIONS(1289), - [aux_sym_preproc_elif_token1] = ACTIONS(1289), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1289), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1289), - [sym_preproc_directive] = ACTIONS(1289), - [anon_sym_LPAREN2] = ACTIONS(1291), - [anon_sym_BANG] = ACTIONS(1291), - [anon_sym_TILDE] = ACTIONS(1291), - [anon_sym_DASH] = ACTIONS(1289), - [anon_sym_PLUS] = ACTIONS(1289), - [anon_sym_STAR] = ACTIONS(1291), - [anon_sym_AMP] = ACTIONS(1291), - [anon_sym_SEMI] = ACTIONS(1291), - [anon_sym___extension__] = ACTIONS(1289), - [anon_sym_typedef] = ACTIONS(1289), - [anon_sym_extern] = ACTIONS(1289), - [anon_sym___attribute__] = ACTIONS(1289), - [anon_sym___scanf] = ACTIONS(1289), - [anon_sym___printf] = ACTIONS(1289), - [anon_sym___read_mostly] = ACTIONS(1289), - [anon_sym___must_hold] = ACTIONS(1289), - [anon_sym___ro_after_init] = ACTIONS(1289), - [anon_sym___noreturn] = ACTIONS(1289), - [anon_sym___cold] = ACTIONS(1289), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1291), - [anon_sym___declspec] = ACTIONS(1289), - [anon_sym___init] = ACTIONS(1289), - [anon_sym___exit] = ACTIONS(1289), - [anon_sym___cdecl] = ACTIONS(1289), - [anon_sym___clrcall] = ACTIONS(1289), - [anon_sym___stdcall] = ACTIONS(1289), - [anon_sym___fastcall] = ACTIONS(1289), - [anon_sym___thiscall] = ACTIONS(1289), - [anon_sym___vectorcall] = ACTIONS(1289), - [anon_sym_LBRACE] = ACTIONS(1291), - [anon_sym_signed] = ACTIONS(1289), - [anon_sym_unsigned] = ACTIONS(1289), - [anon_sym_long] = ACTIONS(1289), - [anon_sym_short] = ACTIONS(1289), - [anon_sym_static] = ACTIONS(1289), - [anon_sym_auto] = ACTIONS(1289), - [anon_sym_register] = ACTIONS(1289), - [anon_sym_inline] = ACTIONS(1289), - [anon_sym___inline] = ACTIONS(1289), - [anon_sym___inline__] = ACTIONS(1289), - [anon_sym___forceinline] = ACTIONS(1289), - [anon_sym_thread_local] = ACTIONS(1289), - [anon_sym___thread] = ACTIONS(1289), - [anon_sym_const] = ACTIONS(1289), - [anon_sym_constexpr] = ACTIONS(1289), - [anon_sym_volatile] = ACTIONS(1289), - [anon_sym_restrict] = ACTIONS(1289), - [anon_sym___restrict__] = ACTIONS(1289), - [anon_sym__Atomic] = ACTIONS(1289), - [anon_sym__Noreturn] = ACTIONS(1289), - [anon_sym_noreturn] = ACTIONS(1289), - [anon_sym_alignas] = ACTIONS(1289), - [anon_sym__Alignas] = ACTIONS(1289), - [sym_primitive_type] = ACTIONS(1289), - [anon_sym_enum] = ACTIONS(1289), - [anon_sym_struct] = ACTIONS(1289), - [anon_sym_union] = ACTIONS(1289), - [anon_sym_if] = ACTIONS(1289), - [anon_sym_switch] = ACTIONS(1289), - [anon_sym_case] = ACTIONS(1289), - [anon_sym_default] = ACTIONS(1289), - [anon_sym_while] = ACTIONS(1289), - [anon_sym_do] = ACTIONS(1289), - [anon_sym_for] = ACTIONS(1289), - [anon_sym_return] = ACTIONS(1289), - [anon_sym_break] = ACTIONS(1289), - [anon_sym_continue] = ACTIONS(1289), - [anon_sym_goto] = ACTIONS(1289), - [anon_sym___try] = ACTIONS(1289), - [anon_sym___leave] = ACTIONS(1289), - [anon_sym_DASH_DASH] = ACTIONS(1291), - [anon_sym_PLUS_PLUS] = ACTIONS(1291), - [anon_sym_sizeof] = ACTIONS(1289), - [anon_sym___alignof__] = ACTIONS(1289), - [anon_sym___alignof] = ACTIONS(1289), - [anon_sym__alignof] = ACTIONS(1289), - [anon_sym_alignof] = ACTIONS(1289), - [anon_sym__Alignof] = ACTIONS(1289), - [anon_sym_offsetof] = ACTIONS(1289), - [anon_sym__Generic] = ACTIONS(1289), - [anon_sym_asm] = ACTIONS(1289), - [anon_sym___asm__] = ACTIONS(1289), - [sym_number_literal] = ACTIONS(1291), - [anon_sym_L_SQUOTE] = ACTIONS(1291), - [anon_sym_u_SQUOTE] = ACTIONS(1291), - [anon_sym_U_SQUOTE] = ACTIONS(1291), - [anon_sym_u8_SQUOTE] = ACTIONS(1291), - [anon_sym_SQUOTE] = ACTIONS(1291), - [anon_sym_L_DQUOTE] = ACTIONS(1291), - [anon_sym_u_DQUOTE] = ACTIONS(1291), - [anon_sym_U_DQUOTE] = ACTIONS(1291), - [anon_sym_u8_DQUOTE] = ACTIONS(1291), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_true] = ACTIONS(1289), - [sym_false] = ACTIONS(1289), - [anon_sym_NULL] = ACTIONS(1289), - [anon_sym_nullptr] = ACTIONS(1289), - [sym_comment] = ACTIONS(3), + [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_comment] = ACTIONS(5), }, [154] = { - [sym_identifier] = ACTIONS(1407), - [aux_sym_preproc_include_token1] = ACTIONS(1407), - [aux_sym_preproc_def_token1] = ACTIONS(1407), - [aux_sym_preproc_if_token1] = ACTIONS(1407), - [aux_sym_preproc_if_token2] = ACTIONS(1407), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1407), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1407), - [aux_sym_preproc_else_token1] = ACTIONS(1407), - [aux_sym_preproc_elif_token1] = ACTIONS(1407), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1407), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1407), - [sym_preproc_directive] = ACTIONS(1407), - [anon_sym_LPAREN2] = ACTIONS(1409), - [anon_sym_BANG] = ACTIONS(1409), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1407), - [anon_sym_PLUS] = ACTIONS(1407), - [anon_sym_STAR] = ACTIONS(1409), - [anon_sym_AMP] = ACTIONS(1409), - [anon_sym_SEMI] = ACTIONS(1409), - [anon_sym___extension__] = ACTIONS(1407), - [anon_sym_typedef] = ACTIONS(1407), - [anon_sym_extern] = ACTIONS(1407), - [anon_sym___attribute__] = ACTIONS(1407), - [anon_sym___scanf] = ACTIONS(1407), - [anon_sym___printf] = ACTIONS(1407), - [anon_sym___read_mostly] = ACTIONS(1407), - [anon_sym___must_hold] = ACTIONS(1407), - [anon_sym___ro_after_init] = ACTIONS(1407), - [anon_sym___noreturn] = ACTIONS(1407), - [anon_sym___cold] = ACTIONS(1407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1409), - [anon_sym___declspec] = ACTIONS(1407), - [anon_sym___init] = ACTIONS(1407), - [anon_sym___exit] = ACTIONS(1407), - [anon_sym___cdecl] = ACTIONS(1407), - [anon_sym___clrcall] = ACTIONS(1407), - [anon_sym___stdcall] = ACTIONS(1407), - [anon_sym___fastcall] = ACTIONS(1407), - [anon_sym___thiscall] = ACTIONS(1407), - [anon_sym___vectorcall] = ACTIONS(1407), - [anon_sym_LBRACE] = ACTIONS(1409), - [anon_sym_signed] = ACTIONS(1407), - [anon_sym_unsigned] = ACTIONS(1407), - [anon_sym_long] = ACTIONS(1407), - [anon_sym_short] = ACTIONS(1407), - [anon_sym_static] = ACTIONS(1407), - [anon_sym_auto] = ACTIONS(1407), - [anon_sym_register] = ACTIONS(1407), - [anon_sym_inline] = ACTIONS(1407), - [anon_sym___inline] = ACTIONS(1407), - [anon_sym___inline__] = ACTIONS(1407), - [anon_sym___forceinline] = ACTIONS(1407), - [anon_sym_thread_local] = ACTIONS(1407), - [anon_sym___thread] = ACTIONS(1407), - [anon_sym_const] = ACTIONS(1407), - [anon_sym_constexpr] = ACTIONS(1407), - [anon_sym_volatile] = ACTIONS(1407), - [anon_sym_restrict] = ACTIONS(1407), - [anon_sym___restrict__] = ACTIONS(1407), - [anon_sym__Atomic] = ACTIONS(1407), - [anon_sym__Noreturn] = ACTIONS(1407), - [anon_sym_noreturn] = ACTIONS(1407), - [anon_sym_alignas] = ACTIONS(1407), - [anon_sym__Alignas] = ACTIONS(1407), - [sym_primitive_type] = ACTIONS(1407), - [anon_sym_enum] = ACTIONS(1407), - [anon_sym_struct] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1407), - [anon_sym_if] = ACTIONS(1407), - [anon_sym_switch] = ACTIONS(1407), - [anon_sym_case] = ACTIONS(1407), - [anon_sym_default] = ACTIONS(1407), - [anon_sym_while] = ACTIONS(1407), - [anon_sym_do] = ACTIONS(1407), - [anon_sym_for] = ACTIONS(1407), - [anon_sym_return] = ACTIONS(1407), - [anon_sym_break] = ACTIONS(1407), - [anon_sym_continue] = ACTIONS(1407), - [anon_sym_goto] = ACTIONS(1407), - [anon_sym___try] = ACTIONS(1407), - [anon_sym___leave] = ACTIONS(1407), - [anon_sym_DASH_DASH] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1409), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym___alignof__] = ACTIONS(1407), - [anon_sym___alignof] = ACTIONS(1407), - [anon_sym__alignof] = ACTIONS(1407), - [anon_sym_alignof] = ACTIONS(1407), - [anon_sym__Alignof] = ACTIONS(1407), - [anon_sym_offsetof] = ACTIONS(1407), - [anon_sym__Generic] = ACTIONS(1407), - [anon_sym_asm] = ACTIONS(1407), - [anon_sym___asm__] = ACTIONS(1407), - [sym_number_literal] = ACTIONS(1409), - [anon_sym_L_SQUOTE] = ACTIONS(1409), - [anon_sym_u_SQUOTE] = ACTIONS(1409), - [anon_sym_U_SQUOTE] = ACTIONS(1409), - [anon_sym_u8_SQUOTE] = ACTIONS(1409), - [anon_sym_SQUOTE] = ACTIONS(1409), - [anon_sym_L_DQUOTE] = ACTIONS(1409), - [anon_sym_u_DQUOTE] = ACTIONS(1409), - [anon_sym_U_DQUOTE] = ACTIONS(1409), - [anon_sym_u8_DQUOTE] = ACTIONS(1409), - [anon_sym_DQUOTE] = ACTIONS(1409), - [sym_true] = ACTIONS(1407), - [sym_false] = ACTIONS(1407), - [anon_sym_NULL] = ACTIONS(1407), - [anon_sym_nullptr] = ACTIONS(1407), - [sym_comment] = ACTIONS(3), + [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_comment] = ACTIONS(5), }, [155] = { - [sym_identifier] = ACTIONS(1411), - [aux_sym_preproc_include_token1] = ACTIONS(1411), - [aux_sym_preproc_def_token1] = ACTIONS(1411), - [aux_sym_preproc_if_token1] = ACTIONS(1411), - [aux_sym_preproc_if_token2] = ACTIONS(1411), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1411), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1411), - [aux_sym_preproc_else_token1] = ACTIONS(1411), - [aux_sym_preproc_elif_token1] = ACTIONS(1411), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1411), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1411), - [sym_preproc_directive] = ACTIONS(1411), - [anon_sym_LPAREN2] = ACTIONS(1413), - [anon_sym_BANG] = ACTIONS(1413), - [anon_sym_TILDE] = ACTIONS(1413), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(1413), - [anon_sym_SEMI] = ACTIONS(1413), - [anon_sym___extension__] = ACTIONS(1411), - [anon_sym_typedef] = ACTIONS(1411), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym___attribute__] = ACTIONS(1411), - [anon_sym___scanf] = ACTIONS(1411), - [anon_sym___printf] = ACTIONS(1411), - [anon_sym___read_mostly] = ACTIONS(1411), - [anon_sym___must_hold] = ACTIONS(1411), - [anon_sym___ro_after_init] = ACTIONS(1411), - [anon_sym___noreturn] = ACTIONS(1411), - [anon_sym___cold] = ACTIONS(1411), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(1411), - [anon_sym___init] = ACTIONS(1411), - [anon_sym___exit] = ACTIONS(1411), - [anon_sym___cdecl] = ACTIONS(1411), - [anon_sym___clrcall] = ACTIONS(1411), - [anon_sym___stdcall] = ACTIONS(1411), - [anon_sym___fastcall] = ACTIONS(1411), - [anon_sym___thiscall] = ACTIONS(1411), - [anon_sym___vectorcall] = ACTIONS(1411), - [anon_sym_LBRACE] = ACTIONS(1413), - [anon_sym_signed] = ACTIONS(1411), - [anon_sym_unsigned] = ACTIONS(1411), - [anon_sym_long] = ACTIONS(1411), - [anon_sym_short] = ACTIONS(1411), - [anon_sym_static] = ACTIONS(1411), - [anon_sym_auto] = ACTIONS(1411), - [anon_sym_register] = ACTIONS(1411), - [anon_sym_inline] = ACTIONS(1411), - [anon_sym___inline] = ACTIONS(1411), - [anon_sym___inline__] = ACTIONS(1411), - [anon_sym___forceinline] = ACTIONS(1411), - [anon_sym_thread_local] = ACTIONS(1411), - [anon_sym___thread] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1411), - [anon_sym_constexpr] = ACTIONS(1411), - [anon_sym_volatile] = ACTIONS(1411), - [anon_sym_restrict] = ACTIONS(1411), - [anon_sym___restrict__] = ACTIONS(1411), - [anon_sym__Atomic] = ACTIONS(1411), - [anon_sym__Noreturn] = ACTIONS(1411), - [anon_sym_noreturn] = ACTIONS(1411), - [anon_sym_alignas] = ACTIONS(1411), - [anon_sym__Alignas] = ACTIONS(1411), - [sym_primitive_type] = ACTIONS(1411), - [anon_sym_enum] = ACTIONS(1411), - [anon_sym_struct] = ACTIONS(1411), - [anon_sym_union] = ACTIONS(1411), - [anon_sym_if] = ACTIONS(1411), - [anon_sym_switch] = ACTIONS(1411), - [anon_sym_case] = ACTIONS(1411), - [anon_sym_default] = ACTIONS(1411), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(1411), - [anon_sym_for] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_break] = ACTIONS(1411), - [anon_sym_continue] = ACTIONS(1411), - [anon_sym_goto] = ACTIONS(1411), - [anon_sym___try] = ACTIONS(1411), - [anon_sym___leave] = ACTIONS(1411), - [anon_sym_DASH_DASH] = ACTIONS(1413), - [anon_sym_PLUS_PLUS] = ACTIONS(1413), - [anon_sym_sizeof] = ACTIONS(1411), - [anon_sym___alignof__] = ACTIONS(1411), - [anon_sym___alignof] = ACTIONS(1411), - [anon_sym__alignof] = ACTIONS(1411), - [anon_sym_alignof] = ACTIONS(1411), - [anon_sym__Alignof] = ACTIONS(1411), - [anon_sym_offsetof] = ACTIONS(1411), - [anon_sym__Generic] = ACTIONS(1411), - [anon_sym_asm] = ACTIONS(1411), - [anon_sym___asm__] = ACTIONS(1411), - [sym_number_literal] = ACTIONS(1413), - [anon_sym_L_SQUOTE] = ACTIONS(1413), - [anon_sym_u_SQUOTE] = ACTIONS(1413), - [anon_sym_U_SQUOTE] = ACTIONS(1413), - [anon_sym_u8_SQUOTE] = ACTIONS(1413), - [anon_sym_SQUOTE] = ACTIONS(1413), - [anon_sym_L_DQUOTE] = ACTIONS(1413), - [anon_sym_u_DQUOTE] = ACTIONS(1413), - [anon_sym_U_DQUOTE] = ACTIONS(1413), - [anon_sym_u8_DQUOTE] = ACTIONS(1413), - [anon_sym_DQUOTE] = ACTIONS(1413), - [sym_true] = ACTIONS(1411), - [sym_false] = ACTIONS(1411), - [anon_sym_NULL] = ACTIONS(1411), - [anon_sym_nullptr] = ACTIONS(1411), - [sym_comment] = ACTIONS(3), + [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_comment] = ACTIONS(5), }, [156] = { - [sym_identifier] = ACTIONS(1411), - [aux_sym_preproc_include_token1] = ACTIONS(1411), - [aux_sym_preproc_def_token1] = ACTIONS(1411), - [aux_sym_preproc_if_token1] = ACTIONS(1411), - [aux_sym_preproc_if_token2] = ACTIONS(1411), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1411), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1411), - [aux_sym_preproc_else_token1] = ACTIONS(1411), - [aux_sym_preproc_elif_token1] = ACTIONS(1411), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1411), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1411), - [sym_preproc_directive] = ACTIONS(1411), - [anon_sym_LPAREN2] = ACTIONS(1413), - [anon_sym_BANG] = ACTIONS(1413), - [anon_sym_TILDE] = ACTIONS(1413), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(1413), - [anon_sym_SEMI] = ACTIONS(1413), - [anon_sym___extension__] = ACTIONS(1411), - [anon_sym_typedef] = ACTIONS(1411), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym___attribute__] = ACTIONS(1411), - [anon_sym___scanf] = ACTIONS(1411), - [anon_sym___printf] = ACTIONS(1411), - [anon_sym___read_mostly] = ACTIONS(1411), - [anon_sym___must_hold] = ACTIONS(1411), - [anon_sym___ro_after_init] = ACTIONS(1411), - [anon_sym___noreturn] = ACTIONS(1411), - [anon_sym___cold] = ACTIONS(1411), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(1411), - [anon_sym___init] = ACTIONS(1411), - [anon_sym___exit] = ACTIONS(1411), - [anon_sym___cdecl] = ACTIONS(1411), - [anon_sym___clrcall] = ACTIONS(1411), - [anon_sym___stdcall] = ACTIONS(1411), - [anon_sym___fastcall] = ACTIONS(1411), - [anon_sym___thiscall] = ACTIONS(1411), - [anon_sym___vectorcall] = ACTIONS(1411), - [anon_sym_LBRACE] = ACTIONS(1413), - [anon_sym_signed] = ACTIONS(1411), - [anon_sym_unsigned] = ACTIONS(1411), - [anon_sym_long] = ACTIONS(1411), - [anon_sym_short] = ACTIONS(1411), - [anon_sym_static] = ACTIONS(1411), - [anon_sym_auto] = ACTIONS(1411), - [anon_sym_register] = ACTIONS(1411), - [anon_sym_inline] = ACTIONS(1411), - [anon_sym___inline] = ACTIONS(1411), - [anon_sym___inline__] = ACTIONS(1411), - [anon_sym___forceinline] = ACTIONS(1411), - [anon_sym_thread_local] = ACTIONS(1411), - [anon_sym___thread] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1411), - [anon_sym_constexpr] = ACTIONS(1411), - [anon_sym_volatile] = ACTIONS(1411), - [anon_sym_restrict] = ACTIONS(1411), - [anon_sym___restrict__] = ACTIONS(1411), - [anon_sym__Atomic] = ACTIONS(1411), - [anon_sym__Noreturn] = ACTIONS(1411), - [anon_sym_noreturn] = ACTIONS(1411), - [anon_sym_alignas] = ACTIONS(1411), - [anon_sym__Alignas] = ACTIONS(1411), - [sym_primitive_type] = ACTIONS(1411), - [anon_sym_enum] = ACTIONS(1411), - [anon_sym_struct] = ACTIONS(1411), - [anon_sym_union] = ACTIONS(1411), - [anon_sym_if] = ACTIONS(1411), - [anon_sym_switch] = ACTIONS(1411), - [anon_sym_case] = ACTIONS(1411), - [anon_sym_default] = ACTIONS(1411), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(1411), - [anon_sym_for] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_break] = ACTIONS(1411), - [anon_sym_continue] = ACTIONS(1411), - [anon_sym_goto] = ACTIONS(1411), - [anon_sym___try] = ACTIONS(1411), - [anon_sym___leave] = ACTIONS(1411), - [anon_sym_DASH_DASH] = ACTIONS(1413), - [anon_sym_PLUS_PLUS] = ACTIONS(1413), - [anon_sym_sizeof] = ACTIONS(1411), - [anon_sym___alignof__] = ACTIONS(1411), - [anon_sym___alignof] = ACTIONS(1411), - [anon_sym__alignof] = ACTIONS(1411), - [anon_sym_alignof] = ACTIONS(1411), - [anon_sym__Alignof] = ACTIONS(1411), - [anon_sym_offsetof] = ACTIONS(1411), - [anon_sym__Generic] = ACTIONS(1411), - [anon_sym_asm] = ACTIONS(1411), - [anon_sym___asm__] = ACTIONS(1411), - [sym_number_literal] = ACTIONS(1413), - [anon_sym_L_SQUOTE] = ACTIONS(1413), - [anon_sym_u_SQUOTE] = ACTIONS(1413), - [anon_sym_U_SQUOTE] = ACTIONS(1413), - [anon_sym_u8_SQUOTE] = ACTIONS(1413), - [anon_sym_SQUOTE] = ACTIONS(1413), - [anon_sym_L_DQUOTE] = ACTIONS(1413), - [anon_sym_u_DQUOTE] = ACTIONS(1413), - [anon_sym_U_DQUOTE] = ACTIONS(1413), - [anon_sym_u8_DQUOTE] = ACTIONS(1413), - [anon_sym_DQUOTE] = ACTIONS(1413), - [sym_true] = ACTIONS(1411), - [sym_false] = ACTIONS(1411), - [anon_sym_NULL] = ACTIONS(1411), - [anon_sym_nullptr] = ACTIONS(1411), - [sym_comment] = ACTIONS(3), + [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_comment] = ACTIONS(5), }, [157] = { - [sym_identifier] = ACTIONS(1415), - [aux_sym_preproc_include_token1] = ACTIONS(1415), - [aux_sym_preproc_def_token1] = ACTIONS(1415), - [aux_sym_preproc_if_token1] = ACTIONS(1415), - [aux_sym_preproc_if_token2] = ACTIONS(1415), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1415), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1415), - [aux_sym_preproc_else_token1] = ACTIONS(1415), - [aux_sym_preproc_elif_token1] = ACTIONS(1415), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1415), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1415), - [sym_preproc_directive] = ACTIONS(1415), - [anon_sym_LPAREN2] = ACTIONS(1417), - [anon_sym_BANG] = ACTIONS(1417), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1415), - [anon_sym_PLUS] = ACTIONS(1415), - [anon_sym_STAR] = ACTIONS(1417), - [anon_sym_AMP] = ACTIONS(1417), - [anon_sym_SEMI] = ACTIONS(1417), - [anon_sym___extension__] = ACTIONS(1415), - [anon_sym_typedef] = ACTIONS(1415), - [anon_sym_extern] = ACTIONS(1415), - [anon_sym___attribute__] = ACTIONS(1415), - [anon_sym___scanf] = ACTIONS(1415), - [anon_sym___printf] = ACTIONS(1415), - [anon_sym___read_mostly] = ACTIONS(1415), - [anon_sym___must_hold] = ACTIONS(1415), - [anon_sym___ro_after_init] = ACTIONS(1415), - [anon_sym___noreturn] = ACTIONS(1415), - [anon_sym___cold] = ACTIONS(1415), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1417), - [anon_sym___declspec] = ACTIONS(1415), - [anon_sym___init] = ACTIONS(1415), - [anon_sym___exit] = ACTIONS(1415), - [anon_sym___cdecl] = ACTIONS(1415), - [anon_sym___clrcall] = ACTIONS(1415), - [anon_sym___stdcall] = ACTIONS(1415), - [anon_sym___fastcall] = ACTIONS(1415), - [anon_sym___thiscall] = ACTIONS(1415), - [anon_sym___vectorcall] = ACTIONS(1415), - [anon_sym_LBRACE] = ACTIONS(1417), - [anon_sym_signed] = ACTIONS(1415), - [anon_sym_unsigned] = ACTIONS(1415), - [anon_sym_long] = ACTIONS(1415), - [anon_sym_short] = ACTIONS(1415), - [anon_sym_static] = ACTIONS(1415), - [anon_sym_auto] = ACTIONS(1415), - [anon_sym_register] = ACTIONS(1415), - [anon_sym_inline] = ACTIONS(1415), - [anon_sym___inline] = ACTIONS(1415), - [anon_sym___inline__] = ACTIONS(1415), - [anon_sym___forceinline] = ACTIONS(1415), - [anon_sym_thread_local] = ACTIONS(1415), - [anon_sym___thread] = ACTIONS(1415), - [anon_sym_const] = ACTIONS(1415), - [anon_sym_constexpr] = ACTIONS(1415), - [anon_sym_volatile] = ACTIONS(1415), - [anon_sym_restrict] = ACTIONS(1415), - [anon_sym___restrict__] = ACTIONS(1415), - [anon_sym__Atomic] = ACTIONS(1415), - [anon_sym__Noreturn] = ACTIONS(1415), - [anon_sym_noreturn] = ACTIONS(1415), - [anon_sym_alignas] = ACTIONS(1415), - [anon_sym__Alignas] = ACTIONS(1415), - [sym_primitive_type] = ACTIONS(1415), - [anon_sym_enum] = ACTIONS(1415), - [anon_sym_struct] = ACTIONS(1415), - [anon_sym_union] = ACTIONS(1415), - [anon_sym_if] = ACTIONS(1415), - [anon_sym_switch] = ACTIONS(1415), - [anon_sym_case] = ACTIONS(1415), - [anon_sym_default] = ACTIONS(1415), - [anon_sym_while] = ACTIONS(1415), - [anon_sym_do] = ACTIONS(1415), - [anon_sym_for] = ACTIONS(1415), - [anon_sym_return] = ACTIONS(1415), - [anon_sym_break] = ACTIONS(1415), - [anon_sym_continue] = ACTIONS(1415), - [anon_sym_goto] = ACTIONS(1415), - [anon_sym___try] = ACTIONS(1415), - [anon_sym___leave] = ACTIONS(1415), - [anon_sym_DASH_DASH] = ACTIONS(1417), - [anon_sym_PLUS_PLUS] = ACTIONS(1417), - [anon_sym_sizeof] = ACTIONS(1415), - [anon_sym___alignof__] = ACTIONS(1415), - [anon_sym___alignof] = ACTIONS(1415), - [anon_sym__alignof] = ACTIONS(1415), - [anon_sym_alignof] = ACTIONS(1415), - [anon_sym__Alignof] = ACTIONS(1415), - [anon_sym_offsetof] = ACTIONS(1415), - [anon_sym__Generic] = ACTIONS(1415), - [anon_sym_asm] = ACTIONS(1415), - [anon_sym___asm__] = ACTIONS(1415), - [sym_number_literal] = ACTIONS(1417), - [anon_sym_L_SQUOTE] = ACTIONS(1417), - [anon_sym_u_SQUOTE] = ACTIONS(1417), - [anon_sym_U_SQUOTE] = ACTIONS(1417), - [anon_sym_u8_SQUOTE] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1417), - [anon_sym_L_DQUOTE] = ACTIONS(1417), - [anon_sym_u_DQUOTE] = ACTIONS(1417), - [anon_sym_U_DQUOTE] = ACTIONS(1417), - [anon_sym_u8_DQUOTE] = ACTIONS(1417), - [anon_sym_DQUOTE] = ACTIONS(1417), - [sym_true] = ACTIONS(1415), - [sym_false] = ACTIONS(1415), - [anon_sym_NULL] = ACTIONS(1415), - [anon_sym_nullptr] = ACTIONS(1415), - [sym_comment] = ACTIONS(3), + [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_comment] = ACTIONS(5), }, [158] = { - [sym_identifier] = ACTIONS(1419), - [aux_sym_preproc_include_token1] = ACTIONS(1419), - [aux_sym_preproc_def_token1] = ACTIONS(1419), - [aux_sym_preproc_if_token1] = ACTIONS(1419), - [aux_sym_preproc_if_token2] = ACTIONS(1419), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1419), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1419), - [aux_sym_preproc_else_token1] = ACTIONS(1419), - [aux_sym_preproc_elif_token1] = ACTIONS(1419), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1419), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1419), - [sym_preproc_directive] = ACTIONS(1419), - [anon_sym_LPAREN2] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_SEMI] = ACTIONS(1421), - [anon_sym___extension__] = ACTIONS(1419), - [anon_sym_typedef] = ACTIONS(1419), - [anon_sym_extern] = ACTIONS(1419), - [anon_sym___attribute__] = ACTIONS(1419), - [anon_sym___scanf] = ACTIONS(1419), - [anon_sym___printf] = ACTIONS(1419), - [anon_sym___read_mostly] = ACTIONS(1419), - [anon_sym___must_hold] = ACTIONS(1419), - [anon_sym___ro_after_init] = ACTIONS(1419), - [anon_sym___noreturn] = ACTIONS(1419), - [anon_sym___cold] = ACTIONS(1419), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1421), - [anon_sym___declspec] = ACTIONS(1419), - [anon_sym___init] = ACTIONS(1419), - [anon_sym___exit] = ACTIONS(1419), - [anon_sym___cdecl] = ACTIONS(1419), - [anon_sym___clrcall] = ACTIONS(1419), - [anon_sym___stdcall] = ACTIONS(1419), - [anon_sym___fastcall] = ACTIONS(1419), - [anon_sym___thiscall] = ACTIONS(1419), - [anon_sym___vectorcall] = ACTIONS(1419), - [anon_sym_LBRACE] = ACTIONS(1421), - [anon_sym_signed] = ACTIONS(1419), - [anon_sym_unsigned] = ACTIONS(1419), - [anon_sym_long] = ACTIONS(1419), - [anon_sym_short] = ACTIONS(1419), - [anon_sym_static] = ACTIONS(1419), - [anon_sym_auto] = ACTIONS(1419), - [anon_sym_register] = ACTIONS(1419), - [anon_sym_inline] = ACTIONS(1419), - [anon_sym___inline] = ACTIONS(1419), - [anon_sym___inline__] = ACTIONS(1419), - [anon_sym___forceinline] = ACTIONS(1419), - [anon_sym_thread_local] = ACTIONS(1419), - [anon_sym___thread] = ACTIONS(1419), - [anon_sym_const] = ACTIONS(1419), - [anon_sym_constexpr] = ACTIONS(1419), - [anon_sym_volatile] = ACTIONS(1419), - [anon_sym_restrict] = ACTIONS(1419), - [anon_sym___restrict__] = ACTIONS(1419), - [anon_sym__Atomic] = ACTIONS(1419), - [anon_sym__Noreturn] = ACTIONS(1419), - [anon_sym_noreturn] = ACTIONS(1419), - [anon_sym_alignas] = ACTIONS(1419), - [anon_sym__Alignas] = ACTIONS(1419), - [sym_primitive_type] = ACTIONS(1419), - [anon_sym_enum] = ACTIONS(1419), - [anon_sym_struct] = ACTIONS(1419), - [anon_sym_union] = ACTIONS(1419), - [anon_sym_if] = ACTIONS(1419), - [anon_sym_switch] = ACTIONS(1419), - [anon_sym_case] = ACTIONS(1419), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_while] = ACTIONS(1419), - [anon_sym_do] = ACTIONS(1419), - [anon_sym_for] = ACTIONS(1419), - [anon_sym_return] = ACTIONS(1419), - [anon_sym_break] = ACTIONS(1419), - [anon_sym_continue] = ACTIONS(1419), - [anon_sym_goto] = ACTIONS(1419), - [anon_sym___try] = ACTIONS(1419), - [anon_sym___leave] = ACTIONS(1419), - [anon_sym_DASH_DASH] = ACTIONS(1421), - [anon_sym_PLUS_PLUS] = ACTIONS(1421), - [anon_sym_sizeof] = ACTIONS(1419), - [anon_sym___alignof__] = ACTIONS(1419), - [anon_sym___alignof] = ACTIONS(1419), - [anon_sym__alignof] = ACTIONS(1419), - [anon_sym_alignof] = ACTIONS(1419), - [anon_sym__Alignof] = ACTIONS(1419), - [anon_sym_offsetof] = ACTIONS(1419), - [anon_sym__Generic] = ACTIONS(1419), - [anon_sym_asm] = ACTIONS(1419), - [anon_sym___asm__] = ACTIONS(1419), - [sym_number_literal] = ACTIONS(1421), - [anon_sym_L_SQUOTE] = ACTIONS(1421), - [anon_sym_u_SQUOTE] = ACTIONS(1421), - [anon_sym_U_SQUOTE] = ACTIONS(1421), - [anon_sym_u8_SQUOTE] = ACTIONS(1421), - [anon_sym_SQUOTE] = ACTIONS(1421), - [anon_sym_L_DQUOTE] = ACTIONS(1421), - [anon_sym_u_DQUOTE] = ACTIONS(1421), - [anon_sym_U_DQUOTE] = ACTIONS(1421), - [anon_sym_u8_DQUOTE] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1421), - [sym_true] = ACTIONS(1419), - [sym_false] = ACTIONS(1419), - [anon_sym_NULL] = ACTIONS(1419), - [anon_sym_nullptr] = ACTIONS(1419), - [sym_comment] = ACTIONS(3), + [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_comment] = ACTIONS(5), }, [159] = { - [sym_else_clause] = STATE(239), - [sym_identifier] = ACTIONS(1147), - [aux_sym_preproc_include_token1] = ACTIONS(1147), - [aux_sym_preproc_def_token1] = ACTIONS(1147), - [aux_sym_preproc_if_token1] = ACTIONS(1147), - [aux_sym_preproc_if_token2] = ACTIONS(1147), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1147), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1147), - [sym_preproc_directive] = ACTIONS(1147), - [anon_sym_LPAREN2] = ACTIONS(1149), - [anon_sym_BANG] = ACTIONS(1149), - [anon_sym_TILDE] = ACTIONS(1149), - [anon_sym_DASH] = ACTIONS(1147), - [anon_sym_PLUS] = ACTIONS(1147), - [anon_sym_STAR] = ACTIONS(1149), - [anon_sym_AMP] = ACTIONS(1149), - [anon_sym_SEMI] = ACTIONS(1149), - [anon_sym___extension__] = ACTIONS(1147), - [anon_sym_typedef] = ACTIONS(1147), - [anon_sym_extern] = ACTIONS(1147), - [anon_sym___attribute__] = ACTIONS(1147), - [anon_sym___scanf] = ACTIONS(1147), - [anon_sym___printf] = ACTIONS(1147), - [anon_sym___read_mostly] = ACTIONS(1147), - [anon_sym___must_hold] = ACTIONS(1147), - [anon_sym___ro_after_init] = ACTIONS(1147), - [anon_sym___noreturn] = ACTIONS(1147), - [anon_sym___cold] = ACTIONS(1147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1149), - [anon_sym___declspec] = ACTIONS(1147), - [anon_sym___init] = ACTIONS(1147), - [anon_sym___exit] = ACTIONS(1147), - [anon_sym___cdecl] = ACTIONS(1147), - [anon_sym___clrcall] = ACTIONS(1147), - [anon_sym___stdcall] = ACTIONS(1147), - [anon_sym___fastcall] = ACTIONS(1147), - [anon_sym___thiscall] = ACTIONS(1147), - [anon_sym___vectorcall] = ACTIONS(1147), - [anon_sym_LBRACE] = ACTIONS(1149), - [anon_sym_signed] = ACTIONS(1147), - [anon_sym_unsigned] = ACTIONS(1147), - [anon_sym_long] = ACTIONS(1147), - [anon_sym_short] = ACTIONS(1147), - [anon_sym_static] = ACTIONS(1147), - [anon_sym_auto] = ACTIONS(1147), - [anon_sym_register] = ACTIONS(1147), - [anon_sym_inline] = ACTIONS(1147), - [anon_sym___inline] = ACTIONS(1147), - [anon_sym___inline__] = ACTIONS(1147), - [anon_sym___forceinline] = ACTIONS(1147), - [anon_sym_thread_local] = ACTIONS(1147), - [anon_sym___thread] = ACTIONS(1147), - [anon_sym_const] = ACTIONS(1147), - [anon_sym_constexpr] = ACTIONS(1147), - [anon_sym_volatile] = ACTIONS(1147), - [anon_sym_restrict] = ACTIONS(1147), - [anon_sym___restrict__] = ACTIONS(1147), - [anon_sym__Atomic] = ACTIONS(1147), - [anon_sym__Noreturn] = ACTIONS(1147), - [anon_sym_noreturn] = ACTIONS(1147), - [anon_sym_alignas] = ACTIONS(1147), - [anon_sym__Alignas] = ACTIONS(1147), - [sym_primitive_type] = ACTIONS(1147), - [anon_sym_enum] = ACTIONS(1147), - [anon_sym_struct] = ACTIONS(1147), - [anon_sym_union] = ACTIONS(1147), - [anon_sym_if] = ACTIONS(1147), - [anon_sym_else] = ACTIONS(1423), - [anon_sym_switch] = ACTIONS(1147), - [anon_sym_case] = ACTIONS(1147), - [anon_sym_default] = ACTIONS(1147), - [anon_sym_while] = ACTIONS(1147), - [anon_sym_do] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1147), - [anon_sym_return] = ACTIONS(1147), - [anon_sym_break] = ACTIONS(1147), - [anon_sym_continue] = ACTIONS(1147), - [anon_sym_goto] = ACTIONS(1147), - [anon_sym___try] = ACTIONS(1147), - [anon_sym___leave] = ACTIONS(1147), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_sizeof] = ACTIONS(1147), - [anon_sym___alignof__] = ACTIONS(1147), - [anon_sym___alignof] = ACTIONS(1147), - [anon_sym__alignof] = ACTIONS(1147), - [anon_sym_alignof] = ACTIONS(1147), - [anon_sym__Alignof] = ACTIONS(1147), - [anon_sym_offsetof] = ACTIONS(1147), - [anon_sym__Generic] = ACTIONS(1147), - [anon_sym_asm] = ACTIONS(1147), - [anon_sym___asm__] = ACTIONS(1147), - [sym_number_literal] = ACTIONS(1149), - [anon_sym_L_SQUOTE] = ACTIONS(1149), - [anon_sym_u_SQUOTE] = ACTIONS(1149), - [anon_sym_U_SQUOTE] = ACTIONS(1149), - [anon_sym_u8_SQUOTE] = ACTIONS(1149), - [anon_sym_SQUOTE] = ACTIONS(1149), - [anon_sym_L_DQUOTE] = ACTIONS(1149), - [anon_sym_u_DQUOTE] = ACTIONS(1149), - [anon_sym_U_DQUOTE] = ACTIONS(1149), - [anon_sym_u8_DQUOTE] = ACTIONS(1149), - [anon_sym_DQUOTE] = ACTIONS(1149), - [sym_true] = ACTIONS(1147), - [sym_false] = ACTIONS(1147), - [anon_sym_NULL] = ACTIONS(1147), - [anon_sym_nullptr] = ACTIONS(1147), - [sym_comment] = ACTIONS(3), + [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_comment] = ACTIONS(5), }, [160] = { - [sym_else_clause] = STATE(190), - [sym_identifier] = ACTIONS(1147), - [aux_sym_preproc_include_token1] = ACTIONS(1147), - [aux_sym_preproc_def_token1] = ACTIONS(1147), - [aux_sym_preproc_if_token1] = ACTIONS(1147), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1147), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1147), - [sym_preproc_directive] = ACTIONS(1147), - [anon_sym_LPAREN2] = ACTIONS(1149), - [anon_sym_BANG] = ACTIONS(1149), - [anon_sym_TILDE] = ACTIONS(1149), - [anon_sym_DASH] = ACTIONS(1147), - [anon_sym_PLUS] = ACTIONS(1147), - [anon_sym_STAR] = ACTIONS(1149), - [anon_sym_AMP] = ACTIONS(1149), - [anon_sym_SEMI] = ACTIONS(1149), - [anon_sym___extension__] = ACTIONS(1147), - [anon_sym_typedef] = ACTIONS(1147), - [anon_sym_extern] = ACTIONS(1147), - [anon_sym___attribute__] = ACTIONS(1147), - [anon_sym___scanf] = ACTIONS(1147), - [anon_sym___printf] = ACTIONS(1147), - [anon_sym___read_mostly] = ACTIONS(1147), - [anon_sym___must_hold] = ACTIONS(1147), - [anon_sym___ro_after_init] = ACTIONS(1147), - [anon_sym___noreturn] = ACTIONS(1147), - [anon_sym___cold] = ACTIONS(1147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1149), - [anon_sym___declspec] = ACTIONS(1147), - [anon_sym___init] = ACTIONS(1147), - [anon_sym___exit] = ACTIONS(1147), - [anon_sym___cdecl] = ACTIONS(1147), - [anon_sym___clrcall] = ACTIONS(1147), - [anon_sym___stdcall] = ACTIONS(1147), - [anon_sym___fastcall] = ACTIONS(1147), - [anon_sym___thiscall] = ACTIONS(1147), - [anon_sym___vectorcall] = ACTIONS(1147), - [anon_sym_LBRACE] = ACTIONS(1149), - [anon_sym_RBRACE] = ACTIONS(1149), - [anon_sym_signed] = ACTIONS(1147), - [anon_sym_unsigned] = ACTIONS(1147), - [anon_sym_long] = ACTIONS(1147), - [anon_sym_short] = ACTIONS(1147), - [anon_sym_static] = ACTIONS(1147), - [anon_sym_auto] = ACTIONS(1147), - [anon_sym_register] = ACTIONS(1147), - [anon_sym_inline] = ACTIONS(1147), - [anon_sym___inline] = ACTIONS(1147), - [anon_sym___inline__] = ACTIONS(1147), - [anon_sym___forceinline] = ACTIONS(1147), - [anon_sym_thread_local] = ACTIONS(1147), - [anon_sym___thread] = ACTIONS(1147), - [anon_sym_const] = ACTIONS(1147), - [anon_sym_constexpr] = ACTIONS(1147), - [anon_sym_volatile] = ACTIONS(1147), - [anon_sym_restrict] = ACTIONS(1147), - [anon_sym___restrict__] = ACTIONS(1147), - [anon_sym__Atomic] = ACTIONS(1147), - [anon_sym__Noreturn] = ACTIONS(1147), - [anon_sym_noreturn] = ACTIONS(1147), - [anon_sym_alignas] = ACTIONS(1147), - [anon_sym__Alignas] = ACTIONS(1147), - [sym_primitive_type] = ACTIONS(1147), - [anon_sym_enum] = ACTIONS(1147), - [anon_sym_struct] = ACTIONS(1147), - [anon_sym_union] = ACTIONS(1147), - [anon_sym_if] = ACTIONS(1147), - [anon_sym_else] = ACTIONS(1425), - [anon_sym_switch] = ACTIONS(1147), - [anon_sym_case] = ACTIONS(1147), - [anon_sym_default] = ACTIONS(1147), - [anon_sym_while] = ACTIONS(1147), - [anon_sym_do] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1147), - [anon_sym_return] = ACTIONS(1147), - [anon_sym_break] = ACTIONS(1147), - [anon_sym_continue] = ACTIONS(1147), - [anon_sym_goto] = ACTIONS(1147), - [anon_sym___try] = ACTIONS(1147), - [anon_sym___leave] = ACTIONS(1147), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_sizeof] = ACTIONS(1147), - [anon_sym___alignof__] = ACTIONS(1147), - [anon_sym___alignof] = ACTIONS(1147), - [anon_sym__alignof] = ACTIONS(1147), - [anon_sym_alignof] = ACTIONS(1147), - [anon_sym__Alignof] = ACTIONS(1147), - [anon_sym_offsetof] = ACTIONS(1147), - [anon_sym__Generic] = ACTIONS(1147), - [anon_sym_asm] = ACTIONS(1147), - [anon_sym___asm__] = ACTIONS(1147), - [sym_number_literal] = ACTIONS(1149), - [anon_sym_L_SQUOTE] = ACTIONS(1149), - [anon_sym_u_SQUOTE] = ACTIONS(1149), - [anon_sym_U_SQUOTE] = ACTIONS(1149), - [anon_sym_u8_SQUOTE] = ACTIONS(1149), - [anon_sym_SQUOTE] = ACTIONS(1149), - [anon_sym_L_DQUOTE] = ACTIONS(1149), - [anon_sym_u_DQUOTE] = ACTIONS(1149), - [anon_sym_U_DQUOTE] = ACTIONS(1149), - [anon_sym_u8_DQUOTE] = ACTIONS(1149), - [anon_sym_DQUOTE] = ACTIONS(1149), - [sym_true] = ACTIONS(1147), - [sym_false] = ACTIONS(1147), - [anon_sym_NULL] = ACTIONS(1147), - [anon_sym_nullptr] = ACTIONS(1147), - [sym_comment] = ACTIONS(3), + [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_comment] = ACTIONS(5), }, [161] = { - [sym_else_clause] = STATE(199), - [ts_builtin_sym_end] = ACTIONS(1149), - [sym_identifier] = ACTIONS(1147), - [aux_sym_preproc_include_token1] = ACTIONS(1147), - [aux_sym_preproc_def_token1] = ACTIONS(1147), - [aux_sym_preproc_if_token1] = ACTIONS(1147), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1147), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1147), - [sym_preproc_directive] = ACTIONS(1147), - [anon_sym_LPAREN2] = ACTIONS(1149), - [anon_sym_BANG] = ACTIONS(1149), - [anon_sym_TILDE] = ACTIONS(1149), - [anon_sym_DASH] = ACTIONS(1147), - [anon_sym_PLUS] = ACTIONS(1147), - [anon_sym_STAR] = ACTIONS(1149), - [anon_sym_AMP] = ACTIONS(1149), - [anon_sym_SEMI] = ACTIONS(1149), - [anon_sym___extension__] = ACTIONS(1147), - [anon_sym_typedef] = ACTIONS(1147), - [anon_sym_extern] = ACTIONS(1147), - [anon_sym___attribute__] = ACTIONS(1147), - [anon_sym___scanf] = ACTIONS(1147), - [anon_sym___printf] = ACTIONS(1147), - [anon_sym___read_mostly] = ACTIONS(1147), - [anon_sym___must_hold] = ACTIONS(1147), - [anon_sym___ro_after_init] = ACTIONS(1147), - [anon_sym___noreturn] = ACTIONS(1147), - [anon_sym___cold] = ACTIONS(1147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1149), - [anon_sym___declspec] = ACTIONS(1147), - [anon_sym___init] = ACTIONS(1147), - [anon_sym___exit] = ACTIONS(1147), - [anon_sym___cdecl] = ACTIONS(1147), - [anon_sym___clrcall] = ACTIONS(1147), - [anon_sym___stdcall] = ACTIONS(1147), - [anon_sym___fastcall] = ACTIONS(1147), - [anon_sym___thiscall] = ACTIONS(1147), - [anon_sym___vectorcall] = ACTIONS(1147), - [anon_sym_LBRACE] = ACTIONS(1149), - [anon_sym_signed] = ACTIONS(1147), - [anon_sym_unsigned] = ACTIONS(1147), - [anon_sym_long] = ACTIONS(1147), - [anon_sym_short] = ACTIONS(1147), - [anon_sym_static] = ACTIONS(1147), - [anon_sym_auto] = ACTIONS(1147), - [anon_sym_register] = ACTIONS(1147), - [anon_sym_inline] = ACTIONS(1147), - [anon_sym___inline] = ACTIONS(1147), - [anon_sym___inline__] = ACTIONS(1147), - [anon_sym___forceinline] = ACTIONS(1147), - [anon_sym_thread_local] = ACTIONS(1147), - [anon_sym___thread] = ACTIONS(1147), - [anon_sym_const] = ACTIONS(1147), - [anon_sym_constexpr] = ACTIONS(1147), - [anon_sym_volatile] = ACTIONS(1147), - [anon_sym_restrict] = ACTIONS(1147), - [anon_sym___restrict__] = ACTIONS(1147), - [anon_sym__Atomic] = ACTIONS(1147), - [anon_sym__Noreturn] = ACTIONS(1147), - [anon_sym_noreturn] = ACTIONS(1147), - [anon_sym_alignas] = ACTIONS(1147), - [anon_sym__Alignas] = ACTIONS(1147), - [sym_primitive_type] = ACTIONS(1147), - [anon_sym_enum] = ACTIONS(1147), - [anon_sym_struct] = ACTIONS(1147), - [anon_sym_union] = ACTIONS(1147), - [anon_sym_if] = ACTIONS(1147), - [anon_sym_else] = ACTIONS(1427), - [anon_sym_switch] = ACTIONS(1147), - [anon_sym_case] = ACTIONS(1147), - [anon_sym_default] = ACTIONS(1147), - [anon_sym_while] = ACTIONS(1147), - [anon_sym_do] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1147), - [anon_sym_return] = ACTIONS(1147), - [anon_sym_break] = ACTIONS(1147), - [anon_sym_continue] = ACTIONS(1147), - [anon_sym_goto] = ACTIONS(1147), - [anon_sym___try] = ACTIONS(1147), - [anon_sym___leave] = ACTIONS(1147), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_sizeof] = ACTIONS(1147), - [anon_sym___alignof__] = ACTIONS(1147), - [anon_sym___alignof] = ACTIONS(1147), - [anon_sym__alignof] = ACTIONS(1147), - [anon_sym_alignof] = ACTIONS(1147), - [anon_sym__Alignof] = ACTIONS(1147), - [anon_sym_offsetof] = ACTIONS(1147), - [anon_sym__Generic] = ACTIONS(1147), - [anon_sym_asm] = ACTIONS(1147), - [anon_sym___asm__] = ACTIONS(1147), - [sym_number_literal] = ACTIONS(1149), - [anon_sym_L_SQUOTE] = ACTIONS(1149), - [anon_sym_u_SQUOTE] = ACTIONS(1149), - [anon_sym_U_SQUOTE] = ACTIONS(1149), - [anon_sym_u8_SQUOTE] = ACTIONS(1149), - [anon_sym_SQUOTE] = ACTIONS(1149), - [anon_sym_L_DQUOTE] = ACTIONS(1149), - [anon_sym_u_DQUOTE] = ACTIONS(1149), - [anon_sym_U_DQUOTE] = ACTIONS(1149), - [anon_sym_u8_DQUOTE] = ACTIONS(1149), - [anon_sym_DQUOTE] = ACTIONS(1149), - [sym_true] = ACTIONS(1147), - [sym_false] = ACTIONS(1147), - [anon_sym_NULL] = ACTIONS(1147), - [anon_sym_nullptr] = ACTIONS(1147), - [sym_comment] = ACTIONS(3), + [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_comment] = ACTIONS(5), }, [162] = { - [ts_builtin_sym_end] = ACTIONS(1263), - [sym_identifier] = ACTIONS(1261), - [aux_sym_preproc_include_token1] = ACTIONS(1261), - [aux_sym_preproc_def_token1] = ACTIONS(1261), - [aux_sym_preproc_if_token1] = ACTIONS(1261), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1261), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1261), - [sym_preproc_directive] = ACTIONS(1261), - [anon_sym_LPAREN2] = ACTIONS(1263), - [anon_sym_BANG] = ACTIONS(1263), - [anon_sym_TILDE] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1261), - [anon_sym_PLUS] = ACTIONS(1261), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_AMP] = ACTIONS(1263), - [anon_sym_SEMI] = ACTIONS(1263), - [anon_sym___extension__] = ACTIONS(1261), - [anon_sym_typedef] = ACTIONS(1261), - [anon_sym_extern] = ACTIONS(1261), - [anon_sym___attribute__] = ACTIONS(1261), - [anon_sym___scanf] = ACTIONS(1261), - [anon_sym___printf] = ACTIONS(1261), - [anon_sym___read_mostly] = ACTIONS(1261), - [anon_sym___must_hold] = ACTIONS(1261), - [anon_sym___ro_after_init] = ACTIONS(1261), - [anon_sym___noreturn] = ACTIONS(1261), - [anon_sym___cold] = ACTIONS(1261), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1263), - [anon_sym___declspec] = ACTIONS(1261), - [anon_sym___init] = ACTIONS(1261), - [anon_sym___exit] = ACTIONS(1261), - [anon_sym___cdecl] = ACTIONS(1261), - [anon_sym___clrcall] = ACTIONS(1261), - [anon_sym___stdcall] = ACTIONS(1261), - [anon_sym___fastcall] = ACTIONS(1261), - [anon_sym___thiscall] = ACTIONS(1261), - [anon_sym___vectorcall] = ACTIONS(1261), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_signed] = ACTIONS(1261), - [anon_sym_unsigned] = ACTIONS(1261), - [anon_sym_long] = ACTIONS(1261), - [anon_sym_short] = ACTIONS(1261), - [anon_sym_static] = ACTIONS(1261), - [anon_sym_auto] = ACTIONS(1261), - [anon_sym_register] = ACTIONS(1261), - [anon_sym_inline] = ACTIONS(1261), - [anon_sym___inline] = ACTIONS(1261), - [anon_sym___inline__] = ACTIONS(1261), - [anon_sym___forceinline] = ACTIONS(1261), - [anon_sym_thread_local] = ACTIONS(1261), - [anon_sym___thread] = ACTIONS(1261), - [anon_sym_const] = ACTIONS(1261), - [anon_sym_constexpr] = ACTIONS(1261), - [anon_sym_volatile] = ACTIONS(1261), - [anon_sym_restrict] = ACTIONS(1261), - [anon_sym___restrict__] = ACTIONS(1261), - [anon_sym__Atomic] = ACTIONS(1261), - [anon_sym__Noreturn] = ACTIONS(1261), - [anon_sym_noreturn] = ACTIONS(1261), - [anon_sym_alignas] = ACTIONS(1261), - [anon_sym__Alignas] = ACTIONS(1261), - [sym_primitive_type] = ACTIONS(1261), - [anon_sym_enum] = ACTIONS(1261), - [anon_sym_struct] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1261), - [anon_sym_if] = ACTIONS(1261), - [anon_sym_else] = ACTIONS(1261), - [anon_sym_switch] = ACTIONS(1261), - [anon_sym_case] = ACTIONS(1261), - [anon_sym_default] = ACTIONS(1261), - [anon_sym_while] = ACTIONS(1261), - [anon_sym_do] = ACTIONS(1261), - [anon_sym_for] = ACTIONS(1261), - [anon_sym_return] = ACTIONS(1261), - [anon_sym_break] = ACTIONS(1261), - [anon_sym_continue] = ACTIONS(1261), - [anon_sym_goto] = ACTIONS(1261), - [anon_sym___try] = ACTIONS(1261), - [anon_sym___leave] = ACTIONS(1261), - [anon_sym_DASH_DASH] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_sizeof] = ACTIONS(1261), - [anon_sym___alignof__] = ACTIONS(1261), - [anon_sym___alignof] = ACTIONS(1261), - [anon_sym__alignof] = ACTIONS(1261), - [anon_sym_alignof] = ACTIONS(1261), - [anon_sym__Alignof] = ACTIONS(1261), - [anon_sym_offsetof] = ACTIONS(1261), - [anon_sym__Generic] = ACTIONS(1261), - [anon_sym_asm] = ACTIONS(1261), - [anon_sym___asm__] = ACTIONS(1261), - [sym_number_literal] = ACTIONS(1263), - [anon_sym_L_SQUOTE] = ACTIONS(1263), - [anon_sym_u_SQUOTE] = ACTIONS(1263), - [anon_sym_U_SQUOTE] = ACTIONS(1263), - [anon_sym_u8_SQUOTE] = ACTIONS(1263), - [anon_sym_SQUOTE] = ACTIONS(1263), - [anon_sym_L_DQUOTE] = ACTIONS(1263), - [anon_sym_u_DQUOTE] = ACTIONS(1263), - [anon_sym_U_DQUOTE] = ACTIONS(1263), - [anon_sym_u8_DQUOTE] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym_true] = ACTIONS(1261), - [sym_false] = ACTIONS(1261), - [anon_sym_NULL] = ACTIONS(1261), - [anon_sym_nullptr] = ACTIONS(1261), - [sym_comment] = ACTIONS(3), + [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_comment] = ACTIONS(5), }, [163] = { - [ts_builtin_sym_end] = ACTIONS(1191), - [sym_identifier] = ACTIONS(1189), - [aux_sym_preproc_include_token1] = ACTIONS(1189), - [aux_sym_preproc_def_token1] = ACTIONS(1189), - [aux_sym_preproc_if_token1] = ACTIONS(1189), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1189), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1189), - [sym_preproc_directive] = ACTIONS(1189), - [anon_sym_LPAREN2] = ACTIONS(1191), - [anon_sym_BANG] = ACTIONS(1191), - [anon_sym_TILDE] = ACTIONS(1191), - [anon_sym_DASH] = ACTIONS(1189), - [anon_sym_PLUS] = ACTIONS(1189), - [anon_sym_STAR] = ACTIONS(1191), - [anon_sym_AMP] = ACTIONS(1191), - [anon_sym_SEMI] = ACTIONS(1191), - [anon_sym___extension__] = ACTIONS(1189), - [anon_sym_typedef] = ACTIONS(1189), - [anon_sym_extern] = ACTIONS(1189), - [anon_sym___attribute__] = ACTIONS(1189), - [anon_sym___scanf] = ACTIONS(1189), - [anon_sym___printf] = ACTIONS(1189), - [anon_sym___read_mostly] = ACTIONS(1189), - [anon_sym___must_hold] = ACTIONS(1189), - [anon_sym___ro_after_init] = ACTIONS(1189), - [anon_sym___noreturn] = ACTIONS(1189), - [anon_sym___cold] = ACTIONS(1189), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1191), - [anon_sym___declspec] = ACTIONS(1189), - [anon_sym___init] = ACTIONS(1189), - [anon_sym___exit] = ACTIONS(1189), - [anon_sym___cdecl] = ACTIONS(1189), - [anon_sym___clrcall] = ACTIONS(1189), - [anon_sym___stdcall] = ACTIONS(1189), - [anon_sym___fastcall] = ACTIONS(1189), - [anon_sym___thiscall] = ACTIONS(1189), - [anon_sym___vectorcall] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_signed] = ACTIONS(1189), - [anon_sym_unsigned] = ACTIONS(1189), - [anon_sym_long] = ACTIONS(1189), - [anon_sym_short] = ACTIONS(1189), - [anon_sym_static] = ACTIONS(1189), - [anon_sym_auto] = ACTIONS(1189), - [anon_sym_register] = ACTIONS(1189), - [anon_sym_inline] = ACTIONS(1189), - [anon_sym___inline] = ACTIONS(1189), - [anon_sym___inline__] = ACTIONS(1189), - [anon_sym___forceinline] = ACTIONS(1189), - [anon_sym_thread_local] = ACTIONS(1189), - [anon_sym___thread] = ACTIONS(1189), - [anon_sym_const] = ACTIONS(1189), - [anon_sym_constexpr] = ACTIONS(1189), - [anon_sym_volatile] = ACTIONS(1189), - [anon_sym_restrict] = ACTIONS(1189), - [anon_sym___restrict__] = ACTIONS(1189), - [anon_sym__Atomic] = ACTIONS(1189), - [anon_sym__Noreturn] = ACTIONS(1189), - [anon_sym_noreturn] = ACTIONS(1189), - [anon_sym_alignas] = ACTIONS(1189), - [anon_sym__Alignas] = ACTIONS(1189), - [sym_primitive_type] = ACTIONS(1189), - [anon_sym_enum] = ACTIONS(1189), - [anon_sym_struct] = ACTIONS(1189), - [anon_sym_union] = ACTIONS(1189), - [anon_sym_if] = ACTIONS(1189), - [anon_sym_else] = ACTIONS(1189), - [anon_sym_switch] = ACTIONS(1189), - [anon_sym_case] = ACTIONS(1189), - [anon_sym_default] = ACTIONS(1189), - [anon_sym_while] = ACTIONS(1189), - [anon_sym_do] = ACTIONS(1189), - [anon_sym_for] = ACTIONS(1189), - [anon_sym_return] = ACTIONS(1189), - [anon_sym_break] = ACTIONS(1189), - [anon_sym_continue] = ACTIONS(1189), - [anon_sym_goto] = ACTIONS(1189), - [anon_sym___try] = ACTIONS(1189), - [anon_sym___leave] = ACTIONS(1189), - [anon_sym_DASH_DASH] = ACTIONS(1191), - [anon_sym_PLUS_PLUS] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1189), - [anon_sym___alignof__] = ACTIONS(1189), - [anon_sym___alignof] = ACTIONS(1189), - [anon_sym__alignof] = ACTIONS(1189), - [anon_sym_alignof] = ACTIONS(1189), - [anon_sym__Alignof] = ACTIONS(1189), - [anon_sym_offsetof] = ACTIONS(1189), - [anon_sym__Generic] = ACTIONS(1189), - [anon_sym_asm] = ACTIONS(1189), - [anon_sym___asm__] = ACTIONS(1189), - [sym_number_literal] = ACTIONS(1191), - [anon_sym_L_SQUOTE] = ACTIONS(1191), - [anon_sym_u_SQUOTE] = ACTIONS(1191), - [anon_sym_U_SQUOTE] = ACTIONS(1191), - [anon_sym_u8_SQUOTE] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1191), - [anon_sym_L_DQUOTE] = ACTIONS(1191), - [anon_sym_u_DQUOTE] = ACTIONS(1191), - [anon_sym_U_DQUOTE] = ACTIONS(1191), - [anon_sym_u8_DQUOTE] = ACTIONS(1191), - [anon_sym_DQUOTE] = ACTIONS(1191), - [sym_true] = ACTIONS(1189), - [sym_false] = ACTIONS(1189), - [anon_sym_NULL] = ACTIONS(1189), - [anon_sym_nullptr] = ACTIONS(1189), - [sym_comment] = ACTIONS(3), + [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_comment] = ACTIONS(5), }, [164] = { - [sym_identifier] = ACTIONS(1193), - [aux_sym_preproc_include_token1] = ACTIONS(1193), - [aux_sym_preproc_def_token1] = ACTIONS(1193), - [aux_sym_preproc_if_token1] = ACTIONS(1193), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1193), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1193), - [sym_preproc_directive] = ACTIONS(1193), - [anon_sym_LPAREN2] = ACTIONS(1195), - [anon_sym_BANG] = ACTIONS(1195), - [anon_sym_TILDE] = ACTIONS(1195), - [anon_sym_DASH] = ACTIONS(1193), - [anon_sym_PLUS] = ACTIONS(1193), - [anon_sym_STAR] = ACTIONS(1195), - [anon_sym_AMP] = ACTIONS(1195), - [anon_sym_SEMI] = ACTIONS(1195), - [anon_sym___extension__] = ACTIONS(1193), - [anon_sym_typedef] = ACTIONS(1193), - [anon_sym_extern] = ACTIONS(1193), - [anon_sym___attribute__] = ACTIONS(1193), - [anon_sym___scanf] = ACTIONS(1193), - [anon_sym___printf] = ACTIONS(1193), - [anon_sym___read_mostly] = ACTIONS(1193), - [anon_sym___must_hold] = ACTIONS(1193), - [anon_sym___ro_after_init] = ACTIONS(1193), - [anon_sym___noreturn] = ACTIONS(1193), - [anon_sym___cold] = ACTIONS(1193), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1195), - [anon_sym___declspec] = ACTIONS(1193), - [anon_sym___init] = ACTIONS(1193), - [anon_sym___exit] = ACTIONS(1193), - [anon_sym___cdecl] = ACTIONS(1193), - [anon_sym___clrcall] = ACTIONS(1193), - [anon_sym___stdcall] = ACTIONS(1193), - [anon_sym___fastcall] = ACTIONS(1193), - [anon_sym___thiscall] = ACTIONS(1193), - [anon_sym___vectorcall] = ACTIONS(1193), - [anon_sym_LBRACE] = ACTIONS(1195), - [anon_sym_RBRACE] = ACTIONS(1195), - [anon_sym_signed] = ACTIONS(1193), - [anon_sym_unsigned] = ACTIONS(1193), - [anon_sym_long] = ACTIONS(1193), - [anon_sym_short] = ACTIONS(1193), - [anon_sym_static] = ACTIONS(1193), - [anon_sym_auto] = ACTIONS(1193), - [anon_sym_register] = ACTIONS(1193), - [anon_sym_inline] = ACTIONS(1193), - [anon_sym___inline] = ACTIONS(1193), - [anon_sym___inline__] = ACTIONS(1193), - [anon_sym___forceinline] = ACTIONS(1193), - [anon_sym_thread_local] = ACTIONS(1193), - [anon_sym___thread] = ACTIONS(1193), - [anon_sym_const] = ACTIONS(1193), - [anon_sym_constexpr] = ACTIONS(1193), - [anon_sym_volatile] = ACTIONS(1193), - [anon_sym_restrict] = ACTIONS(1193), - [anon_sym___restrict__] = ACTIONS(1193), - [anon_sym__Atomic] = ACTIONS(1193), - [anon_sym__Noreturn] = ACTIONS(1193), - [anon_sym_noreturn] = ACTIONS(1193), - [anon_sym_alignas] = ACTIONS(1193), - [anon_sym__Alignas] = ACTIONS(1193), - [sym_primitive_type] = ACTIONS(1193), - [anon_sym_enum] = ACTIONS(1193), - [anon_sym_struct] = ACTIONS(1193), - [anon_sym_union] = ACTIONS(1193), - [anon_sym_if] = ACTIONS(1193), - [anon_sym_else] = ACTIONS(1193), - [anon_sym_switch] = ACTIONS(1193), - [anon_sym_case] = ACTIONS(1193), - [anon_sym_default] = ACTIONS(1193), - [anon_sym_while] = ACTIONS(1193), - [anon_sym_do] = ACTIONS(1193), - [anon_sym_for] = ACTIONS(1193), - [anon_sym_return] = ACTIONS(1193), - [anon_sym_break] = ACTIONS(1193), - [anon_sym_continue] = ACTIONS(1193), - [anon_sym_goto] = ACTIONS(1193), - [anon_sym___try] = ACTIONS(1193), - [anon_sym___leave] = ACTIONS(1193), - [anon_sym_DASH_DASH] = ACTIONS(1195), - [anon_sym_PLUS_PLUS] = ACTIONS(1195), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym___alignof__] = ACTIONS(1193), - [anon_sym___alignof] = ACTIONS(1193), - [anon_sym__alignof] = ACTIONS(1193), - [anon_sym_alignof] = ACTIONS(1193), - [anon_sym__Alignof] = ACTIONS(1193), - [anon_sym_offsetof] = ACTIONS(1193), - [anon_sym__Generic] = ACTIONS(1193), - [anon_sym_asm] = ACTIONS(1193), - [anon_sym___asm__] = ACTIONS(1193), - [sym_number_literal] = ACTIONS(1195), - [anon_sym_L_SQUOTE] = ACTIONS(1195), - [anon_sym_u_SQUOTE] = ACTIONS(1195), - [anon_sym_U_SQUOTE] = ACTIONS(1195), - [anon_sym_u8_SQUOTE] = ACTIONS(1195), - [anon_sym_SQUOTE] = ACTIONS(1195), - [anon_sym_L_DQUOTE] = ACTIONS(1195), - [anon_sym_u_DQUOTE] = ACTIONS(1195), - [anon_sym_U_DQUOTE] = ACTIONS(1195), - [anon_sym_u8_DQUOTE] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1195), - [sym_true] = ACTIONS(1193), - [sym_false] = ACTIONS(1193), - [anon_sym_NULL] = ACTIONS(1193), - [anon_sym_nullptr] = ACTIONS(1193), - [sym_comment] = ACTIONS(3), + [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_comment] = ACTIONS(5), }, [165] = { - [ts_builtin_sym_end] = ACTIONS(1247), - [sym_identifier] = ACTIONS(1245), - [aux_sym_preproc_include_token1] = ACTIONS(1245), - [aux_sym_preproc_def_token1] = ACTIONS(1245), - [aux_sym_preproc_if_token1] = ACTIONS(1245), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1245), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1245), - [sym_preproc_directive] = ACTIONS(1245), - [anon_sym_LPAREN2] = ACTIONS(1247), - [anon_sym_BANG] = ACTIONS(1247), - [anon_sym_TILDE] = ACTIONS(1247), - [anon_sym_DASH] = ACTIONS(1245), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_STAR] = ACTIONS(1247), - [anon_sym_AMP] = ACTIONS(1247), - [anon_sym_SEMI] = ACTIONS(1247), - [anon_sym___extension__] = ACTIONS(1245), - [anon_sym_typedef] = ACTIONS(1245), - [anon_sym_extern] = ACTIONS(1245), - [anon_sym___attribute__] = ACTIONS(1245), - [anon_sym___scanf] = ACTIONS(1245), - [anon_sym___printf] = ACTIONS(1245), - [anon_sym___read_mostly] = ACTIONS(1245), - [anon_sym___must_hold] = ACTIONS(1245), - [anon_sym___ro_after_init] = ACTIONS(1245), - [anon_sym___noreturn] = ACTIONS(1245), - [anon_sym___cold] = ACTIONS(1245), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1247), - [anon_sym___declspec] = ACTIONS(1245), - [anon_sym___init] = ACTIONS(1245), - [anon_sym___exit] = ACTIONS(1245), - [anon_sym___cdecl] = ACTIONS(1245), - [anon_sym___clrcall] = ACTIONS(1245), - [anon_sym___stdcall] = ACTIONS(1245), - [anon_sym___fastcall] = ACTIONS(1245), - [anon_sym___thiscall] = ACTIONS(1245), - [anon_sym___vectorcall] = ACTIONS(1245), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_signed] = ACTIONS(1245), - [anon_sym_unsigned] = ACTIONS(1245), - [anon_sym_long] = ACTIONS(1245), - [anon_sym_short] = ACTIONS(1245), - [anon_sym_static] = ACTIONS(1245), - [anon_sym_auto] = ACTIONS(1245), - [anon_sym_register] = ACTIONS(1245), - [anon_sym_inline] = ACTIONS(1245), - [anon_sym___inline] = ACTIONS(1245), - [anon_sym___inline__] = ACTIONS(1245), - [anon_sym___forceinline] = ACTIONS(1245), - [anon_sym_thread_local] = ACTIONS(1245), - [anon_sym___thread] = ACTIONS(1245), - [anon_sym_const] = ACTIONS(1245), - [anon_sym_constexpr] = ACTIONS(1245), - [anon_sym_volatile] = ACTIONS(1245), - [anon_sym_restrict] = ACTIONS(1245), - [anon_sym___restrict__] = ACTIONS(1245), - [anon_sym__Atomic] = ACTIONS(1245), - [anon_sym__Noreturn] = ACTIONS(1245), - [anon_sym_noreturn] = ACTIONS(1245), - [anon_sym_alignas] = ACTIONS(1245), - [anon_sym__Alignas] = ACTIONS(1245), - [sym_primitive_type] = ACTIONS(1245), - [anon_sym_enum] = ACTIONS(1245), - [anon_sym_struct] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1245), - [anon_sym_if] = ACTIONS(1245), - [anon_sym_else] = ACTIONS(1245), - [anon_sym_switch] = ACTIONS(1245), - [anon_sym_case] = ACTIONS(1245), - [anon_sym_default] = ACTIONS(1245), - [anon_sym_while] = ACTIONS(1245), - [anon_sym_do] = ACTIONS(1245), - [anon_sym_for] = ACTIONS(1245), - [anon_sym_return] = ACTIONS(1245), - [anon_sym_break] = ACTIONS(1245), - [anon_sym_continue] = ACTIONS(1245), - [anon_sym_goto] = ACTIONS(1245), - [anon_sym___try] = ACTIONS(1245), - [anon_sym___leave] = ACTIONS(1245), - [anon_sym_DASH_DASH] = ACTIONS(1247), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_sizeof] = ACTIONS(1245), - [anon_sym___alignof__] = ACTIONS(1245), - [anon_sym___alignof] = ACTIONS(1245), - [anon_sym__alignof] = ACTIONS(1245), - [anon_sym_alignof] = ACTIONS(1245), - [anon_sym__Alignof] = ACTIONS(1245), - [anon_sym_offsetof] = ACTIONS(1245), - [anon_sym__Generic] = ACTIONS(1245), - [anon_sym_asm] = ACTIONS(1245), - [anon_sym___asm__] = ACTIONS(1245), - [sym_number_literal] = ACTIONS(1247), - [anon_sym_L_SQUOTE] = ACTIONS(1247), - [anon_sym_u_SQUOTE] = ACTIONS(1247), - [anon_sym_U_SQUOTE] = ACTIONS(1247), - [anon_sym_u8_SQUOTE] = ACTIONS(1247), - [anon_sym_SQUOTE] = ACTIONS(1247), - [anon_sym_L_DQUOTE] = ACTIONS(1247), - [anon_sym_u_DQUOTE] = ACTIONS(1247), - [anon_sym_U_DQUOTE] = ACTIONS(1247), - [anon_sym_u8_DQUOTE] = ACTIONS(1247), - [anon_sym_DQUOTE] = ACTIONS(1247), - [sym_true] = ACTIONS(1245), - [sym_false] = ACTIONS(1245), - [anon_sym_NULL] = ACTIONS(1245), - [anon_sym_nullptr] = ACTIONS(1245), - [sym_comment] = ACTIONS(3), + [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_comment] = ACTIONS(5), }, [166] = { - [ts_builtin_sym_end] = ACTIONS(1259), - [sym_identifier] = ACTIONS(1257), - [aux_sym_preproc_include_token1] = ACTIONS(1257), - [aux_sym_preproc_def_token1] = ACTIONS(1257), - [aux_sym_preproc_if_token1] = ACTIONS(1257), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1257), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1257), - [sym_preproc_directive] = ACTIONS(1257), - [anon_sym_LPAREN2] = ACTIONS(1259), - [anon_sym_BANG] = ACTIONS(1259), - [anon_sym_TILDE] = ACTIONS(1259), - [anon_sym_DASH] = ACTIONS(1257), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_STAR] = ACTIONS(1259), - [anon_sym_AMP] = ACTIONS(1259), - [anon_sym_SEMI] = ACTIONS(1259), - [anon_sym___extension__] = ACTIONS(1257), - [anon_sym_typedef] = ACTIONS(1257), - [anon_sym_extern] = ACTIONS(1257), - [anon_sym___attribute__] = ACTIONS(1257), - [anon_sym___scanf] = ACTIONS(1257), - [anon_sym___printf] = ACTIONS(1257), - [anon_sym___read_mostly] = ACTIONS(1257), - [anon_sym___must_hold] = ACTIONS(1257), - [anon_sym___ro_after_init] = ACTIONS(1257), - [anon_sym___noreturn] = ACTIONS(1257), - [anon_sym___cold] = ACTIONS(1257), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1259), - [anon_sym___declspec] = ACTIONS(1257), - [anon_sym___init] = ACTIONS(1257), - [anon_sym___exit] = ACTIONS(1257), - [anon_sym___cdecl] = ACTIONS(1257), - [anon_sym___clrcall] = ACTIONS(1257), - [anon_sym___stdcall] = ACTIONS(1257), - [anon_sym___fastcall] = ACTIONS(1257), - [anon_sym___thiscall] = ACTIONS(1257), - [anon_sym___vectorcall] = ACTIONS(1257), - [anon_sym_LBRACE] = ACTIONS(1259), - [anon_sym_signed] = ACTIONS(1257), - [anon_sym_unsigned] = ACTIONS(1257), - [anon_sym_long] = ACTIONS(1257), - [anon_sym_short] = ACTIONS(1257), - [anon_sym_static] = ACTIONS(1257), - [anon_sym_auto] = ACTIONS(1257), - [anon_sym_register] = ACTIONS(1257), - [anon_sym_inline] = ACTIONS(1257), - [anon_sym___inline] = ACTIONS(1257), - [anon_sym___inline__] = ACTIONS(1257), - [anon_sym___forceinline] = ACTIONS(1257), - [anon_sym_thread_local] = ACTIONS(1257), - [anon_sym___thread] = ACTIONS(1257), - [anon_sym_const] = ACTIONS(1257), - [anon_sym_constexpr] = ACTIONS(1257), - [anon_sym_volatile] = ACTIONS(1257), - [anon_sym_restrict] = ACTIONS(1257), - [anon_sym___restrict__] = ACTIONS(1257), - [anon_sym__Atomic] = ACTIONS(1257), - [anon_sym__Noreturn] = ACTIONS(1257), - [anon_sym_noreturn] = ACTIONS(1257), - [anon_sym_alignas] = ACTIONS(1257), - [anon_sym__Alignas] = ACTIONS(1257), - [sym_primitive_type] = ACTIONS(1257), - [anon_sym_enum] = ACTIONS(1257), - [anon_sym_struct] = ACTIONS(1257), - [anon_sym_union] = ACTIONS(1257), - [anon_sym_if] = ACTIONS(1257), - [anon_sym_else] = ACTIONS(1257), - [anon_sym_switch] = ACTIONS(1257), - [anon_sym_case] = ACTIONS(1257), - [anon_sym_default] = ACTIONS(1257), - [anon_sym_while] = ACTIONS(1257), - [anon_sym_do] = ACTIONS(1257), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_return] = ACTIONS(1257), - [anon_sym_break] = ACTIONS(1257), - [anon_sym_continue] = ACTIONS(1257), - [anon_sym_goto] = ACTIONS(1257), - [anon_sym___try] = ACTIONS(1257), - [anon_sym___leave] = ACTIONS(1257), - [anon_sym_DASH_DASH] = ACTIONS(1259), - [anon_sym_PLUS_PLUS] = ACTIONS(1259), - [anon_sym_sizeof] = ACTIONS(1257), - [anon_sym___alignof__] = ACTIONS(1257), - [anon_sym___alignof] = ACTIONS(1257), - [anon_sym__alignof] = ACTIONS(1257), - [anon_sym_alignof] = ACTIONS(1257), - [anon_sym__Alignof] = ACTIONS(1257), - [anon_sym_offsetof] = ACTIONS(1257), - [anon_sym__Generic] = ACTIONS(1257), - [anon_sym_asm] = ACTIONS(1257), - [anon_sym___asm__] = ACTIONS(1257), - [sym_number_literal] = ACTIONS(1259), - [anon_sym_L_SQUOTE] = ACTIONS(1259), - [anon_sym_u_SQUOTE] = ACTIONS(1259), - [anon_sym_U_SQUOTE] = ACTIONS(1259), - [anon_sym_u8_SQUOTE] = ACTIONS(1259), - [anon_sym_SQUOTE] = ACTIONS(1259), - [anon_sym_L_DQUOTE] = ACTIONS(1259), - [anon_sym_u_DQUOTE] = ACTIONS(1259), - [anon_sym_U_DQUOTE] = ACTIONS(1259), - [anon_sym_u8_DQUOTE] = ACTIONS(1259), - [anon_sym_DQUOTE] = ACTIONS(1259), - [sym_true] = ACTIONS(1257), - [sym_false] = ACTIONS(1257), - [anon_sym_NULL] = ACTIONS(1257), - [anon_sym_nullptr] = ACTIONS(1257), - [sym_comment] = ACTIONS(3), + [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_comment] = ACTIONS(5), }, [167] = { - [ts_builtin_sym_end] = ACTIONS(1275), - [sym_identifier] = ACTIONS(1273), - [aux_sym_preproc_include_token1] = ACTIONS(1273), - [aux_sym_preproc_def_token1] = ACTIONS(1273), - [aux_sym_preproc_if_token1] = ACTIONS(1273), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1273), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1273), - [sym_preproc_directive] = ACTIONS(1273), - [anon_sym_LPAREN2] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(1275), - [anon_sym_TILDE] = ACTIONS(1275), - [anon_sym_DASH] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(1273), - [anon_sym_STAR] = ACTIONS(1275), - [anon_sym_AMP] = ACTIONS(1275), - [anon_sym_SEMI] = ACTIONS(1275), - [anon_sym___extension__] = ACTIONS(1273), - [anon_sym_typedef] = ACTIONS(1273), - [anon_sym_extern] = ACTIONS(1273), - [anon_sym___attribute__] = ACTIONS(1273), - [anon_sym___scanf] = ACTIONS(1273), - [anon_sym___printf] = ACTIONS(1273), - [anon_sym___read_mostly] = ACTIONS(1273), - [anon_sym___must_hold] = ACTIONS(1273), - [anon_sym___ro_after_init] = ACTIONS(1273), - [anon_sym___noreturn] = ACTIONS(1273), - [anon_sym___cold] = ACTIONS(1273), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1275), - [anon_sym___declspec] = ACTIONS(1273), - [anon_sym___init] = ACTIONS(1273), - [anon_sym___exit] = ACTIONS(1273), - [anon_sym___cdecl] = ACTIONS(1273), - [anon_sym___clrcall] = ACTIONS(1273), - [anon_sym___stdcall] = ACTIONS(1273), - [anon_sym___fastcall] = ACTIONS(1273), - [anon_sym___thiscall] = ACTIONS(1273), - [anon_sym___vectorcall] = ACTIONS(1273), - [anon_sym_LBRACE] = ACTIONS(1275), - [anon_sym_signed] = ACTIONS(1273), - [anon_sym_unsigned] = ACTIONS(1273), - [anon_sym_long] = ACTIONS(1273), - [anon_sym_short] = ACTIONS(1273), - [anon_sym_static] = ACTIONS(1273), - [anon_sym_auto] = ACTIONS(1273), - [anon_sym_register] = ACTIONS(1273), - [anon_sym_inline] = ACTIONS(1273), - [anon_sym___inline] = ACTIONS(1273), - [anon_sym___inline__] = ACTIONS(1273), - [anon_sym___forceinline] = ACTIONS(1273), - [anon_sym_thread_local] = ACTIONS(1273), - [anon_sym___thread] = ACTIONS(1273), - [anon_sym_const] = ACTIONS(1273), - [anon_sym_constexpr] = ACTIONS(1273), - [anon_sym_volatile] = ACTIONS(1273), - [anon_sym_restrict] = ACTIONS(1273), - [anon_sym___restrict__] = ACTIONS(1273), - [anon_sym__Atomic] = ACTIONS(1273), - [anon_sym__Noreturn] = ACTIONS(1273), - [anon_sym_noreturn] = ACTIONS(1273), - [anon_sym_alignas] = ACTIONS(1273), - [anon_sym__Alignas] = ACTIONS(1273), - [sym_primitive_type] = ACTIONS(1273), - [anon_sym_enum] = ACTIONS(1273), - [anon_sym_struct] = ACTIONS(1273), - [anon_sym_union] = ACTIONS(1273), - [anon_sym_if] = ACTIONS(1273), - [anon_sym_else] = ACTIONS(1273), - [anon_sym_switch] = ACTIONS(1273), - [anon_sym_case] = ACTIONS(1273), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_while] = ACTIONS(1273), - [anon_sym_do] = ACTIONS(1273), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_return] = ACTIONS(1273), - [anon_sym_break] = ACTIONS(1273), - [anon_sym_continue] = ACTIONS(1273), - [anon_sym_goto] = ACTIONS(1273), - [anon_sym___try] = ACTIONS(1273), - [anon_sym___leave] = ACTIONS(1273), - [anon_sym_DASH_DASH] = ACTIONS(1275), - [anon_sym_PLUS_PLUS] = ACTIONS(1275), - [anon_sym_sizeof] = ACTIONS(1273), - [anon_sym___alignof__] = ACTIONS(1273), - [anon_sym___alignof] = ACTIONS(1273), - [anon_sym__alignof] = ACTIONS(1273), - [anon_sym_alignof] = ACTIONS(1273), - [anon_sym__Alignof] = ACTIONS(1273), - [anon_sym_offsetof] = ACTIONS(1273), - [anon_sym__Generic] = ACTIONS(1273), - [anon_sym_asm] = ACTIONS(1273), - [anon_sym___asm__] = ACTIONS(1273), - [sym_number_literal] = ACTIONS(1275), - [anon_sym_L_SQUOTE] = ACTIONS(1275), - [anon_sym_u_SQUOTE] = ACTIONS(1275), - [anon_sym_U_SQUOTE] = ACTIONS(1275), - [anon_sym_u8_SQUOTE] = ACTIONS(1275), - [anon_sym_SQUOTE] = ACTIONS(1275), - [anon_sym_L_DQUOTE] = ACTIONS(1275), - [anon_sym_u_DQUOTE] = ACTIONS(1275), - [anon_sym_U_DQUOTE] = ACTIONS(1275), - [anon_sym_u8_DQUOTE] = ACTIONS(1275), - [anon_sym_DQUOTE] = ACTIONS(1275), - [sym_true] = ACTIONS(1273), - [sym_false] = ACTIONS(1273), - [anon_sym_NULL] = ACTIONS(1273), - [anon_sym_nullptr] = ACTIONS(1273), - [sym_comment] = ACTIONS(3), + [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_comment] = ACTIONS(5), }, [168] = { - [sym_identifier] = ACTIONS(1217), - [aux_sym_preproc_include_token1] = ACTIONS(1217), - [aux_sym_preproc_def_token1] = ACTIONS(1217), - [aux_sym_preproc_if_token1] = ACTIONS(1217), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1217), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1217), - [sym_preproc_directive] = ACTIONS(1217), - [anon_sym_LPAREN2] = ACTIONS(1219), - [anon_sym_BANG] = ACTIONS(1219), - [anon_sym_TILDE] = ACTIONS(1219), - [anon_sym_DASH] = ACTIONS(1217), - [anon_sym_PLUS] = ACTIONS(1217), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_AMP] = ACTIONS(1219), - [anon_sym_SEMI] = ACTIONS(1219), - [anon_sym___extension__] = ACTIONS(1217), - [anon_sym_typedef] = ACTIONS(1217), - [anon_sym_extern] = ACTIONS(1217), - [anon_sym___attribute__] = ACTIONS(1217), - [anon_sym___scanf] = ACTIONS(1217), - [anon_sym___printf] = ACTIONS(1217), - [anon_sym___read_mostly] = ACTIONS(1217), - [anon_sym___must_hold] = ACTIONS(1217), - [anon_sym___ro_after_init] = ACTIONS(1217), - [anon_sym___noreturn] = ACTIONS(1217), - [anon_sym___cold] = ACTIONS(1217), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1219), - [anon_sym___declspec] = ACTIONS(1217), - [anon_sym___init] = ACTIONS(1217), - [anon_sym___exit] = ACTIONS(1217), - [anon_sym___cdecl] = ACTIONS(1217), - [anon_sym___clrcall] = ACTIONS(1217), - [anon_sym___stdcall] = ACTIONS(1217), - [anon_sym___fastcall] = ACTIONS(1217), - [anon_sym___thiscall] = ACTIONS(1217), - [anon_sym___vectorcall] = ACTIONS(1217), - [anon_sym_LBRACE] = ACTIONS(1219), - [anon_sym_RBRACE] = ACTIONS(1219), - [anon_sym_signed] = ACTIONS(1217), - [anon_sym_unsigned] = ACTIONS(1217), - [anon_sym_long] = ACTIONS(1217), - [anon_sym_short] = ACTIONS(1217), - [anon_sym_static] = ACTIONS(1217), - [anon_sym_auto] = ACTIONS(1217), - [anon_sym_register] = ACTIONS(1217), - [anon_sym_inline] = ACTIONS(1217), - [anon_sym___inline] = ACTIONS(1217), - [anon_sym___inline__] = ACTIONS(1217), - [anon_sym___forceinline] = ACTIONS(1217), - [anon_sym_thread_local] = ACTIONS(1217), - [anon_sym___thread] = ACTIONS(1217), - [anon_sym_const] = ACTIONS(1217), - [anon_sym_constexpr] = ACTIONS(1217), - [anon_sym_volatile] = ACTIONS(1217), - [anon_sym_restrict] = ACTIONS(1217), - [anon_sym___restrict__] = ACTIONS(1217), - [anon_sym__Atomic] = ACTIONS(1217), - [anon_sym__Noreturn] = ACTIONS(1217), - [anon_sym_noreturn] = ACTIONS(1217), - [anon_sym_alignas] = ACTIONS(1217), - [anon_sym__Alignas] = ACTIONS(1217), - [sym_primitive_type] = ACTIONS(1217), - [anon_sym_enum] = ACTIONS(1217), - [anon_sym_struct] = ACTIONS(1217), - [anon_sym_union] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1217), - [anon_sym_else] = ACTIONS(1217), - [anon_sym_switch] = ACTIONS(1217), - [anon_sym_case] = ACTIONS(1217), - [anon_sym_default] = ACTIONS(1217), - [anon_sym_while] = ACTIONS(1217), - [anon_sym_do] = ACTIONS(1217), - [anon_sym_for] = ACTIONS(1217), - [anon_sym_return] = ACTIONS(1217), - [anon_sym_break] = ACTIONS(1217), - [anon_sym_continue] = ACTIONS(1217), - [anon_sym_goto] = ACTIONS(1217), - [anon_sym___try] = ACTIONS(1217), - [anon_sym___leave] = ACTIONS(1217), - [anon_sym_DASH_DASH] = ACTIONS(1219), - [anon_sym_PLUS_PLUS] = ACTIONS(1219), - [anon_sym_sizeof] = ACTIONS(1217), - [anon_sym___alignof__] = ACTIONS(1217), - [anon_sym___alignof] = ACTIONS(1217), - [anon_sym__alignof] = ACTIONS(1217), - [anon_sym_alignof] = ACTIONS(1217), - [anon_sym__Alignof] = ACTIONS(1217), - [anon_sym_offsetof] = ACTIONS(1217), - [anon_sym__Generic] = ACTIONS(1217), - [anon_sym_asm] = ACTIONS(1217), - [anon_sym___asm__] = ACTIONS(1217), - [sym_number_literal] = ACTIONS(1219), - [anon_sym_L_SQUOTE] = ACTIONS(1219), - [anon_sym_u_SQUOTE] = ACTIONS(1219), - [anon_sym_U_SQUOTE] = ACTIONS(1219), - [anon_sym_u8_SQUOTE] = ACTIONS(1219), - [anon_sym_SQUOTE] = ACTIONS(1219), - [anon_sym_L_DQUOTE] = ACTIONS(1219), - [anon_sym_u_DQUOTE] = ACTIONS(1219), - [anon_sym_U_DQUOTE] = ACTIONS(1219), - [anon_sym_u8_DQUOTE] = ACTIONS(1219), - [anon_sym_DQUOTE] = ACTIONS(1219), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [anon_sym_NULL] = ACTIONS(1217), - [anon_sym_nullptr] = ACTIONS(1217), - [sym_comment] = ACTIONS(3), + [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_comment] = ACTIONS(5), }, [169] = { - [ts_builtin_sym_end] = ACTIONS(1227), - [sym_identifier] = ACTIONS(1225), - [aux_sym_preproc_include_token1] = ACTIONS(1225), - [aux_sym_preproc_def_token1] = ACTIONS(1225), - [aux_sym_preproc_if_token1] = ACTIONS(1225), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1225), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1225), - [sym_preproc_directive] = ACTIONS(1225), - [anon_sym_LPAREN2] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_TILDE] = ACTIONS(1227), - [anon_sym_DASH] = ACTIONS(1225), - [anon_sym_PLUS] = ACTIONS(1225), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1227), - [anon_sym_SEMI] = ACTIONS(1227), - [anon_sym___extension__] = ACTIONS(1225), - [anon_sym_typedef] = ACTIONS(1225), - [anon_sym_extern] = ACTIONS(1225), - [anon_sym___attribute__] = ACTIONS(1225), - [anon_sym___scanf] = ACTIONS(1225), - [anon_sym___printf] = ACTIONS(1225), - [anon_sym___read_mostly] = ACTIONS(1225), - [anon_sym___must_hold] = ACTIONS(1225), - [anon_sym___ro_after_init] = ACTIONS(1225), - [anon_sym___noreturn] = ACTIONS(1225), - [anon_sym___cold] = ACTIONS(1225), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1227), - [anon_sym___declspec] = ACTIONS(1225), - [anon_sym___init] = ACTIONS(1225), - [anon_sym___exit] = ACTIONS(1225), - [anon_sym___cdecl] = ACTIONS(1225), - [anon_sym___clrcall] = ACTIONS(1225), - [anon_sym___stdcall] = ACTIONS(1225), - [anon_sym___fastcall] = ACTIONS(1225), - [anon_sym___thiscall] = ACTIONS(1225), - [anon_sym___vectorcall] = ACTIONS(1225), - [anon_sym_LBRACE] = ACTIONS(1227), - [anon_sym_signed] = ACTIONS(1225), - [anon_sym_unsigned] = ACTIONS(1225), - [anon_sym_long] = ACTIONS(1225), - [anon_sym_short] = ACTIONS(1225), - [anon_sym_static] = ACTIONS(1225), - [anon_sym_auto] = ACTIONS(1225), - [anon_sym_register] = ACTIONS(1225), - [anon_sym_inline] = ACTIONS(1225), - [anon_sym___inline] = ACTIONS(1225), - [anon_sym___inline__] = ACTIONS(1225), - [anon_sym___forceinline] = ACTIONS(1225), - [anon_sym_thread_local] = ACTIONS(1225), - [anon_sym___thread] = ACTIONS(1225), - [anon_sym_const] = ACTIONS(1225), - [anon_sym_constexpr] = ACTIONS(1225), - [anon_sym_volatile] = ACTIONS(1225), - [anon_sym_restrict] = ACTIONS(1225), - [anon_sym___restrict__] = ACTIONS(1225), - [anon_sym__Atomic] = ACTIONS(1225), - [anon_sym__Noreturn] = ACTIONS(1225), - [anon_sym_noreturn] = ACTIONS(1225), - [anon_sym_alignas] = ACTIONS(1225), - [anon_sym__Alignas] = ACTIONS(1225), - [sym_primitive_type] = ACTIONS(1225), - [anon_sym_enum] = ACTIONS(1225), - [anon_sym_struct] = ACTIONS(1225), - [anon_sym_union] = ACTIONS(1225), - [anon_sym_if] = ACTIONS(1225), - [anon_sym_else] = ACTIONS(1225), - [anon_sym_switch] = ACTIONS(1225), - [anon_sym_case] = ACTIONS(1225), - [anon_sym_default] = ACTIONS(1225), - [anon_sym_while] = ACTIONS(1225), - [anon_sym_do] = ACTIONS(1225), - [anon_sym_for] = ACTIONS(1225), - [anon_sym_return] = ACTIONS(1225), - [anon_sym_break] = ACTIONS(1225), - [anon_sym_continue] = ACTIONS(1225), - [anon_sym_goto] = ACTIONS(1225), - [anon_sym___try] = ACTIONS(1225), - [anon_sym___leave] = ACTIONS(1225), - [anon_sym_DASH_DASH] = ACTIONS(1227), - [anon_sym_PLUS_PLUS] = ACTIONS(1227), - [anon_sym_sizeof] = ACTIONS(1225), - [anon_sym___alignof__] = ACTIONS(1225), - [anon_sym___alignof] = ACTIONS(1225), - [anon_sym__alignof] = ACTIONS(1225), - [anon_sym_alignof] = ACTIONS(1225), - [anon_sym__Alignof] = ACTIONS(1225), - [anon_sym_offsetof] = ACTIONS(1225), - [anon_sym__Generic] = ACTIONS(1225), - [anon_sym_asm] = ACTIONS(1225), - [anon_sym___asm__] = ACTIONS(1225), - [sym_number_literal] = ACTIONS(1227), - [anon_sym_L_SQUOTE] = ACTIONS(1227), - [anon_sym_u_SQUOTE] = ACTIONS(1227), - [anon_sym_U_SQUOTE] = ACTIONS(1227), - [anon_sym_u8_SQUOTE] = ACTIONS(1227), - [anon_sym_SQUOTE] = ACTIONS(1227), - [anon_sym_L_DQUOTE] = ACTIONS(1227), - [anon_sym_u_DQUOTE] = ACTIONS(1227), - [anon_sym_U_DQUOTE] = ACTIONS(1227), - [anon_sym_u8_DQUOTE] = ACTIONS(1227), - [anon_sym_DQUOTE] = ACTIONS(1227), - [sym_true] = ACTIONS(1225), - [sym_false] = ACTIONS(1225), - [anon_sym_NULL] = ACTIONS(1225), - [anon_sym_nullptr] = ACTIONS(1225), - [sym_comment] = ACTIONS(3), + [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_comment] = ACTIONS(5), }, [170] = { - [sym_identifier] = ACTIONS(1273), - [aux_sym_preproc_include_token1] = ACTIONS(1273), - [aux_sym_preproc_def_token1] = ACTIONS(1273), - [aux_sym_preproc_if_token1] = ACTIONS(1273), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1273), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1273), - [sym_preproc_directive] = ACTIONS(1273), - [anon_sym_LPAREN2] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(1275), - [anon_sym_TILDE] = ACTIONS(1275), - [anon_sym_DASH] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(1273), - [anon_sym_STAR] = ACTIONS(1275), - [anon_sym_AMP] = ACTIONS(1275), - [anon_sym_SEMI] = ACTIONS(1275), - [anon_sym___extension__] = ACTIONS(1273), - [anon_sym_typedef] = ACTIONS(1273), - [anon_sym_extern] = ACTIONS(1273), - [anon_sym___attribute__] = ACTIONS(1273), - [anon_sym___scanf] = ACTIONS(1273), - [anon_sym___printf] = ACTIONS(1273), - [anon_sym___read_mostly] = ACTIONS(1273), - [anon_sym___must_hold] = ACTIONS(1273), - [anon_sym___ro_after_init] = ACTIONS(1273), - [anon_sym___noreturn] = ACTIONS(1273), - [anon_sym___cold] = ACTIONS(1273), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1275), - [anon_sym___declspec] = ACTIONS(1273), - [anon_sym___init] = ACTIONS(1273), - [anon_sym___exit] = ACTIONS(1273), - [anon_sym___cdecl] = ACTIONS(1273), - [anon_sym___clrcall] = ACTIONS(1273), - [anon_sym___stdcall] = ACTIONS(1273), - [anon_sym___fastcall] = ACTIONS(1273), - [anon_sym___thiscall] = ACTIONS(1273), - [anon_sym___vectorcall] = ACTIONS(1273), - [anon_sym_LBRACE] = ACTIONS(1275), - [anon_sym_RBRACE] = ACTIONS(1275), - [anon_sym_signed] = ACTIONS(1273), - [anon_sym_unsigned] = ACTIONS(1273), - [anon_sym_long] = ACTIONS(1273), - [anon_sym_short] = ACTIONS(1273), - [anon_sym_static] = ACTIONS(1273), - [anon_sym_auto] = ACTIONS(1273), - [anon_sym_register] = ACTIONS(1273), - [anon_sym_inline] = ACTIONS(1273), - [anon_sym___inline] = ACTIONS(1273), - [anon_sym___inline__] = ACTIONS(1273), - [anon_sym___forceinline] = ACTIONS(1273), - [anon_sym_thread_local] = ACTIONS(1273), - [anon_sym___thread] = ACTIONS(1273), - [anon_sym_const] = ACTIONS(1273), - [anon_sym_constexpr] = ACTIONS(1273), - [anon_sym_volatile] = ACTIONS(1273), - [anon_sym_restrict] = ACTIONS(1273), - [anon_sym___restrict__] = ACTIONS(1273), - [anon_sym__Atomic] = ACTIONS(1273), - [anon_sym__Noreturn] = ACTIONS(1273), - [anon_sym_noreturn] = ACTIONS(1273), - [anon_sym_alignas] = ACTIONS(1273), - [anon_sym__Alignas] = ACTIONS(1273), - [sym_primitive_type] = ACTIONS(1273), - [anon_sym_enum] = ACTIONS(1273), - [anon_sym_struct] = ACTIONS(1273), - [anon_sym_union] = ACTIONS(1273), - [anon_sym_if] = ACTIONS(1273), - [anon_sym_else] = ACTIONS(1273), - [anon_sym_switch] = ACTIONS(1273), - [anon_sym_case] = ACTIONS(1273), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_while] = ACTIONS(1273), - [anon_sym_do] = ACTIONS(1273), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_return] = ACTIONS(1273), - [anon_sym_break] = ACTIONS(1273), - [anon_sym_continue] = ACTIONS(1273), - [anon_sym_goto] = ACTIONS(1273), - [anon_sym___try] = ACTIONS(1273), - [anon_sym___leave] = ACTIONS(1273), - [anon_sym_DASH_DASH] = ACTIONS(1275), - [anon_sym_PLUS_PLUS] = ACTIONS(1275), - [anon_sym_sizeof] = ACTIONS(1273), - [anon_sym___alignof__] = ACTIONS(1273), - [anon_sym___alignof] = ACTIONS(1273), - [anon_sym__alignof] = ACTIONS(1273), - [anon_sym_alignof] = ACTIONS(1273), - [anon_sym__Alignof] = ACTIONS(1273), - [anon_sym_offsetof] = ACTIONS(1273), - [anon_sym__Generic] = ACTIONS(1273), - [anon_sym_asm] = ACTIONS(1273), - [anon_sym___asm__] = ACTIONS(1273), - [sym_number_literal] = ACTIONS(1275), - [anon_sym_L_SQUOTE] = ACTIONS(1275), - [anon_sym_u_SQUOTE] = ACTIONS(1275), - [anon_sym_U_SQUOTE] = ACTIONS(1275), - [anon_sym_u8_SQUOTE] = ACTIONS(1275), - [anon_sym_SQUOTE] = ACTIONS(1275), - [anon_sym_L_DQUOTE] = ACTIONS(1275), - [anon_sym_u_DQUOTE] = ACTIONS(1275), - [anon_sym_U_DQUOTE] = ACTIONS(1275), - [anon_sym_u8_DQUOTE] = ACTIONS(1275), - [anon_sym_DQUOTE] = ACTIONS(1275), - [sym_true] = ACTIONS(1273), - [sym_false] = ACTIONS(1273), - [anon_sym_NULL] = ACTIONS(1273), - [anon_sym_nullptr] = ACTIONS(1273), - [sym_comment] = ACTIONS(3), + [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), }, [171] = { - [sym_identifier] = ACTIONS(1193), - [aux_sym_preproc_include_token1] = ACTIONS(1193), - [aux_sym_preproc_def_token1] = ACTIONS(1193), - [aux_sym_preproc_if_token1] = ACTIONS(1193), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1193), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1193), - [sym_preproc_directive] = ACTIONS(1193), - [anon_sym_LPAREN2] = ACTIONS(1195), - [anon_sym_BANG] = ACTIONS(1195), - [anon_sym_TILDE] = ACTIONS(1195), - [anon_sym_DASH] = ACTIONS(1193), - [anon_sym_PLUS] = ACTIONS(1193), - [anon_sym_STAR] = ACTIONS(1195), - [anon_sym_AMP] = ACTIONS(1195), - [anon_sym_SEMI] = ACTIONS(1195), - [anon_sym___extension__] = ACTIONS(1193), - [anon_sym_typedef] = ACTIONS(1193), - [anon_sym_extern] = ACTIONS(1193), - [anon_sym___attribute__] = ACTIONS(1193), - [anon_sym___scanf] = ACTIONS(1193), - [anon_sym___printf] = ACTIONS(1193), - [anon_sym___read_mostly] = ACTIONS(1193), - [anon_sym___must_hold] = ACTIONS(1193), - [anon_sym___ro_after_init] = ACTIONS(1193), - [anon_sym___noreturn] = ACTIONS(1193), - [anon_sym___cold] = ACTIONS(1193), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1195), - [anon_sym___declspec] = ACTIONS(1193), - [anon_sym___init] = ACTIONS(1193), - [anon_sym___exit] = ACTIONS(1193), - [anon_sym___cdecl] = ACTIONS(1193), - [anon_sym___clrcall] = ACTIONS(1193), - [anon_sym___stdcall] = ACTIONS(1193), - [anon_sym___fastcall] = ACTIONS(1193), - [anon_sym___thiscall] = ACTIONS(1193), - [anon_sym___vectorcall] = ACTIONS(1193), - [anon_sym_LBRACE] = ACTIONS(1195), - [anon_sym_RBRACE] = ACTIONS(1195), - [anon_sym_signed] = ACTIONS(1193), - [anon_sym_unsigned] = ACTIONS(1193), - [anon_sym_long] = ACTIONS(1193), - [anon_sym_short] = ACTIONS(1193), - [anon_sym_static] = ACTIONS(1193), - [anon_sym_auto] = ACTIONS(1193), - [anon_sym_register] = ACTIONS(1193), - [anon_sym_inline] = ACTIONS(1193), - [anon_sym___inline] = ACTIONS(1193), - [anon_sym___inline__] = ACTIONS(1193), - [anon_sym___forceinline] = ACTIONS(1193), - [anon_sym_thread_local] = ACTIONS(1193), - [anon_sym___thread] = ACTIONS(1193), - [anon_sym_const] = ACTIONS(1193), - [anon_sym_constexpr] = ACTIONS(1193), - [anon_sym_volatile] = ACTIONS(1193), - [anon_sym_restrict] = ACTIONS(1193), - [anon_sym___restrict__] = ACTIONS(1193), - [anon_sym__Atomic] = ACTIONS(1193), - [anon_sym__Noreturn] = ACTIONS(1193), - [anon_sym_noreturn] = ACTIONS(1193), - [anon_sym_alignas] = ACTIONS(1193), - [anon_sym__Alignas] = ACTIONS(1193), - [sym_primitive_type] = ACTIONS(1193), - [anon_sym_enum] = ACTIONS(1193), - [anon_sym_struct] = ACTIONS(1193), - [anon_sym_union] = ACTIONS(1193), - [anon_sym_if] = ACTIONS(1193), - [anon_sym_else] = ACTIONS(1193), - [anon_sym_switch] = ACTIONS(1193), - [anon_sym_case] = ACTIONS(1193), - [anon_sym_default] = ACTIONS(1193), - [anon_sym_while] = ACTIONS(1193), - [anon_sym_do] = ACTIONS(1193), - [anon_sym_for] = ACTIONS(1193), - [anon_sym_return] = ACTIONS(1193), - [anon_sym_break] = ACTIONS(1193), - [anon_sym_continue] = ACTIONS(1193), - [anon_sym_goto] = ACTIONS(1193), - [anon_sym___try] = ACTIONS(1193), - [anon_sym___leave] = ACTIONS(1193), - [anon_sym_DASH_DASH] = ACTIONS(1195), - [anon_sym_PLUS_PLUS] = ACTIONS(1195), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym___alignof__] = ACTIONS(1193), - [anon_sym___alignof] = ACTIONS(1193), - [anon_sym__alignof] = ACTIONS(1193), - [anon_sym_alignof] = ACTIONS(1193), - [anon_sym__Alignof] = ACTIONS(1193), - [anon_sym_offsetof] = ACTIONS(1193), - [anon_sym__Generic] = ACTIONS(1193), - [anon_sym_asm] = ACTIONS(1193), - [anon_sym___asm__] = ACTIONS(1193), - [sym_number_literal] = ACTIONS(1195), - [anon_sym_L_SQUOTE] = ACTIONS(1195), - [anon_sym_u_SQUOTE] = ACTIONS(1195), - [anon_sym_U_SQUOTE] = ACTIONS(1195), - [anon_sym_u8_SQUOTE] = ACTIONS(1195), - [anon_sym_SQUOTE] = ACTIONS(1195), - [anon_sym_L_DQUOTE] = ACTIONS(1195), - [anon_sym_u_DQUOTE] = ACTIONS(1195), - [anon_sym_U_DQUOTE] = ACTIONS(1195), - [anon_sym_u8_DQUOTE] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1195), - [sym_true] = ACTIONS(1193), - [sym_false] = ACTIONS(1193), - [anon_sym_NULL] = ACTIONS(1193), - [anon_sym_nullptr] = ACTIONS(1193), - [sym_comment] = ACTIONS(3), + [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_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), }, [172] = { - [sym_identifier] = ACTIONS(1197), - [aux_sym_preproc_include_token1] = ACTIONS(1197), - [aux_sym_preproc_def_token1] = ACTIONS(1197), - [aux_sym_preproc_if_token1] = ACTIONS(1197), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1197), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1197), - [sym_preproc_directive] = ACTIONS(1197), - [anon_sym_LPAREN2] = ACTIONS(1199), - [anon_sym_BANG] = ACTIONS(1199), - [anon_sym_TILDE] = ACTIONS(1199), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_AMP] = ACTIONS(1199), - [anon_sym_SEMI] = ACTIONS(1199), - [anon_sym___extension__] = ACTIONS(1197), - [anon_sym_typedef] = ACTIONS(1197), - [anon_sym_extern] = ACTIONS(1197), - [anon_sym___attribute__] = ACTIONS(1197), - [anon_sym___scanf] = ACTIONS(1197), - [anon_sym___printf] = ACTIONS(1197), - [anon_sym___read_mostly] = ACTIONS(1197), - [anon_sym___must_hold] = ACTIONS(1197), - [anon_sym___ro_after_init] = ACTIONS(1197), - [anon_sym___noreturn] = ACTIONS(1197), - [anon_sym___cold] = ACTIONS(1197), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1199), - [anon_sym___declspec] = ACTIONS(1197), - [anon_sym___init] = ACTIONS(1197), - [anon_sym___exit] = ACTIONS(1197), - [anon_sym___cdecl] = ACTIONS(1197), - [anon_sym___clrcall] = ACTIONS(1197), - [anon_sym___stdcall] = ACTIONS(1197), - [anon_sym___fastcall] = ACTIONS(1197), - [anon_sym___thiscall] = ACTIONS(1197), - [anon_sym___vectorcall] = ACTIONS(1197), - [anon_sym_LBRACE] = ACTIONS(1199), - [anon_sym_RBRACE] = ACTIONS(1199), - [anon_sym_signed] = ACTIONS(1197), - [anon_sym_unsigned] = ACTIONS(1197), - [anon_sym_long] = ACTIONS(1197), - [anon_sym_short] = ACTIONS(1197), - [anon_sym_static] = ACTIONS(1197), - [anon_sym_auto] = ACTIONS(1197), - [anon_sym_register] = ACTIONS(1197), - [anon_sym_inline] = ACTIONS(1197), - [anon_sym___inline] = ACTIONS(1197), - [anon_sym___inline__] = ACTIONS(1197), - [anon_sym___forceinline] = ACTIONS(1197), - [anon_sym_thread_local] = ACTIONS(1197), - [anon_sym___thread] = ACTIONS(1197), - [anon_sym_const] = ACTIONS(1197), - [anon_sym_constexpr] = ACTIONS(1197), - [anon_sym_volatile] = ACTIONS(1197), - [anon_sym_restrict] = ACTIONS(1197), - [anon_sym___restrict__] = ACTIONS(1197), - [anon_sym__Atomic] = ACTIONS(1197), - [anon_sym__Noreturn] = ACTIONS(1197), - [anon_sym_noreturn] = ACTIONS(1197), - [anon_sym_alignas] = ACTIONS(1197), - [anon_sym__Alignas] = ACTIONS(1197), - [sym_primitive_type] = ACTIONS(1197), - [anon_sym_enum] = ACTIONS(1197), - [anon_sym_struct] = ACTIONS(1197), - [anon_sym_union] = ACTIONS(1197), - [anon_sym_if] = ACTIONS(1197), - [anon_sym_else] = ACTIONS(1197), - [anon_sym_switch] = ACTIONS(1197), - [anon_sym_case] = ACTIONS(1197), - [anon_sym_default] = ACTIONS(1197), - [anon_sym_while] = ACTIONS(1197), - [anon_sym_do] = ACTIONS(1197), - [anon_sym_for] = ACTIONS(1197), - [anon_sym_return] = ACTIONS(1197), - [anon_sym_break] = ACTIONS(1197), - [anon_sym_continue] = ACTIONS(1197), - [anon_sym_goto] = ACTIONS(1197), - [anon_sym___try] = ACTIONS(1197), - [anon_sym___leave] = ACTIONS(1197), - [anon_sym_DASH_DASH] = ACTIONS(1199), - [anon_sym_PLUS_PLUS] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1197), - [anon_sym___alignof__] = ACTIONS(1197), - [anon_sym___alignof] = ACTIONS(1197), - [anon_sym__alignof] = ACTIONS(1197), - [anon_sym_alignof] = ACTIONS(1197), - [anon_sym__Alignof] = ACTIONS(1197), - [anon_sym_offsetof] = ACTIONS(1197), - [anon_sym__Generic] = ACTIONS(1197), - [anon_sym_asm] = ACTIONS(1197), - [anon_sym___asm__] = ACTIONS(1197), - [sym_number_literal] = ACTIONS(1199), - [anon_sym_L_SQUOTE] = ACTIONS(1199), - [anon_sym_u_SQUOTE] = ACTIONS(1199), - [anon_sym_U_SQUOTE] = ACTIONS(1199), - [anon_sym_u8_SQUOTE] = ACTIONS(1199), - [anon_sym_SQUOTE] = ACTIONS(1199), - [anon_sym_L_DQUOTE] = ACTIONS(1199), - [anon_sym_u_DQUOTE] = ACTIONS(1199), - [anon_sym_U_DQUOTE] = ACTIONS(1199), - [anon_sym_u8_DQUOTE] = ACTIONS(1199), - [anon_sym_DQUOTE] = ACTIONS(1199), - [sym_true] = ACTIONS(1197), - [sym_false] = ACTIONS(1197), - [anon_sym_NULL] = ACTIONS(1197), - [anon_sym_nullptr] = ACTIONS(1197), - [sym_comment] = ACTIONS(3), + [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_comment] = ACTIONS(5), }, [173] = { - [sym_identifier] = ACTIONS(1153), - [aux_sym_preproc_include_token1] = ACTIONS(1153), - [aux_sym_preproc_def_token1] = ACTIONS(1153), - [aux_sym_preproc_if_token1] = ACTIONS(1153), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1153), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1153), - [sym_preproc_directive] = ACTIONS(1153), - [anon_sym_LPAREN2] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1155), - [anon_sym_TILDE] = ACTIONS(1155), - [anon_sym_DASH] = ACTIONS(1153), - [anon_sym_PLUS] = ACTIONS(1153), - [anon_sym_STAR] = ACTIONS(1155), - [anon_sym_AMP] = ACTIONS(1155), - [anon_sym_SEMI] = ACTIONS(1155), - [anon_sym___extension__] = ACTIONS(1153), - [anon_sym_typedef] = ACTIONS(1153), - [anon_sym_extern] = ACTIONS(1153), - [anon_sym___attribute__] = ACTIONS(1153), - [anon_sym___scanf] = ACTIONS(1153), - [anon_sym___printf] = ACTIONS(1153), - [anon_sym___read_mostly] = ACTIONS(1153), - [anon_sym___must_hold] = ACTIONS(1153), - [anon_sym___ro_after_init] = ACTIONS(1153), - [anon_sym___noreturn] = ACTIONS(1153), - [anon_sym___cold] = ACTIONS(1153), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1155), - [anon_sym___declspec] = ACTIONS(1153), - [anon_sym___init] = ACTIONS(1153), - [anon_sym___exit] = ACTIONS(1153), - [anon_sym___cdecl] = ACTIONS(1153), - [anon_sym___clrcall] = ACTIONS(1153), - [anon_sym___stdcall] = ACTIONS(1153), - [anon_sym___fastcall] = ACTIONS(1153), - [anon_sym___thiscall] = ACTIONS(1153), - [anon_sym___vectorcall] = ACTIONS(1153), - [anon_sym_LBRACE] = ACTIONS(1155), - [anon_sym_RBRACE] = ACTIONS(1155), - [anon_sym_signed] = ACTIONS(1153), - [anon_sym_unsigned] = ACTIONS(1153), - [anon_sym_long] = ACTIONS(1153), - [anon_sym_short] = ACTIONS(1153), - [anon_sym_static] = ACTIONS(1153), - [anon_sym_auto] = ACTIONS(1153), - [anon_sym_register] = ACTIONS(1153), - [anon_sym_inline] = ACTIONS(1153), - [anon_sym___inline] = ACTIONS(1153), - [anon_sym___inline__] = ACTIONS(1153), - [anon_sym___forceinline] = ACTIONS(1153), - [anon_sym_thread_local] = ACTIONS(1153), - [anon_sym___thread] = ACTIONS(1153), - [anon_sym_const] = ACTIONS(1153), - [anon_sym_constexpr] = ACTIONS(1153), - [anon_sym_volatile] = ACTIONS(1153), - [anon_sym_restrict] = ACTIONS(1153), - [anon_sym___restrict__] = ACTIONS(1153), - [anon_sym__Atomic] = ACTIONS(1153), - [anon_sym__Noreturn] = ACTIONS(1153), - [anon_sym_noreturn] = ACTIONS(1153), - [anon_sym_alignas] = ACTIONS(1153), - [anon_sym__Alignas] = ACTIONS(1153), - [sym_primitive_type] = ACTIONS(1153), - [anon_sym_enum] = ACTIONS(1153), - [anon_sym_struct] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1153), - [anon_sym_if] = ACTIONS(1153), - [anon_sym_else] = ACTIONS(1153), - [anon_sym_switch] = ACTIONS(1153), - [anon_sym_case] = ACTIONS(1153), - [anon_sym_default] = ACTIONS(1153), - [anon_sym_while] = ACTIONS(1153), - [anon_sym_do] = ACTIONS(1153), - [anon_sym_for] = ACTIONS(1153), - [anon_sym_return] = ACTIONS(1153), - [anon_sym_break] = ACTIONS(1153), - [anon_sym_continue] = ACTIONS(1153), - [anon_sym_goto] = ACTIONS(1153), - [anon_sym___try] = ACTIONS(1153), - [anon_sym___leave] = ACTIONS(1153), - [anon_sym_DASH_DASH] = ACTIONS(1155), - [anon_sym_PLUS_PLUS] = ACTIONS(1155), - [anon_sym_sizeof] = ACTIONS(1153), - [anon_sym___alignof__] = ACTIONS(1153), - [anon_sym___alignof] = ACTIONS(1153), - [anon_sym__alignof] = ACTIONS(1153), - [anon_sym_alignof] = ACTIONS(1153), - [anon_sym__Alignof] = ACTIONS(1153), - [anon_sym_offsetof] = ACTIONS(1153), - [anon_sym__Generic] = ACTIONS(1153), - [anon_sym_asm] = ACTIONS(1153), - [anon_sym___asm__] = ACTIONS(1153), - [sym_number_literal] = ACTIONS(1155), - [anon_sym_L_SQUOTE] = ACTIONS(1155), - [anon_sym_u_SQUOTE] = ACTIONS(1155), - [anon_sym_U_SQUOTE] = ACTIONS(1155), - [anon_sym_u8_SQUOTE] = ACTIONS(1155), - [anon_sym_SQUOTE] = ACTIONS(1155), - [anon_sym_L_DQUOTE] = ACTIONS(1155), - [anon_sym_u_DQUOTE] = ACTIONS(1155), - [anon_sym_U_DQUOTE] = ACTIONS(1155), - [anon_sym_u8_DQUOTE] = ACTIONS(1155), - [anon_sym_DQUOTE] = ACTIONS(1155), - [sym_true] = ACTIONS(1153), - [sym_false] = ACTIONS(1153), - [anon_sym_NULL] = ACTIONS(1153), - [anon_sym_nullptr] = ACTIONS(1153), - [sym_comment] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1252), + [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_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), }, [174] = { - [sym_identifier] = ACTIONS(1153), - [aux_sym_preproc_include_token1] = ACTIONS(1153), - [aux_sym_preproc_def_token1] = ACTIONS(1153), - [aux_sym_preproc_if_token1] = ACTIONS(1153), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1153), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1153), - [sym_preproc_directive] = ACTIONS(1153), - [anon_sym_LPAREN2] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1155), - [anon_sym_TILDE] = ACTIONS(1155), - [anon_sym_DASH] = ACTIONS(1153), - [anon_sym_PLUS] = ACTIONS(1153), - [anon_sym_STAR] = ACTIONS(1155), - [anon_sym_AMP] = ACTIONS(1155), - [anon_sym_SEMI] = ACTIONS(1155), - [anon_sym___extension__] = ACTIONS(1153), - [anon_sym_typedef] = ACTIONS(1153), - [anon_sym_extern] = ACTIONS(1153), - [anon_sym___attribute__] = ACTIONS(1153), - [anon_sym___scanf] = ACTIONS(1153), - [anon_sym___printf] = ACTIONS(1153), - [anon_sym___read_mostly] = ACTIONS(1153), - [anon_sym___must_hold] = ACTIONS(1153), - [anon_sym___ro_after_init] = ACTIONS(1153), - [anon_sym___noreturn] = ACTIONS(1153), - [anon_sym___cold] = ACTIONS(1153), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1155), - [anon_sym___declspec] = ACTIONS(1153), - [anon_sym___init] = ACTIONS(1153), - [anon_sym___exit] = ACTIONS(1153), - [anon_sym___cdecl] = ACTIONS(1153), - [anon_sym___clrcall] = ACTIONS(1153), - [anon_sym___stdcall] = ACTIONS(1153), - [anon_sym___fastcall] = ACTIONS(1153), - [anon_sym___thiscall] = ACTIONS(1153), - [anon_sym___vectorcall] = ACTIONS(1153), - [anon_sym_LBRACE] = ACTIONS(1155), - [anon_sym_RBRACE] = ACTIONS(1155), - [anon_sym_signed] = ACTIONS(1153), - [anon_sym_unsigned] = ACTIONS(1153), - [anon_sym_long] = ACTIONS(1153), - [anon_sym_short] = ACTIONS(1153), - [anon_sym_static] = ACTIONS(1153), - [anon_sym_auto] = ACTIONS(1153), - [anon_sym_register] = ACTIONS(1153), - [anon_sym_inline] = ACTIONS(1153), - [anon_sym___inline] = ACTIONS(1153), - [anon_sym___inline__] = ACTIONS(1153), - [anon_sym___forceinline] = ACTIONS(1153), - [anon_sym_thread_local] = ACTIONS(1153), - [anon_sym___thread] = ACTIONS(1153), - [anon_sym_const] = ACTIONS(1153), - [anon_sym_constexpr] = ACTIONS(1153), - [anon_sym_volatile] = ACTIONS(1153), - [anon_sym_restrict] = ACTIONS(1153), - [anon_sym___restrict__] = ACTIONS(1153), - [anon_sym__Atomic] = ACTIONS(1153), - [anon_sym__Noreturn] = ACTIONS(1153), - [anon_sym_noreturn] = ACTIONS(1153), - [anon_sym_alignas] = ACTIONS(1153), - [anon_sym__Alignas] = ACTIONS(1153), - [sym_primitive_type] = ACTIONS(1153), - [anon_sym_enum] = ACTIONS(1153), - [anon_sym_struct] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1153), - [anon_sym_if] = ACTIONS(1153), - [anon_sym_else] = ACTIONS(1153), - [anon_sym_switch] = ACTIONS(1153), - [anon_sym_case] = ACTIONS(1153), - [anon_sym_default] = ACTIONS(1153), - [anon_sym_while] = ACTIONS(1153), - [anon_sym_do] = ACTIONS(1153), - [anon_sym_for] = ACTIONS(1153), - [anon_sym_return] = ACTIONS(1153), - [anon_sym_break] = ACTIONS(1153), - [anon_sym_continue] = ACTIONS(1153), - [anon_sym_goto] = ACTIONS(1153), - [anon_sym___try] = ACTIONS(1153), - [anon_sym___leave] = ACTIONS(1153), - [anon_sym_DASH_DASH] = ACTIONS(1155), - [anon_sym_PLUS_PLUS] = ACTIONS(1155), - [anon_sym_sizeof] = ACTIONS(1153), - [anon_sym___alignof__] = ACTIONS(1153), - [anon_sym___alignof] = ACTIONS(1153), - [anon_sym__alignof] = ACTIONS(1153), - [anon_sym_alignof] = ACTIONS(1153), - [anon_sym__Alignof] = ACTIONS(1153), - [anon_sym_offsetof] = ACTIONS(1153), - [anon_sym__Generic] = ACTIONS(1153), - [anon_sym_asm] = ACTIONS(1153), - [anon_sym___asm__] = ACTIONS(1153), - [sym_number_literal] = ACTIONS(1155), - [anon_sym_L_SQUOTE] = ACTIONS(1155), - [anon_sym_u_SQUOTE] = ACTIONS(1155), - [anon_sym_U_SQUOTE] = ACTIONS(1155), - [anon_sym_u8_SQUOTE] = ACTIONS(1155), - [anon_sym_SQUOTE] = ACTIONS(1155), - [anon_sym_L_DQUOTE] = ACTIONS(1155), - [anon_sym_u_DQUOTE] = ACTIONS(1155), - [anon_sym_U_DQUOTE] = ACTIONS(1155), - [anon_sym_u8_DQUOTE] = ACTIONS(1155), - [anon_sym_DQUOTE] = ACTIONS(1155), - [sym_true] = ACTIONS(1153), - [sym_false] = ACTIONS(1153), - [anon_sym_NULL] = ACTIONS(1153), - [anon_sym_nullptr] = ACTIONS(1153), - [sym_comment] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1252), + [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_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), }, [175] = { - [sym_identifier] = ACTIONS(1253), - [aux_sym_preproc_include_token1] = ACTIONS(1253), - [aux_sym_preproc_def_token1] = ACTIONS(1253), - [aux_sym_preproc_if_token1] = ACTIONS(1253), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1253), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1253), - [sym_preproc_directive] = ACTIONS(1253), - [anon_sym_LPAREN2] = ACTIONS(1255), - [anon_sym_BANG] = ACTIONS(1255), - [anon_sym_TILDE] = ACTIONS(1255), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_STAR] = ACTIONS(1255), - [anon_sym_AMP] = ACTIONS(1255), - [anon_sym_SEMI] = ACTIONS(1255), - [anon_sym___extension__] = ACTIONS(1253), - [anon_sym_typedef] = ACTIONS(1253), - [anon_sym_extern] = ACTIONS(1253), - [anon_sym___attribute__] = ACTIONS(1253), - [anon_sym___scanf] = ACTIONS(1253), - [anon_sym___printf] = ACTIONS(1253), - [anon_sym___read_mostly] = ACTIONS(1253), - [anon_sym___must_hold] = ACTIONS(1253), - [anon_sym___ro_after_init] = ACTIONS(1253), - [anon_sym___noreturn] = ACTIONS(1253), - [anon_sym___cold] = ACTIONS(1253), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1255), - [anon_sym___declspec] = ACTIONS(1253), - [anon_sym___init] = ACTIONS(1253), - [anon_sym___exit] = ACTIONS(1253), - [anon_sym___cdecl] = ACTIONS(1253), - [anon_sym___clrcall] = ACTIONS(1253), - [anon_sym___stdcall] = ACTIONS(1253), - [anon_sym___fastcall] = ACTIONS(1253), - [anon_sym___thiscall] = ACTIONS(1253), - [anon_sym___vectorcall] = ACTIONS(1253), - [anon_sym_LBRACE] = ACTIONS(1255), - [anon_sym_RBRACE] = ACTIONS(1255), - [anon_sym_signed] = ACTIONS(1253), - [anon_sym_unsigned] = ACTIONS(1253), - [anon_sym_long] = ACTIONS(1253), - [anon_sym_short] = ACTIONS(1253), - [anon_sym_static] = ACTIONS(1253), - [anon_sym_auto] = ACTIONS(1253), - [anon_sym_register] = ACTIONS(1253), - [anon_sym_inline] = ACTIONS(1253), - [anon_sym___inline] = ACTIONS(1253), - [anon_sym___inline__] = ACTIONS(1253), - [anon_sym___forceinline] = ACTIONS(1253), - [anon_sym_thread_local] = ACTIONS(1253), - [anon_sym___thread] = ACTIONS(1253), - [anon_sym_const] = ACTIONS(1253), - [anon_sym_constexpr] = ACTIONS(1253), - [anon_sym_volatile] = ACTIONS(1253), - [anon_sym_restrict] = ACTIONS(1253), - [anon_sym___restrict__] = ACTIONS(1253), - [anon_sym__Atomic] = ACTIONS(1253), - [anon_sym__Noreturn] = ACTIONS(1253), - [anon_sym_noreturn] = ACTIONS(1253), - [anon_sym_alignas] = ACTIONS(1253), - [anon_sym__Alignas] = ACTIONS(1253), - [sym_primitive_type] = ACTIONS(1253), - [anon_sym_enum] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1253), - [anon_sym_union] = ACTIONS(1253), - [anon_sym_if] = ACTIONS(1253), - [anon_sym_else] = ACTIONS(1253), - [anon_sym_switch] = ACTIONS(1253), - [anon_sym_case] = ACTIONS(1253), - [anon_sym_default] = ACTIONS(1253), - [anon_sym_while] = ACTIONS(1253), - [anon_sym_do] = ACTIONS(1253), - [anon_sym_for] = ACTIONS(1253), - [anon_sym_return] = ACTIONS(1253), - [anon_sym_break] = ACTIONS(1253), - [anon_sym_continue] = ACTIONS(1253), - [anon_sym_goto] = ACTIONS(1253), - [anon_sym___try] = ACTIONS(1253), - [anon_sym___leave] = ACTIONS(1253), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_sizeof] = ACTIONS(1253), - [anon_sym___alignof__] = ACTIONS(1253), - [anon_sym___alignof] = ACTIONS(1253), - [anon_sym__alignof] = ACTIONS(1253), - [anon_sym_alignof] = ACTIONS(1253), - [anon_sym__Alignof] = ACTIONS(1253), - [anon_sym_offsetof] = ACTIONS(1253), - [anon_sym__Generic] = ACTIONS(1253), - [anon_sym_asm] = ACTIONS(1253), - [anon_sym___asm__] = ACTIONS(1253), - [sym_number_literal] = ACTIONS(1255), - [anon_sym_L_SQUOTE] = ACTIONS(1255), - [anon_sym_u_SQUOTE] = ACTIONS(1255), - [anon_sym_U_SQUOTE] = ACTIONS(1255), - [anon_sym_u8_SQUOTE] = ACTIONS(1255), - [anon_sym_SQUOTE] = ACTIONS(1255), - [anon_sym_L_DQUOTE] = ACTIONS(1255), - [anon_sym_u_DQUOTE] = ACTIONS(1255), - [anon_sym_U_DQUOTE] = ACTIONS(1255), - [anon_sym_u8_DQUOTE] = ACTIONS(1255), - [anon_sym_DQUOTE] = ACTIONS(1255), - [sym_true] = ACTIONS(1253), - [sym_false] = ACTIONS(1253), - [anon_sym_NULL] = ACTIONS(1253), - [anon_sym_nullptr] = ACTIONS(1253), - [sym_comment] = ACTIONS(3), + [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] = { - [sym_identifier] = ACTIONS(1153), - [aux_sym_preproc_include_token1] = ACTIONS(1153), - [aux_sym_preproc_def_token1] = ACTIONS(1153), - [aux_sym_preproc_if_token1] = ACTIONS(1153), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1153), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1153), - [sym_preproc_directive] = ACTIONS(1153), - [anon_sym_LPAREN2] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1155), - [anon_sym_TILDE] = ACTIONS(1155), - [anon_sym_DASH] = ACTIONS(1153), - [anon_sym_PLUS] = ACTIONS(1153), - [anon_sym_STAR] = ACTIONS(1155), - [anon_sym_AMP] = ACTIONS(1155), - [anon_sym_SEMI] = ACTIONS(1155), - [anon_sym___extension__] = ACTIONS(1153), - [anon_sym_typedef] = ACTIONS(1153), - [anon_sym_extern] = ACTIONS(1153), - [anon_sym___attribute__] = ACTIONS(1153), - [anon_sym___scanf] = ACTIONS(1153), - [anon_sym___printf] = ACTIONS(1153), - [anon_sym___read_mostly] = ACTIONS(1153), - [anon_sym___must_hold] = ACTIONS(1153), - [anon_sym___ro_after_init] = ACTIONS(1153), - [anon_sym___noreturn] = ACTIONS(1153), - [anon_sym___cold] = ACTIONS(1153), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1155), - [anon_sym___declspec] = ACTIONS(1153), - [anon_sym___init] = ACTIONS(1153), - [anon_sym___exit] = ACTIONS(1153), - [anon_sym___cdecl] = ACTIONS(1153), - [anon_sym___clrcall] = ACTIONS(1153), - [anon_sym___stdcall] = ACTIONS(1153), - [anon_sym___fastcall] = ACTIONS(1153), - [anon_sym___thiscall] = ACTIONS(1153), - [anon_sym___vectorcall] = ACTIONS(1153), - [anon_sym_LBRACE] = ACTIONS(1155), - [anon_sym_RBRACE] = ACTIONS(1155), - [anon_sym_signed] = ACTIONS(1153), - [anon_sym_unsigned] = ACTIONS(1153), - [anon_sym_long] = ACTIONS(1153), - [anon_sym_short] = ACTIONS(1153), - [anon_sym_static] = ACTIONS(1153), - [anon_sym_auto] = ACTIONS(1153), - [anon_sym_register] = ACTIONS(1153), - [anon_sym_inline] = ACTIONS(1153), - [anon_sym___inline] = ACTIONS(1153), - [anon_sym___inline__] = ACTIONS(1153), - [anon_sym___forceinline] = ACTIONS(1153), - [anon_sym_thread_local] = ACTIONS(1153), - [anon_sym___thread] = ACTIONS(1153), - [anon_sym_const] = ACTIONS(1153), - [anon_sym_constexpr] = ACTIONS(1153), - [anon_sym_volatile] = ACTIONS(1153), - [anon_sym_restrict] = ACTIONS(1153), - [anon_sym___restrict__] = ACTIONS(1153), - [anon_sym__Atomic] = ACTIONS(1153), - [anon_sym__Noreturn] = ACTIONS(1153), - [anon_sym_noreturn] = ACTIONS(1153), - [anon_sym_alignas] = ACTIONS(1153), - [anon_sym__Alignas] = ACTIONS(1153), - [sym_primitive_type] = ACTIONS(1153), - [anon_sym_enum] = ACTIONS(1153), - [anon_sym_struct] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1153), - [anon_sym_if] = ACTIONS(1153), - [anon_sym_else] = ACTIONS(1153), - [anon_sym_switch] = ACTIONS(1153), - [anon_sym_case] = ACTIONS(1153), - [anon_sym_default] = ACTIONS(1153), - [anon_sym_while] = ACTIONS(1153), - [anon_sym_do] = ACTIONS(1153), - [anon_sym_for] = ACTIONS(1153), - [anon_sym_return] = ACTIONS(1153), - [anon_sym_break] = ACTIONS(1153), - [anon_sym_continue] = ACTIONS(1153), - [anon_sym_goto] = ACTIONS(1153), - [anon_sym___try] = ACTIONS(1153), - [anon_sym___leave] = ACTIONS(1153), - [anon_sym_DASH_DASH] = ACTIONS(1155), - [anon_sym_PLUS_PLUS] = ACTIONS(1155), - [anon_sym_sizeof] = ACTIONS(1153), - [anon_sym___alignof__] = ACTIONS(1153), - [anon_sym___alignof] = ACTIONS(1153), - [anon_sym__alignof] = ACTIONS(1153), - [anon_sym_alignof] = ACTIONS(1153), - [anon_sym__Alignof] = ACTIONS(1153), - [anon_sym_offsetof] = ACTIONS(1153), - [anon_sym__Generic] = ACTIONS(1153), - [anon_sym_asm] = ACTIONS(1153), - [anon_sym___asm__] = ACTIONS(1153), - [sym_number_literal] = ACTIONS(1155), - [anon_sym_L_SQUOTE] = ACTIONS(1155), - [anon_sym_u_SQUOTE] = ACTIONS(1155), - [anon_sym_U_SQUOTE] = ACTIONS(1155), - [anon_sym_u8_SQUOTE] = ACTIONS(1155), - [anon_sym_SQUOTE] = ACTIONS(1155), - [anon_sym_L_DQUOTE] = ACTIONS(1155), - [anon_sym_u_DQUOTE] = ACTIONS(1155), - [anon_sym_U_DQUOTE] = ACTIONS(1155), - [anon_sym_u8_DQUOTE] = ACTIONS(1155), - [anon_sym_DQUOTE] = ACTIONS(1155), - [sym_true] = ACTIONS(1153), - [sym_false] = ACTIONS(1153), - [anon_sym_NULL] = ACTIONS(1153), - [anon_sym_nullptr] = ACTIONS(1153), - [sym_comment] = ACTIONS(3), + [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(1197), - [aux_sym_preproc_include_token1] = ACTIONS(1197), - [aux_sym_preproc_def_token1] = ACTIONS(1197), - [aux_sym_preproc_if_token1] = ACTIONS(1197), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1197), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1197), - [sym_preproc_directive] = ACTIONS(1197), - [anon_sym_LPAREN2] = ACTIONS(1199), - [anon_sym_BANG] = ACTIONS(1199), - [anon_sym_TILDE] = ACTIONS(1199), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_AMP] = ACTIONS(1199), - [anon_sym_SEMI] = ACTIONS(1199), - [anon_sym___extension__] = ACTIONS(1197), - [anon_sym_typedef] = ACTIONS(1197), - [anon_sym_extern] = ACTIONS(1197), - [anon_sym___attribute__] = ACTIONS(1197), - [anon_sym___scanf] = ACTIONS(1197), - [anon_sym___printf] = ACTIONS(1197), - [anon_sym___read_mostly] = ACTIONS(1197), - [anon_sym___must_hold] = ACTIONS(1197), - [anon_sym___ro_after_init] = ACTIONS(1197), - [anon_sym___noreturn] = ACTIONS(1197), - [anon_sym___cold] = ACTIONS(1197), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1199), - [anon_sym___declspec] = ACTIONS(1197), - [anon_sym___init] = ACTIONS(1197), - [anon_sym___exit] = ACTIONS(1197), - [anon_sym___cdecl] = ACTIONS(1197), - [anon_sym___clrcall] = ACTIONS(1197), - [anon_sym___stdcall] = ACTIONS(1197), - [anon_sym___fastcall] = ACTIONS(1197), - [anon_sym___thiscall] = ACTIONS(1197), - [anon_sym___vectorcall] = ACTIONS(1197), - [anon_sym_LBRACE] = ACTIONS(1199), - [anon_sym_RBRACE] = ACTIONS(1199), - [anon_sym_signed] = ACTIONS(1197), - [anon_sym_unsigned] = ACTIONS(1197), - [anon_sym_long] = ACTIONS(1197), - [anon_sym_short] = ACTIONS(1197), - [anon_sym_static] = ACTIONS(1197), - [anon_sym_auto] = ACTIONS(1197), - [anon_sym_register] = ACTIONS(1197), - [anon_sym_inline] = ACTIONS(1197), - [anon_sym___inline] = ACTIONS(1197), - [anon_sym___inline__] = ACTIONS(1197), - [anon_sym___forceinline] = ACTIONS(1197), - [anon_sym_thread_local] = ACTIONS(1197), - [anon_sym___thread] = ACTIONS(1197), - [anon_sym_const] = ACTIONS(1197), - [anon_sym_constexpr] = ACTIONS(1197), - [anon_sym_volatile] = ACTIONS(1197), - [anon_sym_restrict] = ACTIONS(1197), - [anon_sym___restrict__] = ACTIONS(1197), - [anon_sym__Atomic] = ACTIONS(1197), - [anon_sym__Noreturn] = ACTIONS(1197), - [anon_sym_noreturn] = ACTIONS(1197), - [anon_sym_alignas] = ACTIONS(1197), - [anon_sym__Alignas] = ACTIONS(1197), - [sym_primitive_type] = ACTIONS(1197), - [anon_sym_enum] = ACTIONS(1197), - [anon_sym_struct] = ACTIONS(1197), - [anon_sym_union] = ACTIONS(1197), - [anon_sym_if] = ACTIONS(1197), - [anon_sym_else] = ACTIONS(1197), - [anon_sym_switch] = ACTIONS(1197), - [anon_sym_case] = ACTIONS(1197), - [anon_sym_default] = ACTIONS(1197), - [anon_sym_while] = ACTIONS(1197), - [anon_sym_do] = ACTIONS(1197), - [anon_sym_for] = ACTIONS(1197), - [anon_sym_return] = ACTIONS(1197), - [anon_sym_break] = ACTIONS(1197), - [anon_sym_continue] = ACTIONS(1197), - [anon_sym_goto] = ACTIONS(1197), - [anon_sym___try] = ACTIONS(1197), - [anon_sym___leave] = ACTIONS(1197), - [anon_sym_DASH_DASH] = ACTIONS(1199), - [anon_sym_PLUS_PLUS] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1197), - [anon_sym___alignof__] = ACTIONS(1197), - [anon_sym___alignof] = ACTIONS(1197), - [anon_sym__alignof] = ACTIONS(1197), - [anon_sym_alignof] = ACTIONS(1197), - [anon_sym__Alignof] = ACTIONS(1197), - [anon_sym_offsetof] = ACTIONS(1197), - [anon_sym__Generic] = ACTIONS(1197), - [anon_sym_asm] = ACTIONS(1197), - [anon_sym___asm__] = ACTIONS(1197), - [sym_number_literal] = ACTIONS(1199), - [anon_sym_L_SQUOTE] = ACTIONS(1199), - [anon_sym_u_SQUOTE] = ACTIONS(1199), - [anon_sym_U_SQUOTE] = ACTIONS(1199), - [anon_sym_u8_SQUOTE] = ACTIONS(1199), - [anon_sym_SQUOTE] = ACTIONS(1199), - [anon_sym_L_DQUOTE] = ACTIONS(1199), - [anon_sym_u_DQUOTE] = ACTIONS(1199), - [anon_sym_U_DQUOTE] = ACTIONS(1199), - [anon_sym_u8_DQUOTE] = ACTIONS(1199), - [anon_sym_DQUOTE] = ACTIONS(1199), - [sym_true] = ACTIONS(1197), - [sym_false] = ACTIONS(1197), - [anon_sym_NULL] = ACTIONS(1197), - [anon_sym_nullptr] = ACTIONS(1197), - [sym_comment] = ACTIONS(3), + [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(1219), - [sym_identifier] = ACTIONS(1217), - [aux_sym_preproc_include_token1] = ACTIONS(1217), - [aux_sym_preproc_def_token1] = ACTIONS(1217), - [aux_sym_preproc_if_token1] = ACTIONS(1217), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1217), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1217), - [sym_preproc_directive] = ACTIONS(1217), - [anon_sym_LPAREN2] = ACTIONS(1219), - [anon_sym_BANG] = ACTIONS(1219), - [anon_sym_TILDE] = ACTIONS(1219), - [anon_sym_DASH] = ACTIONS(1217), - [anon_sym_PLUS] = ACTIONS(1217), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_AMP] = ACTIONS(1219), - [anon_sym_SEMI] = ACTIONS(1219), - [anon_sym___extension__] = ACTIONS(1217), - [anon_sym_typedef] = ACTIONS(1217), - [anon_sym_extern] = ACTIONS(1217), - [anon_sym___attribute__] = ACTIONS(1217), - [anon_sym___scanf] = ACTIONS(1217), - [anon_sym___printf] = ACTIONS(1217), - [anon_sym___read_mostly] = ACTIONS(1217), - [anon_sym___must_hold] = ACTIONS(1217), - [anon_sym___ro_after_init] = ACTIONS(1217), - [anon_sym___noreturn] = ACTIONS(1217), - [anon_sym___cold] = ACTIONS(1217), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1219), - [anon_sym___declspec] = ACTIONS(1217), - [anon_sym___init] = ACTIONS(1217), - [anon_sym___exit] = ACTIONS(1217), - [anon_sym___cdecl] = ACTIONS(1217), - [anon_sym___clrcall] = ACTIONS(1217), - [anon_sym___stdcall] = ACTIONS(1217), - [anon_sym___fastcall] = ACTIONS(1217), - [anon_sym___thiscall] = ACTIONS(1217), - [anon_sym___vectorcall] = ACTIONS(1217), - [anon_sym_LBRACE] = ACTIONS(1219), - [anon_sym_signed] = ACTIONS(1217), - [anon_sym_unsigned] = ACTIONS(1217), - [anon_sym_long] = ACTIONS(1217), - [anon_sym_short] = ACTIONS(1217), - [anon_sym_static] = ACTIONS(1217), - [anon_sym_auto] = ACTIONS(1217), - [anon_sym_register] = ACTIONS(1217), - [anon_sym_inline] = ACTIONS(1217), - [anon_sym___inline] = ACTIONS(1217), - [anon_sym___inline__] = ACTIONS(1217), - [anon_sym___forceinline] = ACTIONS(1217), - [anon_sym_thread_local] = ACTIONS(1217), - [anon_sym___thread] = ACTIONS(1217), - [anon_sym_const] = ACTIONS(1217), - [anon_sym_constexpr] = ACTIONS(1217), - [anon_sym_volatile] = ACTIONS(1217), - [anon_sym_restrict] = ACTIONS(1217), - [anon_sym___restrict__] = ACTIONS(1217), - [anon_sym__Atomic] = ACTIONS(1217), - [anon_sym__Noreturn] = ACTIONS(1217), - [anon_sym_noreturn] = ACTIONS(1217), - [anon_sym_alignas] = ACTIONS(1217), - [anon_sym__Alignas] = ACTIONS(1217), - [sym_primitive_type] = ACTIONS(1217), - [anon_sym_enum] = ACTIONS(1217), - [anon_sym_struct] = ACTIONS(1217), - [anon_sym_union] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1217), - [anon_sym_else] = ACTIONS(1217), - [anon_sym_switch] = ACTIONS(1217), - [anon_sym_case] = ACTIONS(1217), - [anon_sym_default] = ACTIONS(1217), - [anon_sym_while] = ACTIONS(1217), - [anon_sym_do] = ACTIONS(1217), - [anon_sym_for] = ACTIONS(1217), - [anon_sym_return] = ACTIONS(1217), - [anon_sym_break] = ACTIONS(1217), - [anon_sym_continue] = ACTIONS(1217), - [anon_sym_goto] = ACTIONS(1217), - [anon_sym___try] = ACTIONS(1217), - [anon_sym___leave] = ACTIONS(1217), - [anon_sym_DASH_DASH] = ACTIONS(1219), - [anon_sym_PLUS_PLUS] = ACTIONS(1219), - [anon_sym_sizeof] = ACTIONS(1217), - [anon_sym___alignof__] = ACTIONS(1217), - [anon_sym___alignof] = ACTIONS(1217), - [anon_sym__alignof] = ACTIONS(1217), - [anon_sym_alignof] = ACTIONS(1217), - [anon_sym__Alignof] = ACTIONS(1217), - [anon_sym_offsetof] = ACTIONS(1217), - [anon_sym__Generic] = ACTIONS(1217), - [anon_sym_asm] = ACTIONS(1217), - [anon_sym___asm__] = ACTIONS(1217), - [sym_number_literal] = ACTIONS(1219), - [anon_sym_L_SQUOTE] = ACTIONS(1219), - [anon_sym_u_SQUOTE] = ACTIONS(1219), - [anon_sym_U_SQUOTE] = ACTIONS(1219), - [anon_sym_u8_SQUOTE] = ACTIONS(1219), - [anon_sym_SQUOTE] = ACTIONS(1219), - [anon_sym_L_DQUOTE] = ACTIONS(1219), - [anon_sym_u_DQUOTE] = ACTIONS(1219), - [anon_sym_U_DQUOTE] = ACTIONS(1219), - [anon_sym_u8_DQUOTE] = ACTIONS(1219), - [anon_sym_DQUOTE] = ACTIONS(1219), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [anon_sym_NULL] = ACTIONS(1217), - [anon_sym_nullptr] = ACTIONS(1217), - [sym_comment] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1284), + [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_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), }, [179] = { - [sym_identifier] = ACTIONS(1221), - [aux_sym_preproc_include_token1] = ACTIONS(1221), - [aux_sym_preproc_def_token1] = ACTIONS(1221), - [aux_sym_preproc_if_token1] = ACTIONS(1221), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1221), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1221), - [sym_preproc_directive] = ACTIONS(1221), - [anon_sym_LPAREN2] = ACTIONS(1223), - [anon_sym_BANG] = ACTIONS(1223), - [anon_sym_TILDE] = ACTIONS(1223), - [anon_sym_DASH] = ACTIONS(1221), - [anon_sym_PLUS] = ACTIONS(1221), - [anon_sym_STAR] = ACTIONS(1223), - [anon_sym_AMP] = ACTIONS(1223), - [anon_sym_SEMI] = ACTIONS(1223), - [anon_sym___extension__] = ACTIONS(1221), - [anon_sym_typedef] = ACTIONS(1221), - [anon_sym_extern] = ACTIONS(1221), - [anon_sym___attribute__] = ACTIONS(1221), - [anon_sym___scanf] = ACTIONS(1221), - [anon_sym___printf] = ACTIONS(1221), - [anon_sym___read_mostly] = ACTIONS(1221), - [anon_sym___must_hold] = ACTIONS(1221), - [anon_sym___ro_after_init] = ACTIONS(1221), - [anon_sym___noreturn] = ACTIONS(1221), - [anon_sym___cold] = ACTIONS(1221), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1223), - [anon_sym___declspec] = ACTIONS(1221), - [anon_sym___init] = ACTIONS(1221), - [anon_sym___exit] = ACTIONS(1221), - [anon_sym___cdecl] = ACTIONS(1221), - [anon_sym___clrcall] = ACTIONS(1221), - [anon_sym___stdcall] = ACTIONS(1221), - [anon_sym___fastcall] = ACTIONS(1221), - [anon_sym___thiscall] = ACTIONS(1221), - [anon_sym___vectorcall] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_RBRACE] = ACTIONS(1223), - [anon_sym_signed] = ACTIONS(1221), - [anon_sym_unsigned] = ACTIONS(1221), - [anon_sym_long] = ACTIONS(1221), - [anon_sym_short] = ACTIONS(1221), - [anon_sym_static] = ACTIONS(1221), - [anon_sym_auto] = ACTIONS(1221), - [anon_sym_register] = ACTIONS(1221), - [anon_sym_inline] = ACTIONS(1221), - [anon_sym___inline] = ACTIONS(1221), - [anon_sym___inline__] = ACTIONS(1221), - [anon_sym___forceinline] = ACTIONS(1221), - [anon_sym_thread_local] = ACTIONS(1221), - [anon_sym___thread] = ACTIONS(1221), - [anon_sym_const] = ACTIONS(1221), - [anon_sym_constexpr] = ACTIONS(1221), - [anon_sym_volatile] = ACTIONS(1221), - [anon_sym_restrict] = ACTIONS(1221), - [anon_sym___restrict__] = ACTIONS(1221), - [anon_sym__Atomic] = ACTIONS(1221), - [anon_sym__Noreturn] = ACTIONS(1221), - [anon_sym_noreturn] = ACTIONS(1221), - [anon_sym_alignas] = ACTIONS(1221), - [anon_sym__Alignas] = ACTIONS(1221), - [sym_primitive_type] = ACTIONS(1221), - [anon_sym_enum] = ACTIONS(1221), - [anon_sym_struct] = ACTIONS(1221), - [anon_sym_union] = ACTIONS(1221), - [anon_sym_if] = ACTIONS(1221), - [anon_sym_else] = ACTIONS(1221), - [anon_sym_switch] = ACTIONS(1221), - [anon_sym_case] = ACTIONS(1221), - [anon_sym_default] = ACTIONS(1221), - [anon_sym_while] = ACTIONS(1221), - [anon_sym_do] = ACTIONS(1221), - [anon_sym_for] = ACTIONS(1221), - [anon_sym_return] = ACTIONS(1221), - [anon_sym_break] = ACTIONS(1221), - [anon_sym_continue] = ACTIONS(1221), - [anon_sym_goto] = ACTIONS(1221), - [anon_sym___try] = ACTIONS(1221), - [anon_sym___leave] = ACTIONS(1221), - [anon_sym_DASH_DASH] = ACTIONS(1223), - [anon_sym_PLUS_PLUS] = ACTIONS(1223), - [anon_sym_sizeof] = ACTIONS(1221), - [anon_sym___alignof__] = ACTIONS(1221), - [anon_sym___alignof] = ACTIONS(1221), - [anon_sym__alignof] = ACTIONS(1221), - [anon_sym_alignof] = ACTIONS(1221), - [anon_sym__Alignof] = ACTIONS(1221), - [anon_sym_offsetof] = ACTIONS(1221), - [anon_sym__Generic] = ACTIONS(1221), - [anon_sym_asm] = ACTIONS(1221), - [anon_sym___asm__] = ACTIONS(1221), - [sym_number_literal] = ACTIONS(1223), - [anon_sym_L_SQUOTE] = ACTIONS(1223), - [anon_sym_u_SQUOTE] = ACTIONS(1223), - [anon_sym_U_SQUOTE] = ACTIONS(1223), - [anon_sym_u8_SQUOTE] = ACTIONS(1223), - [anon_sym_SQUOTE] = ACTIONS(1223), - [anon_sym_L_DQUOTE] = ACTIONS(1223), - [anon_sym_u_DQUOTE] = ACTIONS(1223), - [anon_sym_U_DQUOTE] = ACTIONS(1223), - [anon_sym_u8_DQUOTE] = ACTIONS(1223), - [anon_sym_DQUOTE] = ACTIONS(1223), - [sym_true] = ACTIONS(1221), - [sym_false] = ACTIONS(1221), - [anon_sym_NULL] = ACTIONS(1221), - [anon_sym_nullptr] = ACTIONS(1221), - [sym_comment] = ACTIONS(3), + [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), }, [180] = { - [ts_builtin_sym_end] = ACTIONS(1159), - [sym_identifier] = ACTIONS(1157), - [aux_sym_preproc_include_token1] = ACTIONS(1157), - [aux_sym_preproc_def_token1] = ACTIONS(1157), - [aux_sym_preproc_if_token1] = ACTIONS(1157), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1157), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1157), - [sym_preproc_directive] = ACTIONS(1157), - [anon_sym_LPAREN2] = ACTIONS(1159), - [anon_sym_BANG] = ACTIONS(1159), - [anon_sym_TILDE] = ACTIONS(1159), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_STAR] = ACTIONS(1159), - [anon_sym_AMP] = ACTIONS(1159), - [anon_sym_SEMI] = ACTIONS(1159), - [anon_sym___extension__] = ACTIONS(1157), - [anon_sym_typedef] = ACTIONS(1157), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym___attribute__] = ACTIONS(1157), - [anon_sym___scanf] = ACTIONS(1157), - [anon_sym___printf] = ACTIONS(1157), - [anon_sym___read_mostly] = ACTIONS(1157), - [anon_sym___must_hold] = ACTIONS(1157), - [anon_sym___ro_after_init] = ACTIONS(1157), - [anon_sym___noreturn] = ACTIONS(1157), - [anon_sym___cold] = ACTIONS(1157), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1159), - [anon_sym___declspec] = ACTIONS(1157), - [anon_sym___init] = ACTIONS(1157), - [anon_sym___exit] = ACTIONS(1157), - [anon_sym___cdecl] = ACTIONS(1157), - [anon_sym___clrcall] = ACTIONS(1157), - [anon_sym___stdcall] = ACTIONS(1157), - [anon_sym___fastcall] = ACTIONS(1157), - [anon_sym___thiscall] = ACTIONS(1157), - [anon_sym___vectorcall] = ACTIONS(1157), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_signed] = ACTIONS(1157), - [anon_sym_unsigned] = ACTIONS(1157), - [anon_sym_long] = ACTIONS(1157), - [anon_sym_short] = ACTIONS(1157), - [anon_sym_static] = ACTIONS(1157), - [anon_sym_auto] = ACTIONS(1157), - [anon_sym_register] = ACTIONS(1157), - [anon_sym_inline] = ACTIONS(1157), - [anon_sym___inline] = ACTIONS(1157), - [anon_sym___inline__] = ACTIONS(1157), - [anon_sym___forceinline] = ACTIONS(1157), - [anon_sym_thread_local] = ACTIONS(1157), - [anon_sym___thread] = ACTIONS(1157), - [anon_sym_const] = ACTIONS(1157), - [anon_sym_constexpr] = ACTIONS(1157), - [anon_sym_volatile] = ACTIONS(1157), - [anon_sym_restrict] = ACTIONS(1157), - [anon_sym___restrict__] = ACTIONS(1157), - [anon_sym__Atomic] = ACTIONS(1157), - [anon_sym__Noreturn] = ACTIONS(1157), - [anon_sym_noreturn] = ACTIONS(1157), - [anon_sym_alignas] = ACTIONS(1157), - [anon_sym__Alignas] = ACTIONS(1157), - [sym_primitive_type] = ACTIONS(1157), - [anon_sym_enum] = ACTIONS(1157), - [anon_sym_struct] = ACTIONS(1157), - [anon_sym_union] = ACTIONS(1157), - [anon_sym_if] = ACTIONS(1157), - [anon_sym_else] = ACTIONS(1157), - [anon_sym_switch] = ACTIONS(1157), - [anon_sym_case] = ACTIONS(1157), - [anon_sym_default] = ACTIONS(1157), - [anon_sym_while] = ACTIONS(1157), - [anon_sym_do] = ACTIONS(1157), - [anon_sym_for] = ACTIONS(1157), - [anon_sym_return] = ACTIONS(1157), - [anon_sym_break] = ACTIONS(1157), - [anon_sym_continue] = ACTIONS(1157), - [anon_sym_goto] = ACTIONS(1157), - [anon_sym___try] = ACTIONS(1157), - [anon_sym___leave] = ACTIONS(1157), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_sizeof] = ACTIONS(1157), - [anon_sym___alignof__] = ACTIONS(1157), - [anon_sym___alignof] = ACTIONS(1157), - [anon_sym__alignof] = ACTIONS(1157), - [anon_sym_alignof] = ACTIONS(1157), - [anon_sym__Alignof] = ACTIONS(1157), - [anon_sym_offsetof] = ACTIONS(1157), - [anon_sym__Generic] = ACTIONS(1157), - [anon_sym_asm] = ACTIONS(1157), - [anon_sym___asm__] = ACTIONS(1157), - [sym_number_literal] = ACTIONS(1159), - [anon_sym_L_SQUOTE] = ACTIONS(1159), - [anon_sym_u_SQUOTE] = ACTIONS(1159), - [anon_sym_U_SQUOTE] = ACTIONS(1159), - [anon_sym_u8_SQUOTE] = ACTIONS(1159), - [anon_sym_SQUOTE] = ACTIONS(1159), - [anon_sym_L_DQUOTE] = ACTIONS(1159), - [anon_sym_u_DQUOTE] = ACTIONS(1159), - [anon_sym_U_DQUOTE] = ACTIONS(1159), - [anon_sym_u8_DQUOTE] = ACTIONS(1159), - [anon_sym_DQUOTE] = ACTIONS(1159), - [sym_true] = ACTIONS(1157), - [sym_false] = ACTIONS(1157), - [anon_sym_NULL] = ACTIONS(1157), - [anon_sym_nullptr] = ACTIONS(1157), - [sym_comment] = ACTIONS(3), + [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_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), }, [181] = { - [sym_identifier] = ACTIONS(1229), - [aux_sym_preproc_include_token1] = ACTIONS(1229), - [aux_sym_preproc_def_token1] = ACTIONS(1229), - [aux_sym_preproc_if_token1] = ACTIONS(1229), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1229), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1229), - [sym_preproc_directive] = ACTIONS(1229), - [anon_sym_LPAREN2] = ACTIONS(1231), - [anon_sym_BANG] = ACTIONS(1231), - [anon_sym_TILDE] = ACTIONS(1231), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_AMP] = ACTIONS(1231), - [anon_sym_SEMI] = ACTIONS(1231), - [anon_sym___extension__] = ACTIONS(1229), - [anon_sym_typedef] = ACTIONS(1229), - [anon_sym_extern] = ACTIONS(1229), - [anon_sym___attribute__] = ACTIONS(1229), - [anon_sym___scanf] = ACTIONS(1229), - [anon_sym___printf] = ACTIONS(1229), - [anon_sym___read_mostly] = ACTIONS(1229), - [anon_sym___must_hold] = ACTIONS(1229), - [anon_sym___ro_after_init] = ACTIONS(1229), - [anon_sym___noreturn] = ACTIONS(1229), - [anon_sym___cold] = ACTIONS(1229), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1231), - [anon_sym___declspec] = ACTIONS(1229), - [anon_sym___init] = ACTIONS(1229), - [anon_sym___exit] = ACTIONS(1229), - [anon_sym___cdecl] = ACTIONS(1229), - [anon_sym___clrcall] = ACTIONS(1229), - [anon_sym___stdcall] = ACTIONS(1229), - [anon_sym___fastcall] = ACTIONS(1229), - [anon_sym___thiscall] = ACTIONS(1229), - [anon_sym___vectorcall] = ACTIONS(1229), - [anon_sym_LBRACE] = ACTIONS(1231), - [anon_sym_RBRACE] = ACTIONS(1231), - [anon_sym_signed] = ACTIONS(1229), - [anon_sym_unsigned] = ACTIONS(1229), - [anon_sym_long] = ACTIONS(1229), - [anon_sym_short] = ACTIONS(1229), - [anon_sym_static] = ACTIONS(1229), - [anon_sym_auto] = ACTIONS(1229), - [anon_sym_register] = ACTIONS(1229), - [anon_sym_inline] = ACTIONS(1229), - [anon_sym___inline] = ACTIONS(1229), - [anon_sym___inline__] = ACTIONS(1229), - [anon_sym___forceinline] = ACTIONS(1229), - [anon_sym_thread_local] = ACTIONS(1229), - [anon_sym___thread] = ACTIONS(1229), - [anon_sym_const] = ACTIONS(1229), - [anon_sym_constexpr] = ACTIONS(1229), - [anon_sym_volatile] = ACTIONS(1229), - [anon_sym_restrict] = ACTIONS(1229), - [anon_sym___restrict__] = ACTIONS(1229), - [anon_sym__Atomic] = ACTIONS(1229), - [anon_sym__Noreturn] = ACTIONS(1229), - [anon_sym_noreturn] = ACTIONS(1229), - [anon_sym_alignas] = ACTIONS(1229), - [anon_sym__Alignas] = ACTIONS(1229), - [sym_primitive_type] = ACTIONS(1229), - [anon_sym_enum] = ACTIONS(1229), - [anon_sym_struct] = ACTIONS(1229), - [anon_sym_union] = ACTIONS(1229), - [anon_sym_if] = ACTIONS(1229), - [anon_sym_else] = ACTIONS(1229), - [anon_sym_switch] = ACTIONS(1229), - [anon_sym_case] = ACTIONS(1229), - [anon_sym_default] = ACTIONS(1229), - [anon_sym_while] = ACTIONS(1229), - [anon_sym_do] = ACTIONS(1229), - [anon_sym_for] = ACTIONS(1229), - [anon_sym_return] = ACTIONS(1229), - [anon_sym_break] = ACTIONS(1229), - [anon_sym_continue] = ACTIONS(1229), - [anon_sym_goto] = ACTIONS(1229), - [anon_sym___try] = ACTIONS(1229), - [anon_sym___leave] = ACTIONS(1229), - [anon_sym_DASH_DASH] = ACTIONS(1231), - [anon_sym_PLUS_PLUS] = ACTIONS(1231), - [anon_sym_sizeof] = ACTIONS(1229), - [anon_sym___alignof__] = ACTIONS(1229), - [anon_sym___alignof] = ACTIONS(1229), - [anon_sym__alignof] = ACTIONS(1229), - [anon_sym_alignof] = ACTIONS(1229), - [anon_sym__Alignof] = ACTIONS(1229), - [anon_sym_offsetof] = ACTIONS(1229), - [anon_sym__Generic] = ACTIONS(1229), - [anon_sym_asm] = ACTIONS(1229), - [anon_sym___asm__] = ACTIONS(1229), - [sym_number_literal] = ACTIONS(1231), - [anon_sym_L_SQUOTE] = ACTIONS(1231), - [anon_sym_u_SQUOTE] = ACTIONS(1231), - [anon_sym_U_SQUOTE] = ACTIONS(1231), - [anon_sym_u8_SQUOTE] = ACTIONS(1231), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_L_DQUOTE] = ACTIONS(1231), - [anon_sym_u_DQUOTE] = ACTIONS(1231), - [anon_sym_U_DQUOTE] = ACTIONS(1231), - [anon_sym_u8_DQUOTE] = ACTIONS(1231), - [anon_sym_DQUOTE] = ACTIONS(1231), - [sym_true] = ACTIONS(1229), - [sym_false] = ACTIONS(1229), - [anon_sym_NULL] = ACTIONS(1229), - [anon_sym_nullptr] = ACTIONS(1229), - [sym_comment] = ACTIONS(3), + [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(1245), - [aux_sym_preproc_include_token1] = ACTIONS(1245), - [aux_sym_preproc_def_token1] = ACTIONS(1245), - [aux_sym_preproc_if_token1] = ACTIONS(1245), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1245), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1245), - [sym_preproc_directive] = ACTIONS(1245), - [anon_sym_LPAREN2] = ACTIONS(1247), - [anon_sym_BANG] = ACTIONS(1247), - [anon_sym_TILDE] = ACTIONS(1247), - [anon_sym_DASH] = ACTIONS(1245), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_STAR] = ACTIONS(1247), - [anon_sym_AMP] = ACTIONS(1247), - [anon_sym_SEMI] = ACTIONS(1247), - [anon_sym___extension__] = ACTIONS(1245), - [anon_sym_typedef] = ACTIONS(1245), - [anon_sym_extern] = ACTIONS(1245), - [anon_sym___attribute__] = ACTIONS(1245), - [anon_sym___scanf] = ACTIONS(1245), - [anon_sym___printf] = ACTIONS(1245), - [anon_sym___read_mostly] = ACTIONS(1245), - [anon_sym___must_hold] = ACTIONS(1245), - [anon_sym___ro_after_init] = ACTIONS(1245), - [anon_sym___noreturn] = ACTIONS(1245), - [anon_sym___cold] = ACTIONS(1245), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1247), - [anon_sym___declspec] = ACTIONS(1245), - [anon_sym___init] = ACTIONS(1245), - [anon_sym___exit] = ACTIONS(1245), - [anon_sym___cdecl] = ACTIONS(1245), - [anon_sym___clrcall] = ACTIONS(1245), - [anon_sym___stdcall] = ACTIONS(1245), - [anon_sym___fastcall] = ACTIONS(1245), - [anon_sym___thiscall] = ACTIONS(1245), - [anon_sym___vectorcall] = ACTIONS(1245), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_RBRACE] = ACTIONS(1247), - [anon_sym_signed] = ACTIONS(1245), - [anon_sym_unsigned] = ACTIONS(1245), - [anon_sym_long] = ACTIONS(1245), - [anon_sym_short] = ACTIONS(1245), - [anon_sym_static] = ACTIONS(1245), - [anon_sym_auto] = ACTIONS(1245), - [anon_sym_register] = ACTIONS(1245), - [anon_sym_inline] = ACTIONS(1245), - [anon_sym___inline] = ACTIONS(1245), - [anon_sym___inline__] = ACTIONS(1245), - [anon_sym___forceinline] = ACTIONS(1245), - [anon_sym_thread_local] = ACTIONS(1245), - [anon_sym___thread] = ACTIONS(1245), - [anon_sym_const] = ACTIONS(1245), - [anon_sym_constexpr] = ACTIONS(1245), - [anon_sym_volatile] = ACTIONS(1245), - [anon_sym_restrict] = ACTIONS(1245), - [anon_sym___restrict__] = ACTIONS(1245), - [anon_sym__Atomic] = ACTIONS(1245), - [anon_sym__Noreturn] = ACTIONS(1245), - [anon_sym_noreturn] = ACTIONS(1245), - [anon_sym_alignas] = ACTIONS(1245), - [anon_sym__Alignas] = ACTIONS(1245), - [sym_primitive_type] = ACTIONS(1245), - [anon_sym_enum] = ACTIONS(1245), - [anon_sym_struct] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1245), - [anon_sym_if] = ACTIONS(1245), - [anon_sym_else] = ACTIONS(1245), - [anon_sym_switch] = ACTIONS(1245), - [anon_sym_case] = ACTIONS(1245), - [anon_sym_default] = ACTIONS(1245), - [anon_sym_while] = ACTIONS(1245), - [anon_sym_do] = ACTIONS(1245), - [anon_sym_for] = ACTIONS(1245), - [anon_sym_return] = ACTIONS(1245), - [anon_sym_break] = ACTIONS(1245), - [anon_sym_continue] = ACTIONS(1245), - [anon_sym_goto] = ACTIONS(1245), - [anon_sym___try] = ACTIONS(1245), - [anon_sym___leave] = ACTIONS(1245), - [anon_sym_DASH_DASH] = ACTIONS(1247), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_sizeof] = ACTIONS(1245), - [anon_sym___alignof__] = ACTIONS(1245), - [anon_sym___alignof] = ACTIONS(1245), - [anon_sym__alignof] = ACTIONS(1245), - [anon_sym_alignof] = ACTIONS(1245), - [anon_sym__Alignof] = ACTIONS(1245), - [anon_sym_offsetof] = ACTIONS(1245), - [anon_sym__Generic] = ACTIONS(1245), - [anon_sym_asm] = ACTIONS(1245), - [anon_sym___asm__] = ACTIONS(1245), - [sym_number_literal] = ACTIONS(1247), - [anon_sym_L_SQUOTE] = ACTIONS(1247), - [anon_sym_u_SQUOTE] = ACTIONS(1247), - [anon_sym_U_SQUOTE] = ACTIONS(1247), - [anon_sym_u8_SQUOTE] = ACTIONS(1247), - [anon_sym_SQUOTE] = ACTIONS(1247), - [anon_sym_L_DQUOTE] = ACTIONS(1247), - [anon_sym_u_DQUOTE] = ACTIONS(1247), - [anon_sym_U_DQUOTE] = ACTIONS(1247), - [anon_sym_u8_DQUOTE] = ACTIONS(1247), - [anon_sym_DQUOTE] = ACTIONS(1247), - [sym_true] = ACTIONS(1245), - [sym_false] = ACTIONS(1245), - [anon_sym_NULL] = ACTIONS(1245), - [anon_sym_nullptr] = ACTIONS(1245), - [sym_comment] = ACTIONS(3), + [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), + [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), }, [183] = { - [sym_identifier] = ACTIONS(1257), - [aux_sym_preproc_include_token1] = ACTIONS(1257), - [aux_sym_preproc_def_token1] = ACTIONS(1257), - [aux_sym_preproc_if_token1] = ACTIONS(1257), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1257), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1257), - [sym_preproc_directive] = ACTIONS(1257), - [anon_sym_LPAREN2] = ACTIONS(1259), - [anon_sym_BANG] = ACTIONS(1259), - [anon_sym_TILDE] = ACTIONS(1259), - [anon_sym_DASH] = ACTIONS(1257), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_STAR] = ACTIONS(1259), - [anon_sym_AMP] = ACTIONS(1259), - [anon_sym_SEMI] = ACTIONS(1259), - [anon_sym___extension__] = ACTIONS(1257), - [anon_sym_typedef] = ACTIONS(1257), - [anon_sym_extern] = ACTIONS(1257), - [anon_sym___attribute__] = ACTIONS(1257), - [anon_sym___scanf] = ACTIONS(1257), - [anon_sym___printf] = ACTIONS(1257), - [anon_sym___read_mostly] = ACTIONS(1257), - [anon_sym___must_hold] = ACTIONS(1257), - [anon_sym___ro_after_init] = ACTIONS(1257), - [anon_sym___noreturn] = ACTIONS(1257), - [anon_sym___cold] = ACTIONS(1257), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1259), - [anon_sym___declspec] = ACTIONS(1257), - [anon_sym___init] = ACTIONS(1257), - [anon_sym___exit] = ACTIONS(1257), - [anon_sym___cdecl] = ACTIONS(1257), - [anon_sym___clrcall] = ACTIONS(1257), - [anon_sym___stdcall] = ACTIONS(1257), - [anon_sym___fastcall] = ACTIONS(1257), - [anon_sym___thiscall] = ACTIONS(1257), - [anon_sym___vectorcall] = ACTIONS(1257), - [anon_sym_LBRACE] = ACTIONS(1259), - [anon_sym_RBRACE] = ACTIONS(1259), - [anon_sym_signed] = ACTIONS(1257), - [anon_sym_unsigned] = ACTIONS(1257), - [anon_sym_long] = ACTIONS(1257), - [anon_sym_short] = ACTIONS(1257), - [anon_sym_static] = ACTIONS(1257), - [anon_sym_auto] = ACTIONS(1257), - [anon_sym_register] = ACTIONS(1257), - [anon_sym_inline] = ACTIONS(1257), - [anon_sym___inline] = ACTIONS(1257), - [anon_sym___inline__] = ACTIONS(1257), - [anon_sym___forceinline] = ACTIONS(1257), - [anon_sym_thread_local] = ACTIONS(1257), - [anon_sym___thread] = ACTIONS(1257), - [anon_sym_const] = ACTIONS(1257), - [anon_sym_constexpr] = ACTIONS(1257), - [anon_sym_volatile] = ACTIONS(1257), - [anon_sym_restrict] = ACTIONS(1257), - [anon_sym___restrict__] = ACTIONS(1257), - [anon_sym__Atomic] = ACTIONS(1257), - [anon_sym__Noreturn] = ACTIONS(1257), - [anon_sym_noreturn] = ACTIONS(1257), - [anon_sym_alignas] = ACTIONS(1257), - [anon_sym__Alignas] = ACTIONS(1257), - [sym_primitive_type] = ACTIONS(1257), - [anon_sym_enum] = ACTIONS(1257), - [anon_sym_struct] = ACTIONS(1257), - [anon_sym_union] = ACTIONS(1257), - [anon_sym_if] = ACTIONS(1257), - [anon_sym_else] = ACTIONS(1257), - [anon_sym_switch] = ACTIONS(1257), - [anon_sym_case] = ACTIONS(1257), - [anon_sym_default] = ACTIONS(1257), - [anon_sym_while] = ACTIONS(1257), - [anon_sym_do] = ACTIONS(1257), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_return] = ACTIONS(1257), - [anon_sym_break] = ACTIONS(1257), - [anon_sym_continue] = ACTIONS(1257), - [anon_sym_goto] = ACTIONS(1257), - [anon_sym___try] = ACTIONS(1257), - [anon_sym___leave] = ACTIONS(1257), - [anon_sym_DASH_DASH] = ACTIONS(1259), - [anon_sym_PLUS_PLUS] = ACTIONS(1259), - [anon_sym_sizeof] = ACTIONS(1257), - [anon_sym___alignof__] = ACTIONS(1257), - [anon_sym___alignof] = ACTIONS(1257), - [anon_sym__alignof] = ACTIONS(1257), - [anon_sym_alignof] = ACTIONS(1257), - [anon_sym__Alignof] = ACTIONS(1257), - [anon_sym_offsetof] = ACTIONS(1257), - [anon_sym__Generic] = ACTIONS(1257), - [anon_sym_asm] = ACTIONS(1257), - [anon_sym___asm__] = ACTIONS(1257), - [sym_number_literal] = ACTIONS(1259), - [anon_sym_L_SQUOTE] = ACTIONS(1259), - [anon_sym_u_SQUOTE] = ACTIONS(1259), - [anon_sym_U_SQUOTE] = ACTIONS(1259), - [anon_sym_u8_SQUOTE] = ACTIONS(1259), - [anon_sym_SQUOTE] = ACTIONS(1259), - [anon_sym_L_DQUOTE] = ACTIONS(1259), - [anon_sym_u_DQUOTE] = ACTIONS(1259), - [anon_sym_U_DQUOTE] = ACTIONS(1259), - [anon_sym_u8_DQUOTE] = ACTIONS(1259), - [anon_sym_DQUOTE] = ACTIONS(1259), - [sym_true] = ACTIONS(1257), - [sym_false] = ACTIONS(1257), - [anon_sym_NULL] = ACTIONS(1257), - [anon_sym_nullptr] = ACTIONS(1257), - [sym_comment] = ACTIONS(3), + [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_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), }, [184] = { - [ts_builtin_sym_end] = ACTIONS(1251), - [sym_identifier] = ACTIONS(1249), - [aux_sym_preproc_include_token1] = ACTIONS(1249), - [aux_sym_preproc_def_token1] = ACTIONS(1249), - [aux_sym_preproc_if_token1] = ACTIONS(1249), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1249), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1249), - [sym_preproc_directive] = ACTIONS(1249), - [anon_sym_LPAREN2] = ACTIONS(1251), - [anon_sym_BANG] = ACTIONS(1251), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1249), - [anon_sym_STAR] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1251), - [anon_sym_SEMI] = ACTIONS(1251), - [anon_sym___extension__] = ACTIONS(1249), - [anon_sym_typedef] = ACTIONS(1249), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym___attribute__] = ACTIONS(1249), - [anon_sym___scanf] = ACTIONS(1249), - [anon_sym___printf] = ACTIONS(1249), - [anon_sym___read_mostly] = ACTIONS(1249), - [anon_sym___must_hold] = ACTIONS(1249), - [anon_sym___ro_after_init] = ACTIONS(1249), - [anon_sym___noreturn] = ACTIONS(1249), - [anon_sym___cold] = ACTIONS(1249), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1251), - [anon_sym___declspec] = ACTIONS(1249), - [anon_sym___init] = ACTIONS(1249), - [anon_sym___exit] = ACTIONS(1249), - [anon_sym___cdecl] = ACTIONS(1249), - [anon_sym___clrcall] = ACTIONS(1249), - [anon_sym___stdcall] = ACTIONS(1249), - [anon_sym___fastcall] = ACTIONS(1249), - [anon_sym___thiscall] = ACTIONS(1249), - [anon_sym___vectorcall] = ACTIONS(1249), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_signed] = ACTIONS(1249), - [anon_sym_unsigned] = ACTIONS(1249), - [anon_sym_long] = ACTIONS(1249), - [anon_sym_short] = ACTIONS(1249), - [anon_sym_static] = ACTIONS(1249), - [anon_sym_auto] = ACTIONS(1249), - [anon_sym_register] = ACTIONS(1249), - [anon_sym_inline] = ACTIONS(1249), - [anon_sym___inline] = ACTIONS(1249), - [anon_sym___inline__] = ACTIONS(1249), - [anon_sym___forceinline] = ACTIONS(1249), - [anon_sym_thread_local] = ACTIONS(1249), - [anon_sym___thread] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_constexpr] = ACTIONS(1249), - [anon_sym_volatile] = ACTIONS(1249), - [anon_sym_restrict] = ACTIONS(1249), - [anon_sym___restrict__] = ACTIONS(1249), - [anon_sym__Atomic] = ACTIONS(1249), - [anon_sym__Noreturn] = ACTIONS(1249), - [anon_sym_noreturn] = ACTIONS(1249), - [anon_sym_alignas] = ACTIONS(1249), - [anon_sym__Alignas] = ACTIONS(1249), - [sym_primitive_type] = ACTIONS(1249), - [anon_sym_enum] = ACTIONS(1249), - [anon_sym_struct] = ACTIONS(1249), - [anon_sym_union] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1249), - [anon_sym_else] = ACTIONS(1249), - [anon_sym_switch] = ACTIONS(1249), - [anon_sym_case] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1249), - [anon_sym_while] = ACTIONS(1249), - [anon_sym_do] = ACTIONS(1249), - [anon_sym_for] = ACTIONS(1249), - [anon_sym_return] = ACTIONS(1249), - [anon_sym_break] = ACTIONS(1249), - [anon_sym_continue] = ACTIONS(1249), - [anon_sym_goto] = ACTIONS(1249), - [anon_sym___try] = ACTIONS(1249), - [anon_sym___leave] = ACTIONS(1249), - [anon_sym_DASH_DASH] = ACTIONS(1251), - [anon_sym_PLUS_PLUS] = ACTIONS(1251), - [anon_sym_sizeof] = ACTIONS(1249), - [anon_sym___alignof__] = ACTIONS(1249), - [anon_sym___alignof] = ACTIONS(1249), - [anon_sym__alignof] = ACTIONS(1249), - [anon_sym_alignof] = ACTIONS(1249), - [anon_sym__Alignof] = ACTIONS(1249), - [anon_sym_offsetof] = ACTIONS(1249), - [anon_sym__Generic] = ACTIONS(1249), - [anon_sym_asm] = ACTIONS(1249), - [anon_sym___asm__] = ACTIONS(1249), - [sym_number_literal] = ACTIONS(1251), - [anon_sym_L_SQUOTE] = ACTIONS(1251), - [anon_sym_u_SQUOTE] = ACTIONS(1251), - [anon_sym_U_SQUOTE] = ACTIONS(1251), - [anon_sym_u8_SQUOTE] = ACTIONS(1251), - [anon_sym_SQUOTE] = ACTIONS(1251), - [anon_sym_L_DQUOTE] = ACTIONS(1251), - [anon_sym_u_DQUOTE] = ACTIONS(1251), - [anon_sym_U_DQUOTE] = ACTIONS(1251), - [anon_sym_u8_DQUOTE] = ACTIONS(1251), - [anon_sym_DQUOTE] = ACTIONS(1251), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [anon_sym_NULL] = ACTIONS(1249), - [anon_sym_nullptr] = ACTIONS(1249), - [sym_comment] = ACTIONS(3), + [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_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), }, [185] = { - [ts_builtin_sym_end] = ACTIONS(1227), - [sym_identifier] = ACTIONS(1225), - [aux_sym_preproc_include_token1] = ACTIONS(1225), - [aux_sym_preproc_def_token1] = ACTIONS(1225), - [aux_sym_preproc_if_token1] = ACTIONS(1225), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1225), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1225), - [sym_preproc_directive] = ACTIONS(1225), - [anon_sym_LPAREN2] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_TILDE] = ACTIONS(1227), - [anon_sym_DASH] = ACTIONS(1225), - [anon_sym_PLUS] = ACTIONS(1225), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1227), - [anon_sym_SEMI] = ACTIONS(1227), - [anon_sym___extension__] = ACTIONS(1225), - [anon_sym_typedef] = ACTIONS(1225), - [anon_sym_extern] = ACTIONS(1225), - [anon_sym___attribute__] = ACTIONS(1225), - [anon_sym___scanf] = ACTIONS(1225), - [anon_sym___printf] = ACTIONS(1225), - [anon_sym___read_mostly] = ACTIONS(1225), - [anon_sym___must_hold] = ACTIONS(1225), - [anon_sym___ro_after_init] = ACTIONS(1225), - [anon_sym___noreturn] = ACTIONS(1225), - [anon_sym___cold] = ACTIONS(1225), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1227), - [anon_sym___declspec] = ACTIONS(1225), - [anon_sym___init] = ACTIONS(1225), - [anon_sym___exit] = ACTIONS(1225), - [anon_sym___cdecl] = ACTIONS(1225), - [anon_sym___clrcall] = ACTIONS(1225), - [anon_sym___stdcall] = ACTIONS(1225), - [anon_sym___fastcall] = ACTIONS(1225), - [anon_sym___thiscall] = ACTIONS(1225), - [anon_sym___vectorcall] = ACTIONS(1225), - [anon_sym_LBRACE] = ACTIONS(1227), - [anon_sym_signed] = ACTIONS(1225), - [anon_sym_unsigned] = ACTIONS(1225), - [anon_sym_long] = ACTIONS(1225), - [anon_sym_short] = ACTIONS(1225), - [anon_sym_static] = ACTIONS(1225), - [anon_sym_auto] = ACTIONS(1225), - [anon_sym_register] = ACTIONS(1225), - [anon_sym_inline] = ACTIONS(1225), - [anon_sym___inline] = ACTIONS(1225), - [anon_sym___inline__] = ACTIONS(1225), - [anon_sym___forceinline] = ACTIONS(1225), - [anon_sym_thread_local] = ACTIONS(1225), - [anon_sym___thread] = ACTIONS(1225), - [anon_sym_const] = ACTIONS(1225), - [anon_sym_constexpr] = ACTIONS(1225), - [anon_sym_volatile] = ACTIONS(1225), - [anon_sym_restrict] = ACTIONS(1225), - [anon_sym___restrict__] = ACTIONS(1225), - [anon_sym__Atomic] = ACTIONS(1225), - [anon_sym__Noreturn] = ACTIONS(1225), - [anon_sym_noreturn] = ACTIONS(1225), - [anon_sym_alignas] = ACTIONS(1225), - [anon_sym__Alignas] = ACTIONS(1225), - [sym_primitive_type] = ACTIONS(1225), - [anon_sym_enum] = ACTIONS(1225), - [anon_sym_struct] = ACTIONS(1225), - [anon_sym_union] = ACTIONS(1225), - [anon_sym_if] = ACTIONS(1225), - [anon_sym_else] = ACTIONS(1225), - [anon_sym_switch] = ACTIONS(1225), - [anon_sym_case] = ACTIONS(1225), - [anon_sym_default] = ACTIONS(1225), - [anon_sym_while] = ACTIONS(1225), - [anon_sym_do] = ACTIONS(1225), - [anon_sym_for] = ACTIONS(1225), - [anon_sym_return] = ACTIONS(1225), - [anon_sym_break] = ACTIONS(1225), - [anon_sym_continue] = ACTIONS(1225), - [anon_sym_goto] = ACTIONS(1225), - [anon_sym___try] = ACTIONS(1225), - [anon_sym___leave] = ACTIONS(1225), - [anon_sym_DASH_DASH] = ACTIONS(1227), - [anon_sym_PLUS_PLUS] = ACTIONS(1227), - [anon_sym_sizeof] = ACTIONS(1225), - [anon_sym___alignof__] = ACTIONS(1225), - [anon_sym___alignof] = ACTIONS(1225), - [anon_sym__alignof] = ACTIONS(1225), - [anon_sym_alignof] = ACTIONS(1225), - [anon_sym__Alignof] = ACTIONS(1225), - [anon_sym_offsetof] = ACTIONS(1225), - [anon_sym__Generic] = ACTIONS(1225), - [anon_sym_asm] = ACTIONS(1225), - [anon_sym___asm__] = ACTIONS(1225), - [sym_number_literal] = ACTIONS(1227), - [anon_sym_L_SQUOTE] = ACTIONS(1227), - [anon_sym_u_SQUOTE] = ACTIONS(1227), - [anon_sym_U_SQUOTE] = ACTIONS(1227), - [anon_sym_u8_SQUOTE] = ACTIONS(1227), - [anon_sym_SQUOTE] = ACTIONS(1227), - [anon_sym_L_DQUOTE] = ACTIONS(1227), - [anon_sym_u_DQUOTE] = ACTIONS(1227), - [anon_sym_U_DQUOTE] = ACTIONS(1227), - [anon_sym_u8_DQUOTE] = ACTIONS(1227), - [anon_sym_DQUOTE] = ACTIONS(1227), - [sym_true] = ACTIONS(1225), - [sym_false] = ACTIONS(1225), - [anon_sym_NULL] = ACTIONS(1225), - [anon_sym_nullptr] = ACTIONS(1225), - [sym_comment] = ACTIONS(3), + [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_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), }, [186] = { - [sym_identifier] = ACTIONS(1241), - [aux_sym_preproc_include_token1] = ACTIONS(1241), - [aux_sym_preproc_def_token1] = ACTIONS(1241), - [aux_sym_preproc_if_token1] = ACTIONS(1241), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1241), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1241), - [sym_preproc_directive] = ACTIONS(1241), - [anon_sym_LPAREN2] = ACTIONS(1243), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1243), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_PLUS] = ACTIONS(1241), - [anon_sym_STAR] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1243), - [anon_sym_SEMI] = ACTIONS(1243), - [anon_sym___extension__] = ACTIONS(1241), - [anon_sym_typedef] = ACTIONS(1241), - [anon_sym_extern] = ACTIONS(1241), - [anon_sym___attribute__] = ACTIONS(1241), - [anon_sym___scanf] = ACTIONS(1241), - [anon_sym___printf] = ACTIONS(1241), - [anon_sym___read_mostly] = ACTIONS(1241), - [anon_sym___must_hold] = ACTIONS(1241), - [anon_sym___ro_after_init] = ACTIONS(1241), - [anon_sym___noreturn] = ACTIONS(1241), - [anon_sym___cold] = ACTIONS(1241), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1243), - [anon_sym___declspec] = ACTIONS(1241), - [anon_sym___init] = ACTIONS(1241), - [anon_sym___exit] = ACTIONS(1241), - [anon_sym___cdecl] = ACTIONS(1241), - [anon_sym___clrcall] = ACTIONS(1241), - [anon_sym___stdcall] = ACTIONS(1241), - [anon_sym___fastcall] = ACTIONS(1241), - [anon_sym___thiscall] = ACTIONS(1241), - [anon_sym___vectorcall] = ACTIONS(1241), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_RBRACE] = ACTIONS(1243), - [anon_sym_signed] = ACTIONS(1241), - [anon_sym_unsigned] = ACTIONS(1241), - [anon_sym_long] = ACTIONS(1241), - [anon_sym_short] = ACTIONS(1241), - [anon_sym_static] = ACTIONS(1241), - [anon_sym_auto] = ACTIONS(1241), - [anon_sym_register] = ACTIONS(1241), - [anon_sym_inline] = ACTIONS(1241), - [anon_sym___inline] = ACTIONS(1241), - [anon_sym___inline__] = ACTIONS(1241), - [anon_sym___forceinline] = ACTIONS(1241), - [anon_sym_thread_local] = ACTIONS(1241), - [anon_sym___thread] = ACTIONS(1241), - [anon_sym_const] = ACTIONS(1241), - [anon_sym_constexpr] = ACTIONS(1241), - [anon_sym_volatile] = ACTIONS(1241), - [anon_sym_restrict] = ACTIONS(1241), - [anon_sym___restrict__] = ACTIONS(1241), - [anon_sym__Atomic] = ACTIONS(1241), - [anon_sym__Noreturn] = ACTIONS(1241), - [anon_sym_noreturn] = ACTIONS(1241), - [anon_sym_alignas] = ACTIONS(1241), - [anon_sym__Alignas] = ACTIONS(1241), - [sym_primitive_type] = ACTIONS(1241), - [anon_sym_enum] = ACTIONS(1241), - [anon_sym_struct] = ACTIONS(1241), - [anon_sym_union] = ACTIONS(1241), - [anon_sym_if] = ACTIONS(1241), - [anon_sym_else] = ACTIONS(1241), - [anon_sym_switch] = ACTIONS(1241), - [anon_sym_case] = ACTIONS(1241), - [anon_sym_default] = ACTIONS(1241), - [anon_sym_while] = ACTIONS(1241), - [anon_sym_do] = ACTIONS(1241), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_return] = ACTIONS(1241), - [anon_sym_break] = ACTIONS(1241), - [anon_sym_continue] = ACTIONS(1241), - [anon_sym_goto] = ACTIONS(1241), - [anon_sym___try] = ACTIONS(1241), - [anon_sym___leave] = ACTIONS(1241), - [anon_sym_DASH_DASH] = ACTIONS(1243), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_sizeof] = ACTIONS(1241), - [anon_sym___alignof__] = ACTIONS(1241), - [anon_sym___alignof] = ACTIONS(1241), - [anon_sym__alignof] = ACTIONS(1241), - [anon_sym_alignof] = ACTIONS(1241), - [anon_sym__Alignof] = ACTIONS(1241), - [anon_sym_offsetof] = ACTIONS(1241), - [anon_sym__Generic] = ACTIONS(1241), - [anon_sym_asm] = ACTIONS(1241), - [anon_sym___asm__] = ACTIONS(1241), - [sym_number_literal] = ACTIONS(1243), - [anon_sym_L_SQUOTE] = ACTIONS(1243), - [anon_sym_u_SQUOTE] = ACTIONS(1243), - [anon_sym_U_SQUOTE] = ACTIONS(1243), - [anon_sym_u8_SQUOTE] = ACTIONS(1243), - [anon_sym_SQUOTE] = ACTIONS(1243), - [anon_sym_L_DQUOTE] = ACTIONS(1243), - [anon_sym_u_DQUOTE] = ACTIONS(1243), - [anon_sym_U_DQUOTE] = ACTIONS(1243), - [anon_sym_u8_DQUOTE] = ACTIONS(1243), - [anon_sym_DQUOTE] = ACTIONS(1243), - [sym_true] = ACTIONS(1241), - [sym_false] = ACTIONS(1241), - [anon_sym_NULL] = ACTIONS(1241), - [anon_sym_nullptr] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), + [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_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), }, [187] = { - [sym_identifier] = ACTIONS(1197), - [aux_sym_preproc_include_token1] = ACTIONS(1197), - [aux_sym_preproc_def_token1] = ACTIONS(1197), - [aux_sym_preproc_if_token1] = ACTIONS(1197), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1197), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1197), - [sym_preproc_directive] = ACTIONS(1197), - [anon_sym_LPAREN2] = ACTIONS(1199), - [anon_sym_BANG] = ACTIONS(1199), - [anon_sym_TILDE] = ACTIONS(1199), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_AMP] = ACTIONS(1199), - [anon_sym_SEMI] = ACTIONS(1199), - [anon_sym___extension__] = ACTIONS(1197), - [anon_sym_typedef] = ACTIONS(1197), - [anon_sym_extern] = ACTIONS(1197), - [anon_sym___attribute__] = ACTIONS(1197), - [anon_sym___scanf] = ACTIONS(1197), - [anon_sym___printf] = ACTIONS(1197), - [anon_sym___read_mostly] = ACTIONS(1197), - [anon_sym___must_hold] = ACTIONS(1197), - [anon_sym___ro_after_init] = ACTIONS(1197), - [anon_sym___noreturn] = ACTIONS(1197), - [anon_sym___cold] = ACTIONS(1197), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1199), - [anon_sym___declspec] = ACTIONS(1197), - [anon_sym___init] = ACTIONS(1197), - [anon_sym___exit] = ACTIONS(1197), - [anon_sym___cdecl] = ACTIONS(1197), - [anon_sym___clrcall] = ACTIONS(1197), - [anon_sym___stdcall] = ACTIONS(1197), - [anon_sym___fastcall] = ACTIONS(1197), - [anon_sym___thiscall] = ACTIONS(1197), - [anon_sym___vectorcall] = ACTIONS(1197), - [anon_sym_LBRACE] = ACTIONS(1199), - [anon_sym_RBRACE] = ACTIONS(1199), - [anon_sym_signed] = ACTIONS(1197), - [anon_sym_unsigned] = ACTIONS(1197), - [anon_sym_long] = ACTIONS(1197), - [anon_sym_short] = ACTIONS(1197), - [anon_sym_static] = ACTIONS(1197), - [anon_sym_auto] = ACTIONS(1197), - [anon_sym_register] = ACTIONS(1197), - [anon_sym_inline] = ACTIONS(1197), - [anon_sym___inline] = ACTIONS(1197), - [anon_sym___inline__] = ACTIONS(1197), - [anon_sym___forceinline] = ACTIONS(1197), - [anon_sym_thread_local] = ACTIONS(1197), - [anon_sym___thread] = ACTIONS(1197), - [anon_sym_const] = ACTIONS(1197), - [anon_sym_constexpr] = ACTIONS(1197), - [anon_sym_volatile] = ACTIONS(1197), - [anon_sym_restrict] = ACTIONS(1197), - [anon_sym___restrict__] = ACTIONS(1197), - [anon_sym__Atomic] = ACTIONS(1197), - [anon_sym__Noreturn] = ACTIONS(1197), - [anon_sym_noreturn] = ACTIONS(1197), - [anon_sym_alignas] = ACTIONS(1197), - [anon_sym__Alignas] = ACTIONS(1197), - [sym_primitive_type] = ACTIONS(1197), - [anon_sym_enum] = ACTIONS(1197), - [anon_sym_struct] = ACTIONS(1197), - [anon_sym_union] = ACTIONS(1197), - [anon_sym_if] = ACTIONS(1197), - [anon_sym_else] = ACTIONS(1197), - [anon_sym_switch] = ACTIONS(1197), - [anon_sym_case] = ACTIONS(1197), - [anon_sym_default] = ACTIONS(1197), - [anon_sym_while] = ACTIONS(1197), - [anon_sym_do] = ACTIONS(1197), - [anon_sym_for] = ACTIONS(1197), - [anon_sym_return] = ACTIONS(1197), - [anon_sym_break] = ACTIONS(1197), - [anon_sym_continue] = ACTIONS(1197), - [anon_sym_goto] = ACTIONS(1197), - [anon_sym___try] = ACTIONS(1197), - [anon_sym___leave] = ACTIONS(1197), - [anon_sym_DASH_DASH] = ACTIONS(1199), - [anon_sym_PLUS_PLUS] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1197), - [anon_sym___alignof__] = ACTIONS(1197), - [anon_sym___alignof] = ACTIONS(1197), - [anon_sym__alignof] = ACTIONS(1197), - [anon_sym_alignof] = ACTIONS(1197), - [anon_sym__Alignof] = ACTIONS(1197), - [anon_sym_offsetof] = ACTIONS(1197), - [anon_sym__Generic] = ACTIONS(1197), - [anon_sym_asm] = ACTIONS(1197), - [anon_sym___asm__] = ACTIONS(1197), - [sym_number_literal] = ACTIONS(1199), - [anon_sym_L_SQUOTE] = ACTIONS(1199), - [anon_sym_u_SQUOTE] = ACTIONS(1199), - [anon_sym_U_SQUOTE] = ACTIONS(1199), - [anon_sym_u8_SQUOTE] = ACTIONS(1199), - [anon_sym_SQUOTE] = ACTIONS(1199), - [anon_sym_L_DQUOTE] = ACTIONS(1199), - [anon_sym_u_DQUOTE] = ACTIONS(1199), - [anon_sym_U_DQUOTE] = ACTIONS(1199), - [anon_sym_u8_DQUOTE] = ACTIONS(1199), - [anon_sym_DQUOTE] = ACTIONS(1199), - [sym_true] = ACTIONS(1197), - [sym_false] = ACTIONS(1197), - [anon_sym_NULL] = ACTIONS(1197), - [anon_sym_nullptr] = ACTIONS(1197), - [sym_comment] = ACTIONS(3), + [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), }, [188] = { - [sym_identifier] = ACTIONS(1265), - [aux_sym_preproc_include_token1] = ACTIONS(1265), - [aux_sym_preproc_def_token1] = ACTIONS(1265), - [aux_sym_preproc_if_token1] = ACTIONS(1265), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1265), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1265), - [sym_preproc_directive] = ACTIONS(1265), - [anon_sym_LPAREN2] = ACTIONS(1267), - [anon_sym_BANG] = ACTIONS(1267), - [anon_sym_TILDE] = ACTIONS(1267), - [anon_sym_DASH] = ACTIONS(1265), - [anon_sym_PLUS] = ACTIONS(1265), - [anon_sym_STAR] = ACTIONS(1267), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_SEMI] = ACTIONS(1267), - [anon_sym___extension__] = ACTIONS(1265), - [anon_sym_typedef] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym___attribute__] = ACTIONS(1265), - [anon_sym___scanf] = ACTIONS(1265), - [anon_sym___printf] = ACTIONS(1265), - [anon_sym___read_mostly] = ACTIONS(1265), - [anon_sym___must_hold] = ACTIONS(1265), - [anon_sym___ro_after_init] = ACTIONS(1265), - [anon_sym___noreturn] = ACTIONS(1265), - [anon_sym___cold] = ACTIONS(1265), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1267), - [anon_sym___declspec] = ACTIONS(1265), - [anon_sym___init] = ACTIONS(1265), - [anon_sym___exit] = ACTIONS(1265), - [anon_sym___cdecl] = ACTIONS(1265), - [anon_sym___clrcall] = ACTIONS(1265), - [anon_sym___stdcall] = ACTIONS(1265), - [anon_sym___fastcall] = ACTIONS(1265), - [anon_sym___thiscall] = ACTIONS(1265), - [anon_sym___vectorcall] = ACTIONS(1265), - [anon_sym_LBRACE] = ACTIONS(1267), - [anon_sym_RBRACE] = ACTIONS(1267), - [anon_sym_signed] = ACTIONS(1265), - [anon_sym_unsigned] = ACTIONS(1265), - [anon_sym_long] = ACTIONS(1265), - [anon_sym_short] = ACTIONS(1265), - [anon_sym_static] = ACTIONS(1265), - [anon_sym_auto] = ACTIONS(1265), - [anon_sym_register] = ACTIONS(1265), - [anon_sym_inline] = ACTIONS(1265), - [anon_sym___inline] = ACTIONS(1265), - [anon_sym___inline__] = ACTIONS(1265), - [anon_sym___forceinline] = ACTIONS(1265), - [anon_sym_thread_local] = ACTIONS(1265), - [anon_sym___thread] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_constexpr] = ACTIONS(1265), - [anon_sym_volatile] = ACTIONS(1265), - [anon_sym_restrict] = ACTIONS(1265), - [anon_sym___restrict__] = ACTIONS(1265), - [anon_sym__Atomic] = ACTIONS(1265), - [anon_sym__Noreturn] = ACTIONS(1265), - [anon_sym_noreturn] = ACTIONS(1265), - [anon_sym_alignas] = ACTIONS(1265), - [anon_sym__Alignas] = ACTIONS(1265), - [sym_primitive_type] = ACTIONS(1265), - [anon_sym_enum] = ACTIONS(1265), - [anon_sym_struct] = ACTIONS(1265), - [anon_sym_union] = ACTIONS(1265), - [anon_sym_if] = ACTIONS(1265), - [anon_sym_else] = ACTIONS(1265), - [anon_sym_switch] = ACTIONS(1265), - [anon_sym_case] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_while] = ACTIONS(1265), - [anon_sym_do] = ACTIONS(1265), - [anon_sym_for] = ACTIONS(1265), - [anon_sym_return] = ACTIONS(1265), - [anon_sym_break] = ACTIONS(1265), - [anon_sym_continue] = ACTIONS(1265), - [anon_sym_goto] = ACTIONS(1265), - [anon_sym___try] = ACTIONS(1265), - [anon_sym___leave] = ACTIONS(1265), - [anon_sym_DASH_DASH] = ACTIONS(1267), - [anon_sym_PLUS_PLUS] = ACTIONS(1267), - [anon_sym_sizeof] = ACTIONS(1265), - [anon_sym___alignof__] = ACTIONS(1265), - [anon_sym___alignof] = ACTIONS(1265), - [anon_sym__alignof] = ACTIONS(1265), - [anon_sym_alignof] = ACTIONS(1265), - [anon_sym__Alignof] = ACTIONS(1265), - [anon_sym_offsetof] = ACTIONS(1265), - [anon_sym__Generic] = ACTIONS(1265), - [anon_sym_asm] = ACTIONS(1265), - [anon_sym___asm__] = ACTIONS(1265), - [sym_number_literal] = ACTIONS(1267), - [anon_sym_L_SQUOTE] = ACTIONS(1267), - [anon_sym_u_SQUOTE] = ACTIONS(1267), - [anon_sym_U_SQUOTE] = ACTIONS(1267), - [anon_sym_u8_SQUOTE] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_L_DQUOTE] = ACTIONS(1267), - [anon_sym_u_DQUOTE] = ACTIONS(1267), - [anon_sym_U_DQUOTE] = ACTIONS(1267), - [anon_sym_u8_DQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1267), - [sym_true] = ACTIONS(1265), - [sym_false] = ACTIONS(1265), - [anon_sym_NULL] = ACTIONS(1265), - [anon_sym_nullptr] = ACTIONS(1265), - [sym_comment] = ACTIONS(3), + [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(1215), - [sym_identifier] = ACTIONS(1213), - [aux_sym_preproc_include_token1] = ACTIONS(1213), - [aux_sym_preproc_def_token1] = ACTIONS(1213), - [aux_sym_preproc_if_token1] = ACTIONS(1213), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1213), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1213), - [sym_preproc_directive] = ACTIONS(1213), - [anon_sym_LPAREN2] = ACTIONS(1215), - [anon_sym_BANG] = ACTIONS(1215), - [anon_sym_TILDE] = ACTIONS(1215), - [anon_sym_DASH] = ACTIONS(1213), - [anon_sym_PLUS] = ACTIONS(1213), - [anon_sym_STAR] = ACTIONS(1215), - [anon_sym_AMP] = ACTIONS(1215), - [anon_sym_SEMI] = ACTIONS(1215), - [anon_sym___extension__] = ACTIONS(1213), - [anon_sym_typedef] = ACTIONS(1213), - [anon_sym_extern] = ACTIONS(1213), - [anon_sym___attribute__] = ACTIONS(1213), - [anon_sym___scanf] = ACTIONS(1213), - [anon_sym___printf] = ACTIONS(1213), - [anon_sym___read_mostly] = ACTIONS(1213), - [anon_sym___must_hold] = ACTIONS(1213), - [anon_sym___ro_after_init] = ACTIONS(1213), - [anon_sym___noreturn] = ACTIONS(1213), - [anon_sym___cold] = ACTIONS(1213), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1215), - [anon_sym___declspec] = ACTIONS(1213), - [anon_sym___init] = ACTIONS(1213), - [anon_sym___exit] = ACTIONS(1213), - [anon_sym___cdecl] = ACTIONS(1213), - [anon_sym___clrcall] = ACTIONS(1213), - [anon_sym___stdcall] = ACTIONS(1213), - [anon_sym___fastcall] = ACTIONS(1213), - [anon_sym___thiscall] = ACTIONS(1213), - [anon_sym___vectorcall] = ACTIONS(1213), - [anon_sym_LBRACE] = ACTIONS(1215), - [anon_sym_signed] = ACTIONS(1213), - [anon_sym_unsigned] = ACTIONS(1213), - [anon_sym_long] = ACTIONS(1213), - [anon_sym_short] = ACTIONS(1213), - [anon_sym_static] = ACTIONS(1213), - [anon_sym_auto] = ACTIONS(1213), - [anon_sym_register] = ACTIONS(1213), - [anon_sym_inline] = ACTIONS(1213), - [anon_sym___inline] = ACTIONS(1213), - [anon_sym___inline__] = ACTIONS(1213), - [anon_sym___forceinline] = ACTIONS(1213), - [anon_sym_thread_local] = ACTIONS(1213), - [anon_sym___thread] = ACTIONS(1213), - [anon_sym_const] = ACTIONS(1213), - [anon_sym_constexpr] = ACTIONS(1213), - [anon_sym_volatile] = ACTIONS(1213), - [anon_sym_restrict] = ACTIONS(1213), - [anon_sym___restrict__] = ACTIONS(1213), - [anon_sym__Atomic] = ACTIONS(1213), - [anon_sym__Noreturn] = ACTIONS(1213), - [anon_sym_noreturn] = ACTIONS(1213), - [anon_sym_alignas] = ACTIONS(1213), - [anon_sym__Alignas] = ACTIONS(1213), - [sym_primitive_type] = ACTIONS(1213), - [anon_sym_enum] = ACTIONS(1213), - [anon_sym_struct] = ACTIONS(1213), - [anon_sym_union] = ACTIONS(1213), - [anon_sym_if] = ACTIONS(1213), - [anon_sym_else] = ACTIONS(1213), - [anon_sym_switch] = ACTIONS(1213), - [anon_sym_case] = ACTIONS(1213), - [anon_sym_default] = ACTIONS(1213), - [anon_sym_while] = ACTIONS(1213), - [anon_sym_do] = ACTIONS(1213), - [anon_sym_for] = ACTIONS(1213), - [anon_sym_return] = ACTIONS(1213), - [anon_sym_break] = ACTIONS(1213), - [anon_sym_continue] = ACTIONS(1213), - [anon_sym_goto] = ACTIONS(1213), - [anon_sym___try] = ACTIONS(1213), - [anon_sym___leave] = ACTIONS(1213), - [anon_sym_DASH_DASH] = ACTIONS(1215), - [anon_sym_PLUS_PLUS] = ACTIONS(1215), - [anon_sym_sizeof] = ACTIONS(1213), - [anon_sym___alignof__] = ACTIONS(1213), - [anon_sym___alignof] = ACTIONS(1213), - [anon_sym__alignof] = ACTIONS(1213), - [anon_sym_alignof] = ACTIONS(1213), - [anon_sym__Alignof] = ACTIONS(1213), - [anon_sym_offsetof] = ACTIONS(1213), - [anon_sym__Generic] = ACTIONS(1213), - [anon_sym_asm] = ACTIONS(1213), - [anon_sym___asm__] = ACTIONS(1213), - [sym_number_literal] = ACTIONS(1215), - [anon_sym_L_SQUOTE] = ACTIONS(1215), - [anon_sym_u_SQUOTE] = ACTIONS(1215), - [anon_sym_U_SQUOTE] = ACTIONS(1215), - [anon_sym_u8_SQUOTE] = ACTIONS(1215), - [anon_sym_SQUOTE] = ACTIONS(1215), - [anon_sym_L_DQUOTE] = ACTIONS(1215), - [anon_sym_u_DQUOTE] = ACTIONS(1215), - [anon_sym_U_DQUOTE] = ACTIONS(1215), - [anon_sym_u8_DQUOTE] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1215), - [sym_true] = ACTIONS(1213), - [sym_false] = ACTIONS(1213), - [anon_sym_NULL] = ACTIONS(1213), - [anon_sym_nullptr] = ACTIONS(1213), - [sym_comment] = ACTIONS(3), + [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] = { - [sym_identifier] = ACTIONS(1205), - [aux_sym_preproc_include_token1] = ACTIONS(1205), - [aux_sym_preproc_def_token1] = ACTIONS(1205), - [aux_sym_preproc_if_token1] = ACTIONS(1205), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1205), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1205), - [sym_preproc_directive] = ACTIONS(1205), - [anon_sym_LPAREN2] = ACTIONS(1207), - [anon_sym_BANG] = ACTIONS(1207), - [anon_sym_TILDE] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1205), - [anon_sym_PLUS] = ACTIONS(1205), - [anon_sym_STAR] = ACTIONS(1207), - [anon_sym_AMP] = ACTIONS(1207), - [anon_sym_SEMI] = ACTIONS(1207), - [anon_sym___extension__] = ACTIONS(1205), - [anon_sym_typedef] = ACTIONS(1205), - [anon_sym_extern] = ACTIONS(1205), - [anon_sym___attribute__] = ACTIONS(1205), - [anon_sym___scanf] = ACTIONS(1205), - [anon_sym___printf] = ACTIONS(1205), - [anon_sym___read_mostly] = ACTIONS(1205), - [anon_sym___must_hold] = ACTIONS(1205), - [anon_sym___ro_after_init] = ACTIONS(1205), - [anon_sym___noreturn] = ACTIONS(1205), - [anon_sym___cold] = ACTIONS(1205), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1207), - [anon_sym___declspec] = ACTIONS(1205), - [anon_sym___init] = ACTIONS(1205), - [anon_sym___exit] = ACTIONS(1205), - [anon_sym___cdecl] = ACTIONS(1205), - [anon_sym___clrcall] = ACTIONS(1205), - [anon_sym___stdcall] = ACTIONS(1205), - [anon_sym___fastcall] = ACTIONS(1205), - [anon_sym___thiscall] = ACTIONS(1205), - [anon_sym___vectorcall] = ACTIONS(1205), - [anon_sym_LBRACE] = ACTIONS(1207), - [anon_sym_RBRACE] = ACTIONS(1207), - [anon_sym_signed] = ACTIONS(1205), - [anon_sym_unsigned] = ACTIONS(1205), - [anon_sym_long] = ACTIONS(1205), - [anon_sym_short] = ACTIONS(1205), - [anon_sym_static] = ACTIONS(1205), - [anon_sym_auto] = ACTIONS(1205), - [anon_sym_register] = ACTIONS(1205), - [anon_sym_inline] = ACTIONS(1205), - [anon_sym___inline] = ACTIONS(1205), - [anon_sym___inline__] = ACTIONS(1205), - [anon_sym___forceinline] = ACTIONS(1205), - [anon_sym_thread_local] = ACTIONS(1205), - [anon_sym___thread] = ACTIONS(1205), - [anon_sym_const] = ACTIONS(1205), - [anon_sym_constexpr] = ACTIONS(1205), - [anon_sym_volatile] = ACTIONS(1205), - [anon_sym_restrict] = ACTIONS(1205), - [anon_sym___restrict__] = ACTIONS(1205), - [anon_sym__Atomic] = ACTIONS(1205), - [anon_sym__Noreturn] = ACTIONS(1205), - [anon_sym_noreturn] = ACTIONS(1205), - [anon_sym_alignas] = ACTIONS(1205), - [anon_sym__Alignas] = ACTIONS(1205), - [sym_primitive_type] = ACTIONS(1205), - [anon_sym_enum] = ACTIONS(1205), - [anon_sym_struct] = ACTIONS(1205), - [anon_sym_union] = ACTIONS(1205), - [anon_sym_if] = ACTIONS(1205), - [anon_sym_else] = ACTIONS(1205), - [anon_sym_switch] = ACTIONS(1205), - [anon_sym_case] = ACTIONS(1205), - [anon_sym_default] = ACTIONS(1205), - [anon_sym_while] = ACTIONS(1205), - [anon_sym_do] = ACTIONS(1205), - [anon_sym_for] = ACTIONS(1205), - [anon_sym_return] = ACTIONS(1205), - [anon_sym_break] = ACTIONS(1205), - [anon_sym_continue] = ACTIONS(1205), - [anon_sym_goto] = ACTIONS(1205), - [anon_sym___try] = ACTIONS(1205), - [anon_sym___leave] = ACTIONS(1205), - [anon_sym_DASH_DASH] = ACTIONS(1207), - [anon_sym_PLUS_PLUS] = ACTIONS(1207), - [anon_sym_sizeof] = ACTIONS(1205), - [anon_sym___alignof__] = ACTIONS(1205), - [anon_sym___alignof] = ACTIONS(1205), - [anon_sym__alignof] = ACTIONS(1205), - [anon_sym_alignof] = ACTIONS(1205), - [anon_sym__Alignof] = ACTIONS(1205), - [anon_sym_offsetof] = ACTIONS(1205), - [anon_sym__Generic] = ACTIONS(1205), - [anon_sym_asm] = ACTIONS(1205), - [anon_sym___asm__] = ACTIONS(1205), - [sym_number_literal] = ACTIONS(1207), - [anon_sym_L_SQUOTE] = ACTIONS(1207), - [anon_sym_u_SQUOTE] = ACTIONS(1207), - [anon_sym_U_SQUOTE] = ACTIONS(1207), - [anon_sym_u8_SQUOTE] = ACTIONS(1207), - [anon_sym_SQUOTE] = ACTIONS(1207), - [anon_sym_L_DQUOTE] = ACTIONS(1207), - [anon_sym_u_DQUOTE] = ACTIONS(1207), - [anon_sym_U_DQUOTE] = ACTIONS(1207), - [anon_sym_u8_DQUOTE] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1207), - [sym_true] = ACTIONS(1205), - [sym_false] = ACTIONS(1205), - [anon_sym_NULL] = ACTIONS(1205), - [anon_sym_nullptr] = ACTIONS(1205), - [sym_comment] = ACTIONS(3), + [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] = { - [ts_builtin_sym_end] = ACTIONS(1211), - [sym_identifier] = ACTIONS(1209), - [aux_sym_preproc_include_token1] = ACTIONS(1209), - [aux_sym_preproc_def_token1] = ACTIONS(1209), - [aux_sym_preproc_if_token1] = ACTIONS(1209), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1209), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1209), - [sym_preproc_directive] = ACTIONS(1209), - [anon_sym_LPAREN2] = ACTIONS(1211), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1211), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_PLUS] = ACTIONS(1209), - [anon_sym_STAR] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1211), - [anon_sym_SEMI] = ACTIONS(1211), - [anon_sym___extension__] = ACTIONS(1209), - [anon_sym_typedef] = ACTIONS(1209), - [anon_sym_extern] = ACTIONS(1209), - [anon_sym___attribute__] = ACTIONS(1209), - [anon_sym___scanf] = ACTIONS(1209), - [anon_sym___printf] = ACTIONS(1209), - [anon_sym___read_mostly] = ACTIONS(1209), - [anon_sym___must_hold] = ACTIONS(1209), - [anon_sym___ro_after_init] = ACTIONS(1209), - [anon_sym___noreturn] = ACTIONS(1209), - [anon_sym___cold] = ACTIONS(1209), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1211), - [anon_sym___declspec] = ACTIONS(1209), - [anon_sym___init] = ACTIONS(1209), - [anon_sym___exit] = ACTIONS(1209), - [anon_sym___cdecl] = ACTIONS(1209), - [anon_sym___clrcall] = ACTIONS(1209), - [anon_sym___stdcall] = ACTIONS(1209), - [anon_sym___fastcall] = ACTIONS(1209), - [anon_sym___thiscall] = ACTIONS(1209), - [anon_sym___vectorcall] = ACTIONS(1209), - [anon_sym_LBRACE] = ACTIONS(1211), - [anon_sym_signed] = ACTIONS(1209), - [anon_sym_unsigned] = ACTIONS(1209), - [anon_sym_long] = ACTIONS(1209), - [anon_sym_short] = ACTIONS(1209), - [anon_sym_static] = ACTIONS(1209), - [anon_sym_auto] = ACTIONS(1209), - [anon_sym_register] = ACTIONS(1209), - [anon_sym_inline] = ACTIONS(1209), - [anon_sym___inline] = ACTIONS(1209), - [anon_sym___inline__] = ACTIONS(1209), - [anon_sym___forceinline] = ACTIONS(1209), - [anon_sym_thread_local] = ACTIONS(1209), - [anon_sym___thread] = ACTIONS(1209), - [anon_sym_const] = ACTIONS(1209), - [anon_sym_constexpr] = ACTIONS(1209), - [anon_sym_volatile] = ACTIONS(1209), - [anon_sym_restrict] = ACTIONS(1209), - [anon_sym___restrict__] = ACTIONS(1209), - [anon_sym__Atomic] = ACTIONS(1209), - [anon_sym__Noreturn] = ACTIONS(1209), - [anon_sym_noreturn] = ACTIONS(1209), - [anon_sym_alignas] = ACTIONS(1209), - [anon_sym__Alignas] = ACTIONS(1209), - [sym_primitive_type] = ACTIONS(1209), - [anon_sym_enum] = ACTIONS(1209), - [anon_sym_struct] = ACTIONS(1209), - [anon_sym_union] = ACTIONS(1209), - [anon_sym_if] = ACTIONS(1209), - [anon_sym_else] = ACTIONS(1209), - [anon_sym_switch] = ACTIONS(1209), - [anon_sym_case] = ACTIONS(1209), - [anon_sym_default] = ACTIONS(1209), - [anon_sym_while] = ACTIONS(1209), - [anon_sym_do] = ACTIONS(1209), - [anon_sym_for] = ACTIONS(1209), - [anon_sym_return] = ACTIONS(1209), - [anon_sym_break] = ACTIONS(1209), - [anon_sym_continue] = ACTIONS(1209), - [anon_sym_goto] = ACTIONS(1209), - [anon_sym___try] = ACTIONS(1209), - [anon_sym___leave] = ACTIONS(1209), - [anon_sym_DASH_DASH] = ACTIONS(1211), - [anon_sym_PLUS_PLUS] = ACTIONS(1211), - [anon_sym_sizeof] = ACTIONS(1209), - [anon_sym___alignof__] = ACTIONS(1209), - [anon_sym___alignof] = ACTIONS(1209), - [anon_sym__alignof] = ACTIONS(1209), - [anon_sym_alignof] = ACTIONS(1209), - [anon_sym__Alignof] = ACTIONS(1209), - [anon_sym_offsetof] = ACTIONS(1209), - [anon_sym__Generic] = ACTIONS(1209), - [anon_sym_asm] = ACTIONS(1209), - [anon_sym___asm__] = ACTIONS(1209), - [sym_number_literal] = ACTIONS(1211), - [anon_sym_L_SQUOTE] = ACTIONS(1211), - [anon_sym_u_SQUOTE] = ACTIONS(1211), - [anon_sym_U_SQUOTE] = ACTIONS(1211), - [anon_sym_u8_SQUOTE] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1211), - [anon_sym_L_DQUOTE] = ACTIONS(1211), - [anon_sym_u_DQUOTE] = ACTIONS(1211), - [anon_sym_U_DQUOTE] = ACTIONS(1211), - [anon_sym_u8_DQUOTE] = ACTIONS(1211), - [anon_sym_DQUOTE] = ACTIONS(1211), - [sym_true] = ACTIONS(1209), - [sym_false] = ACTIONS(1209), - [anon_sym_NULL] = ACTIONS(1209), - [anon_sym_nullptr] = ACTIONS(1209), - [sym_comment] = ACTIONS(3), + [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] = { - [ts_builtin_sym_end] = ACTIONS(1155), - [sym_identifier] = ACTIONS(1153), - [aux_sym_preproc_include_token1] = ACTIONS(1153), - [aux_sym_preproc_def_token1] = ACTIONS(1153), - [aux_sym_preproc_if_token1] = ACTIONS(1153), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1153), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1153), - [sym_preproc_directive] = ACTIONS(1153), - [anon_sym_LPAREN2] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1155), - [anon_sym_TILDE] = ACTIONS(1155), - [anon_sym_DASH] = ACTIONS(1153), - [anon_sym_PLUS] = ACTIONS(1153), - [anon_sym_STAR] = ACTIONS(1155), - [anon_sym_AMP] = ACTIONS(1155), - [anon_sym_SEMI] = ACTIONS(1155), - [anon_sym___extension__] = ACTIONS(1153), - [anon_sym_typedef] = ACTIONS(1153), - [anon_sym_extern] = ACTIONS(1153), - [anon_sym___attribute__] = ACTIONS(1153), - [anon_sym___scanf] = ACTIONS(1153), - [anon_sym___printf] = ACTIONS(1153), - [anon_sym___read_mostly] = ACTIONS(1153), - [anon_sym___must_hold] = ACTIONS(1153), - [anon_sym___ro_after_init] = ACTIONS(1153), - [anon_sym___noreturn] = ACTIONS(1153), - [anon_sym___cold] = ACTIONS(1153), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1155), - [anon_sym___declspec] = ACTIONS(1153), - [anon_sym___init] = ACTIONS(1153), - [anon_sym___exit] = ACTIONS(1153), - [anon_sym___cdecl] = ACTIONS(1153), - [anon_sym___clrcall] = ACTIONS(1153), - [anon_sym___stdcall] = ACTIONS(1153), - [anon_sym___fastcall] = ACTIONS(1153), - [anon_sym___thiscall] = ACTIONS(1153), - [anon_sym___vectorcall] = ACTIONS(1153), - [anon_sym_LBRACE] = ACTIONS(1155), - [anon_sym_signed] = ACTIONS(1153), - [anon_sym_unsigned] = ACTIONS(1153), - [anon_sym_long] = ACTIONS(1153), - [anon_sym_short] = ACTIONS(1153), - [anon_sym_static] = ACTIONS(1153), - [anon_sym_auto] = ACTIONS(1153), - [anon_sym_register] = ACTIONS(1153), - [anon_sym_inline] = ACTIONS(1153), - [anon_sym___inline] = ACTIONS(1153), - [anon_sym___inline__] = ACTIONS(1153), - [anon_sym___forceinline] = ACTIONS(1153), - [anon_sym_thread_local] = ACTIONS(1153), - [anon_sym___thread] = ACTIONS(1153), - [anon_sym_const] = ACTIONS(1153), - [anon_sym_constexpr] = ACTIONS(1153), - [anon_sym_volatile] = ACTIONS(1153), - [anon_sym_restrict] = ACTIONS(1153), - [anon_sym___restrict__] = ACTIONS(1153), - [anon_sym__Atomic] = ACTIONS(1153), - [anon_sym__Noreturn] = ACTIONS(1153), - [anon_sym_noreturn] = ACTIONS(1153), - [anon_sym_alignas] = ACTIONS(1153), - [anon_sym__Alignas] = ACTIONS(1153), - [sym_primitive_type] = ACTIONS(1153), - [anon_sym_enum] = ACTIONS(1153), - [anon_sym_struct] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1153), - [anon_sym_if] = ACTIONS(1153), - [anon_sym_else] = ACTIONS(1153), - [anon_sym_switch] = ACTIONS(1153), - [anon_sym_case] = ACTIONS(1153), - [anon_sym_default] = ACTIONS(1153), - [anon_sym_while] = ACTIONS(1153), - [anon_sym_do] = ACTIONS(1153), - [anon_sym_for] = ACTIONS(1153), - [anon_sym_return] = ACTIONS(1153), - [anon_sym_break] = ACTIONS(1153), - [anon_sym_continue] = ACTIONS(1153), - [anon_sym_goto] = ACTIONS(1153), - [anon_sym___try] = ACTIONS(1153), - [anon_sym___leave] = ACTIONS(1153), - [anon_sym_DASH_DASH] = ACTIONS(1155), - [anon_sym_PLUS_PLUS] = ACTIONS(1155), - [anon_sym_sizeof] = ACTIONS(1153), - [anon_sym___alignof__] = ACTIONS(1153), - [anon_sym___alignof] = ACTIONS(1153), - [anon_sym__alignof] = ACTIONS(1153), - [anon_sym_alignof] = ACTIONS(1153), - [anon_sym__Alignof] = ACTIONS(1153), - [anon_sym_offsetof] = ACTIONS(1153), - [anon_sym__Generic] = ACTIONS(1153), - [anon_sym_asm] = ACTIONS(1153), - [anon_sym___asm__] = ACTIONS(1153), - [sym_number_literal] = ACTIONS(1155), - [anon_sym_L_SQUOTE] = ACTIONS(1155), - [anon_sym_u_SQUOTE] = ACTIONS(1155), - [anon_sym_U_SQUOTE] = ACTIONS(1155), - [anon_sym_u8_SQUOTE] = ACTIONS(1155), - [anon_sym_SQUOTE] = ACTIONS(1155), - [anon_sym_L_DQUOTE] = ACTIONS(1155), - [anon_sym_u_DQUOTE] = ACTIONS(1155), - [anon_sym_U_DQUOTE] = ACTIONS(1155), - [anon_sym_u8_DQUOTE] = ACTIONS(1155), - [anon_sym_DQUOTE] = ACTIONS(1155), - [sym_true] = ACTIONS(1153), - [sym_false] = ACTIONS(1153), - [anon_sym_NULL] = ACTIONS(1153), - [anon_sym_nullptr] = ACTIONS(1153), - [sym_comment] = ACTIONS(3), + [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] = { - [ts_builtin_sym_end] = ACTIONS(1155), - [sym_identifier] = ACTIONS(1153), - [aux_sym_preproc_include_token1] = ACTIONS(1153), - [aux_sym_preproc_def_token1] = ACTIONS(1153), - [aux_sym_preproc_if_token1] = ACTIONS(1153), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1153), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1153), - [sym_preproc_directive] = ACTIONS(1153), - [anon_sym_LPAREN2] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1155), - [anon_sym_TILDE] = ACTIONS(1155), - [anon_sym_DASH] = ACTIONS(1153), - [anon_sym_PLUS] = ACTIONS(1153), - [anon_sym_STAR] = ACTIONS(1155), - [anon_sym_AMP] = ACTIONS(1155), - [anon_sym_SEMI] = ACTIONS(1155), - [anon_sym___extension__] = ACTIONS(1153), - [anon_sym_typedef] = ACTIONS(1153), - [anon_sym_extern] = ACTIONS(1153), - [anon_sym___attribute__] = ACTIONS(1153), - [anon_sym___scanf] = ACTIONS(1153), - [anon_sym___printf] = ACTIONS(1153), - [anon_sym___read_mostly] = ACTIONS(1153), - [anon_sym___must_hold] = ACTIONS(1153), - [anon_sym___ro_after_init] = ACTIONS(1153), - [anon_sym___noreturn] = ACTIONS(1153), - [anon_sym___cold] = ACTIONS(1153), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1155), - [anon_sym___declspec] = ACTIONS(1153), - [anon_sym___init] = ACTIONS(1153), - [anon_sym___exit] = ACTIONS(1153), - [anon_sym___cdecl] = ACTIONS(1153), - [anon_sym___clrcall] = ACTIONS(1153), - [anon_sym___stdcall] = ACTIONS(1153), - [anon_sym___fastcall] = ACTIONS(1153), - [anon_sym___thiscall] = ACTIONS(1153), - [anon_sym___vectorcall] = ACTIONS(1153), - [anon_sym_LBRACE] = ACTIONS(1155), - [anon_sym_signed] = ACTIONS(1153), - [anon_sym_unsigned] = ACTIONS(1153), - [anon_sym_long] = ACTIONS(1153), - [anon_sym_short] = ACTIONS(1153), - [anon_sym_static] = ACTIONS(1153), - [anon_sym_auto] = ACTIONS(1153), - [anon_sym_register] = ACTIONS(1153), - [anon_sym_inline] = ACTIONS(1153), - [anon_sym___inline] = ACTIONS(1153), - [anon_sym___inline__] = ACTIONS(1153), - [anon_sym___forceinline] = ACTIONS(1153), - [anon_sym_thread_local] = ACTIONS(1153), - [anon_sym___thread] = ACTIONS(1153), - [anon_sym_const] = ACTIONS(1153), - [anon_sym_constexpr] = ACTIONS(1153), - [anon_sym_volatile] = ACTIONS(1153), - [anon_sym_restrict] = ACTIONS(1153), - [anon_sym___restrict__] = ACTIONS(1153), - [anon_sym__Atomic] = ACTIONS(1153), - [anon_sym__Noreturn] = ACTIONS(1153), - [anon_sym_noreturn] = ACTIONS(1153), - [anon_sym_alignas] = ACTIONS(1153), - [anon_sym__Alignas] = ACTIONS(1153), - [sym_primitive_type] = ACTIONS(1153), - [anon_sym_enum] = ACTIONS(1153), - [anon_sym_struct] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1153), - [anon_sym_if] = ACTIONS(1153), - [anon_sym_else] = ACTIONS(1153), - [anon_sym_switch] = ACTIONS(1153), - [anon_sym_case] = ACTIONS(1153), - [anon_sym_default] = ACTIONS(1153), - [anon_sym_while] = ACTIONS(1153), - [anon_sym_do] = ACTIONS(1153), - [anon_sym_for] = ACTIONS(1153), - [anon_sym_return] = ACTIONS(1153), - [anon_sym_break] = ACTIONS(1153), - [anon_sym_continue] = ACTIONS(1153), - [anon_sym_goto] = ACTIONS(1153), - [anon_sym___try] = ACTIONS(1153), - [anon_sym___leave] = ACTIONS(1153), - [anon_sym_DASH_DASH] = ACTIONS(1155), - [anon_sym_PLUS_PLUS] = ACTIONS(1155), - [anon_sym_sizeof] = ACTIONS(1153), - [anon_sym___alignof__] = ACTIONS(1153), - [anon_sym___alignof] = ACTIONS(1153), - [anon_sym__alignof] = ACTIONS(1153), - [anon_sym_alignof] = ACTIONS(1153), - [anon_sym__Alignof] = ACTIONS(1153), - [anon_sym_offsetof] = ACTIONS(1153), - [anon_sym__Generic] = ACTIONS(1153), - [anon_sym_asm] = ACTIONS(1153), - [anon_sym___asm__] = ACTIONS(1153), - [sym_number_literal] = ACTIONS(1155), - [anon_sym_L_SQUOTE] = ACTIONS(1155), - [anon_sym_u_SQUOTE] = ACTIONS(1155), - [anon_sym_U_SQUOTE] = ACTIONS(1155), - [anon_sym_u8_SQUOTE] = ACTIONS(1155), - [anon_sym_SQUOTE] = ACTIONS(1155), - [anon_sym_L_DQUOTE] = ACTIONS(1155), - [anon_sym_u_DQUOTE] = ACTIONS(1155), - [anon_sym_U_DQUOTE] = ACTIONS(1155), - [anon_sym_u8_DQUOTE] = ACTIONS(1155), - [anon_sym_DQUOTE] = ACTIONS(1155), - [sym_true] = ACTIONS(1153), - [sym_false] = ACTIONS(1153), - [anon_sym_NULL] = ACTIONS(1153), - [anon_sym_nullptr] = ACTIONS(1153), - [sym_comment] = ACTIONS(3), + [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] = { - [sym_identifier] = ACTIONS(1209), - [aux_sym_preproc_include_token1] = ACTIONS(1209), - [aux_sym_preproc_def_token1] = ACTIONS(1209), - [aux_sym_preproc_if_token1] = ACTIONS(1209), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1209), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1209), - [sym_preproc_directive] = ACTIONS(1209), - [anon_sym_LPAREN2] = ACTIONS(1211), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1211), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_PLUS] = ACTIONS(1209), - [anon_sym_STAR] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1211), - [anon_sym_SEMI] = ACTIONS(1211), - [anon_sym___extension__] = ACTIONS(1209), - [anon_sym_typedef] = ACTIONS(1209), - [anon_sym_extern] = ACTIONS(1209), - [anon_sym___attribute__] = ACTIONS(1209), - [anon_sym___scanf] = ACTIONS(1209), - [anon_sym___printf] = ACTIONS(1209), - [anon_sym___read_mostly] = ACTIONS(1209), - [anon_sym___must_hold] = ACTIONS(1209), - [anon_sym___ro_after_init] = ACTIONS(1209), - [anon_sym___noreturn] = ACTIONS(1209), - [anon_sym___cold] = ACTIONS(1209), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1211), - [anon_sym___declspec] = ACTIONS(1209), - [anon_sym___init] = ACTIONS(1209), - [anon_sym___exit] = ACTIONS(1209), - [anon_sym___cdecl] = ACTIONS(1209), - [anon_sym___clrcall] = ACTIONS(1209), - [anon_sym___stdcall] = ACTIONS(1209), - [anon_sym___fastcall] = ACTIONS(1209), - [anon_sym___thiscall] = ACTIONS(1209), - [anon_sym___vectorcall] = ACTIONS(1209), - [anon_sym_LBRACE] = ACTIONS(1211), - [anon_sym_RBRACE] = ACTIONS(1211), - [anon_sym_signed] = ACTIONS(1209), - [anon_sym_unsigned] = ACTIONS(1209), - [anon_sym_long] = ACTIONS(1209), - [anon_sym_short] = ACTIONS(1209), - [anon_sym_static] = ACTIONS(1209), - [anon_sym_auto] = ACTIONS(1209), - [anon_sym_register] = ACTIONS(1209), - [anon_sym_inline] = ACTIONS(1209), - [anon_sym___inline] = ACTIONS(1209), - [anon_sym___inline__] = ACTIONS(1209), - [anon_sym___forceinline] = ACTIONS(1209), - [anon_sym_thread_local] = ACTIONS(1209), - [anon_sym___thread] = ACTIONS(1209), - [anon_sym_const] = ACTIONS(1209), - [anon_sym_constexpr] = ACTIONS(1209), - [anon_sym_volatile] = ACTIONS(1209), - [anon_sym_restrict] = ACTIONS(1209), - [anon_sym___restrict__] = ACTIONS(1209), - [anon_sym__Atomic] = ACTIONS(1209), - [anon_sym__Noreturn] = ACTIONS(1209), - [anon_sym_noreturn] = ACTIONS(1209), - [anon_sym_alignas] = ACTIONS(1209), - [anon_sym__Alignas] = ACTIONS(1209), - [sym_primitive_type] = ACTIONS(1209), - [anon_sym_enum] = ACTIONS(1209), - [anon_sym_struct] = ACTIONS(1209), - [anon_sym_union] = ACTIONS(1209), - [anon_sym_if] = ACTIONS(1209), - [anon_sym_else] = ACTIONS(1209), - [anon_sym_switch] = ACTIONS(1209), - [anon_sym_case] = ACTIONS(1209), - [anon_sym_default] = ACTIONS(1209), - [anon_sym_while] = ACTIONS(1209), - [anon_sym_do] = ACTIONS(1209), - [anon_sym_for] = ACTIONS(1209), - [anon_sym_return] = ACTIONS(1209), - [anon_sym_break] = ACTIONS(1209), - [anon_sym_continue] = ACTIONS(1209), - [anon_sym_goto] = ACTIONS(1209), - [anon_sym___try] = ACTIONS(1209), - [anon_sym___leave] = ACTIONS(1209), - [anon_sym_DASH_DASH] = ACTIONS(1211), - [anon_sym_PLUS_PLUS] = ACTIONS(1211), - [anon_sym_sizeof] = ACTIONS(1209), - [anon_sym___alignof__] = ACTIONS(1209), - [anon_sym___alignof] = ACTIONS(1209), - [anon_sym__alignof] = ACTIONS(1209), - [anon_sym_alignof] = ACTIONS(1209), - [anon_sym__Alignof] = ACTIONS(1209), - [anon_sym_offsetof] = ACTIONS(1209), - [anon_sym__Generic] = ACTIONS(1209), - [anon_sym_asm] = ACTIONS(1209), - [anon_sym___asm__] = ACTIONS(1209), - [sym_number_literal] = ACTIONS(1211), - [anon_sym_L_SQUOTE] = ACTIONS(1211), - [anon_sym_u_SQUOTE] = ACTIONS(1211), - [anon_sym_U_SQUOTE] = ACTIONS(1211), - [anon_sym_u8_SQUOTE] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1211), - [anon_sym_L_DQUOTE] = ACTIONS(1211), - [anon_sym_u_DQUOTE] = ACTIONS(1211), - [anon_sym_U_DQUOTE] = ACTIONS(1211), - [anon_sym_u8_DQUOTE] = ACTIONS(1211), - [anon_sym_DQUOTE] = ACTIONS(1211), - [sym_true] = ACTIONS(1209), - [sym_false] = ACTIONS(1209), - [anon_sym_NULL] = ACTIONS(1209), - [anon_sym_nullptr] = ACTIONS(1209), - [sym_comment] = ACTIONS(3), + [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), + [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), }, [195] = { - [ts_builtin_sym_end] = ACTIONS(1255), - [sym_identifier] = ACTIONS(1253), - [aux_sym_preproc_include_token1] = ACTIONS(1253), - [aux_sym_preproc_def_token1] = ACTIONS(1253), - [aux_sym_preproc_if_token1] = ACTIONS(1253), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1253), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1253), - [sym_preproc_directive] = ACTIONS(1253), - [anon_sym_LPAREN2] = ACTIONS(1255), - [anon_sym_BANG] = ACTIONS(1255), - [anon_sym_TILDE] = ACTIONS(1255), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_STAR] = ACTIONS(1255), - [anon_sym_AMP] = ACTIONS(1255), - [anon_sym_SEMI] = ACTIONS(1255), - [anon_sym___extension__] = ACTIONS(1253), - [anon_sym_typedef] = ACTIONS(1253), - [anon_sym_extern] = ACTIONS(1253), - [anon_sym___attribute__] = ACTIONS(1253), - [anon_sym___scanf] = ACTIONS(1253), - [anon_sym___printf] = ACTIONS(1253), - [anon_sym___read_mostly] = ACTIONS(1253), - [anon_sym___must_hold] = ACTIONS(1253), - [anon_sym___ro_after_init] = ACTIONS(1253), - [anon_sym___noreturn] = ACTIONS(1253), - [anon_sym___cold] = ACTIONS(1253), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1255), - [anon_sym___declspec] = ACTIONS(1253), - [anon_sym___init] = ACTIONS(1253), - [anon_sym___exit] = ACTIONS(1253), - [anon_sym___cdecl] = ACTIONS(1253), - [anon_sym___clrcall] = ACTIONS(1253), - [anon_sym___stdcall] = ACTIONS(1253), - [anon_sym___fastcall] = ACTIONS(1253), - [anon_sym___thiscall] = ACTIONS(1253), - [anon_sym___vectorcall] = ACTIONS(1253), - [anon_sym_LBRACE] = ACTIONS(1255), - [anon_sym_signed] = ACTIONS(1253), - [anon_sym_unsigned] = ACTIONS(1253), - [anon_sym_long] = ACTIONS(1253), - [anon_sym_short] = ACTIONS(1253), - [anon_sym_static] = ACTIONS(1253), - [anon_sym_auto] = ACTIONS(1253), - [anon_sym_register] = ACTIONS(1253), - [anon_sym_inline] = ACTIONS(1253), - [anon_sym___inline] = ACTIONS(1253), - [anon_sym___inline__] = ACTIONS(1253), - [anon_sym___forceinline] = ACTIONS(1253), - [anon_sym_thread_local] = ACTIONS(1253), - [anon_sym___thread] = ACTIONS(1253), - [anon_sym_const] = ACTIONS(1253), - [anon_sym_constexpr] = ACTIONS(1253), - [anon_sym_volatile] = ACTIONS(1253), - [anon_sym_restrict] = ACTIONS(1253), - [anon_sym___restrict__] = ACTIONS(1253), - [anon_sym__Atomic] = ACTIONS(1253), - [anon_sym__Noreturn] = ACTIONS(1253), - [anon_sym_noreturn] = ACTIONS(1253), - [anon_sym_alignas] = ACTIONS(1253), - [anon_sym__Alignas] = ACTIONS(1253), - [sym_primitive_type] = ACTIONS(1253), - [anon_sym_enum] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1253), - [anon_sym_union] = ACTIONS(1253), - [anon_sym_if] = ACTIONS(1253), - [anon_sym_else] = ACTIONS(1253), - [anon_sym_switch] = ACTIONS(1253), - [anon_sym_case] = ACTIONS(1253), - [anon_sym_default] = ACTIONS(1253), - [anon_sym_while] = ACTIONS(1253), - [anon_sym_do] = ACTIONS(1253), - [anon_sym_for] = ACTIONS(1253), - [anon_sym_return] = ACTIONS(1253), - [anon_sym_break] = ACTIONS(1253), - [anon_sym_continue] = ACTIONS(1253), - [anon_sym_goto] = ACTIONS(1253), - [anon_sym___try] = ACTIONS(1253), - [anon_sym___leave] = ACTIONS(1253), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_sizeof] = ACTIONS(1253), - [anon_sym___alignof__] = ACTIONS(1253), - [anon_sym___alignof] = ACTIONS(1253), - [anon_sym__alignof] = ACTIONS(1253), - [anon_sym_alignof] = ACTIONS(1253), - [anon_sym__Alignof] = ACTIONS(1253), - [anon_sym_offsetof] = ACTIONS(1253), - [anon_sym__Generic] = ACTIONS(1253), - [anon_sym_asm] = ACTIONS(1253), - [anon_sym___asm__] = ACTIONS(1253), - [sym_number_literal] = ACTIONS(1255), - [anon_sym_L_SQUOTE] = ACTIONS(1255), - [anon_sym_u_SQUOTE] = ACTIONS(1255), - [anon_sym_U_SQUOTE] = ACTIONS(1255), - [anon_sym_u8_SQUOTE] = ACTIONS(1255), - [anon_sym_SQUOTE] = ACTIONS(1255), - [anon_sym_L_DQUOTE] = ACTIONS(1255), - [anon_sym_u_DQUOTE] = ACTIONS(1255), - [anon_sym_U_DQUOTE] = ACTIONS(1255), - [anon_sym_u8_DQUOTE] = ACTIONS(1255), - [anon_sym_DQUOTE] = ACTIONS(1255), - [sym_true] = ACTIONS(1253), - [sym_false] = ACTIONS(1253), - [anon_sym_NULL] = ACTIONS(1253), - [anon_sym_nullptr] = ACTIONS(1253), - [sym_comment] = ACTIONS(3), + [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(1155), - [sym_identifier] = ACTIONS(1153), - [aux_sym_preproc_include_token1] = ACTIONS(1153), - [aux_sym_preproc_def_token1] = ACTIONS(1153), - [aux_sym_preproc_if_token1] = ACTIONS(1153), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1153), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1153), - [sym_preproc_directive] = ACTIONS(1153), - [anon_sym_LPAREN2] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1155), - [anon_sym_TILDE] = ACTIONS(1155), - [anon_sym_DASH] = ACTIONS(1153), - [anon_sym_PLUS] = ACTIONS(1153), - [anon_sym_STAR] = ACTIONS(1155), - [anon_sym_AMP] = ACTIONS(1155), - [anon_sym_SEMI] = ACTIONS(1155), - [anon_sym___extension__] = ACTIONS(1153), - [anon_sym_typedef] = ACTIONS(1153), - [anon_sym_extern] = ACTIONS(1153), - [anon_sym___attribute__] = ACTIONS(1153), - [anon_sym___scanf] = ACTIONS(1153), - [anon_sym___printf] = ACTIONS(1153), - [anon_sym___read_mostly] = ACTIONS(1153), - [anon_sym___must_hold] = ACTIONS(1153), - [anon_sym___ro_after_init] = ACTIONS(1153), - [anon_sym___noreturn] = ACTIONS(1153), - [anon_sym___cold] = ACTIONS(1153), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1155), - [anon_sym___declspec] = ACTIONS(1153), - [anon_sym___init] = ACTIONS(1153), - [anon_sym___exit] = ACTIONS(1153), - [anon_sym___cdecl] = ACTIONS(1153), - [anon_sym___clrcall] = ACTIONS(1153), - [anon_sym___stdcall] = ACTIONS(1153), - [anon_sym___fastcall] = ACTIONS(1153), - [anon_sym___thiscall] = ACTIONS(1153), - [anon_sym___vectorcall] = ACTIONS(1153), - [anon_sym_LBRACE] = ACTIONS(1155), - [anon_sym_signed] = ACTIONS(1153), - [anon_sym_unsigned] = ACTIONS(1153), - [anon_sym_long] = ACTIONS(1153), - [anon_sym_short] = ACTIONS(1153), - [anon_sym_static] = ACTIONS(1153), - [anon_sym_auto] = ACTIONS(1153), - [anon_sym_register] = ACTIONS(1153), - [anon_sym_inline] = ACTIONS(1153), - [anon_sym___inline] = ACTIONS(1153), - [anon_sym___inline__] = ACTIONS(1153), - [anon_sym___forceinline] = ACTIONS(1153), - [anon_sym_thread_local] = ACTIONS(1153), - [anon_sym___thread] = ACTIONS(1153), - [anon_sym_const] = ACTIONS(1153), - [anon_sym_constexpr] = ACTIONS(1153), - [anon_sym_volatile] = ACTIONS(1153), - [anon_sym_restrict] = ACTIONS(1153), - [anon_sym___restrict__] = ACTIONS(1153), - [anon_sym__Atomic] = ACTIONS(1153), - [anon_sym__Noreturn] = ACTIONS(1153), - [anon_sym_noreturn] = ACTIONS(1153), - [anon_sym_alignas] = ACTIONS(1153), - [anon_sym__Alignas] = ACTIONS(1153), - [sym_primitive_type] = ACTIONS(1153), - [anon_sym_enum] = ACTIONS(1153), - [anon_sym_struct] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1153), - [anon_sym_if] = ACTIONS(1153), - [anon_sym_else] = ACTIONS(1153), - [anon_sym_switch] = ACTIONS(1153), - [anon_sym_case] = ACTIONS(1153), - [anon_sym_default] = ACTIONS(1153), - [anon_sym_while] = ACTIONS(1153), - [anon_sym_do] = ACTIONS(1153), - [anon_sym_for] = ACTIONS(1153), - [anon_sym_return] = ACTIONS(1153), - [anon_sym_break] = ACTIONS(1153), - [anon_sym_continue] = ACTIONS(1153), - [anon_sym_goto] = ACTIONS(1153), - [anon_sym___try] = ACTIONS(1153), - [anon_sym___leave] = ACTIONS(1153), - [anon_sym_DASH_DASH] = ACTIONS(1155), - [anon_sym_PLUS_PLUS] = ACTIONS(1155), - [anon_sym_sizeof] = ACTIONS(1153), - [anon_sym___alignof__] = ACTIONS(1153), - [anon_sym___alignof] = ACTIONS(1153), - [anon_sym__alignof] = ACTIONS(1153), - [anon_sym_alignof] = ACTIONS(1153), - [anon_sym__Alignof] = ACTIONS(1153), - [anon_sym_offsetof] = ACTIONS(1153), - [anon_sym__Generic] = ACTIONS(1153), - [anon_sym_asm] = ACTIONS(1153), - [anon_sym___asm__] = ACTIONS(1153), - [sym_number_literal] = ACTIONS(1155), - [anon_sym_L_SQUOTE] = ACTIONS(1155), - [anon_sym_u_SQUOTE] = ACTIONS(1155), - [anon_sym_U_SQUOTE] = ACTIONS(1155), - [anon_sym_u8_SQUOTE] = ACTIONS(1155), - [anon_sym_SQUOTE] = ACTIONS(1155), - [anon_sym_L_DQUOTE] = ACTIONS(1155), - [anon_sym_u_DQUOTE] = ACTIONS(1155), - [anon_sym_U_DQUOTE] = ACTIONS(1155), - [anon_sym_u8_DQUOTE] = ACTIONS(1155), - [anon_sym_DQUOTE] = ACTIONS(1155), - [sym_true] = ACTIONS(1153), - [sym_false] = ACTIONS(1153), - [anon_sym_NULL] = ACTIONS(1153), - [anon_sym_nullptr] = ACTIONS(1153), - [sym_comment] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1268), + [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_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), }, [197] = { - [ts_builtin_sym_end] = ACTIONS(1267), - [sym_identifier] = ACTIONS(1265), - [aux_sym_preproc_include_token1] = ACTIONS(1265), - [aux_sym_preproc_def_token1] = ACTIONS(1265), - [aux_sym_preproc_if_token1] = ACTIONS(1265), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1265), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1265), - [sym_preproc_directive] = ACTIONS(1265), - [anon_sym_LPAREN2] = ACTIONS(1267), - [anon_sym_BANG] = ACTIONS(1267), - [anon_sym_TILDE] = ACTIONS(1267), - [anon_sym_DASH] = ACTIONS(1265), - [anon_sym_PLUS] = ACTIONS(1265), - [anon_sym_STAR] = ACTIONS(1267), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_SEMI] = ACTIONS(1267), - [anon_sym___extension__] = ACTIONS(1265), - [anon_sym_typedef] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym___attribute__] = ACTIONS(1265), - [anon_sym___scanf] = ACTIONS(1265), - [anon_sym___printf] = ACTIONS(1265), - [anon_sym___read_mostly] = ACTIONS(1265), - [anon_sym___must_hold] = ACTIONS(1265), - [anon_sym___ro_after_init] = ACTIONS(1265), - [anon_sym___noreturn] = ACTIONS(1265), - [anon_sym___cold] = ACTIONS(1265), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1267), - [anon_sym___declspec] = ACTIONS(1265), - [anon_sym___init] = ACTIONS(1265), - [anon_sym___exit] = ACTIONS(1265), - [anon_sym___cdecl] = ACTIONS(1265), - [anon_sym___clrcall] = ACTIONS(1265), - [anon_sym___stdcall] = ACTIONS(1265), - [anon_sym___fastcall] = ACTIONS(1265), - [anon_sym___thiscall] = ACTIONS(1265), - [anon_sym___vectorcall] = ACTIONS(1265), - [anon_sym_LBRACE] = ACTIONS(1267), - [anon_sym_signed] = ACTIONS(1265), - [anon_sym_unsigned] = ACTIONS(1265), - [anon_sym_long] = ACTIONS(1265), - [anon_sym_short] = ACTIONS(1265), - [anon_sym_static] = ACTIONS(1265), - [anon_sym_auto] = ACTIONS(1265), - [anon_sym_register] = ACTIONS(1265), - [anon_sym_inline] = ACTIONS(1265), - [anon_sym___inline] = ACTIONS(1265), - [anon_sym___inline__] = ACTIONS(1265), - [anon_sym___forceinline] = ACTIONS(1265), - [anon_sym_thread_local] = ACTIONS(1265), - [anon_sym___thread] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_constexpr] = ACTIONS(1265), - [anon_sym_volatile] = ACTIONS(1265), - [anon_sym_restrict] = ACTIONS(1265), - [anon_sym___restrict__] = ACTIONS(1265), - [anon_sym__Atomic] = ACTIONS(1265), - [anon_sym__Noreturn] = ACTIONS(1265), - [anon_sym_noreturn] = ACTIONS(1265), - [anon_sym_alignas] = ACTIONS(1265), - [anon_sym__Alignas] = ACTIONS(1265), - [sym_primitive_type] = ACTIONS(1265), - [anon_sym_enum] = ACTIONS(1265), - [anon_sym_struct] = ACTIONS(1265), - [anon_sym_union] = ACTIONS(1265), - [anon_sym_if] = ACTIONS(1265), - [anon_sym_else] = ACTIONS(1265), - [anon_sym_switch] = ACTIONS(1265), - [anon_sym_case] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_while] = ACTIONS(1265), - [anon_sym_do] = ACTIONS(1265), - [anon_sym_for] = ACTIONS(1265), - [anon_sym_return] = ACTIONS(1265), - [anon_sym_break] = ACTIONS(1265), - [anon_sym_continue] = ACTIONS(1265), - [anon_sym_goto] = ACTIONS(1265), - [anon_sym___try] = ACTIONS(1265), - [anon_sym___leave] = ACTIONS(1265), - [anon_sym_DASH_DASH] = ACTIONS(1267), - [anon_sym_PLUS_PLUS] = ACTIONS(1267), - [anon_sym_sizeof] = ACTIONS(1265), - [anon_sym___alignof__] = ACTIONS(1265), - [anon_sym___alignof] = ACTIONS(1265), - [anon_sym__alignof] = ACTIONS(1265), - [anon_sym_alignof] = ACTIONS(1265), - [anon_sym__Alignof] = ACTIONS(1265), - [anon_sym_offsetof] = ACTIONS(1265), - [anon_sym__Generic] = ACTIONS(1265), - [anon_sym_asm] = ACTIONS(1265), - [anon_sym___asm__] = ACTIONS(1265), - [sym_number_literal] = ACTIONS(1267), - [anon_sym_L_SQUOTE] = ACTIONS(1267), - [anon_sym_u_SQUOTE] = ACTIONS(1267), - [anon_sym_U_SQUOTE] = ACTIONS(1267), - [anon_sym_u8_SQUOTE] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_L_DQUOTE] = ACTIONS(1267), - [anon_sym_u_DQUOTE] = ACTIONS(1267), - [anon_sym_U_DQUOTE] = ACTIONS(1267), - [anon_sym_u8_DQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1267), - [sym_true] = ACTIONS(1265), - [sym_false] = ACTIONS(1265), - [anon_sym_NULL] = ACTIONS(1265), - [anon_sym_nullptr] = ACTIONS(1265), - [sym_comment] = ACTIONS(3), + [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_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), }, [198] = { - [sym_identifier] = ACTIONS(1213), - [aux_sym_preproc_include_token1] = ACTIONS(1213), - [aux_sym_preproc_def_token1] = ACTIONS(1213), - [aux_sym_preproc_if_token1] = ACTIONS(1213), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1213), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1213), - [sym_preproc_directive] = ACTIONS(1213), - [anon_sym_LPAREN2] = ACTIONS(1215), - [anon_sym_BANG] = ACTIONS(1215), - [anon_sym_TILDE] = ACTIONS(1215), - [anon_sym_DASH] = ACTIONS(1213), - [anon_sym_PLUS] = ACTIONS(1213), - [anon_sym_STAR] = ACTIONS(1215), - [anon_sym_AMP] = ACTIONS(1215), - [anon_sym_SEMI] = ACTIONS(1215), - [anon_sym___extension__] = ACTIONS(1213), - [anon_sym_typedef] = ACTIONS(1213), - [anon_sym_extern] = ACTIONS(1213), - [anon_sym___attribute__] = ACTIONS(1213), - [anon_sym___scanf] = ACTIONS(1213), - [anon_sym___printf] = ACTIONS(1213), - [anon_sym___read_mostly] = ACTIONS(1213), - [anon_sym___must_hold] = ACTIONS(1213), - [anon_sym___ro_after_init] = ACTIONS(1213), - [anon_sym___noreturn] = ACTIONS(1213), - [anon_sym___cold] = ACTIONS(1213), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1215), - [anon_sym___declspec] = ACTIONS(1213), - [anon_sym___init] = ACTIONS(1213), - [anon_sym___exit] = ACTIONS(1213), - [anon_sym___cdecl] = ACTIONS(1213), - [anon_sym___clrcall] = ACTIONS(1213), - [anon_sym___stdcall] = ACTIONS(1213), - [anon_sym___fastcall] = ACTIONS(1213), - [anon_sym___thiscall] = ACTIONS(1213), - [anon_sym___vectorcall] = ACTIONS(1213), - [anon_sym_LBRACE] = ACTIONS(1215), - [anon_sym_RBRACE] = ACTIONS(1215), - [anon_sym_signed] = ACTIONS(1213), - [anon_sym_unsigned] = ACTIONS(1213), - [anon_sym_long] = ACTIONS(1213), - [anon_sym_short] = ACTIONS(1213), - [anon_sym_static] = ACTIONS(1213), - [anon_sym_auto] = ACTIONS(1213), - [anon_sym_register] = ACTIONS(1213), - [anon_sym_inline] = ACTIONS(1213), - [anon_sym___inline] = ACTIONS(1213), - [anon_sym___inline__] = ACTIONS(1213), - [anon_sym___forceinline] = ACTIONS(1213), - [anon_sym_thread_local] = ACTIONS(1213), - [anon_sym___thread] = ACTIONS(1213), - [anon_sym_const] = ACTIONS(1213), - [anon_sym_constexpr] = ACTIONS(1213), - [anon_sym_volatile] = ACTIONS(1213), - [anon_sym_restrict] = ACTIONS(1213), - [anon_sym___restrict__] = ACTIONS(1213), - [anon_sym__Atomic] = ACTIONS(1213), - [anon_sym__Noreturn] = ACTIONS(1213), - [anon_sym_noreturn] = ACTIONS(1213), - [anon_sym_alignas] = ACTIONS(1213), - [anon_sym__Alignas] = ACTIONS(1213), - [sym_primitive_type] = ACTIONS(1213), - [anon_sym_enum] = ACTIONS(1213), - [anon_sym_struct] = ACTIONS(1213), - [anon_sym_union] = ACTIONS(1213), - [anon_sym_if] = ACTIONS(1213), - [anon_sym_else] = ACTIONS(1213), - [anon_sym_switch] = ACTIONS(1213), - [anon_sym_case] = ACTIONS(1213), - [anon_sym_default] = ACTIONS(1213), - [anon_sym_while] = ACTIONS(1213), - [anon_sym_do] = ACTIONS(1213), - [anon_sym_for] = ACTIONS(1213), - [anon_sym_return] = ACTIONS(1213), - [anon_sym_break] = ACTIONS(1213), - [anon_sym_continue] = ACTIONS(1213), - [anon_sym_goto] = ACTIONS(1213), - [anon_sym___try] = ACTIONS(1213), - [anon_sym___leave] = ACTIONS(1213), - [anon_sym_DASH_DASH] = ACTIONS(1215), - [anon_sym_PLUS_PLUS] = ACTIONS(1215), - [anon_sym_sizeof] = ACTIONS(1213), - [anon_sym___alignof__] = ACTIONS(1213), - [anon_sym___alignof] = ACTIONS(1213), - [anon_sym__alignof] = ACTIONS(1213), - [anon_sym_alignof] = ACTIONS(1213), - [anon_sym__Alignof] = ACTIONS(1213), - [anon_sym_offsetof] = ACTIONS(1213), - [anon_sym__Generic] = ACTIONS(1213), - [anon_sym_asm] = ACTIONS(1213), - [anon_sym___asm__] = ACTIONS(1213), - [sym_number_literal] = ACTIONS(1215), - [anon_sym_L_SQUOTE] = ACTIONS(1215), - [anon_sym_u_SQUOTE] = ACTIONS(1215), - [anon_sym_U_SQUOTE] = ACTIONS(1215), - [anon_sym_u8_SQUOTE] = ACTIONS(1215), - [anon_sym_SQUOTE] = ACTIONS(1215), - [anon_sym_L_DQUOTE] = ACTIONS(1215), - [anon_sym_u_DQUOTE] = ACTIONS(1215), - [anon_sym_U_DQUOTE] = ACTIONS(1215), - [anon_sym_u8_DQUOTE] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1215), - [sym_true] = ACTIONS(1213), - [sym_false] = ACTIONS(1213), - [anon_sym_NULL] = ACTIONS(1213), - [anon_sym_nullptr] = ACTIONS(1213), - [sym_comment] = ACTIONS(3), + [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), }, [199] = { - [ts_builtin_sym_end] = ACTIONS(1207), - [sym_identifier] = ACTIONS(1205), - [aux_sym_preproc_include_token1] = ACTIONS(1205), - [aux_sym_preproc_def_token1] = ACTIONS(1205), - [aux_sym_preproc_if_token1] = ACTIONS(1205), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1205), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1205), - [sym_preproc_directive] = ACTIONS(1205), - [anon_sym_LPAREN2] = ACTIONS(1207), - [anon_sym_BANG] = ACTIONS(1207), - [anon_sym_TILDE] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1205), - [anon_sym_PLUS] = ACTIONS(1205), - [anon_sym_STAR] = ACTIONS(1207), - [anon_sym_AMP] = ACTIONS(1207), - [anon_sym_SEMI] = ACTIONS(1207), - [anon_sym___extension__] = ACTIONS(1205), - [anon_sym_typedef] = ACTIONS(1205), - [anon_sym_extern] = ACTIONS(1205), - [anon_sym___attribute__] = ACTIONS(1205), - [anon_sym___scanf] = ACTIONS(1205), - [anon_sym___printf] = ACTIONS(1205), - [anon_sym___read_mostly] = ACTIONS(1205), - [anon_sym___must_hold] = ACTIONS(1205), - [anon_sym___ro_after_init] = ACTIONS(1205), - [anon_sym___noreturn] = ACTIONS(1205), - [anon_sym___cold] = ACTIONS(1205), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1207), - [anon_sym___declspec] = ACTIONS(1205), - [anon_sym___init] = ACTIONS(1205), - [anon_sym___exit] = ACTIONS(1205), - [anon_sym___cdecl] = ACTIONS(1205), - [anon_sym___clrcall] = ACTIONS(1205), - [anon_sym___stdcall] = ACTIONS(1205), - [anon_sym___fastcall] = ACTIONS(1205), - [anon_sym___thiscall] = ACTIONS(1205), - [anon_sym___vectorcall] = ACTIONS(1205), - [anon_sym_LBRACE] = ACTIONS(1207), - [anon_sym_signed] = ACTIONS(1205), - [anon_sym_unsigned] = ACTIONS(1205), - [anon_sym_long] = ACTIONS(1205), - [anon_sym_short] = ACTIONS(1205), - [anon_sym_static] = ACTIONS(1205), - [anon_sym_auto] = ACTIONS(1205), - [anon_sym_register] = ACTIONS(1205), - [anon_sym_inline] = ACTIONS(1205), - [anon_sym___inline] = ACTIONS(1205), - [anon_sym___inline__] = ACTIONS(1205), - [anon_sym___forceinline] = ACTIONS(1205), - [anon_sym_thread_local] = ACTIONS(1205), - [anon_sym___thread] = ACTIONS(1205), - [anon_sym_const] = ACTIONS(1205), - [anon_sym_constexpr] = ACTIONS(1205), - [anon_sym_volatile] = ACTIONS(1205), - [anon_sym_restrict] = ACTIONS(1205), - [anon_sym___restrict__] = ACTIONS(1205), - [anon_sym__Atomic] = ACTIONS(1205), - [anon_sym__Noreturn] = ACTIONS(1205), - [anon_sym_noreturn] = ACTIONS(1205), - [anon_sym_alignas] = ACTIONS(1205), - [anon_sym__Alignas] = ACTIONS(1205), - [sym_primitive_type] = ACTIONS(1205), - [anon_sym_enum] = ACTIONS(1205), - [anon_sym_struct] = ACTIONS(1205), - [anon_sym_union] = ACTIONS(1205), - [anon_sym_if] = ACTIONS(1205), - [anon_sym_else] = ACTIONS(1205), - [anon_sym_switch] = ACTIONS(1205), - [anon_sym_case] = ACTIONS(1205), - [anon_sym_default] = ACTIONS(1205), - [anon_sym_while] = ACTIONS(1205), - [anon_sym_do] = ACTIONS(1205), - [anon_sym_for] = ACTIONS(1205), - [anon_sym_return] = ACTIONS(1205), - [anon_sym_break] = ACTIONS(1205), - [anon_sym_continue] = ACTIONS(1205), - [anon_sym_goto] = ACTIONS(1205), - [anon_sym___try] = ACTIONS(1205), - [anon_sym___leave] = ACTIONS(1205), - [anon_sym_DASH_DASH] = ACTIONS(1207), - [anon_sym_PLUS_PLUS] = ACTIONS(1207), - [anon_sym_sizeof] = ACTIONS(1205), - [anon_sym___alignof__] = ACTIONS(1205), - [anon_sym___alignof] = ACTIONS(1205), - [anon_sym__alignof] = ACTIONS(1205), - [anon_sym_alignof] = ACTIONS(1205), - [anon_sym__Alignof] = ACTIONS(1205), - [anon_sym_offsetof] = ACTIONS(1205), - [anon_sym__Generic] = ACTIONS(1205), - [anon_sym_asm] = ACTIONS(1205), - [anon_sym___asm__] = ACTIONS(1205), - [sym_number_literal] = ACTIONS(1207), - [anon_sym_L_SQUOTE] = ACTIONS(1207), - [anon_sym_u_SQUOTE] = ACTIONS(1207), - [anon_sym_U_SQUOTE] = ACTIONS(1207), - [anon_sym_u8_SQUOTE] = ACTIONS(1207), - [anon_sym_SQUOTE] = ACTIONS(1207), - [anon_sym_L_DQUOTE] = ACTIONS(1207), - [anon_sym_u_DQUOTE] = ACTIONS(1207), - [anon_sym_U_DQUOTE] = ACTIONS(1207), - [anon_sym_u8_DQUOTE] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1207), - [sym_true] = ACTIONS(1205), - [sym_false] = ACTIONS(1205), - [anon_sym_NULL] = ACTIONS(1205), - [anon_sym_nullptr] = ACTIONS(1205), - [sym_comment] = ACTIONS(3), + [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] = { - [sym_identifier] = ACTIONS(1185), - [aux_sym_preproc_include_token1] = ACTIONS(1185), - [aux_sym_preproc_def_token1] = ACTIONS(1185), - [aux_sym_preproc_if_token1] = ACTIONS(1185), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1185), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1185), - [sym_preproc_directive] = ACTIONS(1185), - [anon_sym_LPAREN2] = ACTIONS(1187), - [anon_sym_BANG] = ACTIONS(1187), - [anon_sym_TILDE] = ACTIONS(1187), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1187), - [anon_sym_AMP] = ACTIONS(1187), - [anon_sym_SEMI] = ACTIONS(1187), - [anon_sym___extension__] = ACTIONS(1185), - [anon_sym_typedef] = ACTIONS(1185), - [anon_sym_extern] = ACTIONS(1185), - [anon_sym___attribute__] = ACTIONS(1185), - [anon_sym___scanf] = ACTIONS(1185), - [anon_sym___printf] = ACTIONS(1185), - [anon_sym___read_mostly] = ACTIONS(1185), - [anon_sym___must_hold] = ACTIONS(1185), - [anon_sym___ro_after_init] = ACTIONS(1185), - [anon_sym___noreturn] = ACTIONS(1185), - [anon_sym___cold] = ACTIONS(1185), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1187), - [anon_sym___declspec] = ACTIONS(1185), - [anon_sym___init] = ACTIONS(1185), - [anon_sym___exit] = ACTIONS(1185), - [anon_sym___cdecl] = ACTIONS(1185), - [anon_sym___clrcall] = ACTIONS(1185), - [anon_sym___stdcall] = ACTIONS(1185), - [anon_sym___fastcall] = ACTIONS(1185), - [anon_sym___thiscall] = ACTIONS(1185), - [anon_sym___vectorcall] = ACTIONS(1185), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_RBRACE] = ACTIONS(1187), - [anon_sym_signed] = ACTIONS(1185), - [anon_sym_unsigned] = ACTIONS(1185), - [anon_sym_long] = ACTIONS(1185), - [anon_sym_short] = ACTIONS(1185), - [anon_sym_static] = ACTIONS(1185), - [anon_sym_auto] = ACTIONS(1185), - [anon_sym_register] = ACTIONS(1185), - [anon_sym_inline] = ACTIONS(1185), - [anon_sym___inline] = ACTIONS(1185), - [anon_sym___inline__] = ACTIONS(1185), - [anon_sym___forceinline] = ACTIONS(1185), - [anon_sym_thread_local] = ACTIONS(1185), - [anon_sym___thread] = ACTIONS(1185), - [anon_sym_const] = ACTIONS(1185), - [anon_sym_constexpr] = ACTIONS(1185), - [anon_sym_volatile] = ACTIONS(1185), - [anon_sym_restrict] = ACTIONS(1185), - [anon_sym___restrict__] = ACTIONS(1185), - [anon_sym__Atomic] = ACTIONS(1185), - [anon_sym__Noreturn] = ACTIONS(1185), - [anon_sym_noreturn] = ACTIONS(1185), - [anon_sym_alignas] = ACTIONS(1185), - [anon_sym__Alignas] = ACTIONS(1185), - [sym_primitive_type] = ACTIONS(1185), - [anon_sym_enum] = ACTIONS(1185), - [anon_sym_struct] = ACTIONS(1185), - [anon_sym_union] = ACTIONS(1185), - [anon_sym_if] = ACTIONS(1185), - [anon_sym_else] = ACTIONS(1185), - [anon_sym_switch] = ACTIONS(1185), - [anon_sym_case] = ACTIONS(1185), - [anon_sym_default] = ACTIONS(1185), - [anon_sym_while] = ACTIONS(1185), - [anon_sym_do] = ACTIONS(1185), - [anon_sym_for] = ACTIONS(1185), - [anon_sym_return] = ACTIONS(1185), - [anon_sym_break] = ACTIONS(1185), - [anon_sym_continue] = ACTIONS(1185), - [anon_sym_goto] = ACTIONS(1185), - [anon_sym___try] = ACTIONS(1185), - [anon_sym___leave] = ACTIONS(1185), - [anon_sym_DASH_DASH] = ACTIONS(1187), - [anon_sym_PLUS_PLUS] = ACTIONS(1187), - [anon_sym_sizeof] = ACTIONS(1185), - [anon_sym___alignof__] = ACTIONS(1185), - [anon_sym___alignof] = ACTIONS(1185), - [anon_sym__alignof] = ACTIONS(1185), - [anon_sym_alignof] = ACTIONS(1185), - [anon_sym__Alignof] = ACTIONS(1185), - [anon_sym_offsetof] = ACTIONS(1185), - [anon_sym__Generic] = ACTIONS(1185), - [anon_sym_asm] = ACTIONS(1185), - [anon_sym___asm__] = ACTIONS(1185), - [sym_number_literal] = ACTIONS(1187), - [anon_sym_L_SQUOTE] = ACTIONS(1187), - [anon_sym_u_SQUOTE] = ACTIONS(1187), - [anon_sym_U_SQUOTE] = ACTIONS(1187), - [anon_sym_u8_SQUOTE] = ACTIONS(1187), - [anon_sym_SQUOTE] = ACTIONS(1187), - [anon_sym_L_DQUOTE] = ACTIONS(1187), - [anon_sym_u_DQUOTE] = ACTIONS(1187), - [anon_sym_U_DQUOTE] = ACTIONS(1187), - [anon_sym_u8_DQUOTE] = ACTIONS(1187), - [anon_sym_DQUOTE] = ACTIONS(1187), - [sym_true] = ACTIONS(1185), - [sym_false] = ACTIONS(1185), - [anon_sym_NULL] = ACTIONS(1185), - [anon_sym_nullptr] = ACTIONS(1185), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [201] = { - [ts_builtin_sym_end] = ACTIONS(1199), - [sym_identifier] = ACTIONS(1197), - [aux_sym_preproc_include_token1] = ACTIONS(1197), - [aux_sym_preproc_def_token1] = ACTIONS(1197), - [aux_sym_preproc_if_token1] = ACTIONS(1197), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1197), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1197), - [sym_preproc_directive] = ACTIONS(1197), - [anon_sym_LPAREN2] = ACTIONS(1199), - [anon_sym_BANG] = ACTIONS(1199), - [anon_sym_TILDE] = ACTIONS(1199), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_AMP] = ACTIONS(1199), - [anon_sym_SEMI] = ACTIONS(1199), - [anon_sym___extension__] = ACTIONS(1197), - [anon_sym_typedef] = ACTIONS(1197), - [anon_sym_extern] = ACTIONS(1197), - [anon_sym___attribute__] = ACTIONS(1197), - [anon_sym___scanf] = ACTIONS(1197), - [anon_sym___printf] = ACTIONS(1197), - [anon_sym___read_mostly] = ACTIONS(1197), - [anon_sym___must_hold] = ACTIONS(1197), - [anon_sym___ro_after_init] = ACTIONS(1197), - [anon_sym___noreturn] = ACTIONS(1197), - [anon_sym___cold] = ACTIONS(1197), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1199), - [anon_sym___declspec] = ACTIONS(1197), - [anon_sym___init] = ACTIONS(1197), - [anon_sym___exit] = ACTIONS(1197), - [anon_sym___cdecl] = ACTIONS(1197), - [anon_sym___clrcall] = ACTIONS(1197), - [anon_sym___stdcall] = ACTIONS(1197), - [anon_sym___fastcall] = ACTIONS(1197), - [anon_sym___thiscall] = ACTIONS(1197), - [anon_sym___vectorcall] = ACTIONS(1197), - [anon_sym_LBRACE] = ACTIONS(1199), - [anon_sym_signed] = ACTIONS(1197), - [anon_sym_unsigned] = ACTIONS(1197), - [anon_sym_long] = ACTIONS(1197), - [anon_sym_short] = ACTIONS(1197), - [anon_sym_static] = ACTIONS(1197), - [anon_sym_auto] = ACTIONS(1197), - [anon_sym_register] = ACTIONS(1197), - [anon_sym_inline] = ACTIONS(1197), - [anon_sym___inline] = ACTIONS(1197), - [anon_sym___inline__] = ACTIONS(1197), - [anon_sym___forceinline] = ACTIONS(1197), - [anon_sym_thread_local] = ACTIONS(1197), - [anon_sym___thread] = ACTIONS(1197), - [anon_sym_const] = ACTIONS(1197), - [anon_sym_constexpr] = ACTIONS(1197), - [anon_sym_volatile] = ACTIONS(1197), - [anon_sym_restrict] = ACTIONS(1197), - [anon_sym___restrict__] = ACTIONS(1197), - [anon_sym__Atomic] = ACTIONS(1197), - [anon_sym__Noreturn] = ACTIONS(1197), - [anon_sym_noreturn] = ACTIONS(1197), - [anon_sym_alignas] = ACTIONS(1197), - [anon_sym__Alignas] = ACTIONS(1197), - [sym_primitive_type] = ACTIONS(1197), - [anon_sym_enum] = ACTIONS(1197), - [anon_sym_struct] = ACTIONS(1197), - [anon_sym_union] = ACTIONS(1197), - [anon_sym_if] = ACTIONS(1197), - [anon_sym_else] = ACTIONS(1197), - [anon_sym_switch] = ACTIONS(1197), - [anon_sym_case] = ACTIONS(1197), - [anon_sym_default] = ACTIONS(1197), - [anon_sym_while] = ACTIONS(1197), - [anon_sym_do] = ACTIONS(1197), - [anon_sym_for] = ACTIONS(1197), - [anon_sym_return] = ACTIONS(1197), - [anon_sym_break] = ACTIONS(1197), - [anon_sym_continue] = ACTIONS(1197), - [anon_sym_goto] = ACTIONS(1197), - [anon_sym___try] = ACTIONS(1197), - [anon_sym___leave] = ACTIONS(1197), - [anon_sym_DASH_DASH] = ACTIONS(1199), - [anon_sym_PLUS_PLUS] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1197), - [anon_sym___alignof__] = ACTIONS(1197), - [anon_sym___alignof] = ACTIONS(1197), - [anon_sym__alignof] = ACTIONS(1197), - [anon_sym_alignof] = ACTIONS(1197), - [anon_sym__Alignof] = ACTIONS(1197), - [anon_sym_offsetof] = ACTIONS(1197), - [anon_sym__Generic] = ACTIONS(1197), - [anon_sym_asm] = ACTIONS(1197), - [anon_sym___asm__] = ACTIONS(1197), - [sym_number_literal] = ACTIONS(1199), - [anon_sym_L_SQUOTE] = ACTIONS(1199), - [anon_sym_u_SQUOTE] = ACTIONS(1199), - [anon_sym_U_SQUOTE] = ACTIONS(1199), - [anon_sym_u8_SQUOTE] = ACTIONS(1199), - [anon_sym_SQUOTE] = ACTIONS(1199), - [anon_sym_L_DQUOTE] = ACTIONS(1199), - [anon_sym_u_DQUOTE] = ACTIONS(1199), - [anon_sym_U_DQUOTE] = ACTIONS(1199), - [anon_sym_u8_DQUOTE] = ACTIONS(1199), - [anon_sym_DQUOTE] = ACTIONS(1199), - [sym_true] = ACTIONS(1197), - [sym_false] = ACTIONS(1197), - [anon_sym_NULL] = ACTIONS(1197), - [anon_sym_nullptr] = ACTIONS(1197), - [sym_comment] = ACTIONS(3), + [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), }, [202] = { - [ts_builtin_sym_end] = ACTIONS(1199), - [sym_identifier] = ACTIONS(1197), - [aux_sym_preproc_include_token1] = ACTIONS(1197), - [aux_sym_preproc_def_token1] = ACTIONS(1197), - [aux_sym_preproc_if_token1] = ACTIONS(1197), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1197), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1197), - [sym_preproc_directive] = ACTIONS(1197), - [anon_sym_LPAREN2] = ACTIONS(1199), - [anon_sym_BANG] = ACTIONS(1199), - [anon_sym_TILDE] = ACTIONS(1199), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_AMP] = ACTIONS(1199), - [anon_sym_SEMI] = ACTIONS(1199), - [anon_sym___extension__] = ACTIONS(1197), - [anon_sym_typedef] = ACTIONS(1197), - [anon_sym_extern] = ACTIONS(1197), - [anon_sym___attribute__] = ACTIONS(1197), - [anon_sym___scanf] = ACTIONS(1197), - [anon_sym___printf] = ACTIONS(1197), - [anon_sym___read_mostly] = ACTIONS(1197), - [anon_sym___must_hold] = ACTIONS(1197), - [anon_sym___ro_after_init] = ACTIONS(1197), - [anon_sym___noreturn] = ACTIONS(1197), - [anon_sym___cold] = ACTIONS(1197), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1199), - [anon_sym___declspec] = ACTIONS(1197), - [anon_sym___init] = ACTIONS(1197), - [anon_sym___exit] = ACTIONS(1197), - [anon_sym___cdecl] = ACTIONS(1197), - [anon_sym___clrcall] = ACTIONS(1197), - [anon_sym___stdcall] = ACTIONS(1197), - [anon_sym___fastcall] = ACTIONS(1197), - [anon_sym___thiscall] = ACTIONS(1197), - [anon_sym___vectorcall] = ACTIONS(1197), - [anon_sym_LBRACE] = ACTIONS(1199), - [anon_sym_signed] = ACTIONS(1197), - [anon_sym_unsigned] = ACTIONS(1197), - [anon_sym_long] = ACTIONS(1197), - [anon_sym_short] = ACTIONS(1197), - [anon_sym_static] = ACTIONS(1197), - [anon_sym_auto] = ACTIONS(1197), - [anon_sym_register] = ACTIONS(1197), - [anon_sym_inline] = ACTIONS(1197), - [anon_sym___inline] = ACTIONS(1197), - [anon_sym___inline__] = ACTIONS(1197), - [anon_sym___forceinline] = ACTIONS(1197), - [anon_sym_thread_local] = ACTIONS(1197), - [anon_sym___thread] = ACTIONS(1197), - [anon_sym_const] = ACTIONS(1197), - [anon_sym_constexpr] = ACTIONS(1197), - [anon_sym_volatile] = ACTIONS(1197), - [anon_sym_restrict] = ACTIONS(1197), - [anon_sym___restrict__] = ACTIONS(1197), - [anon_sym__Atomic] = ACTIONS(1197), - [anon_sym__Noreturn] = ACTIONS(1197), - [anon_sym_noreturn] = ACTIONS(1197), - [anon_sym_alignas] = ACTIONS(1197), - [anon_sym__Alignas] = ACTIONS(1197), - [sym_primitive_type] = ACTIONS(1197), - [anon_sym_enum] = ACTIONS(1197), - [anon_sym_struct] = ACTIONS(1197), - [anon_sym_union] = ACTIONS(1197), - [anon_sym_if] = ACTIONS(1197), - [anon_sym_else] = ACTIONS(1197), - [anon_sym_switch] = ACTIONS(1197), - [anon_sym_case] = ACTIONS(1197), - [anon_sym_default] = ACTIONS(1197), - [anon_sym_while] = ACTIONS(1197), - [anon_sym_do] = ACTIONS(1197), - [anon_sym_for] = ACTIONS(1197), - [anon_sym_return] = ACTIONS(1197), - [anon_sym_break] = ACTIONS(1197), - [anon_sym_continue] = ACTIONS(1197), - [anon_sym_goto] = ACTIONS(1197), - [anon_sym___try] = ACTIONS(1197), - [anon_sym___leave] = ACTIONS(1197), - [anon_sym_DASH_DASH] = ACTIONS(1199), - [anon_sym_PLUS_PLUS] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1197), - [anon_sym___alignof__] = ACTIONS(1197), - [anon_sym___alignof] = ACTIONS(1197), - [anon_sym__alignof] = ACTIONS(1197), - [anon_sym_alignof] = ACTIONS(1197), - [anon_sym__Alignof] = ACTIONS(1197), - [anon_sym_offsetof] = ACTIONS(1197), - [anon_sym__Generic] = ACTIONS(1197), - [anon_sym_asm] = ACTIONS(1197), - [anon_sym___asm__] = ACTIONS(1197), - [sym_number_literal] = ACTIONS(1199), - [anon_sym_L_SQUOTE] = ACTIONS(1199), - [anon_sym_u_SQUOTE] = ACTIONS(1199), - [anon_sym_U_SQUOTE] = ACTIONS(1199), - [anon_sym_u8_SQUOTE] = ACTIONS(1199), - [anon_sym_SQUOTE] = ACTIONS(1199), - [anon_sym_L_DQUOTE] = ACTIONS(1199), - [anon_sym_u_DQUOTE] = ACTIONS(1199), - [anon_sym_U_DQUOTE] = ACTIONS(1199), - [anon_sym_u8_DQUOTE] = ACTIONS(1199), - [anon_sym_DQUOTE] = ACTIONS(1199), - [sym_true] = ACTIONS(1197), - [sym_false] = ACTIONS(1197), - [anon_sym_NULL] = ACTIONS(1197), - [anon_sym_nullptr] = ACTIONS(1197), - [sym_comment] = ACTIONS(3), + [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_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), }, [203] = { - [sym_identifier] = ACTIONS(1217), - [aux_sym_preproc_include_token1] = ACTIONS(1217), - [aux_sym_preproc_def_token1] = ACTIONS(1217), - [aux_sym_preproc_if_token1] = ACTIONS(1217), - [aux_sym_preproc_if_token2] = ACTIONS(1217), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1217), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1217), - [sym_preproc_directive] = ACTIONS(1217), - [anon_sym_LPAREN2] = ACTIONS(1219), - [anon_sym_BANG] = ACTIONS(1219), - [anon_sym_TILDE] = ACTIONS(1219), - [anon_sym_DASH] = ACTIONS(1217), - [anon_sym_PLUS] = ACTIONS(1217), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_AMP] = ACTIONS(1219), - [anon_sym_SEMI] = ACTIONS(1219), - [anon_sym___extension__] = ACTIONS(1217), - [anon_sym_typedef] = ACTIONS(1217), - [anon_sym_extern] = ACTIONS(1217), - [anon_sym___attribute__] = ACTIONS(1217), - [anon_sym___scanf] = ACTIONS(1217), - [anon_sym___printf] = ACTIONS(1217), - [anon_sym___read_mostly] = ACTIONS(1217), - [anon_sym___must_hold] = ACTIONS(1217), - [anon_sym___ro_after_init] = ACTIONS(1217), - [anon_sym___noreturn] = ACTIONS(1217), - [anon_sym___cold] = ACTIONS(1217), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1219), - [anon_sym___declspec] = ACTIONS(1217), - [anon_sym___init] = ACTIONS(1217), - [anon_sym___exit] = ACTIONS(1217), - [anon_sym___cdecl] = ACTIONS(1217), - [anon_sym___clrcall] = ACTIONS(1217), - [anon_sym___stdcall] = ACTIONS(1217), - [anon_sym___fastcall] = ACTIONS(1217), - [anon_sym___thiscall] = ACTIONS(1217), - [anon_sym___vectorcall] = ACTIONS(1217), - [anon_sym_LBRACE] = ACTIONS(1219), - [anon_sym_signed] = ACTIONS(1217), - [anon_sym_unsigned] = ACTIONS(1217), - [anon_sym_long] = ACTIONS(1217), - [anon_sym_short] = ACTIONS(1217), - [anon_sym_static] = ACTIONS(1217), - [anon_sym_auto] = ACTIONS(1217), - [anon_sym_register] = ACTIONS(1217), - [anon_sym_inline] = ACTIONS(1217), - [anon_sym___inline] = ACTIONS(1217), - [anon_sym___inline__] = ACTIONS(1217), - [anon_sym___forceinline] = ACTIONS(1217), - [anon_sym_thread_local] = ACTIONS(1217), - [anon_sym___thread] = ACTIONS(1217), - [anon_sym_const] = ACTIONS(1217), - [anon_sym_constexpr] = ACTIONS(1217), - [anon_sym_volatile] = ACTIONS(1217), - [anon_sym_restrict] = ACTIONS(1217), - [anon_sym___restrict__] = ACTIONS(1217), - [anon_sym__Atomic] = ACTIONS(1217), - [anon_sym__Noreturn] = ACTIONS(1217), - [anon_sym_noreturn] = ACTIONS(1217), - [anon_sym_alignas] = ACTIONS(1217), - [anon_sym__Alignas] = ACTIONS(1217), - [sym_primitive_type] = ACTIONS(1217), - [anon_sym_enum] = ACTIONS(1217), - [anon_sym_struct] = ACTIONS(1217), - [anon_sym_union] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1217), - [anon_sym_else] = ACTIONS(1217), - [anon_sym_switch] = ACTIONS(1217), - [anon_sym_case] = ACTIONS(1217), - [anon_sym_default] = ACTIONS(1217), - [anon_sym_while] = ACTIONS(1217), - [anon_sym_do] = ACTIONS(1217), - [anon_sym_for] = ACTIONS(1217), - [anon_sym_return] = ACTIONS(1217), - [anon_sym_break] = ACTIONS(1217), - [anon_sym_continue] = ACTIONS(1217), - [anon_sym_goto] = ACTIONS(1217), - [anon_sym___try] = ACTIONS(1217), - [anon_sym___leave] = ACTIONS(1217), - [anon_sym_DASH_DASH] = ACTIONS(1219), - [anon_sym_PLUS_PLUS] = ACTIONS(1219), - [anon_sym_sizeof] = ACTIONS(1217), - [anon_sym___alignof__] = ACTIONS(1217), - [anon_sym___alignof] = ACTIONS(1217), - [anon_sym__alignof] = ACTIONS(1217), - [anon_sym_alignof] = ACTIONS(1217), - [anon_sym__Alignof] = ACTIONS(1217), - [anon_sym_offsetof] = ACTIONS(1217), - [anon_sym__Generic] = ACTIONS(1217), - [anon_sym_asm] = ACTIONS(1217), - [anon_sym___asm__] = ACTIONS(1217), - [sym_number_literal] = ACTIONS(1219), - [anon_sym_L_SQUOTE] = ACTIONS(1219), - [anon_sym_u_SQUOTE] = ACTIONS(1219), - [anon_sym_U_SQUOTE] = ACTIONS(1219), - [anon_sym_u8_SQUOTE] = ACTIONS(1219), - [anon_sym_SQUOTE] = ACTIONS(1219), - [anon_sym_L_DQUOTE] = ACTIONS(1219), - [anon_sym_u_DQUOTE] = ACTIONS(1219), - [anon_sym_U_DQUOTE] = ACTIONS(1219), - [anon_sym_u8_DQUOTE] = ACTIONS(1219), - [anon_sym_DQUOTE] = ACTIONS(1219), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [anon_sym_NULL] = ACTIONS(1217), - [anon_sym_nullptr] = ACTIONS(1217), - [sym_comment] = ACTIONS(3), + [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_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), }, [204] = { - [sym_identifier] = ACTIONS(1221), - [aux_sym_preproc_include_token1] = ACTIONS(1221), - [aux_sym_preproc_def_token1] = ACTIONS(1221), - [aux_sym_preproc_if_token1] = ACTIONS(1221), - [aux_sym_preproc_if_token2] = ACTIONS(1221), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1221), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1221), - [sym_preproc_directive] = ACTIONS(1221), - [anon_sym_LPAREN2] = ACTIONS(1223), - [anon_sym_BANG] = ACTIONS(1223), - [anon_sym_TILDE] = ACTIONS(1223), - [anon_sym_DASH] = ACTIONS(1221), - [anon_sym_PLUS] = ACTIONS(1221), - [anon_sym_STAR] = ACTIONS(1223), - [anon_sym_AMP] = ACTIONS(1223), - [anon_sym_SEMI] = ACTIONS(1223), - [anon_sym___extension__] = ACTIONS(1221), - [anon_sym_typedef] = ACTIONS(1221), - [anon_sym_extern] = ACTIONS(1221), - [anon_sym___attribute__] = ACTIONS(1221), - [anon_sym___scanf] = ACTIONS(1221), - [anon_sym___printf] = ACTIONS(1221), - [anon_sym___read_mostly] = ACTIONS(1221), - [anon_sym___must_hold] = ACTIONS(1221), - [anon_sym___ro_after_init] = ACTIONS(1221), - [anon_sym___noreturn] = ACTIONS(1221), - [anon_sym___cold] = ACTIONS(1221), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1223), - [anon_sym___declspec] = ACTIONS(1221), - [anon_sym___init] = ACTIONS(1221), - [anon_sym___exit] = ACTIONS(1221), - [anon_sym___cdecl] = ACTIONS(1221), - [anon_sym___clrcall] = ACTIONS(1221), - [anon_sym___stdcall] = ACTIONS(1221), - [anon_sym___fastcall] = ACTIONS(1221), - [anon_sym___thiscall] = ACTIONS(1221), - [anon_sym___vectorcall] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_signed] = ACTIONS(1221), - [anon_sym_unsigned] = ACTIONS(1221), - [anon_sym_long] = ACTIONS(1221), - [anon_sym_short] = ACTIONS(1221), - [anon_sym_static] = ACTIONS(1221), - [anon_sym_auto] = ACTIONS(1221), - [anon_sym_register] = ACTIONS(1221), - [anon_sym_inline] = ACTIONS(1221), - [anon_sym___inline] = ACTIONS(1221), - [anon_sym___inline__] = ACTIONS(1221), - [anon_sym___forceinline] = ACTIONS(1221), - [anon_sym_thread_local] = ACTIONS(1221), - [anon_sym___thread] = ACTIONS(1221), - [anon_sym_const] = ACTIONS(1221), - [anon_sym_constexpr] = ACTIONS(1221), - [anon_sym_volatile] = ACTIONS(1221), - [anon_sym_restrict] = ACTIONS(1221), - [anon_sym___restrict__] = ACTIONS(1221), - [anon_sym__Atomic] = ACTIONS(1221), - [anon_sym__Noreturn] = ACTIONS(1221), - [anon_sym_noreturn] = ACTIONS(1221), - [anon_sym_alignas] = ACTIONS(1221), - [anon_sym__Alignas] = ACTIONS(1221), - [sym_primitive_type] = ACTIONS(1221), - [anon_sym_enum] = ACTIONS(1221), - [anon_sym_struct] = ACTIONS(1221), - [anon_sym_union] = ACTIONS(1221), - [anon_sym_if] = ACTIONS(1221), - [anon_sym_else] = ACTIONS(1221), - [anon_sym_switch] = ACTIONS(1221), - [anon_sym_case] = ACTIONS(1221), - [anon_sym_default] = ACTIONS(1221), - [anon_sym_while] = ACTIONS(1221), - [anon_sym_do] = ACTIONS(1221), - [anon_sym_for] = ACTIONS(1221), - [anon_sym_return] = ACTIONS(1221), - [anon_sym_break] = ACTIONS(1221), - [anon_sym_continue] = ACTIONS(1221), - [anon_sym_goto] = ACTIONS(1221), - [anon_sym___try] = ACTIONS(1221), - [anon_sym___leave] = ACTIONS(1221), - [anon_sym_DASH_DASH] = ACTIONS(1223), - [anon_sym_PLUS_PLUS] = ACTIONS(1223), - [anon_sym_sizeof] = ACTIONS(1221), - [anon_sym___alignof__] = ACTIONS(1221), - [anon_sym___alignof] = ACTIONS(1221), - [anon_sym__alignof] = ACTIONS(1221), - [anon_sym_alignof] = ACTIONS(1221), - [anon_sym__Alignof] = ACTIONS(1221), - [anon_sym_offsetof] = ACTIONS(1221), - [anon_sym__Generic] = ACTIONS(1221), - [anon_sym_asm] = ACTIONS(1221), - [anon_sym___asm__] = ACTIONS(1221), - [sym_number_literal] = ACTIONS(1223), - [anon_sym_L_SQUOTE] = ACTIONS(1223), - [anon_sym_u_SQUOTE] = ACTIONS(1223), - [anon_sym_U_SQUOTE] = ACTIONS(1223), - [anon_sym_u8_SQUOTE] = ACTIONS(1223), - [anon_sym_SQUOTE] = ACTIONS(1223), - [anon_sym_L_DQUOTE] = ACTIONS(1223), - [anon_sym_u_DQUOTE] = ACTIONS(1223), - [anon_sym_U_DQUOTE] = ACTIONS(1223), - [anon_sym_u8_DQUOTE] = ACTIONS(1223), - [anon_sym_DQUOTE] = ACTIONS(1223), - [sym_true] = ACTIONS(1221), - [sym_false] = ACTIONS(1221), - [anon_sym_NULL] = ACTIONS(1221), - [anon_sym_nullptr] = ACTIONS(1221), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [205] = { - [sym_identifier] = ACTIONS(1157), - [aux_sym_preproc_include_token1] = ACTIONS(1157), - [aux_sym_preproc_def_token1] = ACTIONS(1157), - [aux_sym_preproc_if_token1] = ACTIONS(1157), - [aux_sym_preproc_if_token2] = ACTIONS(1157), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1157), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1157), - [sym_preproc_directive] = ACTIONS(1157), - [anon_sym_LPAREN2] = ACTIONS(1159), - [anon_sym_BANG] = ACTIONS(1159), - [anon_sym_TILDE] = ACTIONS(1159), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_STAR] = ACTIONS(1159), - [anon_sym_AMP] = ACTIONS(1159), - [anon_sym_SEMI] = ACTIONS(1159), - [anon_sym___extension__] = ACTIONS(1157), - [anon_sym_typedef] = ACTIONS(1157), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym___attribute__] = ACTIONS(1157), - [anon_sym___scanf] = ACTIONS(1157), - [anon_sym___printf] = ACTIONS(1157), - [anon_sym___read_mostly] = ACTIONS(1157), - [anon_sym___must_hold] = ACTIONS(1157), - [anon_sym___ro_after_init] = ACTIONS(1157), - [anon_sym___noreturn] = ACTIONS(1157), - [anon_sym___cold] = ACTIONS(1157), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1159), - [anon_sym___declspec] = ACTIONS(1157), - [anon_sym___init] = ACTIONS(1157), - [anon_sym___exit] = ACTIONS(1157), - [anon_sym___cdecl] = ACTIONS(1157), - [anon_sym___clrcall] = ACTIONS(1157), - [anon_sym___stdcall] = ACTIONS(1157), - [anon_sym___fastcall] = ACTIONS(1157), - [anon_sym___thiscall] = ACTIONS(1157), - [anon_sym___vectorcall] = ACTIONS(1157), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_signed] = ACTIONS(1157), - [anon_sym_unsigned] = ACTIONS(1157), - [anon_sym_long] = ACTIONS(1157), - [anon_sym_short] = ACTIONS(1157), - [anon_sym_static] = ACTIONS(1157), - [anon_sym_auto] = ACTIONS(1157), - [anon_sym_register] = ACTIONS(1157), - [anon_sym_inline] = ACTIONS(1157), - [anon_sym___inline] = ACTIONS(1157), - [anon_sym___inline__] = ACTIONS(1157), - [anon_sym___forceinline] = ACTIONS(1157), - [anon_sym_thread_local] = ACTIONS(1157), - [anon_sym___thread] = ACTIONS(1157), - [anon_sym_const] = ACTIONS(1157), - [anon_sym_constexpr] = ACTIONS(1157), - [anon_sym_volatile] = ACTIONS(1157), - [anon_sym_restrict] = ACTIONS(1157), - [anon_sym___restrict__] = ACTIONS(1157), - [anon_sym__Atomic] = ACTIONS(1157), - [anon_sym__Noreturn] = ACTIONS(1157), - [anon_sym_noreturn] = ACTIONS(1157), - [anon_sym_alignas] = ACTIONS(1157), - [anon_sym__Alignas] = ACTIONS(1157), - [sym_primitive_type] = ACTIONS(1157), - [anon_sym_enum] = ACTIONS(1157), - [anon_sym_struct] = ACTIONS(1157), - [anon_sym_union] = ACTIONS(1157), - [anon_sym_if] = ACTIONS(1157), - [anon_sym_else] = ACTIONS(1157), - [anon_sym_switch] = ACTIONS(1157), - [anon_sym_case] = ACTIONS(1157), - [anon_sym_default] = ACTIONS(1157), - [anon_sym_while] = ACTIONS(1157), - [anon_sym_do] = ACTIONS(1157), - [anon_sym_for] = ACTIONS(1157), - [anon_sym_return] = ACTIONS(1157), - [anon_sym_break] = ACTIONS(1157), - [anon_sym_continue] = ACTIONS(1157), - [anon_sym_goto] = ACTIONS(1157), - [anon_sym___try] = ACTIONS(1157), - [anon_sym___leave] = ACTIONS(1157), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_sizeof] = ACTIONS(1157), - [anon_sym___alignof__] = ACTIONS(1157), - [anon_sym___alignof] = ACTIONS(1157), - [anon_sym__alignof] = ACTIONS(1157), - [anon_sym_alignof] = ACTIONS(1157), - [anon_sym__Alignof] = ACTIONS(1157), - [anon_sym_offsetof] = ACTIONS(1157), - [anon_sym__Generic] = ACTIONS(1157), - [anon_sym_asm] = ACTIONS(1157), - [anon_sym___asm__] = ACTIONS(1157), - [sym_number_literal] = ACTIONS(1159), - [anon_sym_L_SQUOTE] = ACTIONS(1159), - [anon_sym_u_SQUOTE] = ACTIONS(1159), - [anon_sym_U_SQUOTE] = ACTIONS(1159), - [anon_sym_u8_SQUOTE] = ACTIONS(1159), - [anon_sym_SQUOTE] = ACTIONS(1159), - [anon_sym_L_DQUOTE] = ACTIONS(1159), - [anon_sym_u_DQUOTE] = ACTIONS(1159), - [anon_sym_U_DQUOTE] = ACTIONS(1159), - [anon_sym_u8_DQUOTE] = ACTIONS(1159), - [anon_sym_DQUOTE] = ACTIONS(1159), - [sym_true] = ACTIONS(1157), - [sym_false] = ACTIONS(1157), - [anon_sym_NULL] = ACTIONS(1157), - [anon_sym_nullptr] = ACTIONS(1157), - [sym_comment] = ACTIONS(3), + [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), }, [206] = { - [sym_identifier] = ACTIONS(1161), - [aux_sym_preproc_include_token1] = ACTIONS(1161), - [aux_sym_preproc_def_token1] = ACTIONS(1161), - [aux_sym_preproc_if_token1] = ACTIONS(1161), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1161), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1161), - [sym_preproc_directive] = ACTIONS(1161), - [anon_sym_LPAREN2] = ACTIONS(1163), - [anon_sym_BANG] = ACTIONS(1163), - [anon_sym_TILDE] = ACTIONS(1163), - [anon_sym_DASH] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_STAR] = ACTIONS(1163), - [anon_sym_AMP] = ACTIONS(1163), - [anon_sym_SEMI] = ACTIONS(1163), - [anon_sym___extension__] = ACTIONS(1161), - [anon_sym_typedef] = ACTIONS(1161), - [anon_sym_extern] = ACTIONS(1161), - [anon_sym___attribute__] = ACTIONS(1161), - [anon_sym___scanf] = ACTIONS(1161), - [anon_sym___printf] = ACTIONS(1161), - [anon_sym___read_mostly] = ACTIONS(1161), - [anon_sym___must_hold] = ACTIONS(1161), - [anon_sym___ro_after_init] = ACTIONS(1161), - [anon_sym___noreturn] = ACTIONS(1161), - [anon_sym___cold] = ACTIONS(1161), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1163), - [anon_sym___declspec] = ACTIONS(1161), - [anon_sym___init] = ACTIONS(1161), - [anon_sym___exit] = ACTIONS(1161), - [anon_sym___cdecl] = ACTIONS(1161), - [anon_sym___clrcall] = ACTIONS(1161), - [anon_sym___stdcall] = ACTIONS(1161), - [anon_sym___fastcall] = ACTIONS(1161), - [anon_sym___thiscall] = ACTIONS(1161), - [anon_sym___vectorcall] = ACTIONS(1161), - [anon_sym_LBRACE] = ACTIONS(1163), - [anon_sym_RBRACE] = ACTIONS(1163), - [anon_sym_signed] = ACTIONS(1161), - [anon_sym_unsigned] = ACTIONS(1161), - [anon_sym_long] = ACTIONS(1161), - [anon_sym_short] = ACTIONS(1161), - [anon_sym_static] = ACTIONS(1161), - [anon_sym_auto] = ACTIONS(1161), - [anon_sym_register] = ACTIONS(1161), - [anon_sym_inline] = ACTIONS(1161), - [anon_sym___inline] = ACTIONS(1161), - [anon_sym___inline__] = ACTIONS(1161), - [anon_sym___forceinline] = ACTIONS(1161), - [anon_sym_thread_local] = ACTIONS(1161), - [anon_sym___thread] = ACTIONS(1161), - [anon_sym_const] = ACTIONS(1161), - [anon_sym_constexpr] = ACTIONS(1161), - [anon_sym_volatile] = ACTIONS(1161), - [anon_sym_restrict] = ACTIONS(1161), - [anon_sym___restrict__] = ACTIONS(1161), - [anon_sym__Atomic] = ACTIONS(1161), - [anon_sym__Noreturn] = ACTIONS(1161), - [anon_sym_noreturn] = ACTIONS(1161), - [anon_sym_alignas] = ACTIONS(1161), - [anon_sym__Alignas] = ACTIONS(1161), - [sym_primitive_type] = ACTIONS(1161), - [anon_sym_enum] = ACTIONS(1161), - [anon_sym_struct] = ACTIONS(1161), - [anon_sym_union] = ACTIONS(1161), - [anon_sym_if] = ACTIONS(1161), - [anon_sym_else] = ACTIONS(1161), - [anon_sym_switch] = ACTIONS(1161), - [anon_sym_case] = ACTIONS(1161), - [anon_sym_default] = ACTIONS(1161), - [anon_sym_while] = ACTIONS(1161), - [anon_sym_do] = ACTIONS(1161), - [anon_sym_for] = ACTIONS(1161), - [anon_sym_return] = ACTIONS(1161), - [anon_sym_break] = ACTIONS(1161), - [anon_sym_continue] = ACTIONS(1161), - [anon_sym_goto] = ACTIONS(1161), - [anon_sym___try] = ACTIONS(1161), - [anon_sym___leave] = ACTIONS(1161), - [anon_sym_DASH_DASH] = ACTIONS(1163), - [anon_sym_PLUS_PLUS] = ACTIONS(1163), - [anon_sym_sizeof] = ACTIONS(1161), - [anon_sym___alignof__] = ACTIONS(1161), - [anon_sym___alignof] = ACTIONS(1161), - [anon_sym__alignof] = ACTIONS(1161), - [anon_sym_alignof] = ACTIONS(1161), - [anon_sym__Alignof] = ACTIONS(1161), - [anon_sym_offsetof] = ACTIONS(1161), - [anon_sym__Generic] = ACTIONS(1161), - [anon_sym_asm] = ACTIONS(1161), - [anon_sym___asm__] = ACTIONS(1161), - [sym_number_literal] = ACTIONS(1163), - [anon_sym_L_SQUOTE] = ACTIONS(1163), - [anon_sym_u_SQUOTE] = ACTIONS(1163), - [anon_sym_U_SQUOTE] = ACTIONS(1163), - [anon_sym_u8_SQUOTE] = ACTIONS(1163), - [anon_sym_SQUOTE] = ACTIONS(1163), - [anon_sym_L_DQUOTE] = ACTIONS(1163), - [anon_sym_u_DQUOTE] = ACTIONS(1163), - [anon_sym_U_DQUOTE] = ACTIONS(1163), - [anon_sym_u8_DQUOTE] = ACTIONS(1163), - [anon_sym_DQUOTE] = ACTIONS(1163), - [sym_true] = ACTIONS(1161), - [sym_false] = ACTIONS(1161), - [anon_sym_NULL] = ACTIONS(1161), - [anon_sym_nullptr] = ACTIONS(1161), - [sym_comment] = ACTIONS(3), + [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), }, [207] = { - [sym_identifier] = ACTIONS(1229), - [aux_sym_preproc_include_token1] = ACTIONS(1229), - [aux_sym_preproc_def_token1] = ACTIONS(1229), - [aux_sym_preproc_if_token1] = ACTIONS(1229), - [aux_sym_preproc_if_token2] = ACTIONS(1229), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1229), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1229), - [sym_preproc_directive] = ACTIONS(1229), - [anon_sym_LPAREN2] = ACTIONS(1231), - [anon_sym_BANG] = ACTIONS(1231), - [anon_sym_TILDE] = ACTIONS(1231), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_AMP] = ACTIONS(1231), - [anon_sym_SEMI] = ACTIONS(1231), - [anon_sym___extension__] = ACTIONS(1229), - [anon_sym_typedef] = ACTIONS(1229), - [anon_sym_extern] = ACTIONS(1229), - [anon_sym___attribute__] = ACTIONS(1229), - [anon_sym___scanf] = ACTIONS(1229), - [anon_sym___printf] = ACTIONS(1229), - [anon_sym___read_mostly] = ACTIONS(1229), - [anon_sym___must_hold] = ACTIONS(1229), - [anon_sym___ro_after_init] = ACTIONS(1229), - [anon_sym___noreturn] = ACTIONS(1229), - [anon_sym___cold] = ACTIONS(1229), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1231), - [anon_sym___declspec] = ACTIONS(1229), - [anon_sym___init] = ACTIONS(1229), - [anon_sym___exit] = ACTIONS(1229), - [anon_sym___cdecl] = ACTIONS(1229), - [anon_sym___clrcall] = ACTIONS(1229), - [anon_sym___stdcall] = ACTIONS(1229), - [anon_sym___fastcall] = ACTIONS(1229), - [anon_sym___thiscall] = ACTIONS(1229), - [anon_sym___vectorcall] = ACTIONS(1229), - [anon_sym_LBRACE] = ACTIONS(1231), - [anon_sym_signed] = ACTIONS(1229), - [anon_sym_unsigned] = ACTIONS(1229), - [anon_sym_long] = ACTIONS(1229), - [anon_sym_short] = ACTIONS(1229), - [anon_sym_static] = ACTIONS(1229), - [anon_sym_auto] = ACTIONS(1229), - [anon_sym_register] = ACTIONS(1229), - [anon_sym_inline] = ACTIONS(1229), - [anon_sym___inline] = ACTIONS(1229), - [anon_sym___inline__] = ACTIONS(1229), - [anon_sym___forceinline] = ACTIONS(1229), - [anon_sym_thread_local] = ACTIONS(1229), - [anon_sym___thread] = ACTIONS(1229), - [anon_sym_const] = ACTIONS(1229), - [anon_sym_constexpr] = ACTIONS(1229), - [anon_sym_volatile] = ACTIONS(1229), - [anon_sym_restrict] = ACTIONS(1229), - [anon_sym___restrict__] = ACTIONS(1229), - [anon_sym__Atomic] = ACTIONS(1229), - [anon_sym__Noreturn] = ACTIONS(1229), - [anon_sym_noreturn] = ACTIONS(1229), - [anon_sym_alignas] = ACTIONS(1229), - [anon_sym__Alignas] = ACTIONS(1229), - [sym_primitive_type] = ACTIONS(1229), - [anon_sym_enum] = ACTIONS(1229), - [anon_sym_struct] = ACTIONS(1229), - [anon_sym_union] = ACTIONS(1229), - [anon_sym_if] = ACTIONS(1229), - [anon_sym_else] = ACTIONS(1229), - [anon_sym_switch] = ACTIONS(1229), - [anon_sym_case] = ACTIONS(1229), - [anon_sym_default] = ACTIONS(1229), - [anon_sym_while] = ACTIONS(1229), - [anon_sym_do] = ACTIONS(1229), - [anon_sym_for] = ACTIONS(1229), - [anon_sym_return] = ACTIONS(1229), - [anon_sym_break] = ACTIONS(1229), - [anon_sym_continue] = ACTIONS(1229), - [anon_sym_goto] = ACTIONS(1229), - [anon_sym___try] = ACTIONS(1229), - [anon_sym___leave] = ACTIONS(1229), - [anon_sym_DASH_DASH] = ACTIONS(1231), - [anon_sym_PLUS_PLUS] = ACTIONS(1231), - [anon_sym_sizeof] = ACTIONS(1229), - [anon_sym___alignof__] = ACTIONS(1229), - [anon_sym___alignof] = ACTIONS(1229), - [anon_sym__alignof] = ACTIONS(1229), - [anon_sym_alignof] = ACTIONS(1229), - [anon_sym__Alignof] = ACTIONS(1229), - [anon_sym_offsetof] = ACTIONS(1229), - [anon_sym__Generic] = ACTIONS(1229), - [anon_sym_asm] = ACTIONS(1229), - [anon_sym___asm__] = ACTIONS(1229), - [sym_number_literal] = ACTIONS(1231), - [anon_sym_L_SQUOTE] = ACTIONS(1231), - [anon_sym_u_SQUOTE] = ACTIONS(1231), - [anon_sym_U_SQUOTE] = ACTIONS(1231), - [anon_sym_u8_SQUOTE] = ACTIONS(1231), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_L_DQUOTE] = ACTIONS(1231), - [anon_sym_u_DQUOTE] = ACTIONS(1231), - [anon_sym_U_DQUOTE] = ACTIONS(1231), - [anon_sym_u8_DQUOTE] = ACTIONS(1231), - [anon_sym_DQUOTE] = ACTIONS(1231), - [sym_true] = ACTIONS(1229), - [sym_false] = ACTIONS(1229), - [anon_sym_NULL] = ACTIONS(1229), - [anon_sym_nullptr] = ACTIONS(1229), - [sym_comment] = ACTIONS(3), + [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), }, [208] = { - [sym_identifier] = ACTIONS(1245), - [aux_sym_preproc_include_token1] = ACTIONS(1245), - [aux_sym_preproc_def_token1] = ACTIONS(1245), - [aux_sym_preproc_if_token1] = ACTIONS(1245), - [aux_sym_preproc_if_token2] = ACTIONS(1245), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1245), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1245), - [sym_preproc_directive] = ACTIONS(1245), - [anon_sym_LPAREN2] = ACTIONS(1247), - [anon_sym_BANG] = ACTIONS(1247), - [anon_sym_TILDE] = ACTIONS(1247), - [anon_sym_DASH] = ACTIONS(1245), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_STAR] = ACTIONS(1247), - [anon_sym_AMP] = ACTIONS(1247), - [anon_sym_SEMI] = ACTIONS(1247), - [anon_sym___extension__] = ACTIONS(1245), - [anon_sym_typedef] = ACTIONS(1245), - [anon_sym_extern] = ACTIONS(1245), - [anon_sym___attribute__] = ACTIONS(1245), - [anon_sym___scanf] = ACTIONS(1245), - [anon_sym___printf] = ACTIONS(1245), - [anon_sym___read_mostly] = ACTIONS(1245), - [anon_sym___must_hold] = ACTIONS(1245), - [anon_sym___ro_after_init] = ACTIONS(1245), - [anon_sym___noreturn] = ACTIONS(1245), - [anon_sym___cold] = ACTIONS(1245), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1247), - [anon_sym___declspec] = ACTIONS(1245), - [anon_sym___init] = ACTIONS(1245), - [anon_sym___exit] = ACTIONS(1245), - [anon_sym___cdecl] = ACTIONS(1245), - [anon_sym___clrcall] = ACTIONS(1245), - [anon_sym___stdcall] = ACTIONS(1245), - [anon_sym___fastcall] = ACTIONS(1245), - [anon_sym___thiscall] = ACTIONS(1245), - [anon_sym___vectorcall] = ACTIONS(1245), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_signed] = ACTIONS(1245), - [anon_sym_unsigned] = ACTIONS(1245), - [anon_sym_long] = ACTIONS(1245), - [anon_sym_short] = ACTIONS(1245), - [anon_sym_static] = ACTIONS(1245), - [anon_sym_auto] = ACTIONS(1245), - [anon_sym_register] = ACTIONS(1245), - [anon_sym_inline] = ACTIONS(1245), - [anon_sym___inline] = ACTIONS(1245), - [anon_sym___inline__] = ACTIONS(1245), - [anon_sym___forceinline] = ACTIONS(1245), - [anon_sym_thread_local] = ACTIONS(1245), - [anon_sym___thread] = ACTIONS(1245), - [anon_sym_const] = ACTIONS(1245), - [anon_sym_constexpr] = ACTIONS(1245), - [anon_sym_volatile] = ACTIONS(1245), - [anon_sym_restrict] = ACTIONS(1245), - [anon_sym___restrict__] = ACTIONS(1245), - [anon_sym__Atomic] = ACTIONS(1245), - [anon_sym__Noreturn] = ACTIONS(1245), - [anon_sym_noreturn] = ACTIONS(1245), - [anon_sym_alignas] = ACTIONS(1245), - [anon_sym__Alignas] = ACTIONS(1245), - [sym_primitive_type] = ACTIONS(1245), - [anon_sym_enum] = ACTIONS(1245), - [anon_sym_struct] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1245), - [anon_sym_if] = ACTIONS(1245), - [anon_sym_else] = ACTIONS(1245), - [anon_sym_switch] = ACTIONS(1245), - [anon_sym_case] = ACTIONS(1245), - [anon_sym_default] = ACTIONS(1245), - [anon_sym_while] = ACTIONS(1245), - [anon_sym_do] = ACTIONS(1245), - [anon_sym_for] = ACTIONS(1245), - [anon_sym_return] = ACTIONS(1245), - [anon_sym_break] = ACTIONS(1245), - [anon_sym_continue] = ACTIONS(1245), - [anon_sym_goto] = ACTIONS(1245), - [anon_sym___try] = ACTIONS(1245), - [anon_sym___leave] = ACTIONS(1245), - [anon_sym_DASH_DASH] = ACTIONS(1247), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_sizeof] = ACTIONS(1245), - [anon_sym___alignof__] = ACTIONS(1245), - [anon_sym___alignof] = ACTIONS(1245), - [anon_sym__alignof] = ACTIONS(1245), - [anon_sym_alignof] = ACTIONS(1245), - [anon_sym__Alignof] = ACTIONS(1245), - [anon_sym_offsetof] = ACTIONS(1245), - [anon_sym__Generic] = ACTIONS(1245), - [anon_sym_asm] = ACTIONS(1245), - [anon_sym___asm__] = ACTIONS(1245), - [sym_number_literal] = ACTIONS(1247), - [anon_sym_L_SQUOTE] = ACTIONS(1247), - [anon_sym_u_SQUOTE] = ACTIONS(1247), - [anon_sym_U_SQUOTE] = ACTIONS(1247), - [anon_sym_u8_SQUOTE] = ACTIONS(1247), - [anon_sym_SQUOTE] = ACTIONS(1247), - [anon_sym_L_DQUOTE] = ACTIONS(1247), - [anon_sym_u_DQUOTE] = ACTIONS(1247), - [anon_sym_U_DQUOTE] = ACTIONS(1247), - [anon_sym_u8_DQUOTE] = ACTIONS(1247), - [anon_sym_DQUOTE] = ACTIONS(1247), - [sym_true] = ACTIONS(1245), - [sym_false] = ACTIONS(1245), - [anon_sym_NULL] = ACTIONS(1245), - [anon_sym_nullptr] = ACTIONS(1245), - [sym_comment] = ACTIONS(3), + [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), }, [209] = { - [sym_identifier] = ACTIONS(1257), - [aux_sym_preproc_include_token1] = ACTIONS(1257), - [aux_sym_preproc_def_token1] = ACTIONS(1257), - [aux_sym_preproc_if_token1] = ACTIONS(1257), - [aux_sym_preproc_if_token2] = ACTIONS(1257), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1257), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1257), - [sym_preproc_directive] = ACTIONS(1257), - [anon_sym_LPAREN2] = ACTIONS(1259), - [anon_sym_BANG] = ACTIONS(1259), - [anon_sym_TILDE] = ACTIONS(1259), - [anon_sym_DASH] = ACTIONS(1257), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_STAR] = ACTIONS(1259), - [anon_sym_AMP] = ACTIONS(1259), - [anon_sym_SEMI] = ACTIONS(1259), - [anon_sym___extension__] = ACTIONS(1257), - [anon_sym_typedef] = ACTIONS(1257), - [anon_sym_extern] = ACTIONS(1257), - [anon_sym___attribute__] = ACTIONS(1257), - [anon_sym___scanf] = ACTIONS(1257), - [anon_sym___printf] = ACTIONS(1257), - [anon_sym___read_mostly] = ACTIONS(1257), - [anon_sym___must_hold] = ACTIONS(1257), - [anon_sym___ro_after_init] = ACTIONS(1257), - [anon_sym___noreturn] = ACTIONS(1257), - [anon_sym___cold] = ACTIONS(1257), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1259), - [anon_sym___declspec] = ACTIONS(1257), - [anon_sym___init] = ACTIONS(1257), - [anon_sym___exit] = ACTIONS(1257), - [anon_sym___cdecl] = ACTIONS(1257), - [anon_sym___clrcall] = ACTIONS(1257), - [anon_sym___stdcall] = ACTIONS(1257), - [anon_sym___fastcall] = ACTIONS(1257), - [anon_sym___thiscall] = ACTIONS(1257), - [anon_sym___vectorcall] = ACTIONS(1257), - [anon_sym_LBRACE] = ACTIONS(1259), - [anon_sym_signed] = ACTIONS(1257), - [anon_sym_unsigned] = ACTIONS(1257), - [anon_sym_long] = ACTIONS(1257), - [anon_sym_short] = ACTIONS(1257), - [anon_sym_static] = ACTIONS(1257), - [anon_sym_auto] = ACTIONS(1257), - [anon_sym_register] = ACTIONS(1257), - [anon_sym_inline] = ACTIONS(1257), - [anon_sym___inline] = ACTIONS(1257), - [anon_sym___inline__] = ACTIONS(1257), - [anon_sym___forceinline] = ACTIONS(1257), - [anon_sym_thread_local] = ACTIONS(1257), - [anon_sym___thread] = ACTIONS(1257), - [anon_sym_const] = ACTIONS(1257), - [anon_sym_constexpr] = ACTIONS(1257), - [anon_sym_volatile] = ACTIONS(1257), - [anon_sym_restrict] = ACTIONS(1257), - [anon_sym___restrict__] = ACTIONS(1257), - [anon_sym__Atomic] = ACTIONS(1257), - [anon_sym__Noreturn] = ACTIONS(1257), - [anon_sym_noreturn] = ACTIONS(1257), - [anon_sym_alignas] = ACTIONS(1257), - [anon_sym__Alignas] = ACTIONS(1257), - [sym_primitive_type] = ACTIONS(1257), - [anon_sym_enum] = ACTIONS(1257), - [anon_sym_struct] = ACTIONS(1257), - [anon_sym_union] = ACTIONS(1257), - [anon_sym_if] = ACTIONS(1257), - [anon_sym_else] = ACTIONS(1257), - [anon_sym_switch] = ACTIONS(1257), - [anon_sym_case] = ACTIONS(1257), - [anon_sym_default] = ACTIONS(1257), - [anon_sym_while] = ACTIONS(1257), - [anon_sym_do] = ACTIONS(1257), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_return] = ACTIONS(1257), - [anon_sym_break] = ACTIONS(1257), - [anon_sym_continue] = ACTIONS(1257), - [anon_sym_goto] = ACTIONS(1257), - [anon_sym___try] = ACTIONS(1257), - [anon_sym___leave] = ACTIONS(1257), - [anon_sym_DASH_DASH] = ACTIONS(1259), - [anon_sym_PLUS_PLUS] = ACTIONS(1259), - [anon_sym_sizeof] = ACTIONS(1257), - [anon_sym___alignof__] = ACTIONS(1257), - [anon_sym___alignof] = ACTIONS(1257), - [anon_sym__alignof] = ACTIONS(1257), - [anon_sym_alignof] = ACTIONS(1257), - [anon_sym__Alignof] = ACTIONS(1257), - [anon_sym_offsetof] = ACTIONS(1257), - [anon_sym__Generic] = ACTIONS(1257), - [anon_sym_asm] = ACTIONS(1257), - [anon_sym___asm__] = ACTIONS(1257), - [sym_number_literal] = ACTIONS(1259), - [anon_sym_L_SQUOTE] = ACTIONS(1259), - [anon_sym_u_SQUOTE] = ACTIONS(1259), - [anon_sym_U_SQUOTE] = ACTIONS(1259), - [anon_sym_u8_SQUOTE] = ACTIONS(1259), - [anon_sym_SQUOTE] = ACTIONS(1259), - [anon_sym_L_DQUOTE] = ACTIONS(1259), - [anon_sym_u_DQUOTE] = ACTIONS(1259), - [anon_sym_U_DQUOTE] = ACTIONS(1259), - [anon_sym_u8_DQUOTE] = ACTIONS(1259), - [anon_sym_DQUOTE] = ACTIONS(1259), - [sym_true] = ACTIONS(1257), - [sym_false] = ACTIONS(1257), - [anon_sym_NULL] = ACTIONS(1257), - [anon_sym_nullptr] = ACTIONS(1257), - [sym_comment] = ACTIONS(3), + [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), }, [210] = { - [sym_identifier] = ACTIONS(1189), - [aux_sym_preproc_include_token1] = ACTIONS(1189), - [aux_sym_preproc_def_token1] = ACTIONS(1189), - [aux_sym_preproc_if_token1] = ACTIONS(1189), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1189), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1189), - [sym_preproc_directive] = ACTIONS(1189), - [anon_sym_LPAREN2] = ACTIONS(1191), - [anon_sym_BANG] = ACTIONS(1191), - [anon_sym_TILDE] = ACTIONS(1191), - [anon_sym_DASH] = ACTIONS(1189), - [anon_sym_PLUS] = ACTIONS(1189), - [anon_sym_STAR] = ACTIONS(1191), - [anon_sym_AMP] = ACTIONS(1191), - [anon_sym_SEMI] = ACTIONS(1191), - [anon_sym___extension__] = ACTIONS(1189), - [anon_sym_typedef] = ACTIONS(1189), - [anon_sym_extern] = ACTIONS(1189), - [anon_sym___attribute__] = ACTIONS(1189), - [anon_sym___scanf] = ACTIONS(1189), - [anon_sym___printf] = ACTIONS(1189), - [anon_sym___read_mostly] = ACTIONS(1189), - [anon_sym___must_hold] = ACTIONS(1189), - [anon_sym___ro_after_init] = ACTIONS(1189), - [anon_sym___noreturn] = ACTIONS(1189), - [anon_sym___cold] = ACTIONS(1189), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1191), - [anon_sym___declspec] = ACTIONS(1189), - [anon_sym___init] = ACTIONS(1189), - [anon_sym___exit] = ACTIONS(1189), - [anon_sym___cdecl] = ACTIONS(1189), - [anon_sym___clrcall] = ACTIONS(1189), - [anon_sym___stdcall] = ACTIONS(1189), - [anon_sym___fastcall] = ACTIONS(1189), - [anon_sym___thiscall] = ACTIONS(1189), - [anon_sym___vectorcall] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_RBRACE] = ACTIONS(1191), - [anon_sym_signed] = ACTIONS(1189), - [anon_sym_unsigned] = ACTIONS(1189), - [anon_sym_long] = ACTIONS(1189), - [anon_sym_short] = ACTIONS(1189), - [anon_sym_static] = ACTIONS(1189), - [anon_sym_auto] = ACTIONS(1189), - [anon_sym_register] = ACTIONS(1189), - [anon_sym_inline] = ACTIONS(1189), - [anon_sym___inline] = ACTIONS(1189), - [anon_sym___inline__] = ACTIONS(1189), - [anon_sym___forceinline] = ACTIONS(1189), - [anon_sym_thread_local] = ACTIONS(1189), - [anon_sym___thread] = ACTIONS(1189), - [anon_sym_const] = ACTIONS(1189), - [anon_sym_constexpr] = ACTIONS(1189), - [anon_sym_volatile] = ACTIONS(1189), - [anon_sym_restrict] = ACTIONS(1189), - [anon_sym___restrict__] = ACTIONS(1189), - [anon_sym__Atomic] = ACTIONS(1189), - [anon_sym__Noreturn] = ACTIONS(1189), - [anon_sym_noreturn] = ACTIONS(1189), - [anon_sym_alignas] = ACTIONS(1189), - [anon_sym__Alignas] = ACTIONS(1189), - [sym_primitive_type] = ACTIONS(1189), - [anon_sym_enum] = ACTIONS(1189), - [anon_sym_struct] = ACTIONS(1189), - [anon_sym_union] = ACTIONS(1189), - [anon_sym_if] = ACTIONS(1189), - [anon_sym_else] = ACTIONS(1189), - [anon_sym_switch] = ACTIONS(1189), - [anon_sym_case] = ACTIONS(1189), - [anon_sym_default] = ACTIONS(1189), - [anon_sym_while] = ACTIONS(1189), - [anon_sym_do] = ACTIONS(1189), - [anon_sym_for] = ACTIONS(1189), - [anon_sym_return] = ACTIONS(1189), - [anon_sym_break] = ACTIONS(1189), - [anon_sym_continue] = ACTIONS(1189), - [anon_sym_goto] = ACTIONS(1189), - [anon_sym___try] = ACTIONS(1189), - [anon_sym___leave] = ACTIONS(1189), - [anon_sym_DASH_DASH] = ACTIONS(1191), - [anon_sym_PLUS_PLUS] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1189), - [anon_sym___alignof__] = ACTIONS(1189), - [anon_sym___alignof] = ACTIONS(1189), - [anon_sym__alignof] = ACTIONS(1189), - [anon_sym_alignof] = ACTIONS(1189), - [anon_sym__Alignof] = ACTIONS(1189), - [anon_sym_offsetof] = ACTIONS(1189), - [anon_sym__Generic] = ACTIONS(1189), - [anon_sym_asm] = ACTIONS(1189), - [anon_sym___asm__] = ACTIONS(1189), - [sym_number_literal] = ACTIONS(1191), - [anon_sym_L_SQUOTE] = ACTIONS(1191), - [anon_sym_u_SQUOTE] = ACTIONS(1191), - [anon_sym_U_SQUOTE] = ACTIONS(1191), - [anon_sym_u8_SQUOTE] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1191), - [anon_sym_L_DQUOTE] = ACTIONS(1191), - [anon_sym_u_DQUOTE] = ACTIONS(1191), - [anon_sym_U_DQUOTE] = ACTIONS(1191), - [anon_sym_u8_DQUOTE] = ACTIONS(1191), - [anon_sym_DQUOTE] = ACTIONS(1191), - [sym_true] = ACTIONS(1189), - [sym_false] = ACTIONS(1189), - [anon_sym_NULL] = ACTIONS(1189), - [anon_sym_nullptr] = ACTIONS(1189), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1334), + [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), + [sym_comment] = ACTIONS(5), }, [211] = { - [sym_identifier] = ACTIONS(1161), - [aux_sym_preproc_include_token1] = ACTIONS(1161), - [aux_sym_preproc_def_token1] = ACTIONS(1161), - [aux_sym_preproc_if_token1] = ACTIONS(1161), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1161), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1161), - [sym_preproc_directive] = ACTIONS(1161), - [anon_sym_LPAREN2] = ACTIONS(1163), - [anon_sym_BANG] = ACTIONS(1163), - [anon_sym_TILDE] = ACTIONS(1163), - [anon_sym_DASH] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_STAR] = ACTIONS(1163), - [anon_sym_AMP] = ACTIONS(1163), - [anon_sym_SEMI] = ACTIONS(1163), - [anon_sym___extension__] = ACTIONS(1161), - [anon_sym_typedef] = ACTIONS(1161), - [anon_sym_extern] = ACTIONS(1161), - [anon_sym___attribute__] = ACTIONS(1161), - [anon_sym___scanf] = ACTIONS(1161), - [anon_sym___printf] = ACTIONS(1161), - [anon_sym___read_mostly] = ACTIONS(1161), - [anon_sym___must_hold] = ACTIONS(1161), - [anon_sym___ro_after_init] = ACTIONS(1161), - [anon_sym___noreturn] = ACTIONS(1161), - [anon_sym___cold] = ACTIONS(1161), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1163), - [anon_sym___declspec] = ACTIONS(1161), - [anon_sym___init] = ACTIONS(1161), - [anon_sym___exit] = ACTIONS(1161), - [anon_sym___cdecl] = ACTIONS(1161), - [anon_sym___clrcall] = ACTIONS(1161), - [anon_sym___stdcall] = ACTIONS(1161), - [anon_sym___fastcall] = ACTIONS(1161), - [anon_sym___thiscall] = ACTIONS(1161), - [anon_sym___vectorcall] = ACTIONS(1161), - [anon_sym_LBRACE] = ACTIONS(1163), - [anon_sym_RBRACE] = ACTIONS(1163), - [anon_sym_signed] = ACTIONS(1161), - [anon_sym_unsigned] = ACTIONS(1161), - [anon_sym_long] = ACTIONS(1161), - [anon_sym_short] = ACTIONS(1161), - [anon_sym_static] = ACTIONS(1161), - [anon_sym_auto] = ACTIONS(1161), - [anon_sym_register] = ACTIONS(1161), - [anon_sym_inline] = ACTIONS(1161), - [anon_sym___inline] = ACTIONS(1161), - [anon_sym___inline__] = ACTIONS(1161), - [anon_sym___forceinline] = ACTIONS(1161), - [anon_sym_thread_local] = ACTIONS(1161), - [anon_sym___thread] = ACTIONS(1161), - [anon_sym_const] = ACTIONS(1161), - [anon_sym_constexpr] = ACTIONS(1161), - [anon_sym_volatile] = ACTIONS(1161), - [anon_sym_restrict] = ACTIONS(1161), - [anon_sym___restrict__] = ACTIONS(1161), - [anon_sym__Atomic] = ACTIONS(1161), - [anon_sym__Noreturn] = ACTIONS(1161), - [anon_sym_noreturn] = ACTIONS(1161), - [anon_sym_alignas] = ACTIONS(1161), - [anon_sym__Alignas] = ACTIONS(1161), - [sym_primitive_type] = ACTIONS(1161), - [anon_sym_enum] = ACTIONS(1161), - [anon_sym_struct] = ACTIONS(1161), - [anon_sym_union] = ACTIONS(1161), - [anon_sym_if] = ACTIONS(1161), - [anon_sym_else] = ACTIONS(1161), - [anon_sym_switch] = ACTIONS(1161), - [anon_sym_case] = ACTIONS(1161), - [anon_sym_default] = ACTIONS(1161), - [anon_sym_while] = ACTIONS(1161), - [anon_sym_do] = ACTIONS(1161), - [anon_sym_for] = ACTIONS(1161), - [anon_sym_return] = ACTIONS(1161), - [anon_sym_break] = ACTIONS(1161), - [anon_sym_continue] = ACTIONS(1161), - [anon_sym_goto] = ACTIONS(1161), - [anon_sym___try] = ACTIONS(1161), - [anon_sym___leave] = ACTIONS(1161), - [anon_sym_DASH_DASH] = ACTIONS(1163), - [anon_sym_PLUS_PLUS] = ACTIONS(1163), - [anon_sym_sizeof] = ACTIONS(1161), - [anon_sym___alignof__] = ACTIONS(1161), - [anon_sym___alignof] = ACTIONS(1161), - [anon_sym__alignof] = ACTIONS(1161), - [anon_sym_alignof] = ACTIONS(1161), - [anon_sym__Alignof] = ACTIONS(1161), - [anon_sym_offsetof] = ACTIONS(1161), - [anon_sym__Generic] = ACTIONS(1161), - [anon_sym_asm] = ACTIONS(1161), - [anon_sym___asm__] = ACTIONS(1161), - [sym_number_literal] = ACTIONS(1163), - [anon_sym_L_SQUOTE] = ACTIONS(1163), - [anon_sym_u_SQUOTE] = ACTIONS(1163), - [anon_sym_U_SQUOTE] = ACTIONS(1163), - [anon_sym_u8_SQUOTE] = ACTIONS(1163), - [anon_sym_SQUOTE] = ACTIONS(1163), - [anon_sym_L_DQUOTE] = ACTIONS(1163), - [anon_sym_u_DQUOTE] = ACTIONS(1163), - [anon_sym_U_DQUOTE] = ACTIONS(1163), - [anon_sym_u8_DQUOTE] = ACTIONS(1163), - [anon_sym_DQUOTE] = ACTIONS(1163), - [sym_true] = ACTIONS(1161), - [sym_false] = ACTIONS(1161), - [anon_sym_NULL] = ACTIONS(1161), - [anon_sym_nullptr] = ACTIONS(1161), - [sym_comment] = ACTIONS(3), + [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), }, [212] = { - [sym_identifier] = ACTIONS(1265), - [aux_sym_preproc_include_token1] = ACTIONS(1265), - [aux_sym_preproc_def_token1] = ACTIONS(1265), - [aux_sym_preproc_if_token1] = ACTIONS(1265), - [aux_sym_preproc_if_token2] = ACTIONS(1265), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1265), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1265), - [sym_preproc_directive] = ACTIONS(1265), - [anon_sym_LPAREN2] = ACTIONS(1267), - [anon_sym_BANG] = ACTIONS(1267), - [anon_sym_TILDE] = ACTIONS(1267), - [anon_sym_DASH] = ACTIONS(1265), - [anon_sym_PLUS] = ACTIONS(1265), - [anon_sym_STAR] = ACTIONS(1267), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_SEMI] = ACTIONS(1267), - [anon_sym___extension__] = ACTIONS(1265), - [anon_sym_typedef] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym___attribute__] = ACTIONS(1265), - [anon_sym___scanf] = ACTIONS(1265), - [anon_sym___printf] = ACTIONS(1265), - [anon_sym___read_mostly] = ACTIONS(1265), - [anon_sym___must_hold] = ACTIONS(1265), - [anon_sym___ro_after_init] = ACTIONS(1265), - [anon_sym___noreturn] = ACTIONS(1265), - [anon_sym___cold] = ACTIONS(1265), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1267), - [anon_sym___declspec] = ACTIONS(1265), - [anon_sym___init] = ACTIONS(1265), - [anon_sym___exit] = ACTIONS(1265), - [anon_sym___cdecl] = ACTIONS(1265), - [anon_sym___clrcall] = ACTIONS(1265), - [anon_sym___stdcall] = ACTIONS(1265), - [anon_sym___fastcall] = ACTIONS(1265), - [anon_sym___thiscall] = ACTIONS(1265), - [anon_sym___vectorcall] = ACTIONS(1265), - [anon_sym_LBRACE] = ACTIONS(1267), - [anon_sym_signed] = ACTIONS(1265), - [anon_sym_unsigned] = ACTIONS(1265), - [anon_sym_long] = ACTIONS(1265), - [anon_sym_short] = ACTIONS(1265), - [anon_sym_static] = ACTIONS(1265), - [anon_sym_auto] = ACTIONS(1265), - [anon_sym_register] = ACTIONS(1265), - [anon_sym_inline] = ACTIONS(1265), - [anon_sym___inline] = ACTIONS(1265), - [anon_sym___inline__] = ACTIONS(1265), - [anon_sym___forceinline] = ACTIONS(1265), - [anon_sym_thread_local] = ACTIONS(1265), - [anon_sym___thread] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_constexpr] = ACTIONS(1265), - [anon_sym_volatile] = ACTIONS(1265), - [anon_sym_restrict] = ACTIONS(1265), - [anon_sym___restrict__] = ACTIONS(1265), - [anon_sym__Atomic] = ACTIONS(1265), - [anon_sym__Noreturn] = ACTIONS(1265), - [anon_sym_noreturn] = ACTIONS(1265), - [anon_sym_alignas] = ACTIONS(1265), - [anon_sym__Alignas] = ACTIONS(1265), - [sym_primitive_type] = ACTIONS(1265), - [anon_sym_enum] = ACTIONS(1265), - [anon_sym_struct] = ACTIONS(1265), - [anon_sym_union] = ACTIONS(1265), - [anon_sym_if] = ACTIONS(1265), - [anon_sym_else] = ACTIONS(1265), - [anon_sym_switch] = ACTIONS(1265), - [anon_sym_case] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_while] = ACTIONS(1265), - [anon_sym_do] = ACTIONS(1265), - [anon_sym_for] = ACTIONS(1265), - [anon_sym_return] = ACTIONS(1265), - [anon_sym_break] = ACTIONS(1265), - [anon_sym_continue] = ACTIONS(1265), - [anon_sym_goto] = ACTIONS(1265), - [anon_sym___try] = ACTIONS(1265), - [anon_sym___leave] = ACTIONS(1265), - [anon_sym_DASH_DASH] = ACTIONS(1267), - [anon_sym_PLUS_PLUS] = ACTIONS(1267), - [anon_sym_sizeof] = ACTIONS(1265), - [anon_sym___alignof__] = ACTIONS(1265), - [anon_sym___alignof] = ACTIONS(1265), - [anon_sym__alignof] = ACTIONS(1265), - [anon_sym_alignof] = ACTIONS(1265), - [anon_sym__Alignof] = ACTIONS(1265), - [anon_sym_offsetof] = ACTIONS(1265), - [anon_sym__Generic] = ACTIONS(1265), - [anon_sym_asm] = ACTIONS(1265), - [anon_sym___asm__] = ACTIONS(1265), - [sym_number_literal] = ACTIONS(1267), - [anon_sym_L_SQUOTE] = ACTIONS(1267), - [anon_sym_u_SQUOTE] = ACTIONS(1267), - [anon_sym_U_SQUOTE] = ACTIONS(1267), - [anon_sym_u8_SQUOTE] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_L_DQUOTE] = ACTIONS(1267), - [anon_sym_u_DQUOTE] = ACTIONS(1267), - [anon_sym_U_DQUOTE] = ACTIONS(1267), - [anon_sym_u8_DQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1267), - [sym_true] = ACTIONS(1265), - [sym_false] = ACTIONS(1265), - [anon_sym_NULL] = ACTIONS(1265), - [anon_sym_nullptr] = ACTIONS(1265), - [sym_comment] = ACTIONS(3), + [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), + [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), }, [213] = { - [ts_builtin_sym_end] = ACTIONS(1199), - [sym_identifier] = ACTIONS(1197), - [aux_sym_preproc_include_token1] = ACTIONS(1197), - [aux_sym_preproc_def_token1] = ACTIONS(1197), - [aux_sym_preproc_if_token1] = ACTIONS(1197), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1197), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1197), - [sym_preproc_directive] = ACTIONS(1197), - [anon_sym_LPAREN2] = ACTIONS(1199), - [anon_sym_BANG] = ACTIONS(1199), - [anon_sym_TILDE] = ACTIONS(1199), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_AMP] = ACTIONS(1199), - [anon_sym_SEMI] = ACTIONS(1199), - [anon_sym___extension__] = ACTIONS(1197), - [anon_sym_typedef] = ACTIONS(1197), - [anon_sym_extern] = ACTIONS(1197), - [anon_sym___attribute__] = ACTIONS(1197), - [anon_sym___scanf] = ACTIONS(1197), - [anon_sym___printf] = ACTIONS(1197), - [anon_sym___read_mostly] = ACTIONS(1197), - [anon_sym___must_hold] = ACTIONS(1197), - [anon_sym___ro_after_init] = ACTIONS(1197), - [anon_sym___noreturn] = ACTIONS(1197), - [anon_sym___cold] = ACTIONS(1197), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1199), - [anon_sym___declspec] = ACTIONS(1197), - [anon_sym___init] = ACTIONS(1197), - [anon_sym___exit] = ACTIONS(1197), - [anon_sym___cdecl] = ACTIONS(1197), - [anon_sym___clrcall] = ACTIONS(1197), - [anon_sym___stdcall] = ACTIONS(1197), - [anon_sym___fastcall] = ACTIONS(1197), - [anon_sym___thiscall] = ACTIONS(1197), - [anon_sym___vectorcall] = ACTIONS(1197), - [anon_sym_LBRACE] = ACTIONS(1199), - [anon_sym_signed] = ACTIONS(1197), - [anon_sym_unsigned] = ACTIONS(1197), - [anon_sym_long] = ACTIONS(1197), - [anon_sym_short] = ACTIONS(1197), - [anon_sym_static] = ACTIONS(1197), - [anon_sym_auto] = ACTIONS(1197), - [anon_sym_register] = ACTIONS(1197), - [anon_sym_inline] = ACTIONS(1197), - [anon_sym___inline] = ACTIONS(1197), - [anon_sym___inline__] = ACTIONS(1197), - [anon_sym___forceinline] = ACTIONS(1197), - [anon_sym_thread_local] = ACTIONS(1197), - [anon_sym___thread] = ACTIONS(1197), - [anon_sym_const] = ACTIONS(1197), - [anon_sym_constexpr] = ACTIONS(1197), - [anon_sym_volatile] = ACTIONS(1197), - [anon_sym_restrict] = ACTIONS(1197), - [anon_sym___restrict__] = ACTIONS(1197), - [anon_sym__Atomic] = ACTIONS(1197), - [anon_sym__Noreturn] = ACTIONS(1197), - [anon_sym_noreturn] = ACTIONS(1197), - [anon_sym_alignas] = ACTIONS(1197), - [anon_sym__Alignas] = ACTIONS(1197), - [sym_primitive_type] = ACTIONS(1197), - [anon_sym_enum] = ACTIONS(1197), - [anon_sym_struct] = ACTIONS(1197), - [anon_sym_union] = ACTIONS(1197), - [anon_sym_if] = ACTIONS(1197), - [anon_sym_else] = ACTIONS(1197), - [anon_sym_switch] = ACTIONS(1197), - [anon_sym_case] = ACTIONS(1197), - [anon_sym_default] = ACTIONS(1197), - [anon_sym_while] = ACTIONS(1197), - [anon_sym_do] = ACTIONS(1197), - [anon_sym_for] = ACTIONS(1197), - [anon_sym_return] = ACTIONS(1197), - [anon_sym_break] = ACTIONS(1197), - [anon_sym_continue] = ACTIONS(1197), - [anon_sym_goto] = ACTIONS(1197), - [anon_sym___try] = ACTIONS(1197), - [anon_sym___leave] = ACTIONS(1197), - [anon_sym_DASH_DASH] = ACTIONS(1199), - [anon_sym_PLUS_PLUS] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1197), - [anon_sym___alignof__] = ACTIONS(1197), - [anon_sym___alignof] = ACTIONS(1197), - [anon_sym__alignof] = ACTIONS(1197), - [anon_sym_alignof] = ACTIONS(1197), - [anon_sym__Alignof] = ACTIONS(1197), - [anon_sym_offsetof] = ACTIONS(1197), - [anon_sym__Generic] = ACTIONS(1197), - [anon_sym_asm] = ACTIONS(1197), - [anon_sym___asm__] = ACTIONS(1197), - [sym_number_literal] = ACTIONS(1199), - [anon_sym_L_SQUOTE] = ACTIONS(1199), - [anon_sym_u_SQUOTE] = ACTIONS(1199), - [anon_sym_U_SQUOTE] = ACTIONS(1199), - [anon_sym_u8_SQUOTE] = ACTIONS(1199), - [anon_sym_SQUOTE] = ACTIONS(1199), - [anon_sym_L_DQUOTE] = ACTIONS(1199), - [anon_sym_u_DQUOTE] = ACTIONS(1199), - [anon_sym_U_DQUOTE] = ACTIONS(1199), - [anon_sym_u8_DQUOTE] = ACTIONS(1199), - [anon_sym_DQUOTE] = ACTIONS(1199), - [sym_true] = ACTIONS(1197), - [sym_false] = ACTIONS(1197), - [anon_sym_NULL] = ACTIONS(1197), - [anon_sym_nullptr] = ACTIONS(1197), - [sym_comment] = ACTIONS(3), + [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), }, [214] = { - [ts_builtin_sym_end] = ACTIONS(1231), - [sym_identifier] = ACTIONS(1229), - [aux_sym_preproc_include_token1] = ACTIONS(1229), - [aux_sym_preproc_def_token1] = ACTIONS(1229), - [aux_sym_preproc_if_token1] = ACTIONS(1229), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1229), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1229), - [sym_preproc_directive] = ACTIONS(1229), - [anon_sym_LPAREN2] = ACTIONS(1231), - [anon_sym_BANG] = ACTIONS(1231), - [anon_sym_TILDE] = ACTIONS(1231), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_AMP] = ACTIONS(1231), - [anon_sym_SEMI] = ACTIONS(1231), - [anon_sym___extension__] = ACTIONS(1229), - [anon_sym_typedef] = ACTIONS(1229), - [anon_sym_extern] = ACTIONS(1229), - [anon_sym___attribute__] = ACTIONS(1229), - [anon_sym___scanf] = ACTIONS(1229), - [anon_sym___printf] = ACTIONS(1229), - [anon_sym___read_mostly] = ACTIONS(1229), - [anon_sym___must_hold] = ACTIONS(1229), - [anon_sym___ro_after_init] = ACTIONS(1229), - [anon_sym___noreturn] = ACTIONS(1229), - [anon_sym___cold] = ACTIONS(1229), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1231), - [anon_sym___declspec] = ACTIONS(1229), - [anon_sym___init] = ACTIONS(1229), - [anon_sym___exit] = ACTIONS(1229), - [anon_sym___cdecl] = ACTIONS(1229), - [anon_sym___clrcall] = ACTIONS(1229), - [anon_sym___stdcall] = ACTIONS(1229), - [anon_sym___fastcall] = ACTIONS(1229), - [anon_sym___thiscall] = ACTIONS(1229), - [anon_sym___vectorcall] = ACTIONS(1229), - [anon_sym_LBRACE] = ACTIONS(1231), - [anon_sym_signed] = ACTIONS(1229), - [anon_sym_unsigned] = ACTIONS(1229), - [anon_sym_long] = ACTIONS(1229), - [anon_sym_short] = ACTIONS(1229), - [anon_sym_static] = ACTIONS(1229), - [anon_sym_auto] = ACTIONS(1229), - [anon_sym_register] = ACTIONS(1229), - [anon_sym_inline] = ACTIONS(1229), - [anon_sym___inline] = ACTIONS(1229), - [anon_sym___inline__] = ACTIONS(1229), - [anon_sym___forceinline] = ACTIONS(1229), - [anon_sym_thread_local] = ACTIONS(1229), - [anon_sym___thread] = ACTIONS(1229), - [anon_sym_const] = ACTIONS(1229), - [anon_sym_constexpr] = ACTIONS(1229), - [anon_sym_volatile] = ACTIONS(1229), - [anon_sym_restrict] = ACTIONS(1229), - [anon_sym___restrict__] = ACTIONS(1229), - [anon_sym__Atomic] = ACTIONS(1229), - [anon_sym__Noreturn] = ACTIONS(1229), - [anon_sym_noreturn] = ACTIONS(1229), - [anon_sym_alignas] = ACTIONS(1229), - [anon_sym__Alignas] = ACTIONS(1229), - [sym_primitive_type] = ACTIONS(1229), - [anon_sym_enum] = ACTIONS(1229), - [anon_sym_struct] = ACTIONS(1229), - [anon_sym_union] = ACTIONS(1229), - [anon_sym_if] = ACTIONS(1229), - [anon_sym_else] = ACTIONS(1229), - [anon_sym_switch] = ACTIONS(1229), - [anon_sym_case] = ACTIONS(1229), - [anon_sym_default] = ACTIONS(1229), - [anon_sym_while] = ACTIONS(1229), - [anon_sym_do] = ACTIONS(1229), - [anon_sym_for] = ACTIONS(1229), - [anon_sym_return] = ACTIONS(1229), - [anon_sym_break] = ACTIONS(1229), - [anon_sym_continue] = ACTIONS(1229), - [anon_sym_goto] = ACTIONS(1229), - [anon_sym___try] = ACTIONS(1229), - [anon_sym___leave] = ACTIONS(1229), - [anon_sym_DASH_DASH] = ACTIONS(1231), - [anon_sym_PLUS_PLUS] = ACTIONS(1231), - [anon_sym_sizeof] = ACTIONS(1229), - [anon_sym___alignof__] = ACTIONS(1229), - [anon_sym___alignof] = ACTIONS(1229), - [anon_sym__alignof] = ACTIONS(1229), - [anon_sym_alignof] = ACTIONS(1229), - [anon_sym__Alignof] = ACTIONS(1229), - [anon_sym_offsetof] = ACTIONS(1229), - [anon_sym__Generic] = ACTIONS(1229), - [anon_sym_asm] = ACTIONS(1229), - [anon_sym___asm__] = ACTIONS(1229), - [sym_number_literal] = ACTIONS(1231), - [anon_sym_L_SQUOTE] = ACTIONS(1231), - [anon_sym_u_SQUOTE] = ACTIONS(1231), - [anon_sym_U_SQUOTE] = ACTIONS(1231), - [anon_sym_u8_SQUOTE] = ACTIONS(1231), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_L_DQUOTE] = ACTIONS(1231), - [anon_sym_u_DQUOTE] = ACTIONS(1231), - [anon_sym_U_DQUOTE] = ACTIONS(1231), - [anon_sym_u8_DQUOTE] = ACTIONS(1231), - [anon_sym_DQUOTE] = ACTIONS(1231), - [sym_true] = ACTIONS(1229), - [sym_false] = ACTIONS(1229), - [anon_sym_NULL] = ACTIONS(1229), - [anon_sym_nullptr] = ACTIONS(1229), - [sym_comment] = ACTIONS(3), + [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), }, [215] = { - [ts_builtin_sym_end] = ACTIONS(1195), - [sym_identifier] = ACTIONS(1193), - [aux_sym_preproc_include_token1] = ACTIONS(1193), - [aux_sym_preproc_def_token1] = ACTIONS(1193), - [aux_sym_preproc_if_token1] = ACTIONS(1193), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1193), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1193), - [sym_preproc_directive] = ACTIONS(1193), - [anon_sym_LPAREN2] = ACTIONS(1195), - [anon_sym_BANG] = ACTIONS(1195), - [anon_sym_TILDE] = ACTIONS(1195), - [anon_sym_DASH] = ACTIONS(1193), - [anon_sym_PLUS] = ACTIONS(1193), - [anon_sym_STAR] = ACTIONS(1195), - [anon_sym_AMP] = ACTIONS(1195), - [anon_sym_SEMI] = ACTIONS(1195), - [anon_sym___extension__] = ACTIONS(1193), - [anon_sym_typedef] = ACTIONS(1193), - [anon_sym_extern] = ACTIONS(1193), - [anon_sym___attribute__] = ACTIONS(1193), - [anon_sym___scanf] = ACTIONS(1193), - [anon_sym___printf] = ACTIONS(1193), - [anon_sym___read_mostly] = ACTIONS(1193), - [anon_sym___must_hold] = ACTIONS(1193), - [anon_sym___ro_after_init] = ACTIONS(1193), - [anon_sym___noreturn] = ACTIONS(1193), - [anon_sym___cold] = ACTIONS(1193), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1195), - [anon_sym___declspec] = ACTIONS(1193), - [anon_sym___init] = ACTIONS(1193), - [anon_sym___exit] = ACTIONS(1193), - [anon_sym___cdecl] = ACTIONS(1193), - [anon_sym___clrcall] = ACTIONS(1193), - [anon_sym___stdcall] = ACTIONS(1193), - [anon_sym___fastcall] = ACTIONS(1193), - [anon_sym___thiscall] = ACTIONS(1193), - [anon_sym___vectorcall] = ACTIONS(1193), - [anon_sym_LBRACE] = ACTIONS(1195), - [anon_sym_signed] = ACTIONS(1193), - [anon_sym_unsigned] = ACTIONS(1193), - [anon_sym_long] = ACTIONS(1193), - [anon_sym_short] = ACTIONS(1193), - [anon_sym_static] = ACTIONS(1193), - [anon_sym_auto] = ACTIONS(1193), - [anon_sym_register] = ACTIONS(1193), - [anon_sym_inline] = ACTIONS(1193), - [anon_sym___inline] = ACTIONS(1193), - [anon_sym___inline__] = ACTIONS(1193), - [anon_sym___forceinline] = ACTIONS(1193), - [anon_sym_thread_local] = ACTIONS(1193), - [anon_sym___thread] = ACTIONS(1193), - [anon_sym_const] = ACTIONS(1193), - [anon_sym_constexpr] = ACTIONS(1193), - [anon_sym_volatile] = ACTIONS(1193), - [anon_sym_restrict] = ACTIONS(1193), - [anon_sym___restrict__] = ACTIONS(1193), - [anon_sym__Atomic] = ACTIONS(1193), - [anon_sym__Noreturn] = ACTIONS(1193), - [anon_sym_noreturn] = ACTIONS(1193), - [anon_sym_alignas] = ACTIONS(1193), - [anon_sym__Alignas] = ACTIONS(1193), - [sym_primitive_type] = ACTIONS(1193), - [anon_sym_enum] = ACTIONS(1193), - [anon_sym_struct] = ACTIONS(1193), - [anon_sym_union] = ACTIONS(1193), - [anon_sym_if] = ACTIONS(1193), - [anon_sym_else] = ACTIONS(1193), - [anon_sym_switch] = ACTIONS(1193), - [anon_sym_case] = ACTIONS(1193), - [anon_sym_default] = ACTIONS(1193), - [anon_sym_while] = ACTIONS(1193), - [anon_sym_do] = ACTIONS(1193), - [anon_sym_for] = ACTIONS(1193), - [anon_sym_return] = ACTIONS(1193), - [anon_sym_break] = ACTIONS(1193), - [anon_sym_continue] = ACTIONS(1193), - [anon_sym_goto] = ACTIONS(1193), - [anon_sym___try] = ACTIONS(1193), - [anon_sym___leave] = ACTIONS(1193), - [anon_sym_DASH_DASH] = ACTIONS(1195), - [anon_sym_PLUS_PLUS] = ACTIONS(1195), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym___alignof__] = ACTIONS(1193), - [anon_sym___alignof] = ACTIONS(1193), - [anon_sym__alignof] = ACTIONS(1193), - [anon_sym_alignof] = ACTIONS(1193), - [anon_sym__Alignof] = ACTIONS(1193), - [anon_sym_offsetof] = ACTIONS(1193), - [anon_sym__Generic] = ACTIONS(1193), - [anon_sym_asm] = ACTIONS(1193), - [anon_sym___asm__] = ACTIONS(1193), - [sym_number_literal] = ACTIONS(1195), - [anon_sym_L_SQUOTE] = ACTIONS(1195), - [anon_sym_u_SQUOTE] = ACTIONS(1195), - [anon_sym_U_SQUOTE] = ACTIONS(1195), - [anon_sym_u8_SQUOTE] = ACTIONS(1195), - [anon_sym_SQUOTE] = ACTIONS(1195), - [anon_sym_L_DQUOTE] = ACTIONS(1195), - [anon_sym_u_DQUOTE] = ACTIONS(1195), - [anon_sym_U_DQUOTE] = ACTIONS(1195), - [anon_sym_u8_DQUOTE] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1195), - [sym_true] = ACTIONS(1193), - [sym_false] = ACTIONS(1193), - [anon_sym_NULL] = ACTIONS(1193), - [anon_sym_nullptr] = ACTIONS(1193), - [sym_comment] = ACTIONS(3), + [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), + [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), }, [216] = { - [sym_identifier] = ACTIONS(1281), - [aux_sym_preproc_include_token1] = ACTIONS(1281), - [aux_sym_preproc_def_token1] = ACTIONS(1281), - [aux_sym_preproc_if_token1] = ACTIONS(1281), - [aux_sym_preproc_if_token2] = ACTIONS(1281), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1281), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1281), - [sym_preproc_directive] = ACTIONS(1281), - [anon_sym_LPAREN2] = ACTIONS(1283), - [anon_sym_BANG] = ACTIONS(1283), - [anon_sym_TILDE] = ACTIONS(1283), - [anon_sym_DASH] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1281), - [anon_sym_STAR] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SEMI] = ACTIONS(1283), - [anon_sym___extension__] = ACTIONS(1281), - [anon_sym_typedef] = ACTIONS(1281), - [anon_sym_extern] = ACTIONS(1281), - [anon_sym___attribute__] = ACTIONS(1281), - [anon_sym___scanf] = ACTIONS(1281), - [anon_sym___printf] = ACTIONS(1281), - [anon_sym___read_mostly] = ACTIONS(1281), - [anon_sym___must_hold] = ACTIONS(1281), - [anon_sym___ro_after_init] = ACTIONS(1281), - [anon_sym___noreturn] = ACTIONS(1281), - [anon_sym___cold] = ACTIONS(1281), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1283), - [anon_sym___declspec] = ACTIONS(1281), - [anon_sym___init] = ACTIONS(1281), - [anon_sym___exit] = ACTIONS(1281), - [anon_sym___cdecl] = ACTIONS(1281), - [anon_sym___clrcall] = ACTIONS(1281), - [anon_sym___stdcall] = ACTIONS(1281), - [anon_sym___fastcall] = ACTIONS(1281), - [anon_sym___thiscall] = ACTIONS(1281), - [anon_sym___vectorcall] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(1283), - [anon_sym_signed] = ACTIONS(1281), - [anon_sym_unsigned] = ACTIONS(1281), - [anon_sym_long] = ACTIONS(1281), - [anon_sym_short] = ACTIONS(1281), - [anon_sym_static] = ACTIONS(1281), - [anon_sym_auto] = ACTIONS(1281), - [anon_sym_register] = ACTIONS(1281), - [anon_sym_inline] = ACTIONS(1281), - [anon_sym___inline] = ACTIONS(1281), - [anon_sym___inline__] = ACTIONS(1281), - [anon_sym___forceinline] = ACTIONS(1281), - [anon_sym_thread_local] = ACTIONS(1281), - [anon_sym___thread] = ACTIONS(1281), - [anon_sym_const] = ACTIONS(1281), - [anon_sym_constexpr] = ACTIONS(1281), - [anon_sym_volatile] = ACTIONS(1281), - [anon_sym_restrict] = ACTIONS(1281), - [anon_sym___restrict__] = ACTIONS(1281), - [anon_sym__Atomic] = ACTIONS(1281), - [anon_sym__Noreturn] = ACTIONS(1281), - [anon_sym_noreturn] = ACTIONS(1281), - [anon_sym_alignas] = ACTIONS(1281), - [anon_sym__Alignas] = ACTIONS(1281), - [sym_primitive_type] = ACTIONS(1281), - [anon_sym_enum] = ACTIONS(1281), - [anon_sym_struct] = ACTIONS(1281), - [anon_sym_union] = ACTIONS(1281), - [anon_sym_if] = ACTIONS(1281), - [anon_sym_else] = ACTIONS(1281), - [anon_sym_switch] = ACTIONS(1281), - [anon_sym_case] = ACTIONS(1281), - [anon_sym_default] = ACTIONS(1281), - [anon_sym_while] = ACTIONS(1281), - [anon_sym_do] = ACTIONS(1281), - [anon_sym_for] = ACTIONS(1281), - [anon_sym_return] = ACTIONS(1281), - [anon_sym_break] = ACTIONS(1281), - [anon_sym_continue] = ACTIONS(1281), - [anon_sym_goto] = ACTIONS(1281), - [anon_sym___try] = ACTIONS(1281), - [anon_sym___leave] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1283), - [anon_sym_PLUS_PLUS] = ACTIONS(1283), - [anon_sym_sizeof] = ACTIONS(1281), - [anon_sym___alignof__] = ACTIONS(1281), - [anon_sym___alignof] = ACTIONS(1281), - [anon_sym__alignof] = ACTIONS(1281), - [anon_sym_alignof] = ACTIONS(1281), - [anon_sym__Alignof] = ACTIONS(1281), - [anon_sym_offsetof] = ACTIONS(1281), - [anon_sym__Generic] = ACTIONS(1281), - [anon_sym_asm] = ACTIONS(1281), - [anon_sym___asm__] = ACTIONS(1281), - [sym_number_literal] = ACTIONS(1283), - [anon_sym_L_SQUOTE] = ACTIONS(1283), - [anon_sym_u_SQUOTE] = ACTIONS(1283), - [anon_sym_U_SQUOTE] = ACTIONS(1283), - [anon_sym_u8_SQUOTE] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1283), - [anon_sym_L_DQUOTE] = ACTIONS(1283), - [anon_sym_u_DQUOTE] = ACTIONS(1283), - [anon_sym_U_DQUOTE] = ACTIONS(1283), - [anon_sym_u8_DQUOTE] = ACTIONS(1283), - [anon_sym_DQUOTE] = ACTIONS(1283), - [sym_true] = ACTIONS(1281), - [sym_false] = ACTIONS(1281), - [anon_sym_NULL] = ACTIONS(1281), - [anon_sym_nullptr] = ACTIONS(1281), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1334), + [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), + [sym_comment] = ACTIONS(5), }, [217] = { - [sym_identifier] = ACTIONS(1285), - [aux_sym_preproc_include_token1] = ACTIONS(1285), - [aux_sym_preproc_def_token1] = ACTIONS(1285), - [aux_sym_preproc_if_token1] = ACTIONS(1285), - [aux_sym_preproc_if_token2] = ACTIONS(1285), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1285), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1285), - [sym_preproc_directive] = ACTIONS(1285), - [anon_sym_LPAREN2] = ACTIONS(1287), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_TILDE] = ACTIONS(1287), - [anon_sym_DASH] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1287), - [anon_sym_AMP] = ACTIONS(1287), - [anon_sym_SEMI] = ACTIONS(1287), - [anon_sym___extension__] = ACTIONS(1285), - [anon_sym_typedef] = ACTIONS(1285), - [anon_sym_extern] = ACTIONS(1285), - [anon_sym___attribute__] = ACTIONS(1285), - [anon_sym___scanf] = ACTIONS(1285), - [anon_sym___printf] = ACTIONS(1285), - [anon_sym___read_mostly] = ACTIONS(1285), - [anon_sym___must_hold] = ACTIONS(1285), - [anon_sym___ro_after_init] = ACTIONS(1285), - [anon_sym___noreturn] = ACTIONS(1285), - [anon_sym___cold] = ACTIONS(1285), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1287), - [anon_sym___declspec] = ACTIONS(1285), - [anon_sym___init] = ACTIONS(1285), - [anon_sym___exit] = ACTIONS(1285), - [anon_sym___cdecl] = ACTIONS(1285), - [anon_sym___clrcall] = ACTIONS(1285), - [anon_sym___stdcall] = ACTIONS(1285), - [anon_sym___fastcall] = ACTIONS(1285), - [anon_sym___thiscall] = ACTIONS(1285), - [anon_sym___vectorcall] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1287), - [anon_sym_signed] = ACTIONS(1285), - [anon_sym_unsigned] = ACTIONS(1285), - [anon_sym_long] = ACTIONS(1285), - [anon_sym_short] = ACTIONS(1285), - [anon_sym_static] = ACTIONS(1285), - [anon_sym_auto] = ACTIONS(1285), - [anon_sym_register] = ACTIONS(1285), - [anon_sym_inline] = ACTIONS(1285), - [anon_sym___inline] = ACTIONS(1285), - [anon_sym___inline__] = ACTIONS(1285), - [anon_sym___forceinline] = ACTIONS(1285), - [anon_sym_thread_local] = ACTIONS(1285), - [anon_sym___thread] = ACTIONS(1285), - [anon_sym_const] = ACTIONS(1285), - [anon_sym_constexpr] = ACTIONS(1285), - [anon_sym_volatile] = ACTIONS(1285), - [anon_sym_restrict] = ACTIONS(1285), - [anon_sym___restrict__] = ACTIONS(1285), - [anon_sym__Atomic] = ACTIONS(1285), - [anon_sym__Noreturn] = ACTIONS(1285), - [anon_sym_noreturn] = ACTIONS(1285), - [anon_sym_alignas] = ACTIONS(1285), - [anon_sym__Alignas] = ACTIONS(1285), - [sym_primitive_type] = ACTIONS(1285), - [anon_sym_enum] = ACTIONS(1285), - [anon_sym_struct] = ACTIONS(1285), - [anon_sym_union] = ACTIONS(1285), - [anon_sym_if] = ACTIONS(1285), - [anon_sym_else] = ACTIONS(1285), - [anon_sym_switch] = ACTIONS(1285), - [anon_sym_case] = ACTIONS(1285), - [anon_sym_default] = ACTIONS(1285), - [anon_sym_while] = ACTIONS(1285), - [anon_sym_do] = ACTIONS(1285), - [anon_sym_for] = ACTIONS(1285), - [anon_sym_return] = ACTIONS(1285), - [anon_sym_break] = ACTIONS(1285), - [anon_sym_continue] = ACTIONS(1285), - [anon_sym_goto] = ACTIONS(1285), - [anon_sym___try] = ACTIONS(1285), - [anon_sym___leave] = ACTIONS(1285), - [anon_sym_DASH_DASH] = ACTIONS(1287), - [anon_sym_PLUS_PLUS] = ACTIONS(1287), - [anon_sym_sizeof] = ACTIONS(1285), - [anon_sym___alignof__] = ACTIONS(1285), - [anon_sym___alignof] = ACTIONS(1285), - [anon_sym__alignof] = ACTIONS(1285), - [anon_sym_alignof] = ACTIONS(1285), - [anon_sym__Alignof] = ACTIONS(1285), - [anon_sym_offsetof] = ACTIONS(1285), - [anon_sym__Generic] = ACTIONS(1285), - [anon_sym_asm] = ACTIONS(1285), - [anon_sym___asm__] = ACTIONS(1285), - [sym_number_literal] = ACTIONS(1287), - [anon_sym_L_SQUOTE] = ACTIONS(1287), - [anon_sym_u_SQUOTE] = ACTIONS(1287), - [anon_sym_U_SQUOTE] = ACTIONS(1287), - [anon_sym_u8_SQUOTE] = ACTIONS(1287), - [anon_sym_SQUOTE] = ACTIONS(1287), - [anon_sym_L_DQUOTE] = ACTIONS(1287), - [anon_sym_u_DQUOTE] = ACTIONS(1287), - [anon_sym_U_DQUOTE] = ACTIONS(1287), - [anon_sym_u8_DQUOTE] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1287), - [sym_true] = ACTIONS(1285), - [sym_false] = ACTIONS(1285), - [anon_sym_NULL] = ACTIONS(1285), - [anon_sym_nullptr] = ACTIONS(1285), - [sym_comment] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1352), + [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_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), }, [218] = { - [sym_identifier] = ACTIONS(1203), - [aux_sym_preproc_include_token1] = ACTIONS(1203), - [aux_sym_preproc_def_token1] = ACTIONS(1203), - [aux_sym_preproc_if_token1] = ACTIONS(1203), - [aux_sym_preproc_if_token2] = ACTIONS(1203), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1203), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1203), - [sym_preproc_directive] = ACTIONS(1203), - [anon_sym_LPAREN2] = ACTIONS(1201), - [anon_sym_BANG] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1201), - [anon_sym_DASH] = ACTIONS(1203), - [anon_sym_PLUS] = ACTIONS(1203), - [anon_sym_STAR] = ACTIONS(1201), - [anon_sym_AMP] = ACTIONS(1201), - [anon_sym_SEMI] = ACTIONS(1201), - [anon_sym___extension__] = ACTIONS(1203), - [anon_sym_typedef] = ACTIONS(1203), - [anon_sym_extern] = ACTIONS(1203), - [anon_sym___attribute__] = ACTIONS(1203), - [anon_sym___scanf] = ACTIONS(1203), - [anon_sym___printf] = ACTIONS(1203), - [anon_sym___read_mostly] = ACTIONS(1203), - [anon_sym___must_hold] = ACTIONS(1203), - [anon_sym___ro_after_init] = ACTIONS(1203), - [anon_sym___noreturn] = ACTIONS(1203), - [anon_sym___cold] = ACTIONS(1203), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1201), - [anon_sym___declspec] = ACTIONS(1203), - [anon_sym___init] = ACTIONS(1203), - [anon_sym___exit] = ACTIONS(1203), - [anon_sym___cdecl] = ACTIONS(1203), - [anon_sym___clrcall] = ACTIONS(1203), - [anon_sym___stdcall] = ACTIONS(1203), - [anon_sym___fastcall] = ACTIONS(1203), - [anon_sym___thiscall] = ACTIONS(1203), - [anon_sym___vectorcall] = ACTIONS(1203), - [anon_sym_LBRACE] = ACTIONS(1201), - [anon_sym_signed] = ACTIONS(1203), - [anon_sym_unsigned] = ACTIONS(1203), - [anon_sym_long] = ACTIONS(1203), - [anon_sym_short] = ACTIONS(1203), - [anon_sym_static] = ACTIONS(1203), - [anon_sym_auto] = ACTIONS(1203), - [anon_sym_register] = ACTIONS(1203), - [anon_sym_inline] = ACTIONS(1203), - [anon_sym___inline] = ACTIONS(1203), - [anon_sym___inline__] = ACTIONS(1203), - [anon_sym___forceinline] = ACTIONS(1203), - [anon_sym_thread_local] = ACTIONS(1203), - [anon_sym___thread] = ACTIONS(1203), - [anon_sym_const] = ACTIONS(1203), - [anon_sym_constexpr] = ACTIONS(1203), - [anon_sym_volatile] = ACTIONS(1203), - [anon_sym_restrict] = ACTIONS(1203), - [anon_sym___restrict__] = ACTIONS(1203), - [anon_sym__Atomic] = ACTIONS(1203), - [anon_sym__Noreturn] = ACTIONS(1203), - [anon_sym_noreturn] = ACTIONS(1203), - [anon_sym_alignas] = ACTIONS(1203), - [anon_sym__Alignas] = ACTIONS(1203), - [sym_primitive_type] = ACTIONS(1203), - [anon_sym_enum] = ACTIONS(1203), - [anon_sym_struct] = ACTIONS(1203), - [anon_sym_union] = ACTIONS(1203), - [anon_sym_if] = ACTIONS(1203), - [anon_sym_else] = ACTIONS(1203), - [anon_sym_switch] = ACTIONS(1203), - [anon_sym_case] = ACTIONS(1203), - [anon_sym_default] = ACTIONS(1203), - [anon_sym_while] = ACTIONS(1203), - [anon_sym_do] = ACTIONS(1203), - [anon_sym_for] = ACTIONS(1203), - [anon_sym_return] = ACTIONS(1203), - [anon_sym_break] = ACTIONS(1203), - [anon_sym_continue] = ACTIONS(1203), - [anon_sym_goto] = ACTIONS(1203), - [anon_sym___try] = ACTIONS(1203), - [anon_sym___leave] = ACTIONS(1203), - [anon_sym_DASH_DASH] = ACTIONS(1201), - [anon_sym_PLUS_PLUS] = ACTIONS(1201), - [anon_sym_sizeof] = ACTIONS(1203), - [anon_sym___alignof__] = ACTIONS(1203), - [anon_sym___alignof] = ACTIONS(1203), - [anon_sym__alignof] = ACTIONS(1203), - [anon_sym_alignof] = ACTIONS(1203), - [anon_sym__Alignof] = ACTIONS(1203), - [anon_sym_offsetof] = ACTIONS(1203), - [anon_sym__Generic] = ACTIONS(1203), - [anon_sym_asm] = ACTIONS(1203), - [anon_sym___asm__] = ACTIONS(1203), - [sym_number_literal] = ACTIONS(1201), - [anon_sym_L_SQUOTE] = ACTIONS(1201), - [anon_sym_u_SQUOTE] = ACTIONS(1201), - [anon_sym_U_SQUOTE] = ACTIONS(1201), - [anon_sym_u8_SQUOTE] = ACTIONS(1201), - [anon_sym_SQUOTE] = ACTIONS(1201), - [anon_sym_L_DQUOTE] = ACTIONS(1201), - [anon_sym_u_DQUOTE] = ACTIONS(1201), - [anon_sym_U_DQUOTE] = ACTIONS(1201), - [anon_sym_u8_DQUOTE] = ACTIONS(1201), - [anon_sym_DQUOTE] = ACTIONS(1201), - [sym_true] = ACTIONS(1203), - [sym_false] = ACTIONS(1203), - [anon_sym_NULL] = ACTIONS(1203), - [anon_sym_nullptr] = ACTIONS(1203), - [sym_comment] = ACTIONS(3), + [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), }, [219] = { - [ts_builtin_sym_end] = ACTIONS(1195), - [sym_identifier] = ACTIONS(1193), - [aux_sym_preproc_include_token1] = ACTIONS(1193), - [aux_sym_preproc_def_token1] = ACTIONS(1193), - [aux_sym_preproc_if_token1] = ACTIONS(1193), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1193), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1193), - [sym_preproc_directive] = ACTIONS(1193), - [anon_sym_LPAREN2] = ACTIONS(1195), - [anon_sym_BANG] = ACTIONS(1195), - [anon_sym_TILDE] = ACTIONS(1195), - [anon_sym_DASH] = ACTIONS(1193), - [anon_sym_PLUS] = ACTIONS(1193), - [anon_sym_STAR] = ACTIONS(1195), - [anon_sym_AMP] = ACTIONS(1195), - [anon_sym_SEMI] = ACTIONS(1195), - [anon_sym___extension__] = ACTIONS(1193), - [anon_sym_typedef] = ACTIONS(1193), - [anon_sym_extern] = ACTIONS(1193), - [anon_sym___attribute__] = ACTIONS(1193), - [anon_sym___scanf] = ACTIONS(1193), - [anon_sym___printf] = ACTIONS(1193), - [anon_sym___read_mostly] = ACTIONS(1193), - [anon_sym___must_hold] = ACTIONS(1193), - [anon_sym___ro_after_init] = ACTIONS(1193), - [anon_sym___noreturn] = ACTIONS(1193), - [anon_sym___cold] = ACTIONS(1193), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1195), - [anon_sym___declspec] = ACTIONS(1193), - [anon_sym___init] = ACTIONS(1193), - [anon_sym___exit] = ACTIONS(1193), - [anon_sym___cdecl] = ACTIONS(1193), - [anon_sym___clrcall] = ACTIONS(1193), - [anon_sym___stdcall] = ACTIONS(1193), - [anon_sym___fastcall] = ACTIONS(1193), - [anon_sym___thiscall] = ACTIONS(1193), - [anon_sym___vectorcall] = ACTIONS(1193), - [anon_sym_LBRACE] = ACTIONS(1195), - [anon_sym_signed] = ACTIONS(1193), - [anon_sym_unsigned] = ACTIONS(1193), - [anon_sym_long] = ACTIONS(1193), - [anon_sym_short] = ACTIONS(1193), - [anon_sym_static] = ACTIONS(1193), - [anon_sym_auto] = ACTIONS(1193), - [anon_sym_register] = ACTIONS(1193), - [anon_sym_inline] = ACTIONS(1193), - [anon_sym___inline] = ACTIONS(1193), - [anon_sym___inline__] = ACTIONS(1193), - [anon_sym___forceinline] = ACTIONS(1193), - [anon_sym_thread_local] = ACTIONS(1193), - [anon_sym___thread] = ACTIONS(1193), - [anon_sym_const] = ACTIONS(1193), - [anon_sym_constexpr] = ACTIONS(1193), - [anon_sym_volatile] = ACTIONS(1193), - [anon_sym_restrict] = ACTIONS(1193), - [anon_sym___restrict__] = ACTIONS(1193), - [anon_sym__Atomic] = ACTIONS(1193), - [anon_sym__Noreturn] = ACTIONS(1193), - [anon_sym_noreturn] = ACTIONS(1193), - [anon_sym_alignas] = ACTIONS(1193), - [anon_sym__Alignas] = ACTIONS(1193), - [sym_primitive_type] = ACTIONS(1193), - [anon_sym_enum] = ACTIONS(1193), - [anon_sym_struct] = ACTIONS(1193), - [anon_sym_union] = ACTIONS(1193), - [anon_sym_if] = ACTIONS(1193), - [anon_sym_else] = ACTIONS(1193), - [anon_sym_switch] = ACTIONS(1193), - [anon_sym_case] = ACTIONS(1193), - [anon_sym_default] = ACTIONS(1193), - [anon_sym_while] = ACTIONS(1193), - [anon_sym_do] = ACTIONS(1193), - [anon_sym_for] = ACTIONS(1193), - [anon_sym_return] = ACTIONS(1193), - [anon_sym_break] = ACTIONS(1193), - [anon_sym_continue] = ACTIONS(1193), - [anon_sym_goto] = ACTIONS(1193), - [anon_sym___try] = ACTIONS(1193), - [anon_sym___leave] = ACTIONS(1193), - [anon_sym_DASH_DASH] = ACTIONS(1195), - [anon_sym_PLUS_PLUS] = ACTIONS(1195), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym___alignof__] = ACTIONS(1193), - [anon_sym___alignof] = ACTIONS(1193), - [anon_sym__alignof] = ACTIONS(1193), - [anon_sym_alignof] = ACTIONS(1193), - [anon_sym__Alignof] = ACTIONS(1193), - [anon_sym_offsetof] = ACTIONS(1193), - [anon_sym__Generic] = ACTIONS(1193), - [anon_sym_asm] = ACTIONS(1193), - [anon_sym___asm__] = ACTIONS(1193), - [sym_number_literal] = ACTIONS(1195), - [anon_sym_L_SQUOTE] = ACTIONS(1195), - [anon_sym_u_SQUOTE] = ACTIONS(1195), - [anon_sym_U_SQUOTE] = ACTIONS(1195), - [anon_sym_u8_SQUOTE] = ACTIONS(1195), - [anon_sym_SQUOTE] = ACTIONS(1195), - [anon_sym_L_DQUOTE] = ACTIONS(1195), - [anon_sym_u_DQUOTE] = ACTIONS(1195), - [anon_sym_U_DQUOTE] = ACTIONS(1195), - [anon_sym_u8_DQUOTE] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1195), - [sym_true] = ACTIONS(1193), - [sym_false] = ACTIONS(1193), - [anon_sym_NULL] = ACTIONS(1193), - [anon_sym_nullptr] = ACTIONS(1193), - [sym_comment] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1316), + [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_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), }, [220] = { - [sym_identifier] = ACTIONS(1165), - [aux_sym_preproc_include_token1] = ACTIONS(1165), - [aux_sym_preproc_def_token1] = ACTIONS(1165), - [aux_sym_preproc_if_token1] = ACTIONS(1165), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1165), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1165), - [sym_preproc_directive] = ACTIONS(1165), - [anon_sym_LPAREN2] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1167), - [anon_sym_TILDE] = ACTIONS(1167), - [anon_sym_DASH] = ACTIONS(1165), - [anon_sym_PLUS] = ACTIONS(1165), - [anon_sym_STAR] = ACTIONS(1167), - [anon_sym_AMP] = ACTIONS(1167), - [anon_sym_SEMI] = ACTIONS(1167), - [anon_sym___extension__] = ACTIONS(1165), - [anon_sym_typedef] = ACTIONS(1165), - [anon_sym_extern] = ACTIONS(1165), - [anon_sym___attribute__] = ACTIONS(1165), - [anon_sym___scanf] = ACTIONS(1165), - [anon_sym___printf] = ACTIONS(1165), - [anon_sym___read_mostly] = ACTIONS(1165), - [anon_sym___must_hold] = ACTIONS(1165), - [anon_sym___ro_after_init] = ACTIONS(1165), - [anon_sym___noreturn] = ACTIONS(1165), - [anon_sym___cold] = ACTIONS(1165), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1167), - [anon_sym___declspec] = ACTIONS(1165), - [anon_sym___init] = ACTIONS(1165), - [anon_sym___exit] = ACTIONS(1165), - [anon_sym___cdecl] = ACTIONS(1165), - [anon_sym___clrcall] = ACTIONS(1165), - [anon_sym___stdcall] = ACTIONS(1165), - [anon_sym___fastcall] = ACTIONS(1165), - [anon_sym___thiscall] = ACTIONS(1165), - [anon_sym___vectorcall] = ACTIONS(1165), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_RBRACE] = ACTIONS(1167), - [anon_sym_signed] = ACTIONS(1165), - [anon_sym_unsigned] = ACTIONS(1165), - [anon_sym_long] = ACTIONS(1165), - [anon_sym_short] = ACTIONS(1165), - [anon_sym_static] = ACTIONS(1165), - [anon_sym_auto] = ACTIONS(1165), - [anon_sym_register] = ACTIONS(1165), - [anon_sym_inline] = ACTIONS(1165), - [anon_sym___inline] = ACTIONS(1165), - [anon_sym___inline__] = ACTIONS(1165), - [anon_sym___forceinline] = ACTIONS(1165), - [anon_sym_thread_local] = ACTIONS(1165), - [anon_sym___thread] = ACTIONS(1165), - [anon_sym_const] = ACTIONS(1165), - [anon_sym_constexpr] = ACTIONS(1165), - [anon_sym_volatile] = ACTIONS(1165), - [anon_sym_restrict] = ACTIONS(1165), - [anon_sym___restrict__] = ACTIONS(1165), - [anon_sym__Atomic] = ACTIONS(1165), - [anon_sym__Noreturn] = ACTIONS(1165), - [anon_sym_noreturn] = ACTIONS(1165), - [anon_sym_alignas] = ACTIONS(1165), - [anon_sym__Alignas] = ACTIONS(1165), - [sym_primitive_type] = ACTIONS(1165), - [anon_sym_enum] = ACTIONS(1165), - [anon_sym_struct] = ACTIONS(1165), - [anon_sym_union] = ACTIONS(1165), - [anon_sym_if] = ACTIONS(1165), - [anon_sym_else] = ACTIONS(1165), - [anon_sym_switch] = ACTIONS(1165), - [anon_sym_case] = ACTIONS(1165), - [anon_sym_default] = ACTIONS(1165), - [anon_sym_while] = ACTIONS(1165), - [anon_sym_do] = ACTIONS(1165), - [anon_sym_for] = ACTIONS(1165), - [anon_sym_return] = ACTIONS(1165), - [anon_sym_break] = ACTIONS(1165), - [anon_sym_continue] = ACTIONS(1165), - [anon_sym_goto] = ACTIONS(1165), - [anon_sym___try] = ACTIONS(1165), - [anon_sym___leave] = ACTIONS(1165), - [anon_sym_DASH_DASH] = ACTIONS(1167), - [anon_sym_PLUS_PLUS] = ACTIONS(1167), - [anon_sym_sizeof] = ACTIONS(1165), - [anon_sym___alignof__] = ACTIONS(1165), - [anon_sym___alignof] = ACTIONS(1165), - [anon_sym__alignof] = ACTIONS(1165), - [anon_sym_alignof] = ACTIONS(1165), - [anon_sym__Alignof] = ACTIONS(1165), - [anon_sym_offsetof] = ACTIONS(1165), - [anon_sym__Generic] = ACTIONS(1165), - [anon_sym_asm] = ACTIONS(1165), - [anon_sym___asm__] = ACTIONS(1165), - [sym_number_literal] = ACTIONS(1167), - [anon_sym_L_SQUOTE] = ACTIONS(1167), - [anon_sym_u_SQUOTE] = ACTIONS(1167), - [anon_sym_U_SQUOTE] = ACTIONS(1167), - [anon_sym_u8_SQUOTE] = ACTIONS(1167), - [anon_sym_SQUOTE] = ACTIONS(1167), - [anon_sym_L_DQUOTE] = ACTIONS(1167), - [anon_sym_u_DQUOTE] = ACTIONS(1167), - [anon_sym_U_DQUOTE] = ACTIONS(1167), - [anon_sym_u8_DQUOTE] = ACTIONS(1167), - [anon_sym_DQUOTE] = ACTIONS(1167), - [sym_true] = ACTIONS(1165), - [sym_false] = ACTIONS(1165), - [anon_sym_NULL] = ACTIONS(1165), - [anon_sym_nullptr] = ACTIONS(1165), - [sym_comment] = ACTIONS(3), + [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_if_token2] = 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), }, [221] = { - [sym_identifier] = ACTIONS(1261), - [aux_sym_preproc_include_token1] = ACTIONS(1261), - [aux_sym_preproc_def_token1] = ACTIONS(1261), - [aux_sym_preproc_if_token1] = ACTIONS(1261), - [aux_sym_preproc_if_token2] = ACTIONS(1261), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1261), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1261), - [sym_preproc_directive] = ACTIONS(1261), - [anon_sym_LPAREN2] = ACTIONS(1263), - [anon_sym_BANG] = ACTIONS(1263), - [anon_sym_TILDE] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1261), - [anon_sym_PLUS] = ACTIONS(1261), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_AMP] = ACTIONS(1263), - [anon_sym_SEMI] = ACTIONS(1263), - [anon_sym___extension__] = ACTIONS(1261), - [anon_sym_typedef] = ACTIONS(1261), - [anon_sym_extern] = ACTIONS(1261), - [anon_sym___attribute__] = ACTIONS(1261), - [anon_sym___scanf] = ACTIONS(1261), - [anon_sym___printf] = ACTIONS(1261), - [anon_sym___read_mostly] = ACTIONS(1261), - [anon_sym___must_hold] = ACTIONS(1261), - [anon_sym___ro_after_init] = ACTIONS(1261), - [anon_sym___noreturn] = ACTIONS(1261), - [anon_sym___cold] = ACTIONS(1261), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1263), - [anon_sym___declspec] = ACTIONS(1261), - [anon_sym___init] = ACTIONS(1261), - [anon_sym___exit] = ACTIONS(1261), - [anon_sym___cdecl] = ACTIONS(1261), - [anon_sym___clrcall] = ACTIONS(1261), - [anon_sym___stdcall] = ACTIONS(1261), - [anon_sym___fastcall] = ACTIONS(1261), - [anon_sym___thiscall] = ACTIONS(1261), - [anon_sym___vectorcall] = ACTIONS(1261), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_signed] = ACTIONS(1261), - [anon_sym_unsigned] = ACTIONS(1261), - [anon_sym_long] = ACTIONS(1261), - [anon_sym_short] = ACTIONS(1261), - [anon_sym_static] = ACTIONS(1261), - [anon_sym_auto] = ACTIONS(1261), - [anon_sym_register] = ACTIONS(1261), - [anon_sym_inline] = ACTIONS(1261), - [anon_sym___inline] = ACTIONS(1261), - [anon_sym___inline__] = ACTIONS(1261), - [anon_sym___forceinline] = ACTIONS(1261), - [anon_sym_thread_local] = ACTIONS(1261), - [anon_sym___thread] = ACTIONS(1261), - [anon_sym_const] = ACTIONS(1261), - [anon_sym_constexpr] = ACTIONS(1261), - [anon_sym_volatile] = ACTIONS(1261), - [anon_sym_restrict] = ACTIONS(1261), - [anon_sym___restrict__] = ACTIONS(1261), - [anon_sym__Atomic] = ACTIONS(1261), - [anon_sym__Noreturn] = ACTIONS(1261), - [anon_sym_noreturn] = ACTIONS(1261), - [anon_sym_alignas] = ACTIONS(1261), - [anon_sym__Alignas] = ACTIONS(1261), - [sym_primitive_type] = ACTIONS(1261), - [anon_sym_enum] = ACTIONS(1261), - [anon_sym_struct] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1261), - [anon_sym_if] = ACTIONS(1261), - [anon_sym_else] = ACTIONS(1261), - [anon_sym_switch] = ACTIONS(1261), - [anon_sym_case] = ACTIONS(1261), - [anon_sym_default] = ACTIONS(1261), - [anon_sym_while] = ACTIONS(1261), - [anon_sym_do] = ACTIONS(1261), - [anon_sym_for] = ACTIONS(1261), - [anon_sym_return] = ACTIONS(1261), - [anon_sym_break] = ACTIONS(1261), - [anon_sym_continue] = ACTIONS(1261), - [anon_sym_goto] = ACTIONS(1261), - [anon_sym___try] = ACTIONS(1261), - [anon_sym___leave] = ACTIONS(1261), - [anon_sym_DASH_DASH] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_sizeof] = ACTIONS(1261), - [anon_sym___alignof__] = ACTIONS(1261), - [anon_sym___alignof] = ACTIONS(1261), - [anon_sym__alignof] = ACTIONS(1261), - [anon_sym_alignof] = ACTIONS(1261), - [anon_sym__Alignof] = ACTIONS(1261), - [anon_sym_offsetof] = ACTIONS(1261), - [anon_sym__Generic] = ACTIONS(1261), - [anon_sym_asm] = ACTIONS(1261), - [anon_sym___asm__] = ACTIONS(1261), - [sym_number_literal] = ACTIONS(1263), - [anon_sym_L_SQUOTE] = ACTIONS(1263), - [anon_sym_u_SQUOTE] = ACTIONS(1263), - [anon_sym_U_SQUOTE] = ACTIONS(1263), - [anon_sym_u8_SQUOTE] = ACTIONS(1263), - [anon_sym_SQUOTE] = ACTIONS(1263), - [anon_sym_L_DQUOTE] = ACTIONS(1263), - [anon_sym_u_DQUOTE] = ACTIONS(1263), - [anon_sym_U_DQUOTE] = ACTIONS(1263), - [anon_sym_u8_DQUOTE] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym_true] = ACTIONS(1261), - [sym_false] = ACTIONS(1261), - [anon_sym_NULL] = ACTIONS(1261), - [anon_sym_nullptr] = ACTIONS(1261), - [sym_comment] = ACTIONS(3), + [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] = { - [sym_identifier] = ACTIONS(1165), - [aux_sym_preproc_include_token1] = ACTIONS(1165), - [aux_sym_preproc_def_token1] = ACTIONS(1165), - [aux_sym_preproc_if_token1] = ACTIONS(1165), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1165), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1165), - [sym_preproc_directive] = ACTIONS(1165), - [anon_sym_LPAREN2] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1167), - [anon_sym_TILDE] = ACTIONS(1167), - [anon_sym_DASH] = ACTIONS(1165), - [anon_sym_PLUS] = ACTIONS(1165), - [anon_sym_STAR] = ACTIONS(1167), - [anon_sym_AMP] = ACTIONS(1167), - [anon_sym_SEMI] = ACTIONS(1167), - [anon_sym___extension__] = ACTIONS(1165), - [anon_sym_typedef] = ACTIONS(1165), - [anon_sym_extern] = ACTIONS(1165), - [anon_sym___attribute__] = ACTIONS(1165), - [anon_sym___scanf] = ACTIONS(1165), - [anon_sym___printf] = ACTIONS(1165), - [anon_sym___read_mostly] = ACTIONS(1165), - [anon_sym___must_hold] = ACTIONS(1165), - [anon_sym___ro_after_init] = ACTIONS(1165), - [anon_sym___noreturn] = ACTIONS(1165), - [anon_sym___cold] = ACTIONS(1165), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1167), - [anon_sym___declspec] = ACTIONS(1165), - [anon_sym___init] = ACTIONS(1165), - [anon_sym___exit] = ACTIONS(1165), - [anon_sym___cdecl] = ACTIONS(1165), - [anon_sym___clrcall] = ACTIONS(1165), - [anon_sym___stdcall] = ACTIONS(1165), - [anon_sym___fastcall] = ACTIONS(1165), - [anon_sym___thiscall] = ACTIONS(1165), - [anon_sym___vectorcall] = ACTIONS(1165), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_RBRACE] = ACTIONS(1167), - [anon_sym_signed] = ACTIONS(1165), - [anon_sym_unsigned] = ACTIONS(1165), - [anon_sym_long] = ACTIONS(1165), - [anon_sym_short] = ACTIONS(1165), - [anon_sym_static] = ACTIONS(1165), - [anon_sym_auto] = ACTIONS(1165), - [anon_sym_register] = ACTIONS(1165), - [anon_sym_inline] = ACTIONS(1165), - [anon_sym___inline] = ACTIONS(1165), - [anon_sym___inline__] = ACTIONS(1165), - [anon_sym___forceinline] = ACTIONS(1165), - [anon_sym_thread_local] = ACTIONS(1165), - [anon_sym___thread] = ACTIONS(1165), - [anon_sym_const] = ACTIONS(1165), - [anon_sym_constexpr] = ACTIONS(1165), - [anon_sym_volatile] = ACTIONS(1165), - [anon_sym_restrict] = ACTIONS(1165), - [anon_sym___restrict__] = ACTIONS(1165), - [anon_sym__Atomic] = ACTIONS(1165), - [anon_sym__Noreturn] = ACTIONS(1165), - [anon_sym_noreturn] = ACTIONS(1165), - [anon_sym_alignas] = ACTIONS(1165), - [anon_sym__Alignas] = ACTIONS(1165), - [sym_primitive_type] = ACTIONS(1165), - [anon_sym_enum] = ACTIONS(1165), - [anon_sym_struct] = ACTIONS(1165), - [anon_sym_union] = ACTIONS(1165), - [anon_sym_if] = ACTIONS(1165), - [anon_sym_else] = ACTIONS(1165), - [anon_sym_switch] = ACTIONS(1165), - [anon_sym_case] = ACTIONS(1165), - [anon_sym_default] = ACTIONS(1165), - [anon_sym_while] = ACTIONS(1165), - [anon_sym_do] = ACTIONS(1165), - [anon_sym_for] = ACTIONS(1165), - [anon_sym_return] = ACTIONS(1165), - [anon_sym_break] = ACTIONS(1165), - [anon_sym_continue] = ACTIONS(1165), - [anon_sym_goto] = ACTIONS(1165), - [anon_sym___try] = ACTIONS(1165), - [anon_sym___leave] = ACTIONS(1165), - [anon_sym_DASH_DASH] = ACTIONS(1167), - [anon_sym_PLUS_PLUS] = ACTIONS(1167), - [anon_sym_sizeof] = ACTIONS(1165), - [anon_sym___alignof__] = ACTIONS(1165), - [anon_sym___alignof] = ACTIONS(1165), - [anon_sym__alignof] = ACTIONS(1165), - [anon_sym_alignof] = ACTIONS(1165), - [anon_sym__Alignof] = ACTIONS(1165), - [anon_sym_offsetof] = ACTIONS(1165), - [anon_sym__Generic] = ACTIONS(1165), - [anon_sym_asm] = ACTIONS(1165), - [anon_sym___asm__] = ACTIONS(1165), - [sym_number_literal] = ACTIONS(1167), - [anon_sym_L_SQUOTE] = ACTIONS(1167), - [anon_sym_u_SQUOTE] = ACTIONS(1167), - [anon_sym_U_SQUOTE] = ACTIONS(1167), - [anon_sym_u8_SQUOTE] = ACTIONS(1167), - [anon_sym_SQUOTE] = ACTIONS(1167), - [anon_sym_L_DQUOTE] = ACTIONS(1167), - [anon_sym_u_DQUOTE] = ACTIONS(1167), - [anon_sym_U_DQUOTE] = ACTIONS(1167), - [anon_sym_u8_DQUOTE] = ACTIONS(1167), - [anon_sym_DQUOTE] = ACTIONS(1167), - [sym_true] = ACTIONS(1165), - [sym_false] = ACTIONS(1165), - [anon_sym_NULL] = ACTIONS(1165), - [anon_sym_nullptr] = ACTIONS(1165), - [sym_comment] = ACTIONS(3), + [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), }, [223] = { - [ts_builtin_sym_end] = ACTIONS(1183), - [sym_identifier] = ACTIONS(1181), - [aux_sym_preproc_include_token1] = ACTIONS(1181), - [aux_sym_preproc_def_token1] = ACTIONS(1181), - [aux_sym_preproc_if_token1] = ACTIONS(1181), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1181), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1181), - [sym_preproc_directive] = ACTIONS(1181), - [anon_sym_LPAREN2] = ACTIONS(1183), - [anon_sym_BANG] = ACTIONS(1183), - [anon_sym_TILDE] = ACTIONS(1183), - [anon_sym_DASH] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1181), - [anon_sym_STAR] = ACTIONS(1183), - [anon_sym_AMP] = ACTIONS(1183), - [anon_sym_SEMI] = ACTIONS(1183), - [anon_sym___extension__] = ACTIONS(1181), - [anon_sym_typedef] = ACTIONS(1181), - [anon_sym_extern] = ACTIONS(1181), - [anon_sym___attribute__] = ACTIONS(1181), - [anon_sym___scanf] = ACTIONS(1181), - [anon_sym___printf] = ACTIONS(1181), - [anon_sym___read_mostly] = ACTIONS(1181), - [anon_sym___must_hold] = ACTIONS(1181), - [anon_sym___ro_after_init] = ACTIONS(1181), - [anon_sym___noreturn] = ACTIONS(1181), - [anon_sym___cold] = ACTIONS(1181), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1183), - [anon_sym___declspec] = ACTIONS(1181), - [anon_sym___init] = ACTIONS(1181), - [anon_sym___exit] = ACTIONS(1181), - [anon_sym___cdecl] = ACTIONS(1181), - [anon_sym___clrcall] = ACTIONS(1181), - [anon_sym___stdcall] = ACTIONS(1181), - [anon_sym___fastcall] = ACTIONS(1181), - [anon_sym___thiscall] = ACTIONS(1181), - [anon_sym___vectorcall] = ACTIONS(1181), - [anon_sym_LBRACE] = ACTIONS(1183), - [anon_sym_signed] = ACTIONS(1181), - [anon_sym_unsigned] = ACTIONS(1181), - [anon_sym_long] = ACTIONS(1181), - [anon_sym_short] = ACTIONS(1181), - [anon_sym_static] = ACTIONS(1181), - [anon_sym_auto] = ACTIONS(1181), - [anon_sym_register] = ACTIONS(1181), - [anon_sym_inline] = ACTIONS(1181), - [anon_sym___inline] = ACTIONS(1181), - [anon_sym___inline__] = ACTIONS(1181), - [anon_sym___forceinline] = ACTIONS(1181), - [anon_sym_thread_local] = ACTIONS(1181), - [anon_sym___thread] = ACTIONS(1181), - [anon_sym_const] = ACTIONS(1181), - [anon_sym_constexpr] = ACTIONS(1181), - [anon_sym_volatile] = ACTIONS(1181), - [anon_sym_restrict] = ACTIONS(1181), - [anon_sym___restrict__] = ACTIONS(1181), - [anon_sym__Atomic] = ACTIONS(1181), - [anon_sym__Noreturn] = ACTIONS(1181), - [anon_sym_noreturn] = ACTIONS(1181), - [anon_sym_alignas] = ACTIONS(1181), - [anon_sym__Alignas] = ACTIONS(1181), - [sym_primitive_type] = ACTIONS(1181), - [anon_sym_enum] = ACTIONS(1181), - [anon_sym_struct] = ACTIONS(1181), - [anon_sym_union] = ACTIONS(1181), - [anon_sym_if] = ACTIONS(1181), - [anon_sym_else] = ACTIONS(1181), - [anon_sym_switch] = ACTIONS(1181), - [anon_sym_case] = ACTIONS(1181), - [anon_sym_default] = ACTIONS(1181), - [anon_sym_while] = ACTIONS(1181), - [anon_sym_do] = ACTIONS(1181), - [anon_sym_for] = ACTIONS(1181), - [anon_sym_return] = ACTIONS(1181), - [anon_sym_break] = ACTIONS(1181), - [anon_sym_continue] = ACTIONS(1181), - [anon_sym_goto] = ACTIONS(1181), - [anon_sym___try] = ACTIONS(1181), - [anon_sym___leave] = ACTIONS(1181), - [anon_sym_DASH_DASH] = ACTIONS(1183), - [anon_sym_PLUS_PLUS] = ACTIONS(1183), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym___alignof__] = ACTIONS(1181), - [anon_sym___alignof] = ACTIONS(1181), - [anon_sym__alignof] = ACTIONS(1181), - [anon_sym_alignof] = ACTIONS(1181), - [anon_sym__Alignof] = ACTIONS(1181), - [anon_sym_offsetof] = ACTIONS(1181), - [anon_sym__Generic] = ACTIONS(1181), - [anon_sym_asm] = ACTIONS(1181), - [anon_sym___asm__] = ACTIONS(1181), - [sym_number_literal] = ACTIONS(1183), - [anon_sym_L_SQUOTE] = ACTIONS(1183), - [anon_sym_u_SQUOTE] = ACTIONS(1183), - [anon_sym_U_SQUOTE] = ACTIONS(1183), - [anon_sym_u8_SQUOTE] = ACTIONS(1183), - [anon_sym_SQUOTE] = ACTIONS(1183), - [anon_sym_L_DQUOTE] = ACTIONS(1183), - [anon_sym_u_DQUOTE] = ACTIONS(1183), - [anon_sym_U_DQUOTE] = ACTIONS(1183), - [anon_sym_u8_DQUOTE] = ACTIONS(1183), - [anon_sym_DQUOTE] = ACTIONS(1183), - [sym_true] = ACTIONS(1181), - [sym_false] = ACTIONS(1181), - [anon_sym_NULL] = ACTIONS(1181), - [anon_sym_nullptr] = ACTIONS(1181), - [sym_comment] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1276), + [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_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), }, [224] = { - [ts_builtin_sym_end] = ACTIONS(1235), - [sym_identifier] = ACTIONS(1233), - [aux_sym_preproc_include_token1] = ACTIONS(1233), - [aux_sym_preproc_def_token1] = ACTIONS(1233), - [aux_sym_preproc_if_token1] = ACTIONS(1233), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1233), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1233), - [sym_preproc_directive] = ACTIONS(1233), - [anon_sym_LPAREN2] = ACTIONS(1235), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_DASH] = ACTIONS(1233), - [anon_sym_PLUS] = ACTIONS(1233), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_AMP] = ACTIONS(1235), - [anon_sym_SEMI] = ACTIONS(1235), - [anon_sym___extension__] = ACTIONS(1233), - [anon_sym_typedef] = ACTIONS(1233), - [anon_sym_extern] = ACTIONS(1233), - [anon_sym___attribute__] = ACTIONS(1233), - [anon_sym___scanf] = ACTIONS(1233), - [anon_sym___printf] = ACTIONS(1233), - [anon_sym___read_mostly] = ACTIONS(1233), - [anon_sym___must_hold] = ACTIONS(1233), - [anon_sym___ro_after_init] = ACTIONS(1233), - [anon_sym___noreturn] = ACTIONS(1233), - [anon_sym___cold] = ACTIONS(1233), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1235), - [anon_sym___declspec] = ACTIONS(1233), - [anon_sym___init] = ACTIONS(1233), - [anon_sym___exit] = ACTIONS(1233), - [anon_sym___cdecl] = ACTIONS(1233), - [anon_sym___clrcall] = ACTIONS(1233), - [anon_sym___stdcall] = ACTIONS(1233), - [anon_sym___fastcall] = ACTIONS(1233), - [anon_sym___thiscall] = ACTIONS(1233), - [anon_sym___vectorcall] = ACTIONS(1233), - [anon_sym_LBRACE] = ACTIONS(1235), - [anon_sym_signed] = ACTIONS(1233), - [anon_sym_unsigned] = ACTIONS(1233), - [anon_sym_long] = ACTIONS(1233), - [anon_sym_short] = ACTIONS(1233), - [anon_sym_static] = ACTIONS(1233), - [anon_sym_auto] = ACTIONS(1233), - [anon_sym_register] = ACTIONS(1233), - [anon_sym_inline] = ACTIONS(1233), - [anon_sym___inline] = ACTIONS(1233), - [anon_sym___inline__] = ACTIONS(1233), - [anon_sym___forceinline] = ACTIONS(1233), - [anon_sym_thread_local] = ACTIONS(1233), - [anon_sym___thread] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_constexpr] = ACTIONS(1233), - [anon_sym_volatile] = ACTIONS(1233), - [anon_sym_restrict] = ACTIONS(1233), - [anon_sym___restrict__] = ACTIONS(1233), - [anon_sym__Atomic] = ACTIONS(1233), - [anon_sym__Noreturn] = ACTIONS(1233), - [anon_sym_noreturn] = ACTIONS(1233), - [anon_sym_alignas] = ACTIONS(1233), - [anon_sym__Alignas] = ACTIONS(1233), - [sym_primitive_type] = ACTIONS(1233), - [anon_sym_enum] = ACTIONS(1233), - [anon_sym_struct] = ACTIONS(1233), - [anon_sym_union] = ACTIONS(1233), - [anon_sym_if] = ACTIONS(1233), - [anon_sym_else] = ACTIONS(1233), - [anon_sym_switch] = ACTIONS(1233), - [anon_sym_case] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1233), - [anon_sym_while] = ACTIONS(1233), - [anon_sym_do] = ACTIONS(1233), - [anon_sym_for] = ACTIONS(1233), - [anon_sym_return] = ACTIONS(1233), - [anon_sym_break] = ACTIONS(1233), - [anon_sym_continue] = ACTIONS(1233), - [anon_sym_goto] = ACTIONS(1233), - [anon_sym___try] = ACTIONS(1233), - [anon_sym___leave] = ACTIONS(1233), - [anon_sym_DASH_DASH] = ACTIONS(1235), - [anon_sym_PLUS_PLUS] = ACTIONS(1235), - [anon_sym_sizeof] = ACTIONS(1233), - [anon_sym___alignof__] = ACTIONS(1233), - [anon_sym___alignof] = ACTIONS(1233), - [anon_sym__alignof] = ACTIONS(1233), - [anon_sym_alignof] = ACTIONS(1233), - [anon_sym__Alignof] = ACTIONS(1233), - [anon_sym_offsetof] = ACTIONS(1233), - [anon_sym__Generic] = ACTIONS(1233), - [anon_sym_asm] = ACTIONS(1233), - [anon_sym___asm__] = ACTIONS(1233), - [sym_number_literal] = ACTIONS(1235), - [anon_sym_L_SQUOTE] = ACTIONS(1235), - [anon_sym_u_SQUOTE] = ACTIONS(1235), - [anon_sym_U_SQUOTE] = ACTIONS(1235), - [anon_sym_u8_SQUOTE] = ACTIONS(1235), - [anon_sym_SQUOTE] = ACTIONS(1235), - [anon_sym_L_DQUOTE] = ACTIONS(1235), - [anon_sym_u_DQUOTE] = ACTIONS(1235), - [anon_sym_U_DQUOTE] = ACTIONS(1235), - [anon_sym_u8_DQUOTE] = ACTIONS(1235), - [anon_sym_DQUOTE] = ACTIONS(1235), - [sym_true] = ACTIONS(1233), - [sym_false] = ACTIONS(1233), - [anon_sym_NULL] = ACTIONS(1233), - [anon_sym_nullptr] = ACTIONS(1233), - [sym_comment] = ACTIONS(3), + [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), }, [225] = { - [sym_identifier] = ACTIONS(1269), - [aux_sym_preproc_include_token1] = ACTIONS(1269), - [aux_sym_preproc_def_token1] = ACTIONS(1269), - [aux_sym_preproc_if_token1] = ACTIONS(1269), - [aux_sym_preproc_if_token2] = ACTIONS(1269), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1269), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1269), - [sym_preproc_directive] = ACTIONS(1269), - [anon_sym_LPAREN2] = ACTIONS(1271), - [anon_sym_BANG] = ACTIONS(1271), - [anon_sym_TILDE] = ACTIONS(1271), - [anon_sym_DASH] = ACTIONS(1269), - [anon_sym_PLUS] = ACTIONS(1269), - [anon_sym_STAR] = ACTIONS(1271), - [anon_sym_AMP] = ACTIONS(1271), - [anon_sym_SEMI] = ACTIONS(1271), - [anon_sym___extension__] = ACTIONS(1269), - [anon_sym_typedef] = ACTIONS(1269), - [anon_sym_extern] = ACTIONS(1269), - [anon_sym___attribute__] = ACTIONS(1269), - [anon_sym___scanf] = ACTIONS(1269), - [anon_sym___printf] = ACTIONS(1269), - [anon_sym___read_mostly] = ACTIONS(1269), - [anon_sym___must_hold] = ACTIONS(1269), - [anon_sym___ro_after_init] = ACTIONS(1269), - [anon_sym___noreturn] = ACTIONS(1269), - [anon_sym___cold] = ACTIONS(1269), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1271), - [anon_sym___declspec] = ACTIONS(1269), - [anon_sym___init] = ACTIONS(1269), - [anon_sym___exit] = ACTIONS(1269), - [anon_sym___cdecl] = ACTIONS(1269), - [anon_sym___clrcall] = ACTIONS(1269), - [anon_sym___stdcall] = ACTIONS(1269), - [anon_sym___fastcall] = ACTIONS(1269), - [anon_sym___thiscall] = ACTIONS(1269), - [anon_sym___vectorcall] = ACTIONS(1269), - [anon_sym_LBRACE] = ACTIONS(1271), - [anon_sym_signed] = ACTIONS(1269), - [anon_sym_unsigned] = ACTIONS(1269), - [anon_sym_long] = ACTIONS(1269), - [anon_sym_short] = ACTIONS(1269), - [anon_sym_static] = ACTIONS(1269), - [anon_sym_auto] = ACTIONS(1269), - [anon_sym_register] = ACTIONS(1269), - [anon_sym_inline] = ACTIONS(1269), - [anon_sym___inline] = ACTIONS(1269), - [anon_sym___inline__] = ACTIONS(1269), - [anon_sym___forceinline] = ACTIONS(1269), - [anon_sym_thread_local] = ACTIONS(1269), - [anon_sym___thread] = ACTIONS(1269), - [anon_sym_const] = ACTIONS(1269), - [anon_sym_constexpr] = ACTIONS(1269), - [anon_sym_volatile] = ACTIONS(1269), - [anon_sym_restrict] = ACTIONS(1269), - [anon_sym___restrict__] = ACTIONS(1269), - [anon_sym__Atomic] = ACTIONS(1269), - [anon_sym__Noreturn] = ACTIONS(1269), - [anon_sym_noreturn] = ACTIONS(1269), - [anon_sym_alignas] = ACTIONS(1269), - [anon_sym__Alignas] = ACTIONS(1269), - [sym_primitive_type] = ACTIONS(1269), - [anon_sym_enum] = ACTIONS(1269), - [anon_sym_struct] = ACTIONS(1269), - [anon_sym_union] = ACTIONS(1269), - [anon_sym_if] = ACTIONS(1269), - [anon_sym_else] = ACTIONS(1269), - [anon_sym_switch] = ACTIONS(1269), - [anon_sym_case] = ACTIONS(1269), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_while] = ACTIONS(1269), - [anon_sym_do] = ACTIONS(1269), - [anon_sym_for] = ACTIONS(1269), - [anon_sym_return] = ACTIONS(1269), - [anon_sym_break] = ACTIONS(1269), - [anon_sym_continue] = ACTIONS(1269), - [anon_sym_goto] = ACTIONS(1269), - [anon_sym___try] = ACTIONS(1269), - [anon_sym___leave] = ACTIONS(1269), - [anon_sym_DASH_DASH] = ACTIONS(1271), - [anon_sym_PLUS_PLUS] = ACTIONS(1271), - [anon_sym_sizeof] = ACTIONS(1269), - [anon_sym___alignof__] = ACTIONS(1269), - [anon_sym___alignof] = ACTIONS(1269), - [anon_sym__alignof] = ACTIONS(1269), - [anon_sym_alignof] = ACTIONS(1269), - [anon_sym__Alignof] = ACTIONS(1269), - [anon_sym_offsetof] = ACTIONS(1269), - [anon_sym__Generic] = ACTIONS(1269), - [anon_sym_asm] = ACTIONS(1269), - [anon_sym___asm__] = ACTIONS(1269), - [sym_number_literal] = ACTIONS(1271), - [anon_sym_L_SQUOTE] = ACTIONS(1271), - [anon_sym_u_SQUOTE] = ACTIONS(1271), - [anon_sym_U_SQUOTE] = ACTIONS(1271), - [anon_sym_u8_SQUOTE] = ACTIONS(1271), - [anon_sym_SQUOTE] = ACTIONS(1271), - [anon_sym_L_DQUOTE] = ACTIONS(1271), - [anon_sym_u_DQUOTE] = ACTIONS(1271), - [anon_sym_U_DQUOTE] = ACTIONS(1271), - [anon_sym_u8_DQUOTE] = ACTIONS(1271), - [anon_sym_DQUOTE] = ACTIONS(1271), - [sym_true] = ACTIONS(1269), - [sym_false] = ACTIONS(1269), - [anon_sym_NULL] = ACTIONS(1269), - [anon_sym_nullptr] = ACTIONS(1269), - [sym_comment] = ACTIONS(3), + [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), }, [226] = { - [sym_identifier] = ACTIONS(1277), - [aux_sym_preproc_include_token1] = ACTIONS(1277), - [aux_sym_preproc_def_token1] = ACTIONS(1277), - [aux_sym_preproc_if_token1] = ACTIONS(1277), - [aux_sym_preproc_if_token2] = ACTIONS(1277), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1277), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1277), - [sym_preproc_directive] = ACTIONS(1277), - [anon_sym_LPAREN2] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_DASH] = ACTIONS(1277), - [anon_sym_PLUS] = ACTIONS(1277), - [anon_sym_STAR] = ACTIONS(1279), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_SEMI] = ACTIONS(1279), - [anon_sym___extension__] = ACTIONS(1277), - [anon_sym_typedef] = ACTIONS(1277), - [anon_sym_extern] = ACTIONS(1277), - [anon_sym___attribute__] = ACTIONS(1277), - [anon_sym___scanf] = ACTIONS(1277), - [anon_sym___printf] = ACTIONS(1277), - [anon_sym___read_mostly] = ACTIONS(1277), - [anon_sym___must_hold] = ACTIONS(1277), - [anon_sym___ro_after_init] = ACTIONS(1277), - [anon_sym___noreturn] = ACTIONS(1277), - [anon_sym___cold] = ACTIONS(1277), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1279), - [anon_sym___declspec] = ACTIONS(1277), - [anon_sym___init] = ACTIONS(1277), - [anon_sym___exit] = ACTIONS(1277), - [anon_sym___cdecl] = ACTIONS(1277), - [anon_sym___clrcall] = ACTIONS(1277), - [anon_sym___stdcall] = ACTIONS(1277), - [anon_sym___fastcall] = ACTIONS(1277), - [anon_sym___thiscall] = ACTIONS(1277), - [anon_sym___vectorcall] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(1279), - [anon_sym_signed] = ACTIONS(1277), - [anon_sym_unsigned] = ACTIONS(1277), - [anon_sym_long] = ACTIONS(1277), - [anon_sym_short] = ACTIONS(1277), - [anon_sym_static] = ACTIONS(1277), - [anon_sym_auto] = ACTIONS(1277), - [anon_sym_register] = ACTIONS(1277), - [anon_sym_inline] = ACTIONS(1277), - [anon_sym___inline] = ACTIONS(1277), - [anon_sym___inline__] = ACTIONS(1277), - [anon_sym___forceinline] = ACTIONS(1277), - [anon_sym_thread_local] = ACTIONS(1277), - [anon_sym___thread] = ACTIONS(1277), - [anon_sym_const] = ACTIONS(1277), - [anon_sym_constexpr] = ACTIONS(1277), - [anon_sym_volatile] = ACTIONS(1277), - [anon_sym_restrict] = ACTIONS(1277), - [anon_sym___restrict__] = ACTIONS(1277), - [anon_sym__Atomic] = ACTIONS(1277), - [anon_sym__Noreturn] = ACTIONS(1277), - [anon_sym_noreturn] = ACTIONS(1277), - [anon_sym_alignas] = ACTIONS(1277), - [anon_sym__Alignas] = ACTIONS(1277), - [sym_primitive_type] = ACTIONS(1277), - [anon_sym_enum] = ACTIONS(1277), - [anon_sym_struct] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1277), - [anon_sym_if] = ACTIONS(1277), - [anon_sym_else] = ACTIONS(1277), - [anon_sym_switch] = ACTIONS(1277), - [anon_sym_case] = ACTIONS(1277), - [anon_sym_default] = ACTIONS(1277), - [anon_sym_while] = ACTIONS(1277), - [anon_sym_do] = ACTIONS(1277), - [anon_sym_for] = ACTIONS(1277), - [anon_sym_return] = ACTIONS(1277), - [anon_sym_break] = ACTIONS(1277), - [anon_sym_continue] = ACTIONS(1277), - [anon_sym_goto] = ACTIONS(1277), - [anon_sym___try] = ACTIONS(1277), - [anon_sym___leave] = ACTIONS(1277), - [anon_sym_DASH_DASH] = ACTIONS(1279), - [anon_sym_PLUS_PLUS] = ACTIONS(1279), - [anon_sym_sizeof] = ACTIONS(1277), - [anon_sym___alignof__] = ACTIONS(1277), - [anon_sym___alignof] = ACTIONS(1277), - [anon_sym__alignof] = ACTIONS(1277), - [anon_sym_alignof] = ACTIONS(1277), - [anon_sym__Alignof] = ACTIONS(1277), - [anon_sym_offsetof] = ACTIONS(1277), - [anon_sym__Generic] = ACTIONS(1277), - [anon_sym_asm] = ACTIONS(1277), - [anon_sym___asm__] = ACTIONS(1277), - [sym_number_literal] = ACTIONS(1279), - [anon_sym_L_SQUOTE] = ACTIONS(1279), - [anon_sym_u_SQUOTE] = ACTIONS(1279), - [anon_sym_U_SQUOTE] = ACTIONS(1279), - [anon_sym_u8_SQUOTE] = ACTIONS(1279), - [anon_sym_SQUOTE] = ACTIONS(1279), - [anon_sym_L_DQUOTE] = ACTIONS(1279), - [anon_sym_u_DQUOTE] = ACTIONS(1279), - [anon_sym_U_DQUOTE] = ACTIONS(1279), - [anon_sym_u8_DQUOTE] = ACTIONS(1279), - [anon_sym_DQUOTE] = ACTIONS(1279), - [sym_true] = ACTIONS(1277), - [sym_false] = ACTIONS(1277), - [anon_sym_NULL] = ACTIONS(1277), - [anon_sym_nullptr] = ACTIONS(1277), - [sym_comment] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1276), + [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_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] = { - [sym_identifier] = ACTIONS(1193), - [aux_sym_preproc_include_token1] = ACTIONS(1193), - [aux_sym_preproc_def_token1] = ACTIONS(1193), - [aux_sym_preproc_if_token1] = ACTIONS(1193), - [aux_sym_preproc_if_token2] = ACTIONS(1193), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1193), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1193), - [sym_preproc_directive] = ACTIONS(1193), - [anon_sym_LPAREN2] = ACTIONS(1195), - [anon_sym_BANG] = ACTIONS(1195), - [anon_sym_TILDE] = ACTIONS(1195), - [anon_sym_DASH] = ACTIONS(1193), - [anon_sym_PLUS] = ACTIONS(1193), - [anon_sym_STAR] = ACTIONS(1195), - [anon_sym_AMP] = ACTIONS(1195), - [anon_sym_SEMI] = ACTIONS(1195), - [anon_sym___extension__] = ACTIONS(1193), - [anon_sym_typedef] = ACTIONS(1193), - [anon_sym_extern] = ACTIONS(1193), - [anon_sym___attribute__] = ACTIONS(1193), - [anon_sym___scanf] = ACTIONS(1193), - [anon_sym___printf] = ACTIONS(1193), - [anon_sym___read_mostly] = ACTIONS(1193), - [anon_sym___must_hold] = ACTIONS(1193), - [anon_sym___ro_after_init] = ACTIONS(1193), - [anon_sym___noreturn] = ACTIONS(1193), - [anon_sym___cold] = ACTIONS(1193), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1195), - [anon_sym___declspec] = ACTIONS(1193), - [anon_sym___init] = ACTIONS(1193), - [anon_sym___exit] = ACTIONS(1193), - [anon_sym___cdecl] = ACTIONS(1193), - [anon_sym___clrcall] = ACTIONS(1193), - [anon_sym___stdcall] = ACTIONS(1193), - [anon_sym___fastcall] = ACTIONS(1193), - [anon_sym___thiscall] = ACTIONS(1193), - [anon_sym___vectorcall] = ACTIONS(1193), - [anon_sym_LBRACE] = ACTIONS(1195), - [anon_sym_signed] = ACTIONS(1193), - [anon_sym_unsigned] = ACTIONS(1193), - [anon_sym_long] = ACTIONS(1193), - [anon_sym_short] = ACTIONS(1193), - [anon_sym_static] = ACTIONS(1193), - [anon_sym_auto] = ACTIONS(1193), - [anon_sym_register] = ACTIONS(1193), - [anon_sym_inline] = ACTIONS(1193), - [anon_sym___inline] = ACTIONS(1193), - [anon_sym___inline__] = ACTIONS(1193), - [anon_sym___forceinline] = ACTIONS(1193), - [anon_sym_thread_local] = ACTIONS(1193), - [anon_sym___thread] = ACTIONS(1193), - [anon_sym_const] = ACTIONS(1193), - [anon_sym_constexpr] = ACTIONS(1193), - [anon_sym_volatile] = ACTIONS(1193), - [anon_sym_restrict] = ACTIONS(1193), - [anon_sym___restrict__] = ACTIONS(1193), - [anon_sym__Atomic] = ACTIONS(1193), - [anon_sym__Noreturn] = ACTIONS(1193), - [anon_sym_noreturn] = ACTIONS(1193), - [anon_sym_alignas] = ACTIONS(1193), - [anon_sym__Alignas] = ACTIONS(1193), - [sym_primitive_type] = ACTIONS(1193), - [anon_sym_enum] = ACTIONS(1193), - [anon_sym_struct] = ACTIONS(1193), - [anon_sym_union] = ACTIONS(1193), - [anon_sym_if] = ACTIONS(1193), - [anon_sym_else] = ACTIONS(1193), - [anon_sym_switch] = ACTIONS(1193), - [anon_sym_case] = ACTIONS(1193), - [anon_sym_default] = ACTIONS(1193), - [anon_sym_while] = ACTIONS(1193), - [anon_sym_do] = ACTIONS(1193), - [anon_sym_for] = ACTIONS(1193), - [anon_sym_return] = ACTIONS(1193), - [anon_sym_break] = ACTIONS(1193), - [anon_sym_continue] = ACTIONS(1193), - [anon_sym_goto] = ACTIONS(1193), - [anon_sym___try] = ACTIONS(1193), - [anon_sym___leave] = ACTIONS(1193), - [anon_sym_DASH_DASH] = ACTIONS(1195), - [anon_sym_PLUS_PLUS] = ACTIONS(1195), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym___alignof__] = ACTIONS(1193), - [anon_sym___alignof] = ACTIONS(1193), - [anon_sym__alignof] = ACTIONS(1193), - [anon_sym_alignof] = ACTIONS(1193), - [anon_sym__Alignof] = ACTIONS(1193), - [anon_sym_offsetof] = ACTIONS(1193), - [anon_sym__Generic] = ACTIONS(1193), - [anon_sym_asm] = ACTIONS(1193), - [anon_sym___asm__] = ACTIONS(1193), - [sym_number_literal] = ACTIONS(1195), - [anon_sym_L_SQUOTE] = ACTIONS(1195), - [anon_sym_u_SQUOTE] = ACTIONS(1195), - [anon_sym_U_SQUOTE] = ACTIONS(1195), - [anon_sym_u8_SQUOTE] = ACTIONS(1195), - [anon_sym_SQUOTE] = ACTIONS(1195), - [anon_sym_L_DQUOTE] = ACTIONS(1195), - [anon_sym_u_DQUOTE] = ACTIONS(1195), - [anon_sym_U_DQUOTE] = ACTIONS(1195), - [anon_sym_u8_DQUOTE] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1195), - [sym_true] = ACTIONS(1193), - [sym_false] = ACTIONS(1193), - [anon_sym_NULL] = ACTIONS(1193), - [anon_sym_nullptr] = ACTIONS(1193), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [228] = { - [sym_identifier] = ACTIONS(1237), - [aux_sym_preproc_include_token1] = ACTIONS(1237), - [aux_sym_preproc_def_token1] = ACTIONS(1237), - [aux_sym_preproc_if_token1] = ACTIONS(1237), - [aux_sym_preproc_if_token2] = ACTIONS(1237), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1237), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1237), - [sym_preproc_directive] = ACTIONS(1237), - [anon_sym_LPAREN2] = ACTIONS(1239), - [anon_sym_BANG] = ACTIONS(1239), - [anon_sym_TILDE] = ACTIONS(1239), - [anon_sym_DASH] = ACTIONS(1237), - [anon_sym_PLUS] = ACTIONS(1237), - [anon_sym_STAR] = ACTIONS(1239), - [anon_sym_AMP] = ACTIONS(1239), - [anon_sym_SEMI] = ACTIONS(1239), - [anon_sym___extension__] = ACTIONS(1237), - [anon_sym_typedef] = ACTIONS(1237), - [anon_sym_extern] = ACTIONS(1237), - [anon_sym___attribute__] = ACTIONS(1237), - [anon_sym___scanf] = ACTIONS(1237), - [anon_sym___printf] = ACTIONS(1237), - [anon_sym___read_mostly] = ACTIONS(1237), - [anon_sym___must_hold] = ACTIONS(1237), - [anon_sym___ro_after_init] = ACTIONS(1237), - [anon_sym___noreturn] = ACTIONS(1237), - [anon_sym___cold] = ACTIONS(1237), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1239), - [anon_sym___declspec] = ACTIONS(1237), - [anon_sym___init] = ACTIONS(1237), - [anon_sym___exit] = ACTIONS(1237), - [anon_sym___cdecl] = ACTIONS(1237), - [anon_sym___clrcall] = ACTIONS(1237), - [anon_sym___stdcall] = ACTIONS(1237), - [anon_sym___fastcall] = ACTIONS(1237), - [anon_sym___thiscall] = ACTIONS(1237), - [anon_sym___vectorcall] = ACTIONS(1237), - [anon_sym_LBRACE] = ACTIONS(1239), - [anon_sym_signed] = ACTIONS(1237), - [anon_sym_unsigned] = ACTIONS(1237), - [anon_sym_long] = ACTIONS(1237), - [anon_sym_short] = ACTIONS(1237), - [anon_sym_static] = ACTIONS(1237), - [anon_sym_auto] = ACTIONS(1237), - [anon_sym_register] = ACTIONS(1237), - [anon_sym_inline] = ACTIONS(1237), - [anon_sym___inline] = ACTIONS(1237), - [anon_sym___inline__] = ACTIONS(1237), - [anon_sym___forceinline] = ACTIONS(1237), - [anon_sym_thread_local] = ACTIONS(1237), - [anon_sym___thread] = ACTIONS(1237), - [anon_sym_const] = ACTIONS(1237), - [anon_sym_constexpr] = ACTIONS(1237), - [anon_sym_volatile] = ACTIONS(1237), - [anon_sym_restrict] = ACTIONS(1237), - [anon_sym___restrict__] = ACTIONS(1237), - [anon_sym__Atomic] = ACTIONS(1237), - [anon_sym__Noreturn] = ACTIONS(1237), - [anon_sym_noreturn] = ACTIONS(1237), - [anon_sym_alignas] = ACTIONS(1237), - [anon_sym__Alignas] = ACTIONS(1237), - [sym_primitive_type] = ACTIONS(1237), - [anon_sym_enum] = ACTIONS(1237), - [anon_sym_struct] = ACTIONS(1237), - [anon_sym_union] = ACTIONS(1237), - [anon_sym_if] = ACTIONS(1237), - [anon_sym_else] = ACTIONS(1237), - [anon_sym_switch] = ACTIONS(1237), - [anon_sym_case] = ACTIONS(1237), - [anon_sym_default] = ACTIONS(1237), - [anon_sym_while] = ACTIONS(1237), - [anon_sym_do] = ACTIONS(1237), - [anon_sym_for] = ACTIONS(1237), - [anon_sym_return] = ACTIONS(1237), - [anon_sym_break] = ACTIONS(1237), - [anon_sym_continue] = ACTIONS(1237), - [anon_sym_goto] = ACTIONS(1237), - [anon_sym___try] = ACTIONS(1237), - [anon_sym___leave] = ACTIONS(1237), - [anon_sym_DASH_DASH] = ACTIONS(1239), - [anon_sym_PLUS_PLUS] = ACTIONS(1239), - [anon_sym_sizeof] = ACTIONS(1237), - [anon_sym___alignof__] = ACTIONS(1237), - [anon_sym___alignof] = ACTIONS(1237), - [anon_sym__alignof] = ACTIONS(1237), - [anon_sym_alignof] = ACTIONS(1237), - [anon_sym__Alignof] = ACTIONS(1237), - [anon_sym_offsetof] = ACTIONS(1237), - [anon_sym__Generic] = ACTIONS(1237), - [anon_sym_asm] = ACTIONS(1237), - [anon_sym___asm__] = ACTIONS(1237), - [sym_number_literal] = ACTIONS(1239), - [anon_sym_L_SQUOTE] = ACTIONS(1239), - [anon_sym_u_SQUOTE] = ACTIONS(1239), - [anon_sym_U_SQUOTE] = ACTIONS(1239), - [anon_sym_u8_SQUOTE] = ACTIONS(1239), - [anon_sym_SQUOTE] = ACTIONS(1239), - [anon_sym_L_DQUOTE] = ACTIONS(1239), - [anon_sym_u_DQUOTE] = ACTIONS(1239), - [anon_sym_U_DQUOTE] = ACTIONS(1239), - [anon_sym_u8_DQUOTE] = ACTIONS(1239), - [anon_sym_DQUOTE] = ACTIONS(1239), - [sym_true] = ACTIONS(1237), - [sym_false] = ACTIONS(1237), - [anon_sym_NULL] = ACTIONS(1237), - [anon_sym_nullptr] = ACTIONS(1237), - [sym_comment] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1276), + [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_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), }, [229] = { - [ts_builtin_sym_end] = ACTIONS(1187), - [sym_identifier] = ACTIONS(1185), - [aux_sym_preproc_include_token1] = ACTIONS(1185), - [aux_sym_preproc_def_token1] = ACTIONS(1185), - [aux_sym_preproc_if_token1] = ACTIONS(1185), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1185), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1185), - [sym_preproc_directive] = ACTIONS(1185), - [anon_sym_LPAREN2] = ACTIONS(1187), - [anon_sym_BANG] = ACTIONS(1187), - [anon_sym_TILDE] = ACTIONS(1187), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1187), - [anon_sym_AMP] = ACTIONS(1187), - [anon_sym_SEMI] = ACTIONS(1187), - [anon_sym___extension__] = ACTIONS(1185), - [anon_sym_typedef] = ACTIONS(1185), - [anon_sym_extern] = ACTIONS(1185), - [anon_sym___attribute__] = ACTIONS(1185), - [anon_sym___scanf] = ACTIONS(1185), - [anon_sym___printf] = ACTIONS(1185), - [anon_sym___read_mostly] = ACTIONS(1185), - [anon_sym___must_hold] = ACTIONS(1185), - [anon_sym___ro_after_init] = ACTIONS(1185), - [anon_sym___noreturn] = ACTIONS(1185), - [anon_sym___cold] = ACTIONS(1185), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1187), - [anon_sym___declspec] = ACTIONS(1185), - [anon_sym___init] = ACTIONS(1185), - [anon_sym___exit] = ACTIONS(1185), - [anon_sym___cdecl] = ACTIONS(1185), - [anon_sym___clrcall] = ACTIONS(1185), - [anon_sym___stdcall] = ACTIONS(1185), - [anon_sym___fastcall] = ACTIONS(1185), - [anon_sym___thiscall] = ACTIONS(1185), - [anon_sym___vectorcall] = ACTIONS(1185), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_signed] = ACTIONS(1185), - [anon_sym_unsigned] = ACTIONS(1185), - [anon_sym_long] = ACTIONS(1185), - [anon_sym_short] = ACTIONS(1185), - [anon_sym_static] = ACTIONS(1185), - [anon_sym_auto] = ACTIONS(1185), - [anon_sym_register] = ACTIONS(1185), - [anon_sym_inline] = ACTIONS(1185), - [anon_sym___inline] = ACTIONS(1185), - [anon_sym___inline__] = ACTIONS(1185), - [anon_sym___forceinline] = ACTIONS(1185), - [anon_sym_thread_local] = ACTIONS(1185), - [anon_sym___thread] = ACTIONS(1185), - [anon_sym_const] = ACTIONS(1185), - [anon_sym_constexpr] = ACTIONS(1185), - [anon_sym_volatile] = ACTIONS(1185), - [anon_sym_restrict] = ACTIONS(1185), - [anon_sym___restrict__] = ACTIONS(1185), - [anon_sym__Atomic] = ACTIONS(1185), - [anon_sym__Noreturn] = ACTIONS(1185), - [anon_sym_noreturn] = ACTIONS(1185), - [anon_sym_alignas] = ACTIONS(1185), - [anon_sym__Alignas] = ACTIONS(1185), - [sym_primitive_type] = ACTIONS(1185), - [anon_sym_enum] = ACTIONS(1185), - [anon_sym_struct] = ACTIONS(1185), - [anon_sym_union] = ACTIONS(1185), - [anon_sym_if] = ACTIONS(1185), - [anon_sym_else] = ACTIONS(1185), - [anon_sym_switch] = ACTIONS(1185), - [anon_sym_case] = ACTIONS(1185), - [anon_sym_default] = ACTIONS(1185), - [anon_sym_while] = ACTIONS(1185), - [anon_sym_do] = ACTIONS(1185), - [anon_sym_for] = ACTIONS(1185), - [anon_sym_return] = ACTIONS(1185), - [anon_sym_break] = ACTIONS(1185), - [anon_sym_continue] = ACTIONS(1185), - [anon_sym_goto] = ACTIONS(1185), - [anon_sym___try] = ACTIONS(1185), - [anon_sym___leave] = ACTIONS(1185), - [anon_sym_DASH_DASH] = ACTIONS(1187), - [anon_sym_PLUS_PLUS] = ACTIONS(1187), - [anon_sym_sizeof] = ACTIONS(1185), - [anon_sym___alignof__] = ACTIONS(1185), - [anon_sym___alignof] = ACTIONS(1185), - [anon_sym__alignof] = ACTIONS(1185), - [anon_sym_alignof] = ACTIONS(1185), - [anon_sym__Alignof] = ACTIONS(1185), - [anon_sym_offsetof] = ACTIONS(1185), - [anon_sym__Generic] = ACTIONS(1185), - [anon_sym_asm] = ACTIONS(1185), - [anon_sym___asm__] = ACTIONS(1185), - [sym_number_literal] = ACTIONS(1187), - [anon_sym_L_SQUOTE] = ACTIONS(1187), - [anon_sym_u_SQUOTE] = ACTIONS(1187), - [anon_sym_U_SQUOTE] = ACTIONS(1187), - [anon_sym_u8_SQUOTE] = ACTIONS(1187), - [anon_sym_SQUOTE] = ACTIONS(1187), - [anon_sym_L_DQUOTE] = ACTIONS(1187), - [anon_sym_u_DQUOTE] = ACTIONS(1187), - [anon_sym_U_DQUOTE] = ACTIONS(1187), - [anon_sym_u8_DQUOTE] = ACTIONS(1187), - [anon_sym_DQUOTE] = ACTIONS(1187), - [sym_true] = ACTIONS(1185), - [sym_false] = ACTIONS(1185), - [anon_sym_NULL] = ACTIONS(1185), - [anon_sym_nullptr] = ACTIONS(1185), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [230] = { - [sym_identifier] = ACTIONS(1233), - [aux_sym_preproc_include_token1] = ACTIONS(1233), - [aux_sym_preproc_def_token1] = ACTIONS(1233), - [aux_sym_preproc_if_token1] = ACTIONS(1233), - [aux_sym_preproc_if_token2] = ACTIONS(1233), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1233), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1233), - [sym_preproc_directive] = ACTIONS(1233), - [anon_sym_LPAREN2] = ACTIONS(1235), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_DASH] = ACTIONS(1233), - [anon_sym_PLUS] = ACTIONS(1233), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_AMP] = ACTIONS(1235), - [anon_sym_SEMI] = ACTIONS(1235), - [anon_sym___extension__] = ACTIONS(1233), - [anon_sym_typedef] = ACTIONS(1233), - [anon_sym_extern] = ACTIONS(1233), - [anon_sym___attribute__] = ACTIONS(1233), - [anon_sym___scanf] = ACTIONS(1233), - [anon_sym___printf] = ACTIONS(1233), - [anon_sym___read_mostly] = ACTIONS(1233), - [anon_sym___must_hold] = ACTIONS(1233), - [anon_sym___ro_after_init] = ACTIONS(1233), - [anon_sym___noreturn] = ACTIONS(1233), - [anon_sym___cold] = ACTIONS(1233), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1235), - [anon_sym___declspec] = ACTIONS(1233), - [anon_sym___init] = ACTIONS(1233), - [anon_sym___exit] = ACTIONS(1233), - [anon_sym___cdecl] = ACTIONS(1233), - [anon_sym___clrcall] = ACTIONS(1233), - [anon_sym___stdcall] = ACTIONS(1233), - [anon_sym___fastcall] = ACTIONS(1233), - [anon_sym___thiscall] = ACTIONS(1233), - [anon_sym___vectorcall] = ACTIONS(1233), - [anon_sym_LBRACE] = ACTIONS(1235), - [anon_sym_signed] = ACTIONS(1233), - [anon_sym_unsigned] = ACTIONS(1233), - [anon_sym_long] = ACTIONS(1233), - [anon_sym_short] = ACTIONS(1233), - [anon_sym_static] = ACTIONS(1233), - [anon_sym_auto] = ACTIONS(1233), - [anon_sym_register] = ACTIONS(1233), - [anon_sym_inline] = ACTIONS(1233), - [anon_sym___inline] = ACTIONS(1233), - [anon_sym___inline__] = ACTIONS(1233), - [anon_sym___forceinline] = ACTIONS(1233), - [anon_sym_thread_local] = ACTIONS(1233), - [anon_sym___thread] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_constexpr] = ACTIONS(1233), - [anon_sym_volatile] = ACTIONS(1233), - [anon_sym_restrict] = ACTIONS(1233), - [anon_sym___restrict__] = ACTIONS(1233), - [anon_sym__Atomic] = ACTIONS(1233), - [anon_sym__Noreturn] = ACTIONS(1233), - [anon_sym_noreturn] = ACTIONS(1233), - [anon_sym_alignas] = ACTIONS(1233), - [anon_sym__Alignas] = ACTIONS(1233), - [sym_primitive_type] = ACTIONS(1233), - [anon_sym_enum] = ACTIONS(1233), - [anon_sym_struct] = ACTIONS(1233), - [anon_sym_union] = ACTIONS(1233), - [anon_sym_if] = ACTIONS(1233), - [anon_sym_else] = ACTIONS(1233), - [anon_sym_switch] = ACTIONS(1233), - [anon_sym_case] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1233), - [anon_sym_while] = ACTIONS(1233), - [anon_sym_do] = ACTIONS(1233), - [anon_sym_for] = ACTIONS(1233), - [anon_sym_return] = ACTIONS(1233), - [anon_sym_break] = ACTIONS(1233), - [anon_sym_continue] = ACTIONS(1233), - [anon_sym_goto] = ACTIONS(1233), - [anon_sym___try] = ACTIONS(1233), - [anon_sym___leave] = ACTIONS(1233), - [anon_sym_DASH_DASH] = ACTIONS(1235), - [anon_sym_PLUS_PLUS] = ACTIONS(1235), - [anon_sym_sizeof] = ACTIONS(1233), - [anon_sym___alignof__] = ACTIONS(1233), - [anon_sym___alignof] = ACTIONS(1233), - [anon_sym__alignof] = ACTIONS(1233), - [anon_sym_alignof] = ACTIONS(1233), - [anon_sym__Alignof] = ACTIONS(1233), - [anon_sym_offsetof] = ACTIONS(1233), - [anon_sym__Generic] = ACTIONS(1233), - [anon_sym_asm] = ACTIONS(1233), - [anon_sym___asm__] = ACTIONS(1233), - [sym_number_literal] = ACTIONS(1235), - [anon_sym_L_SQUOTE] = ACTIONS(1235), - [anon_sym_u_SQUOTE] = ACTIONS(1235), - [anon_sym_U_SQUOTE] = ACTIONS(1235), - [anon_sym_u8_SQUOTE] = ACTIONS(1235), - [anon_sym_SQUOTE] = ACTIONS(1235), - [anon_sym_L_DQUOTE] = ACTIONS(1235), - [anon_sym_u_DQUOTE] = ACTIONS(1235), - [anon_sym_U_DQUOTE] = ACTIONS(1235), - [anon_sym_u8_DQUOTE] = ACTIONS(1235), - [anon_sym_DQUOTE] = ACTIONS(1235), - [sym_true] = ACTIONS(1233), - [sym_false] = ACTIONS(1233), - [anon_sym_NULL] = ACTIONS(1233), - [anon_sym_nullptr] = ACTIONS(1233), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [231] = { - [sym_identifier] = ACTIONS(1181), - [aux_sym_preproc_include_token1] = ACTIONS(1181), - [aux_sym_preproc_def_token1] = ACTIONS(1181), - [aux_sym_preproc_if_token1] = ACTIONS(1181), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1181), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1181), - [sym_preproc_directive] = ACTIONS(1181), - [anon_sym_LPAREN2] = ACTIONS(1183), - [anon_sym_BANG] = ACTIONS(1183), - [anon_sym_TILDE] = ACTIONS(1183), - [anon_sym_DASH] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1181), - [anon_sym_STAR] = ACTIONS(1183), - [anon_sym_AMP] = ACTIONS(1183), - [anon_sym_SEMI] = ACTIONS(1183), - [anon_sym___extension__] = ACTIONS(1181), - [anon_sym_typedef] = ACTIONS(1181), - [anon_sym_extern] = ACTIONS(1181), - [anon_sym___attribute__] = ACTIONS(1181), - [anon_sym___scanf] = ACTIONS(1181), - [anon_sym___printf] = ACTIONS(1181), - [anon_sym___read_mostly] = ACTIONS(1181), - [anon_sym___must_hold] = ACTIONS(1181), - [anon_sym___ro_after_init] = ACTIONS(1181), - [anon_sym___noreturn] = ACTIONS(1181), - [anon_sym___cold] = ACTIONS(1181), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1183), - [anon_sym___declspec] = ACTIONS(1181), - [anon_sym___init] = ACTIONS(1181), - [anon_sym___exit] = ACTIONS(1181), - [anon_sym___cdecl] = ACTIONS(1181), - [anon_sym___clrcall] = ACTIONS(1181), - [anon_sym___stdcall] = ACTIONS(1181), - [anon_sym___fastcall] = ACTIONS(1181), - [anon_sym___thiscall] = ACTIONS(1181), - [anon_sym___vectorcall] = ACTIONS(1181), - [anon_sym_LBRACE] = ACTIONS(1183), - [anon_sym_RBRACE] = ACTIONS(1183), - [anon_sym_signed] = ACTIONS(1181), - [anon_sym_unsigned] = ACTIONS(1181), - [anon_sym_long] = ACTIONS(1181), - [anon_sym_short] = ACTIONS(1181), - [anon_sym_static] = ACTIONS(1181), - [anon_sym_auto] = ACTIONS(1181), - [anon_sym_register] = ACTIONS(1181), - [anon_sym_inline] = ACTIONS(1181), - [anon_sym___inline] = ACTIONS(1181), - [anon_sym___inline__] = ACTIONS(1181), - [anon_sym___forceinline] = ACTIONS(1181), - [anon_sym_thread_local] = ACTIONS(1181), - [anon_sym___thread] = ACTIONS(1181), - [anon_sym_const] = ACTIONS(1181), - [anon_sym_constexpr] = ACTIONS(1181), - [anon_sym_volatile] = ACTIONS(1181), - [anon_sym_restrict] = ACTIONS(1181), - [anon_sym___restrict__] = ACTIONS(1181), - [anon_sym__Atomic] = ACTIONS(1181), - [anon_sym__Noreturn] = ACTIONS(1181), - [anon_sym_noreturn] = ACTIONS(1181), - [anon_sym_alignas] = ACTIONS(1181), - [anon_sym__Alignas] = ACTIONS(1181), - [sym_primitive_type] = ACTIONS(1181), - [anon_sym_enum] = ACTIONS(1181), - [anon_sym_struct] = ACTIONS(1181), - [anon_sym_union] = ACTIONS(1181), - [anon_sym_if] = ACTIONS(1181), - [anon_sym_else] = ACTIONS(1181), - [anon_sym_switch] = ACTIONS(1181), - [anon_sym_case] = ACTIONS(1181), - [anon_sym_default] = ACTIONS(1181), - [anon_sym_while] = ACTIONS(1181), - [anon_sym_do] = ACTIONS(1181), - [anon_sym_for] = ACTIONS(1181), - [anon_sym_return] = ACTIONS(1181), - [anon_sym_break] = ACTIONS(1181), - [anon_sym_continue] = ACTIONS(1181), - [anon_sym_goto] = ACTIONS(1181), - [anon_sym___try] = ACTIONS(1181), - [anon_sym___leave] = ACTIONS(1181), - [anon_sym_DASH_DASH] = ACTIONS(1183), - [anon_sym_PLUS_PLUS] = ACTIONS(1183), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym___alignof__] = ACTIONS(1181), - [anon_sym___alignof] = ACTIONS(1181), - [anon_sym__alignof] = ACTIONS(1181), - [anon_sym_alignof] = ACTIONS(1181), - [anon_sym__Alignof] = ACTIONS(1181), - [anon_sym_offsetof] = ACTIONS(1181), - [anon_sym__Generic] = ACTIONS(1181), - [anon_sym_asm] = ACTIONS(1181), - [anon_sym___asm__] = ACTIONS(1181), - [sym_number_literal] = ACTIONS(1183), - [anon_sym_L_SQUOTE] = ACTIONS(1183), - [anon_sym_u_SQUOTE] = ACTIONS(1183), - [anon_sym_U_SQUOTE] = ACTIONS(1183), - [anon_sym_u8_SQUOTE] = ACTIONS(1183), - [anon_sym_SQUOTE] = ACTIONS(1183), - [anon_sym_L_DQUOTE] = ACTIONS(1183), - [anon_sym_u_DQUOTE] = ACTIONS(1183), - [anon_sym_U_DQUOTE] = ACTIONS(1183), - [anon_sym_u8_DQUOTE] = ACTIONS(1183), - [anon_sym_DQUOTE] = ACTIONS(1183), - [sym_true] = ACTIONS(1181), - [sym_false] = ACTIONS(1181), - [anon_sym_NULL] = ACTIONS(1181), - [anon_sym_nullptr] = ACTIONS(1181), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [232] = { - [sym_identifier] = ACTIONS(1177), - [aux_sym_preproc_include_token1] = ACTIONS(1177), - [aux_sym_preproc_def_token1] = ACTIONS(1177), - [aux_sym_preproc_if_token1] = ACTIONS(1177), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1177), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1177), - [sym_preproc_directive] = ACTIONS(1177), - [anon_sym_LPAREN2] = ACTIONS(1179), - [anon_sym_BANG] = ACTIONS(1179), - [anon_sym_TILDE] = ACTIONS(1179), - [anon_sym_DASH] = ACTIONS(1177), - [anon_sym_PLUS] = ACTIONS(1177), - [anon_sym_STAR] = ACTIONS(1179), - [anon_sym_AMP] = ACTIONS(1179), - [anon_sym_SEMI] = ACTIONS(1179), - [anon_sym___extension__] = ACTIONS(1177), - [anon_sym_typedef] = ACTIONS(1177), - [anon_sym_extern] = ACTIONS(1177), - [anon_sym___attribute__] = ACTIONS(1177), - [anon_sym___scanf] = ACTIONS(1177), - [anon_sym___printf] = ACTIONS(1177), - [anon_sym___read_mostly] = ACTIONS(1177), - [anon_sym___must_hold] = ACTIONS(1177), - [anon_sym___ro_after_init] = ACTIONS(1177), - [anon_sym___noreturn] = ACTIONS(1177), - [anon_sym___cold] = ACTIONS(1177), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1179), - [anon_sym___declspec] = ACTIONS(1177), - [anon_sym___init] = ACTIONS(1177), - [anon_sym___exit] = ACTIONS(1177), - [anon_sym___cdecl] = ACTIONS(1177), - [anon_sym___clrcall] = ACTIONS(1177), - [anon_sym___stdcall] = ACTIONS(1177), - [anon_sym___fastcall] = ACTIONS(1177), - [anon_sym___thiscall] = ACTIONS(1177), - [anon_sym___vectorcall] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_RBRACE] = ACTIONS(1179), - [anon_sym_signed] = ACTIONS(1177), - [anon_sym_unsigned] = ACTIONS(1177), - [anon_sym_long] = ACTIONS(1177), - [anon_sym_short] = ACTIONS(1177), - [anon_sym_static] = ACTIONS(1177), - [anon_sym_auto] = ACTIONS(1177), - [anon_sym_register] = ACTIONS(1177), - [anon_sym_inline] = ACTIONS(1177), - [anon_sym___inline] = ACTIONS(1177), - [anon_sym___inline__] = ACTIONS(1177), - [anon_sym___forceinline] = ACTIONS(1177), - [anon_sym_thread_local] = ACTIONS(1177), - [anon_sym___thread] = ACTIONS(1177), - [anon_sym_const] = ACTIONS(1177), - [anon_sym_constexpr] = ACTIONS(1177), - [anon_sym_volatile] = ACTIONS(1177), - [anon_sym_restrict] = ACTIONS(1177), - [anon_sym___restrict__] = ACTIONS(1177), - [anon_sym__Atomic] = ACTIONS(1177), - [anon_sym__Noreturn] = ACTIONS(1177), - [anon_sym_noreturn] = ACTIONS(1177), - [anon_sym_alignas] = ACTIONS(1177), - [anon_sym__Alignas] = ACTIONS(1177), - [sym_primitive_type] = ACTIONS(1177), - [anon_sym_enum] = ACTIONS(1177), - [anon_sym_struct] = ACTIONS(1177), - [anon_sym_union] = ACTIONS(1177), - [anon_sym_if] = ACTIONS(1177), - [anon_sym_else] = ACTIONS(1177), - [anon_sym_switch] = ACTIONS(1177), - [anon_sym_case] = ACTIONS(1177), - [anon_sym_default] = ACTIONS(1177), - [anon_sym_while] = ACTIONS(1177), - [anon_sym_do] = ACTIONS(1177), - [anon_sym_for] = ACTIONS(1177), - [anon_sym_return] = ACTIONS(1177), - [anon_sym_break] = ACTIONS(1177), - [anon_sym_continue] = ACTIONS(1177), - [anon_sym_goto] = ACTIONS(1177), - [anon_sym___try] = ACTIONS(1177), - [anon_sym___leave] = ACTIONS(1177), - [anon_sym_DASH_DASH] = ACTIONS(1179), - [anon_sym_PLUS_PLUS] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1177), - [anon_sym___alignof__] = ACTIONS(1177), - [anon_sym___alignof] = ACTIONS(1177), - [anon_sym__alignof] = ACTIONS(1177), - [anon_sym_alignof] = ACTIONS(1177), - [anon_sym__Alignof] = ACTIONS(1177), - [anon_sym_offsetof] = ACTIONS(1177), - [anon_sym__Generic] = ACTIONS(1177), - [anon_sym_asm] = ACTIONS(1177), - [anon_sym___asm__] = ACTIONS(1177), - [sym_number_literal] = ACTIONS(1179), - [anon_sym_L_SQUOTE] = ACTIONS(1179), - [anon_sym_u_SQUOTE] = ACTIONS(1179), - [anon_sym_U_SQUOTE] = ACTIONS(1179), - [anon_sym_u8_SQUOTE] = ACTIONS(1179), - [anon_sym_SQUOTE] = ACTIONS(1179), - [anon_sym_L_DQUOTE] = ACTIONS(1179), - [anon_sym_u_DQUOTE] = ACTIONS(1179), - [anon_sym_U_DQUOTE] = ACTIONS(1179), - [anon_sym_u8_DQUOTE] = ACTIONS(1179), - [anon_sym_DQUOTE] = ACTIONS(1179), - [sym_true] = ACTIONS(1177), - [sym_false] = ACTIONS(1177), - [anon_sym_NULL] = ACTIONS(1177), - [anon_sym_nullptr] = ACTIONS(1177), - [sym_comment] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1288), + [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_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(1173), - [aux_sym_preproc_include_token1] = ACTIONS(1173), - [aux_sym_preproc_def_token1] = ACTIONS(1173), - [aux_sym_preproc_if_token1] = ACTIONS(1173), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1173), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1173), - [sym_preproc_directive] = ACTIONS(1173), - [anon_sym_LPAREN2] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1175), - [anon_sym_TILDE] = ACTIONS(1175), - [anon_sym_DASH] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1173), - [anon_sym_STAR] = ACTIONS(1175), - [anon_sym_AMP] = ACTIONS(1175), - [anon_sym_SEMI] = ACTIONS(1175), - [anon_sym___extension__] = ACTIONS(1173), - [anon_sym_typedef] = ACTIONS(1173), - [anon_sym_extern] = ACTIONS(1173), - [anon_sym___attribute__] = ACTIONS(1173), - [anon_sym___scanf] = ACTIONS(1173), - [anon_sym___printf] = ACTIONS(1173), - [anon_sym___read_mostly] = ACTIONS(1173), - [anon_sym___must_hold] = ACTIONS(1173), - [anon_sym___ro_after_init] = ACTIONS(1173), - [anon_sym___noreturn] = ACTIONS(1173), - [anon_sym___cold] = ACTIONS(1173), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1175), - [anon_sym___declspec] = ACTIONS(1173), - [anon_sym___init] = ACTIONS(1173), - [anon_sym___exit] = ACTIONS(1173), - [anon_sym___cdecl] = ACTIONS(1173), - [anon_sym___clrcall] = ACTIONS(1173), - [anon_sym___stdcall] = ACTIONS(1173), - [anon_sym___fastcall] = ACTIONS(1173), - [anon_sym___thiscall] = ACTIONS(1173), - [anon_sym___vectorcall] = ACTIONS(1173), - [anon_sym_LBRACE] = ACTIONS(1175), - [anon_sym_RBRACE] = ACTIONS(1175), - [anon_sym_signed] = ACTIONS(1173), - [anon_sym_unsigned] = ACTIONS(1173), - [anon_sym_long] = ACTIONS(1173), - [anon_sym_short] = ACTIONS(1173), - [anon_sym_static] = ACTIONS(1173), - [anon_sym_auto] = ACTIONS(1173), - [anon_sym_register] = ACTIONS(1173), - [anon_sym_inline] = ACTIONS(1173), - [anon_sym___inline] = ACTIONS(1173), - [anon_sym___inline__] = ACTIONS(1173), - [anon_sym___forceinline] = ACTIONS(1173), - [anon_sym_thread_local] = ACTIONS(1173), - [anon_sym___thread] = ACTIONS(1173), - [anon_sym_const] = ACTIONS(1173), - [anon_sym_constexpr] = ACTIONS(1173), - [anon_sym_volatile] = ACTIONS(1173), - [anon_sym_restrict] = ACTIONS(1173), - [anon_sym___restrict__] = ACTIONS(1173), - [anon_sym__Atomic] = ACTIONS(1173), - [anon_sym__Noreturn] = ACTIONS(1173), - [anon_sym_noreturn] = ACTIONS(1173), - [anon_sym_alignas] = ACTIONS(1173), - [anon_sym__Alignas] = ACTIONS(1173), - [sym_primitive_type] = ACTIONS(1173), - [anon_sym_enum] = ACTIONS(1173), - [anon_sym_struct] = ACTIONS(1173), - [anon_sym_union] = ACTIONS(1173), - [anon_sym_if] = ACTIONS(1173), - [anon_sym_else] = ACTIONS(1173), - [anon_sym_switch] = ACTIONS(1173), - [anon_sym_case] = ACTIONS(1173), - [anon_sym_default] = ACTIONS(1173), - [anon_sym_while] = ACTIONS(1173), - [anon_sym_do] = ACTIONS(1173), - [anon_sym_for] = ACTIONS(1173), - [anon_sym_return] = ACTIONS(1173), - [anon_sym_break] = ACTIONS(1173), - [anon_sym_continue] = ACTIONS(1173), - [anon_sym_goto] = ACTIONS(1173), - [anon_sym___try] = ACTIONS(1173), - [anon_sym___leave] = ACTIONS(1173), - [anon_sym_DASH_DASH] = ACTIONS(1175), - [anon_sym_PLUS_PLUS] = ACTIONS(1175), - [anon_sym_sizeof] = ACTIONS(1173), - [anon_sym___alignof__] = ACTIONS(1173), - [anon_sym___alignof] = ACTIONS(1173), - [anon_sym__alignof] = ACTIONS(1173), - [anon_sym_alignof] = ACTIONS(1173), - [anon_sym__Alignof] = ACTIONS(1173), - [anon_sym_offsetof] = ACTIONS(1173), - [anon_sym__Generic] = ACTIONS(1173), - [anon_sym_asm] = ACTIONS(1173), - [anon_sym___asm__] = ACTIONS(1173), - [sym_number_literal] = ACTIONS(1175), - [anon_sym_L_SQUOTE] = ACTIONS(1175), - [anon_sym_u_SQUOTE] = ACTIONS(1175), - [anon_sym_U_SQUOTE] = ACTIONS(1175), - [anon_sym_u8_SQUOTE] = ACTIONS(1175), - [anon_sym_SQUOTE] = ACTIONS(1175), - [anon_sym_L_DQUOTE] = ACTIONS(1175), - [anon_sym_u_DQUOTE] = ACTIONS(1175), - [anon_sym_U_DQUOTE] = ACTIONS(1175), - [anon_sym_u8_DQUOTE] = ACTIONS(1175), - [anon_sym_DQUOTE] = ACTIONS(1175), - [sym_true] = ACTIONS(1173), - [sym_false] = ACTIONS(1173), - [anon_sym_NULL] = ACTIONS(1173), - [anon_sym_nullptr] = ACTIONS(1173), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [234] = { - [sym_identifier] = ACTIONS(1169), - [aux_sym_preproc_include_token1] = ACTIONS(1169), - [aux_sym_preproc_def_token1] = ACTIONS(1169), - [aux_sym_preproc_if_token1] = ACTIONS(1169), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1169), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1169), - [sym_preproc_directive] = ACTIONS(1169), - [anon_sym_LPAREN2] = ACTIONS(1171), - [anon_sym_BANG] = ACTIONS(1171), - [anon_sym_TILDE] = ACTIONS(1171), - [anon_sym_DASH] = ACTIONS(1169), - [anon_sym_PLUS] = ACTIONS(1169), - [anon_sym_STAR] = ACTIONS(1171), - [anon_sym_AMP] = ACTIONS(1171), - [anon_sym_SEMI] = ACTIONS(1171), - [anon_sym___extension__] = ACTIONS(1169), - [anon_sym_typedef] = ACTIONS(1169), - [anon_sym_extern] = ACTIONS(1169), - [anon_sym___attribute__] = ACTIONS(1169), - [anon_sym___scanf] = ACTIONS(1169), - [anon_sym___printf] = ACTIONS(1169), - [anon_sym___read_mostly] = ACTIONS(1169), - [anon_sym___must_hold] = ACTIONS(1169), - [anon_sym___ro_after_init] = ACTIONS(1169), - [anon_sym___noreturn] = ACTIONS(1169), - [anon_sym___cold] = ACTIONS(1169), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1171), - [anon_sym___declspec] = ACTIONS(1169), - [anon_sym___init] = ACTIONS(1169), - [anon_sym___exit] = ACTIONS(1169), - [anon_sym___cdecl] = ACTIONS(1169), - [anon_sym___clrcall] = ACTIONS(1169), - [anon_sym___stdcall] = ACTIONS(1169), - [anon_sym___fastcall] = ACTIONS(1169), - [anon_sym___thiscall] = ACTIONS(1169), - [anon_sym___vectorcall] = ACTIONS(1169), - [anon_sym_LBRACE] = ACTIONS(1171), - [anon_sym_RBRACE] = ACTIONS(1171), - [anon_sym_signed] = ACTIONS(1169), - [anon_sym_unsigned] = ACTIONS(1169), - [anon_sym_long] = ACTIONS(1169), - [anon_sym_short] = ACTIONS(1169), - [anon_sym_static] = ACTIONS(1169), - [anon_sym_auto] = ACTIONS(1169), - [anon_sym_register] = ACTIONS(1169), - [anon_sym_inline] = ACTIONS(1169), - [anon_sym___inline] = ACTIONS(1169), - [anon_sym___inline__] = ACTIONS(1169), - [anon_sym___forceinline] = ACTIONS(1169), - [anon_sym_thread_local] = ACTIONS(1169), - [anon_sym___thread] = ACTIONS(1169), - [anon_sym_const] = ACTIONS(1169), - [anon_sym_constexpr] = ACTIONS(1169), - [anon_sym_volatile] = ACTIONS(1169), - [anon_sym_restrict] = ACTIONS(1169), - [anon_sym___restrict__] = ACTIONS(1169), - [anon_sym__Atomic] = ACTIONS(1169), - [anon_sym__Noreturn] = ACTIONS(1169), - [anon_sym_noreturn] = ACTIONS(1169), - [anon_sym_alignas] = ACTIONS(1169), - [anon_sym__Alignas] = ACTIONS(1169), - [sym_primitive_type] = ACTIONS(1169), - [anon_sym_enum] = ACTIONS(1169), - [anon_sym_struct] = ACTIONS(1169), - [anon_sym_union] = ACTIONS(1169), - [anon_sym_if] = ACTIONS(1169), - [anon_sym_else] = ACTIONS(1169), - [anon_sym_switch] = ACTIONS(1169), - [anon_sym_case] = ACTIONS(1169), - [anon_sym_default] = ACTIONS(1169), - [anon_sym_while] = ACTIONS(1169), - [anon_sym_do] = ACTIONS(1169), - [anon_sym_for] = ACTIONS(1169), - [anon_sym_return] = ACTIONS(1169), - [anon_sym_break] = ACTIONS(1169), - [anon_sym_continue] = ACTIONS(1169), - [anon_sym_goto] = ACTIONS(1169), - [anon_sym___try] = ACTIONS(1169), - [anon_sym___leave] = ACTIONS(1169), - [anon_sym_DASH_DASH] = ACTIONS(1171), - [anon_sym_PLUS_PLUS] = ACTIONS(1171), - [anon_sym_sizeof] = ACTIONS(1169), - [anon_sym___alignof__] = ACTIONS(1169), - [anon_sym___alignof] = ACTIONS(1169), - [anon_sym__alignof] = ACTIONS(1169), - [anon_sym_alignof] = ACTIONS(1169), - [anon_sym__Alignof] = ACTIONS(1169), - [anon_sym_offsetof] = ACTIONS(1169), - [anon_sym__Generic] = ACTIONS(1169), - [anon_sym_asm] = ACTIONS(1169), - [anon_sym___asm__] = ACTIONS(1169), - [sym_number_literal] = ACTIONS(1171), - [anon_sym_L_SQUOTE] = ACTIONS(1171), - [anon_sym_u_SQUOTE] = ACTIONS(1171), - [anon_sym_U_SQUOTE] = ACTIONS(1171), - [anon_sym_u8_SQUOTE] = ACTIONS(1171), - [anon_sym_SQUOTE] = ACTIONS(1171), - [anon_sym_L_DQUOTE] = ACTIONS(1171), - [anon_sym_u_DQUOTE] = ACTIONS(1171), - [anon_sym_U_DQUOTE] = ACTIONS(1171), - [anon_sym_u8_DQUOTE] = ACTIONS(1171), - [anon_sym_DQUOTE] = ACTIONS(1171), - [sym_true] = ACTIONS(1169), - [sym_false] = ACTIONS(1169), - [anon_sym_NULL] = ACTIONS(1169), - [anon_sym_nullptr] = ACTIONS(1169), - [sym_comment] = ACTIONS(3), + [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_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), }, [235] = { - [sym_identifier] = ACTIONS(1273), - [aux_sym_preproc_include_token1] = ACTIONS(1273), - [aux_sym_preproc_def_token1] = ACTIONS(1273), - [aux_sym_preproc_if_token1] = ACTIONS(1273), - [aux_sym_preproc_if_token2] = ACTIONS(1273), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1273), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1273), - [sym_preproc_directive] = ACTIONS(1273), - [anon_sym_LPAREN2] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(1275), - [anon_sym_TILDE] = ACTIONS(1275), - [anon_sym_DASH] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(1273), - [anon_sym_STAR] = ACTIONS(1275), - [anon_sym_AMP] = ACTIONS(1275), - [anon_sym_SEMI] = ACTIONS(1275), - [anon_sym___extension__] = ACTIONS(1273), - [anon_sym_typedef] = ACTIONS(1273), - [anon_sym_extern] = ACTIONS(1273), - [anon_sym___attribute__] = ACTIONS(1273), - [anon_sym___scanf] = ACTIONS(1273), - [anon_sym___printf] = ACTIONS(1273), - [anon_sym___read_mostly] = ACTIONS(1273), - [anon_sym___must_hold] = ACTIONS(1273), - [anon_sym___ro_after_init] = ACTIONS(1273), - [anon_sym___noreturn] = ACTIONS(1273), - [anon_sym___cold] = ACTIONS(1273), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1275), - [anon_sym___declspec] = ACTIONS(1273), - [anon_sym___init] = ACTIONS(1273), - [anon_sym___exit] = ACTIONS(1273), - [anon_sym___cdecl] = ACTIONS(1273), - [anon_sym___clrcall] = ACTIONS(1273), - [anon_sym___stdcall] = ACTIONS(1273), - [anon_sym___fastcall] = ACTIONS(1273), - [anon_sym___thiscall] = ACTIONS(1273), - [anon_sym___vectorcall] = ACTIONS(1273), - [anon_sym_LBRACE] = ACTIONS(1275), - [anon_sym_signed] = ACTIONS(1273), - [anon_sym_unsigned] = ACTIONS(1273), - [anon_sym_long] = ACTIONS(1273), - [anon_sym_short] = ACTIONS(1273), - [anon_sym_static] = ACTIONS(1273), - [anon_sym_auto] = ACTIONS(1273), - [anon_sym_register] = ACTIONS(1273), - [anon_sym_inline] = ACTIONS(1273), - [anon_sym___inline] = ACTIONS(1273), - [anon_sym___inline__] = ACTIONS(1273), - [anon_sym___forceinline] = ACTIONS(1273), - [anon_sym_thread_local] = ACTIONS(1273), - [anon_sym___thread] = ACTIONS(1273), - [anon_sym_const] = ACTIONS(1273), - [anon_sym_constexpr] = ACTIONS(1273), - [anon_sym_volatile] = ACTIONS(1273), - [anon_sym_restrict] = ACTIONS(1273), - [anon_sym___restrict__] = ACTIONS(1273), - [anon_sym__Atomic] = ACTIONS(1273), - [anon_sym__Noreturn] = ACTIONS(1273), - [anon_sym_noreturn] = ACTIONS(1273), - [anon_sym_alignas] = ACTIONS(1273), - [anon_sym__Alignas] = ACTIONS(1273), - [sym_primitive_type] = ACTIONS(1273), - [anon_sym_enum] = ACTIONS(1273), - [anon_sym_struct] = ACTIONS(1273), - [anon_sym_union] = ACTIONS(1273), - [anon_sym_if] = ACTIONS(1273), - [anon_sym_else] = ACTIONS(1273), - [anon_sym_switch] = ACTIONS(1273), - [anon_sym_case] = ACTIONS(1273), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_while] = ACTIONS(1273), - [anon_sym_do] = ACTIONS(1273), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_return] = ACTIONS(1273), - [anon_sym_break] = ACTIONS(1273), - [anon_sym_continue] = ACTIONS(1273), - [anon_sym_goto] = ACTIONS(1273), - [anon_sym___try] = ACTIONS(1273), - [anon_sym___leave] = ACTIONS(1273), - [anon_sym_DASH_DASH] = ACTIONS(1275), - [anon_sym_PLUS_PLUS] = ACTIONS(1275), - [anon_sym_sizeof] = ACTIONS(1273), - [anon_sym___alignof__] = ACTIONS(1273), - [anon_sym___alignof] = ACTIONS(1273), - [anon_sym__alignof] = ACTIONS(1273), - [anon_sym_alignof] = ACTIONS(1273), - [anon_sym__Alignof] = ACTIONS(1273), - [anon_sym_offsetof] = ACTIONS(1273), - [anon_sym__Generic] = ACTIONS(1273), - [anon_sym_asm] = ACTIONS(1273), - [anon_sym___asm__] = ACTIONS(1273), - [sym_number_literal] = ACTIONS(1275), - [anon_sym_L_SQUOTE] = ACTIONS(1275), - [anon_sym_u_SQUOTE] = ACTIONS(1275), - [anon_sym_U_SQUOTE] = ACTIONS(1275), - [anon_sym_u8_SQUOTE] = ACTIONS(1275), - [anon_sym_SQUOTE] = ACTIONS(1275), - [anon_sym_L_DQUOTE] = ACTIONS(1275), - [anon_sym_u_DQUOTE] = ACTIONS(1275), - [anon_sym_U_DQUOTE] = ACTIONS(1275), - [anon_sym_u8_DQUOTE] = ACTIONS(1275), - [anon_sym_DQUOTE] = ACTIONS(1275), - [sym_true] = ACTIONS(1273), - [sym_false] = ACTIONS(1273), - [anon_sym_NULL] = ACTIONS(1273), - [anon_sym_nullptr] = ACTIONS(1273), - [sym_comment] = ACTIONS(3), + [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_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), }, [236] = { - [sym_identifier] = ACTIONS(1213), - [aux_sym_preproc_include_token1] = ACTIONS(1213), - [aux_sym_preproc_def_token1] = ACTIONS(1213), - [aux_sym_preproc_if_token1] = ACTIONS(1213), - [aux_sym_preproc_if_token2] = ACTIONS(1213), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1213), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1213), - [sym_preproc_directive] = ACTIONS(1213), - [anon_sym_LPAREN2] = ACTIONS(1215), - [anon_sym_BANG] = ACTIONS(1215), - [anon_sym_TILDE] = ACTIONS(1215), - [anon_sym_DASH] = ACTIONS(1213), - [anon_sym_PLUS] = ACTIONS(1213), - [anon_sym_STAR] = ACTIONS(1215), - [anon_sym_AMP] = ACTIONS(1215), - [anon_sym_SEMI] = ACTIONS(1215), - [anon_sym___extension__] = ACTIONS(1213), - [anon_sym_typedef] = ACTIONS(1213), - [anon_sym_extern] = ACTIONS(1213), - [anon_sym___attribute__] = ACTIONS(1213), - [anon_sym___scanf] = ACTIONS(1213), - [anon_sym___printf] = ACTIONS(1213), - [anon_sym___read_mostly] = ACTIONS(1213), - [anon_sym___must_hold] = ACTIONS(1213), - [anon_sym___ro_after_init] = ACTIONS(1213), - [anon_sym___noreturn] = ACTIONS(1213), - [anon_sym___cold] = ACTIONS(1213), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1215), - [anon_sym___declspec] = ACTIONS(1213), - [anon_sym___init] = ACTIONS(1213), - [anon_sym___exit] = ACTIONS(1213), - [anon_sym___cdecl] = ACTIONS(1213), - [anon_sym___clrcall] = ACTIONS(1213), - [anon_sym___stdcall] = ACTIONS(1213), - [anon_sym___fastcall] = ACTIONS(1213), - [anon_sym___thiscall] = ACTIONS(1213), - [anon_sym___vectorcall] = ACTIONS(1213), - [anon_sym_LBRACE] = ACTIONS(1215), - [anon_sym_signed] = ACTIONS(1213), - [anon_sym_unsigned] = ACTIONS(1213), - [anon_sym_long] = ACTIONS(1213), - [anon_sym_short] = ACTIONS(1213), - [anon_sym_static] = ACTIONS(1213), - [anon_sym_auto] = ACTIONS(1213), - [anon_sym_register] = ACTIONS(1213), - [anon_sym_inline] = ACTIONS(1213), - [anon_sym___inline] = ACTIONS(1213), - [anon_sym___inline__] = ACTIONS(1213), - [anon_sym___forceinline] = ACTIONS(1213), - [anon_sym_thread_local] = ACTIONS(1213), - [anon_sym___thread] = ACTIONS(1213), - [anon_sym_const] = ACTIONS(1213), - [anon_sym_constexpr] = ACTIONS(1213), - [anon_sym_volatile] = ACTIONS(1213), - [anon_sym_restrict] = ACTIONS(1213), - [anon_sym___restrict__] = ACTIONS(1213), - [anon_sym__Atomic] = ACTIONS(1213), - [anon_sym__Noreturn] = ACTIONS(1213), - [anon_sym_noreturn] = ACTIONS(1213), - [anon_sym_alignas] = ACTIONS(1213), - [anon_sym__Alignas] = ACTIONS(1213), - [sym_primitive_type] = ACTIONS(1213), - [anon_sym_enum] = ACTIONS(1213), - [anon_sym_struct] = ACTIONS(1213), - [anon_sym_union] = ACTIONS(1213), - [anon_sym_if] = ACTIONS(1213), - [anon_sym_else] = ACTIONS(1213), - [anon_sym_switch] = ACTIONS(1213), - [anon_sym_case] = ACTIONS(1213), - [anon_sym_default] = ACTIONS(1213), - [anon_sym_while] = ACTIONS(1213), - [anon_sym_do] = ACTIONS(1213), - [anon_sym_for] = ACTIONS(1213), - [anon_sym_return] = ACTIONS(1213), - [anon_sym_break] = ACTIONS(1213), - [anon_sym_continue] = ACTIONS(1213), - [anon_sym_goto] = ACTIONS(1213), - [anon_sym___try] = ACTIONS(1213), - [anon_sym___leave] = ACTIONS(1213), - [anon_sym_DASH_DASH] = ACTIONS(1215), - [anon_sym_PLUS_PLUS] = ACTIONS(1215), - [anon_sym_sizeof] = ACTIONS(1213), - [anon_sym___alignof__] = ACTIONS(1213), - [anon_sym___alignof] = ACTIONS(1213), - [anon_sym__alignof] = ACTIONS(1213), - [anon_sym_alignof] = ACTIONS(1213), - [anon_sym__Alignof] = ACTIONS(1213), - [anon_sym_offsetof] = ACTIONS(1213), - [anon_sym__Generic] = ACTIONS(1213), - [anon_sym_asm] = ACTIONS(1213), - [anon_sym___asm__] = ACTIONS(1213), - [sym_number_literal] = ACTIONS(1215), - [anon_sym_L_SQUOTE] = ACTIONS(1215), - [anon_sym_u_SQUOTE] = ACTIONS(1215), - [anon_sym_U_SQUOTE] = ACTIONS(1215), - [anon_sym_u8_SQUOTE] = ACTIONS(1215), - [anon_sym_SQUOTE] = ACTIONS(1215), - [anon_sym_L_DQUOTE] = ACTIONS(1215), - [anon_sym_u_DQUOTE] = ACTIONS(1215), - [anon_sym_U_DQUOTE] = ACTIONS(1215), - [anon_sym_u8_DQUOTE] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1215), - [sym_true] = ACTIONS(1213), - [sym_false] = ACTIONS(1213), - [anon_sym_NULL] = ACTIONS(1213), - [anon_sym_nullptr] = ACTIONS(1213), - [sym_comment] = ACTIONS(3), + [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] = { - [sym_identifier] = ACTIONS(1153), - [aux_sym_preproc_include_token1] = ACTIONS(1153), - [aux_sym_preproc_def_token1] = ACTIONS(1153), - [aux_sym_preproc_if_token1] = ACTIONS(1153), - [aux_sym_preproc_if_token2] = ACTIONS(1153), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1153), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1153), - [sym_preproc_directive] = ACTIONS(1153), - [anon_sym_LPAREN2] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1155), - [anon_sym_TILDE] = ACTIONS(1155), - [anon_sym_DASH] = ACTIONS(1153), - [anon_sym_PLUS] = ACTIONS(1153), - [anon_sym_STAR] = ACTIONS(1155), - [anon_sym_AMP] = ACTIONS(1155), - [anon_sym_SEMI] = ACTIONS(1155), - [anon_sym___extension__] = ACTIONS(1153), - [anon_sym_typedef] = ACTIONS(1153), - [anon_sym_extern] = ACTIONS(1153), - [anon_sym___attribute__] = ACTIONS(1153), - [anon_sym___scanf] = ACTIONS(1153), - [anon_sym___printf] = ACTIONS(1153), - [anon_sym___read_mostly] = ACTIONS(1153), - [anon_sym___must_hold] = ACTIONS(1153), - [anon_sym___ro_after_init] = ACTIONS(1153), - [anon_sym___noreturn] = ACTIONS(1153), - [anon_sym___cold] = ACTIONS(1153), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1155), - [anon_sym___declspec] = ACTIONS(1153), - [anon_sym___init] = ACTIONS(1153), - [anon_sym___exit] = ACTIONS(1153), - [anon_sym___cdecl] = ACTIONS(1153), - [anon_sym___clrcall] = ACTIONS(1153), - [anon_sym___stdcall] = ACTIONS(1153), - [anon_sym___fastcall] = ACTIONS(1153), - [anon_sym___thiscall] = ACTIONS(1153), - [anon_sym___vectorcall] = ACTIONS(1153), - [anon_sym_LBRACE] = ACTIONS(1155), - [anon_sym_signed] = ACTIONS(1153), - [anon_sym_unsigned] = ACTIONS(1153), - [anon_sym_long] = ACTIONS(1153), - [anon_sym_short] = ACTIONS(1153), - [anon_sym_static] = ACTIONS(1153), - [anon_sym_auto] = ACTIONS(1153), - [anon_sym_register] = ACTIONS(1153), - [anon_sym_inline] = ACTIONS(1153), - [anon_sym___inline] = ACTIONS(1153), - [anon_sym___inline__] = ACTIONS(1153), - [anon_sym___forceinline] = ACTIONS(1153), - [anon_sym_thread_local] = ACTIONS(1153), - [anon_sym___thread] = ACTIONS(1153), - [anon_sym_const] = ACTIONS(1153), - [anon_sym_constexpr] = ACTIONS(1153), - [anon_sym_volatile] = ACTIONS(1153), - [anon_sym_restrict] = ACTIONS(1153), - [anon_sym___restrict__] = ACTIONS(1153), - [anon_sym__Atomic] = ACTIONS(1153), - [anon_sym__Noreturn] = ACTIONS(1153), - [anon_sym_noreturn] = ACTIONS(1153), - [anon_sym_alignas] = ACTIONS(1153), - [anon_sym__Alignas] = ACTIONS(1153), - [sym_primitive_type] = ACTIONS(1153), - [anon_sym_enum] = ACTIONS(1153), - [anon_sym_struct] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1153), - [anon_sym_if] = ACTIONS(1153), - [anon_sym_else] = ACTIONS(1153), - [anon_sym_switch] = ACTIONS(1153), - [anon_sym_case] = ACTIONS(1153), - [anon_sym_default] = ACTIONS(1153), - [anon_sym_while] = ACTIONS(1153), - [anon_sym_do] = ACTIONS(1153), - [anon_sym_for] = ACTIONS(1153), - [anon_sym_return] = ACTIONS(1153), - [anon_sym_break] = ACTIONS(1153), - [anon_sym_continue] = ACTIONS(1153), - [anon_sym_goto] = ACTIONS(1153), - [anon_sym___try] = ACTIONS(1153), - [anon_sym___leave] = ACTIONS(1153), - [anon_sym_DASH_DASH] = ACTIONS(1155), - [anon_sym_PLUS_PLUS] = ACTIONS(1155), - [anon_sym_sizeof] = ACTIONS(1153), - [anon_sym___alignof__] = ACTIONS(1153), - [anon_sym___alignof] = ACTIONS(1153), - [anon_sym__alignof] = ACTIONS(1153), - [anon_sym_alignof] = ACTIONS(1153), - [anon_sym__Alignof] = ACTIONS(1153), - [anon_sym_offsetof] = ACTIONS(1153), - [anon_sym__Generic] = ACTIONS(1153), - [anon_sym_asm] = ACTIONS(1153), - [anon_sym___asm__] = ACTIONS(1153), - [sym_number_literal] = ACTIONS(1155), - [anon_sym_L_SQUOTE] = ACTIONS(1155), - [anon_sym_u_SQUOTE] = ACTIONS(1155), - [anon_sym_U_SQUOTE] = ACTIONS(1155), - [anon_sym_u8_SQUOTE] = ACTIONS(1155), - [anon_sym_SQUOTE] = ACTIONS(1155), - [anon_sym_L_DQUOTE] = ACTIONS(1155), - [anon_sym_u_DQUOTE] = ACTIONS(1155), - [anon_sym_U_DQUOTE] = ACTIONS(1155), - [anon_sym_u8_DQUOTE] = ACTIONS(1155), - [anon_sym_DQUOTE] = ACTIONS(1155), - [sym_true] = ACTIONS(1153), - [sym_false] = ACTIONS(1153), - [anon_sym_NULL] = ACTIONS(1153), - [anon_sym_nullptr] = ACTIONS(1153), - [sym_comment] = ACTIONS(3), + [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), }, [238] = { - [sym_identifier] = ACTIONS(1209), - [aux_sym_preproc_include_token1] = ACTIONS(1209), - [aux_sym_preproc_def_token1] = ACTIONS(1209), - [aux_sym_preproc_if_token1] = ACTIONS(1209), - [aux_sym_preproc_if_token2] = ACTIONS(1209), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1209), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1209), - [sym_preproc_directive] = ACTIONS(1209), - [anon_sym_LPAREN2] = ACTIONS(1211), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1211), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_PLUS] = ACTIONS(1209), - [anon_sym_STAR] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1211), - [anon_sym_SEMI] = ACTIONS(1211), - [anon_sym___extension__] = ACTIONS(1209), - [anon_sym_typedef] = ACTIONS(1209), - [anon_sym_extern] = ACTIONS(1209), - [anon_sym___attribute__] = ACTIONS(1209), - [anon_sym___scanf] = ACTIONS(1209), - [anon_sym___printf] = ACTIONS(1209), - [anon_sym___read_mostly] = ACTIONS(1209), - [anon_sym___must_hold] = ACTIONS(1209), - [anon_sym___ro_after_init] = ACTIONS(1209), - [anon_sym___noreturn] = ACTIONS(1209), - [anon_sym___cold] = ACTIONS(1209), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1211), - [anon_sym___declspec] = ACTIONS(1209), - [anon_sym___init] = ACTIONS(1209), - [anon_sym___exit] = ACTIONS(1209), - [anon_sym___cdecl] = ACTIONS(1209), - [anon_sym___clrcall] = ACTIONS(1209), - [anon_sym___stdcall] = ACTIONS(1209), - [anon_sym___fastcall] = ACTIONS(1209), - [anon_sym___thiscall] = ACTIONS(1209), - [anon_sym___vectorcall] = ACTIONS(1209), - [anon_sym_LBRACE] = ACTIONS(1211), - [anon_sym_signed] = ACTIONS(1209), - [anon_sym_unsigned] = ACTIONS(1209), - [anon_sym_long] = ACTIONS(1209), - [anon_sym_short] = ACTIONS(1209), - [anon_sym_static] = ACTIONS(1209), - [anon_sym_auto] = ACTIONS(1209), - [anon_sym_register] = ACTIONS(1209), - [anon_sym_inline] = ACTIONS(1209), - [anon_sym___inline] = ACTIONS(1209), - [anon_sym___inline__] = ACTIONS(1209), - [anon_sym___forceinline] = ACTIONS(1209), - [anon_sym_thread_local] = ACTIONS(1209), - [anon_sym___thread] = ACTIONS(1209), - [anon_sym_const] = ACTIONS(1209), - [anon_sym_constexpr] = ACTIONS(1209), - [anon_sym_volatile] = ACTIONS(1209), - [anon_sym_restrict] = ACTIONS(1209), - [anon_sym___restrict__] = ACTIONS(1209), - [anon_sym__Atomic] = ACTIONS(1209), - [anon_sym__Noreturn] = ACTIONS(1209), - [anon_sym_noreturn] = ACTIONS(1209), - [anon_sym_alignas] = ACTIONS(1209), - [anon_sym__Alignas] = ACTIONS(1209), - [sym_primitive_type] = ACTIONS(1209), - [anon_sym_enum] = ACTIONS(1209), - [anon_sym_struct] = ACTIONS(1209), - [anon_sym_union] = ACTIONS(1209), - [anon_sym_if] = ACTIONS(1209), - [anon_sym_else] = ACTIONS(1209), - [anon_sym_switch] = ACTIONS(1209), - [anon_sym_case] = ACTIONS(1209), - [anon_sym_default] = ACTIONS(1209), - [anon_sym_while] = ACTIONS(1209), - [anon_sym_do] = ACTIONS(1209), - [anon_sym_for] = ACTIONS(1209), - [anon_sym_return] = ACTIONS(1209), - [anon_sym_break] = ACTIONS(1209), - [anon_sym_continue] = ACTIONS(1209), - [anon_sym_goto] = ACTIONS(1209), - [anon_sym___try] = ACTIONS(1209), - [anon_sym___leave] = ACTIONS(1209), - [anon_sym_DASH_DASH] = ACTIONS(1211), - [anon_sym_PLUS_PLUS] = ACTIONS(1211), - [anon_sym_sizeof] = ACTIONS(1209), - [anon_sym___alignof__] = ACTIONS(1209), - [anon_sym___alignof] = ACTIONS(1209), - [anon_sym__alignof] = ACTIONS(1209), - [anon_sym_alignof] = ACTIONS(1209), - [anon_sym__Alignof] = ACTIONS(1209), - [anon_sym_offsetof] = ACTIONS(1209), - [anon_sym__Generic] = ACTIONS(1209), - [anon_sym_asm] = ACTIONS(1209), - [anon_sym___asm__] = ACTIONS(1209), - [sym_number_literal] = ACTIONS(1211), - [anon_sym_L_SQUOTE] = ACTIONS(1211), - [anon_sym_u_SQUOTE] = ACTIONS(1211), - [anon_sym_U_SQUOTE] = ACTIONS(1211), - [anon_sym_u8_SQUOTE] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1211), - [anon_sym_L_DQUOTE] = ACTIONS(1211), - [anon_sym_u_DQUOTE] = ACTIONS(1211), - [anon_sym_U_DQUOTE] = ACTIONS(1211), - [anon_sym_u8_DQUOTE] = ACTIONS(1211), - [anon_sym_DQUOTE] = ACTIONS(1211), - [sym_true] = ACTIONS(1209), - [sym_false] = ACTIONS(1209), - [anon_sym_NULL] = ACTIONS(1209), - [anon_sym_nullptr] = ACTIONS(1209), - [sym_comment] = ACTIONS(3), + [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(1205), - [aux_sym_preproc_include_token1] = ACTIONS(1205), - [aux_sym_preproc_def_token1] = ACTIONS(1205), - [aux_sym_preproc_if_token1] = ACTIONS(1205), - [aux_sym_preproc_if_token2] = ACTIONS(1205), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1205), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1205), - [sym_preproc_directive] = ACTIONS(1205), - [anon_sym_LPAREN2] = ACTIONS(1207), - [anon_sym_BANG] = ACTIONS(1207), - [anon_sym_TILDE] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1205), - [anon_sym_PLUS] = ACTIONS(1205), - [anon_sym_STAR] = ACTIONS(1207), - [anon_sym_AMP] = ACTIONS(1207), - [anon_sym_SEMI] = ACTIONS(1207), - [anon_sym___extension__] = ACTIONS(1205), - [anon_sym_typedef] = ACTIONS(1205), - [anon_sym_extern] = ACTIONS(1205), - [anon_sym___attribute__] = ACTIONS(1205), - [anon_sym___scanf] = ACTIONS(1205), - [anon_sym___printf] = ACTIONS(1205), - [anon_sym___read_mostly] = ACTIONS(1205), - [anon_sym___must_hold] = ACTIONS(1205), - [anon_sym___ro_after_init] = ACTIONS(1205), - [anon_sym___noreturn] = ACTIONS(1205), - [anon_sym___cold] = ACTIONS(1205), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1207), - [anon_sym___declspec] = ACTIONS(1205), - [anon_sym___init] = ACTIONS(1205), - [anon_sym___exit] = ACTIONS(1205), - [anon_sym___cdecl] = ACTIONS(1205), - [anon_sym___clrcall] = ACTIONS(1205), - [anon_sym___stdcall] = ACTIONS(1205), - [anon_sym___fastcall] = ACTIONS(1205), - [anon_sym___thiscall] = ACTIONS(1205), - [anon_sym___vectorcall] = ACTIONS(1205), - [anon_sym_LBRACE] = ACTIONS(1207), - [anon_sym_signed] = ACTIONS(1205), - [anon_sym_unsigned] = ACTIONS(1205), - [anon_sym_long] = ACTIONS(1205), - [anon_sym_short] = ACTIONS(1205), - [anon_sym_static] = ACTIONS(1205), - [anon_sym_auto] = ACTIONS(1205), - [anon_sym_register] = ACTIONS(1205), - [anon_sym_inline] = ACTIONS(1205), - [anon_sym___inline] = ACTIONS(1205), - [anon_sym___inline__] = ACTIONS(1205), - [anon_sym___forceinline] = ACTIONS(1205), - [anon_sym_thread_local] = ACTIONS(1205), - [anon_sym___thread] = ACTIONS(1205), - [anon_sym_const] = ACTIONS(1205), - [anon_sym_constexpr] = ACTIONS(1205), - [anon_sym_volatile] = ACTIONS(1205), - [anon_sym_restrict] = ACTIONS(1205), - [anon_sym___restrict__] = ACTIONS(1205), - [anon_sym__Atomic] = ACTIONS(1205), - [anon_sym__Noreturn] = ACTIONS(1205), - [anon_sym_noreturn] = ACTIONS(1205), - [anon_sym_alignas] = ACTIONS(1205), - [anon_sym__Alignas] = ACTIONS(1205), - [sym_primitive_type] = ACTIONS(1205), - [anon_sym_enum] = ACTIONS(1205), - [anon_sym_struct] = ACTIONS(1205), - [anon_sym_union] = ACTIONS(1205), - [anon_sym_if] = ACTIONS(1205), - [anon_sym_else] = ACTIONS(1205), - [anon_sym_switch] = ACTIONS(1205), - [anon_sym_case] = ACTIONS(1205), - [anon_sym_default] = ACTIONS(1205), - [anon_sym_while] = ACTIONS(1205), - [anon_sym_do] = ACTIONS(1205), - [anon_sym_for] = ACTIONS(1205), - [anon_sym_return] = ACTIONS(1205), - [anon_sym_break] = ACTIONS(1205), - [anon_sym_continue] = ACTIONS(1205), - [anon_sym_goto] = ACTIONS(1205), - [anon_sym___try] = ACTIONS(1205), - [anon_sym___leave] = ACTIONS(1205), - [anon_sym_DASH_DASH] = ACTIONS(1207), - [anon_sym_PLUS_PLUS] = ACTIONS(1207), - [anon_sym_sizeof] = ACTIONS(1205), - [anon_sym___alignof__] = ACTIONS(1205), - [anon_sym___alignof] = ACTIONS(1205), - [anon_sym__alignof] = ACTIONS(1205), - [anon_sym_alignof] = ACTIONS(1205), - [anon_sym__Alignof] = ACTIONS(1205), - [anon_sym_offsetof] = ACTIONS(1205), - [anon_sym__Generic] = ACTIONS(1205), - [anon_sym_asm] = ACTIONS(1205), - [anon_sym___asm__] = ACTIONS(1205), - [sym_number_literal] = ACTIONS(1207), - [anon_sym_L_SQUOTE] = ACTIONS(1207), - [anon_sym_u_SQUOTE] = ACTIONS(1207), - [anon_sym_U_SQUOTE] = ACTIONS(1207), - [anon_sym_u8_SQUOTE] = ACTIONS(1207), - [anon_sym_SQUOTE] = ACTIONS(1207), - [anon_sym_L_DQUOTE] = ACTIONS(1207), - [anon_sym_u_DQUOTE] = ACTIONS(1207), - [anon_sym_U_DQUOTE] = ACTIONS(1207), - [anon_sym_u8_DQUOTE] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1207), - [sym_true] = ACTIONS(1205), - [sym_false] = ACTIONS(1205), - [anon_sym_NULL] = ACTIONS(1205), - [anon_sym_nullptr] = ACTIONS(1205), - [sym_comment] = ACTIONS(3), + [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] = { - [sym_identifier] = ACTIONS(1153), - [aux_sym_preproc_include_token1] = ACTIONS(1153), - [aux_sym_preproc_def_token1] = ACTIONS(1153), - [aux_sym_preproc_if_token1] = ACTIONS(1153), - [aux_sym_preproc_if_token2] = ACTIONS(1153), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1153), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1153), - [sym_preproc_directive] = ACTIONS(1153), - [anon_sym_LPAREN2] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1155), - [anon_sym_TILDE] = ACTIONS(1155), - [anon_sym_DASH] = ACTIONS(1153), - [anon_sym_PLUS] = ACTIONS(1153), - [anon_sym_STAR] = ACTIONS(1155), - [anon_sym_AMP] = ACTIONS(1155), - [anon_sym_SEMI] = ACTIONS(1155), - [anon_sym___extension__] = ACTIONS(1153), - [anon_sym_typedef] = ACTIONS(1153), - [anon_sym_extern] = ACTIONS(1153), - [anon_sym___attribute__] = ACTIONS(1153), - [anon_sym___scanf] = ACTIONS(1153), - [anon_sym___printf] = ACTIONS(1153), - [anon_sym___read_mostly] = ACTIONS(1153), - [anon_sym___must_hold] = ACTIONS(1153), - [anon_sym___ro_after_init] = ACTIONS(1153), - [anon_sym___noreturn] = ACTIONS(1153), - [anon_sym___cold] = ACTIONS(1153), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1155), - [anon_sym___declspec] = ACTIONS(1153), - [anon_sym___init] = ACTIONS(1153), - [anon_sym___exit] = ACTIONS(1153), - [anon_sym___cdecl] = ACTIONS(1153), - [anon_sym___clrcall] = ACTIONS(1153), - [anon_sym___stdcall] = ACTIONS(1153), - [anon_sym___fastcall] = ACTIONS(1153), - [anon_sym___thiscall] = ACTIONS(1153), - [anon_sym___vectorcall] = ACTIONS(1153), - [anon_sym_LBRACE] = ACTIONS(1155), - [anon_sym_signed] = ACTIONS(1153), - [anon_sym_unsigned] = ACTIONS(1153), - [anon_sym_long] = ACTIONS(1153), - [anon_sym_short] = ACTIONS(1153), - [anon_sym_static] = ACTIONS(1153), - [anon_sym_auto] = ACTIONS(1153), - [anon_sym_register] = ACTIONS(1153), - [anon_sym_inline] = ACTIONS(1153), - [anon_sym___inline] = ACTIONS(1153), - [anon_sym___inline__] = ACTIONS(1153), - [anon_sym___forceinline] = ACTIONS(1153), - [anon_sym_thread_local] = ACTIONS(1153), - [anon_sym___thread] = ACTIONS(1153), - [anon_sym_const] = ACTIONS(1153), - [anon_sym_constexpr] = ACTIONS(1153), - [anon_sym_volatile] = ACTIONS(1153), - [anon_sym_restrict] = ACTIONS(1153), - [anon_sym___restrict__] = ACTIONS(1153), - [anon_sym__Atomic] = ACTIONS(1153), - [anon_sym__Noreturn] = ACTIONS(1153), - [anon_sym_noreturn] = ACTIONS(1153), - [anon_sym_alignas] = ACTIONS(1153), - [anon_sym__Alignas] = ACTIONS(1153), - [sym_primitive_type] = ACTIONS(1153), - [anon_sym_enum] = ACTIONS(1153), - [anon_sym_struct] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1153), - [anon_sym_if] = ACTIONS(1153), - [anon_sym_else] = ACTIONS(1153), - [anon_sym_switch] = ACTIONS(1153), - [anon_sym_case] = ACTIONS(1153), - [anon_sym_default] = ACTIONS(1153), - [anon_sym_while] = ACTIONS(1153), - [anon_sym_do] = ACTIONS(1153), - [anon_sym_for] = ACTIONS(1153), - [anon_sym_return] = ACTIONS(1153), - [anon_sym_break] = ACTIONS(1153), - [anon_sym_continue] = ACTIONS(1153), - [anon_sym_goto] = ACTIONS(1153), - [anon_sym___try] = ACTIONS(1153), - [anon_sym___leave] = ACTIONS(1153), - [anon_sym_DASH_DASH] = ACTIONS(1155), - [anon_sym_PLUS_PLUS] = ACTIONS(1155), - [anon_sym_sizeof] = ACTIONS(1153), - [anon_sym___alignof__] = ACTIONS(1153), - [anon_sym___alignof] = ACTIONS(1153), - [anon_sym__alignof] = ACTIONS(1153), - [anon_sym_alignof] = ACTIONS(1153), - [anon_sym__Alignof] = ACTIONS(1153), - [anon_sym_offsetof] = ACTIONS(1153), - [anon_sym__Generic] = ACTIONS(1153), - [anon_sym_asm] = ACTIONS(1153), - [anon_sym___asm__] = ACTIONS(1153), - [sym_number_literal] = ACTIONS(1155), - [anon_sym_L_SQUOTE] = ACTIONS(1155), - [anon_sym_u_SQUOTE] = ACTIONS(1155), - [anon_sym_U_SQUOTE] = ACTIONS(1155), - [anon_sym_u8_SQUOTE] = ACTIONS(1155), - [anon_sym_SQUOTE] = ACTIONS(1155), - [anon_sym_L_DQUOTE] = ACTIONS(1155), - [anon_sym_u_DQUOTE] = ACTIONS(1155), - [anon_sym_U_DQUOTE] = ACTIONS(1155), - [anon_sym_u8_DQUOTE] = ACTIONS(1155), - [anon_sym_DQUOTE] = ACTIONS(1155), - [sym_true] = ACTIONS(1153), - [sym_false] = ACTIONS(1153), - [anon_sym_NULL] = ACTIONS(1153), - [anon_sym_nullptr] = ACTIONS(1153), - [sym_comment] = ACTIONS(3), + [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] = { - [ts_builtin_sym_end] = ACTIONS(1283), - [sym_identifier] = ACTIONS(1281), - [aux_sym_preproc_include_token1] = ACTIONS(1281), - [aux_sym_preproc_def_token1] = ACTIONS(1281), - [aux_sym_preproc_if_token1] = ACTIONS(1281), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1281), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1281), - [sym_preproc_directive] = ACTIONS(1281), - [anon_sym_LPAREN2] = ACTIONS(1283), - [anon_sym_BANG] = ACTIONS(1283), - [anon_sym_TILDE] = ACTIONS(1283), - [anon_sym_DASH] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1281), - [anon_sym_STAR] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SEMI] = ACTIONS(1283), - [anon_sym___extension__] = ACTIONS(1281), - [anon_sym_typedef] = ACTIONS(1281), - [anon_sym_extern] = ACTIONS(1281), - [anon_sym___attribute__] = ACTIONS(1281), - [anon_sym___scanf] = ACTIONS(1281), - [anon_sym___printf] = ACTIONS(1281), - [anon_sym___read_mostly] = ACTIONS(1281), - [anon_sym___must_hold] = ACTIONS(1281), - [anon_sym___ro_after_init] = ACTIONS(1281), - [anon_sym___noreturn] = ACTIONS(1281), - [anon_sym___cold] = ACTIONS(1281), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1283), - [anon_sym___declspec] = ACTIONS(1281), - [anon_sym___init] = ACTIONS(1281), - [anon_sym___exit] = ACTIONS(1281), - [anon_sym___cdecl] = ACTIONS(1281), - [anon_sym___clrcall] = ACTIONS(1281), - [anon_sym___stdcall] = ACTIONS(1281), - [anon_sym___fastcall] = ACTIONS(1281), - [anon_sym___thiscall] = ACTIONS(1281), - [anon_sym___vectorcall] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(1283), - [anon_sym_signed] = ACTIONS(1281), - [anon_sym_unsigned] = ACTIONS(1281), - [anon_sym_long] = ACTIONS(1281), - [anon_sym_short] = ACTIONS(1281), - [anon_sym_static] = ACTIONS(1281), - [anon_sym_auto] = ACTIONS(1281), - [anon_sym_register] = ACTIONS(1281), - [anon_sym_inline] = ACTIONS(1281), - [anon_sym___inline] = ACTIONS(1281), - [anon_sym___inline__] = ACTIONS(1281), - [anon_sym___forceinline] = ACTIONS(1281), - [anon_sym_thread_local] = ACTIONS(1281), - [anon_sym___thread] = ACTIONS(1281), - [anon_sym_const] = ACTIONS(1281), - [anon_sym_constexpr] = ACTIONS(1281), - [anon_sym_volatile] = ACTIONS(1281), - [anon_sym_restrict] = ACTIONS(1281), - [anon_sym___restrict__] = ACTIONS(1281), - [anon_sym__Atomic] = ACTIONS(1281), - [anon_sym__Noreturn] = ACTIONS(1281), - [anon_sym_noreturn] = ACTIONS(1281), - [anon_sym_alignas] = ACTIONS(1281), - [anon_sym__Alignas] = ACTIONS(1281), - [sym_primitive_type] = ACTIONS(1281), - [anon_sym_enum] = ACTIONS(1281), - [anon_sym_struct] = ACTIONS(1281), - [anon_sym_union] = ACTIONS(1281), - [anon_sym_if] = ACTIONS(1281), - [anon_sym_else] = ACTIONS(1281), - [anon_sym_switch] = ACTIONS(1281), - [anon_sym_case] = ACTIONS(1281), - [anon_sym_default] = ACTIONS(1281), - [anon_sym_while] = ACTIONS(1281), - [anon_sym_do] = ACTIONS(1281), - [anon_sym_for] = ACTIONS(1281), - [anon_sym_return] = ACTIONS(1281), - [anon_sym_break] = ACTIONS(1281), - [anon_sym_continue] = ACTIONS(1281), - [anon_sym_goto] = ACTIONS(1281), - [anon_sym___try] = ACTIONS(1281), - [anon_sym___leave] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1283), - [anon_sym_PLUS_PLUS] = ACTIONS(1283), - [anon_sym_sizeof] = ACTIONS(1281), - [anon_sym___alignof__] = ACTIONS(1281), - [anon_sym___alignof] = ACTIONS(1281), - [anon_sym__alignof] = ACTIONS(1281), - [anon_sym_alignof] = ACTIONS(1281), - [anon_sym__Alignof] = ACTIONS(1281), - [anon_sym_offsetof] = ACTIONS(1281), - [anon_sym__Generic] = ACTIONS(1281), - [anon_sym_asm] = ACTIONS(1281), - [anon_sym___asm__] = ACTIONS(1281), - [sym_number_literal] = ACTIONS(1283), - [anon_sym_L_SQUOTE] = ACTIONS(1283), - [anon_sym_u_SQUOTE] = ACTIONS(1283), - [anon_sym_U_SQUOTE] = ACTIONS(1283), - [anon_sym_u8_SQUOTE] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1283), - [anon_sym_L_DQUOTE] = ACTIONS(1283), - [anon_sym_u_DQUOTE] = ACTIONS(1283), - [anon_sym_U_DQUOTE] = ACTIONS(1283), - [anon_sym_u8_DQUOTE] = ACTIONS(1283), - [anon_sym_DQUOTE] = ACTIONS(1283), - [sym_true] = ACTIONS(1281), - [sym_false] = ACTIONS(1281), - [anon_sym_NULL] = ACTIONS(1281), - [anon_sym_nullptr] = ACTIONS(1281), - [sym_comment] = ACTIONS(3), + [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] = { - [sym_identifier] = ACTIONS(1253), - [aux_sym_preproc_include_token1] = ACTIONS(1253), - [aux_sym_preproc_def_token1] = ACTIONS(1253), - [aux_sym_preproc_if_token1] = ACTIONS(1253), - [aux_sym_preproc_if_token2] = ACTIONS(1253), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1253), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1253), - [sym_preproc_directive] = ACTIONS(1253), - [anon_sym_LPAREN2] = ACTIONS(1255), - [anon_sym_BANG] = ACTIONS(1255), - [anon_sym_TILDE] = ACTIONS(1255), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_STAR] = ACTIONS(1255), - [anon_sym_AMP] = ACTIONS(1255), - [anon_sym_SEMI] = ACTIONS(1255), - [anon_sym___extension__] = ACTIONS(1253), - [anon_sym_typedef] = ACTIONS(1253), - [anon_sym_extern] = ACTIONS(1253), - [anon_sym___attribute__] = ACTIONS(1253), - [anon_sym___scanf] = ACTIONS(1253), - [anon_sym___printf] = ACTIONS(1253), - [anon_sym___read_mostly] = ACTIONS(1253), - [anon_sym___must_hold] = ACTIONS(1253), - [anon_sym___ro_after_init] = ACTIONS(1253), - [anon_sym___noreturn] = ACTIONS(1253), - [anon_sym___cold] = ACTIONS(1253), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1255), - [anon_sym___declspec] = ACTIONS(1253), - [anon_sym___init] = ACTIONS(1253), - [anon_sym___exit] = ACTIONS(1253), - [anon_sym___cdecl] = ACTIONS(1253), - [anon_sym___clrcall] = ACTIONS(1253), - [anon_sym___stdcall] = ACTIONS(1253), - [anon_sym___fastcall] = ACTIONS(1253), - [anon_sym___thiscall] = ACTIONS(1253), - [anon_sym___vectorcall] = ACTIONS(1253), - [anon_sym_LBRACE] = ACTIONS(1255), - [anon_sym_signed] = ACTIONS(1253), - [anon_sym_unsigned] = ACTIONS(1253), - [anon_sym_long] = ACTIONS(1253), - [anon_sym_short] = ACTIONS(1253), - [anon_sym_static] = ACTIONS(1253), - [anon_sym_auto] = ACTIONS(1253), - [anon_sym_register] = ACTIONS(1253), - [anon_sym_inline] = ACTIONS(1253), - [anon_sym___inline] = ACTIONS(1253), - [anon_sym___inline__] = ACTIONS(1253), - [anon_sym___forceinline] = ACTIONS(1253), - [anon_sym_thread_local] = ACTIONS(1253), - [anon_sym___thread] = ACTIONS(1253), - [anon_sym_const] = ACTIONS(1253), - [anon_sym_constexpr] = ACTIONS(1253), - [anon_sym_volatile] = ACTIONS(1253), - [anon_sym_restrict] = ACTIONS(1253), - [anon_sym___restrict__] = ACTIONS(1253), - [anon_sym__Atomic] = ACTIONS(1253), - [anon_sym__Noreturn] = ACTIONS(1253), - [anon_sym_noreturn] = ACTIONS(1253), - [anon_sym_alignas] = ACTIONS(1253), - [anon_sym__Alignas] = ACTIONS(1253), - [sym_primitive_type] = ACTIONS(1253), - [anon_sym_enum] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1253), - [anon_sym_union] = ACTIONS(1253), - [anon_sym_if] = ACTIONS(1253), - [anon_sym_else] = ACTIONS(1253), - [anon_sym_switch] = ACTIONS(1253), - [anon_sym_case] = ACTIONS(1253), - [anon_sym_default] = ACTIONS(1253), - [anon_sym_while] = ACTIONS(1253), - [anon_sym_do] = ACTIONS(1253), - [anon_sym_for] = ACTIONS(1253), - [anon_sym_return] = ACTIONS(1253), - [anon_sym_break] = ACTIONS(1253), - [anon_sym_continue] = ACTIONS(1253), - [anon_sym_goto] = ACTIONS(1253), - [anon_sym___try] = ACTIONS(1253), - [anon_sym___leave] = ACTIONS(1253), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_sizeof] = ACTIONS(1253), - [anon_sym___alignof__] = ACTIONS(1253), - [anon_sym___alignof] = ACTIONS(1253), - [anon_sym__alignof] = ACTIONS(1253), - [anon_sym_alignof] = ACTIONS(1253), - [anon_sym__Alignof] = ACTIONS(1253), - [anon_sym_offsetof] = ACTIONS(1253), - [anon_sym__Generic] = ACTIONS(1253), - [anon_sym_asm] = ACTIONS(1253), - [anon_sym___asm__] = ACTIONS(1253), - [sym_number_literal] = ACTIONS(1255), - [anon_sym_L_SQUOTE] = ACTIONS(1255), - [anon_sym_u_SQUOTE] = ACTIONS(1255), - [anon_sym_U_SQUOTE] = ACTIONS(1255), - [anon_sym_u8_SQUOTE] = ACTIONS(1255), - [anon_sym_SQUOTE] = ACTIONS(1255), - [anon_sym_L_DQUOTE] = ACTIONS(1255), - [anon_sym_u_DQUOTE] = ACTIONS(1255), - [anon_sym_U_DQUOTE] = ACTIONS(1255), - [anon_sym_u8_DQUOTE] = ACTIONS(1255), - [anon_sym_DQUOTE] = ACTIONS(1255), - [sym_true] = ACTIONS(1253), - [sym_false] = ACTIONS(1253), - [anon_sym_NULL] = ACTIONS(1253), - [anon_sym_nullptr] = ACTIONS(1253), - [sym_comment] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1272), + [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_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), }, [243] = { - [sym_identifier] = ACTIONS(1153), - [aux_sym_preproc_include_token1] = ACTIONS(1153), - [aux_sym_preproc_def_token1] = ACTIONS(1153), - [aux_sym_preproc_if_token1] = ACTIONS(1153), - [aux_sym_preproc_if_token2] = ACTIONS(1153), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1153), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1153), - [sym_preproc_directive] = ACTIONS(1153), - [anon_sym_LPAREN2] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1155), - [anon_sym_TILDE] = ACTIONS(1155), - [anon_sym_DASH] = ACTIONS(1153), - [anon_sym_PLUS] = ACTIONS(1153), - [anon_sym_STAR] = ACTIONS(1155), - [anon_sym_AMP] = ACTIONS(1155), - [anon_sym_SEMI] = ACTIONS(1155), - [anon_sym___extension__] = ACTIONS(1153), - [anon_sym_typedef] = ACTIONS(1153), - [anon_sym_extern] = ACTIONS(1153), - [anon_sym___attribute__] = ACTIONS(1153), - [anon_sym___scanf] = ACTIONS(1153), - [anon_sym___printf] = ACTIONS(1153), - [anon_sym___read_mostly] = ACTIONS(1153), - [anon_sym___must_hold] = ACTIONS(1153), - [anon_sym___ro_after_init] = ACTIONS(1153), - [anon_sym___noreturn] = ACTIONS(1153), - [anon_sym___cold] = ACTIONS(1153), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1155), - [anon_sym___declspec] = ACTIONS(1153), - [anon_sym___init] = ACTIONS(1153), - [anon_sym___exit] = ACTIONS(1153), - [anon_sym___cdecl] = ACTIONS(1153), - [anon_sym___clrcall] = ACTIONS(1153), - [anon_sym___stdcall] = ACTIONS(1153), - [anon_sym___fastcall] = ACTIONS(1153), - [anon_sym___thiscall] = ACTIONS(1153), - [anon_sym___vectorcall] = ACTIONS(1153), - [anon_sym_LBRACE] = ACTIONS(1155), - [anon_sym_signed] = ACTIONS(1153), - [anon_sym_unsigned] = ACTIONS(1153), - [anon_sym_long] = ACTIONS(1153), - [anon_sym_short] = ACTIONS(1153), - [anon_sym_static] = ACTIONS(1153), - [anon_sym_auto] = ACTIONS(1153), - [anon_sym_register] = ACTIONS(1153), - [anon_sym_inline] = ACTIONS(1153), - [anon_sym___inline] = ACTIONS(1153), - [anon_sym___inline__] = ACTIONS(1153), - [anon_sym___forceinline] = ACTIONS(1153), - [anon_sym_thread_local] = ACTIONS(1153), - [anon_sym___thread] = ACTIONS(1153), - [anon_sym_const] = ACTIONS(1153), - [anon_sym_constexpr] = ACTIONS(1153), - [anon_sym_volatile] = ACTIONS(1153), - [anon_sym_restrict] = ACTIONS(1153), - [anon_sym___restrict__] = ACTIONS(1153), - [anon_sym__Atomic] = ACTIONS(1153), - [anon_sym__Noreturn] = ACTIONS(1153), - [anon_sym_noreturn] = ACTIONS(1153), - [anon_sym_alignas] = ACTIONS(1153), - [anon_sym__Alignas] = ACTIONS(1153), - [sym_primitive_type] = ACTIONS(1153), - [anon_sym_enum] = ACTIONS(1153), - [anon_sym_struct] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1153), - [anon_sym_if] = ACTIONS(1153), - [anon_sym_else] = ACTIONS(1153), - [anon_sym_switch] = ACTIONS(1153), - [anon_sym_case] = ACTIONS(1153), - [anon_sym_default] = ACTIONS(1153), - [anon_sym_while] = ACTIONS(1153), - [anon_sym_do] = ACTIONS(1153), - [anon_sym_for] = ACTIONS(1153), - [anon_sym_return] = ACTIONS(1153), - [anon_sym_break] = ACTIONS(1153), - [anon_sym_continue] = ACTIONS(1153), - [anon_sym_goto] = ACTIONS(1153), - [anon_sym___try] = ACTIONS(1153), - [anon_sym___leave] = ACTIONS(1153), - [anon_sym_DASH_DASH] = ACTIONS(1155), - [anon_sym_PLUS_PLUS] = ACTIONS(1155), - [anon_sym_sizeof] = ACTIONS(1153), - [anon_sym___alignof__] = ACTIONS(1153), - [anon_sym___alignof] = ACTIONS(1153), - [anon_sym__alignof] = ACTIONS(1153), - [anon_sym_alignof] = ACTIONS(1153), - [anon_sym__Alignof] = ACTIONS(1153), - [anon_sym_offsetof] = ACTIONS(1153), - [anon_sym__Generic] = ACTIONS(1153), - [anon_sym_asm] = ACTIONS(1153), - [anon_sym___asm__] = ACTIONS(1153), - [sym_number_literal] = ACTIONS(1155), - [anon_sym_L_SQUOTE] = ACTIONS(1155), - [anon_sym_u_SQUOTE] = ACTIONS(1155), - [anon_sym_U_SQUOTE] = ACTIONS(1155), - [anon_sym_u8_SQUOTE] = ACTIONS(1155), - [anon_sym_SQUOTE] = ACTIONS(1155), - [anon_sym_L_DQUOTE] = ACTIONS(1155), - [anon_sym_u_DQUOTE] = ACTIONS(1155), - [anon_sym_U_DQUOTE] = ACTIONS(1155), - [anon_sym_u8_DQUOTE] = ACTIONS(1155), - [anon_sym_DQUOTE] = ACTIONS(1155), - [sym_true] = ACTIONS(1153), - [sym_false] = ACTIONS(1153), - [anon_sym_NULL] = ACTIONS(1153), - [anon_sym_nullptr] = ACTIONS(1153), - [sym_comment] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1260), + [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_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), }, [244] = { - [sym_identifier] = ACTIONS(1161), - [aux_sym_preproc_include_token1] = ACTIONS(1161), - [aux_sym_preproc_def_token1] = ACTIONS(1161), - [aux_sym_preproc_if_token1] = ACTIONS(1161), - [aux_sym_preproc_if_token2] = ACTIONS(1161), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1161), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1161), - [sym_preproc_directive] = ACTIONS(1161), - [anon_sym_LPAREN2] = ACTIONS(1163), - [anon_sym_BANG] = ACTIONS(1163), - [anon_sym_TILDE] = ACTIONS(1163), - [anon_sym_DASH] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_STAR] = ACTIONS(1163), - [anon_sym_AMP] = ACTIONS(1163), - [anon_sym_SEMI] = ACTIONS(1163), - [anon_sym___extension__] = ACTIONS(1161), - [anon_sym_typedef] = ACTIONS(1161), - [anon_sym_extern] = ACTIONS(1161), - [anon_sym___attribute__] = ACTIONS(1161), - [anon_sym___scanf] = ACTIONS(1161), - [anon_sym___printf] = ACTIONS(1161), - [anon_sym___read_mostly] = ACTIONS(1161), - [anon_sym___must_hold] = ACTIONS(1161), - [anon_sym___ro_after_init] = ACTIONS(1161), - [anon_sym___noreturn] = ACTIONS(1161), - [anon_sym___cold] = ACTIONS(1161), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1163), - [anon_sym___declspec] = ACTIONS(1161), - [anon_sym___init] = ACTIONS(1161), - [anon_sym___exit] = ACTIONS(1161), - [anon_sym___cdecl] = ACTIONS(1161), - [anon_sym___clrcall] = ACTIONS(1161), - [anon_sym___stdcall] = ACTIONS(1161), - [anon_sym___fastcall] = ACTIONS(1161), - [anon_sym___thiscall] = ACTIONS(1161), - [anon_sym___vectorcall] = ACTIONS(1161), - [anon_sym_LBRACE] = ACTIONS(1163), - [anon_sym_signed] = ACTIONS(1161), - [anon_sym_unsigned] = ACTIONS(1161), - [anon_sym_long] = ACTIONS(1161), - [anon_sym_short] = ACTIONS(1161), - [anon_sym_static] = ACTIONS(1161), - [anon_sym_auto] = ACTIONS(1161), - [anon_sym_register] = ACTIONS(1161), - [anon_sym_inline] = ACTIONS(1161), - [anon_sym___inline] = ACTIONS(1161), - [anon_sym___inline__] = ACTIONS(1161), - [anon_sym___forceinline] = ACTIONS(1161), - [anon_sym_thread_local] = ACTIONS(1161), - [anon_sym___thread] = ACTIONS(1161), - [anon_sym_const] = ACTIONS(1161), - [anon_sym_constexpr] = ACTIONS(1161), - [anon_sym_volatile] = ACTIONS(1161), - [anon_sym_restrict] = ACTIONS(1161), - [anon_sym___restrict__] = ACTIONS(1161), - [anon_sym__Atomic] = ACTIONS(1161), - [anon_sym__Noreturn] = ACTIONS(1161), - [anon_sym_noreturn] = ACTIONS(1161), - [anon_sym_alignas] = ACTIONS(1161), - [anon_sym__Alignas] = ACTIONS(1161), - [sym_primitive_type] = ACTIONS(1161), - [anon_sym_enum] = ACTIONS(1161), - [anon_sym_struct] = ACTIONS(1161), - [anon_sym_union] = ACTIONS(1161), - [anon_sym_if] = ACTIONS(1161), - [anon_sym_else] = ACTIONS(1161), - [anon_sym_switch] = ACTIONS(1161), - [anon_sym_case] = ACTIONS(1161), - [anon_sym_default] = ACTIONS(1161), - [anon_sym_while] = ACTIONS(1161), - [anon_sym_do] = ACTIONS(1161), - [anon_sym_for] = ACTIONS(1161), - [anon_sym_return] = ACTIONS(1161), - [anon_sym_break] = ACTIONS(1161), - [anon_sym_continue] = ACTIONS(1161), - [anon_sym_goto] = ACTIONS(1161), - [anon_sym___try] = ACTIONS(1161), - [anon_sym___leave] = ACTIONS(1161), - [anon_sym_DASH_DASH] = ACTIONS(1163), - [anon_sym_PLUS_PLUS] = ACTIONS(1163), - [anon_sym_sizeof] = ACTIONS(1161), - [anon_sym___alignof__] = ACTIONS(1161), - [anon_sym___alignof] = ACTIONS(1161), - [anon_sym__alignof] = ACTIONS(1161), - [anon_sym_alignof] = ACTIONS(1161), - [anon_sym__Alignof] = ACTIONS(1161), - [anon_sym_offsetof] = ACTIONS(1161), - [anon_sym__Generic] = ACTIONS(1161), - [anon_sym_asm] = ACTIONS(1161), - [anon_sym___asm__] = ACTIONS(1161), - [sym_number_literal] = ACTIONS(1163), - [anon_sym_L_SQUOTE] = ACTIONS(1163), - [anon_sym_u_SQUOTE] = ACTIONS(1163), - [anon_sym_U_SQUOTE] = ACTIONS(1163), - [anon_sym_u8_SQUOTE] = ACTIONS(1163), - [anon_sym_SQUOTE] = ACTIONS(1163), - [anon_sym_L_DQUOTE] = ACTIONS(1163), - [anon_sym_u_DQUOTE] = ACTIONS(1163), - [anon_sym_U_DQUOTE] = ACTIONS(1163), - [anon_sym_u8_DQUOTE] = ACTIONS(1163), - [anon_sym_DQUOTE] = ACTIONS(1163), - [sym_true] = ACTIONS(1161), - [sym_false] = ACTIONS(1161), - [anon_sym_NULL] = ACTIONS(1161), - [anon_sym_nullptr] = ACTIONS(1161), - [sym_comment] = ACTIONS(3), + [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_RBRACE] = 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), }, [245] = { - [ts_builtin_sym_end] = ACTIONS(1239), - [sym_identifier] = ACTIONS(1237), - [aux_sym_preproc_include_token1] = ACTIONS(1237), - [aux_sym_preproc_def_token1] = ACTIONS(1237), - [aux_sym_preproc_if_token1] = ACTIONS(1237), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1237), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1237), - [sym_preproc_directive] = ACTIONS(1237), - [anon_sym_LPAREN2] = ACTIONS(1239), - [anon_sym_BANG] = ACTIONS(1239), - [anon_sym_TILDE] = ACTIONS(1239), - [anon_sym_DASH] = ACTIONS(1237), - [anon_sym_PLUS] = ACTIONS(1237), - [anon_sym_STAR] = ACTIONS(1239), - [anon_sym_AMP] = ACTIONS(1239), - [anon_sym_SEMI] = ACTIONS(1239), - [anon_sym___extension__] = ACTIONS(1237), - [anon_sym_typedef] = ACTIONS(1237), - [anon_sym_extern] = ACTIONS(1237), - [anon_sym___attribute__] = ACTIONS(1237), - [anon_sym___scanf] = ACTIONS(1237), - [anon_sym___printf] = ACTIONS(1237), - [anon_sym___read_mostly] = ACTIONS(1237), - [anon_sym___must_hold] = ACTIONS(1237), - [anon_sym___ro_after_init] = ACTIONS(1237), - [anon_sym___noreturn] = ACTIONS(1237), - [anon_sym___cold] = ACTIONS(1237), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1239), - [anon_sym___declspec] = ACTIONS(1237), - [anon_sym___init] = ACTIONS(1237), - [anon_sym___exit] = ACTIONS(1237), - [anon_sym___cdecl] = ACTIONS(1237), - [anon_sym___clrcall] = ACTIONS(1237), - [anon_sym___stdcall] = ACTIONS(1237), - [anon_sym___fastcall] = ACTIONS(1237), - [anon_sym___thiscall] = ACTIONS(1237), - [anon_sym___vectorcall] = ACTIONS(1237), - [anon_sym_LBRACE] = ACTIONS(1239), - [anon_sym_signed] = ACTIONS(1237), - [anon_sym_unsigned] = ACTIONS(1237), - [anon_sym_long] = ACTIONS(1237), - [anon_sym_short] = ACTIONS(1237), - [anon_sym_static] = ACTIONS(1237), - [anon_sym_auto] = ACTIONS(1237), - [anon_sym_register] = ACTIONS(1237), - [anon_sym_inline] = ACTIONS(1237), - [anon_sym___inline] = ACTIONS(1237), - [anon_sym___inline__] = ACTIONS(1237), - [anon_sym___forceinline] = ACTIONS(1237), - [anon_sym_thread_local] = ACTIONS(1237), - [anon_sym___thread] = ACTIONS(1237), - [anon_sym_const] = ACTIONS(1237), - [anon_sym_constexpr] = ACTIONS(1237), - [anon_sym_volatile] = ACTIONS(1237), - [anon_sym_restrict] = ACTIONS(1237), - [anon_sym___restrict__] = ACTIONS(1237), - [anon_sym__Atomic] = ACTIONS(1237), - [anon_sym__Noreturn] = ACTIONS(1237), - [anon_sym_noreturn] = ACTIONS(1237), - [anon_sym_alignas] = ACTIONS(1237), - [anon_sym__Alignas] = ACTIONS(1237), - [sym_primitive_type] = ACTIONS(1237), - [anon_sym_enum] = ACTIONS(1237), - [anon_sym_struct] = ACTIONS(1237), - [anon_sym_union] = ACTIONS(1237), - [anon_sym_if] = ACTIONS(1237), - [anon_sym_else] = ACTIONS(1237), - [anon_sym_switch] = ACTIONS(1237), - [anon_sym_case] = ACTIONS(1237), - [anon_sym_default] = ACTIONS(1237), - [anon_sym_while] = ACTIONS(1237), - [anon_sym_do] = ACTIONS(1237), - [anon_sym_for] = ACTIONS(1237), - [anon_sym_return] = ACTIONS(1237), - [anon_sym_break] = ACTIONS(1237), - [anon_sym_continue] = ACTIONS(1237), - [anon_sym_goto] = ACTIONS(1237), - [anon_sym___try] = ACTIONS(1237), - [anon_sym___leave] = ACTIONS(1237), - [anon_sym_DASH_DASH] = ACTIONS(1239), - [anon_sym_PLUS_PLUS] = ACTIONS(1239), - [anon_sym_sizeof] = ACTIONS(1237), - [anon_sym___alignof__] = ACTIONS(1237), - [anon_sym___alignof] = ACTIONS(1237), - [anon_sym__alignof] = ACTIONS(1237), - [anon_sym_alignof] = ACTIONS(1237), - [anon_sym__Alignof] = ACTIONS(1237), - [anon_sym_offsetof] = ACTIONS(1237), - [anon_sym__Generic] = ACTIONS(1237), - [anon_sym_asm] = ACTIONS(1237), - [anon_sym___asm__] = ACTIONS(1237), - [sym_number_literal] = ACTIONS(1239), - [anon_sym_L_SQUOTE] = ACTIONS(1239), - [anon_sym_u_SQUOTE] = ACTIONS(1239), - [anon_sym_U_SQUOTE] = ACTIONS(1239), - [anon_sym_u8_SQUOTE] = ACTIONS(1239), - [anon_sym_SQUOTE] = ACTIONS(1239), - [anon_sym_L_DQUOTE] = ACTIONS(1239), - [anon_sym_u_DQUOTE] = ACTIONS(1239), - [anon_sym_U_DQUOTE] = ACTIONS(1239), - [anon_sym_u8_DQUOTE] = ACTIONS(1239), - [anon_sym_DQUOTE] = ACTIONS(1239), - [sym_true] = ACTIONS(1237), - [sym_false] = ACTIONS(1237), - [anon_sym_NULL] = ACTIONS(1237), - [anon_sym_nullptr] = ACTIONS(1237), - [sym_comment] = ACTIONS(3), + [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(1279), - [sym_identifier] = ACTIONS(1277), - [aux_sym_preproc_include_token1] = ACTIONS(1277), - [aux_sym_preproc_def_token1] = ACTIONS(1277), - [aux_sym_preproc_if_token1] = ACTIONS(1277), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1277), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1277), - [sym_preproc_directive] = ACTIONS(1277), - [anon_sym_LPAREN2] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_DASH] = ACTIONS(1277), - [anon_sym_PLUS] = ACTIONS(1277), - [anon_sym_STAR] = ACTIONS(1279), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_SEMI] = ACTIONS(1279), - [anon_sym___extension__] = ACTIONS(1277), - [anon_sym_typedef] = ACTIONS(1277), - [anon_sym_extern] = ACTIONS(1277), - [anon_sym___attribute__] = ACTIONS(1277), - [anon_sym___scanf] = ACTIONS(1277), - [anon_sym___printf] = ACTIONS(1277), - [anon_sym___read_mostly] = ACTIONS(1277), - [anon_sym___must_hold] = ACTIONS(1277), - [anon_sym___ro_after_init] = ACTIONS(1277), - [anon_sym___noreturn] = ACTIONS(1277), - [anon_sym___cold] = ACTIONS(1277), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1279), - [anon_sym___declspec] = ACTIONS(1277), - [anon_sym___init] = ACTIONS(1277), - [anon_sym___exit] = ACTIONS(1277), - [anon_sym___cdecl] = ACTIONS(1277), - [anon_sym___clrcall] = ACTIONS(1277), - [anon_sym___stdcall] = ACTIONS(1277), - [anon_sym___fastcall] = ACTIONS(1277), - [anon_sym___thiscall] = ACTIONS(1277), - [anon_sym___vectorcall] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(1279), - [anon_sym_signed] = ACTIONS(1277), - [anon_sym_unsigned] = ACTIONS(1277), - [anon_sym_long] = ACTIONS(1277), - [anon_sym_short] = ACTIONS(1277), - [anon_sym_static] = ACTIONS(1277), - [anon_sym_auto] = ACTIONS(1277), - [anon_sym_register] = ACTIONS(1277), - [anon_sym_inline] = ACTIONS(1277), - [anon_sym___inline] = ACTIONS(1277), - [anon_sym___inline__] = ACTIONS(1277), - [anon_sym___forceinline] = ACTIONS(1277), - [anon_sym_thread_local] = ACTIONS(1277), - [anon_sym___thread] = ACTIONS(1277), - [anon_sym_const] = ACTIONS(1277), - [anon_sym_constexpr] = ACTIONS(1277), - [anon_sym_volatile] = ACTIONS(1277), - [anon_sym_restrict] = ACTIONS(1277), - [anon_sym___restrict__] = ACTIONS(1277), - [anon_sym__Atomic] = ACTIONS(1277), - [anon_sym__Noreturn] = ACTIONS(1277), - [anon_sym_noreturn] = ACTIONS(1277), - [anon_sym_alignas] = ACTIONS(1277), - [anon_sym__Alignas] = ACTIONS(1277), - [sym_primitive_type] = ACTIONS(1277), - [anon_sym_enum] = ACTIONS(1277), - [anon_sym_struct] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1277), - [anon_sym_if] = ACTIONS(1277), - [anon_sym_else] = ACTIONS(1277), - [anon_sym_switch] = ACTIONS(1277), - [anon_sym_case] = ACTIONS(1277), - [anon_sym_default] = ACTIONS(1277), - [anon_sym_while] = ACTIONS(1277), - [anon_sym_do] = ACTIONS(1277), - [anon_sym_for] = ACTIONS(1277), - [anon_sym_return] = ACTIONS(1277), - [anon_sym_break] = ACTIONS(1277), - [anon_sym_continue] = ACTIONS(1277), - [anon_sym_goto] = ACTIONS(1277), - [anon_sym___try] = ACTIONS(1277), - [anon_sym___leave] = ACTIONS(1277), - [anon_sym_DASH_DASH] = ACTIONS(1279), - [anon_sym_PLUS_PLUS] = ACTIONS(1279), - [anon_sym_sizeof] = ACTIONS(1277), - [anon_sym___alignof__] = ACTIONS(1277), - [anon_sym___alignof] = ACTIONS(1277), - [anon_sym__alignof] = ACTIONS(1277), - [anon_sym_alignof] = ACTIONS(1277), - [anon_sym__Alignof] = ACTIONS(1277), - [anon_sym_offsetof] = ACTIONS(1277), - [anon_sym__Generic] = ACTIONS(1277), - [anon_sym_asm] = ACTIONS(1277), - [anon_sym___asm__] = ACTIONS(1277), - [sym_number_literal] = ACTIONS(1279), - [anon_sym_L_SQUOTE] = ACTIONS(1279), - [anon_sym_u_SQUOTE] = ACTIONS(1279), - [anon_sym_U_SQUOTE] = ACTIONS(1279), - [anon_sym_u8_SQUOTE] = ACTIONS(1279), - [anon_sym_SQUOTE] = ACTIONS(1279), - [anon_sym_L_DQUOTE] = ACTIONS(1279), - [anon_sym_u_DQUOTE] = ACTIONS(1279), - [anon_sym_U_DQUOTE] = ACTIONS(1279), - [anon_sym_u8_DQUOTE] = ACTIONS(1279), - [anon_sym_DQUOTE] = ACTIONS(1279), - [sym_true] = ACTIONS(1277), - [sym_false] = ACTIONS(1277), - [anon_sym_NULL] = ACTIONS(1277), - [anon_sym_nullptr] = ACTIONS(1277), - [sym_comment] = ACTIONS(3), + [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), }, [247] = { - [sym_identifier] = ACTIONS(1225), - [aux_sym_preproc_include_token1] = ACTIONS(1225), - [aux_sym_preproc_def_token1] = ACTIONS(1225), - [aux_sym_preproc_if_token1] = ACTIONS(1225), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1225), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1225), - [sym_preproc_directive] = ACTIONS(1225), - [anon_sym_LPAREN2] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_TILDE] = ACTIONS(1227), - [anon_sym_DASH] = ACTIONS(1225), - [anon_sym_PLUS] = ACTIONS(1225), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1227), - [anon_sym_SEMI] = ACTIONS(1227), - [anon_sym___extension__] = ACTIONS(1225), - [anon_sym_typedef] = ACTIONS(1225), - [anon_sym_extern] = ACTIONS(1225), - [anon_sym___attribute__] = ACTIONS(1225), - [anon_sym___scanf] = ACTIONS(1225), - [anon_sym___printf] = ACTIONS(1225), - [anon_sym___read_mostly] = ACTIONS(1225), - [anon_sym___must_hold] = ACTIONS(1225), - [anon_sym___ro_after_init] = ACTIONS(1225), - [anon_sym___noreturn] = ACTIONS(1225), - [anon_sym___cold] = ACTIONS(1225), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1227), - [anon_sym___declspec] = ACTIONS(1225), - [anon_sym___init] = ACTIONS(1225), - [anon_sym___exit] = ACTIONS(1225), - [anon_sym___cdecl] = ACTIONS(1225), - [anon_sym___clrcall] = ACTIONS(1225), - [anon_sym___stdcall] = ACTIONS(1225), - [anon_sym___fastcall] = ACTIONS(1225), - [anon_sym___thiscall] = ACTIONS(1225), - [anon_sym___vectorcall] = ACTIONS(1225), - [anon_sym_LBRACE] = ACTIONS(1227), - [anon_sym_RBRACE] = ACTIONS(1227), - [anon_sym_signed] = ACTIONS(1225), - [anon_sym_unsigned] = ACTIONS(1225), - [anon_sym_long] = ACTIONS(1225), - [anon_sym_short] = ACTIONS(1225), - [anon_sym_static] = ACTIONS(1225), - [anon_sym_auto] = ACTIONS(1225), - [anon_sym_register] = ACTIONS(1225), - [anon_sym_inline] = ACTIONS(1225), - [anon_sym___inline] = ACTIONS(1225), - [anon_sym___inline__] = ACTIONS(1225), - [anon_sym___forceinline] = ACTIONS(1225), - [anon_sym_thread_local] = ACTIONS(1225), - [anon_sym___thread] = ACTIONS(1225), - [anon_sym_const] = ACTIONS(1225), - [anon_sym_constexpr] = ACTIONS(1225), - [anon_sym_volatile] = ACTIONS(1225), - [anon_sym_restrict] = ACTIONS(1225), - [anon_sym___restrict__] = ACTIONS(1225), - [anon_sym__Atomic] = ACTIONS(1225), - [anon_sym__Noreturn] = ACTIONS(1225), - [anon_sym_noreturn] = ACTIONS(1225), - [anon_sym_alignas] = ACTIONS(1225), - [anon_sym__Alignas] = ACTIONS(1225), - [sym_primitive_type] = ACTIONS(1225), - [anon_sym_enum] = ACTIONS(1225), - [anon_sym_struct] = ACTIONS(1225), - [anon_sym_union] = ACTIONS(1225), - [anon_sym_if] = ACTIONS(1225), - [anon_sym_else] = ACTIONS(1225), - [anon_sym_switch] = ACTIONS(1225), - [anon_sym_case] = ACTIONS(1225), - [anon_sym_default] = ACTIONS(1225), - [anon_sym_while] = ACTIONS(1225), - [anon_sym_do] = ACTIONS(1225), - [anon_sym_for] = ACTIONS(1225), - [anon_sym_return] = ACTIONS(1225), - [anon_sym_break] = ACTIONS(1225), - [anon_sym_continue] = ACTIONS(1225), - [anon_sym_goto] = ACTIONS(1225), - [anon_sym___try] = ACTIONS(1225), - [anon_sym___leave] = ACTIONS(1225), - [anon_sym_DASH_DASH] = ACTIONS(1227), - [anon_sym_PLUS_PLUS] = ACTIONS(1227), - [anon_sym_sizeof] = ACTIONS(1225), - [anon_sym___alignof__] = ACTIONS(1225), - [anon_sym___alignof] = ACTIONS(1225), - [anon_sym__alignof] = ACTIONS(1225), - [anon_sym_alignof] = ACTIONS(1225), - [anon_sym__Alignof] = ACTIONS(1225), - [anon_sym_offsetof] = ACTIONS(1225), - [anon_sym__Generic] = ACTIONS(1225), - [anon_sym_asm] = ACTIONS(1225), - [anon_sym___asm__] = ACTIONS(1225), - [sym_number_literal] = ACTIONS(1227), - [anon_sym_L_SQUOTE] = ACTIONS(1227), - [anon_sym_u_SQUOTE] = ACTIONS(1227), - [anon_sym_U_SQUOTE] = ACTIONS(1227), - [anon_sym_u8_SQUOTE] = ACTIONS(1227), - [anon_sym_SQUOTE] = ACTIONS(1227), - [anon_sym_L_DQUOTE] = ACTIONS(1227), - [anon_sym_u_DQUOTE] = ACTIONS(1227), - [anon_sym_U_DQUOTE] = ACTIONS(1227), - [anon_sym_u8_DQUOTE] = ACTIONS(1227), - [anon_sym_DQUOTE] = ACTIONS(1227), - [sym_true] = ACTIONS(1225), - [sym_false] = ACTIONS(1225), - [anon_sym_NULL] = ACTIONS(1225), - [anon_sym_nullptr] = ACTIONS(1225), - [sym_comment] = ACTIONS(3), + [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(1161), - [aux_sym_preproc_include_token1] = ACTIONS(1161), - [aux_sym_preproc_def_token1] = ACTIONS(1161), - [aux_sym_preproc_if_token1] = ACTIONS(1161), - [aux_sym_preproc_if_token2] = ACTIONS(1161), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1161), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1161), - [sym_preproc_directive] = ACTIONS(1161), - [anon_sym_LPAREN2] = ACTIONS(1163), - [anon_sym_BANG] = ACTIONS(1163), - [anon_sym_TILDE] = ACTIONS(1163), - [anon_sym_DASH] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_STAR] = ACTIONS(1163), - [anon_sym_AMP] = ACTIONS(1163), - [anon_sym_SEMI] = ACTIONS(1163), - [anon_sym___extension__] = ACTIONS(1161), - [anon_sym_typedef] = ACTIONS(1161), - [anon_sym_extern] = ACTIONS(1161), - [anon_sym___attribute__] = ACTIONS(1161), - [anon_sym___scanf] = ACTIONS(1161), - [anon_sym___printf] = ACTIONS(1161), - [anon_sym___read_mostly] = ACTIONS(1161), - [anon_sym___must_hold] = ACTIONS(1161), - [anon_sym___ro_after_init] = ACTIONS(1161), - [anon_sym___noreturn] = ACTIONS(1161), - [anon_sym___cold] = ACTIONS(1161), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1163), - [anon_sym___declspec] = ACTIONS(1161), - [anon_sym___init] = ACTIONS(1161), - [anon_sym___exit] = ACTIONS(1161), - [anon_sym___cdecl] = ACTIONS(1161), - [anon_sym___clrcall] = ACTIONS(1161), - [anon_sym___stdcall] = ACTIONS(1161), - [anon_sym___fastcall] = ACTIONS(1161), - [anon_sym___thiscall] = ACTIONS(1161), - [anon_sym___vectorcall] = ACTIONS(1161), - [anon_sym_LBRACE] = ACTIONS(1163), - [anon_sym_signed] = ACTIONS(1161), - [anon_sym_unsigned] = ACTIONS(1161), - [anon_sym_long] = ACTIONS(1161), - [anon_sym_short] = ACTIONS(1161), - [anon_sym_static] = ACTIONS(1161), - [anon_sym_auto] = ACTIONS(1161), - [anon_sym_register] = ACTIONS(1161), - [anon_sym_inline] = ACTIONS(1161), - [anon_sym___inline] = ACTIONS(1161), - [anon_sym___inline__] = ACTIONS(1161), - [anon_sym___forceinline] = ACTIONS(1161), - [anon_sym_thread_local] = ACTIONS(1161), - [anon_sym___thread] = ACTIONS(1161), - [anon_sym_const] = ACTIONS(1161), - [anon_sym_constexpr] = ACTIONS(1161), - [anon_sym_volatile] = ACTIONS(1161), - [anon_sym_restrict] = ACTIONS(1161), - [anon_sym___restrict__] = ACTIONS(1161), - [anon_sym__Atomic] = ACTIONS(1161), - [anon_sym__Noreturn] = ACTIONS(1161), - [anon_sym_noreturn] = ACTIONS(1161), - [anon_sym_alignas] = ACTIONS(1161), - [anon_sym__Alignas] = ACTIONS(1161), - [sym_primitive_type] = ACTIONS(1161), - [anon_sym_enum] = ACTIONS(1161), - [anon_sym_struct] = ACTIONS(1161), - [anon_sym_union] = ACTIONS(1161), - [anon_sym_if] = ACTIONS(1161), - [anon_sym_else] = ACTIONS(1161), - [anon_sym_switch] = ACTIONS(1161), - [anon_sym_case] = ACTIONS(1161), - [anon_sym_default] = ACTIONS(1161), - [anon_sym_while] = ACTIONS(1161), - [anon_sym_do] = ACTIONS(1161), - [anon_sym_for] = ACTIONS(1161), - [anon_sym_return] = ACTIONS(1161), - [anon_sym_break] = ACTIONS(1161), - [anon_sym_continue] = ACTIONS(1161), - [anon_sym_goto] = ACTIONS(1161), - [anon_sym___try] = ACTIONS(1161), - [anon_sym___leave] = ACTIONS(1161), - [anon_sym_DASH_DASH] = ACTIONS(1163), - [anon_sym_PLUS_PLUS] = ACTIONS(1163), - [anon_sym_sizeof] = ACTIONS(1161), - [anon_sym___alignof__] = ACTIONS(1161), - [anon_sym___alignof] = ACTIONS(1161), - [anon_sym__alignof] = ACTIONS(1161), - [anon_sym_alignof] = ACTIONS(1161), - [anon_sym__Alignof] = ACTIONS(1161), - [anon_sym_offsetof] = ACTIONS(1161), - [anon_sym__Generic] = ACTIONS(1161), - [anon_sym_asm] = ACTIONS(1161), - [anon_sym___asm__] = ACTIONS(1161), - [sym_number_literal] = ACTIONS(1163), - [anon_sym_L_SQUOTE] = ACTIONS(1163), - [anon_sym_u_SQUOTE] = ACTIONS(1163), - [anon_sym_U_SQUOTE] = ACTIONS(1163), - [anon_sym_u8_SQUOTE] = ACTIONS(1163), - [anon_sym_SQUOTE] = ACTIONS(1163), - [anon_sym_L_DQUOTE] = ACTIONS(1163), - [anon_sym_u_DQUOTE] = ACTIONS(1163), - [anon_sym_U_DQUOTE] = ACTIONS(1163), - [anon_sym_u8_DQUOTE] = ACTIONS(1163), - [anon_sym_DQUOTE] = ACTIONS(1163), - [sym_true] = ACTIONS(1161), - [sym_false] = ACTIONS(1161), - [anon_sym_NULL] = ACTIONS(1161), - [anon_sym_nullptr] = ACTIONS(1161), - [sym_comment] = ACTIONS(3), + [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), }, [249] = { - [sym_identifier] = ACTIONS(1165), - [aux_sym_preproc_include_token1] = ACTIONS(1165), - [aux_sym_preproc_def_token1] = ACTIONS(1165), - [aux_sym_preproc_if_token1] = ACTIONS(1165), - [aux_sym_preproc_if_token2] = ACTIONS(1165), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1165), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1165), - [sym_preproc_directive] = ACTIONS(1165), - [anon_sym_LPAREN2] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1167), - [anon_sym_TILDE] = ACTIONS(1167), - [anon_sym_DASH] = ACTIONS(1165), - [anon_sym_PLUS] = ACTIONS(1165), - [anon_sym_STAR] = ACTIONS(1167), - [anon_sym_AMP] = ACTIONS(1167), - [anon_sym_SEMI] = ACTIONS(1167), - [anon_sym___extension__] = ACTIONS(1165), - [anon_sym_typedef] = ACTIONS(1165), - [anon_sym_extern] = ACTIONS(1165), - [anon_sym___attribute__] = ACTIONS(1165), - [anon_sym___scanf] = ACTIONS(1165), - [anon_sym___printf] = ACTIONS(1165), - [anon_sym___read_mostly] = ACTIONS(1165), - [anon_sym___must_hold] = ACTIONS(1165), - [anon_sym___ro_after_init] = ACTIONS(1165), - [anon_sym___noreturn] = ACTIONS(1165), - [anon_sym___cold] = ACTIONS(1165), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1167), - [anon_sym___declspec] = ACTIONS(1165), - [anon_sym___init] = ACTIONS(1165), - [anon_sym___exit] = ACTIONS(1165), - [anon_sym___cdecl] = ACTIONS(1165), - [anon_sym___clrcall] = ACTIONS(1165), - [anon_sym___stdcall] = ACTIONS(1165), - [anon_sym___fastcall] = ACTIONS(1165), - [anon_sym___thiscall] = ACTIONS(1165), - [anon_sym___vectorcall] = ACTIONS(1165), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_signed] = ACTIONS(1165), - [anon_sym_unsigned] = ACTIONS(1165), - [anon_sym_long] = ACTIONS(1165), - [anon_sym_short] = ACTIONS(1165), - [anon_sym_static] = ACTIONS(1165), - [anon_sym_auto] = ACTIONS(1165), - [anon_sym_register] = ACTIONS(1165), - [anon_sym_inline] = ACTIONS(1165), - [anon_sym___inline] = ACTIONS(1165), - [anon_sym___inline__] = ACTIONS(1165), - [anon_sym___forceinline] = ACTIONS(1165), - [anon_sym_thread_local] = ACTIONS(1165), - [anon_sym___thread] = ACTIONS(1165), - [anon_sym_const] = ACTIONS(1165), - [anon_sym_constexpr] = ACTIONS(1165), - [anon_sym_volatile] = ACTIONS(1165), - [anon_sym_restrict] = ACTIONS(1165), - [anon_sym___restrict__] = ACTIONS(1165), - [anon_sym__Atomic] = ACTIONS(1165), - [anon_sym__Noreturn] = ACTIONS(1165), - [anon_sym_noreturn] = ACTIONS(1165), - [anon_sym_alignas] = ACTIONS(1165), - [anon_sym__Alignas] = ACTIONS(1165), - [sym_primitive_type] = ACTIONS(1165), - [anon_sym_enum] = ACTIONS(1165), - [anon_sym_struct] = ACTIONS(1165), - [anon_sym_union] = ACTIONS(1165), - [anon_sym_if] = ACTIONS(1165), - [anon_sym_else] = ACTIONS(1165), - [anon_sym_switch] = ACTIONS(1165), - [anon_sym_case] = ACTIONS(1165), - [anon_sym_default] = ACTIONS(1165), - [anon_sym_while] = ACTIONS(1165), - [anon_sym_do] = ACTIONS(1165), - [anon_sym_for] = ACTIONS(1165), - [anon_sym_return] = ACTIONS(1165), - [anon_sym_break] = ACTIONS(1165), - [anon_sym_continue] = ACTIONS(1165), - [anon_sym_goto] = ACTIONS(1165), - [anon_sym___try] = ACTIONS(1165), - [anon_sym___leave] = ACTIONS(1165), - [anon_sym_DASH_DASH] = ACTIONS(1167), - [anon_sym_PLUS_PLUS] = ACTIONS(1167), - [anon_sym_sizeof] = ACTIONS(1165), - [anon_sym___alignof__] = ACTIONS(1165), - [anon_sym___alignof] = ACTIONS(1165), - [anon_sym__alignof] = ACTIONS(1165), - [anon_sym_alignof] = ACTIONS(1165), - [anon_sym__Alignof] = ACTIONS(1165), - [anon_sym_offsetof] = ACTIONS(1165), - [anon_sym__Generic] = ACTIONS(1165), - [anon_sym_asm] = ACTIONS(1165), - [anon_sym___asm__] = ACTIONS(1165), - [sym_number_literal] = ACTIONS(1167), - [anon_sym_L_SQUOTE] = ACTIONS(1167), - [anon_sym_u_SQUOTE] = ACTIONS(1167), - [anon_sym_U_SQUOTE] = ACTIONS(1167), - [anon_sym_u8_SQUOTE] = ACTIONS(1167), - [anon_sym_SQUOTE] = ACTIONS(1167), - [anon_sym_L_DQUOTE] = ACTIONS(1167), - [anon_sym_u_DQUOTE] = ACTIONS(1167), - [anon_sym_U_DQUOTE] = ACTIONS(1167), - [anon_sym_u8_DQUOTE] = ACTIONS(1167), - [anon_sym_DQUOTE] = ACTIONS(1167), - [sym_true] = ACTIONS(1165), - [sym_false] = ACTIONS(1165), - [anon_sym_NULL] = ACTIONS(1165), - [anon_sym_nullptr] = ACTIONS(1165), - [sym_comment] = ACTIONS(3), + [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), + [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(1165), - [aux_sym_preproc_include_token1] = ACTIONS(1165), - [aux_sym_preproc_def_token1] = ACTIONS(1165), - [aux_sym_preproc_if_token1] = ACTIONS(1165), - [aux_sym_preproc_if_token2] = ACTIONS(1165), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1165), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1165), - [sym_preproc_directive] = ACTIONS(1165), - [anon_sym_LPAREN2] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1167), - [anon_sym_TILDE] = ACTIONS(1167), - [anon_sym_DASH] = ACTIONS(1165), - [anon_sym_PLUS] = ACTIONS(1165), - [anon_sym_STAR] = ACTIONS(1167), - [anon_sym_AMP] = ACTIONS(1167), - [anon_sym_SEMI] = ACTIONS(1167), - [anon_sym___extension__] = ACTIONS(1165), - [anon_sym_typedef] = ACTIONS(1165), - [anon_sym_extern] = ACTIONS(1165), - [anon_sym___attribute__] = ACTIONS(1165), - [anon_sym___scanf] = ACTIONS(1165), - [anon_sym___printf] = ACTIONS(1165), - [anon_sym___read_mostly] = ACTIONS(1165), - [anon_sym___must_hold] = ACTIONS(1165), - [anon_sym___ro_after_init] = ACTIONS(1165), - [anon_sym___noreturn] = ACTIONS(1165), - [anon_sym___cold] = ACTIONS(1165), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1167), - [anon_sym___declspec] = ACTIONS(1165), - [anon_sym___init] = ACTIONS(1165), - [anon_sym___exit] = ACTIONS(1165), - [anon_sym___cdecl] = ACTIONS(1165), - [anon_sym___clrcall] = ACTIONS(1165), - [anon_sym___stdcall] = ACTIONS(1165), - [anon_sym___fastcall] = ACTIONS(1165), - [anon_sym___thiscall] = ACTIONS(1165), - [anon_sym___vectorcall] = ACTIONS(1165), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_signed] = ACTIONS(1165), - [anon_sym_unsigned] = ACTIONS(1165), - [anon_sym_long] = ACTIONS(1165), - [anon_sym_short] = ACTIONS(1165), - [anon_sym_static] = ACTIONS(1165), - [anon_sym_auto] = ACTIONS(1165), - [anon_sym_register] = ACTIONS(1165), - [anon_sym_inline] = ACTIONS(1165), - [anon_sym___inline] = ACTIONS(1165), - [anon_sym___inline__] = ACTIONS(1165), - [anon_sym___forceinline] = ACTIONS(1165), - [anon_sym_thread_local] = ACTIONS(1165), - [anon_sym___thread] = ACTIONS(1165), - [anon_sym_const] = ACTIONS(1165), - [anon_sym_constexpr] = ACTIONS(1165), - [anon_sym_volatile] = ACTIONS(1165), - [anon_sym_restrict] = ACTIONS(1165), - [anon_sym___restrict__] = ACTIONS(1165), - [anon_sym__Atomic] = ACTIONS(1165), - [anon_sym__Noreturn] = ACTIONS(1165), - [anon_sym_noreturn] = ACTIONS(1165), - [anon_sym_alignas] = ACTIONS(1165), - [anon_sym__Alignas] = ACTIONS(1165), - [sym_primitive_type] = ACTIONS(1165), - [anon_sym_enum] = ACTIONS(1165), - [anon_sym_struct] = ACTIONS(1165), - [anon_sym_union] = ACTIONS(1165), - [anon_sym_if] = ACTIONS(1165), - [anon_sym_else] = ACTIONS(1165), - [anon_sym_switch] = ACTIONS(1165), - [anon_sym_case] = ACTIONS(1165), - [anon_sym_default] = ACTIONS(1165), - [anon_sym_while] = ACTIONS(1165), - [anon_sym_do] = ACTIONS(1165), - [anon_sym_for] = ACTIONS(1165), - [anon_sym_return] = ACTIONS(1165), - [anon_sym_break] = ACTIONS(1165), - [anon_sym_continue] = ACTIONS(1165), - [anon_sym_goto] = ACTIONS(1165), - [anon_sym___try] = ACTIONS(1165), - [anon_sym___leave] = ACTIONS(1165), - [anon_sym_DASH_DASH] = ACTIONS(1167), - [anon_sym_PLUS_PLUS] = ACTIONS(1167), - [anon_sym_sizeof] = ACTIONS(1165), - [anon_sym___alignof__] = ACTIONS(1165), - [anon_sym___alignof] = ACTIONS(1165), - [anon_sym__alignof] = ACTIONS(1165), - [anon_sym_alignof] = ACTIONS(1165), - [anon_sym__Alignof] = ACTIONS(1165), - [anon_sym_offsetof] = ACTIONS(1165), - [anon_sym__Generic] = ACTIONS(1165), - [anon_sym_asm] = ACTIONS(1165), - [anon_sym___asm__] = ACTIONS(1165), - [sym_number_literal] = ACTIONS(1167), - [anon_sym_L_SQUOTE] = ACTIONS(1167), - [anon_sym_u_SQUOTE] = ACTIONS(1167), - [anon_sym_U_SQUOTE] = ACTIONS(1167), - [anon_sym_u8_SQUOTE] = ACTIONS(1167), - [anon_sym_SQUOTE] = ACTIONS(1167), - [anon_sym_L_DQUOTE] = ACTIONS(1167), - [anon_sym_u_DQUOTE] = ACTIONS(1167), - [anon_sym_U_DQUOTE] = ACTIONS(1167), - [anon_sym_u8_DQUOTE] = ACTIONS(1167), - [anon_sym_DQUOTE] = ACTIONS(1167), - [sym_true] = ACTIONS(1165), - [sym_false] = ACTIONS(1165), - [anon_sym_NULL] = ACTIONS(1165), - [anon_sym_nullptr] = ACTIONS(1165), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [251] = { - [sym_identifier] = ACTIONS(1189), - [aux_sym_preproc_include_token1] = ACTIONS(1189), - [aux_sym_preproc_def_token1] = ACTIONS(1189), - [aux_sym_preproc_if_token1] = ACTIONS(1189), - [aux_sym_preproc_if_token2] = ACTIONS(1189), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1189), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1189), - [sym_preproc_directive] = ACTIONS(1189), - [anon_sym_LPAREN2] = ACTIONS(1191), - [anon_sym_BANG] = ACTIONS(1191), - [anon_sym_TILDE] = ACTIONS(1191), - [anon_sym_DASH] = ACTIONS(1189), - [anon_sym_PLUS] = ACTIONS(1189), - [anon_sym_STAR] = ACTIONS(1191), - [anon_sym_AMP] = ACTIONS(1191), - [anon_sym_SEMI] = ACTIONS(1191), - [anon_sym___extension__] = ACTIONS(1189), - [anon_sym_typedef] = ACTIONS(1189), - [anon_sym_extern] = ACTIONS(1189), - [anon_sym___attribute__] = ACTIONS(1189), - [anon_sym___scanf] = ACTIONS(1189), - [anon_sym___printf] = ACTIONS(1189), - [anon_sym___read_mostly] = ACTIONS(1189), - [anon_sym___must_hold] = ACTIONS(1189), - [anon_sym___ro_after_init] = ACTIONS(1189), - [anon_sym___noreturn] = ACTIONS(1189), - [anon_sym___cold] = ACTIONS(1189), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1191), - [anon_sym___declspec] = ACTIONS(1189), - [anon_sym___init] = ACTIONS(1189), - [anon_sym___exit] = ACTIONS(1189), - [anon_sym___cdecl] = ACTIONS(1189), - [anon_sym___clrcall] = ACTIONS(1189), - [anon_sym___stdcall] = ACTIONS(1189), - [anon_sym___fastcall] = ACTIONS(1189), - [anon_sym___thiscall] = ACTIONS(1189), - [anon_sym___vectorcall] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_signed] = ACTIONS(1189), - [anon_sym_unsigned] = ACTIONS(1189), - [anon_sym_long] = ACTIONS(1189), - [anon_sym_short] = ACTIONS(1189), - [anon_sym_static] = ACTIONS(1189), - [anon_sym_auto] = ACTIONS(1189), - [anon_sym_register] = ACTIONS(1189), - [anon_sym_inline] = ACTIONS(1189), - [anon_sym___inline] = ACTIONS(1189), - [anon_sym___inline__] = ACTIONS(1189), - [anon_sym___forceinline] = ACTIONS(1189), - [anon_sym_thread_local] = ACTIONS(1189), - [anon_sym___thread] = ACTIONS(1189), - [anon_sym_const] = ACTIONS(1189), - [anon_sym_constexpr] = ACTIONS(1189), - [anon_sym_volatile] = ACTIONS(1189), - [anon_sym_restrict] = ACTIONS(1189), - [anon_sym___restrict__] = ACTIONS(1189), - [anon_sym__Atomic] = ACTIONS(1189), - [anon_sym__Noreturn] = ACTIONS(1189), - [anon_sym_noreturn] = ACTIONS(1189), - [anon_sym_alignas] = ACTIONS(1189), - [anon_sym__Alignas] = ACTIONS(1189), - [sym_primitive_type] = ACTIONS(1189), - [anon_sym_enum] = ACTIONS(1189), - [anon_sym_struct] = ACTIONS(1189), - [anon_sym_union] = ACTIONS(1189), - [anon_sym_if] = ACTIONS(1189), - [anon_sym_else] = ACTIONS(1189), - [anon_sym_switch] = ACTIONS(1189), - [anon_sym_case] = ACTIONS(1189), - [anon_sym_default] = ACTIONS(1189), - [anon_sym_while] = ACTIONS(1189), - [anon_sym_do] = ACTIONS(1189), - [anon_sym_for] = ACTIONS(1189), - [anon_sym_return] = ACTIONS(1189), - [anon_sym_break] = ACTIONS(1189), - [anon_sym_continue] = ACTIONS(1189), - [anon_sym_goto] = ACTIONS(1189), - [anon_sym___try] = ACTIONS(1189), - [anon_sym___leave] = ACTIONS(1189), - [anon_sym_DASH_DASH] = ACTIONS(1191), - [anon_sym_PLUS_PLUS] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1189), - [anon_sym___alignof__] = ACTIONS(1189), - [anon_sym___alignof] = ACTIONS(1189), - [anon_sym__alignof] = ACTIONS(1189), - [anon_sym_alignof] = ACTIONS(1189), - [anon_sym__Alignof] = ACTIONS(1189), - [anon_sym_offsetof] = ACTIONS(1189), - [anon_sym__Generic] = ACTIONS(1189), - [anon_sym_asm] = ACTIONS(1189), - [anon_sym___asm__] = ACTIONS(1189), - [sym_number_literal] = ACTIONS(1191), - [anon_sym_L_SQUOTE] = ACTIONS(1191), - [anon_sym_u_SQUOTE] = ACTIONS(1191), - [anon_sym_U_SQUOTE] = ACTIONS(1191), - [anon_sym_u8_SQUOTE] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1191), - [anon_sym_L_DQUOTE] = ACTIONS(1191), - [anon_sym_u_DQUOTE] = ACTIONS(1191), - [anon_sym_U_DQUOTE] = ACTIONS(1191), - [anon_sym_u8_DQUOTE] = ACTIONS(1191), - [anon_sym_DQUOTE] = ACTIONS(1191), - [sym_true] = ACTIONS(1189), - [sym_false] = ACTIONS(1189), - [anon_sym_NULL] = ACTIONS(1189), - [anon_sym_nullptr] = ACTIONS(1189), - [sym_comment] = ACTIONS(3), + [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), + [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), }, [252] = { - [sym_identifier] = ACTIONS(1249), - [aux_sym_preproc_include_token1] = ACTIONS(1249), - [aux_sym_preproc_def_token1] = ACTIONS(1249), - [aux_sym_preproc_if_token1] = ACTIONS(1249), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1249), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1249), - [sym_preproc_directive] = ACTIONS(1249), - [anon_sym_LPAREN2] = ACTIONS(1251), - [anon_sym_BANG] = ACTIONS(1251), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1249), - [anon_sym_STAR] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1251), - [anon_sym_SEMI] = ACTIONS(1251), - [anon_sym___extension__] = ACTIONS(1249), - [anon_sym_typedef] = ACTIONS(1249), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym___attribute__] = ACTIONS(1249), - [anon_sym___scanf] = ACTIONS(1249), - [anon_sym___printf] = ACTIONS(1249), - [anon_sym___read_mostly] = ACTIONS(1249), - [anon_sym___must_hold] = ACTIONS(1249), - [anon_sym___ro_after_init] = ACTIONS(1249), - [anon_sym___noreturn] = ACTIONS(1249), - [anon_sym___cold] = ACTIONS(1249), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1251), - [anon_sym___declspec] = ACTIONS(1249), - [anon_sym___init] = ACTIONS(1249), - [anon_sym___exit] = ACTIONS(1249), - [anon_sym___cdecl] = ACTIONS(1249), - [anon_sym___clrcall] = ACTIONS(1249), - [anon_sym___stdcall] = ACTIONS(1249), - [anon_sym___fastcall] = ACTIONS(1249), - [anon_sym___thiscall] = ACTIONS(1249), - [anon_sym___vectorcall] = ACTIONS(1249), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_RBRACE] = ACTIONS(1251), - [anon_sym_signed] = ACTIONS(1249), - [anon_sym_unsigned] = ACTIONS(1249), - [anon_sym_long] = ACTIONS(1249), - [anon_sym_short] = ACTIONS(1249), - [anon_sym_static] = ACTIONS(1249), - [anon_sym_auto] = ACTIONS(1249), - [anon_sym_register] = ACTIONS(1249), - [anon_sym_inline] = ACTIONS(1249), - [anon_sym___inline] = ACTIONS(1249), - [anon_sym___inline__] = ACTIONS(1249), - [anon_sym___forceinline] = ACTIONS(1249), - [anon_sym_thread_local] = ACTIONS(1249), - [anon_sym___thread] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_constexpr] = ACTIONS(1249), - [anon_sym_volatile] = ACTIONS(1249), - [anon_sym_restrict] = ACTIONS(1249), - [anon_sym___restrict__] = ACTIONS(1249), - [anon_sym__Atomic] = ACTIONS(1249), - [anon_sym__Noreturn] = ACTIONS(1249), - [anon_sym_noreturn] = ACTIONS(1249), - [anon_sym_alignas] = ACTIONS(1249), - [anon_sym__Alignas] = ACTIONS(1249), - [sym_primitive_type] = ACTIONS(1249), - [anon_sym_enum] = ACTIONS(1249), - [anon_sym_struct] = ACTIONS(1249), - [anon_sym_union] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1249), - [anon_sym_else] = ACTIONS(1249), - [anon_sym_switch] = ACTIONS(1249), - [anon_sym_case] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1249), - [anon_sym_while] = ACTIONS(1249), - [anon_sym_do] = ACTIONS(1249), - [anon_sym_for] = ACTIONS(1249), - [anon_sym_return] = ACTIONS(1249), - [anon_sym_break] = ACTIONS(1249), - [anon_sym_continue] = ACTIONS(1249), - [anon_sym_goto] = ACTIONS(1249), - [anon_sym___try] = ACTIONS(1249), - [anon_sym___leave] = ACTIONS(1249), - [anon_sym_DASH_DASH] = ACTIONS(1251), - [anon_sym_PLUS_PLUS] = ACTIONS(1251), - [anon_sym_sizeof] = ACTIONS(1249), - [anon_sym___alignof__] = ACTIONS(1249), - [anon_sym___alignof] = ACTIONS(1249), - [anon_sym__alignof] = ACTIONS(1249), - [anon_sym_alignof] = ACTIONS(1249), - [anon_sym__Alignof] = ACTIONS(1249), - [anon_sym_offsetof] = ACTIONS(1249), - [anon_sym__Generic] = ACTIONS(1249), - [anon_sym_asm] = ACTIONS(1249), - [anon_sym___asm__] = ACTIONS(1249), - [sym_number_literal] = ACTIONS(1251), - [anon_sym_L_SQUOTE] = ACTIONS(1251), - [anon_sym_u_SQUOTE] = ACTIONS(1251), - [anon_sym_U_SQUOTE] = ACTIONS(1251), - [anon_sym_u8_SQUOTE] = ACTIONS(1251), - [anon_sym_SQUOTE] = ACTIONS(1251), - [anon_sym_L_DQUOTE] = ACTIONS(1251), - [anon_sym_u_DQUOTE] = ACTIONS(1251), - [anon_sym_U_DQUOTE] = ACTIONS(1251), - [anon_sym_u8_DQUOTE] = ACTIONS(1251), - [anon_sym_DQUOTE] = ACTIONS(1251), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [anon_sym_NULL] = ACTIONS(1249), - [anon_sym_nullptr] = ACTIONS(1249), - [sym_comment] = ACTIONS(3), + [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), }, [253] = { - [ts_builtin_sym_end] = ACTIONS(1287), - [sym_identifier] = ACTIONS(1285), - [aux_sym_preproc_include_token1] = ACTIONS(1285), - [aux_sym_preproc_def_token1] = ACTIONS(1285), - [aux_sym_preproc_if_token1] = ACTIONS(1285), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1285), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1285), - [sym_preproc_directive] = ACTIONS(1285), - [anon_sym_LPAREN2] = ACTIONS(1287), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_TILDE] = ACTIONS(1287), - [anon_sym_DASH] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1287), - [anon_sym_AMP] = ACTIONS(1287), - [anon_sym_SEMI] = ACTIONS(1287), - [anon_sym___extension__] = ACTIONS(1285), - [anon_sym_typedef] = ACTIONS(1285), - [anon_sym_extern] = ACTIONS(1285), - [anon_sym___attribute__] = ACTIONS(1285), - [anon_sym___scanf] = ACTIONS(1285), - [anon_sym___printf] = ACTIONS(1285), - [anon_sym___read_mostly] = ACTIONS(1285), - [anon_sym___must_hold] = ACTIONS(1285), - [anon_sym___ro_after_init] = ACTIONS(1285), - [anon_sym___noreturn] = ACTIONS(1285), - [anon_sym___cold] = ACTIONS(1285), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1287), - [anon_sym___declspec] = ACTIONS(1285), - [anon_sym___init] = ACTIONS(1285), - [anon_sym___exit] = ACTIONS(1285), - [anon_sym___cdecl] = ACTIONS(1285), - [anon_sym___clrcall] = ACTIONS(1285), - [anon_sym___stdcall] = ACTIONS(1285), - [anon_sym___fastcall] = ACTIONS(1285), - [anon_sym___thiscall] = ACTIONS(1285), - [anon_sym___vectorcall] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1287), - [anon_sym_signed] = ACTIONS(1285), - [anon_sym_unsigned] = ACTIONS(1285), - [anon_sym_long] = ACTIONS(1285), - [anon_sym_short] = ACTIONS(1285), - [anon_sym_static] = ACTIONS(1285), - [anon_sym_auto] = ACTIONS(1285), - [anon_sym_register] = ACTIONS(1285), - [anon_sym_inline] = ACTIONS(1285), - [anon_sym___inline] = ACTIONS(1285), - [anon_sym___inline__] = ACTIONS(1285), - [anon_sym___forceinline] = ACTIONS(1285), - [anon_sym_thread_local] = ACTIONS(1285), - [anon_sym___thread] = ACTIONS(1285), - [anon_sym_const] = ACTIONS(1285), - [anon_sym_constexpr] = ACTIONS(1285), - [anon_sym_volatile] = ACTIONS(1285), - [anon_sym_restrict] = ACTIONS(1285), - [anon_sym___restrict__] = ACTIONS(1285), - [anon_sym__Atomic] = ACTIONS(1285), - [anon_sym__Noreturn] = ACTIONS(1285), - [anon_sym_noreturn] = ACTIONS(1285), - [anon_sym_alignas] = ACTIONS(1285), - [anon_sym__Alignas] = ACTIONS(1285), - [sym_primitive_type] = ACTIONS(1285), - [anon_sym_enum] = ACTIONS(1285), - [anon_sym_struct] = ACTIONS(1285), - [anon_sym_union] = ACTIONS(1285), - [anon_sym_if] = ACTIONS(1285), - [anon_sym_else] = ACTIONS(1285), - [anon_sym_switch] = ACTIONS(1285), - [anon_sym_case] = ACTIONS(1285), - [anon_sym_default] = ACTIONS(1285), - [anon_sym_while] = ACTIONS(1285), - [anon_sym_do] = ACTIONS(1285), - [anon_sym_for] = ACTIONS(1285), - [anon_sym_return] = ACTIONS(1285), - [anon_sym_break] = ACTIONS(1285), - [anon_sym_continue] = ACTIONS(1285), - [anon_sym_goto] = ACTIONS(1285), - [anon_sym___try] = ACTIONS(1285), - [anon_sym___leave] = ACTIONS(1285), - [anon_sym_DASH_DASH] = ACTIONS(1287), - [anon_sym_PLUS_PLUS] = ACTIONS(1287), - [anon_sym_sizeof] = ACTIONS(1285), - [anon_sym___alignof__] = ACTIONS(1285), - [anon_sym___alignof] = ACTIONS(1285), - [anon_sym__alignof] = ACTIONS(1285), - [anon_sym_alignof] = ACTIONS(1285), - [anon_sym__Alignof] = ACTIONS(1285), - [anon_sym_offsetof] = ACTIONS(1285), - [anon_sym__Generic] = ACTIONS(1285), - [anon_sym_asm] = ACTIONS(1285), - [anon_sym___asm__] = ACTIONS(1285), - [sym_number_literal] = ACTIONS(1287), - [anon_sym_L_SQUOTE] = ACTIONS(1287), - [anon_sym_u_SQUOTE] = ACTIONS(1287), - [anon_sym_U_SQUOTE] = ACTIONS(1287), - [anon_sym_u8_SQUOTE] = ACTIONS(1287), - [anon_sym_SQUOTE] = ACTIONS(1287), - [anon_sym_L_DQUOTE] = ACTIONS(1287), - [anon_sym_u_DQUOTE] = ACTIONS(1287), - [anon_sym_U_DQUOTE] = ACTIONS(1287), - [anon_sym_u8_DQUOTE] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1287), - [sym_true] = ACTIONS(1285), - [sym_false] = ACTIONS(1285), - [anon_sym_NULL] = ACTIONS(1285), - [anon_sym_nullptr] = ACTIONS(1285), - [sym_comment] = ACTIONS(3), + [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), }, [254] = { - [sym_identifier] = ACTIONS(1185), - [aux_sym_preproc_include_token1] = ACTIONS(1185), - [aux_sym_preproc_def_token1] = ACTIONS(1185), - [aux_sym_preproc_if_token1] = ACTIONS(1185), - [aux_sym_preproc_if_token2] = ACTIONS(1185), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1185), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1185), - [sym_preproc_directive] = ACTIONS(1185), - [anon_sym_LPAREN2] = ACTIONS(1187), - [anon_sym_BANG] = ACTIONS(1187), - [anon_sym_TILDE] = ACTIONS(1187), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1187), - [anon_sym_AMP] = ACTIONS(1187), - [anon_sym_SEMI] = ACTIONS(1187), - [anon_sym___extension__] = ACTIONS(1185), - [anon_sym_typedef] = ACTIONS(1185), - [anon_sym_extern] = ACTIONS(1185), - [anon_sym___attribute__] = ACTIONS(1185), - [anon_sym___scanf] = ACTIONS(1185), - [anon_sym___printf] = ACTIONS(1185), - [anon_sym___read_mostly] = ACTIONS(1185), - [anon_sym___must_hold] = ACTIONS(1185), - [anon_sym___ro_after_init] = ACTIONS(1185), - [anon_sym___noreturn] = ACTIONS(1185), - [anon_sym___cold] = ACTIONS(1185), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1187), - [anon_sym___declspec] = ACTIONS(1185), - [anon_sym___init] = ACTIONS(1185), - [anon_sym___exit] = ACTIONS(1185), - [anon_sym___cdecl] = ACTIONS(1185), - [anon_sym___clrcall] = ACTIONS(1185), - [anon_sym___stdcall] = ACTIONS(1185), - [anon_sym___fastcall] = ACTIONS(1185), - [anon_sym___thiscall] = ACTIONS(1185), - [anon_sym___vectorcall] = ACTIONS(1185), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_signed] = ACTIONS(1185), - [anon_sym_unsigned] = ACTIONS(1185), - [anon_sym_long] = ACTIONS(1185), - [anon_sym_short] = ACTIONS(1185), - [anon_sym_static] = ACTIONS(1185), - [anon_sym_auto] = ACTIONS(1185), - [anon_sym_register] = ACTIONS(1185), - [anon_sym_inline] = ACTIONS(1185), - [anon_sym___inline] = ACTIONS(1185), - [anon_sym___inline__] = ACTIONS(1185), - [anon_sym___forceinline] = ACTIONS(1185), - [anon_sym_thread_local] = ACTIONS(1185), - [anon_sym___thread] = ACTIONS(1185), - [anon_sym_const] = ACTIONS(1185), - [anon_sym_constexpr] = ACTIONS(1185), - [anon_sym_volatile] = ACTIONS(1185), - [anon_sym_restrict] = ACTIONS(1185), - [anon_sym___restrict__] = ACTIONS(1185), - [anon_sym__Atomic] = ACTIONS(1185), - [anon_sym__Noreturn] = ACTIONS(1185), - [anon_sym_noreturn] = ACTIONS(1185), - [anon_sym_alignas] = ACTIONS(1185), - [anon_sym__Alignas] = ACTIONS(1185), - [sym_primitive_type] = ACTIONS(1185), - [anon_sym_enum] = ACTIONS(1185), - [anon_sym_struct] = ACTIONS(1185), - [anon_sym_union] = ACTIONS(1185), - [anon_sym_if] = ACTIONS(1185), - [anon_sym_else] = ACTIONS(1185), - [anon_sym_switch] = ACTIONS(1185), - [anon_sym_case] = ACTIONS(1185), - [anon_sym_default] = ACTIONS(1185), - [anon_sym_while] = ACTIONS(1185), - [anon_sym_do] = ACTIONS(1185), - [anon_sym_for] = ACTIONS(1185), - [anon_sym_return] = ACTIONS(1185), - [anon_sym_break] = ACTIONS(1185), - [anon_sym_continue] = ACTIONS(1185), - [anon_sym_goto] = ACTIONS(1185), - [anon_sym___try] = ACTIONS(1185), - [anon_sym___leave] = ACTIONS(1185), - [anon_sym_DASH_DASH] = ACTIONS(1187), - [anon_sym_PLUS_PLUS] = ACTIONS(1187), - [anon_sym_sizeof] = ACTIONS(1185), - [anon_sym___alignof__] = ACTIONS(1185), - [anon_sym___alignof] = ACTIONS(1185), - [anon_sym__alignof] = ACTIONS(1185), - [anon_sym_alignof] = ACTIONS(1185), - [anon_sym__Alignof] = ACTIONS(1185), - [anon_sym_offsetof] = ACTIONS(1185), - [anon_sym__Generic] = ACTIONS(1185), - [anon_sym_asm] = ACTIONS(1185), - [anon_sym___asm__] = ACTIONS(1185), - [sym_number_literal] = ACTIONS(1187), - [anon_sym_L_SQUOTE] = ACTIONS(1187), - [anon_sym_u_SQUOTE] = ACTIONS(1187), - [anon_sym_U_SQUOTE] = ACTIONS(1187), - [anon_sym_u8_SQUOTE] = ACTIONS(1187), - [anon_sym_SQUOTE] = ACTIONS(1187), - [anon_sym_L_DQUOTE] = ACTIONS(1187), - [anon_sym_u_DQUOTE] = ACTIONS(1187), - [anon_sym_U_DQUOTE] = ACTIONS(1187), - [anon_sym_u8_DQUOTE] = ACTIONS(1187), - [anon_sym_DQUOTE] = ACTIONS(1187), - [sym_true] = ACTIONS(1185), - [sym_false] = ACTIONS(1185), - [anon_sym_NULL] = ACTIONS(1185), - [anon_sym_nullptr] = ACTIONS(1185), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [255] = { - [sym_identifier] = ACTIONS(1161), - [aux_sym_preproc_include_token1] = ACTIONS(1161), - [aux_sym_preproc_def_token1] = ACTIONS(1161), - [aux_sym_preproc_if_token1] = ACTIONS(1161), - [aux_sym_preproc_if_token2] = ACTIONS(1161), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1161), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1161), - [sym_preproc_directive] = ACTIONS(1161), - [anon_sym_LPAREN2] = ACTIONS(1163), - [anon_sym_BANG] = ACTIONS(1163), - [anon_sym_TILDE] = ACTIONS(1163), - [anon_sym_DASH] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_STAR] = ACTIONS(1163), - [anon_sym_AMP] = ACTIONS(1163), - [anon_sym_SEMI] = ACTIONS(1163), - [anon_sym___extension__] = ACTIONS(1161), - [anon_sym_typedef] = ACTIONS(1161), - [anon_sym_extern] = ACTIONS(1161), - [anon_sym___attribute__] = ACTIONS(1161), - [anon_sym___scanf] = ACTIONS(1161), - [anon_sym___printf] = ACTIONS(1161), - [anon_sym___read_mostly] = ACTIONS(1161), - [anon_sym___must_hold] = ACTIONS(1161), - [anon_sym___ro_after_init] = ACTIONS(1161), - [anon_sym___noreturn] = ACTIONS(1161), - [anon_sym___cold] = ACTIONS(1161), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1163), - [anon_sym___declspec] = ACTIONS(1161), - [anon_sym___init] = ACTIONS(1161), - [anon_sym___exit] = ACTIONS(1161), - [anon_sym___cdecl] = ACTIONS(1161), - [anon_sym___clrcall] = ACTIONS(1161), - [anon_sym___stdcall] = ACTIONS(1161), - [anon_sym___fastcall] = ACTIONS(1161), - [anon_sym___thiscall] = ACTIONS(1161), - [anon_sym___vectorcall] = ACTIONS(1161), - [anon_sym_LBRACE] = ACTIONS(1163), - [anon_sym_signed] = ACTIONS(1161), - [anon_sym_unsigned] = ACTIONS(1161), - [anon_sym_long] = ACTIONS(1161), - [anon_sym_short] = ACTIONS(1161), - [anon_sym_static] = ACTIONS(1161), - [anon_sym_auto] = ACTIONS(1161), - [anon_sym_register] = ACTIONS(1161), - [anon_sym_inline] = ACTIONS(1161), - [anon_sym___inline] = ACTIONS(1161), - [anon_sym___inline__] = ACTIONS(1161), - [anon_sym___forceinline] = ACTIONS(1161), - [anon_sym_thread_local] = ACTIONS(1161), - [anon_sym___thread] = ACTIONS(1161), - [anon_sym_const] = ACTIONS(1161), - [anon_sym_constexpr] = ACTIONS(1161), - [anon_sym_volatile] = ACTIONS(1161), - [anon_sym_restrict] = ACTIONS(1161), - [anon_sym___restrict__] = ACTIONS(1161), - [anon_sym__Atomic] = ACTIONS(1161), - [anon_sym__Noreturn] = ACTIONS(1161), - [anon_sym_noreturn] = ACTIONS(1161), - [anon_sym_alignas] = ACTIONS(1161), - [anon_sym__Alignas] = ACTIONS(1161), - [sym_primitive_type] = ACTIONS(1161), - [anon_sym_enum] = ACTIONS(1161), - [anon_sym_struct] = ACTIONS(1161), - [anon_sym_union] = ACTIONS(1161), - [anon_sym_if] = ACTIONS(1161), - [anon_sym_else] = ACTIONS(1161), - [anon_sym_switch] = ACTIONS(1161), - [anon_sym_case] = ACTIONS(1161), - [anon_sym_default] = ACTIONS(1161), - [anon_sym_while] = ACTIONS(1161), - [anon_sym_do] = ACTIONS(1161), - [anon_sym_for] = ACTIONS(1161), - [anon_sym_return] = ACTIONS(1161), - [anon_sym_break] = ACTIONS(1161), - [anon_sym_continue] = ACTIONS(1161), - [anon_sym_goto] = ACTIONS(1161), - [anon_sym___try] = ACTIONS(1161), - [anon_sym___leave] = ACTIONS(1161), - [anon_sym_DASH_DASH] = ACTIONS(1163), - [anon_sym_PLUS_PLUS] = ACTIONS(1163), - [anon_sym_sizeof] = ACTIONS(1161), - [anon_sym___alignof__] = ACTIONS(1161), - [anon_sym___alignof] = ACTIONS(1161), - [anon_sym__alignof] = ACTIONS(1161), - [anon_sym_alignof] = ACTIONS(1161), - [anon_sym__Alignof] = ACTIONS(1161), - [anon_sym_offsetof] = ACTIONS(1161), - [anon_sym__Generic] = ACTIONS(1161), - [anon_sym_asm] = ACTIONS(1161), - [anon_sym___asm__] = ACTIONS(1161), - [sym_number_literal] = ACTIONS(1163), - [anon_sym_L_SQUOTE] = ACTIONS(1163), - [anon_sym_u_SQUOTE] = ACTIONS(1163), - [anon_sym_U_SQUOTE] = ACTIONS(1163), - [anon_sym_u8_SQUOTE] = ACTIONS(1163), - [anon_sym_SQUOTE] = ACTIONS(1163), - [anon_sym_L_DQUOTE] = ACTIONS(1163), - [anon_sym_u_DQUOTE] = ACTIONS(1163), - [anon_sym_U_DQUOTE] = ACTIONS(1163), - [anon_sym_u8_DQUOTE] = ACTIONS(1163), - [anon_sym_DQUOTE] = ACTIONS(1163), - [sym_true] = ACTIONS(1161), - [sym_false] = ACTIONS(1161), - [anon_sym_NULL] = ACTIONS(1161), - [anon_sym_nullptr] = ACTIONS(1161), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [256] = { - [sym_identifier] = ACTIONS(1181), - [aux_sym_preproc_include_token1] = ACTIONS(1181), - [aux_sym_preproc_def_token1] = ACTIONS(1181), - [aux_sym_preproc_if_token1] = ACTIONS(1181), - [aux_sym_preproc_if_token2] = ACTIONS(1181), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1181), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1181), - [sym_preproc_directive] = ACTIONS(1181), - [anon_sym_LPAREN2] = ACTIONS(1183), - [anon_sym_BANG] = ACTIONS(1183), - [anon_sym_TILDE] = ACTIONS(1183), - [anon_sym_DASH] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1181), - [anon_sym_STAR] = ACTIONS(1183), - [anon_sym_AMP] = ACTIONS(1183), - [anon_sym_SEMI] = ACTIONS(1183), - [anon_sym___extension__] = ACTIONS(1181), - [anon_sym_typedef] = ACTIONS(1181), - [anon_sym_extern] = ACTIONS(1181), - [anon_sym___attribute__] = ACTIONS(1181), - [anon_sym___scanf] = ACTIONS(1181), - [anon_sym___printf] = ACTIONS(1181), - [anon_sym___read_mostly] = ACTIONS(1181), - [anon_sym___must_hold] = ACTIONS(1181), - [anon_sym___ro_after_init] = ACTIONS(1181), - [anon_sym___noreturn] = ACTIONS(1181), - [anon_sym___cold] = ACTIONS(1181), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1183), - [anon_sym___declspec] = ACTIONS(1181), - [anon_sym___init] = ACTIONS(1181), - [anon_sym___exit] = ACTIONS(1181), - [anon_sym___cdecl] = ACTIONS(1181), - [anon_sym___clrcall] = ACTIONS(1181), - [anon_sym___stdcall] = ACTIONS(1181), - [anon_sym___fastcall] = ACTIONS(1181), - [anon_sym___thiscall] = ACTIONS(1181), - [anon_sym___vectorcall] = ACTIONS(1181), - [anon_sym_LBRACE] = ACTIONS(1183), - [anon_sym_signed] = ACTIONS(1181), - [anon_sym_unsigned] = ACTIONS(1181), - [anon_sym_long] = ACTIONS(1181), - [anon_sym_short] = ACTIONS(1181), - [anon_sym_static] = ACTIONS(1181), - [anon_sym_auto] = ACTIONS(1181), - [anon_sym_register] = ACTIONS(1181), - [anon_sym_inline] = ACTIONS(1181), - [anon_sym___inline] = ACTIONS(1181), - [anon_sym___inline__] = ACTIONS(1181), - [anon_sym___forceinline] = ACTIONS(1181), - [anon_sym_thread_local] = ACTIONS(1181), - [anon_sym___thread] = ACTIONS(1181), - [anon_sym_const] = ACTIONS(1181), - [anon_sym_constexpr] = ACTIONS(1181), - [anon_sym_volatile] = ACTIONS(1181), - [anon_sym_restrict] = ACTIONS(1181), - [anon_sym___restrict__] = ACTIONS(1181), - [anon_sym__Atomic] = ACTIONS(1181), - [anon_sym__Noreturn] = ACTIONS(1181), - [anon_sym_noreturn] = ACTIONS(1181), - [anon_sym_alignas] = ACTIONS(1181), - [anon_sym__Alignas] = ACTIONS(1181), - [sym_primitive_type] = ACTIONS(1181), - [anon_sym_enum] = ACTIONS(1181), - [anon_sym_struct] = ACTIONS(1181), - [anon_sym_union] = ACTIONS(1181), - [anon_sym_if] = ACTIONS(1181), - [anon_sym_else] = ACTIONS(1181), - [anon_sym_switch] = ACTIONS(1181), - [anon_sym_case] = ACTIONS(1181), - [anon_sym_default] = ACTIONS(1181), - [anon_sym_while] = ACTIONS(1181), - [anon_sym_do] = ACTIONS(1181), - [anon_sym_for] = ACTIONS(1181), - [anon_sym_return] = ACTIONS(1181), - [anon_sym_break] = ACTIONS(1181), - [anon_sym_continue] = ACTIONS(1181), - [anon_sym_goto] = ACTIONS(1181), - [anon_sym___try] = ACTIONS(1181), - [anon_sym___leave] = ACTIONS(1181), - [anon_sym_DASH_DASH] = ACTIONS(1183), - [anon_sym_PLUS_PLUS] = ACTIONS(1183), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym___alignof__] = ACTIONS(1181), - [anon_sym___alignof] = ACTIONS(1181), - [anon_sym__alignof] = ACTIONS(1181), - [anon_sym_alignof] = ACTIONS(1181), - [anon_sym__Alignof] = ACTIONS(1181), - [anon_sym_offsetof] = ACTIONS(1181), - [anon_sym__Generic] = ACTIONS(1181), - [anon_sym_asm] = ACTIONS(1181), - [anon_sym___asm__] = ACTIONS(1181), - [sym_number_literal] = ACTIONS(1183), - [anon_sym_L_SQUOTE] = ACTIONS(1183), - [anon_sym_u_SQUOTE] = ACTIONS(1183), - [anon_sym_U_SQUOTE] = ACTIONS(1183), - [anon_sym_u8_SQUOTE] = ACTIONS(1183), - [anon_sym_SQUOTE] = ACTIONS(1183), - [anon_sym_L_DQUOTE] = ACTIONS(1183), - [anon_sym_u_DQUOTE] = ACTIONS(1183), - [anon_sym_U_DQUOTE] = ACTIONS(1183), - [anon_sym_u8_DQUOTE] = ACTIONS(1183), - [anon_sym_DQUOTE] = ACTIONS(1183), - [sym_true] = ACTIONS(1181), - [sym_false] = ACTIONS(1181), - [anon_sym_NULL] = ACTIONS(1181), - [anon_sym_nullptr] = ACTIONS(1181), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [257] = { - [sym_identifier] = ACTIONS(1177), - [aux_sym_preproc_include_token1] = ACTIONS(1177), - [aux_sym_preproc_def_token1] = ACTIONS(1177), - [aux_sym_preproc_if_token1] = ACTIONS(1177), - [aux_sym_preproc_if_token2] = ACTIONS(1177), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1177), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1177), - [sym_preproc_directive] = ACTIONS(1177), - [anon_sym_LPAREN2] = ACTIONS(1179), - [anon_sym_BANG] = ACTIONS(1179), - [anon_sym_TILDE] = ACTIONS(1179), - [anon_sym_DASH] = ACTIONS(1177), - [anon_sym_PLUS] = ACTIONS(1177), - [anon_sym_STAR] = ACTIONS(1179), - [anon_sym_AMP] = ACTIONS(1179), - [anon_sym_SEMI] = ACTIONS(1179), - [anon_sym___extension__] = ACTIONS(1177), - [anon_sym_typedef] = ACTIONS(1177), - [anon_sym_extern] = ACTIONS(1177), - [anon_sym___attribute__] = ACTIONS(1177), - [anon_sym___scanf] = ACTIONS(1177), - [anon_sym___printf] = ACTIONS(1177), - [anon_sym___read_mostly] = ACTIONS(1177), - [anon_sym___must_hold] = ACTIONS(1177), - [anon_sym___ro_after_init] = ACTIONS(1177), - [anon_sym___noreturn] = ACTIONS(1177), - [anon_sym___cold] = ACTIONS(1177), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1179), - [anon_sym___declspec] = ACTIONS(1177), - [anon_sym___init] = ACTIONS(1177), - [anon_sym___exit] = ACTIONS(1177), - [anon_sym___cdecl] = ACTIONS(1177), - [anon_sym___clrcall] = ACTIONS(1177), - [anon_sym___stdcall] = ACTIONS(1177), - [anon_sym___fastcall] = ACTIONS(1177), - [anon_sym___thiscall] = ACTIONS(1177), - [anon_sym___vectorcall] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_signed] = ACTIONS(1177), - [anon_sym_unsigned] = ACTIONS(1177), - [anon_sym_long] = ACTIONS(1177), - [anon_sym_short] = ACTIONS(1177), - [anon_sym_static] = ACTIONS(1177), - [anon_sym_auto] = ACTIONS(1177), - [anon_sym_register] = ACTIONS(1177), - [anon_sym_inline] = ACTIONS(1177), - [anon_sym___inline] = ACTIONS(1177), - [anon_sym___inline__] = ACTIONS(1177), - [anon_sym___forceinline] = ACTIONS(1177), - [anon_sym_thread_local] = ACTIONS(1177), - [anon_sym___thread] = ACTIONS(1177), - [anon_sym_const] = ACTIONS(1177), - [anon_sym_constexpr] = ACTIONS(1177), - [anon_sym_volatile] = ACTIONS(1177), - [anon_sym_restrict] = ACTIONS(1177), - [anon_sym___restrict__] = ACTIONS(1177), - [anon_sym__Atomic] = ACTIONS(1177), - [anon_sym__Noreturn] = ACTIONS(1177), - [anon_sym_noreturn] = ACTIONS(1177), - [anon_sym_alignas] = ACTIONS(1177), - [anon_sym__Alignas] = ACTIONS(1177), - [sym_primitive_type] = ACTIONS(1177), - [anon_sym_enum] = ACTIONS(1177), - [anon_sym_struct] = ACTIONS(1177), - [anon_sym_union] = ACTIONS(1177), - [anon_sym_if] = ACTIONS(1177), - [anon_sym_else] = ACTIONS(1177), - [anon_sym_switch] = ACTIONS(1177), - [anon_sym_case] = ACTIONS(1177), - [anon_sym_default] = ACTIONS(1177), - [anon_sym_while] = ACTIONS(1177), - [anon_sym_do] = ACTIONS(1177), - [anon_sym_for] = ACTIONS(1177), - [anon_sym_return] = ACTIONS(1177), - [anon_sym_break] = ACTIONS(1177), - [anon_sym_continue] = ACTIONS(1177), - [anon_sym_goto] = ACTIONS(1177), - [anon_sym___try] = ACTIONS(1177), - [anon_sym___leave] = ACTIONS(1177), - [anon_sym_DASH_DASH] = ACTIONS(1179), - [anon_sym_PLUS_PLUS] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1177), - [anon_sym___alignof__] = ACTIONS(1177), - [anon_sym___alignof] = ACTIONS(1177), - [anon_sym__alignof] = ACTIONS(1177), - [anon_sym_alignof] = ACTIONS(1177), - [anon_sym__Alignof] = ACTIONS(1177), - [anon_sym_offsetof] = ACTIONS(1177), - [anon_sym__Generic] = ACTIONS(1177), - [anon_sym_asm] = ACTIONS(1177), - [anon_sym___asm__] = ACTIONS(1177), - [sym_number_literal] = ACTIONS(1179), - [anon_sym_L_SQUOTE] = ACTIONS(1179), - [anon_sym_u_SQUOTE] = ACTIONS(1179), - [anon_sym_U_SQUOTE] = ACTIONS(1179), - [anon_sym_u8_SQUOTE] = ACTIONS(1179), - [anon_sym_SQUOTE] = ACTIONS(1179), - [anon_sym_L_DQUOTE] = ACTIONS(1179), - [anon_sym_u_DQUOTE] = ACTIONS(1179), - [anon_sym_U_DQUOTE] = ACTIONS(1179), - [anon_sym_u8_DQUOTE] = ACTIONS(1179), - [anon_sym_DQUOTE] = ACTIONS(1179), - [sym_true] = ACTIONS(1177), - [sym_false] = ACTIONS(1177), - [anon_sym_NULL] = ACTIONS(1177), - [anon_sym_nullptr] = ACTIONS(1177), - [sym_comment] = ACTIONS(3), + [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), }, [258] = { - [sym_identifier] = ACTIONS(1173), - [aux_sym_preproc_include_token1] = ACTIONS(1173), - [aux_sym_preproc_def_token1] = ACTIONS(1173), - [aux_sym_preproc_if_token1] = ACTIONS(1173), - [aux_sym_preproc_if_token2] = ACTIONS(1173), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1173), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1173), - [sym_preproc_directive] = ACTIONS(1173), - [anon_sym_LPAREN2] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1175), - [anon_sym_TILDE] = ACTIONS(1175), - [anon_sym_DASH] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1173), - [anon_sym_STAR] = ACTIONS(1175), - [anon_sym_AMP] = ACTIONS(1175), - [anon_sym_SEMI] = ACTIONS(1175), - [anon_sym___extension__] = ACTIONS(1173), - [anon_sym_typedef] = ACTIONS(1173), - [anon_sym_extern] = ACTIONS(1173), - [anon_sym___attribute__] = ACTIONS(1173), - [anon_sym___scanf] = ACTIONS(1173), - [anon_sym___printf] = ACTIONS(1173), - [anon_sym___read_mostly] = ACTIONS(1173), - [anon_sym___must_hold] = ACTIONS(1173), - [anon_sym___ro_after_init] = ACTIONS(1173), - [anon_sym___noreturn] = ACTIONS(1173), - [anon_sym___cold] = ACTIONS(1173), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1175), - [anon_sym___declspec] = ACTIONS(1173), - [anon_sym___init] = ACTIONS(1173), - [anon_sym___exit] = ACTIONS(1173), - [anon_sym___cdecl] = ACTIONS(1173), - [anon_sym___clrcall] = ACTIONS(1173), - [anon_sym___stdcall] = ACTIONS(1173), - [anon_sym___fastcall] = ACTIONS(1173), - [anon_sym___thiscall] = ACTIONS(1173), - [anon_sym___vectorcall] = ACTIONS(1173), - [anon_sym_LBRACE] = ACTIONS(1175), - [anon_sym_signed] = ACTIONS(1173), - [anon_sym_unsigned] = ACTIONS(1173), - [anon_sym_long] = ACTIONS(1173), - [anon_sym_short] = ACTIONS(1173), - [anon_sym_static] = ACTIONS(1173), - [anon_sym_auto] = ACTIONS(1173), - [anon_sym_register] = ACTIONS(1173), - [anon_sym_inline] = ACTIONS(1173), - [anon_sym___inline] = ACTIONS(1173), - [anon_sym___inline__] = ACTIONS(1173), - [anon_sym___forceinline] = ACTIONS(1173), - [anon_sym_thread_local] = ACTIONS(1173), - [anon_sym___thread] = ACTIONS(1173), - [anon_sym_const] = ACTIONS(1173), - [anon_sym_constexpr] = ACTIONS(1173), - [anon_sym_volatile] = ACTIONS(1173), - [anon_sym_restrict] = ACTIONS(1173), - [anon_sym___restrict__] = ACTIONS(1173), - [anon_sym__Atomic] = ACTIONS(1173), - [anon_sym__Noreturn] = ACTIONS(1173), - [anon_sym_noreturn] = ACTIONS(1173), - [anon_sym_alignas] = ACTIONS(1173), - [anon_sym__Alignas] = ACTIONS(1173), - [sym_primitive_type] = ACTIONS(1173), - [anon_sym_enum] = ACTIONS(1173), - [anon_sym_struct] = ACTIONS(1173), - [anon_sym_union] = ACTIONS(1173), - [anon_sym_if] = ACTIONS(1173), - [anon_sym_else] = ACTIONS(1173), - [anon_sym_switch] = ACTIONS(1173), - [anon_sym_case] = ACTIONS(1173), - [anon_sym_default] = ACTIONS(1173), - [anon_sym_while] = ACTIONS(1173), - [anon_sym_do] = ACTIONS(1173), - [anon_sym_for] = ACTIONS(1173), - [anon_sym_return] = ACTIONS(1173), - [anon_sym_break] = ACTIONS(1173), - [anon_sym_continue] = ACTIONS(1173), - [anon_sym_goto] = ACTIONS(1173), - [anon_sym___try] = ACTIONS(1173), - [anon_sym___leave] = ACTIONS(1173), - [anon_sym_DASH_DASH] = ACTIONS(1175), - [anon_sym_PLUS_PLUS] = ACTIONS(1175), - [anon_sym_sizeof] = ACTIONS(1173), - [anon_sym___alignof__] = ACTIONS(1173), - [anon_sym___alignof] = ACTIONS(1173), - [anon_sym__alignof] = ACTIONS(1173), - [anon_sym_alignof] = ACTIONS(1173), - [anon_sym__Alignof] = ACTIONS(1173), - [anon_sym_offsetof] = ACTIONS(1173), - [anon_sym__Generic] = ACTIONS(1173), - [anon_sym_asm] = ACTIONS(1173), - [anon_sym___asm__] = ACTIONS(1173), - [sym_number_literal] = ACTIONS(1175), - [anon_sym_L_SQUOTE] = ACTIONS(1175), - [anon_sym_u_SQUOTE] = ACTIONS(1175), - [anon_sym_U_SQUOTE] = ACTIONS(1175), - [anon_sym_u8_SQUOTE] = ACTIONS(1175), - [anon_sym_SQUOTE] = ACTIONS(1175), - [anon_sym_L_DQUOTE] = ACTIONS(1175), - [anon_sym_u_DQUOTE] = ACTIONS(1175), - [anon_sym_U_DQUOTE] = ACTIONS(1175), - [anon_sym_u8_DQUOTE] = ACTIONS(1175), - [anon_sym_DQUOTE] = ACTIONS(1175), - [sym_true] = ACTIONS(1173), - [sym_false] = ACTIONS(1173), - [anon_sym_NULL] = ACTIONS(1173), - [anon_sym_nullptr] = ACTIONS(1173), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [259] = { - [ts_builtin_sym_end] = ACTIONS(1243), - [sym_identifier] = ACTIONS(1241), - [aux_sym_preproc_include_token1] = ACTIONS(1241), - [aux_sym_preproc_def_token1] = ACTIONS(1241), - [aux_sym_preproc_if_token1] = ACTIONS(1241), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1241), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1241), - [sym_preproc_directive] = ACTIONS(1241), - [anon_sym_LPAREN2] = ACTIONS(1243), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1243), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_PLUS] = ACTIONS(1241), - [anon_sym_STAR] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1243), - [anon_sym_SEMI] = ACTIONS(1243), - [anon_sym___extension__] = ACTIONS(1241), - [anon_sym_typedef] = ACTIONS(1241), - [anon_sym_extern] = ACTIONS(1241), - [anon_sym___attribute__] = ACTIONS(1241), - [anon_sym___scanf] = ACTIONS(1241), - [anon_sym___printf] = ACTIONS(1241), - [anon_sym___read_mostly] = ACTIONS(1241), - [anon_sym___must_hold] = ACTIONS(1241), - [anon_sym___ro_after_init] = ACTIONS(1241), - [anon_sym___noreturn] = ACTIONS(1241), - [anon_sym___cold] = ACTIONS(1241), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1243), - [anon_sym___declspec] = ACTIONS(1241), - [anon_sym___init] = ACTIONS(1241), - [anon_sym___exit] = ACTIONS(1241), - [anon_sym___cdecl] = ACTIONS(1241), - [anon_sym___clrcall] = ACTIONS(1241), - [anon_sym___stdcall] = ACTIONS(1241), - [anon_sym___fastcall] = ACTIONS(1241), - [anon_sym___thiscall] = ACTIONS(1241), - [anon_sym___vectorcall] = ACTIONS(1241), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_signed] = ACTIONS(1241), - [anon_sym_unsigned] = ACTIONS(1241), - [anon_sym_long] = ACTIONS(1241), - [anon_sym_short] = ACTIONS(1241), - [anon_sym_static] = ACTIONS(1241), - [anon_sym_auto] = ACTIONS(1241), - [anon_sym_register] = ACTIONS(1241), - [anon_sym_inline] = ACTIONS(1241), - [anon_sym___inline] = ACTIONS(1241), - [anon_sym___inline__] = ACTIONS(1241), - [anon_sym___forceinline] = ACTIONS(1241), - [anon_sym_thread_local] = ACTIONS(1241), - [anon_sym___thread] = ACTIONS(1241), - [anon_sym_const] = ACTIONS(1241), - [anon_sym_constexpr] = ACTIONS(1241), - [anon_sym_volatile] = ACTIONS(1241), - [anon_sym_restrict] = ACTIONS(1241), - [anon_sym___restrict__] = ACTIONS(1241), - [anon_sym__Atomic] = ACTIONS(1241), - [anon_sym__Noreturn] = ACTIONS(1241), - [anon_sym_noreturn] = ACTIONS(1241), - [anon_sym_alignas] = ACTIONS(1241), - [anon_sym__Alignas] = ACTIONS(1241), - [sym_primitive_type] = ACTIONS(1241), - [anon_sym_enum] = ACTIONS(1241), - [anon_sym_struct] = ACTIONS(1241), - [anon_sym_union] = ACTIONS(1241), - [anon_sym_if] = ACTIONS(1241), - [anon_sym_else] = ACTIONS(1241), - [anon_sym_switch] = ACTIONS(1241), - [anon_sym_case] = ACTIONS(1241), - [anon_sym_default] = ACTIONS(1241), - [anon_sym_while] = ACTIONS(1241), - [anon_sym_do] = ACTIONS(1241), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_return] = ACTIONS(1241), - [anon_sym_break] = ACTIONS(1241), - [anon_sym_continue] = ACTIONS(1241), - [anon_sym_goto] = ACTIONS(1241), - [anon_sym___try] = ACTIONS(1241), - [anon_sym___leave] = ACTIONS(1241), - [anon_sym_DASH_DASH] = ACTIONS(1243), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_sizeof] = ACTIONS(1241), - [anon_sym___alignof__] = ACTIONS(1241), - [anon_sym___alignof] = ACTIONS(1241), - [anon_sym__alignof] = ACTIONS(1241), - [anon_sym_alignof] = ACTIONS(1241), - [anon_sym__Alignof] = ACTIONS(1241), - [anon_sym_offsetof] = ACTIONS(1241), - [anon_sym__Generic] = ACTIONS(1241), - [anon_sym_asm] = ACTIONS(1241), - [anon_sym___asm__] = ACTIONS(1241), - [sym_number_literal] = ACTIONS(1243), - [anon_sym_L_SQUOTE] = ACTIONS(1243), - [anon_sym_u_SQUOTE] = ACTIONS(1243), - [anon_sym_U_SQUOTE] = ACTIONS(1243), - [anon_sym_u8_SQUOTE] = ACTIONS(1243), - [anon_sym_SQUOTE] = ACTIONS(1243), - [anon_sym_L_DQUOTE] = ACTIONS(1243), - [anon_sym_u_DQUOTE] = ACTIONS(1243), - [anon_sym_U_DQUOTE] = ACTIONS(1243), - [anon_sym_u8_DQUOTE] = ACTIONS(1243), - [anon_sym_DQUOTE] = ACTIONS(1243), - [sym_true] = ACTIONS(1241), - [sym_false] = ACTIONS(1241), - [anon_sym_NULL] = ACTIONS(1241), - [anon_sym_nullptr] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [260] = { - [sym_identifier] = ACTIONS(1203), - [aux_sym_preproc_include_token1] = ACTIONS(1203), - [aux_sym_preproc_def_token1] = ACTIONS(1203), - [aux_sym_preproc_if_token1] = ACTIONS(1203), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1203), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1203), - [sym_preproc_directive] = ACTIONS(1203), - [anon_sym_LPAREN2] = ACTIONS(1201), - [anon_sym_BANG] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1201), - [anon_sym_DASH] = ACTIONS(1203), - [anon_sym_PLUS] = ACTIONS(1203), - [anon_sym_STAR] = ACTIONS(1201), - [anon_sym_AMP] = ACTIONS(1201), - [anon_sym_SEMI] = ACTIONS(1201), - [anon_sym___extension__] = ACTIONS(1203), - [anon_sym_typedef] = ACTIONS(1203), - [anon_sym_extern] = ACTIONS(1203), - [anon_sym___attribute__] = ACTIONS(1203), - [anon_sym___scanf] = ACTIONS(1203), - [anon_sym___printf] = ACTIONS(1203), - [anon_sym___read_mostly] = ACTIONS(1203), - [anon_sym___must_hold] = ACTIONS(1203), - [anon_sym___ro_after_init] = ACTIONS(1203), - [anon_sym___noreturn] = ACTIONS(1203), - [anon_sym___cold] = ACTIONS(1203), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1201), - [anon_sym___declspec] = ACTIONS(1203), - [anon_sym___init] = ACTIONS(1203), - [anon_sym___exit] = ACTIONS(1203), - [anon_sym___cdecl] = ACTIONS(1203), - [anon_sym___clrcall] = ACTIONS(1203), - [anon_sym___stdcall] = ACTIONS(1203), - [anon_sym___fastcall] = ACTIONS(1203), - [anon_sym___thiscall] = ACTIONS(1203), - [anon_sym___vectorcall] = ACTIONS(1203), - [anon_sym_LBRACE] = ACTIONS(1201), - [anon_sym_RBRACE] = ACTIONS(1201), - [anon_sym_signed] = ACTIONS(1203), - [anon_sym_unsigned] = ACTIONS(1203), - [anon_sym_long] = ACTIONS(1203), - [anon_sym_short] = ACTIONS(1203), - [anon_sym_static] = ACTIONS(1203), - [anon_sym_auto] = ACTIONS(1203), - [anon_sym_register] = ACTIONS(1203), - [anon_sym_inline] = ACTIONS(1203), - [anon_sym___inline] = ACTIONS(1203), - [anon_sym___inline__] = ACTIONS(1203), - [anon_sym___forceinline] = ACTIONS(1203), - [anon_sym_thread_local] = ACTIONS(1203), - [anon_sym___thread] = ACTIONS(1203), - [anon_sym_const] = ACTIONS(1203), - [anon_sym_constexpr] = ACTIONS(1203), - [anon_sym_volatile] = ACTIONS(1203), - [anon_sym_restrict] = ACTIONS(1203), - [anon_sym___restrict__] = ACTIONS(1203), - [anon_sym__Atomic] = ACTIONS(1203), - [anon_sym__Noreturn] = ACTIONS(1203), - [anon_sym_noreturn] = ACTIONS(1203), - [anon_sym_alignas] = ACTIONS(1203), - [anon_sym__Alignas] = ACTIONS(1203), - [sym_primitive_type] = ACTIONS(1203), - [anon_sym_enum] = ACTIONS(1203), - [anon_sym_struct] = ACTIONS(1203), - [anon_sym_union] = ACTIONS(1203), - [anon_sym_if] = ACTIONS(1203), - [anon_sym_else] = ACTIONS(1203), - [anon_sym_switch] = ACTIONS(1203), - [anon_sym_case] = ACTIONS(1203), - [anon_sym_default] = ACTIONS(1203), - [anon_sym_while] = ACTIONS(1203), - [anon_sym_do] = ACTIONS(1203), - [anon_sym_for] = ACTIONS(1203), - [anon_sym_return] = ACTIONS(1203), - [anon_sym_break] = ACTIONS(1203), - [anon_sym_continue] = ACTIONS(1203), - [anon_sym_goto] = ACTIONS(1203), - [anon_sym___try] = ACTIONS(1203), - [anon_sym___leave] = ACTIONS(1203), - [anon_sym_DASH_DASH] = ACTIONS(1201), - [anon_sym_PLUS_PLUS] = ACTIONS(1201), - [anon_sym_sizeof] = ACTIONS(1203), - [anon_sym___alignof__] = ACTIONS(1203), - [anon_sym___alignof] = ACTIONS(1203), - [anon_sym__alignof] = ACTIONS(1203), - [anon_sym_alignof] = ACTIONS(1203), - [anon_sym__Alignof] = ACTIONS(1203), - [anon_sym_offsetof] = ACTIONS(1203), - [anon_sym__Generic] = ACTIONS(1203), - [anon_sym_asm] = ACTIONS(1203), - [anon_sym___asm__] = ACTIONS(1203), - [sym_number_literal] = ACTIONS(1201), - [anon_sym_L_SQUOTE] = ACTIONS(1201), - [anon_sym_u_SQUOTE] = ACTIONS(1201), - [anon_sym_U_SQUOTE] = ACTIONS(1201), - [anon_sym_u8_SQUOTE] = ACTIONS(1201), - [anon_sym_SQUOTE] = ACTIONS(1201), - [anon_sym_L_DQUOTE] = ACTIONS(1201), - [anon_sym_u_DQUOTE] = ACTIONS(1201), - [anon_sym_U_DQUOTE] = ACTIONS(1201), - [anon_sym_u8_DQUOTE] = ACTIONS(1201), - [anon_sym_DQUOTE] = ACTIONS(1201), - [sym_true] = ACTIONS(1203), - [sym_false] = ACTIONS(1203), - [anon_sym_NULL] = ACTIONS(1203), - [anon_sym_nullptr] = ACTIONS(1203), - [sym_comment] = ACTIONS(3), + [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_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), }, [261] = { - [sym_identifier] = ACTIONS(1165), - [aux_sym_preproc_include_token1] = ACTIONS(1165), - [aux_sym_preproc_def_token1] = ACTIONS(1165), - [aux_sym_preproc_if_token1] = ACTIONS(1165), - [aux_sym_preproc_if_token2] = ACTIONS(1165), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1165), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1165), - [sym_preproc_directive] = ACTIONS(1165), - [anon_sym_LPAREN2] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1167), - [anon_sym_TILDE] = ACTIONS(1167), - [anon_sym_DASH] = ACTIONS(1165), - [anon_sym_PLUS] = ACTIONS(1165), - [anon_sym_STAR] = ACTIONS(1167), - [anon_sym_AMP] = ACTIONS(1167), - [anon_sym_SEMI] = ACTIONS(1167), - [anon_sym___extension__] = ACTIONS(1165), - [anon_sym_typedef] = ACTIONS(1165), - [anon_sym_extern] = ACTIONS(1165), - [anon_sym___attribute__] = ACTIONS(1165), - [anon_sym___scanf] = ACTIONS(1165), - [anon_sym___printf] = ACTIONS(1165), - [anon_sym___read_mostly] = ACTIONS(1165), - [anon_sym___must_hold] = ACTIONS(1165), - [anon_sym___ro_after_init] = ACTIONS(1165), - [anon_sym___noreturn] = ACTIONS(1165), - [anon_sym___cold] = ACTIONS(1165), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1167), - [anon_sym___declspec] = ACTIONS(1165), - [anon_sym___init] = ACTIONS(1165), - [anon_sym___exit] = ACTIONS(1165), - [anon_sym___cdecl] = ACTIONS(1165), - [anon_sym___clrcall] = ACTIONS(1165), - [anon_sym___stdcall] = ACTIONS(1165), - [anon_sym___fastcall] = ACTIONS(1165), - [anon_sym___thiscall] = ACTIONS(1165), - [anon_sym___vectorcall] = ACTIONS(1165), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_signed] = ACTIONS(1165), - [anon_sym_unsigned] = ACTIONS(1165), - [anon_sym_long] = ACTIONS(1165), - [anon_sym_short] = ACTIONS(1165), - [anon_sym_static] = ACTIONS(1165), - [anon_sym_auto] = ACTIONS(1165), - [anon_sym_register] = ACTIONS(1165), - [anon_sym_inline] = ACTIONS(1165), - [anon_sym___inline] = ACTIONS(1165), - [anon_sym___inline__] = ACTIONS(1165), - [anon_sym___forceinline] = ACTIONS(1165), - [anon_sym_thread_local] = ACTIONS(1165), - [anon_sym___thread] = ACTIONS(1165), - [anon_sym_const] = ACTIONS(1165), - [anon_sym_constexpr] = ACTIONS(1165), - [anon_sym_volatile] = ACTIONS(1165), - [anon_sym_restrict] = ACTIONS(1165), - [anon_sym___restrict__] = ACTIONS(1165), - [anon_sym__Atomic] = ACTIONS(1165), - [anon_sym__Noreturn] = ACTIONS(1165), - [anon_sym_noreturn] = ACTIONS(1165), - [anon_sym_alignas] = ACTIONS(1165), - [anon_sym__Alignas] = ACTIONS(1165), - [sym_primitive_type] = ACTIONS(1165), - [anon_sym_enum] = ACTIONS(1165), - [anon_sym_struct] = ACTIONS(1165), - [anon_sym_union] = ACTIONS(1165), - [anon_sym_if] = ACTIONS(1165), - [anon_sym_else] = ACTIONS(1165), - [anon_sym_switch] = ACTIONS(1165), - [anon_sym_case] = ACTIONS(1165), - [anon_sym_default] = ACTIONS(1165), - [anon_sym_while] = ACTIONS(1165), - [anon_sym_do] = ACTIONS(1165), - [anon_sym_for] = ACTIONS(1165), - [anon_sym_return] = ACTIONS(1165), - [anon_sym_break] = ACTIONS(1165), - [anon_sym_continue] = ACTIONS(1165), - [anon_sym_goto] = ACTIONS(1165), - [anon_sym___try] = ACTIONS(1165), - [anon_sym___leave] = ACTIONS(1165), - [anon_sym_DASH_DASH] = ACTIONS(1167), - [anon_sym_PLUS_PLUS] = ACTIONS(1167), - [anon_sym_sizeof] = ACTIONS(1165), - [anon_sym___alignof__] = ACTIONS(1165), - [anon_sym___alignof] = ACTIONS(1165), - [anon_sym__alignof] = ACTIONS(1165), - [anon_sym_alignof] = ACTIONS(1165), - [anon_sym__Alignof] = ACTIONS(1165), - [anon_sym_offsetof] = ACTIONS(1165), - [anon_sym__Generic] = ACTIONS(1165), - [anon_sym_asm] = ACTIONS(1165), - [anon_sym___asm__] = ACTIONS(1165), - [sym_number_literal] = ACTIONS(1167), - [anon_sym_L_SQUOTE] = ACTIONS(1167), - [anon_sym_u_SQUOTE] = ACTIONS(1167), - [anon_sym_U_SQUOTE] = ACTIONS(1167), - [anon_sym_u8_SQUOTE] = ACTIONS(1167), - [anon_sym_SQUOTE] = ACTIONS(1167), - [anon_sym_L_DQUOTE] = ACTIONS(1167), - [anon_sym_u_DQUOTE] = ACTIONS(1167), - [anon_sym_U_DQUOTE] = ACTIONS(1167), - [anon_sym_u8_DQUOTE] = ACTIONS(1167), - [anon_sym_DQUOTE] = ACTIONS(1167), - [sym_true] = ACTIONS(1165), - [sym_false] = ACTIONS(1165), - [anon_sym_NULL] = ACTIONS(1165), - [anon_sym_nullptr] = ACTIONS(1165), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [262] = { - [sym_identifier] = ACTIONS(1169), - [aux_sym_preproc_include_token1] = ACTIONS(1169), - [aux_sym_preproc_def_token1] = ACTIONS(1169), - [aux_sym_preproc_if_token1] = ACTIONS(1169), - [aux_sym_preproc_if_token2] = ACTIONS(1169), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1169), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1169), - [sym_preproc_directive] = ACTIONS(1169), - [anon_sym_LPAREN2] = ACTIONS(1171), - [anon_sym_BANG] = ACTIONS(1171), - [anon_sym_TILDE] = ACTIONS(1171), - [anon_sym_DASH] = ACTIONS(1169), - [anon_sym_PLUS] = ACTIONS(1169), - [anon_sym_STAR] = ACTIONS(1171), - [anon_sym_AMP] = ACTIONS(1171), - [anon_sym_SEMI] = ACTIONS(1171), - [anon_sym___extension__] = ACTIONS(1169), - [anon_sym_typedef] = ACTIONS(1169), - [anon_sym_extern] = ACTIONS(1169), - [anon_sym___attribute__] = ACTIONS(1169), - [anon_sym___scanf] = ACTIONS(1169), - [anon_sym___printf] = ACTIONS(1169), - [anon_sym___read_mostly] = ACTIONS(1169), - [anon_sym___must_hold] = ACTIONS(1169), - [anon_sym___ro_after_init] = ACTIONS(1169), - [anon_sym___noreturn] = ACTIONS(1169), - [anon_sym___cold] = ACTIONS(1169), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1171), - [anon_sym___declspec] = ACTIONS(1169), - [anon_sym___init] = ACTIONS(1169), - [anon_sym___exit] = ACTIONS(1169), - [anon_sym___cdecl] = ACTIONS(1169), - [anon_sym___clrcall] = ACTIONS(1169), - [anon_sym___stdcall] = ACTIONS(1169), - [anon_sym___fastcall] = ACTIONS(1169), - [anon_sym___thiscall] = ACTIONS(1169), - [anon_sym___vectorcall] = ACTIONS(1169), - [anon_sym_LBRACE] = ACTIONS(1171), - [anon_sym_signed] = ACTIONS(1169), - [anon_sym_unsigned] = ACTIONS(1169), - [anon_sym_long] = ACTIONS(1169), - [anon_sym_short] = ACTIONS(1169), - [anon_sym_static] = ACTIONS(1169), - [anon_sym_auto] = ACTIONS(1169), - [anon_sym_register] = ACTIONS(1169), - [anon_sym_inline] = ACTIONS(1169), - [anon_sym___inline] = ACTIONS(1169), - [anon_sym___inline__] = ACTIONS(1169), - [anon_sym___forceinline] = ACTIONS(1169), - [anon_sym_thread_local] = ACTIONS(1169), - [anon_sym___thread] = ACTIONS(1169), - [anon_sym_const] = ACTIONS(1169), - [anon_sym_constexpr] = ACTIONS(1169), - [anon_sym_volatile] = ACTIONS(1169), - [anon_sym_restrict] = ACTIONS(1169), - [anon_sym___restrict__] = ACTIONS(1169), - [anon_sym__Atomic] = ACTIONS(1169), - [anon_sym__Noreturn] = ACTIONS(1169), - [anon_sym_noreturn] = ACTIONS(1169), - [anon_sym_alignas] = ACTIONS(1169), - [anon_sym__Alignas] = ACTIONS(1169), - [sym_primitive_type] = ACTIONS(1169), - [anon_sym_enum] = ACTIONS(1169), - [anon_sym_struct] = ACTIONS(1169), - [anon_sym_union] = ACTIONS(1169), - [anon_sym_if] = ACTIONS(1169), - [anon_sym_else] = ACTIONS(1169), - [anon_sym_switch] = ACTIONS(1169), - [anon_sym_case] = ACTIONS(1169), - [anon_sym_default] = ACTIONS(1169), - [anon_sym_while] = ACTIONS(1169), - [anon_sym_do] = ACTIONS(1169), - [anon_sym_for] = ACTIONS(1169), - [anon_sym_return] = ACTIONS(1169), - [anon_sym_break] = ACTIONS(1169), - [anon_sym_continue] = ACTIONS(1169), - [anon_sym_goto] = ACTIONS(1169), - [anon_sym___try] = ACTIONS(1169), - [anon_sym___leave] = ACTIONS(1169), - [anon_sym_DASH_DASH] = ACTIONS(1171), - [anon_sym_PLUS_PLUS] = ACTIONS(1171), - [anon_sym_sizeof] = ACTIONS(1169), - [anon_sym___alignof__] = ACTIONS(1169), - [anon_sym___alignof] = ACTIONS(1169), - [anon_sym__alignof] = ACTIONS(1169), - [anon_sym_alignof] = ACTIONS(1169), - [anon_sym__Alignof] = ACTIONS(1169), - [anon_sym_offsetof] = ACTIONS(1169), - [anon_sym__Generic] = ACTIONS(1169), - [anon_sym_asm] = ACTIONS(1169), - [anon_sym___asm__] = ACTIONS(1169), - [sym_number_literal] = ACTIONS(1171), - [anon_sym_L_SQUOTE] = ACTIONS(1171), - [anon_sym_u_SQUOTE] = ACTIONS(1171), - [anon_sym_U_SQUOTE] = ACTIONS(1171), - [anon_sym_u8_SQUOTE] = ACTIONS(1171), - [anon_sym_SQUOTE] = ACTIONS(1171), - [anon_sym_L_DQUOTE] = ACTIONS(1171), - [anon_sym_u_DQUOTE] = ACTIONS(1171), - [anon_sym_U_DQUOTE] = ACTIONS(1171), - [anon_sym_u8_DQUOTE] = ACTIONS(1171), - [anon_sym_DQUOTE] = ACTIONS(1171), - [sym_true] = ACTIONS(1169), - [sym_false] = ACTIONS(1169), - [anon_sym_NULL] = ACTIONS(1169), - [anon_sym_nullptr] = ACTIONS(1169), - [sym_comment] = ACTIONS(3), + [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_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), }, [263] = { - [ts_builtin_sym_end] = ACTIONS(1271), - [sym_identifier] = ACTIONS(1269), - [aux_sym_preproc_include_token1] = ACTIONS(1269), - [aux_sym_preproc_def_token1] = ACTIONS(1269), - [aux_sym_preproc_if_token1] = ACTIONS(1269), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1269), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1269), - [sym_preproc_directive] = ACTIONS(1269), - [anon_sym_LPAREN2] = ACTIONS(1271), - [anon_sym_BANG] = ACTIONS(1271), - [anon_sym_TILDE] = ACTIONS(1271), - [anon_sym_DASH] = ACTIONS(1269), - [anon_sym_PLUS] = ACTIONS(1269), - [anon_sym_STAR] = ACTIONS(1271), - [anon_sym_AMP] = ACTIONS(1271), - [anon_sym_SEMI] = ACTIONS(1271), - [anon_sym___extension__] = ACTIONS(1269), - [anon_sym_typedef] = ACTIONS(1269), - [anon_sym_extern] = ACTIONS(1269), - [anon_sym___attribute__] = ACTIONS(1269), - [anon_sym___scanf] = ACTIONS(1269), - [anon_sym___printf] = ACTIONS(1269), - [anon_sym___read_mostly] = ACTIONS(1269), - [anon_sym___must_hold] = ACTIONS(1269), - [anon_sym___ro_after_init] = ACTIONS(1269), - [anon_sym___noreturn] = ACTIONS(1269), - [anon_sym___cold] = ACTIONS(1269), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1271), - [anon_sym___declspec] = ACTIONS(1269), - [anon_sym___init] = ACTIONS(1269), - [anon_sym___exit] = ACTIONS(1269), - [anon_sym___cdecl] = ACTIONS(1269), - [anon_sym___clrcall] = ACTIONS(1269), - [anon_sym___stdcall] = ACTIONS(1269), - [anon_sym___fastcall] = ACTIONS(1269), - [anon_sym___thiscall] = ACTIONS(1269), - [anon_sym___vectorcall] = ACTIONS(1269), - [anon_sym_LBRACE] = ACTIONS(1271), - [anon_sym_signed] = ACTIONS(1269), - [anon_sym_unsigned] = ACTIONS(1269), - [anon_sym_long] = ACTIONS(1269), - [anon_sym_short] = ACTIONS(1269), - [anon_sym_static] = ACTIONS(1269), - [anon_sym_auto] = ACTIONS(1269), - [anon_sym_register] = ACTIONS(1269), - [anon_sym_inline] = ACTIONS(1269), - [anon_sym___inline] = ACTIONS(1269), - [anon_sym___inline__] = ACTIONS(1269), - [anon_sym___forceinline] = ACTIONS(1269), - [anon_sym_thread_local] = ACTIONS(1269), - [anon_sym___thread] = ACTIONS(1269), - [anon_sym_const] = ACTIONS(1269), - [anon_sym_constexpr] = ACTIONS(1269), - [anon_sym_volatile] = ACTIONS(1269), - [anon_sym_restrict] = ACTIONS(1269), - [anon_sym___restrict__] = ACTIONS(1269), - [anon_sym__Atomic] = ACTIONS(1269), - [anon_sym__Noreturn] = ACTIONS(1269), - [anon_sym_noreturn] = ACTIONS(1269), - [anon_sym_alignas] = ACTIONS(1269), - [anon_sym__Alignas] = ACTIONS(1269), - [sym_primitive_type] = ACTIONS(1269), - [anon_sym_enum] = ACTIONS(1269), - [anon_sym_struct] = ACTIONS(1269), - [anon_sym_union] = ACTIONS(1269), - [anon_sym_if] = ACTIONS(1269), - [anon_sym_else] = ACTIONS(1269), - [anon_sym_switch] = ACTIONS(1269), - [anon_sym_case] = ACTIONS(1269), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_while] = ACTIONS(1269), - [anon_sym_do] = ACTIONS(1269), - [anon_sym_for] = ACTIONS(1269), - [anon_sym_return] = ACTIONS(1269), - [anon_sym_break] = ACTIONS(1269), - [anon_sym_continue] = ACTIONS(1269), - [anon_sym_goto] = ACTIONS(1269), - [anon_sym___try] = ACTIONS(1269), - [anon_sym___leave] = ACTIONS(1269), - [anon_sym_DASH_DASH] = ACTIONS(1271), - [anon_sym_PLUS_PLUS] = ACTIONS(1271), - [anon_sym_sizeof] = ACTIONS(1269), - [anon_sym___alignof__] = ACTIONS(1269), - [anon_sym___alignof] = ACTIONS(1269), - [anon_sym__alignof] = ACTIONS(1269), - [anon_sym_alignof] = ACTIONS(1269), - [anon_sym__Alignof] = ACTIONS(1269), - [anon_sym_offsetof] = ACTIONS(1269), - [anon_sym__Generic] = ACTIONS(1269), - [anon_sym_asm] = ACTIONS(1269), - [anon_sym___asm__] = ACTIONS(1269), - [sym_number_literal] = ACTIONS(1271), - [anon_sym_L_SQUOTE] = ACTIONS(1271), - [anon_sym_u_SQUOTE] = ACTIONS(1271), - [anon_sym_U_SQUOTE] = ACTIONS(1271), - [anon_sym_u8_SQUOTE] = ACTIONS(1271), - [anon_sym_SQUOTE] = ACTIONS(1271), - [anon_sym_L_DQUOTE] = ACTIONS(1271), - [anon_sym_u_DQUOTE] = ACTIONS(1271), - [anon_sym_U_DQUOTE] = ACTIONS(1271), - [anon_sym_u8_DQUOTE] = ACTIONS(1271), - [anon_sym_DQUOTE] = ACTIONS(1271), - [sym_true] = ACTIONS(1269), - [sym_false] = ACTIONS(1269), - [anon_sym_NULL] = ACTIONS(1269), - [anon_sym_nullptr] = ACTIONS(1269), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [264] = { - [sym_identifier] = ACTIONS(1281), - [aux_sym_preproc_include_token1] = ACTIONS(1281), - [aux_sym_preproc_def_token1] = ACTIONS(1281), - [aux_sym_preproc_if_token1] = ACTIONS(1281), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1281), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1281), - [sym_preproc_directive] = ACTIONS(1281), - [anon_sym_LPAREN2] = ACTIONS(1283), - [anon_sym_BANG] = ACTIONS(1283), - [anon_sym_TILDE] = ACTIONS(1283), - [anon_sym_DASH] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1281), - [anon_sym_STAR] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SEMI] = ACTIONS(1283), - [anon_sym___extension__] = ACTIONS(1281), - [anon_sym_typedef] = ACTIONS(1281), - [anon_sym_extern] = ACTIONS(1281), - [anon_sym___attribute__] = ACTIONS(1281), - [anon_sym___scanf] = ACTIONS(1281), - [anon_sym___printf] = ACTIONS(1281), - [anon_sym___read_mostly] = ACTIONS(1281), - [anon_sym___must_hold] = ACTIONS(1281), - [anon_sym___ro_after_init] = ACTIONS(1281), - [anon_sym___noreturn] = ACTIONS(1281), - [anon_sym___cold] = ACTIONS(1281), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1283), - [anon_sym___declspec] = ACTIONS(1281), - [anon_sym___init] = ACTIONS(1281), - [anon_sym___exit] = ACTIONS(1281), - [anon_sym___cdecl] = ACTIONS(1281), - [anon_sym___clrcall] = ACTIONS(1281), - [anon_sym___stdcall] = ACTIONS(1281), - [anon_sym___fastcall] = ACTIONS(1281), - [anon_sym___thiscall] = ACTIONS(1281), - [anon_sym___vectorcall] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(1283), - [anon_sym_RBRACE] = ACTIONS(1283), - [anon_sym_signed] = ACTIONS(1281), - [anon_sym_unsigned] = ACTIONS(1281), - [anon_sym_long] = ACTIONS(1281), - [anon_sym_short] = ACTIONS(1281), - [anon_sym_static] = ACTIONS(1281), - [anon_sym_auto] = ACTIONS(1281), - [anon_sym_register] = ACTIONS(1281), - [anon_sym_inline] = ACTIONS(1281), - [anon_sym___inline] = ACTIONS(1281), - [anon_sym___inline__] = ACTIONS(1281), - [anon_sym___forceinline] = ACTIONS(1281), - [anon_sym_thread_local] = ACTIONS(1281), - [anon_sym___thread] = ACTIONS(1281), - [anon_sym_const] = ACTIONS(1281), - [anon_sym_constexpr] = ACTIONS(1281), - [anon_sym_volatile] = ACTIONS(1281), - [anon_sym_restrict] = ACTIONS(1281), - [anon_sym___restrict__] = ACTIONS(1281), - [anon_sym__Atomic] = ACTIONS(1281), - [anon_sym__Noreturn] = ACTIONS(1281), - [anon_sym_noreturn] = ACTIONS(1281), - [anon_sym_alignas] = ACTIONS(1281), - [anon_sym__Alignas] = ACTIONS(1281), - [sym_primitive_type] = ACTIONS(1281), - [anon_sym_enum] = ACTIONS(1281), - [anon_sym_struct] = ACTIONS(1281), - [anon_sym_union] = ACTIONS(1281), - [anon_sym_if] = ACTIONS(1281), - [anon_sym_else] = ACTIONS(1281), - [anon_sym_switch] = ACTIONS(1281), - [anon_sym_case] = ACTIONS(1281), - [anon_sym_default] = ACTIONS(1281), - [anon_sym_while] = ACTIONS(1281), - [anon_sym_do] = ACTIONS(1281), - [anon_sym_for] = ACTIONS(1281), - [anon_sym_return] = ACTIONS(1281), - [anon_sym_break] = ACTIONS(1281), - [anon_sym_continue] = ACTIONS(1281), - [anon_sym_goto] = ACTIONS(1281), - [anon_sym___try] = ACTIONS(1281), - [anon_sym___leave] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1283), - [anon_sym_PLUS_PLUS] = ACTIONS(1283), - [anon_sym_sizeof] = ACTIONS(1281), - [anon_sym___alignof__] = ACTIONS(1281), - [anon_sym___alignof] = ACTIONS(1281), - [anon_sym__alignof] = ACTIONS(1281), - [anon_sym_alignof] = ACTIONS(1281), - [anon_sym__Alignof] = ACTIONS(1281), - [anon_sym_offsetof] = ACTIONS(1281), - [anon_sym__Generic] = ACTIONS(1281), - [anon_sym_asm] = ACTIONS(1281), - [anon_sym___asm__] = ACTIONS(1281), - [sym_number_literal] = ACTIONS(1283), - [anon_sym_L_SQUOTE] = ACTIONS(1283), - [anon_sym_u_SQUOTE] = ACTIONS(1283), - [anon_sym_U_SQUOTE] = ACTIONS(1283), - [anon_sym_u8_SQUOTE] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1283), - [anon_sym_L_DQUOTE] = ACTIONS(1283), - [anon_sym_u_DQUOTE] = ACTIONS(1283), - [anon_sym_U_DQUOTE] = ACTIONS(1283), - [anon_sym_u8_DQUOTE] = ACTIONS(1283), - [anon_sym_DQUOTE] = ACTIONS(1283), - [sym_true] = ACTIONS(1281), - [sym_false] = ACTIONS(1281), - [anon_sym_NULL] = ACTIONS(1281), - [anon_sym_nullptr] = ACTIONS(1281), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [265] = { - [sym_identifier] = ACTIONS(1285), - [aux_sym_preproc_include_token1] = ACTIONS(1285), - [aux_sym_preproc_def_token1] = ACTIONS(1285), - [aux_sym_preproc_if_token1] = ACTIONS(1285), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1285), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1285), - [sym_preproc_directive] = ACTIONS(1285), - [anon_sym_LPAREN2] = ACTIONS(1287), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_TILDE] = ACTIONS(1287), - [anon_sym_DASH] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1287), - [anon_sym_AMP] = ACTIONS(1287), - [anon_sym_SEMI] = ACTIONS(1287), - [anon_sym___extension__] = ACTIONS(1285), - [anon_sym_typedef] = ACTIONS(1285), - [anon_sym_extern] = ACTIONS(1285), - [anon_sym___attribute__] = ACTIONS(1285), - [anon_sym___scanf] = ACTIONS(1285), - [anon_sym___printf] = ACTIONS(1285), - [anon_sym___read_mostly] = ACTIONS(1285), - [anon_sym___must_hold] = ACTIONS(1285), - [anon_sym___ro_after_init] = ACTIONS(1285), - [anon_sym___noreturn] = ACTIONS(1285), - [anon_sym___cold] = ACTIONS(1285), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1287), - [anon_sym___declspec] = ACTIONS(1285), - [anon_sym___init] = ACTIONS(1285), - [anon_sym___exit] = ACTIONS(1285), - [anon_sym___cdecl] = ACTIONS(1285), - [anon_sym___clrcall] = ACTIONS(1285), - [anon_sym___stdcall] = ACTIONS(1285), - [anon_sym___fastcall] = ACTIONS(1285), - [anon_sym___thiscall] = ACTIONS(1285), - [anon_sym___vectorcall] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1287), - [anon_sym_RBRACE] = ACTIONS(1287), - [anon_sym_signed] = ACTIONS(1285), - [anon_sym_unsigned] = ACTIONS(1285), - [anon_sym_long] = ACTIONS(1285), - [anon_sym_short] = ACTIONS(1285), - [anon_sym_static] = ACTIONS(1285), - [anon_sym_auto] = ACTIONS(1285), - [anon_sym_register] = ACTIONS(1285), - [anon_sym_inline] = ACTIONS(1285), - [anon_sym___inline] = ACTIONS(1285), - [anon_sym___inline__] = ACTIONS(1285), - [anon_sym___forceinline] = ACTIONS(1285), - [anon_sym_thread_local] = ACTIONS(1285), - [anon_sym___thread] = ACTIONS(1285), - [anon_sym_const] = ACTIONS(1285), - [anon_sym_constexpr] = ACTIONS(1285), - [anon_sym_volatile] = ACTIONS(1285), - [anon_sym_restrict] = ACTIONS(1285), - [anon_sym___restrict__] = ACTIONS(1285), - [anon_sym__Atomic] = ACTIONS(1285), - [anon_sym__Noreturn] = ACTIONS(1285), - [anon_sym_noreturn] = ACTIONS(1285), - [anon_sym_alignas] = ACTIONS(1285), - [anon_sym__Alignas] = ACTIONS(1285), - [sym_primitive_type] = ACTIONS(1285), - [anon_sym_enum] = ACTIONS(1285), - [anon_sym_struct] = ACTIONS(1285), - [anon_sym_union] = ACTIONS(1285), - [anon_sym_if] = ACTIONS(1285), - [anon_sym_else] = ACTIONS(1285), - [anon_sym_switch] = ACTIONS(1285), - [anon_sym_case] = ACTIONS(1285), - [anon_sym_default] = ACTIONS(1285), - [anon_sym_while] = ACTIONS(1285), - [anon_sym_do] = ACTIONS(1285), - [anon_sym_for] = ACTIONS(1285), - [anon_sym_return] = ACTIONS(1285), - [anon_sym_break] = ACTIONS(1285), - [anon_sym_continue] = ACTIONS(1285), - [anon_sym_goto] = ACTIONS(1285), - [anon_sym___try] = ACTIONS(1285), - [anon_sym___leave] = ACTIONS(1285), - [anon_sym_DASH_DASH] = ACTIONS(1287), - [anon_sym_PLUS_PLUS] = ACTIONS(1287), - [anon_sym_sizeof] = ACTIONS(1285), - [anon_sym___alignof__] = ACTIONS(1285), - [anon_sym___alignof] = ACTIONS(1285), - [anon_sym__alignof] = ACTIONS(1285), - [anon_sym_alignof] = ACTIONS(1285), - [anon_sym__Alignof] = ACTIONS(1285), - [anon_sym_offsetof] = ACTIONS(1285), - [anon_sym__Generic] = ACTIONS(1285), - [anon_sym_asm] = ACTIONS(1285), - [anon_sym___asm__] = ACTIONS(1285), - [sym_number_literal] = ACTIONS(1287), - [anon_sym_L_SQUOTE] = ACTIONS(1287), - [anon_sym_u_SQUOTE] = ACTIONS(1287), - [anon_sym_U_SQUOTE] = ACTIONS(1287), - [anon_sym_u8_SQUOTE] = ACTIONS(1287), - [anon_sym_SQUOTE] = ACTIONS(1287), - [anon_sym_L_DQUOTE] = ACTIONS(1287), - [anon_sym_u_DQUOTE] = ACTIONS(1287), - [anon_sym_U_DQUOTE] = ACTIONS(1287), - [anon_sym_u8_DQUOTE] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1287), - [sym_true] = ACTIONS(1285), - [sym_false] = ACTIONS(1285), - [anon_sym_NULL] = ACTIONS(1285), - [anon_sym_nullptr] = ACTIONS(1285), - [sym_comment] = ACTIONS(3), + [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), + [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), }, [266] = { - [sym_identifier] = ACTIONS(1261), - [aux_sym_preproc_include_token1] = ACTIONS(1261), - [aux_sym_preproc_def_token1] = ACTIONS(1261), - [aux_sym_preproc_if_token1] = ACTIONS(1261), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1261), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1261), - [sym_preproc_directive] = ACTIONS(1261), - [anon_sym_LPAREN2] = ACTIONS(1263), - [anon_sym_BANG] = ACTIONS(1263), - [anon_sym_TILDE] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1261), - [anon_sym_PLUS] = ACTIONS(1261), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_AMP] = ACTIONS(1263), - [anon_sym_SEMI] = ACTIONS(1263), - [anon_sym___extension__] = ACTIONS(1261), - [anon_sym_typedef] = ACTIONS(1261), - [anon_sym_extern] = ACTIONS(1261), - [anon_sym___attribute__] = ACTIONS(1261), - [anon_sym___scanf] = ACTIONS(1261), - [anon_sym___printf] = ACTIONS(1261), - [anon_sym___read_mostly] = ACTIONS(1261), - [anon_sym___must_hold] = ACTIONS(1261), - [anon_sym___ro_after_init] = ACTIONS(1261), - [anon_sym___noreturn] = ACTIONS(1261), - [anon_sym___cold] = ACTIONS(1261), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1263), - [anon_sym___declspec] = ACTIONS(1261), - [anon_sym___init] = ACTIONS(1261), - [anon_sym___exit] = ACTIONS(1261), - [anon_sym___cdecl] = ACTIONS(1261), - [anon_sym___clrcall] = ACTIONS(1261), - [anon_sym___stdcall] = ACTIONS(1261), - [anon_sym___fastcall] = ACTIONS(1261), - [anon_sym___thiscall] = ACTIONS(1261), - [anon_sym___vectorcall] = ACTIONS(1261), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_RBRACE] = ACTIONS(1263), - [anon_sym_signed] = ACTIONS(1261), - [anon_sym_unsigned] = ACTIONS(1261), - [anon_sym_long] = ACTIONS(1261), - [anon_sym_short] = ACTIONS(1261), - [anon_sym_static] = ACTIONS(1261), - [anon_sym_auto] = ACTIONS(1261), - [anon_sym_register] = ACTIONS(1261), - [anon_sym_inline] = ACTIONS(1261), - [anon_sym___inline] = ACTIONS(1261), - [anon_sym___inline__] = ACTIONS(1261), - [anon_sym___forceinline] = ACTIONS(1261), - [anon_sym_thread_local] = ACTIONS(1261), - [anon_sym___thread] = ACTIONS(1261), - [anon_sym_const] = ACTIONS(1261), - [anon_sym_constexpr] = ACTIONS(1261), - [anon_sym_volatile] = ACTIONS(1261), - [anon_sym_restrict] = ACTIONS(1261), - [anon_sym___restrict__] = ACTIONS(1261), - [anon_sym__Atomic] = ACTIONS(1261), - [anon_sym__Noreturn] = ACTIONS(1261), - [anon_sym_noreturn] = ACTIONS(1261), - [anon_sym_alignas] = ACTIONS(1261), - [anon_sym__Alignas] = ACTIONS(1261), - [sym_primitive_type] = ACTIONS(1261), - [anon_sym_enum] = ACTIONS(1261), - [anon_sym_struct] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1261), - [anon_sym_if] = ACTIONS(1261), - [anon_sym_else] = ACTIONS(1261), - [anon_sym_switch] = ACTIONS(1261), - [anon_sym_case] = ACTIONS(1261), - [anon_sym_default] = ACTIONS(1261), - [anon_sym_while] = ACTIONS(1261), - [anon_sym_do] = ACTIONS(1261), - [anon_sym_for] = ACTIONS(1261), - [anon_sym_return] = ACTIONS(1261), - [anon_sym_break] = ACTIONS(1261), - [anon_sym_continue] = ACTIONS(1261), - [anon_sym_goto] = ACTIONS(1261), - [anon_sym___try] = ACTIONS(1261), - [anon_sym___leave] = ACTIONS(1261), - [anon_sym_DASH_DASH] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_sizeof] = ACTIONS(1261), - [anon_sym___alignof__] = ACTIONS(1261), - [anon_sym___alignof] = ACTIONS(1261), - [anon_sym__alignof] = ACTIONS(1261), - [anon_sym_alignof] = ACTIONS(1261), - [anon_sym__Alignof] = ACTIONS(1261), - [anon_sym_offsetof] = ACTIONS(1261), - [anon_sym__Generic] = ACTIONS(1261), - [anon_sym_asm] = ACTIONS(1261), - [anon_sym___asm__] = ACTIONS(1261), - [sym_number_literal] = ACTIONS(1263), - [anon_sym_L_SQUOTE] = ACTIONS(1263), - [anon_sym_u_SQUOTE] = ACTIONS(1263), - [anon_sym_U_SQUOTE] = ACTIONS(1263), - [anon_sym_u8_SQUOTE] = ACTIONS(1263), - [anon_sym_SQUOTE] = ACTIONS(1263), - [anon_sym_L_DQUOTE] = ACTIONS(1263), - [anon_sym_u_DQUOTE] = ACTIONS(1263), - [anon_sym_U_DQUOTE] = ACTIONS(1263), - [anon_sym_u8_DQUOTE] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym_true] = ACTIONS(1261), - [sym_false] = ACTIONS(1261), - [anon_sym_NULL] = ACTIONS(1261), - [anon_sym_nullptr] = ACTIONS(1261), - [sym_comment] = ACTIONS(3), + [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), + [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), }, [267] = { - [sym_identifier] = ACTIONS(1269), - [aux_sym_preproc_include_token1] = ACTIONS(1269), - [aux_sym_preproc_def_token1] = ACTIONS(1269), - [aux_sym_preproc_if_token1] = ACTIONS(1269), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1269), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1269), - [sym_preproc_directive] = ACTIONS(1269), - [anon_sym_LPAREN2] = ACTIONS(1271), - [anon_sym_BANG] = ACTIONS(1271), - [anon_sym_TILDE] = ACTIONS(1271), - [anon_sym_DASH] = ACTIONS(1269), - [anon_sym_PLUS] = ACTIONS(1269), - [anon_sym_STAR] = ACTIONS(1271), - [anon_sym_AMP] = ACTIONS(1271), - [anon_sym_SEMI] = ACTIONS(1271), - [anon_sym___extension__] = ACTIONS(1269), - [anon_sym_typedef] = ACTIONS(1269), - [anon_sym_extern] = ACTIONS(1269), - [anon_sym___attribute__] = ACTIONS(1269), - [anon_sym___scanf] = ACTIONS(1269), - [anon_sym___printf] = ACTIONS(1269), - [anon_sym___read_mostly] = ACTIONS(1269), - [anon_sym___must_hold] = ACTIONS(1269), - [anon_sym___ro_after_init] = ACTIONS(1269), - [anon_sym___noreturn] = ACTIONS(1269), - [anon_sym___cold] = ACTIONS(1269), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1271), - [anon_sym___declspec] = ACTIONS(1269), - [anon_sym___init] = ACTIONS(1269), - [anon_sym___exit] = ACTIONS(1269), - [anon_sym___cdecl] = ACTIONS(1269), - [anon_sym___clrcall] = ACTIONS(1269), - [anon_sym___stdcall] = ACTIONS(1269), - [anon_sym___fastcall] = ACTIONS(1269), - [anon_sym___thiscall] = ACTIONS(1269), - [anon_sym___vectorcall] = ACTIONS(1269), - [anon_sym_LBRACE] = ACTIONS(1271), - [anon_sym_RBRACE] = ACTIONS(1271), - [anon_sym_signed] = ACTIONS(1269), - [anon_sym_unsigned] = ACTIONS(1269), - [anon_sym_long] = ACTIONS(1269), - [anon_sym_short] = ACTIONS(1269), - [anon_sym_static] = ACTIONS(1269), - [anon_sym_auto] = ACTIONS(1269), - [anon_sym_register] = ACTIONS(1269), - [anon_sym_inline] = ACTIONS(1269), - [anon_sym___inline] = ACTIONS(1269), - [anon_sym___inline__] = ACTIONS(1269), - [anon_sym___forceinline] = ACTIONS(1269), - [anon_sym_thread_local] = ACTIONS(1269), - [anon_sym___thread] = ACTIONS(1269), - [anon_sym_const] = ACTIONS(1269), - [anon_sym_constexpr] = ACTIONS(1269), - [anon_sym_volatile] = ACTIONS(1269), - [anon_sym_restrict] = ACTIONS(1269), - [anon_sym___restrict__] = ACTIONS(1269), - [anon_sym__Atomic] = ACTIONS(1269), - [anon_sym__Noreturn] = ACTIONS(1269), - [anon_sym_noreturn] = ACTIONS(1269), - [anon_sym_alignas] = ACTIONS(1269), - [anon_sym__Alignas] = ACTIONS(1269), - [sym_primitive_type] = ACTIONS(1269), - [anon_sym_enum] = ACTIONS(1269), - [anon_sym_struct] = ACTIONS(1269), - [anon_sym_union] = ACTIONS(1269), - [anon_sym_if] = ACTIONS(1269), - [anon_sym_else] = ACTIONS(1269), - [anon_sym_switch] = ACTIONS(1269), - [anon_sym_case] = ACTIONS(1269), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_while] = ACTIONS(1269), - [anon_sym_do] = ACTIONS(1269), - [anon_sym_for] = ACTIONS(1269), - [anon_sym_return] = ACTIONS(1269), - [anon_sym_break] = ACTIONS(1269), - [anon_sym_continue] = ACTIONS(1269), - [anon_sym_goto] = ACTIONS(1269), - [anon_sym___try] = ACTIONS(1269), - [anon_sym___leave] = ACTIONS(1269), - [anon_sym_DASH_DASH] = ACTIONS(1271), - [anon_sym_PLUS_PLUS] = ACTIONS(1271), - [anon_sym_sizeof] = ACTIONS(1269), - [anon_sym___alignof__] = ACTIONS(1269), - [anon_sym___alignof] = ACTIONS(1269), - [anon_sym__alignof] = ACTIONS(1269), - [anon_sym_alignof] = ACTIONS(1269), - [anon_sym__Alignof] = ACTIONS(1269), - [anon_sym_offsetof] = ACTIONS(1269), - [anon_sym__Generic] = ACTIONS(1269), - [anon_sym_asm] = ACTIONS(1269), - [anon_sym___asm__] = ACTIONS(1269), - [sym_number_literal] = ACTIONS(1271), - [anon_sym_L_SQUOTE] = ACTIONS(1271), - [anon_sym_u_SQUOTE] = ACTIONS(1271), - [anon_sym_U_SQUOTE] = ACTIONS(1271), - [anon_sym_u8_SQUOTE] = ACTIONS(1271), - [anon_sym_SQUOTE] = ACTIONS(1271), - [anon_sym_L_DQUOTE] = ACTIONS(1271), - [anon_sym_u_DQUOTE] = ACTIONS(1271), - [anon_sym_U_DQUOTE] = ACTIONS(1271), - [anon_sym_u8_DQUOTE] = ACTIONS(1271), - [anon_sym_DQUOTE] = ACTIONS(1271), - [sym_true] = ACTIONS(1269), - [sym_false] = ACTIONS(1269), - [anon_sym_NULL] = ACTIONS(1269), - [anon_sym_nullptr] = ACTIONS(1269), - [sym_comment] = ACTIONS(3), + [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_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), }, [268] = { - [sym_identifier] = ACTIONS(1277), - [aux_sym_preproc_include_token1] = ACTIONS(1277), - [aux_sym_preproc_def_token1] = ACTIONS(1277), - [aux_sym_preproc_if_token1] = ACTIONS(1277), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1277), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1277), - [sym_preproc_directive] = ACTIONS(1277), - [anon_sym_LPAREN2] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_DASH] = ACTIONS(1277), - [anon_sym_PLUS] = ACTIONS(1277), - [anon_sym_STAR] = ACTIONS(1279), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_SEMI] = ACTIONS(1279), - [anon_sym___extension__] = ACTIONS(1277), - [anon_sym_typedef] = ACTIONS(1277), - [anon_sym_extern] = ACTIONS(1277), - [anon_sym___attribute__] = ACTIONS(1277), - [anon_sym___scanf] = ACTIONS(1277), - [anon_sym___printf] = ACTIONS(1277), - [anon_sym___read_mostly] = ACTIONS(1277), - [anon_sym___must_hold] = ACTIONS(1277), - [anon_sym___ro_after_init] = ACTIONS(1277), - [anon_sym___noreturn] = ACTIONS(1277), - [anon_sym___cold] = ACTIONS(1277), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1279), - [anon_sym___declspec] = ACTIONS(1277), - [anon_sym___init] = ACTIONS(1277), - [anon_sym___exit] = ACTIONS(1277), - [anon_sym___cdecl] = ACTIONS(1277), - [anon_sym___clrcall] = ACTIONS(1277), - [anon_sym___stdcall] = ACTIONS(1277), - [anon_sym___fastcall] = ACTIONS(1277), - [anon_sym___thiscall] = ACTIONS(1277), - [anon_sym___vectorcall] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(1279), - [anon_sym_RBRACE] = ACTIONS(1279), - [anon_sym_signed] = ACTIONS(1277), - [anon_sym_unsigned] = ACTIONS(1277), - [anon_sym_long] = ACTIONS(1277), - [anon_sym_short] = ACTIONS(1277), - [anon_sym_static] = ACTIONS(1277), - [anon_sym_auto] = ACTIONS(1277), - [anon_sym_register] = ACTIONS(1277), - [anon_sym_inline] = ACTIONS(1277), - [anon_sym___inline] = ACTIONS(1277), - [anon_sym___inline__] = ACTIONS(1277), - [anon_sym___forceinline] = ACTIONS(1277), - [anon_sym_thread_local] = ACTIONS(1277), - [anon_sym___thread] = ACTIONS(1277), - [anon_sym_const] = ACTIONS(1277), - [anon_sym_constexpr] = ACTIONS(1277), - [anon_sym_volatile] = ACTIONS(1277), - [anon_sym_restrict] = ACTIONS(1277), - [anon_sym___restrict__] = ACTIONS(1277), - [anon_sym__Atomic] = ACTIONS(1277), - [anon_sym__Noreturn] = ACTIONS(1277), - [anon_sym_noreturn] = ACTIONS(1277), - [anon_sym_alignas] = ACTIONS(1277), - [anon_sym__Alignas] = ACTIONS(1277), - [sym_primitive_type] = ACTIONS(1277), - [anon_sym_enum] = ACTIONS(1277), - [anon_sym_struct] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1277), - [anon_sym_if] = ACTIONS(1277), - [anon_sym_else] = ACTIONS(1277), - [anon_sym_switch] = ACTIONS(1277), - [anon_sym_case] = ACTIONS(1277), - [anon_sym_default] = ACTIONS(1277), - [anon_sym_while] = ACTIONS(1277), - [anon_sym_do] = ACTIONS(1277), - [anon_sym_for] = ACTIONS(1277), - [anon_sym_return] = ACTIONS(1277), - [anon_sym_break] = ACTIONS(1277), - [anon_sym_continue] = ACTIONS(1277), - [anon_sym_goto] = ACTIONS(1277), - [anon_sym___try] = ACTIONS(1277), - [anon_sym___leave] = ACTIONS(1277), - [anon_sym_DASH_DASH] = ACTIONS(1279), - [anon_sym_PLUS_PLUS] = ACTIONS(1279), - [anon_sym_sizeof] = ACTIONS(1277), - [anon_sym___alignof__] = ACTIONS(1277), - [anon_sym___alignof] = ACTIONS(1277), - [anon_sym__alignof] = ACTIONS(1277), - [anon_sym_alignof] = ACTIONS(1277), - [anon_sym__Alignof] = ACTIONS(1277), - [anon_sym_offsetof] = ACTIONS(1277), - [anon_sym__Generic] = ACTIONS(1277), - [anon_sym_asm] = ACTIONS(1277), - [anon_sym___asm__] = ACTIONS(1277), - [sym_number_literal] = ACTIONS(1279), - [anon_sym_L_SQUOTE] = ACTIONS(1279), - [anon_sym_u_SQUOTE] = ACTIONS(1279), - [anon_sym_U_SQUOTE] = ACTIONS(1279), - [anon_sym_u8_SQUOTE] = ACTIONS(1279), - [anon_sym_SQUOTE] = ACTIONS(1279), - [anon_sym_L_DQUOTE] = ACTIONS(1279), - [anon_sym_u_DQUOTE] = ACTIONS(1279), - [anon_sym_U_DQUOTE] = ACTIONS(1279), - [anon_sym_u8_DQUOTE] = ACTIONS(1279), - [anon_sym_DQUOTE] = ACTIONS(1279), - [sym_true] = ACTIONS(1277), - [sym_false] = ACTIONS(1277), - [anon_sym_NULL] = ACTIONS(1277), - [anon_sym_nullptr] = ACTIONS(1277), - [sym_comment] = ACTIONS(3), + [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_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] = { - [sym_identifier] = ACTIONS(1237), - [aux_sym_preproc_include_token1] = ACTIONS(1237), - [aux_sym_preproc_def_token1] = ACTIONS(1237), - [aux_sym_preproc_if_token1] = ACTIONS(1237), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1237), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1237), - [sym_preproc_directive] = ACTIONS(1237), - [anon_sym_LPAREN2] = ACTIONS(1239), - [anon_sym_BANG] = ACTIONS(1239), - [anon_sym_TILDE] = ACTIONS(1239), - [anon_sym_DASH] = ACTIONS(1237), - [anon_sym_PLUS] = ACTIONS(1237), - [anon_sym_STAR] = ACTIONS(1239), - [anon_sym_AMP] = ACTIONS(1239), - [anon_sym_SEMI] = ACTIONS(1239), - [anon_sym___extension__] = ACTIONS(1237), - [anon_sym_typedef] = ACTIONS(1237), - [anon_sym_extern] = ACTIONS(1237), - [anon_sym___attribute__] = ACTIONS(1237), - [anon_sym___scanf] = ACTIONS(1237), - [anon_sym___printf] = ACTIONS(1237), - [anon_sym___read_mostly] = ACTIONS(1237), - [anon_sym___must_hold] = ACTIONS(1237), - [anon_sym___ro_after_init] = ACTIONS(1237), - [anon_sym___noreturn] = ACTIONS(1237), - [anon_sym___cold] = ACTIONS(1237), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1239), - [anon_sym___declspec] = ACTIONS(1237), - [anon_sym___init] = ACTIONS(1237), - [anon_sym___exit] = ACTIONS(1237), - [anon_sym___cdecl] = ACTIONS(1237), - [anon_sym___clrcall] = ACTIONS(1237), - [anon_sym___stdcall] = ACTIONS(1237), - [anon_sym___fastcall] = ACTIONS(1237), - [anon_sym___thiscall] = ACTIONS(1237), - [anon_sym___vectorcall] = ACTIONS(1237), - [anon_sym_LBRACE] = ACTIONS(1239), - [anon_sym_RBRACE] = ACTIONS(1239), - [anon_sym_signed] = ACTIONS(1237), - [anon_sym_unsigned] = ACTIONS(1237), - [anon_sym_long] = ACTIONS(1237), - [anon_sym_short] = ACTIONS(1237), - [anon_sym_static] = ACTIONS(1237), - [anon_sym_auto] = ACTIONS(1237), - [anon_sym_register] = ACTIONS(1237), - [anon_sym_inline] = ACTIONS(1237), - [anon_sym___inline] = ACTIONS(1237), - [anon_sym___inline__] = ACTIONS(1237), - [anon_sym___forceinline] = ACTIONS(1237), - [anon_sym_thread_local] = ACTIONS(1237), - [anon_sym___thread] = ACTIONS(1237), - [anon_sym_const] = ACTIONS(1237), - [anon_sym_constexpr] = ACTIONS(1237), - [anon_sym_volatile] = ACTIONS(1237), - [anon_sym_restrict] = ACTIONS(1237), - [anon_sym___restrict__] = ACTIONS(1237), - [anon_sym__Atomic] = ACTIONS(1237), - [anon_sym__Noreturn] = ACTIONS(1237), - [anon_sym_noreturn] = ACTIONS(1237), - [anon_sym_alignas] = ACTIONS(1237), - [anon_sym__Alignas] = ACTIONS(1237), - [sym_primitive_type] = ACTIONS(1237), - [anon_sym_enum] = ACTIONS(1237), - [anon_sym_struct] = ACTIONS(1237), - [anon_sym_union] = ACTIONS(1237), - [anon_sym_if] = ACTIONS(1237), - [anon_sym_else] = ACTIONS(1237), - [anon_sym_switch] = ACTIONS(1237), - [anon_sym_case] = ACTIONS(1237), - [anon_sym_default] = ACTIONS(1237), - [anon_sym_while] = ACTIONS(1237), - [anon_sym_do] = ACTIONS(1237), - [anon_sym_for] = ACTIONS(1237), - [anon_sym_return] = ACTIONS(1237), - [anon_sym_break] = ACTIONS(1237), - [anon_sym_continue] = ACTIONS(1237), - [anon_sym_goto] = ACTIONS(1237), - [anon_sym___try] = ACTIONS(1237), - [anon_sym___leave] = ACTIONS(1237), - [anon_sym_DASH_DASH] = ACTIONS(1239), - [anon_sym_PLUS_PLUS] = ACTIONS(1239), - [anon_sym_sizeof] = ACTIONS(1237), - [anon_sym___alignof__] = ACTIONS(1237), - [anon_sym___alignof] = ACTIONS(1237), - [anon_sym__alignof] = ACTIONS(1237), - [anon_sym_alignof] = ACTIONS(1237), - [anon_sym__Alignof] = ACTIONS(1237), - [anon_sym_offsetof] = ACTIONS(1237), - [anon_sym__Generic] = ACTIONS(1237), - [anon_sym_asm] = ACTIONS(1237), - [anon_sym___asm__] = ACTIONS(1237), - [sym_number_literal] = ACTIONS(1239), - [anon_sym_L_SQUOTE] = ACTIONS(1239), - [anon_sym_u_SQUOTE] = ACTIONS(1239), - [anon_sym_U_SQUOTE] = ACTIONS(1239), - [anon_sym_u8_SQUOTE] = ACTIONS(1239), - [anon_sym_SQUOTE] = ACTIONS(1239), - [anon_sym_L_DQUOTE] = ACTIONS(1239), - [anon_sym_u_DQUOTE] = ACTIONS(1239), - [anon_sym_U_DQUOTE] = ACTIONS(1239), - [anon_sym_u8_DQUOTE] = ACTIONS(1239), - [anon_sym_DQUOTE] = ACTIONS(1239), - [sym_true] = ACTIONS(1237), - [sym_false] = ACTIONS(1237), - [anon_sym_NULL] = ACTIONS(1237), - [anon_sym_nullptr] = ACTIONS(1237), - [sym_comment] = ACTIONS(3), + [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), }, [270] = { - [sym_identifier] = ACTIONS(1161), - [aux_sym_preproc_include_token1] = ACTIONS(1161), - [aux_sym_preproc_def_token1] = ACTIONS(1161), - [aux_sym_preproc_if_token1] = ACTIONS(1161), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1161), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1161), - [sym_preproc_directive] = ACTIONS(1161), - [anon_sym_LPAREN2] = ACTIONS(1163), - [anon_sym_BANG] = ACTIONS(1163), - [anon_sym_TILDE] = ACTIONS(1163), - [anon_sym_DASH] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_STAR] = ACTIONS(1163), - [anon_sym_AMP] = ACTIONS(1163), - [anon_sym_SEMI] = ACTIONS(1163), - [anon_sym___extension__] = ACTIONS(1161), - [anon_sym_typedef] = ACTIONS(1161), - [anon_sym_extern] = ACTIONS(1161), - [anon_sym___attribute__] = ACTIONS(1161), - [anon_sym___scanf] = ACTIONS(1161), - [anon_sym___printf] = ACTIONS(1161), - [anon_sym___read_mostly] = ACTIONS(1161), - [anon_sym___must_hold] = ACTIONS(1161), - [anon_sym___ro_after_init] = ACTIONS(1161), - [anon_sym___noreturn] = ACTIONS(1161), - [anon_sym___cold] = ACTIONS(1161), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1163), - [anon_sym___declspec] = ACTIONS(1161), - [anon_sym___init] = ACTIONS(1161), - [anon_sym___exit] = ACTIONS(1161), - [anon_sym___cdecl] = ACTIONS(1161), - [anon_sym___clrcall] = ACTIONS(1161), - [anon_sym___stdcall] = ACTIONS(1161), - [anon_sym___fastcall] = ACTIONS(1161), - [anon_sym___thiscall] = ACTIONS(1161), - [anon_sym___vectorcall] = ACTIONS(1161), - [anon_sym_LBRACE] = ACTIONS(1163), - [anon_sym_RBRACE] = ACTIONS(1163), - [anon_sym_signed] = ACTIONS(1161), - [anon_sym_unsigned] = ACTIONS(1161), - [anon_sym_long] = ACTIONS(1161), - [anon_sym_short] = ACTIONS(1161), - [anon_sym_static] = ACTIONS(1161), - [anon_sym_auto] = ACTIONS(1161), - [anon_sym_register] = ACTIONS(1161), - [anon_sym_inline] = ACTIONS(1161), - [anon_sym___inline] = ACTIONS(1161), - [anon_sym___inline__] = ACTIONS(1161), - [anon_sym___forceinline] = ACTIONS(1161), - [anon_sym_thread_local] = ACTIONS(1161), - [anon_sym___thread] = ACTIONS(1161), - [anon_sym_const] = ACTIONS(1161), - [anon_sym_constexpr] = ACTIONS(1161), - [anon_sym_volatile] = ACTIONS(1161), - [anon_sym_restrict] = ACTIONS(1161), - [anon_sym___restrict__] = ACTIONS(1161), - [anon_sym__Atomic] = ACTIONS(1161), - [anon_sym__Noreturn] = ACTIONS(1161), - [anon_sym_noreturn] = ACTIONS(1161), - [anon_sym_alignas] = ACTIONS(1161), - [anon_sym__Alignas] = ACTIONS(1161), - [sym_primitive_type] = ACTIONS(1161), - [anon_sym_enum] = ACTIONS(1161), - [anon_sym_struct] = ACTIONS(1161), - [anon_sym_union] = ACTIONS(1161), - [anon_sym_if] = ACTIONS(1161), - [anon_sym_else] = ACTIONS(1161), - [anon_sym_switch] = ACTIONS(1161), - [anon_sym_case] = ACTIONS(1161), - [anon_sym_default] = ACTIONS(1161), - [anon_sym_while] = ACTIONS(1161), - [anon_sym_do] = ACTIONS(1161), - [anon_sym_for] = ACTIONS(1161), - [anon_sym_return] = ACTIONS(1161), - [anon_sym_break] = ACTIONS(1161), - [anon_sym_continue] = ACTIONS(1161), - [anon_sym_goto] = ACTIONS(1161), - [anon_sym___try] = ACTIONS(1161), - [anon_sym___leave] = ACTIONS(1161), - [anon_sym_DASH_DASH] = ACTIONS(1163), - [anon_sym_PLUS_PLUS] = ACTIONS(1163), - [anon_sym_sizeof] = ACTIONS(1161), - [anon_sym___alignof__] = ACTIONS(1161), - [anon_sym___alignof] = ACTIONS(1161), - [anon_sym__alignof] = ACTIONS(1161), - [anon_sym_alignof] = ACTIONS(1161), - [anon_sym__Alignof] = ACTIONS(1161), - [anon_sym_offsetof] = ACTIONS(1161), - [anon_sym__Generic] = ACTIONS(1161), - [anon_sym_asm] = ACTIONS(1161), - [anon_sym___asm__] = ACTIONS(1161), - [sym_number_literal] = ACTIONS(1163), - [anon_sym_L_SQUOTE] = ACTIONS(1163), - [anon_sym_u_SQUOTE] = ACTIONS(1163), - [anon_sym_U_SQUOTE] = ACTIONS(1163), - [anon_sym_u8_SQUOTE] = ACTIONS(1163), - [anon_sym_SQUOTE] = ACTIONS(1163), - [anon_sym_L_DQUOTE] = ACTIONS(1163), - [anon_sym_u_DQUOTE] = ACTIONS(1163), - [anon_sym_U_DQUOTE] = ACTIONS(1163), - [anon_sym_u8_DQUOTE] = ACTIONS(1163), - [anon_sym_DQUOTE] = ACTIONS(1163), - [sym_true] = ACTIONS(1161), - [sym_false] = ACTIONS(1161), - [anon_sym_NULL] = ACTIONS(1161), - [anon_sym_nullptr] = ACTIONS(1161), - [sym_comment] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1336), + [sym_identifier] = ACTIONS(1334), + [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), + [sym_comment] = ACTIONS(5), }, [271] = { - [sym_identifier] = ACTIONS(1165), - [aux_sym_preproc_include_token1] = ACTIONS(1165), - [aux_sym_preproc_def_token1] = ACTIONS(1165), - [aux_sym_preproc_if_token1] = ACTIONS(1165), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1165), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1165), - [sym_preproc_directive] = ACTIONS(1165), - [anon_sym_LPAREN2] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1167), - [anon_sym_TILDE] = ACTIONS(1167), - [anon_sym_DASH] = ACTIONS(1165), - [anon_sym_PLUS] = ACTIONS(1165), - [anon_sym_STAR] = ACTIONS(1167), - [anon_sym_AMP] = ACTIONS(1167), - [anon_sym_SEMI] = ACTIONS(1167), - [anon_sym___extension__] = ACTIONS(1165), - [anon_sym_typedef] = ACTIONS(1165), - [anon_sym_extern] = ACTIONS(1165), - [anon_sym___attribute__] = ACTIONS(1165), - [anon_sym___scanf] = ACTIONS(1165), - [anon_sym___printf] = ACTIONS(1165), - [anon_sym___read_mostly] = ACTIONS(1165), - [anon_sym___must_hold] = ACTIONS(1165), - [anon_sym___ro_after_init] = ACTIONS(1165), - [anon_sym___noreturn] = ACTIONS(1165), - [anon_sym___cold] = ACTIONS(1165), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1167), - [anon_sym___declspec] = ACTIONS(1165), - [anon_sym___init] = ACTIONS(1165), - [anon_sym___exit] = ACTIONS(1165), - [anon_sym___cdecl] = ACTIONS(1165), - [anon_sym___clrcall] = ACTIONS(1165), - [anon_sym___stdcall] = ACTIONS(1165), - [anon_sym___fastcall] = ACTIONS(1165), - [anon_sym___thiscall] = ACTIONS(1165), - [anon_sym___vectorcall] = ACTIONS(1165), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_RBRACE] = ACTIONS(1167), - [anon_sym_signed] = ACTIONS(1165), - [anon_sym_unsigned] = ACTIONS(1165), - [anon_sym_long] = ACTIONS(1165), - [anon_sym_short] = ACTIONS(1165), - [anon_sym_static] = ACTIONS(1165), - [anon_sym_auto] = ACTIONS(1165), - [anon_sym_register] = ACTIONS(1165), - [anon_sym_inline] = ACTIONS(1165), - [anon_sym___inline] = ACTIONS(1165), - [anon_sym___inline__] = ACTIONS(1165), - [anon_sym___forceinline] = ACTIONS(1165), - [anon_sym_thread_local] = ACTIONS(1165), - [anon_sym___thread] = ACTIONS(1165), - [anon_sym_const] = ACTIONS(1165), - [anon_sym_constexpr] = ACTIONS(1165), - [anon_sym_volatile] = ACTIONS(1165), - [anon_sym_restrict] = ACTIONS(1165), - [anon_sym___restrict__] = ACTIONS(1165), - [anon_sym__Atomic] = ACTIONS(1165), - [anon_sym__Noreturn] = ACTIONS(1165), - [anon_sym_noreturn] = ACTIONS(1165), - [anon_sym_alignas] = ACTIONS(1165), - [anon_sym__Alignas] = ACTIONS(1165), - [sym_primitive_type] = ACTIONS(1165), - [anon_sym_enum] = ACTIONS(1165), - [anon_sym_struct] = ACTIONS(1165), - [anon_sym_union] = ACTIONS(1165), - [anon_sym_if] = ACTIONS(1165), - [anon_sym_else] = ACTIONS(1165), - [anon_sym_switch] = ACTIONS(1165), - [anon_sym_case] = ACTIONS(1165), - [anon_sym_default] = ACTIONS(1165), - [anon_sym_while] = ACTIONS(1165), - [anon_sym_do] = ACTIONS(1165), - [anon_sym_for] = ACTIONS(1165), - [anon_sym_return] = ACTIONS(1165), - [anon_sym_break] = ACTIONS(1165), - [anon_sym_continue] = ACTIONS(1165), - [anon_sym_goto] = ACTIONS(1165), - [anon_sym___try] = ACTIONS(1165), - [anon_sym___leave] = ACTIONS(1165), - [anon_sym_DASH_DASH] = ACTIONS(1167), - [anon_sym_PLUS_PLUS] = ACTIONS(1167), - [anon_sym_sizeof] = ACTIONS(1165), - [anon_sym___alignof__] = ACTIONS(1165), - [anon_sym___alignof] = ACTIONS(1165), - [anon_sym__alignof] = ACTIONS(1165), - [anon_sym_alignof] = ACTIONS(1165), - [anon_sym__Alignof] = ACTIONS(1165), - [anon_sym_offsetof] = ACTIONS(1165), - [anon_sym__Generic] = ACTIONS(1165), - [anon_sym_asm] = ACTIONS(1165), - [anon_sym___asm__] = ACTIONS(1165), - [sym_number_literal] = ACTIONS(1167), - [anon_sym_L_SQUOTE] = ACTIONS(1167), - [anon_sym_u_SQUOTE] = ACTIONS(1167), - [anon_sym_U_SQUOTE] = ACTIONS(1167), - [anon_sym_u8_SQUOTE] = ACTIONS(1167), - [anon_sym_SQUOTE] = ACTIONS(1167), - [anon_sym_L_DQUOTE] = ACTIONS(1167), - [anon_sym_u_DQUOTE] = ACTIONS(1167), - [anon_sym_U_DQUOTE] = ACTIONS(1167), - [anon_sym_u8_DQUOTE] = ACTIONS(1167), - [anon_sym_DQUOTE] = ACTIONS(1167), - [sym_true] = ACTIONS(1165), - [sym_false] = ACTIONS(1165), - [anon_sym_NULL] = ACTIONS(1165), - [anon_sym_nullptr] = ACTIONS(1165), - [sym_comment] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1328), + [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_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), }, [272] = { - [sym_identifier] = ACTIONS(1241), - [aux_sym_preproc_include_token1] = ACTIONS(1241), - [aux_sym_preproc_def_token1] = ACTIONS(1241), - [aux_sym_preproc_if_token1] = ACTIONS(1241), - [aux_sym_preproc_if_token2] = ACTIONS(1241), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1241), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1241), - [sym_preproc_directive] = ACTIONS(1241), - [anon_sym_LPAREN2] = ACTIONS(1243), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1243), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_PLUS] = ACTIONS(1241), - [anon_sym_STAR] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1243), - [anon_sym_SEMI] = ACTIONS(1243), - [anon_sym___extension__] = ACTIONS(1241), - [anon_sym_typedef] = ACTIONS(1241), - [anon_sym_extern] = ACTIONS(1241), - [anon_sym___attribute__] = ACTIONS(1241), - [anon_sym___scanf] = ACTIONS(1241), - [anon_sym___printf] = ACTIONS(1241), - [anon_sym___read_mostly] = ACTIONS(1241), - [anon_sym___must_hold] = ACTIONS(1241), - [anon_sym___ro_after_init] = ACTIONS(1241), - [anon_sym___noreturn] = ACTIONS(1241), - [anon_sym___cold] = ACTIONS(1241), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1243), - [anon_sym___declspec] = ACTIONS(1241), - [anon_sym___init] = ACTIONS(1241), - [anon_sym___exit] = ACTIONS(1241), - [anon_sym___cdecl] = ACTIONS(1241), - [anon_sym___clrcall] = ACTIONS(1241), - [anon_sym___stdcall] = ACTIONS(1241), - [anon_sym___fastcall] = ACTIONS(1241), - [anon_sym___thiscall] = ACTIONS(1241), - [anon_sym___vectorcall] = ACTIONS(1241), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_signed] = ACTIONS(1241), - [anon_sym_unsigned] = ACTIONS(1241), - [anon_sym_long] = ACTIONS(1241), - [anon_sym_short] = ACTIONS(1241), - [anon_sym_static] = ACTIONS(1241), - [anon_sym_auto] = ACTIONS(1241), - [anon_sym_register] = ACTIONS(1241), - [anon_sym_inline] = ACTIONS(1241), - [anon_sym___inline] = ACTIONS(1241), - [anon_sym___inline__] = ACTIONS(1241), - [anon_sym___forceinline] = ACTIONS(1241), - [anon_sym_thread_local] = ACTIONS(1241), - [anon_sym___thread] = ACTIONS(1241), - [anon_sym_const] = ACTIONS(1241), - [anon_sym_constexpr] = ACTIONS(1241), - [anon_sym_volatile] = ACTIONS(1241), - [anon_sym_restrict] = ACTIONS(1241), - [anon_sym___restrict__] = ACTIONS(1241), - [anon_sym__Atomic] = ACTIONS(1241), - [anon_sym__Noreturn] = ACTIONS(1241), - [anon_sym_noreturn] = ACTIONS(1241), - [anon_sym_alignas] = ACTIONS(1241), - [anon_sym__Alignas] = ACTIONS(1241), - [sym_primitive_type] = ACTIONS(1241), - [anon_sym_enum] = ACTIONS(1241), - [anon_sym_struct] = ACTIONS(1241), - [anon_sym_union] = ACTIONS(1241), - [anon_sym_if] = ACTIONS(1241), - [anon_sym_else] = ACTIONS(1241), - [anon_sym_switch] = ACTIONS(1241), - [anon_sym_case] = ACTIONS(1241), - [anon_sym_default] = ACTIONS(1241), - [anon_sym_while] = ACTIONS(1241), - [anon_sym_do] = ACTIONS(1241), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_return] = ACTIONS(1241), - [anon_sym_break] = ACTIONS(1241), - [anon_sym_continue] = ACTIONS(1241), - [anon_sym_goto] = ACTIONS(1241), - [anon_sym___try] = ACTIONS(1241), - [anon_sym___leave] = ACTIONS(1241), - [anon_sym_DASH_DASH] = ACTIONS(1243), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_sizeof] = ACTIONS(1241), - [anon_sym___alignof__] = ACTIONS(1241), - [anon_sym___alignof] = ACTIONS(1241), - [anon_sym__alignof] = ACTIONS(1241), - [anon_sym_alignof] = ACTIONS(1241), - [anon_sym__Alignof] = ACTIONS(1241), - [anon_sym_offsetof] = ACTIONS(1241), - [anon_sym__Generic] = ACTIONS(1241), - [anon_sym_asm] = ACTIONS(1241), - [anon_sym___asm__] = ACTIONS(1241), - [sym_number_literal] = ACTIONS(1243), - [anon_sym_L_SQUOTE] = ACTIONS(1243), - [anon_sym_u_SQUOTE] = ACTIONS(1243), - [anon_sym_U_SQUOTE] = ACTIONS(1243), - [anon_sym_u8_SQUOTE] = ACTIONS(1243), - [anon_sym_SQUOTE] = ACTIONS(1243), - [anon_sym_L_DQUOTE] = ACTIONS(1243), - [anon_sym_u_DQUOTE] = ACTIONS(1243), - [anon_sym_U_DQUOTE] = ACTIONS(1243), - [anon_sym_u8_DQUOTE] = ACTIONS(1243), - [anon_sym_DQUOTE] = ACTIONS(1243), - [sym_true] = ACTIONS(1241), - [sym_false] = ACTIONS(1241), - [anon_sym_NULL] = ACTIONS(1241), - [anon_sym_nullptr] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), + [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), + [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), }, [273] = { - [sym_identifier] = ACTIONS(1249), - [aux_sym_preproc_include_token1] = ACTIONS(1249), - [aux_sym_preproc_def_token1] = ACTIONS(1249), - [aux_sym_preproc_if_token1] = ACTIONS(1249), - [aux_sym_preproc_if_token2] = ACTIONS(1249), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1249), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1249), - [sym_preproc_directive] = ACTIONS(1249), - [anon_sym_LPAREN2] = ACTIONS(1251), - [anon_sym_BANG] = ACTIONS(1251), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1249), - [anon_sym_STAR] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1251), - [anon_sym_SEMI] = ACTIONS(1251), - [anon_sym___extension__] = ACTIONS(1249), - [anon_sym_typedef] = ACTIONS(1249), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym___attribute__] = ACTIONS(1249), - [anon_sym___scanf] = ACTIONS(1249), - [anon_sym___printf] = ACTIONS(1249), - [anon_sym___read_mostly] = ACTIONS(1249), - [anon_sym___must_hold] = ACTIONS(1249), - [anon_sym___ro_after_init] = ACTIONS(1249), - [anon_sym___noreturn] = ACTIONS(1249), - [anon_sym___cold] = ACTIONS(1249), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1251), - [anon_sym___declspec] = ACTIONS(1249), - [anon_sym___init] = ACTIONS(1249), - [anon_sym___exit] = ACTIONS(1249), - [anon_sym___cdecl] = ACTIONS(1249), - [anon_sym___clrcall] = ACTIONS(1249), - [anon_sym___stdcall] = ACTIONS(1249), - [anon_sym___fastcall] = ACTIONS(1249), - [anon_sym___thiscall] = ACTIONS(1249), - [anon_sym___vectorcall] = ACTIONS(1249), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_signed] = ACTIONS(1249), - [anon_sym_unsigned] = ACTIONS(1249), - [anon_sym_long] = ACTIONS(1249), - [anon_sym_short] = ACTIONS(1249), - [anon_sym_static] = ACTIONS(1249), - [anon_sym_auto] = ACTIONS(1249), - [anon_sym_register] = ACTIONS(1249), - [anon_sym_inline] = ACTIONS(1249), - [anon_sym___inline] = ACTIONS(1249), - [anon_sym___inline__] = ACTIONS(1249), - [anon_sym___forceinline] = ACTIONS(1249), - [anon_sym_thread_local] = ACTIONS(1249), - [anon_sym___thread] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_constexpr] = ACTIONS(1249), - [anon_sym_volatile] = ACTIONS(1249), - [anon_sym_restrict] = ACTIONS(1249), - [anon_sym___restrict__] = ACTIONS(1249), - [anon_sym__Atomic] = ACTIONS(1249), - [anon_sym__Noreturn] = ACTIONS(1249), - [anon_sym_noreturn] = ACTIONS(1249), - [anon_sym_alignas] = ACTIONS(1249), - [anon_sym__Alignas] = ACTIONS(1249), - [sym_primitive_type] = ACTIONS(1249), - [anon_sym_enum] = ACTIONS(1249), - [anon_sym_struct] = ACTIONS(1249), - [anon_sym_union] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1249), - [anon_sym_else] = ACTIONS(1249), - [anon_sym_switch] = ACTIONS(1249), - [anon_sym_case] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1249), - [anon_sym_while] = ACTIONS(1249), - [anon_sym_do] = ACTIONS(1249), - [anon_sym_for] = ACTIONS(1249), - [anon_sym_return] = ACTIONS(1249), - [anon_sym_break] = ACTIONS(1249), - [anon_sym_continue] = ACTIONS(1249), - [anon_sym_goto] = ACTIONS(1249), - [anon_sym___try] = ACTIONS(1249), - [anon_sym___leave] = ACTIONS(1249), - [anon_sym_DASH_DASH] = ACTIONS(1251), - [anon_sym_PLUS_PLUS] = ACTIONS(1251), - [anon_sym_sizeof] = ACTIONS(1249), - [anon_sym___alignof__] = ACTIONS(1249), - [anon_sym___alignof] = ACTIONS(1249), - [anon_sym__alignof] = ACTIONS(1249), - [anon_sym_alignof] = ACTIONS(1249), - [anon_sym__Alignof] = ACTIONS(1249), - [anon_sym_offsetof] = ACTIONS(1249), - [anon_sym__Generic] = ACTIONS(1249), - [anon_sym_asm] = ACTIONS(1249), - [anon_sym___asm__] = ACTIONS(1249), - [sym_number_literal] = ACTIONS(1251), - [anon_sym_L_SQUOTE] = ACTIONS(1251), - [anon_sym_u_SQUOTE] = ACTIONS(1251), - [anon_sym_U_SQUOTE] = ACTIONS(1251), - [anon_sym_u8_SQUOTE] = ACTIONS(1251), - [anon_sym_SQUOTE] = ACTIONS(1251), - [anon_sym_L_DQUOTE] = ACTIONS(1251), - [anon_sym_u_DQUOTE] = ACTIONS(1251), - [anon_sym_U_DQUOTE] = ACTIONS(1251), - [anon_sym_u8_DQUOTE] = ACTIONS(1251), - [anon_sym_DQUOTE] = ACTIONS(1251), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [anon_sym_NULL] = ACTIONS(1249), - [anon_sym_nullptr] = ACTIONS(1249), - [sym_comment] = ACTIONS(3), + [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), + [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(1233), - [aux_sym_preproc_include_token1] = ACTIONS(1233), - [aux_sym_preproc_def_token1] = ACTIONS(1233), - [aux_sym_preproc_if_token1] = ACTIONS(1233), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1233), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1233), - [sym_preproc_directive] = ACTIONS(1233), - [anon_sym_LPAREN2] = ACTIONS(1235), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_DASH] = ACTIONS(1233), - [anon_sym_PLUS] = ACTIONS(1233), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_AMP] = ACTIONS(1235), - [anon_sym_SEMI] = ACTIONS(1235), - [anon_sym___extension__] = ACTIONS(1233), - [anon_sym_typedef] = ACTIONS(1233), - [anon_sym_extern] = ACTIONS(1233), - [anon_sym___attribute__] = ACTIONS(1233), - [anon_sym___scanf] = ACTIONS(1233), - [anon_sym___printf] = ACTIONS(1233), - [anon_sym___read_mostly] = ACTIONS(1233), - [anon_sym___must_hold] = ACTIONS(1233), - [anon_sym___ro_after_init] = ACTIONS(1233), - [anon_sym___noreturn] = ACTIONS(1233), - [anon_sym___cold] = ACTIONS(1233), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1235), - [anon_sym___declspec] = ACTIONS(1233), - [anon_sym___init] = ACTIONS(1233), - [anon_sym___exit] = ACTIONS(1233), - [anon_sym___cdecl] = ACTIONS(1233), - [anon_sym___clrcall] = ACTIONS(1233), - [anon_sym___stdcall] = ACTIONS(1233), - [anon_sym___fastcall] = ACTIONS(1233), - [anon_sym___thiscall] = ACTIONS(1233), - [anon_sym___vectorcall] = ACTIONS(1233), - [anon_sym_LBRACE] = ACTIONS(1235), - [anon_sym_RBRACE] = ACTIONS(1235), - [anon_sym_signed] = ACTIONS(1233), - [anon_sym_unsigned] = ACTIONS(1233), - [anon_sym_long] = ACTIONS(1233), - [anon_sym_short] = ACTIONS(1233), - [anon_sym_static] = ACTIONS(1233), - [anon_sym_auto] = ACTIONS(1233), - [anon_sym_register] = ACTIONS(1233), - [anon_sym_inline] = ACTIONS(1233), - [anon_sym___inline] = ACTIONS(1233), - [anon_sym___inline__] = ACTIONS(1233), - [anon_sym___forceinline] = ACTIONS(1233), - [anon_sym_thread_local] = ACTIONS(1233), - [anon_sym___thread] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_constexpr] = ACTIONS(1233), - [anon_sym_volatile] = ACTIONS(1233), - [anon_sym_restrict] = ACTIONS(1233), - [anon_sym___restrict__] = ACTIONS(1233), - [anon_sym__Atomic] = ACTIONS(1233), - [anon_sym__Noreturn] = ACTIONS(1233), - [anon_sym_noreturn] = ACTIONS(1233), - [anon_sym_alignas] = ACTIONS(1233), - [anon_sym__Alignas] = ACTIONS(1233), - [sym_primitive_type] = ACTIONS(1233), - [anon_sym_enum] = ACTIONS(1233), - [anon_sym_struct] = ACTIONS(1233), - [anon_sym_union] = ACTIONS(1233), - [anon_sym_if] = ACTIONS(1233), - [anon_sym_else] = ACTIONS(1233), - [anon_sym_switch] = ACTIONS(1233), - [anon_sym_case] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1233), - [anon_sym_while] = ACTIONS(1233), - [anon_sym_do] = ACTIONS(1233), - [anon_sym_for] = ACTIONS(1233), - [anon_sym_return] = ACTIONS(1233), - [anon_sym_break] = ACTIONS(1233), - [anon_sym_continue] = ACTIONS(1233), - [anon_sym_goto] = ACTIONS(1233), - [anon_sym___try] = ACTIONS(1233), - [anon_sym___leave] = ACTIONS(1233), - [anon_sym_DASH_DASH] = ACTIONS(1235), - [anon_sym_PLUS_PLUS] = ACTIONS(1235), - [anon_sym_sizeof] = ACTIONS(1233), - [anon_sym___alignof__] = ACTIONS(1233), - [anon_sym___alignof] = ACTIONS(1233), - [anon_sym__alignof] = ACTIONS(1233), - [anon_sym_alignof] = ACTIONS(1233), - [anon_sym__Alignof] = ACTIONS(1233), - [anon_sym_offsetof] = ACTIONS(1233), - [anon_sym__Generic] = ACTIONS(1233), - [anon_sym_asm] = ACTIONS(1233), - [anon_sym___asm__] = ACTIONS(1233), - [sym_number_literal] = ACTIONS(1235), - [anon_sym_L_SQUOTE] = ACTIONS(1235), - [anon_sym_u_SQUOTE] = ACTIONS(1235), - [anon_sym_U_SQUOTE] = ACTIONS(1235), - [anon_sym_u8_SQUOTE] = ACTIONS(1235), - [anon_sym_SQUOTE] = ACTIONS(1235), - [anon_sym_L_DQUOTE] = ACTIONS(1235), - [anon_sym_u_DQUOTE] = ACTIONS(1235), - [anon_sym_U_DQUOTE] = ACTIONS(1235), - [anon_sym_u8_DQUOTE] = ACTIONS(1235), - [anon_sym_DQUOTE] = ACTIONS(1235), - [sym_true] = ACTIONS(1233), - [sym_false] = ACTIONS(1233), - [anon_sym_NULL] = ACTIONS(1233), - [anon_sym_nullptr] = ACTIONS(1233), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [275] = { - [ts_builtin_sym_end] = ACTIONS(1163), - [sym_identifier] = ACTIONS(1161), - [aux_sym_preproc_include_token1] = ACTIONS(1161), - [aux_sym_preproc_def_token1] = ACTIONS(1161), - [aux_sym_preproc_if_token1] = ACTIONS(1161), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1161), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1161), - [sym_preproc_directive] = ACTIONS(1161), - [anon_sym_LPAREN2] = ACTIONS(1163), - [anon_sym_BANG] = ACTIONS(1163), - [anon_sym_TILDE] = ACTIONS(1163), - [anon_sym_DASH] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_STAR] = ACTIONS(1163), - [anon_sym_AMP] = ACTIONS(1163), - [anon_sym_SEMI] = ACTIONS(1163), - [anon_sym___extension__] = ACTIONS(1161), - [anon_sym_typedef] = ACTIONS(1161), - [anon_sym_extern] = ACTIONS(1161), - [anon_sym___attribute__] = ACTIONS(1161), - [anon_sym___scanf] = ACTIONS(1161), - [anon_sym___printf] = ACTIONS(1161), - [anon_sym___read_mostly] = ACTIONS(1161), - [anon_sym___must_hold] = ACTIONS(1161), - [anon_sym___ro_after_init] = ACTIONS(1161), - [anon_sym___noreturn] = ACTIONS(1161), - [anon_sym___cold] = ACTIONS(1161), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1163), - [anon_sym___declspec] = ACTIONS(1161), - [anon_sym___init] = ACTIONS(1161), - [anon_sym___exit] = ACTIONS(1161), - [anon_sym___cdecl] = ACTIONS(1161), - [anon_sym___clrcall] = ACTIONS(1161), - [anon_sym___stdcall] = ACTIONS(1161), - [anon_sym___fastcall] = ACTIONS(1161), - [anon_sym___thiscall] = ACTIONS(1161), - [anon_sym___vectorcall] = ACTIONS(1161), - [anon_sym_LBRACE] = ACTIONS(1163), - [anon_sym_signed] = ACTIONS(1161), - [anon_sym_unsigned] = ACTIONS(1161), - [anon_sym_long] = ACTIONS(1161), - [anon_sym_short] = ACTIONS(1161), - [anon_sym_static] = ACTIONS(1161), - [anon_sym_auto] = ACTIONS(1161), - [anon_sym_register] = ACTIONS(1161), - [anon_sym_inline] = ACTIONS(1161), - [anon_sym___inline] = ACTIONS(1161), - [anon_sym___inline__] = ACTIONS(1161), - [anon_sym___forceinline] = ACTIONS(1161), - [anon_sym_thread_local] = ACTIONS(1161), - [anon_sym___thread] = ACTIONS(1161), - [anon_sym_const] = ACTIONS(1161), - [anon_sym_constexpr] = ACTIONS(1161), - [anon_sym_volatile] = ACTIONS(1161), - [anon_sym_restrict] = ACTIONS(1161), - [anon_sym___restrict__] = ACTIONS(1161), - [anon_sym__Atomic] = ACTIONS(1161), - [anon_sym__Noreturn] = ACTIONS(1161), - [anon_sym_noreturn] = ACTIONS(1161), - [anon_sym_alignas] = ACTIONS(1161), - [anon_sym__Alignas] = ACTIONS(1161), - [sym_primitive_type] = ACTIONS(1161), - [anon_sym_enum] = ACTIONS(1161), - [anon_sym_struct] = ACTIONS(1161), - [anon_sym_union] = ACTIONS(1161), - [anon_sym_if] = ACTIONS(1161), - [anon_sym_else] = ACTIONS(1161), - [anon_sym_switch] = ACTIONS(1161), - [anon_sym_case] = ACTIONS(1161), - [anon_sym_default] = ACTIONS(1161), - [anon_sym_while] = ACTIONS(1161), - [anon_sym_do] = ACTIONS(1161), - [anon_sym_for] = ACTIONS(1161), - [anon_sym_return] = ACTIONS(1161), - [anon_sym_break] = ACTIONS(1161), - [anon_sym_continue] = ACTIONS(1161), - [anon_sym_goto] = ACTIONS(1161), - [anon_sym___try] = ACTIONS(1161), - [anon_sym___leave] = ACTIONS(1161), - [anon_sym_DASH_DASH] = ACTIONS(1163), - [anon_sym_PLUS_PLUS] = ACTIONS(1163), - [anon_sym_sizeof] = ACTIONS(1161), - [anon_sym___alignof__] = ACTIONS(1161), - [anon_sym___alignof] = ACTIONS(1161), - [anon_sym__alignof] = ACTIONS(1161), - [anon_sym_alignof] = ACTIONS(1161), - [anon_sym__Alignof] = ACTIONS(1161), - [anon_sym_offsetof] = ACTIONS(1161), - [anon_sym__Generic] = ACTIONS(1161), - [anon_sym_asm] = ACTIONS(1161), - [anon_sym___asm__] = ACTIONS(1161), - [sym_number_literal] = ACTIONS(1163), - [anon_sym_L_SQUOTE] = ACTIONS(1163), - [anon_sym_u_SQUOTE] = ACTIONS(1163), - [anon_sym_U_SQUOTE] = ACTIONS(1163), - [anon_sym_u8_SQUOTE] = ACTIONS(1163), - [anon_sym_SQUOTE] = ACTIONS(1163), - [anon_sym_L_DQUOTE] = ACTIONS(1163), - [anon_sym_u_DQUOTE] = ACTIONS(1163), - [anon_sym_U_DQUOTE] = ACTIONS(1163), - [anon_sym_u8_DQUOTE] = ACTIONS(1163), - [anon_sym_DQUOTE] = ACTIONS(1163), - [sym_true] = ACTIONS(1161), - [sym_false] = ACTIONS(1161), - [anon_sym_NULL] = ACTIONS(1161), - [anon_sym_nullptr] = ACTIONS(1161), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [276] = { - [ts_builtin_sym_end] = ACTIONS(1163), - [sym_identifier] = ACTIONS(1161), - [aux_sym_preproc_include_token1] = ACTIONS(1161), - [aux_sym_preproc_def_token1] = ACTIONS(1161), - [aux_sym_preproc_if_token1] = ACTIONS(1161), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1161), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1161), - [sym_preproc_directive] = ACTIONS(1161), - [anon_sym_LPAREN2] = ACTIONS(1163), - [anon_sym_BANG] = ACTIONS(1163), - [anon_sym_TILDE] = ACTIONS(1163), - [anon_sym_DASH] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_STAR] = ACTIONS(1163), - [anon_sym_AMP] = ACTIONS(1163), - [anon_sym_SEMI] = ACTIONS(1163), - [anon_sym___extension__] = ACTIONS(1161), - [anon_sym_typedef] = ACTIONS(1161), - [anon_sym_extern] = ACTIONS(1161), - [anon_sym___attribute__] = ACTIONS(1161), - [anon_sym___scanf] = ACTIONS(1161), - [anon_sym___printf] = ACTIONS(1161), - [anon_sym___read_mostly] = ACTIONS(1161), - [anon_sym___must_hold] = ACTIONS(1161), - [anon_sym___ro_after_init] = ACTIONS(1161), - [anon_sym___noreturn] = ACTIONS(1161), - [anon_sym___cold] = ACTIONS(1161), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1163), - [anon_sym___declspec] = ACTIONS(1161), - [anon_sym___init] = ACTIONS(1161), - [anon_sym___exit] = ACTIONS(1161), - [anon_sym___cdecl] = ACTIONS(1161), - [anon_sym___clrcall] = ACTIONS(1161), - [anon_sym___stdcall] = ACTIONS(1161), - [anon_sym___fastcall] = ACTIONS(1161), - [anon_sym___thiscall] = ACTIONS(1161), - [anon_sym___vectorcall] = ACTIONS(1161), - [anon_sym_LBRACE] = ACTIONS(1163), - [anon_sym_signed] = ACTIONS(1161), - [anon_sym_unsigned] = ACTIONS(1161), - [anon_sym_long] = ACTIONS(1161), - [anon_sym_short] = ACTIONS(1161), - [anon_sym_static] = ACTIONS(1161), - [anon_sym_auto] = ACTIONS(1161), - [anon_sym_register] = ACTIONS(1161), - [anon_sym_inline] = ACTIONS(1161), - [anon_sym___inline] = ACTIONS(1161), - [anon_sym___inline__] = ACTIONS(1161), - [anon_sym___forceinline] = ACTIONS(1161), - [anon_sym_thread_local] = ACTIONS(1161), - [anon_sym___thread] = ACTIONS(1161), - [anon_sym_const] = ACTIONS(1161), - [anon_sym_constexpr] = ACTIONS(1161), - [anon_sym_volatile] = ACTIONS(1161), - [anon_sym_restrict] = ACTIONS(1161), - [anon_sym___restrict__] = ACTIONS(1161), - [anon_sym__Atomic] = ACTIONS(1161), - [anon_sym__Noreturn] = ACTIONS(1161), - [anon_sym_noreturn] = ACTIONS(1161), - [anon_sym_alignas] = ACTIONS(1161), - [anon_sym__Alignas] = ACTIONS(1161), - [sym_primitive_type] = ACTIONS(1161), - [anon_sym_enum] = ACTIONS(1161), - [anon_sym_struct] = ACTIONS(1161), - [anon_sym_union] = ACTIONS(1161), - [anon_sym_if] = ACTIONS(1161), - [anon_sym_else] = ACTIONS(1161), - [anon_sym_switch] = ACTIONS(1161), - [anon_sym_case] = ACTIONS(1161), - [anon_sym_default] = ACTIONS(1161), - [anon_sym_while] = ACTIONS(1161), - [anon_sym_do] = ACTIONS(1161), - [anon_sym_for] = ACTIONS(1161), - [anon_sym_return] = ACTIONS(1161), - [anon_sym_break] = ACTIONS(1161), - [anon_sym_continue] = ACTIONS(1161), - [anon_sym_goto] = ACTIONS(1161), - [anon_sym___try] = ACTIONS(1161), - [anon_sym___leave] = ACTIONS(1161), - [anon_sym_DASH_DASH] = ACTIONS(1163), - [anon_sym_PLUS_PLUS] = ACTIONS(1163), - [anon_sym_sizeof] = ACTIONS(1161), - [anon_sym___alignof__] = ACTIONS(1161), - [anon_sym___alignof] = ACTIONS(1161), - [anon_sym__alignof] = ACTIONS(1161), - [anon_sym_alignof] = ACTIONS(1161), - [anon_sym__Alignof] = ACTIONS(1161), - [anon_sym_offsetof] = ACTIONS(1161), - [anon_sym__Generic] = ACTIONS(1161), - [anon_sym_asm] = ACTIONS(1161), - [anon_sym___asm__] = ACTIONS(1161), - [sym_number_literal] = ACTIONS(1163), - [anon_sym_L_SQUOTE] = ACTIONS(1163), - [anon_sym_u_SQUOTE] = ACTIONS(1163), - [anon_sym_U_SQUOTE] = ACTIONS(1163), - [anon_sym_u8_SQUOTE] = ACTIONS(1163), - [anon_sym_SQUOTE] = ACTIONS(1163), - [anon_sym_L_DQUOTE] = ACTIONS(1163), - [anon_sym_u_DQUOTE] = ACTIONS(1163), - [anon_sym_U_DQUOTE] = ACTIONS(1163), - [anon_sym_u8_DQUOTE] = ACTIONS(1163), - [anon_sym_DQUOTE] = ACTIONS(1163), - [sym_true] = ACTIONS(1161), - [sym_false] = ACTIONS(1161), - [anon_sym_NULL] = ACTIONS(1161), - [anon_sym_nullptr] = ACTIONS(1161), - [sym_comment] = ACTIONS(3), + [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), }, [277] = { - [ts_builtin_sym_end] = ACTIONS(1167), - [sym_identifier] = ACTIONS(1165), - [aux_sym_preproc_include_token1] = ACTIONS(1165), - [aux_sym_preproc_def_token1] = ACTIONS(1165), - [aux_sym_preproc_if_token1] = ACTIONS(1165), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1165), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1165), - [sym_preproc_directive] = ACTIONS(1165), - [anon_sym_LPAREN2] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1167), - [anon_sym_TILDE] = ACTIONS(1167), - [anon_sym_DASH] = ACTIONS(1165), - [anon_sym_PLUS] = ACTIONS(1165), - [anon_sym_STAR] = ACTIONS(1167), - [anon_sym_AMP] = ACTIONS(1167), - [anon_sym_SEMI] = ACTIONS(1167), - [anon_sym___extension__] = ACTIONS(1165), - [anon_sym_typedef] = ACTIONS(1165), - [anon_sym_extern] = ACTIONS(1165), - [anon_sym___attribute__] = ACTIONS(1165), - [anon_sym___scanf] = ACTIONS(1165), - [anon_sym___printf] = ACTIONS(1165), - [anon_sym___read_mostly] = ACTIONS(1165), - [anon_sym___must_hold] = ACTIONS(1165), - [anon_sym___ro_after_init] = ACTIONS(1165), - [anon_sym___noreturn] = ACTIONS(1165), - [anon_sym___cold] = ACTIONS(1165), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1167), - [anon_sym___declspec] = ACTIONS(1165), - [anon_sym___init] = ACTIONS(1165), - [anon_sym___exit] = ACTIONS(1165), - [anon_sym___cdecl] = ACTIONS(1165), - [anon_sym___clrcall] = ACTIONS(1165), - [anon_sym___stdcall] = ACTIONS(1165), - [anon_sym___fastcall] = ACTIONS(1165), - [anon_sym___thiscall] = ACTIONS(1165), - [anon_sym___vectorcall] = ACTIONS(1165), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_signed] = ACTIONS(1165), - [anon_sym_unsigned] = ACTIONS(1165), - [anon_sym_long] = ACTIONS(1165), - [anon_sym_short] = ACTIONS(1165), - [anon_sym_static] = ACTIONS(1165), - [anon_sym_auto] = ACTIONS(1165), - [anon_sym_register] = ACTIONS(1165), - [anon_sym_inline] = ACTIONS(1165), - [anon_sym___inline] = ACTIONS(1165), - [anon_sym___inline__] = ACTIONS(1165), - [anon_sym___forceinline] = ACTIONS(1165), - [anon_sym_thread_local] = ACTIONS(1165), - [anon_sym___thread] = ACTIONS(1165), - [anon_sym_const] = ACTIONS(1165), - [anon_sym_constexpr] = ACTIONS(1165), - [anon_sym_volatile] = ACTIONS(1165), - [anon_sym_restrict] = ACTIONS(1165), - [anon_sym___restrict__] = ACTIONS(1165), - [anon_sym__Atomic] = ACTIONS(1165), - [anon_sym__Noreturn] = ACTIONS(1165), - [anon_sym_noreturn] = ACTIONS(1165), - [anon_sym_alignas] = ACTIONS(1165), - [anon_sym__Alignas] = ACTIONS(1165), - [sym_primitive_type] = ACTIONS(1165), - [anon_sym_enum] = ACTIONS(1165), - [anon_sym_struct] = ACTIONS(1165), - [anon_sym_union] = ACTIONS(1165), - [anon_sym_if] = ACTIONS(1165), - [anon_sym_else] = ACTIONS(1165), - [anon_sym_switch] = ACTIONS(1165), - [anon_sym_case] = ACTIONS(1165), - [anon_sym_default] = ACTIONS(1165), - [anon_sym_while] = ACTIONS(1165), - [anon_sym_do] = ACTIONS(1165), - [anon_sym_for] = ACTIONS(1165), - [anon_sym_return] = ACTIONS(1165), - [anon_sym_break] = ACTIONS(1165), - [anon_sym_continue] = ACTIONS(1165), - [anon_sym_goto] = ACTIONS(1165), - [anon_sym___try] = ACTIONS(1165), - [anon_sym___leave] = ACTIONS(1165), - [anon_sym_DASH_DASH] = ACTIONS(1167), - [anon_sym_PLUS_PLUS] = ACTIONS(1167), - [anon_sym_sizeof] = ACTIONS(1165), - [anon_sym___alignof__] = ACTIONS(1165), - [anon_sym___alignof] = ACTIONS(1165), - [anon_sym__alignof] = ACTIONS(1165), - [anon_sym_alignof] = ACTIONS(1165), - [anon_sym__Alignof] = ACTIONS(1165), - [anon_sym_offsetof] = ACTIONS(1165), - [anon_sym__Generic] = ACTIONS(1165), - [anon_sym_asm] = ACTIONS(1165), - [anon_sym___asm__] = ACTIONS(1165), - [sym_number_literal] = ACTIONS(1167), - [anon_sym_L_SQUOTE] = ACTIONS(1167), - [anon_sym_u_SQUOTE] = ACTIONS(1167), - [anon_sym_U_SQUOTE] = ACTIONS(1167), - [anon_sym_u8_SQUOTE] = ACTIONS(1167), - [anon_sym_SQUOTE] = ACTIONS(1167), - [anon_sym_L_DQUOTE] = ACTIONS(1167), - [anon_sym_u_DQUOTE] = ACTIONS(1167), - [anon_sym_U_DQUOTE] = ACTIONS(1167), - [anon_sym_u8_DQUOTE] = ACTIONS(1167), - [anon_sym_DQUOTE] = ACTIONS(1167), - [sym_true] = ACTIONS(1165), - [sym_false] = ACTIONS(1165), - [anon_sym_NULL] = ACTIONS(1165), - [anon_sym_nullptr] = ACTIONS(1165), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [278] = { - [ts_builtin_sym_end] = ACTIONS(1167), - [sym_identifier] = ACTIONS(1165), - [aux_sym_preproc_include_token1] = ACTIONS(1165), - [aux_sym_preproc_def_token1] = ACTIONS(1165), - [aux_sym_preproc_if_token1] = ACTIONS(1165), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1165), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1165), - [sym_preproc_directive] = ACTIONS(1165), - [anon_sym_LPAREN2] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1167), - [anon_sym_TILDE] = ACTIONS(1167), - [anon_sym_DASH] = ACTIONS(1165), - [anon_sym_PLUS] = ACTIONS(1165), - [anon_sym_STAR] = ACTIONS(1167), - [anon_sym_AMP] = ACTIONS(1167), - [anon_sym_SEMI] = ACTIONS(1167), - [anon_sym___extension__] = ACTIONS(1165), - [anon_sym_typedef] = ACTIONS(1165), - [anon_sym_extern] = ACTIONS(1165), - [anon_sym___attribute__] = ACTIONS(1165), - [anon_sym___scanf] = ACTIONS(1165), - [anon_sym___printf] = ACTIONS(1165), - [anon_sym___read_mostly] = ACTIONS(1165), - [anon_sym___must_hold] = ACTIONS(1165), - [anon_sym___ro_after_init] = ACTIONS(1165), - [anon_sym___noreturn] = ACTIONS(1165), - [anon_sym___cold] = ACTIONS(1165), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1167), - [anon_sym___declspec] = ACTIONS(1165), - [anon_sym___init] = ACTIONS(1165), - [anon_sym___exit] = ACTIONS(1165), - [anon_sym___cdecl] = ACTIONS(1165), - [anon_sym___clrcall] = ACTIONS(1165), - [anon_sym___stdcall] = ACTIONS(1165), - [anon_sym___fastcall] = ACTIONS(1165), - [anon_sym___thiscall] = ACTIONS(1165), - [anon_sym___vectorcall] = ACTIONS(1165), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_signed] = ACTIONS(1165), - [anon_sym_unsigned] = ACTIONS(1165), - [anon_sym_long] = ACTIONS(1165), - [anon_sym_short] = ACTIONS(1165), - [anon_sym_static] = ACTIONS(1165), - [anon_sym_auto] = ACTIONS(1165), - [anon_sym_register] = ACTIONS(1165), - [anon_sym_inline] = ACTIONS(1165), - [anon_sym___inline] = ACTIONS(1165), - [anon_sym___inline__] = ACTIONS(1165), - [anon_sym___forceinline] = ACTIONS(1165), - [anon_sym_thread_local] = ACTIONS(1165), - [anon_sym___thread] = ACTIONS(1165), - [anon_sym_const] = ACTIONS(1165), - [anon_sym_constexpr] = ACTIONS(1165), - [anon_sym_volatile] = ACTIONS(1165), - [anon_sym_restrict] = ACTIONS(1165), - [anon_sym___restrict__] = ACTIONS(1165), - [anon_sym__Atomic] = ACTIONS(1165), - [anon_sym__Noreturn] = ACTIONS(1165), - [anon_sym_noreturn] = ACTIONS(1165), - [anon_sym_alignas] = ACTIONS(1165), - [anon_sym__Alignas] = ACTIONS(1165), - [sym_primitive_type] = ACTIONS(1165), - [anon_sym_enum] = ACTIONS(1165), - [anon_sym_struct] = ACTIONS(1165), - [anon_sym_union] = ACTIONS(1165), - [anon_sym_if] = ACTIONS(1165), - [anon_sym_else] = ACTIONS(1165), - [anon_sym_switch] = ACTIONS(1165), - [anon_sym_case] = ACTIONS(1165), - [anon_sym_default] = ACTIONS(1165), - [anon_sym_while] = ACTIONS(1165), - [anon_sym_do] = ACTIONS(1165), - [anon_sym_for] = ACTIONS(1165), - [anon_sym_return] = ACTIONS(1165), - [anon_sym_break] = ACTIONS(1165), - [anon_sym_continue] = ACTIONS(1165), - [anon_sym_goto] = ACTIONS(1165), - [anon_sym___try] = ACTIONS(1165), - [anon_sym___leave] = ACTIONS(1165), - [anon_sym_DASH_DASH] = ACTIONS(1167), - [anon_sym_PLUS_PLUS] = ACTIONS(1167), - [anon_sym_sizeof] = ACTIONS(1165), - [anon_sym___alignof__] = ACTIONS(1165), - [anon_sym___alignof] = ACTIONS(1165), - [anon_sym__alignof] = ACTIONS(1165), - [anon_sym_alignof] = ACTIONS(1165), - [anon_sym__Alignof] = ACTIONS(1165), - [anon_sym_offsetof] = ACTIONS(1165), - [anon_sym__Generic] = ACTIONS(1165), - [anon_sym_asm] = ACTIONS(1165), - [anon_sym___asm__] = ACTIONS(1165), - [sym_number_literal] = ACTIONS(1167), - [anon_sym_L_SQUOTE] = ACTIONS(1167), - [anon_sym_u_SQUOTE] = ACTIONS(1167), - [anon_sym_U_SQUOTE] = ACTIONS(1167), - [anon_sym_u8_SQUOTE] = ACTIONS(1167), - [anon_sym_SQUOTE] = ACTIONS(1167), - [anon_sym_L_DQUOTE] = ACTIONS(1167), - [anon_sym_u_DQUOTE] = ACTIONS(1167), - [anon_sym_U_DQUOTE] = ACTIONS(1167), - [anon_sym_u8_DQUOTE] = ACTIONS(1167), - [anon_sym_DQUOTE] = ACTIONS(1167), - [sym_true] = ACTIONS(1165), - [sym_false] = ACTIONS(1165), - [anon_sym_NULL] = ACTIONS(1165), - [anon_sym_nullptr] = ACTIONS(1165), - [sym_comment] = ACTIONS(3), + [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), + [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), }, [279] = { - [ts_builtin_sym_end] = ACTIONS(1163), - [sym_identifier] = ACTIONS(1161), - [aux_sym_preproc_include_token1] = ACTIONS(1161), - [aux_sym_preproc_def_token1] = ACTIONS(1161), - [aux_sym_preproc_if_token1] = ACTIONS(1161), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1161), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1161), - [sym_preproc_directive] = ACTIONS(1161), - [anon_sym_LPAREN2] = ACTIONS(1163), - [anon_sym_BANG] = ACTIONS(1163), - [anon_sym_TILDE] = ACTIONS(1163), - [anon_sym_DASH] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_STAR] = ACTIONS(1163), - [anon_sym_AMP] = ACTIONS(1163), - [anon_sym_SEMI] = ACTIONS(1163), - [anon_sym___extension__] = ACTIONS(1161), - [anon_sym_typedef] = ACTIONS(1161), - [anon_sym_extern] = ACTIONS(1161), - [anon_sym___attribute__] = ACTIONS(1161), - [anon_sym___scanf] = ACTIONS(1161), - [anon_sym___printf] = ACTIONS(1161), - [anon_sym___read_mostly] = ACTIONS(1161), - [anon_sym___must_hold] = ACTIONS(1161), - [anon_sym___ro_after_init] = ACTIONS(1161), - [anon_sym___noreturn] = ACTIONS(1161), - [anon_sym___cold] = ACTIONS(1161), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1163), - [anon_sym___declspec] = ACTIONS(1161), - [anon_sym___init] = ACTIONS(1161), - [anon_sym___exit] = ACTIONS(1161), - [anon_sym___cdecl] = ACTIONS(1161), - [anon_sym___clrcall] = ACTIONS(1161), - [anon_sym___stdcall] = ACTIONS(1161), - [anon_sym___fastcall] = ACTIONS(1161), - [anon_sym___thiscall] = ACTIONS(1161), - [anon_sym___vectorcall] = ACTIONS(1161), - [anon_sym_LBRACE] = ACTIONS(1163), - [anon_sym_signed] = ACTIONS(1161), - [anon_sym_unsigned] = ACTIONS(1161), - [anon_sym_long] = ACTIONS(1161), - [anon_sym_short] = ACTIONS(1161), - [anon_sym_static] = ACTIONS(1161), - [anon_sym_auto] = ACTIONS(1161), - [anon_sym_register] = ACTIONS(1161), - [anon_sym_inline] = ACTIONS(1161), - [anon_sym___inline] = ACTIONS(1161), - [anon_sym___inline__] = ACTIONS(1161), - [anon_sym___forceinline] = ACTIONS(1161), - [anon_sym_thread_local] = ACTIONS(1161), - [anon_sym___thread] = ACTIONS(1161), - [anon_sym_const] = ACTIONS(1161), - [anon_sym_constexpr] = ACTIONS(1161), - [anon_sym_volatile] = ACTIONS(1161), - [anon_sym_restrict] = ACTIONS(1161), - [anon_sym___restrict__] = ACTIONS(1161), - [anon_sym__Atomic] = ACTIONS(1161), - [anon_sym__Noreturn] = ACTIONS(1161), - [anon_sym_noreturn] = ACTIONS(1161), - [anon_sym_alignas] = ACTIONS(1161), - [anon_sym__Alignas] = ACTIONS(1161), - [sym_primitive_type] = ACTIONS(1161), - [anon_sym_enum] = ACTIONS(1161), - [anon_sym_struct] = ACTIONS(1161), - [anon_sym_union] = ACTIONS(1161), - [anon_sym_if] = ACTIONS(1161), - [anon_sym_else] = ACTIONS(1161), - [anon_sym_switch] = ACTIONS(1161), - [anon_sym_case] = ACTIONS(1161), - [anon_sym_default] = ACTIONS(1161), - [anon_sym_while] = ACTIONS(1161), - [anon_sym_do] = ACTIONS(1161), - [anon_sym_for] = ACTIONS(1161), - [anon_sym_return] = ACTIONS(1161), - [anon_sym_break] = ACTIONS(1161), - [anon_sym_continue] = ACTIONS(1161), - [anon_sym_goto] = ACTIONS(1161), - [anon_sym___try] = ACTIONS(1161), - [anon_sym___leave] = ACTIONS(1161), - [anon_sym_DASH_DASH] = ACTIONS(1163), - [anon_sym_PLUS_PLUS] = ACTIONS(1163), - [anon_sym_sizeof] = ACTIONS(1161), - [anon_sym___alignof__] = ACTIONS(1161), - [anon_sym___alignof] = ACTIONS(1161), - [anon_sym__alignof] = ACTIONS(1161), - [anon_sym_alignof] = ACTIONS(1161), - [anon_sym__Alignof] = ACTIONS(1161), - [anon_sym_offsetof] = ACTIONS(1161), - [anon_sym__Generic] = ACTIONS(1161), - [anon_sym_asm] = ACTIONS(1161), - [anon_sym___asm__] = ACTIONS(1161), - [sym_number_literal] = ACTIONS(1163), - [anon_sym_L_SQUOTE] = ACTIONS(1163), - [anon_sym_u_SQUOTE] = ACTIONS(1163), - [anon_sym_U_SQUOTE] = ACTIONS(1163), - [anon_sym_u8_SQUOTE] = ACTIONS(1163), - [anon_sym_SQUOTE] = ACTIONS(1163), - [anon_sym_L_DQUOTE] = ACTIONS(1163), - [anon_sym_u_DQUOTE] = ACTIONS(1163), - [anon_sym_U_DQUOTE] = ACTIONS(1163), - [anon_sym_u8_DQUOTE] = ACTIONS(1163), - [anon_sym_DQUOTE] = ACTIONS(1163), - [sym_true] = ACTIONS(1161), - [sym_false] = ACTIONS(1161), - [anon_sym_NULL] = ACTIONS(1161), - [anon_sym_nullptr] = ACTIONS(1161), - [sym_comment] = ACTIONS(3), + [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), }, [280] = { - [ts_builtin_sym_end] = ACTIONS(1167), - [sym_identifier] = ACTIONS(1165), - [aux_sym_preproc_include_token1] = ACTIONS(1165), - [aux_sym_preproc_def_token1] = ACTIONS(1165), - [aux_sym_preproc_if_token1] = ACTIONS(1165), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1165), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1165), - [sym_preproc_directive] = ACTIONS(1165), - [anon_sym_LPAREN2] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1167), - [anon_sym_TILDE] = ACTIONS(1167), - [anon_sym_DASH] = ACTIONS(1165), - [anon_sym_PLUS] = ACTIONS(1165), - [anon_sym_STAR] = ACTIONS(1167), - [anon_sym_AMP] = ACTIONS(1167), - [anon_sym_SEMI] = ACTIONS(1167), - [anon_sym___extension__] = ACTIONS(1165), - [anon_sym_typedef] = ACTIONS(1165), - [anon_sym_extern] = ACTIONS(1165), - [anon_sym___attribute__] = ACTIONS(1165), - [anon_sym___scanf] = ACTIONS(1165), - [anon_sym___printf] = ACTIONS(1165), - [anon_sym___read_mostly] = ACTIONS(1165), - [anon_sym___must_hold] = ACTIONS(1165), - [anon_sym___ro_after_init] = ACTIONS(1165), - [anon_sym___noreturn] = ACTIONS(1165), - [anon_sym___cold] = ACTIONS(1165), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1167), - [anon_sym___declspec] = ACTIONS(1165), - [anon_sym___init] = ACTIONS(1165), - [anon_sym___exit] = ACTIONS(1165), - [anon_sym___cdecl] = ACTIONS(1165), - [anon_sym___clrcall] = ACTIONS(1165), - [anon_sym___stdcall] = ACTIONS(1165), - [anon_sym___fastcall] = ACTIONS(1165), - [anon_sym___thiscall] = ACTIONS(1165), - [anon_sym___vectorcall] = ACTIONS(1165), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_signed] = ACTIONS(1165), - [anon_sym_unsigned] = ACTIONS(1165), - [anon_sym_long] = ACTIONS(1165), - [anon_sym_short] = ACTIONS(1165), - [anon_sym_static] = ACTIONS(1165), - [anon_sym_auto] = ACTIONS(1165), - [anon_sym_register] = ACTIONS(1165), - [anon_sym_inline] = ACTIONS(1165), - [anon_sym___inline] = ACTIONS(1165), - [anon_sym___inline__] = ACTIONS(1165), - [anon_sym___forceinline] = ACTIONS(1165), - [anon_sym_thread_local] = ACTIONS(1165), - [anon_sym___thread] = ACTIONS(1165), - [anon_sym_const] = ACTIONS(1165), - [anon_sym_constexpr] = ACTIONS(1165), - [anon_sym_volatile] = ACTIONS(1165), - [anon_sym_restrict] = ACTIONS(1165), - [anon_sym___restrict__] = ACTIONS(1165), - [anon_sym__Atomic] = ACTIONS(1165), - [anon_sym__Noreturn] = ACTIONS(1165), - [anon_sym_noreturn] = ACTIONS(1165), - [anon_sym_alignas] = ACTIONS(1165), - [anon_sym__Alignas] = ACTIONS(1165), - [sym_primitive_type] = ACTIONS(1165), - [anon_sym_enum] = ACTIONS(1165), - [anon_sym_struct] = ACTIONS(1165), - [anon_sym_union] = ACTIONS(1165), - [anon_sym_if] = ACTIONS(1165), - [anon_sym_else] = ACTIONS(1165), - [anon_sym_switch] = ACTIONS(1165), - [anon_sym_case] = ACTIONS(1165), - [anon_sym_default] = ACTIONS(1165), - [anon_sym_while] = ACTIONS(1165), - [anon_sym_do] = ACTIONS(1165), - [anon_sym_for] = ACTIONS(1165), - [anon_sym_return] = ACTIONS(1165), - [anon_sym_break] = ACTIONS(1165), - [anon_sym_continue] = ACTIONS(1165), - [anon_sym_goto] = ACTIONS(1165), - [anon_sym___try] = ACTIONS(1165), - [anon_sym___leave] = ACTIONS(1165), - [anon_sym_DASH_DASH] = ACTIONS(1167), - [anon_sym_PLUS_PLUS] = ACTIONS(1167), - [anon_sym_sizeof] = ACTIONS(1165), - [anon_sym___alignof__] = ACTIONS(1165), - [anon_sym___alignof] = ACTIONS(1165), - [anon_sym__alignof] = ACTIONS(1165), - [anon_sym_alignof] = ACTIONS(1165), - [anon_sym__Alignof] = ACTIONS(1165), - [anon_sym_offsetof] = ACTIONS(1165), - [anon_sym__Generic] = ACTIONS(1165), - [anon_sym_asm] = ACTIONS(1165), - [anon_sym___asm__] = ACTIONS(1165), - [sym_number_literal] = ACTIONS(1167), - [anon_sym_L_SQUOTE] = ACTIONS(1167), - [anon_sym_u_SQUOTE] = ACTIONS(1167), - [anon_sym_U_SQUOTE] = ACTIONS(1167), - [anon_sym_u8_SQUOTE] = ACTIONS(1167), - [anon_sym_SQUOTE] = ACTIONS(1167), - [anon_sym_L_DQUOTE] = ACTIONS(1167), - [anon_sym_u_DQUOTE] = ACTIONS(1167), - [anon_sym_U_DQUOTE] = ACTIONS(1167), - [anon_sym_u8_DQUOTE] = ACTIONS(1167), - [anon_sym_DQUOTE] = ACTIONS(1167), - [sym_true] = ACTIONS(1165), - [sym_false] = ACTIONS(1165), - [anon_sym_NULL] = ACTIONS(1165), - [anon_sym_nullptr] = ACTIONS(1165), - [sym_comment] = ACTIONS(3), + [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), }, [281] = { - [ts_builtin_sym_end] = ACTIONS(1171), - [sym_identifier] = ACTIONS(1169), - [aux_sym_preproc_include_token1] = ACTIONS(1169), - [aux_sym_preproc_def_token1] = ACTIONS(1169), - [aux_sym_preproc_if_token1] = ACTIONS(1169), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1169), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1169), - [sym_preproc_directive] = ACTIONS(1169), - [anon_sym_LPAREN2] = ACTIONS(1171), - [anon_sym_BANG] = ACTIONS(1171), - [anon_sym_TILDE] = ACTIONS(1171), - [anon_sym_DASH] = ACTIONS(1169), - [anon_sym_PLUS] = ACTIONS(1169), - [anon_sym_STAR] = ACTIONS(1171), - [anon_sym_AMP] = ACTIONS(1171), - [anon_sym_SEMI] = ACTIONS(1171), - [anon_sym___extension__] = ACTIONS(1169), - [anon_sym_typedef] = ACTIONS(1169), - [anon_sym_extern] = ACTIONS(1169), - [anon_sym___attribute__] = ACTIONS(1169), - [anon_sym___scanf] = ACTIONS(1169), - [anon_sym___printf] = ACTIONS(1169), - [anon_sym___read_mostly] = ACTIONS(1169), - [anon_sym___must_hold] = ACTIONS(1169), - [anon_sym___ro_after_init] = ACTIONS(1169), - [anon_sym___noreturn] = ACTIONS(1169), - [anon_sym___cold] = ACTIONS(1169), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1171), - [anon_sym___declspec] = ACTIONS(1169), - [anon_sym___init] = ACTIONS(1169), - [anon_sym___exit] = ACTIONS(1169), - [anon_sym___cdecl] = ACTIONS(1169), - [anon_sym___clrcall] = ACTIONS(1169), - [anon_sym___stdcall] = ACTIONS(1169), - [anon_sym___fastcall] = ACTIONS(1169), - [anon_sym___thiscall] = ACTIONS(1169), - [anon_sym___vectorcall] = ACTIONS(1169), - [anon_sym_LBRACE] = ACTIONS(1171), - [anon_sym_signed] = ACTIONS(1169), - [anon_sym_unsigned] = ACTIONS(1169), - [anon_sym_long] = ACTIONS(1169), - [anon_sym_short] = ACTIONS(1169), - [anon_sym_static] = ACTIONS(1169), - [anon_sym_auto] = ACTIONS(1169), - [anon_sym_register] = ACTIONS(1169), - [anon_sym_inline] = ACTIONS(1169), - [anon_sym___inline] = ACTIONS(1169), - [anon_sym___inline__] = ACTIONS(1169), - [anon_sym___forceinline] = ACTIONS(1169), - [anon_sym_thread_local] = ACTIONS(1169), - [anon_sym___thread] = ACTIONS(1169), - [anon_sym_const] = ACTIONS(1169), - [anon_sym_constexpr] = ACTIONS(1169), - [anon_sym_volatile] = ACTIONS(1169), - [anon_sym_restrict] = ACTIONS(1169), - [anon_sym___restrict__] = ACTIONS(1169), - [anon_sym__Atomic] = ACTIONS(1169), - [anon_sym__Noreturn] = ACTIONS(1169), - [anon_sym_noreturn] = ACTIONS(1169), - [anon_sym_alignas] = ACTIONS(1169), - [anon_sym__Alignas] = ACTIONS(1169), - [sym_primitive_type] = ACTIONS(1169), - [anon_sym_enum] = ACTIONS(1169), - [anon_sym_struct] = ACTIONS(1169), - [anon_sym_union] = ACTIONS(1169), - [anon_sym_if] = ACTIONS(1169), - [anon_sym_else] = ACTIONS(1169), - [anon_sym_switch] = ACTIONS(1169), - [anon_sym_case] = ACTIONS(1169), - [anon_sym_default] = ACTIONS(1169), - [anon_sym_while] = ACTIONS(1169), - [anon_sym_do] = ACTIONS(1169), - [anon_sym_for] = ACTIONS(1169), - [anon_sym_return] = ACTIONS(1169), - [anon_sym_break] = ACTIONS(1169), - [anon_sym_continue] = ACTIONS(1169), - [anon_sym_goto] = ACTIONS(1169), - [anon_sym___try] = ACTIONS(1169), - [anon_sym___leave] = ACTIONS(1169), - [anon_sym_DASH_DASH] = ACTIONS(1171), - [anon_sym_PLUS_PLUS] = ACTIONS(1171), - [anon_sym_sizeof] = ACTIONS(1169), - [anon_sym___alignof__] = ACTIONS(1169), - [anon_sym___alignof] = ACTIONS(1169), - [anon_sym__alignof] = ACTIONS(1169), - [anon_sym_alignof] = ACTIONS(1169), - [anon_sym__Alignof] = ACTIONS(1169), - [anon_sym_offsetof] = ACTIONS(1169), - [anon_sym__Generic] = ACTIONS(1169), - [anon_sym_asm] = ACTIONS(1169), - [anon_sym___asm__] = ACTIONS(1169), - [sym_number_literal] = ACTIONS(1171), - [anon_sym_L_SQUOTE] = ACTIONS(1171), - [anon_sym_u_SQUOTE] = ACTIONS(1171), - [anon_sym_U_SQUOTE] = ACTIONS(1171), - [anon_sym_u8_SQUOTE] = ACTIONS(1171), - [anon_sym_SQUOTE] = ACTIONS(1171), - [anon_sym_L_DQUOTE] = ACTIONS(1171), - [anon_sym_u_DQUOTE] = ACTIONS(1171), - [anon_sym_U_DQUOTE] = ACTIONS(1171), - [anon_sym_u8_DQUOTE] = ACTIONS(1171), - [anon_sym_DQUOTE] = ACTIONS(1171), - [sym_true] = ACTIONS(1169), - [sym_false] = ACTIONS(1169), - [anon_sym_NULL] = ACTIONS(1169), - [anon_sym_nullptr] = ACTIONS(1169), - [sym_comment] = ACTIONS(3), + [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), + [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), }, [282] = { - [sym_identifier] = ACTIONS(1225), - [aux_sym_preproc_include_token1] = ACTIONS(1225), - [aux_sym_preproc_def_token1] = ACTIONS(1225), - [aux_sym_preproc_if_token1] = ACTIONS(1225), - [aux_sym_preproc_if_token2] = ACTIONS(1225), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1225), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1225), - [sym_preproc_directive] = ACTIONS(1225), - [anon_sym_LPAREN2] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_TILDE] = ACTIONS(1227), - [anon_sym_DASH] = ACTIONS(1225), - [anon_sym_PLUS] = ACTIONS(1225), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1227), - [anon_sym_SEMI] = ACTIONS(1227), - [anon_sym___extension__] = ACTIONS(1225), - [anon_sym_typedef] = ACTIONS(1225), - [anon_sym_extern] = ACTIONS(1225), - [anon_sym___attribute__] = ACTIONS(1225), - [anon_sym___scanf] = ACTIONS(1225), - [anon_sym___printf] = ACTIONS(1225), - [anon_sym___read_mostly] = ACTIONS(1225), - [anon_sym___must_hold] = ACTIONS(1225), - [anon_sym___ro_after_init] = ACTIONS(1225), - [anon_sym___noreturn] = ACTIONS(1225), - [anon_sym___cold] = ACTIONS(1225), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1227), - [anon_sym___declspec] = ACTIONS(1225), - [anon_sym___init] = ACTIONS(1225), - [anon_sym___exit] = ACTIONS(1225), - [anon_sym___cdecl] = ACTIONS(1225), - [anon_sym___clrcall] = ACTIONS(1225), - [anon_sym___stdcall] = ACTIONS(1225), - [anon_sym___fastcall] = ACTIONS(1225), - [anon_sym___thiscall] = ACTIONS(1225), - [anon_sym___vectorcall] = ACTIONS(1225), - [anon_sym_LBRACE] = ACTIONS(1227), - [anon_sym_signed] = ACTIONS(1225), - [anon_sym_unsigned] = ACTIONS(1225), - [anon_sym_long] = ACTIONS(1225), - [anon_sym_short] = ACTIONS(1225), - [anon_sym_static] = ACTIONS(1225), - [anon_sym_auto] = ACTIONS(1225), - [anon_sym_register] = ACTIONS(1225), - [anon_sym_inline] = ACTIONS(1225), - [anon_sym___inline] = ACTIONS(1225), - [anon_sym___inline__] = ACTIONS(1225), - [anon_sym___forceinline] = ACTIONS(1225), - [anon_sym_thread_local] = ACTIONS(1225), - [anon_sym___thread] = ACTIONS(1225), - [anon_sym_const] = ACTIONS(1225), - [anon_sym_constexpr] = ACTIONS(1225), - [anon_sym_volatile] = ACTIONS(1225), - [anon_sym_restrict] = ACTIONS(1225), - [anon_sym___restrict__] = ACTIONS(1225), - [anon_sym__Atomic] = ACTIONS(1225), - [anon_sym__Noreturn] = ACTIONS(1225), - [anon_sym_noreturn] = ACTIONS(1225), - [anon_sym_alignas] = ACTIONS(1225), - [anon_sym__Alignas] = ACTIONS(1225), - [sym_primitive_type] = ACTIONS(1225), - [anon_sym_enum] = ACTIONS(1225), - [anon_sym_struct] = ACTIONS(1225), - [anon_sym_union] = ACTIONS(1225), - [anon_sym_if] = ACTIONS(1225), - [anon_sym_else] = ACTIONS(1225), - [anon_sym_switch] = ACTIONS(1225), - [anon_sym_case] = ACTIONS(1225), - [anon_sym_default] = ACTIONS(1225), - [anon_sym_while] = ACTIONS(1225), - [anon_sym_do] = ACTIONS(1225), - [anon_sym_for] = ACTIONS(1225), - [anon_sym_return] = ACTIONS(1225), - [anon_sym_break] = ACTIONS(1225), - [anon_sym_continue] = ACTIONS(1225), - [anon_sym_goto] = ACTIONS(1225), - [anon_sym___try] = ACTIONS(1225), - [anon_sym___leave] = ACTIONS(1225), - [anon_sym_DASH_DASH] = ACTIONS(1227), - [anon_sym_PLUS_PLUS] = ACTIONS(1227), - [anon_sym_sizeof] = ACTIONS(1225), - [anon_sym___alignof__] = ACTIONS(1225), - [anon_sym___alignof] = ACTIONS(1225), - [anon_sym__alignof] = ACTIONS(1225), - [anon_sym_alignof] = ACTIONS(1225), - [anon_sym__Alignof] = ACTIONS(1225), - [anon_sym_offsetof] = ACTIONS(1225), - [anon_sym__Generic] = ACTIONS(1225), - [anon_sym_asm] = ACTIONS(1225), - [anon_sym___asm__] = ACTIONS(1225), - [sym_number_literal] = ACTIONS(1227), - [anon_sym_L_SQUOTE] = ACTIONS(1227), - [anon_sym_u_SQUOTE] = ACTIONS(1227), - [anon_sym_U_SQUOTE] = ACTIONS(1227), - [anon_sym_u8_SQUOTE] = ACTIONS(1227), - [anon_sym_SQUOTE] = ACTIONS(1227), - [anon_sym_L_DQUOTE] = ACTIONS(1227), - [anon_sym_u_DQUOTE] = ACTIONS(1227), - [anon_sym_U_DQUOTE] = ACTIONS(1227), - [anon_sym_u8_DQUOTE] = ACTIONS(1227), - [anon_sym_DQUOTE] = ACTIONS(1227), - [sym_true] = ACTIONS(1225), - [sym_false] = ACTIONS(1225), - [anon_sym_NULL] = ACTIONS(1225), - [anon_sym_nullptr] = ACTIONS(1225), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [283] = { - [ts_builtin_sym_end] = ACTIONS(1175), - [sym_identifier] = ACTIONS(1173), - [aux_sym_preproc_include_token1] = ACTIONS(1173), - [aux_sym_preproc_def_token1] = ACTIONS(1173), - [aux_sym_preproc_if_token1] = ACTIONS(1173), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1173), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1173), - [sym_preproc_directive] = ACTIONS(1173), - [anon_sym_LPAREN2] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1175), - [anon_sym_TILDE] = ACTIONS(1175), - [anon_sym_DASH] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1173), - [anon_sym_STAR] = ACTIONS(1175), - [anon_sym_AMP] = ACTIONS(1175), - [anon_sym_SEMI] = ACTIONS(1175), - [anon_sym___extension__] = ACTIONS(1173), - [anon_sym_typedef] = ACTIONS(1173), - [anon_sym_extern] = ACTIONS(1173), - [anon_sym___attribute__] = ACTIONS(1173), - [anon_sym___scanf] = ACTIONS(1173), - [anon_sym___printf] = ACTIONS(1173), - [anon_sym___read_mostly] = ACTIONS(1173), - [anon_sym___must_hold] = ACTIONS(1173), - [anon_sym___ro_after_init] = ACTIONS(1173), - [anon_sym___noreturn] = ACTIONS(1173), - [anon_sym___cold] = ACTIONS(1173), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1175), - [anon_sym___declspec] = ACTIONS(1173), - [anon_sym___init] = ACTIONS(1173), - [anon_sym___exit] = ACTIONS(1173), - [anon_sym___cdecl] = ACTIONS(1173), - [anon_sym___clrcall] = ACTIONS(1173), - [anon_sym___stdcall] = ACTIONS(1173), - [anon_sym___fastcall] = ACTIONS(1173), - [anon_sym___thiscall] = ACTIONS(1173), - [anon_sym___vectorcall] = ACTIONS(1173), - [anon_sym_LBRACE] = ACTIONS(1175), - [anon_sym_signed] = ACTIONS(1173), - [anon_sym_unsigned] = ACTIONS(1173), - [anon_sym_long] = ACTIONS(1173), - [anon_sym_short] = ACTIONS(1173), - [anon_sym_static] = ACTIONS(1173), - [anon_sym_auto] = ACTIONS(1173), - [anon_sym_register] = ACTIONS(1173), - [anon_sym_inline] = ACTIONS(1173), - [anon_sym___inline] = ACTIONS(1173), - [anon_sym___inline__] = ACTIONS(1173), - [anon_sym___forceinline] = ACTIONS(1173), - [anon_sym_thread_local] = ACTIONS(1173), - [anon_sym___thread] = ACTIONS(1173), - [anon_sym_const] = ACTIONS(1173), - [anon_sym_constexpr] = ACTIONS(1173), - [anon_sym_volatile] = ACTIONS(1173), - [anon_sym_restrict] = ACTIONS(1173), - [anon_sym___restrict__] = ACTIONS(1173), - [anon_sym__Atomic] = ACTIONS(1173), - [anon_sym__Noreturn] = ACTIONS(1173), - [anon_sym_noreturn] = ACTIONS(1173), - [anon_sym_alignas] = ACTIONS(1173), - [anon_sym__Alignas] = ACTIONS(1173), - [sym_primitive_type] = ACTIONS(1173), - [anon_sym_enum] = ACTIONS(1173), - [anon_sym_struct] = ACTIONS(1173), - [anon_sym_union] = ACTIONS(1173), - [anon_sym_if] = ACTIONS(1173), - [anon_sym_else] = ACTIONS(1173), - [anon_sym_switch] = ACTIONS(1173), - [anon_sym_case] = ACTIONS(1173), - [anon_sym_default] = ACTIONS(1173), - [anon_sym_while] = ACTIONS(1173), - [anon_sym_do] = ACTIONS(1173), - [anon_sym_for] = ACTIONS(1173), - [anon_sym_return] = ACTIONS(1173), - [anon_sym_break] = ACTIONS(1173), - [anon_sym_continue] = ACTIONS(1173), - [anon_sym_goto] = ACTIONS(1173), - [anon_sym___try] = ACTIONS(1173), - [anon_sym___leave] = ACTIONS(1173), - [anon_sym_DASH_DASH] = ACTIONS(1175), - [anon_sym_PLUS_PLUS] = ACTIONS(1175), - [anon_sym_sizeof] = ACTIONS(1173), - [anon_sym___alignof__] = ACTIONS(1173), - [anon_sym___alignof] = ACTIONS(1173), - [anon_sym__alignof] = ACTIONS(1173), - [anon_sym_alignof] = ACTIONS(1173), - [anon_sym__Alignof] = ACTIONS(1173), - [anon_sym_offsetof] = ACTIONS(1173), - [anon_sym__Generic] = ACTIONS(1173), - [anon_sym_asm] = ACTIONS(1173), - [anon_sym___asm__] = ACTIONS(1173), - [sym_number_literal] = ACTIONS(1175), - [anon_sym_L_SQUOTE] = ACTIONS(1175), - [anon_sym_u_SQUOTE] = ACTIONS(1175), - [anon_sym_U_SQUOTE] = ACTIONS(1175), - [anon_sym_u8_SQUOTE] = ACTIONS(1175), - [anon_sym_SQUOTE] = ACTIONS(1175), - [anon_sym_L_DQUOTE] = ACTIONS(1175), - [anon_sym_u_DQUOTE] = ACTIONS(1175), - [anon_sym_U_DQUOTE] = ACTIONS(1175), - [anon_sym_u8_DQUOTE] = ACTIONS(1175), - [anon_sym_DQUOTE] = ACTIONS(1175), - [sym_true] = ACTIONS(1173), - [sym_false] = ACTIONS(1173), - [anon_sym_NULL] = ACTIONS(1173), - [anon_sym_nullptr] = ACTIONS(1173), - [sym_comment] = ACTIONS(3), + [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), }, [284] = { - [sym_identifier] = ACTIONS(1225), - [aux_sym_preproc_include_token1] = ACTIONS(1225), - [aux_sym_preproc_def_token1] = ACTIONS(1225), - [aux_sym_preproc_if_token1] = ACTIONS(1225), - [aux_sym_preproc_if_token2] = ACTIONS(1225), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1225), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1225), - [sym_preproc_directive] = ACTIONS(1225), - [anon_sym_LPAREN2] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_TILDE] = ACTIONS(1227), - [anon_sym_DASH] = ACTIONS(1225), - [anon_sym_PLUS] = ACTIONS(1225), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1227), - [anon_sym_SEMI] = ACTIONS(1227), - [anon_sym___extension__] = ACTIONS(1225), - [anon_sym_typedef] = ACTIONS(1225), - [anon_sym_extern] = ACTIONS(1225), - [anon_sym___attribute__] = ACTIONS(1225), - [anon_sym___scanf] = ACTIONS(1225), - [anon_sym___printf] = ACTIONS(1225), - [anon_sym___read_mostly] = ACTIONS(1225), - [anon_sym___must_hold] = ACTIONS(1225), - [anon_sym___ro_after_init] = ACTIONS(1225), - [anon_sym___noreturn] = ACTIONS(1225), - [anon_sym___cold] = ACTIONS(1225), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1227), - [anon_sym___declspec] = ACTIONS(1225), - [anon_sym___init] = ACTIONS(1225), - [anon_sym___exit] = ACTIONS(1225), - [anon_sym___cdecl] = ACTIONS(1225), - [anon_sym___clrcall] = ACTIONS(1225), - [anon_sym___stdcall] = ACTIONS(1225), - [anon_sym___fastcall] = ACTIONS(1225), - [anon_sym___thiscall] = ACTIONS(1225), - [anon_sym___vectorcall] = ACTIONS(1225), - [anon_sym_LBRACE] = ACTIONS(1227), - [anon_sym_signed] = ACTIONS(1225), - [anon_sym_unsigned] = ACTIONS(1225), - [anon_sym_long] = ACTIONS(1225), - [anon_sym_short] = ACTIONS(1225), - [anon_sym_static] = ACTIONS(1225), - [anon_sym_auto] = ACTIONS(1225), - [anon_sym_register] = ACTIONS(1225), - [anon_sym_inline] = ACTIONS(1225), - [anon_sym___inline] = ACTIONS(1225), - [anon_sym___inline__] = ACTIONS(1225), - [anon_sym___forceinline] = ACTIONS(1225), - [anon_sym_thread_local] = ACTIONS(1225), - [anon_sym___thread] = ACTIONS(1225), - [anon_sym_const] = ACTIONS(1225), - [anon_sym_constexpr] = ACTIONS(1225), - [anon_sym_volatile] = ACTIONS(1225), - [anon_sym_restrict] = ACTIONS(1225), - [anon_sym___restrict__] = ACTIONS(1225), - [anon_sym__Atomic] = ACTIONS(1225), - [anon_sym__Noreturn] = ACTIONS(1225), - [anon_sym_noreturn] = ACTIONS(1225), - [anon_sym_alignas] = ACTIONS(1225), - [anon_sym__Alignas] = ACTIONS(1225), - [sym_primitive_type] = ACTIONS(1225), - [anon_sym_enum] = ACTIONS(1225), - [anon_sym_struct] = ACTIONS(1225), - [anon_sym_union] = ACTIONS(1225), - [anon_sym_if] = ACTIONS(1225), - [anon_sym_else] = ACTIONS(1225), - [anon_sym_switch] = ACTIONS(1225), - [anon_sym_case] = ACTIONS(1225), - [anon_sym_default] = ACTIONS(1225), - [anon_sym_while] = ACTIONS(1225), - [anon_sym_do] = ACTIONS(1225), - [anon_sym_for] = ACTIONS(1225), - [anon_sym_return] = ACTIONS(1225), - [anon_sym_break] = ACTIONS(1225), - [anon_sym_continue] = ACTIONS(1225), - [anon_sym_goto] = ACTIONS(1225), - [anon_sym___try] = ACTIONS(1225), - [anon_sym___leave] = ACTIONS(1225), - [anon_sym_DASH_DASH] = ACTIONS(1227), - [anon_sym_PLUS_PLUS] = ACTIONS(1227), - [anon_sym_sizeof] = ACTIONS(1225), - [anon_sym___alignof__] = ACTIONS(1225), - [anon_sym___alignof] = ACTIONS(1225), - [anon_sym__alignof] = ACTIONS(1225), - [anon_sym_alignof] = ACTIONS(1225), - [anon_sym__Alignof] = ACTIONS(1225), - [anon_sym_offsetof] = ACTIONS(1225), - [anon_sym__Generic] = ACTIONS(1225), - [anon_sym_asm] = ACTIONS(1225), - [anon_sym___asm__] = ACTIONS(1225), - [sym_number_literal] = ACTIONS(1227), - [anon_sym_L_SQUOTE] = ACTIONS(1227), - [anon_sym_u_SQUOTE] = ACTIONS(1227), - [anon_sym_U_SQUOTE] = ACTIONS(1227), - [anon_sym_u8_SQUOTE] = ACTIONS(1227), - [anon_sym_SQUOTE] = ACTIONS(1227), - [anon_sym_L_DQUOTE] = ACTIONS(1227), - [anon_sym_u_DQUOTE] = ACTIONS(1227), - [anon_sym_U_DQUOTE] = ACTIONS(1227), - [anon_sym_u8_DQUOTE] = ACTIONS(1227), - [anon_sym_DQUOTE] = ACTIONS(1227), - [sym_true] = ACTIONS(1225), - [sym_false] = ACTIONS(1225), - [anon_sym_NULL] = ACTIONS(1225), - [anon_sym_nullptr] = ACTIONS(1225), - [sym_comment] = ACTIONS(3), + [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), + [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] = { - [ts_builtin_sym_end] = ACTIONS(1179), - [sym_identifier] = ACTIONS(1177), - [aux_sym_preproc_include_token1] = ACTIONS(1177), - [aux_sym_preproc_def_token1] = ACTIONS(1177), - [aux_sym_preproc_if_token1] = ACTIONS(1177), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1177), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1177), - [sym_preproc_directive] = ACTIONS(1177), - [anon_sym_LPAREN2] = ACTIONS(1179), - [anon_sym_BANG] = ACTIONS(1179), - [anon_sym_TILDE] = ACTIONS(1179), - [anon_sym_DASH] = ACTIONS(1177), - [anon_sym_PLUS] = ACTIONS(1177), - [anon_sym_STAR] = ACTIONS(1179), - [anon_sym_AMP] = ACTIONS(1179), - [anon_sym_SEMI] = ACTIONS(1179), - [anon_sym___extension__] = ACTIONS(1177), - [anon_sym_typedef] = ACTIONS(1177), - [anon_sym_extern] = ACTIONS(1177), - [anon_sym___attribute__] = ACTIONS(1177), - [anon_sym___scanf] = ACTIONS(1177), - [anon_sym___printf] = ACTIONS(1177), - [anon_sym___read_mostly] = ACTIONS(1177), - [anon_sym___must_hold] = ACTIONS(1177), - [anon_sym___ro_after_init] = ACTIONS(1177), - [anon_sym___noreturn] = ACTIONS(1177), - [anon_sym___cold] = ACTIONS(1177), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1179), - [anon_sym___declspec] = ACTIONS(1177), - [anon_sym___init] = ACTIONS(1177), - [anon_sym___exit] = ACTIONS(1177), - [anon_sym___cdecl] = ACTIONS(1177), - [anon_sym___clrcall] = ACTIONS(1177), - [anon_sym___stdcall] = ACTIONS(1177), - [anon_sym___fastcall] = ACTIONS(1177), - [anon_sym___thiscall] = ACTIONS(1177), - [anon_sym___vectorcall] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_signed] = ACTIONS(1177), - [anon_sym_unsigned] = ACTIONS(1177), - [anon_sym_long] = ACTIONS(1177), - [anon_sym_short] = ACTIONS(1177), - [anon_sym_static] = ACTIONS(1177), - [anon_sym_auto] = ACTIONS(1177), - [anon_sym_register] = ACTIONS(1177), - [anon_sym_inline] = ACTIONS(1177), - [anon_sym___inline] = ACTIONS(1177), - [anon_sym___inline__] = ACTIONS(1177), - [anon_sym___forceinline] = ACTIONS(1177), - [anon_sym_thread_local] = ACTIONS(1177), - [anon_sym___thread] = ACTIONS(1177), - [anon_sym_const] = ACTIONS(1177), - [anon_sym_constexpr] = ACTIONS(1177), - [anon_sym_volatile] = ACTIONS(1177), - [anon_sym_restrict] = ACTIONS(1177), - [anon_sym___restrict__] = ACTIONS(1177), - [anon_sym__Atomic] = ACTIONS(1177), - [anon_sym__Noreturn] = ACTIONS(1177), - [anon_sym_noreturn] = ACTIONS(1177), - [anon_sym_alignas] = ACTIONS(1177), - [anon_sym__Alignas] = ACTIONS(1177), - [sym_primitive_type] = ACTIONS(1177), - [anon_sym_enum] = ACTIONS(1177), - [anon_sym_struct] = ACTIONS(1177), - [anon_sym_union] = ACTIONS(1177), - [anon_sym_if] = ACTIONS(1177), - [anon_sym_else] = ACTIONS(1177), - [anon_sym_switch] = ACTIONS(1177), - [anon_sym_case] = ACTIONS(1177), - [anon_sym_default] = ACTIONS(1177), - [anon_sym_while] = ACTIONS(1177), - [anon_sym_do] = ACTIONS(1177), - [anon_sym_for] = ACTIONS(1177), - [anon_sym_return] = ACTIONS(1177), - [anon_sym_break] = ACTIONS(1177), - [anon_sym_continue] = ACTIONS(1177), - [anon_sym_goto] = ACTIONS(1177), - [anon_sym___try] = ACTIONS(1177), - [anon_sym___leave] = ACTIONS(1177), - [anon_sym_DASH_DASH] = ACTIONS(1179), - [anon_sym_PLUS_PLUS] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1177), - [anon_sym___alignof__] = ACTIONS(1177), - [anon_sym___alignof] = ACTIONS(1177), - [anon_sym__alignof] = ACTIONS(1177), - [anon_sym_alignof] = ACTIONS(1177), - [anon_sym__Alignof] = ACTIONS(1177), - [anon_sym_offsetof] = ACTIONS(1177), - [anon_sym__Generic] = ACTIONS(1177), - [anon_sym_asm] = ACTIONS(1177), - [anon_sym___asm__] = ACTIONS(1177), - [sym_number_literal] = ACTIONS(1179), - [anon_sym_L_SQUOTE] = ACTIONS(1179), - [anon_sym_u_SQUOTE] = ACTIONS(1179), - [anon_sym_U_SQUOTE] = ACTIONS(1179), - [anon_sym_u8_SQUOTE] = ACTIONS(1179), - [anon_sym_SQUOTE] = ACTIONS(1179), - [anon_sym_L_DQUOTE] = ACTIONS(1179), - [anon_sym_u_DQUOTE] = ACTIONS(1179), - [anon_sym_U_DQUOTE] = ACTIONS(1179), - [anon_sym_u8_DQUOTE] = ACTIONS(1179), - [anon_sym_DQUOTE] = ACTIONS(1179), - [sym_true] = ACTIONS(1177), - [sym_false] = ACTIONS(1177), - [anon_sym_NULL] = ACTIONS(1177), - [anon_sym_nullptr] = ACTIONS(1177), - [sym_comment] = ACTIONS(3), + [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(1197), - [aux_sym_preproc_include_token1] = ACTIONS(1197), - [aux_sym_preproc_def_token1] = ACTIONS(1197), - [aux_sym_preproc_if_token1] = ACTIONS(1197), - [aux_sym_preproc_if_token2] = ACTIONS(1197), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1197), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1197), - [sym_preproc_directive] = ACTIONS(1197), - [anon_sym_LPAREN2] = ACTIONS(1199), - [anon_sym_BANG] = ACTIONS(1199), - [anon_sym_TILDE] = ACTIONS(1199), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_AMP] = ACTIONS(1199), - [anon_sym_SEMI] = ACTIONS(1199), - [anon_sym___extension__] = ACTIONS(1197), - [anon_sym_typedef] = ACTIONS(1197), - [anon_sym_extern] = ACTIONS(1197), - [anon_sym___attribute__] = ACTIONS(1197), - [anon_sym___scanf] = ACTIONS(1197), - [anon_sym___printf] = ACTIONS(1197), - [anon_sym___read_mostly] = ACTIONS(1197), - [anon_sym___must_hold] = ACTIONS(1197), - [anon_sym___ro_after_init] = ACTIONS(1197), - [anon_sym___noreturn] = ACTIONS(1197), - [anon_sym___cold] = ACTIONS(1197), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1199), - [anon_sym___declspec] = ACTIONS(1197), - [anon_sym___init] = ACTIONS(1197), - [anon_sym___exit] = ACTIONS(1197), - [anon_sym___cdecl] = ACTIONS(1197), - [anon_sym___clrcall] = ACTIONS(1197), - [anon_sym___stdcall] = ACTIONS(1197), - [anon_sym___fastcall] = ACTIONS(1197), - [anon_sym___thiscall] = ACTIONS(1197), - [anon_sym___vectorcall] = ACTIONS(1197), - [anon_sym_LBRACE] = ACTIONS(1199), - [anon_sym_signed] = ACTIONS(1197), - [anon_sym_unsigned] = ACTIONS(1197), - [anon_sym_long] = ACTIONS(1197), - [anon_sym_short] = ACTIONS(1197), - [anon_sym_static] = ACTIONS(1197), - [anon_sym_auto] = ACTIONS(1197), - [anon_sym_register] = ACTIONS(1197), - [anon_sym_inline] = ACTIONS(1197), - [anon_sym___inline] = ACTIONS(1197), - [anon_sym___inline__] = ACTIONS(1197), - [anon_sym___forceinline] = ACTIONS(1197), - [anon_sym_thread_local] = ACTIONS(1197), - [anon_sym___thread] = ACTIONS(1197), - [anon_sym_const] = ACTIONS(1197), - [anon_sym_constexpr] = ACTIONS(1197), - [anon_sym_volatile] = ACTIONS(1197), - [anon_sym_restrict] = ACTIONS(1197), - [anon_sym___restrict__] = ACTIONS(1197), - [anon_sym__Atomic] = ACTIONS(1197), - [anon_sym__Noreturn] = ACTIONS(1197), - [anon_sym_noreturn] = ACTIONS(1197), - [anon_sym_alignas] = ACTIONS(1197), - [anon_sym__Alignas] = ACTIONS(1197), - [sym_primitive_type] = ACTIONS(1197), - [anon_sym_enum] = ACTIONS(1197), - [anon_sym_struct] = ACTIONS(1197), - [anon_sym_union] = ACTIONS(1197), - [anon_sym_if] = ACTIONS(1197), - [anon_sym_else] = ACTIONS(1197), - [anon_sym_switch] = ACTIONS(1197), - [anon_sym_case] = ACTIONS(1197), - [anon_sym_default] = ACTIONS(1197), - [anon_sym_while] = ACTIONS(1197), - [anon_sym_do] = ACTIONS(1197), - [anon_sym_for] = ACTIONS(1197), - [anon_sym_return] = ACTIONS(1197), - [anon_sym_break] = ACTIONS(1197), - [anon_sym_continue] = ACTIONS(1197), - [anon_sym_goto] = ACTIONS(1197), - [anon_sym___try] = ACTIONS(1197), - [anon_sym___leave] = ACTIONS(1197), - [anon_sym_DASH_DASH] = ACTIONS(1199), - [anon_sym_PLUS_PLUS] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1197), - [anon_sym___alignof__] = ACTIONS(1197), - [anon_sym___alignof] = ACTIONS(1197), - [anon_sym__alignof] = ACTIONS(1197), - [anon_sym_alignof] = ACTIONS(1197), - [anon_sym__Alignof] = ACTIONS(1197), - [anon_sym_offsetof] = ACTIONS(1197), - [anon_sym__Generic] = ACTIONS(1197), - [anon_sym_asm] = ACTIONS(1197), - [anon_sym___asm__] = ACTIONS(1197), - [sym_number_literal] = ACTIONS(1199), - [anon_sym_L_SQUOTE] = ACTIONS(1199), - [anon_sym_u_SQUOTE] = ACTIONS(1199), - [anon_sym_U_SQUOTE] = ACTIONS(1199), - [anon_sym_u8_SQUOTE] = ACTIONS(1199), - [anon_sym_SQUOTE] = ACTIONS(1199), - [anon_sym_L_DQUOTE] = ACTIONS(1199), - [anon_sym_u_DQUOTE] = ACTIONS(1199), - [anon_sym_U_DQUOTE] = ACTIONS(1199), - [anon_sym_u8_DQUOTE] = ACTIONS(1199), - [anon_sym_DQUOTE] = ACTIONS(1199), - [sym_true] = ACTIONS(1197), - [sym_false] = ACTIONS(1197), - [anon_sym_NULL] = ACTIONS(1197), - [anon_sym_nullptr] = ACTIONS(1197), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [287] = { - [sym_identifier] = ACTIONS(1197), - [aux_sym_preproc_include_token1] = ACTIONS(1197), - [aux_sym_preproc_def_token1] = ACTIONS(1197), - [aux_sym_preproc_if_token1] = ACTIONS(1197), - [aux_sym_preproc_if_token2] = ACTIONS(1197), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1197), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1197), - [sym_preproc_directive] = ACTIONS(1197), - [anon_sym_LPAREN2] = ACTIONS(1199), - [anon_sym_BANG] = ACTIONS(1199), - [anon_sym_TILDE] = ACTIONS(1199), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_AMP] = ACTIONS(1199), - [anon_sym_SEMI] = ACTIONS(1199), - [anon_sym___extension__] = ACTIONS(1197), - [anon_sym_typedef] = ACTIONS(1197), - [anon_sym_extern] = ACTIONS(1197), - [anon_sym___attribute__] = ACTIONS(1197), - [anon_sym___scanf] = ACTIONS(1197), - [anon_sym___printf] = ACTIONS(1197), - [anon_sym___read_mostly] = ACTIONS(1197), - [anon_sym___must_hold] = ACTIONS(1197), - [anon_sym___ro_after_init] = ACTIONS(1197), - [anon_sym___noreturn] = ACTIONS(1197), - [anon_sym___cold] = ACTIONS(1197), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1199), - [anon_sym___declspec] = ACTIONS(1197), - [anon_sym___init] = ACTIONS(1197), - [anon_sym___exit] = ACTIONS(1197), - [anon_sym___cdecl] = ACTIONS(1197), - [anon_sym___clrcall] = ACTIONS(1197), - [anon_sym___stdcall] = ACTIONS(1197), - [anon_sym___fastcall] = ACTIONS(1197), - [anon_sym___thiscall] = ACTIONS(1197), - [anon_sym___vectorcall] = ACTIONS(1197), - [anon_sym_LBRACE] = ACTIONS(1199), - [anon_sym_signed] = ACTIONS(1197), - [anon_sym_unsigned] = ACTIONS(1197), - [anon_sym_long] = ACTIONS(1197), - [anon_sym_short] = ACTIONS(1197), - [anon_sym_static] = ACTIONS(1197), - [anon_sym_auto] = ACTIONS(1197), - [anon_sym_register] = ACTIONS(1197), - [anon_sym_inline] = ACTIONS(1197), - [anon_sym___inline] = ACTIONS(1197), - [anon_sym___inline__] = ACTIONS(1197), - [anon_sym___forceinline] = ACTIONS(1197), - [anon_sym_thread_local] = ACTIONS(1197), - [anon_sym___thread] = ACTIONS(1197), - [anon_sym_const] = ACTIONS(1197), - [anon_sym_constexpr] = ACTIONS(1197), - [anon_sym_volatile] = ACTIONS(1197), - [anon_sym_restrict] = ACTIONS(1197), - [anon_sym___restrict__] = ACTIONS(1197), - [anon_sym__Atomic] = ACTIONS(1197), - [anon_sym__Noreturn] = ACTIONS(1197), - [anon_sym_noreturn] = ACTIONS(1197), - [anon_sym_alignas] = ACTIONS(1197), - [anon_sym__Alignas] = ACTIONS(1197), - [sym_primitive_type] = ACTIONS(1197), - [anon_sym_enum] = ACTIONS(1197), - [anon_sym_struct] = ACTIONS(1197), - [anon_sym_union] = ACTIONS(1197), - [anon_sym_if] = ACTIONS(1197), - [anon_sym_else] = ACTIONS(1197), - [anon_sym_switch] = ACTIONS(1197), - [anon_sym_case] = ACTIONS(1197), - [anon_sym_default] = ACTIONS(1197), - [anon_sym_while] = ACTIONS(1197), - [anon_sym_do] = ACTIONS(1197), - [anon_sym_for] = ACTIONS(1197), - [anon_sym_return] = ACTIONS(1197), - [anon_sym_break] = ACTIONS(1197), - [anon_sym_continue] = ACTIONS(1197), - [anon_sym_goto] = ACTIONS(1197), - [anon_sym___try] = ACTIONS(1197), - [anon_sym___leave] = ACTIONS(1197), - [anon_sym_DASH_DASH] = ACTIONS(1199), - [anon_sym_PLUS_PLUS] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1197), - [anon_sym___alignof__] = ACTIONS(1197), - [anon_sym___alignof] = ACTIONS(1197), - [anon_sym__alignof] = ACTIONS(1197), - [anon_sym_alignof] = ACTIONS(1197), - [anon_sym__Alignof] = ACTIONS(1197), - [anon_sym_offsetof] = ACTIONS(1197), - [anon_sym__Generic] = ACTIONS(1197), - [anon_sym_asm] = ACTIONS(1197), - [anon_sym___asm__] = ACTIONS(1197), - [sym_number_literal] = ACTIONS(1199), - [anon_sym_L_SQUOTE] = ACTIONS(1199), - [anon_sym_u_SQUOTE] = ACTIONS(1199), - [anon_sym_U_SQUOTE] = ACTIONS(1199), - [anon_sym_u8_SQUOTE] = ACTIONS(1199), - [anon_sym_SQUOTE] = ACTIONS(1199), - [anon_sym_L_DQUOTE] = ACTIONS(1199), - [anon_sym_u_DQUOTE] = ACTIONS(1199), - [anon_sym_U_DQUOTE] = ACTIONS(1199), - [anon_sym_u8_DQUOTE] = ACTIONS(1199), - [anon_sym_DQUOTE] = ACTIONS(1199), - [sym_true] = ACTIONS(1197), - [sym_false] = ACTIONS(1197), - [anon_sym_NULL] = ACTIONS(1197), - [anon_sym_nullptr] = ACTIONS(1197), - [sym_comment] = ACTIONS(3), + [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), }, [288] = { - [sym_identifier] = ACTIONS(1197), - [aux_sym_preproc_include_token1] = ACTIONS(1197), - [aux_sym_preproc_def_token1] = ACTIONS(1197), - [aux_sym_preproc_if_token1] = ACTIONS(1197), - [aux_sym_preproc_if_token2] = ACTIONS(1197), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1197), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1197), - [sym_preproc_directive] = ACTIONS(1197), - [anon_sym_LPAREN2] = ACTIONS(1199), - [anon_sym_BANG] = ACTIONS(1199), - [anon_sym_TILDE] = ACTIONS(1199), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_AMP] = ACTIONS(1199), - [anon_sym_SEMI] = ACTIONS(1199), - [anon_sym___extension__] = ACTIONS(1197), - [anon_sym_typedef] = ACTIONS(1197), - [anon_sym_extern] = ACTIONS(1197), - [anon_sym___attribute__] = ACTIONS(1197), - [anon_sym___scanf] = ACTIONS(1197), - [anon_sym___printf] = ACTIONS(1197), - [anon_sym___read_mostly] = ACTIONS(1197), - [anon_sym___must_hold] = ACTIONS(1197), - [anon_sym___ro_after_init] = ACTIONS(1197), - [anon_sym___noreturn] = ACTIONS(1197), - [anon_sym___cold] = ACTIONS(1197), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1199), - [anon_sym___declspec] = ACTIONS(1197), - [anon_sym___init] = ACTIONS(1197), - [anon_sym___exit] = ACTIONS(1197), - [anon_sym___cdecl] = ACTIONS(1197), - [anon_sym___clrcall] = ACTIONS(1197), - [anon_sym___stdcall] = ACTIONS(1197), - [anon_sym___fastcall] = ACTIONS(1197), - [anon_sym___thiscall] = ACTIONS(1197), - [anon_sym___vectorcall] = ACTIONS(1197), - [anon_sym_LBRACE] = ACTIONS(1199), - [anon_sym_signed] = ACTIONS(1197), - [anon_sym_unsigned] = ACTIONS(1197), - [anon_sym_long] = ACTIONS(1197), - [anon_sym_short] = ACTIONS(1197), - [anon_sym_static] = ACTIONS(1197), - [anon_sym_auto] = ACTIONS(1197), - [anon_sym_register] = ACTIONS(1197), - [anon_sym_inline] = ACTIONS(1197), - [anon_sym___inline] = ACTIONS(1197), - [anon_sym___inline__] = ACTIONS(1197), - [anon_sym___forceinline] = ACTIONS(1197), - [anon_sym_thread_local] = ACTIONS(1197), - [anon_sym___thread] = ACTIONS(1197), - [anon_sym_const] = ACTIONS(1197), - [anon_sym_constexpr] = ACTIONS(1197), - [anon_sym_volatile] = ACTIONS(1197), - [anon_sym_restrict] = ACTIONS(1197), - [anon_sym___restrict__] = ACTIONS(1197), - [anon_sym__Atomic] = ACTIONS(1197), - [anon_sym__Noreturn] = ACTIONS(1197), - [anon_sym_noreturn] = ACTIONS(1197), - [anon_sym_alignas] = ACTIONS(1197), - [anon_sym__Alignas] = ACTIONS(1197), - [sym_primitive_type] = ACTIONS(1197), - [anon_sym_enum] = ACTIONS(1197), - [anon_sym_struct] = ACTIONS(1197), - [anon_sym_union] = ACTIONS(1197), - [anon_sym_if] = ACTIONS(1197), - [anon_sym_else] = ACTIONS(1197), - [anon_sym_switch] = ACTIONS(1197), - [anon_sym_case] = ACTIONS(1197), - [anon_sym_default] = ACTIONS(1197), - [anon_sym_while] = ACTIONS(1197), - [anon_sym_do] = ACTIONS(1197), - [anon_sym_for] = ACTIONS(1197), - [anon_sym_return] = ACTIONS(1197), - [anon_sym_break] = ACTIONS(1197), - [anon_sym_continue] = ACTIONS(1197), - [anon_sym_goto] = ACTIONS(1197), - [anon_sym___try] = ACTIONS(1197), - [anon_sym___leave] = ACTIONS(1197), - [anon_sym_DASH_DASH] = ACTIONS(1199), - [anon_sym_PLUS_PLUS] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1197), - [anon_sym___alignof__] = ACTIONS(1197), - [anon_sym___alignof] = ACTIONS(1197), - [anon_sym__alignof] = ACTIONS(1197), - [anon_sym_alignof] = ACTIONS(1197), - [anon_sym__Alignof] = ACTIONS(1197), - [anon_sym_offsetof] = ACTIONS(1197), - [anon_sym__Generic] = ACTIONS(1197), - [anon_sym_asm] = ACTIONS(1197), - [anon_sym___asm__] = ACTIONS(1197), - [sym_number_literal] = ACTIONS(1199), - [anon_sym_L_SQUOTE] = ACTIONS(1199), - [anon_sym_u_SQUOTE] = ACTIONS(1199), - [anon_sym_U_SQUOTE] = ACTIONS(1199), - [anon_sym_u8_SQUOTE] = ACTIONS(1199), - [anon_sym_SQUOTE] = ACTIONS(1199), - [anon_sym_L_DQUOTE] = ACTIONS(1199), - [anon_sym_u_DQUOTE] = ACTIONS(1199), - [anon_sym_U_DQUOTE] = ACTIONS(1199), - [anon_sym_u8_DQUOTE] = ACTIONS(1199), - [anon_sym_DQUOTE] = ACTIONS(1199), - [sym_true] = ACTIONS(1197), - [sym_false] = ACTIONS(1197), - [anon_sym_NULL] = ACTIONS(1197), - [anon_sym_nullptr] = ACTIONS(1197), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [289] = { - [sym_identifier] = ACTIONS(1193), - [aux_sym_preproc_include_token1] = ACTIONS(1193), - [aux_sym_preproc_def_token1] = ACTIONS(1193), - [aux_sym_preproc_if_token1] = ACTIONS(1193), - [aux_sym_preproc_if_token2] = ACTIONS(1193), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1193), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1193), - [sym_preproc_directive] = ACTIONS(1193), - [anon_sym_LPAREN2] = ACTIONS(1195), - [anon_sym_BANG] = ACTIONS(1195), - [anon_sym_TILDE] = ACTIONS(1195), - [anon_sym_DASH] = ACTIONS(1193), - [anon_sym_PLUS] = ACTIONS(1193), - [anon_sym_STAR] = ACTIONS(1195), - [anon_sym_AMP] = ACTIONS(1195), - [anon_sym_SEMI] = ACTIONS(1195), - [anon_sym___extension__] = ACTIONS(1193), - [anon_sym_typedef] = ACTIONS(1193), - [anon_sym_extern] = ACTIONS(1193), - [anon_sym___attribute__] = ACTIONS(1193), - [anon_sym___scanf] = ACTIONS(1193), - [anon_sym___printf] = ACTIONS(1193), - [anon_sym___read_mostly] = ACTIONS(1193), - [anon_sym___must_hold] = ACTIONS(1193), - [anon_sym___ro_after_init] = ACTIONS(1193), - [anon_sym___noreturn] = ACTIONS(1193), - [anon_sym___cold] = ACTIONS(1193), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1195), - [anon_sym___declspec] = ACTIONS(1193), - [anon_sym___init] = ACTIONS(1193), - [anon_sym___exit] = ACTIONS(1193), - [anon_sym___cdecl] = ACTIONS(1193), - [anon_sym___clrcall] = ACTIONS(1193), - [anon_sym___stdcall] = ACTIONS(1193), - [anon_sym___fastcall] = ACTIONS(1193), - [anon_sym___thiscall] = ACTIONS(1193), - [anon_sym___vectorcall] = ACTIONS(1193), - [anon_sym_LBRACE] = ACTIONS(1195), - [anon_sym_signed] = ACTIONS(1193), - [anon_sym_unsigned] = ACTIONS(1193), - [anon_sym_long] = ACTIONS(1193), - [anon_sym_short] = ACTIONS(1193), - [anon_sym_static] = ACTIONS(1193), - [anon_sym_auto] = ACTIONS(1193), - [anon_sym_register] = ACTIONS(1193), - [anon_sym_inline] = ACTIONS(1193), - [anon_sym___inline] = ACTIONS(1193), - [anon_sym___inline__] = ACTIONS(1193), - [anon_sym___forceinline] = ACTIONS(1193), - [anon_sym_thread_local] = ACTIONS(1193), - [anon_sym___thread] = ACTIONS(1193), - [anon_sym_const] = ACTIONS(1193), - [anon_sym_constexpr] = ACTIONS(1193), - [anon_sym_volatile] = ACTIONS(1193), - [anon_sym_restrict] = ACTIONS(1193), - [anon_sym___restrict__] = ACTIONS(1193), - [anon_sym__Atomic] = ACTIONS(1193), - [anon_sym__Noreturn] = ACTIONS(1193), - [anon_sym_noreturn] = ACTIONS(1193), - [anon_sym_alignas] = ACTIONS(1193), - [anon_sym__Alignas] = ACTIONS(1193), - [sym_primitive_type] = ACTIONS(1193), - [anon_sym_enum] = ACTIONS(1193), - [anon_sym_struct] = ACTIONS(1193), - [anon_sym_union] = ACTIONS(1193), - [anon_sym_if] = ACTIONS(1193), - [anon_sym_else] = ACTIONS(1193), - [anon_sym_switch] = ACTIONS(1193), - [anon_sym_case] = ACTIONS(1193), - [anon_sym_default] = ACTIONS(1193), - [anon_sym_while] = ACTIONS(1193), - [anon_sym_do] = ACTIONS(1193), - [anon_sym_for] = ACTIONS(1193), - [anon_sym_return] = ACTIONS(1193), - [anon_sym_break] = ACTIONS(1193), - [anon_sym_continue] = ACTIONS(1193), - [anon_sym_goto] = ACTIONS(1193), - [anon_sym___try] = ACTIONS(1193), - [anon_sym___leave] = ACTIONS(1193), - [anon_sym_DASH_DASH] = ACTIONS(1195), - [anon_sym_PLUS_PLUS] = ACTIONS(1195), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym___alignof__] = ACTIONS(1193), - [anon_sym___alignof] = ACTIONS(1193), - [anon_sym__alignof] = ACTIONS(1193), - [anon_sym_alignof] = ACTIONS(1193), - [anon_sym__Alignof] = ACTIONS(1193), - [anon_sym_offsetof] = ACTIONS(1193), - [anon_sym__Generic] = ACTIONS(1193), - [anon_sym_asm] = ACTIONS(1193), - [anon_sym___asm__] = ACTIONS(1193), - [sym_number_literal] = ACTIONS(1195), - [anon_sym_L_SQUOTE] = ACTIONS(1195), - [anon_sym_u_SQUOTE] = ACTIONS(1195), - [anon_sym_U_SQUOTE] = ACTIONS(1195), - [anon_sym_u8_SQUOTE] = ACTIONS(1195), - [anon_sym_SQUOTE] = ACTIONS(1195), - [anon_sym_L_DQUOTE] = ACTIONS(1195), - [anon_sym_u_DQUOTE] = ACTIONS(1195), - [anon_sym_U_DQUOTE] = ACTIONS(1195), - [anon_sym_u8_DQUOTE] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1195), - [sym_true] = ACTIONS(1193), - [sym_false] = ACTIONS(1193), - [anon_sym_NULL] = ACTIONS(1193), - [anon_sym_nullptr] = ACTIONS(1193), - [sym_comment] = ACTIONS(3), + [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), }, [290] = { - [sym_identifier] = ACTIONS(1157), - [aux_sym_preproc_include_token1] = ACTIONS(1157), - [aux_sym_preproc_def_token1] = ACTIONS(1157), - [aux_sym_preproc_if_token1] = ACTIONS(1157), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1157), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1157), - [sym_preproc_directive] = ACTIONS(1157), - [anon_sym_LPAREN2] = ACTIONS(1159), - [anon_sym_BANG] = ACTIONS(1159), - [anon_sym_TILDE] = ACTIONS(1159), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_STAR] = ACTIONS(1159), - [anon_sym_AMP] = ACTIONS(1159), - [anon_sym_SEMI] = ACTIONS(1159), - [anon_sym___extension__] = ACTIONS(1157), - [anon_sym_typedef] = ACTIONS(1157), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym___attribute__] = ACTIONS(1157), - [anon_sym___scanf] = ACTIONS(1157), - [anon_sym___printf] = ACTIONS(1157), - [anon_sym___read_mostly] = ACTIONS(1157), - [anon_sym___must_hold] = ACTIONS(1157), - [anon_sym___ro_after_init] = ACTIONS(1157), - [anon_sym___noreturn] = ACTIONS(1157), - [anon_sym___cold] = ACTIONS(1157), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1159), - [anon_sym___declspec] = ACTIONS(1157), - [anon_sym___init] = ACTIONS(1157), - [anon_sym___exit] = ACTIONS(1157), - [anon_sym___cdecl] = ACTIONS(1157), - [anon_sym___clrcall] = ACTIONS(1157), - [anon_sym___stdcall] = ACTIONS(1157), - [anon_sym___fastcall] = ACTIONS(1157), - [anon_sym___thiscall] = ACTIONS(1157), - [anon_sym___vectorcall] = ACTIONS(1157), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_RBRACE] = ACTIONS(1159), - [anon_sym_signed] = ACTIONS(1157), - [anon_sym_unsigned] = ACTIONS(1157), - [anon_sym_long] = ACTIONS(1157), - [anon_sym_short] = ACTIONS(1157), - [anon_sym_static] = ACTIONS(1157), - [anon_sym_auto] = ACTIONS(1157), - [anon_sym_register] = ACTIONS(1157), - [anon_sym_inline] = ACTIONS(1157), - [anon_sym___inline] = ACTIONS(1157), - [anon_sym___inline__] = ACTIONS(1157), - [anon_sym___forceinline] = ACTIONS(1157), - [anon_sym_thread_local] = ACTIONS(1157), - [anon_sym___thread] = ACTIONS(1157), - [anon_sym_const] = ACTIONS(1157), - [anon_sym_constexpr] = ACTIONS(1157), - [anon_sym_volatile] = ACTIONS(1157), - [anon_sym_restrict] = ACTIONS(1157), - [anon_sym___restrict__] = ACTIONS(1157), - [anon_sym__Atomic] = ACTIONS(1157), - [anon_sym__Noreturn] = ACTIONS(1157), - [anon_sym_noreturn] = ACTIONS(1157), - [anon_sym_alignas] = ACTIONS(1157), - [anon_sym__Alignas] = ACTIONS(1157), - [sym_primitive_type] = ACTIONS(1157), - [anon_sym_enum] = ACTIONS(1157), - [anon_sym_struct] = ACTIONS(1157), - [anon_sym_union] = ACTIONS(1157), - [anon_sym_if] = ACTIONS(1157), - [anon_sym_else] = ACTIONS(1157), - [anon_sym_switch] = ACTIONS(1157), - [anon_sym_case] = ACTIONS(1157), - [anon_sym_default] = ACTIONS(1157), - [anon_sym_while] = ACTIONS(1157), - [anon_sym_do] = ACTIONS(1157), - [anon_sym_for] = ACTIONS(1157), - [anon_sym_return] = ACTIONS(1157), - [anon_sym_break] = ACTIONS(1157), - [anon_sym_continue] = ACTIONS(1157), - [anon_sym_goto] = ACTIONS(1157), - [anon_sym___try] = ACTIONS(1157), - [anon_sym___leave] = ACTIONS(1157), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_sizeof] = ACTIONS(1157), - [anon_sym___alignof__] = ACTIONS(1157), - [anon_sym___alignof] = ACTIONS(1157), - [anon_sym__alignof] = ACTIONS(1157), - [anon_sym_alignof] = ACTIONS(1157), - [anon_sym__Alignof] = ACTIONS(1157), - [anon_sym_offsetof] = ACTIONS(1157), - [anon_sym__Generic] = ACTIONS(1157), - [anon_sym_asm] = ACTIONS(1157), - [anon_sym___asm__] = ACTIONS(1157), - [sym_number_literal] = ACTIONS(1159), - [anon_sym_L_SQUOTE] = ACTIONS(1159), - [anon_sym_u_SQUOTE] = ACTIONS(1159), - [anon_sym_U_SQUOTE] = ACTIONS(1159), - [anon_sym_u8_SQUOTE] = ACTIONS(1159), - [anon_sym_SQUOTE] = ACTIONS(1159), - [anon_sym_L_DQUOTE] = ACTIONS(1159), - [anon_sym_u_DQUOTE] = ACTIONS(1159), - [anon_sym_U_DQUOTE] = ACTIONS(1159), - [anon_sym_u8_DQUOTE] = ACTIONS(1159), - [anon_sym_DQUOTE] = ACTIONS(1159), - [sym_true] = ACTIONS(1157), - [sym_false] = ACTIONS(1157), - [anon_sym_NULL] = ACTIONS(1157), - [anon_sym_nullptr] = ACTIONS(1157), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [291] = { - [sym_identifier] = ACTIONS(1225), - [aux_sym_preproc_include_token1] = ACTIONS(1225), - [aux_sym_preproc_def_token1] = ACTIONS(1225), - [aux_sym_preproc_if_token1] = ACTIONS(1225), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1225), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1225), - [sym_preproc_directive] = ACTIONS(1225), - [anon_sym_LPAREN2] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_TILDE] = ACTIONS(1227), - [anon_sym_DASH] = ACTIONS(1225), - [anon_sym_PLUS] = ACTIONS(1225), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1227), - [anon_sym_SEMI] = ACTIONS(1227), - [anon_sym___extension__] = ACTIONS(1225), - [anon_sym_typedef] = ACTIONS(1225), - [anon_sym_extern] = ACTIONS(1225), - [anon_sym___attribute__] = ACTIONS(1225), - [anon_sym___scanf] = ACTIONS(1225), - [anon_sym___printf] = ACTIONS(1225), - [anon_sym___read_mostly] = ACTIONS(1225), - [anon_sym___must_hold] = ACTIONS(1225), - [anon_sym___ro_after_init] = ACTIONS(1225), - [anon_sym___noreturn] = ACTIONS(1225), - [anon_sym___cold] = ACTIONS(1225), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1227), - [anon_sym___declspec] = ACTIONS(1225), - [anon_sym___init] = ACTIONS(1225), - [anon_sym___exit] = ACTIONS(1225), - [anon_sym___cdecl] = ACTIONS(1225), - [anon_sym___clrcall] = ACTIONS(1225), - [anon_sym___stdcall] = ACTIONS(1225), - [anon_sym___fastcall] = ACTIONS(1225), - [anon_sym___thiscall] = ACTIONS(1225), - [anon_sym___vectorcall] = ACTIONS(1225), - [anon_sym_LBRACE] = ACTIONS(1227), - [anon_sym_RBRACE] = ACTIONS(1227), - [anon_sym_signed] = ACTIONS(1225), - [anon_sym_unsigned] = ACTIONS(1225), - [anon_sym_long] = ACTIONS(1225), - [anon_sym_short] = ACTIONS(1225), - [anon_sym_static] = ACTIONS(1225), - [anon_sym_auto] = ACTIONS(1225), - [anon_sym_register] = ACTIONS(1225), - [anon_sym_inline] = ACTIONS(1225), - [anon_sym___inline] = ACTIONS(1225), - [anon_sym___inline__] = ACTIONS(1225), - [anon_sym___forceinline] = ACTIONS(1225), - [anon_sym_thread_local] = ACTIONS(1225), - [anon_sym___thread] = ACTIONS(1225), - [anon_sym_const] = ACTIONS(1225), - [anon_sym_constexpr] = ACTIONS(1225), - [anon_sym_volatile] = ACTIONS(1225), - [anon_sym_restrict] = ACTIONS(1225), - [anon_sym___restrict__] = ACTIONS(1225), - [anon_sym__Atomic] = ACTIONS(1225), - [anon_sym__Noreturn] = ACTIONS(1225), - [anon_sym_noreturn] = ACTIONS(1225), - [anon_sym_alignas] = ACTIONS(1225), - [anon_sym__Alignas] = ACTIONS(1225), - [sym_primitive_type] = ACTIONS(1225), - [anon_sym_enum] = ACTIONS(1225), - [anon_sym_struct] = ACTIONS(1225), - [anon_sym_union] = ACTIONS(1225), - [anon_sym_if] = ACTIONS(1225), - [anon_sym_else] = ACTIONS(1225), - [anon_sym_switch] = ACTIONS(1225), - [anon_sym_case] = ACTIONS(1225), - [anon_sym_default] = ACTIONS(1225), - [anon_sym_while] = ACTIONS(1225), - [anon_sym_do] = ACTIONS(1225), - [anon_sym_for] = ACTIONS(1225), - [anon_sym_return] = ACTIONS(1225), - [anon_sym_break] = ACTIONS(1225), - [anon_sym_continue] = ACTIONS(1225), - [anon_sym_goto] = ACTIONS(1225), - [anon_sym___try] = ACTIONS(1225), - [anon_sym___leave] = ACTIONS(1225), - [anon_sym_DASH_DASH] = ACTIONS(1227), - [anon_sym_PLUS_PLUS] = ACTIONS(1227), - [anon_sym_sizeof] = ACTIONS(1225), - [anon_sym___alignof__] = ACTIONS(1225), - [anon_sym___alignof] = ACTIONS(1225), - [anon_sym__alignof] = ACTIONS(1225), - [anon_sym_alignof] = ACTIONS(1225), - [anon_sym__Alignof] = ACTIONS(1225), - [anon_sym_offsetof] = ACTIONS(1225), - [anon_sym__Generic] = ACTIONS(1225), - [anon_sym_asm] = ACTIONS(1225), - [anon_sym___asm__] = ACTIONS(1225), - [sym_number_literal] = ACTIONS(1227), - [anon_sym_L_SQUOTE] = ACTIONS(1227), - [anon_sym_u_SQUOTE] = ACTIONS(1227), - [anon_sym_U_SQUOTE] = ACTIONS(1227), - [anon_sym_u8_SQUOTE] = ACTIONS(1227), - [anon_sym_SQUOTE] = ACTIONS(1227), - [anon_sym_L_DQUOTE] = ACTIONS(1227), - [anon_sym_u_DQUOTE] = ACTIONS(1227), - [anon_sym_U_DQUOTE] = ACTIONS(1227), - [anon_sym_u8_DQUOTE] = ACTIONS(1227), - [anon_sym_DQUOTE] = ACTIONS(1227), - [sym_true] = ACTIONS(1225), - [sym_false] = ACTIONS(1225), - [anon_sym_NULL] = ACTIONS(1225), - [anon_sym_nullptr] = ACTIONS(1225), - [sym_comment] = ACTIONS(3), + [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), }, [292] = { - [sym_identifier] = ACTIONS(1309), - [aux_sym_preproc_include_token1] = ACTIONS(1309), - [aux_sym_preproc_def_token1] = ACTIONS(1309), - [aux_sym_preproc_if_token1] = ACTIONS(1309), - [aux_sym_preproc_if_token2] = ACTIONS(1309), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1309), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1309), - [sym_preproc_directive] = ACTIONS(1309), - [anon_sym_LPAREN2] = ACTIONS(1311), - [anon_sym_BANG] = ACTIONS(1311), - [anon_sym_TILDE] = ACTIONS(1311), - [anon_sym_DASH] = ACTIONS(1309), - [anon_sym_PLUS] = ACTIONS(1309), - [anon_sym_STAR] = ACTIONS(1311), - [anon_sym_AMP] = ACTIONS(1311), - [anon_sym_SEMI] = ACTIONS(1311), - [anon_sym___extension__] = ACTIONS(1309), - [anon_sym_typedef] = ACTIONS(1309), - [anon_sym_extern] = ACTIONS(1309), - [anon_sym___attribute__] = ACTIONS(1309), - [anon_sym___scanf] = ACTIONS(1309), - [anon_sym___printf] = ACTIONS(1309), - [anon_sym___read_mostly] = ACTIONS(1309), - [anon_sym___must_hold] = ACTIONS(1309), - [anon_sym___ro_after_init] = ACTIONS(1309), - [anon_sym___noreturn] = ACTIONS(1309), - [anon_sym___cold] = ACTIONS(1309), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1311), - [anon_sym___declspec] = ACTIONS(1309), - [anon_sym___init] = ACTIONS(1309), - [anon_sym___exit] = ACTIONS(1309), - [anon_sym___cdecl] = ACTIONS(1309), - [anon_sym___clrcall] = ACTIONS(1309), - [anon_sym___stdcall] = ACTIONS(1309), - [anon_sym___fastcall] = ACTIONS(1309), - [anon_sym___thiscall] = ACTIONS(1309), - [anon_sym___vectorcall] = ACTIONS(1309), - [anon_sym_LBRACE] = ACTIONS(1311), - [anon_sym_signed] = ACTIONS(1309), - [anon_sym_unsigned] = ACTIONS(1309), - [anon_sym_long] = ACTIONS(1309), - [anon_sym_short] = ACTIONS(1309), - [anon_sym_static] = ACTIONS(1309), - [anon_sym_auto] = ACTIONS(1309), - [anon_sym_register] = ACTIONS(1309), - [anon_sym_inline] = ACTIONS(1309), - [anon_sym___inline] = ACTIONS(1309), - [anon_sym___inline__] = ACTIONS(1309), - [anon_sym___forceinline] = ACTIONS(1309), - [anon_sym_thread_local] = ACTIONS(1309), - [anon_sym___thread] = ACTIONS(1309), - [anon_sym_const] = ACTIONS(1309), - [anon_sym_constexpr] = ACTIONS(1309), - [anon_sym_volatile] = ACTIONS(1309), - [anon_sym_restrict] = ACTIONS(1309), - [anon_sym___restrict__] = ACTIONS(1309), - [anon_sym__Atomic] = ACTIONS(1309), - [anon_sym__Noreturn] = ACTIONS(1309), - [anon_sym_noreturn] = ACTIONS(1309), - [anon_sym_alignas] = ACTIONS(1309), - [anon_sym__Alignas] = ACTIONS(1309), - [sym_primitive_type] = ACTIONS(1309), - [anon_sym_enum] = ACTIONS(1309), - [anon_sym_struct] = ACTIONS(1309), - [anon_sym_union] = ACTIONS(1309), - [anon_sym_if] = ACTIONS(1309), - [anon_sym_switch] = ACTIONS(1309), - [anon_sym_case] = ACTIONS(1309), - [anon_sym_default] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1309), - [anon_sym_do] = ACTIONS(1309), - [anon_sym_for] = ACTIONS(1309), - [anon_sym_return] = ACTIONS(1309), - [anon_sym_break] = ACTIONS(1309), - [anon_sym_continue] = ACTIONS(1309), - [anon_sym_goto] = ACTIONS(1309), - [anon_sym___try] = ACTIONS(1309), - [anon_sym___leave] = ACTIONS(1309), - [anon_sym_DASH_DASH] = ACTIONS(1311), - [anon_sym_PLUS_PLUS] = ACTIONS(1311), - [anon_sym_sizeof] = ACTIONS(1309), - [anon_sym___alignof__] = ACTIONS(1309), - [anon_sym___alignof] = ACTIONS(1309), - [anon_sym__alignof] = ACTIONS(1309), - [anon_sym_alignof] = ACTIONS(1309), - [anon_sym__Alignof] = ACTIONS(1309), - [anon_sym_offsetof] = ACTIONS(1309), - [anon_sym__Generic] = ACTIONS(1309), - [anon_sym_asm] = ACTIONS(1309), - [anon_sym___asm__] = ACTIONS(1309), - [sym_number_literal] = ACTIONS(1311), - [anon_sym_L_SQUOTE] = ACTIONS(1311), - [anon_sym_u_SQUOTE] = ACTIONS(1311), - [anon_sym_U_SQUOTE] = ACTIONS(1311), - [anon_sym_u8_SQUOTE] = ACTIONS(1311), - [anon_sym_SQUOTE] = ACTIONS(1311), - [anon_sym_L_DQUOTE] = ACTIONS(1311), - [anon_sym_u_DQUOTE] = ACTIONS(1311), - [anon_sym_U_DQUOTE] = ACTIONS(1311), - [anon_sym_u8_DQUOTE] = ACTIONS(1311), - [anon_sym_DQUOTE] = ACTIONS(1311), - [sym_true] = ACTIONS(1309), - [sym_false] = ACTIONS(1309), - [anon_sym_NULL] = ACTIONS(1309), - [anon_sym_nullptr] = ACTIONS(1309), - [sym_comment] = ACTIONS(3), + [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), }, [293] = { - [sym_identifier] = ACTIONS(1337), - [aux_sym_preproc_include_token1] = ACTIONS(1337), - [aux_sym_preproc_def_token1] = ACTIONS(1337), - [aux_sym_preproc_if_token1] = ACTIONS(1337), - [aux_sym_preproc_if_token2] = ACTIONS(1337), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1337), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1337), - [sym_preproc_directive] = ACTIONS(1337), - [anon_sym_LPAREN2] = ACTIONS(1339), - [anon_sym_BANG] = ACTIONS(1339), - [anon_sym_TILDE] = ACTIONS(1339), - [anon_sym_DASH] = ACTIONS(1337), - [anon_sym_PLUS] = ACTIONS(1337), - [anon_sym_STAR] = ACTIONS(1339), - [anon_sym_AMP] = ACTIONS(1339), - [anon_sym_SEMI] = ACTIONS(1339), - [anon_sym___extension__] = ACTIONS(1337), - [anon_sym_typedef] = ACTIONS(1337), - [anon_sym_extern] = ACTIONS(1337), - [anon_sym___attribute__] = ACTIONS(1337), - [anon_sym___scanf] = ACTIONS(1337), - [anon_sym___printf] = ACTIONS(1337), - [anon_sym___read_mostly] = ACTIONS(1337), - [anon_sym___must_hold] = ACTIONS(1337), - [anon_sym___ro_after_init] = ACTIONS(1337), - [anon_sym___noreturn] = ACTIONS(1337), - [anon_sym___cold] = ACTIONS(1337), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1339), - [anon_sym___declspec] = ACTIONS(1337), - [anon_sym___init] = ACTIONS(1337), - [anon_sym___exit] = ACTIONS(1337), - [anon_sym___cdecl] = ACTIONS(1337), - [anon_sym___clrcall] = ACTIONS(1337), - [anon_sym___stdcall] = ACTIONS(1337), - [anon_sym___fastcall] = ACTIONS(1337), - [anon_sym___thiscall] = ACTIONS(1337), - [anon_sym___vectorcall] = ACTIONS(1337), - [anon_sym_LBRACE] = ACTIONS(1339), - [anon_sym_signed] = ACTIONS(1337), - [anon_sym_unsigned] = ACTIONS(1337), - [anon_sym_long] = ACTIONS(1337), - [anon_sym_short] = ACTIONS(1337), - [anon_sym_static] = ACTIONS(1337), - [anon_sym_auto] = ACTIONS(1337), - [anon_sym_register] = ACTIONS(1337), - [anon_sym_inline] = ACTIONS(1337), - [anon_sym___inline] = ACTIONS(1337), - [anon_sym___inline__] = ACTIONS(1337), - [anon_sym___forceinline] = ACTIONS(1337), - [anon_sym_thread_local] = ACTIONS(1337), - [anon_sym___thread] = ACTIONS(1337), - [anon_sym_const] = ACTIONS(1337), - [anon_sym_constexpr] = ACTIONS(1337), - [anon_sym_volatile] = ACTIONS(1337), - [anon_sym_restrict] = ACTIONS(1337), - [anon_sym___restrict__] = ACTIONS(1337), - [anon_sym__Atomic] = ACTIONS(1337), - [anon_sym__Noreturn] = ACTIONS(1337), - [anon_sym_noreturn] = ACTIONS(1337), - [anon_sym_alignas] = ACTIONS(1337), - [anon_sym__Alignas] = ACTIONS(1337), - [sym_primitive_type] = ACTIONS(1337), - [anon_sym_enum] = ACTIONS(1337), - [anon_sym_struct] = ACTIONS(1337), - [anon_sym_union] = ACTIONS(1337), - [anon_sym_if] = ACTIONS(1337), - [anon_sym_switch] = ACTIONS(1337), - [anon_sym_case] = ACTIONS(1337), - [anon_sym_default] = ACTIONS(1337), - [anon_sym_while] = ACTIONS(1337), - [anon_sym_do] = ACTIONS(1337), - [anon_sym_for] = ACTIONS(1337), - [anon_sym_return] = ACTIONS(1337), - [anon_sym_break] = ACTIONS(1337), - [anon_sym_continue] = ACTIONS(1337), - [anon_sym_goto] = ACTIONS(1337), - [anon_sym___try] = ACTIONS(1337), - [anon_sym___leave] = ACTIONS(1337), - [anon_sym_DASH_DASH] = ACTIONS(1339), - [anon_sym_PLUS_PLUS] = ACTIONS(1339), - [anon_sym_sizeof] = ACTIONS(1337), - [anon_sym___alignof__] = ACTIONS(1337), - [anon_sym___alignof] = ACTIONS(1337), - [anon_sym__alignof] = ACTIONS(1337), - [anon_sym_alignof] = ACTIONS(1337), - [anon_sym__Alignof] = ACTIONS(1337), - [anon_sym_offsetof] = ACTIONS(1337), - [anon_sym__Generic] = ACTIONS(1337), - [anon_sym_asm] = ACTIONS(1337), - [anon_sym___asm__] = ACTIONS(1337), - [sym_number_literal] = ACTIONS(1339), - [anon_sym_L_SQUOTE] = ACTIONS(1339), - [anon_sym_u_SQUOTE] = ACTIONS(1339), - [anon_sym_U_SQUOTE] = ACTIONS(1339), - [anon_sym_u8_SQUOTE] = ACTIONS(1339), - [anon_sym_SQUOTE] = ACTIONS(1339), - [anon_sym_L_DQUOTE] = ACTIONS(1339), - [anon_sym_u_DQUOTE] = ACTIONS(1339), - [anon_sym_U_DQUOTE] = ACTIONS(1339), - [anon_sym_u8_DQUOTE] = ACTIONS(1339), - [anon_sym_DQUOTE] = ACTIONS(1339), - [sym_true] = ACTIONS(1337), - [sym_false] = ACTIONS(1337), - [anon_sym_NULL] = ACTIONS(1337), - [anon_sym_nullptr] = ACTIONS(1337), - [sym_comment] = ACTIONS(3), + [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] = { - [sym_identifier] = ACTIONS(1353), - [aux_sym_preproc_include_token1] = ACTIONS(1353), - [aux_sym_preproc_def_token1] = ACTIONS(1353), - [aux_sym_preproc_if_token1] = ACTIONS(1353), - [aux_sym_preproc_if_token2] = ACTIONS(1353), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1353), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1353), - [sym_preproc_directive] = ACTIONS(1353), - [anon_sym_LPAREN2] = ACTIONS(1355), - [anon_sym_BANG] = ACTIONS(1355), - [anon_sym_TILDE] = ACTIONS(1355), - [anon_sym_DASH] = ACTIONS(1353), - [anon_sym_PLUS] = ACTIONS(1353), - [anon_sym_STAR] = ACTIONS(1355), - [anon_sym_AMP] = ACTIONS(1355), - [anon_sym_SEMI] = ACTIONS(1355), - [anon_sym___extension__] = ACTIONS(1353), - [anon_sym_typedef] = ACTIONS(1353), - [anon_sym_extern] = ACTIONS(1353), - [anon_sym___attribute__] = ACTIONS(1353), - [anon_sym___scanf] = ACTIONS(1353), - [anon_sym___printf] = ACTIONS(1353), - [anon_sym___read_mostly] = ACTIONS(1353), - [anon_sym___must_hold] = ACTIONS(1353), - [anon_sym___ro_after_init] = ACTIONS(1353), - [anon_sym___noreturn] = ACTIONS(1353), - [anon_sym___cold] = ACTIONS(1353), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1355), - [anon_sym___declspec] = ACTIONS(1353), - [anon_sym___init] = ACTIONS(1353), - [anon_sym___exit] = ACTIONS(1353), - [anon_sym___cdecl] = ACTIONS(1353), - [anon_sym___clrcall] = ACTIONS(1353), - [anon_sym___stdcall] = ACTIONS(1353), - [anon_sym___fastcall] = ACTIONS(1353), - [anon_sym___thiscall] = ACTIONS(1353), - [anon_sym___vectorcall] = ACTIONS(1353), - [anon_sym_LBRACE] = ACTIONS(1355), - [anon_sym_signed] = ACTIONS(1353), - [anon_sym_unsigned] = ACTIONS(1353), - [anon_sym_long] = ACTIONS(1353), - [anon_sym_short] = ACTIONS(1353), - [anon_sym_static] = ACTIONS(1353), - [anon_sym_auto] = ACTIONS(1353), - [anon_sym_register] = ACTIONS(1353), - [anon_sym_inline] = ACTIONS(1353), - [anon_sym___inline] = ACTIONS(1353), - [anon_sym___inline__] = ACTIONS(1353), - [anon_sym___forceinline] = ACTIONS(1353), - [anon_sym_thread_local] = ACTIONS(1353), - [anon_sym___thread] = ACTIONS(1353), - [anon_sym_const] = ACTIONS(1353), - [anon_sym_constexpr] = ACTIONS(1353), - [anon_sym_volatile] = ACTIONS(1353), - [anon_sym_restrict] = ACTIONS(1353), - [anon_sym___restrict__] = ACTIONS(1353), - [anon_sym__Atomic] = ACTIONS(1353), - [anon_sym__Noreturn] = ACTIONS(1353), - [anon_sym_noreturn] = ACTIONS(1353), - [anon_sym_alignas] = ACTIONS(1353), - [anon_sym__Alignas] = ACTIONS(1353), - [sym_primitive_type] = ACTIONS(1353), - [anon_sym_enum] = ACTIONS(1353), - [anon_sym_struct] = ACTIONS(1353), - [anon_sym_union] = ACTIONS(1353), - [anon_sym_if] = ACTIONS(1353), - [anon_sym_switch] = ACTIONS(1353), - [anon_sym_case] = ACTIONS(1353), - [anon_sym_default] = ACTIONS(1353), - [anon_sym_while] = ACTIONS(1353), - [anon_sym_do] = ACTIONS(1353), - [anon_sym_for] = ACTIONS(1353), - [anon_sym_return] = ACTIONS(1353), - [anon_sym_break] = ACTIONS(1353), - [anon_sym_continue] = ACTIONS(1353), - [anon_sym_goto] = ACTIONS(1353), - [anon_sym___try] = ACTIONS(1353), - [anon_sym___leave] = ACTIONS(1353), - [anon_sym_DASH_DASH] = ACTIONS(1355), - [anon_sym_PLUS_PLUS] = ACTIONS(1355), - [anon_sym_sizeof] = ACTIONS(1353), - [anon_sym___alignof__] = ACTIONS(1353), - [anon_sym___alignof] = ACTIONS(1353), - [anon_sym__alignof] = ACTIONS(1353), - [anon_sym_alignof] = ACTIONS(1353), - [anon_sym__Alignof] = ACTIONS(1353), - [anon_sym_offsetof] = ACTIONS(1353), - [anon_sym__Generic] = ACTIONS(1353), - [anon_sym_asm] = ACTIONS(1353), - [anon_sym___asm__] = ACTIONS(1353), - [sym_number_literal] = ACTIONS(1355), - [anon_sym_L_SQUOTE] = ACTIONS(1355), - [anon_sym_u_SQUOTE] = ACTIONS(1355), - [anon_sym_U_SQUOTE] = ACTIONS(1355), - [anon_sym_u8_SQUOTE] = ACTIONS(1355), - [anon_sym_SQUOTE] = ACTIONS(1355), - [anon_sym_L_DQUOTE] = ACTIONS(1355), - [anon_sym_u_DQUOTE] = ACTIONS(1355), - [anon_sym_U_DQUOTE] = ACTIONS(1355), - [anon_sym_u8_DQUOTE] = ACTIONS(1355), - [anon_sym_DQUOTE] = ACTIONS(1355), - [sym_true] = ACTIONS(1353), - [sym_false] = ACTIONS(1353), - [anon_sym_NULL] = ACTIONS(1353), - [anon_sym_nullptr] = ACTIONS(1353), - [sym_comment] = ACTIONS(3), + [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), }, [295] = { - [sym_identifier] = ACTIONS(1329), - [aux_sym_preproc_include_token1] = ACTIONS(1329), - [aux_sym_preproc_def_token1] = ACTIONS(1329), - [aux_sym_preproc_if_token1] = ACTIONS(1329), - [aux_sym_preproc_if_token2] = ACTIONS(1329), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1329), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1329), - [sym_preproc_directive] = ACTIONS(1329), - [anon_sym_LPAREN2] = ACTIONS(1331), - [anon_sym_BANG] = ACTIONS(1331), - [anon_sym_TILDE] = ACTIONS(1331), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_STAR] = ACTIONS(1331), - [anon_sym_AMP] = ACTIONS(1331), - [anon_sym_SEMI] = ACTIONS(1331), - [anon_sym___extension__] = ACTIONS(1329), - [anon_sym_typedef] = ACTIONS(1329), - [anon_sym_extern] = ACTIONS(1329), - [anon_sym___attribute__] = ACTIONS(1329), - [anon_sym___scanf] = ACTIONS(1329), - [anon_sym___printf] = ACTIONS(1329), - [anon_sym___read_mostly] = ACTIONS(1329), - [anon_sym___must_hold] = ACTIONS(1329), - [anon_sym___ro_after_init] = ACTIONS(1329), - [anon_sym___noreturn] = ACTIONS(1329), - [anon_sym___cold] = ACTIONS(1329), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1331), - [anon_sym___declspec] = ACTIONS(1329), - [anon_sym___init] = ACTIONS(1329), - [anon_sym___exit] = ACTIONS(1329), - [anon_sym___cdecl] = ACTIONS(1329), - [anon_sym___clrcall] = ACTIONS(1329), - [anon_sym___stdcall] = ACTIONS(1329), - [anon_sym___fastcall] = ACTIONS(1329), - [anon_sym___thiscall] = ACTIONS(1329), - [anon_sym___vectorcall] = ACTIONS(1329), - [anon_sym_LBRACE] = ACTIONS(1331), - [anon_sym_signed] = ACTIONS(1329), - [anon_sym_unsigned] = ACTIONS(1329), - [anon_sym_long] = ACTIONS(1329), - [anon_sym_short] = ACTIONS(1329), - [anon_sym_static] = ACTIONS(1329), - [anon_sym_auto] = ACTIONS(1329), - [anon_sym_register] = ACTIONS(1329), - [anon_sym_inline] = ACTIONS(1329), - [anon_sym___inline] = ACTIONS(1329), - [anon_sym___inline__] = ACTIONS(1329), - [anon_sym___forceinline] = ACTIONS(1329), - [anon_sym_thread_local] = ACTIONS(1329), - [anon_sym___thread] = ACTIONS(1329), - [anon_sym_const] = ACTIONS(1329), - [anon_sym_constexpr] = ACTIONS(1329), - [anon_sym_volatile] = ACTIONS(1329), - [anon_sym_restrict] = ACTIONS(1329), - [anon_sym___restrict__] = ACTIONS(1329), - [anon_sym__Atomic] = ACTIONS(1329), - [anon_sym__Noreturn] = ACTIONS(1329), - [anon_sym_noreturn] = ACTIONS(1329), - [anon_sym_alignas] = ACTIONS(1329), - [anon_sym__Alignas] = ACTIONS(1329), - [sym_primitive_type] = ACTIONS(1329), - [anon_sym_enum] = ACTIONS(1329), - [anon_sym_struct] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1329), - [anon_sym_if] = ACTIONS(1329), - [anon_sym_switch] = ACTIONS(1329), - [anon_sym_case] = ACTIONS(1329), - [anon_sym_default] = ACTIONS(1329), - [anon_sym_while] = ACTIONS(1329), - [anon_sym_do] = ACTIONS(1329), - [anon_sym_for] = ACTIONS(1329), - [anon_sym_return] = ACTIONS(1329), - [anon_sym_break] = ACTIONS(1329), - [anon_sym_continue] = ACTIONS(1329), - [anon_sym_goto] = ACTIONS(1329), - [anon_sym___try] = ACTIONS(1329), - [anon_sym___leave] = ACTIONS(1329), - [anon_sym_DASH_DASH] = ACTIONS(1331), - [anon_sym_PLUS_PLUS] = ACTIONS(1331), - [anon_sym_sizeof] = ACTIONS(1329), - [anon_sym___alignof__] = ACTIONS(1329), - [anon_sym___alignof] = ACTIONS(1329), - [anon_sym__alignof] = ACTIONS(1329), - [anon_sym_alignof] = ACTIONS(1329), - [anon_sym__Alignof] = ACTIONS(1329), - [anon_sym_offsetof] = ACTIONS(1329), - [anon_sym__Generic] = ACTIONS(1329), - [anon_sym_asm] = ACTIONS(1329), - [anon_sym___asm__] = ACTIONS(1329), - [sym_number_literal] = ACTIONS(1331), - [anon_sym_L_SQUOTE] = ACTIONS(1331), - [anon_sym_u_SQUOTE] = ACTIONS(1331), - [anon_sym_U_SQUOTE] = ACTIONS(1331), - [anon_sym_u8_SQUOTE] = ACTIONS(1331), - [anon_sym_SQUOTE] = ACTIONS(1331), - [anon_sym_L_DQUOTE] = ACTIONS(1331), - [anon_sym_u_DQUOTE] = ACTIONS(1331), - [anon_sym_U_DQUOTE] = ACTIONS(1331), - [anon_sym_u8_DQUOTE] = ACTIONS(1331), - [anon_sym_DQUOTE] = ACTIONS(1331), - [sym_true] = ACTIONS(1329), - [sym_false] = ACTIONS(1329), - [anon_sym_NULL] = ACTIONS(1329), - [anon_sym_nullptr] = ACTIONS(1329), - [sym_comment] = ACTIONS(3), + [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), }, [296] = { - [sym_identifier] = ACTIONS(1411), - [aux_sym_preproc_include_token1] = ACTIONS(1411), - [aux_sym_preproc_def_token1] = ACTIONS(1411), - [aux_sym_preproc_if_token1] = ACTIONS(1411), - [aux_sym_preproc_if_token2] = ACTIONS(1411), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1411), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1411), - [sym_preproc_directive] = ACTIONS(1411), - [anon_sym_LPAREN2] = ACTIONS(1413), - [anon_sym_BANG] = ACTIONS(1413), - [anon_sym_TILDE] = ACTIONS(1413), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(1413), - [anon_sym_SEMI] = ACTIONS(1413), - [anon_sym___extension__] = ACTIONS(1411), - [anon_sym_typedef] = ACTIONS(1411), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym___attribute__] = ACTIONS(1411), - [anon_sym___scanf] = ACTIONS(1411), - [anon_sym___printf] = ACTIONS(1411), - [anon_sym___read_mostly] = ACTIONS(1411), - [anon_sym___must_hold] = ACTIONS(1411), - [anon_sym___ro_after_init] = ACTIONS(1411), - [anon_sym___noreturn] = ACTIONS(1411), - [anon_sym___cold] = ACTIONS(1411), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(1411), - [anon_sym___init] = ACTIONS(1411), - [anon_sym___exit] = ACTIONS(1411), - [anon_sym___cdecl] = ACTIONS(1411), - [anon_sym___clrcall] = ACTIONS(1411), - [anon_sym___stdcall] = ACTIONS(1411), - [anon_sym___fastcall] = ACTIONS(1411), - [anon_sym___thiscall] = ACTIONS(1411), - [anon_sym___vectorcall] = ACTIONS(1411), - [anon_sym_LBRACE] = ACTIONS(1413), - [anon_sym_signed] = ACTIONS(1411), - [anon_sym_unsigned] = ACTIONS(1411), - [anon_sym_long] = ACTIONS(1411), - [anon_sym_short] = ACTIONS(1411), - [anon_sym_static] = ACTIONS(1411), - [anon_sym_auto] = ACTIONS(1411), - [anon_sym_register] = ACTIONS(1411), - [anon_sym_inline] = ACTIONS(1411), - [anon_sym___inline] = ACTIONS(1411), - [anon_sym___inline__] = ACTIONS(1411), - [anon_sym___forceinline] = ACTIONS(1411), - [anon_sym_thread_local] = ACTIONS(1411), - [anon_sym___thread] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1411), - [anon_sym_constexpr] = ACTIONS(1411), - [anon_sym_volatile] = ACTIONS(1411), - [anon_sym_restrict] = ACTIONS(1411), - [anon_sym___restrict__] = ACTIONS(1411), - [anon_sym__Atomic] = ACTIONS(1411), - [anon_sym__Noreturn] = ACTIONS(1411), - [anon_sym_noreturn] = ACTIONS(1411), - [anon_sym_alignas] = ACTIONS(1411), - [anon_sym__Alignas] = ACTIONS(1411), - [sym_primitive_type] = ACTIONS(1411), - [anon_sym_enum] = ACTIONS(1411), - [anon_sym_struct] = ACTIONS(1411), - [anon_sym_union] = ACTIONS(1411), - [anon_sym_if] = ACTIONS(1411), - [anon_sym_switch] = ACTIONS(1411), - [anon_sym_case] = ACTIONS(1411), - [anon_sym_default] = ACTIONS(1411), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(1411), - [anon_sym_for] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_break] = ACTIONS(1411), - [anon_sym_continue] = ACTIONS(1411), - [anon_sym_goto] = ACTIONS(1411), - [anon_sym___try] = ACTIONS(1411), - [anon_sym___leave] = ACTIONS(1411), - [anon_sym_DASH_DASH] = ACTIONS(1413), - [anon_sym_PLUS_PLUS] = ACTIONS(1413), - [anon_sym_sizeof] = ACTIONS(1411), - [anon_sym___alignof__] = ACTIONS(1411), - [anon_sym___alignof] = ACTIONS(1411), - [anon_sym__alignof] = ACTIONS(1411), - [anon_sym_alignof] = ACTIONS(1411), - [anon_sym__Alignof] = ACTIONS(1411), - [anon_sym_offsetof] = ACTIONS(1411), - [anon_sym__Generic] = ACTIONS(1411), - [anon_sym_asm] = ACTIONS(1411), - [anon_sym___asm__] = ACTIONS(1411), - [sym_number_literal] = ACTIONS(1413), - [anon_sym_L_SQUOTE] = ACTIONS(1413), - [anon_sym_u_SQUOTE] = ACTIONS(1413), - [anon_sym_U_SQUOTE] = ACTIONS(1413), - [anon_sym_u8_SQUOTE] = ACTIONS(1413), - [anon_sym_SQUOTE] = ACTIONS(1413), - [anon_sym_L_DQUOTE] = ACTIONS(1413), - [anon_sym_u_DQUOTE] = ACTIONS(1413), - [anon_sym_U_DQUOTE] = ACTIONS(1413), - [anon_sym_u8_DQUOTE] = ACTIONS(1413), - [anon_sym_DQUOTE] = ACTIONS(1413), - [sym_true] = ACTIONS(1411), - [sym_false] = ACTIONS(1411), - [anon_sym_NULL] = ACTIONS(1411), - [anon_sym_nullptr] = ACTIONS(1411), - [sym_comment] = ACTIONS(3), + [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(1293), - [aux_sym_preproc_include_token1] = ACTIONS(1293), - [aux_sym_preproc_def_token1] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1293), - [aux_sym_preproc_if_token2] = ACTIONS(1293), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1293), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1293), - [sym_preproc_directive] = ACTIONS(1293), - [anon_sym_LPAREN2] = ACTIONS(1295), - [anon_sym_BANG] = ACTIONS(1295), - [anon_sym_TILDE] = ACTIONS(1295), - [anon_sym_DASH] = ACTIONS(1293), - [anon_sym_PLUS] = ACTIONS(1293), - [anon_sym_STAR] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(1295), - [anon_sym_SEMI] = ACTIONS(1295), - [anon_sym___extension__] = ACTIONS(1293), - [anon_sym_typedef] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1293), - [anon_sym___attribute__] = ACTIONS(1293), - [anon_sym___scanf] = ACTIONS(1293), - [anon_sym___printf] = ACTIONS(1293), - [anon_sym___read_mostly] = ACTIONS(1293), - [anon_sym___must_hold] = ACTIONS(1293), - [anon_sym___ro_after_init] = ACTIONS(1293), - [anon_sym___noreturn] = ACTIONS(1293), - [anon_sym___cold] = ACTIONS(1293), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1295), - [anon_sym___declspec] = ACTIONS(1293), - [anon_sym___init] = ACTIONS(1293), - [anon_sym___exit] = ACTIONS(1293), - [anon_sym___cdecl] = ACTIONS(1293), - [anon_sym___clrcall] = ACTIONS(1293), - [anon_sym___stdcall] = ACTIONS(1293), - [anon_sym___fastcall] = ACTIONS(1293), - [anon_sym___thiscall] = ACTIONS(1293), - [anon_sym___vectorcall] = ACTIONS(1293), - [anon_sym_LBRACE] = ACTIONS(1295), - [anon_sym_signed] = ACTIONS(1293), - [anon_sym_unsigned] = ACTIONS(1293), - [anon_sym_long] = ACTIONS(1293), - [anon_sym_short] = ACTIONS(1293), - [anon_sym_static] = ACTIONS(1293), - [anon_sym_auto] = ACTIONS(1293), - [anon_sym_register] = ACTIONS(1293), - [anon_sym_inline] = ACTIONS(1293), - [anon_sym___inline] = ACTIONS(1293), - [anon_sym___inline__] = ACTIONS(1293), - [anon_sym___forceinline] = ACTIONS(1293), - [anon_sym_thread_local] = ACTIONS(1293), - [anon_sym___thread] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), - [anon_sym_constexpr] = ACTIONS(1293), - [anon_sym_volatile] = ACTIONS(1293), - [anon_sym_restrict] = ACTIONS(1293), - [anon_sym___restrict__] = ACTIONS(1293), - [anon_sym__Atomic] = ACTIONS(1293), - [anon_sym__Noreturn] = ACTIONS(1293), - [anon_sym_noreturn] = ACTIONS(1293), - [anon_sym_alignas] = ACTIONS(1293), - [anon_sym__Alignas] = ACTIONS(1293), - [sym_primitive_type] = ACTIONS(1293), - [anon_sym_enum] = ACTIONS(1293), - [anon_sym_struct] = ACTIONS(1293), - [anon_sym_union] = ACTIONS(1293), - [anon_sym_if] = ACTIONS(1293), - [anon_sym_switch] = ACTIONS(1293), - [anon_sym_case] = ACTIONS(1293), - [anon_sym_default] = ACTIONS(1293), - [anon_sym_while] = ACTIONS(1293), - [anon_sym_do] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1293), - [anon_sym_return] = ACTIONS(1293), - [anon_sym_break] = ACTIONS(1293), - [anon_sym_continue] = ACTIONS(1293), - [anon_sym_goto] = ACTIONS(1293), - [anon_sym___try] = ACTIONS(1293), - [anon_sym___leave] = ACTIONS(1293), - [anon_sym_DASH_DASH] = ACTIONS(1295), - [anon_sym_PLUS_PLUS] = ACTIONS(1295), - [anon_sym_sizeof] = ACTIONS(1293), - [anon_sym___alignof__] = ACTIONS(1293), - [anon_sym___alignof] = ACTIONS(1293), - [anon_sym__alignof] = ACTIONS(1293), - [anon_sym_alignof] = ACTIONS(1293), - [anon_sym__Alignof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1293), - [anon_sym__Generic] = ACTIONS(1293), - [anon_sym_asm] = ACTIONS(1293), - [anon_sym___asm__] = ACTIONS(1293), - [sym_number_literal] = ACTIONS(1295), - [anon_sym_L_SQUOTE] = ACTIONS(1295), - [anon_sym_u_SQUOTE] = ACTIONS(1295), - [anon_sym_U_SQUOTE] = ACTIONS(1295), - [anon_sym_u8_SQUOTE] = ACTIONS(1295), - [anon_sym_SQUOTE] = ACTIONS(1295), - [anon_sym_L_DQUOTE] = ACTIONS(1295), - [anon_sym_u_DQUOTE] = ACTIONS(1295), - [anon_sym_U_DQUOTE] = ACTIONS(1295), - [anon_sym_u8_DQUOTE] = ACTIONS(1295), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_true] = ACTIONS(1293), - [sym_false] = ACTIONS(1293), - [anon_sym_NULL] = ACTIONS(1293), - [anon_sym_nullptr] = ACTIONS(1293), - [sym_comment] = ACTIONS(3), + [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(1393), - [aux_sym_preproc_include_token1] = ACTIONS(1393), - [aux_sym_preproc_def_token1] = ACTIONS(1393), - [aux_sym_preproc_if_token1] = ACTIONS(1393), - [aux_sym_preproc_if_token2] = ACTIONS(1393), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1393), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1393), - [sym_preproc_directive] = ACTIONS(1393), - [anon_sym_LPAREN2] = ACTIONS(1395), - [anon_sym_BANG] = ACTIONS(1395), - [anon_sym_TILDE] = ACTIONS(1395), - [anon_sym_DASH] = ACTIONS(1393), - [anon_sym_PLUS] = ACTIONS(1393), - [anon_sym_STAR] = ACTIONS(1395), - [anon_sym_AMP] = ACTIONS(1395), - [anon_sym_SEMI] = ACTIONS(1395), - [anon_sym___extension__] = ACTIONS(1393), - [anon_sym_typedef] = ACTIONS(1393), - [anon_sym_extern] = ACTIONS(1393), - [anon_sym___attribute__] = ACTIONS(1393), - [anon_sym___scanf] = ACTIONS(1393), - [anon_sym___printf] = ACTIONS(1393), - [anon_sym___read_mostly] = ACTIONS(1393), - [anon_sym___must_hold] = ACTIONS(1393), - [anon_sym___ro_after_init] = ACTIONS(1393), - [anon_sym___noreturn] = ACTIONS(1393), - [anon_sym___cold] = ACTIONS(1393), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1395), - [anon_sym___declspec] = ACTIONS(1393), - [anon_sym___init] = ACTIONS(1393), - [anon_sym___exit] = ACTIONS(1393), - [anon_sym___cdecl] = ACTIONS(1393), - [anon_sym___clrcall] = ACTIONS(1393), - [anon_sym___stdcall] = ACTIONS(1393), - [anon_sym___fastcall] = ACTIONS(1393), - [anon_sym___thiscall] = ACTIONS(1393), - [anon_sym___vectorcall] = ACTIONS(1393), - [anon_sym_LBRACE] = ACTIONS(1395), - [anon_sym_signed] = ACTIONS(1393), - [anon_sym_unsigned] = ACTIONS(1393), - [anon_sym_long] = ACTIONS(1393), - [anon_sym_short] = ACTIONS(1393), - [anon_sym_static] = ACTIONS(1393), - [anon_sym_auto] = ACTIONS(1393), - [anon_sym_register] = ACTIONS(1393), - [anon_sym_inline] = ACTIONS(1393), - [anon_sym___inline] = ACTIONS(1393), - [anon_sym___inline__] = ACTIONS(1393), - [anon_sym___forceinline] = ACTIONS(1393), - [anon_sym_thread_local] = ACTIONS(1393), - [anon_sym___thread] = ACTIONS(1393), - [anon_sym_const] = ACTIONS(1393), - [anon_sym_constexpr] = ACTIONS(1393), - [anon_sym_volatile] = ACTIONS(1393), - [anon_sym_restrict] = ACTIONS(1393), - [anon_sym___restrict__] = ACTIONS(1393), - [anon_sym__Atomic] = ACTIONS(1393), - [anon_sym__Noreturn] = ACTIONS(1393), - [anon_sym_noreturn] = ACTIONS(1393), - [anon_sym_alignas] = ACTIONS(1393), - [anon_sym__Alignas] = ACTIONS(1393), - [sym_primitive_type] = ACTIONS(1393), - [anon_sym_enum] = ACTIONS(1393), - [anon_sym_struct] = ACTIONS(1393), - [anon_sym_union] = ACTIONS(1393), - [anon_sym_if] = ACTIONS(1393), - [anon_sym_switch] = ACTIONS(1393), - [anon_sym_case] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1393), - [anon_sym_while] = ACTIONS(1393), - [anon_sym_do] = ACTIONS(1393), - [anon_sym_for] = ACTIONS(1393), - [anon_sym_return] = ACTIONS(1393), - [anon_sym_break] = ACTIONS(1393), - [anon_sym_continue] = ACTIONS(1393), - [anon_sym_goto] = ACTIONS(1393), - [anon_sym___try] = ACTIONS(1393), - [anon_sym___leave] = ACTIONS(1393), - [anon_sym_DASH_DASH] = ACTIONS(1395), - [anon_sym_PLUS_PLUS] = ACTIONS(1395), - [anon_sym_sizeof] = ACTIONS(1393), - [anon_sym___alignof__] = ACTIONS(1393), - [anon_sym___alignof] = ACTIONS(1393), - [anon_sym__alignof] = ACTIONS(1393), - [anon_sym_alignof] = ACTIONS(1393), - [anon_sym__Alignof] = ACTIONS(1393), - [anon_sym_offsetof] = ACTIONS(1393), - [anon_sym__Generic] = ACTIONS(1393), - [anon_sym_asm] = ACTIONS(1393), - [anon_sym___asm__] = ACTIONS(1393), - [sym_number_literal] = ACTIONS(1395), - [anon_sym_L_SQUOTE] = ACTIONS(1395), - [anon_sym_u_SQUOTE] = ACTIONS(1395), - [anon_sym_U_SQUOTE] = ACTIONS(1395), - [anon_sym_u8_SQUOTE] = ACTIONS(1395), - [anon_sym_SQUOTE] = ACTIONS(1395), - [anon_sym_L_DQUOTE] = ACTIONS(1395), - [anon_sym_u_DQUOTE] = ACTIONS(1395), - [anon_sym_U_DQUOTE] = ACTIONS(1395), - [anon_sym_u8_DQUOTE] = ACTIONS(1395), - [anon_sym_DQUOTE] = ACTIONS(1395), - [sym_true] = ACTIONS(1393), - [sym_false] = ACTIONS(1393), - [anon_sym_NULL] = ACTIONS(1393), - [anon_sym_nullptr] = ACTIONS(1393), - [sym_comment] = ACTIONS(3), + [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(1305), - [aux_sym_preproc_include_token1] = ACTIONS(1305), - [aux_sym_preproc_def_token1] = ACTIONS(1305), - [aux_sym_preproc_if_token1] = ACTIONS(1305), - [aux_sym_preproc_if_token2] = ACTIONS(1305), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1305), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1305), - [sym_preproc_directive] = ACTIONS(1305), - [anon_sym_LPAREN2] = ACTIONS(1307), - [anon_sym_BANG] = ACTIONS(1307), - [anon_sym_TILDE] = ACTIONS(1307), - [anon_sym_DASH] = ACTIONS(1305), - [anon_sym_PLUS] = ACTIONS(1305), - [anon_sym_STAR] = ACTIONS(1307), - [anon_sym_AMP] = ACTIONS(1307), - [anon_sym_SEMI] = ACTIONS(1307), - [anon_sym___extension__] = ACTIONS(1305), - [anon_sym_typedef] = ACTIONS(1305), - [anon_sym_extern] = ACTIONS(1305), - [anon_sym___attribute__] = ACTIONS(1305), - [anon_sym___scanf] = ACTIONS(1305), - [anon_sym___printf] = ACTIONS(1305), - [anon_sym___read_mostly] = ACTIONS(1305), - [anon_sym___must_hold] = ACTIONS(1305), - [anon_sym___ro_after_init] = ACTIONS(1305), - [anon_sym___noreturn] = ACTIONS(1305), - [anon_sym___cold] = ACTIONS(1305), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1307), - [anon_sym___declspec] = ACTIONS(1305), - [anon_sym___init] = ACTIONS(1305), - [anon_sym___exit] = ACTIONS(1305), - [anon_sym___cdecl] = ACTIONS(1305), - [anon_sym___clrcall] = ACTIONS(1305), - [anon_sym___stdcall] = ACTIONS(1305), - [anon_sym___fastcall] = ACTIONS(1305), - [anon_sym___thiscall] = ACTIONS(1305), - [anon_sym___vectorcall] = ACTIONS(1305), - [anon_sym_LBRACE] = ACTIONS(1307), - [anon_sym_signed] = ACTIONS(1305), - [anon_sym_unsigned] = ACTIONS(1305), - [anon_sym_long] = ACTIONS(1305), - [anon_sym_short] = ACTIONS(1305), - [anon_sym_static] = ACTIONS(1305), - [anon_sym_auto] = ACTIONS(1305), - [anon_sym_register] = ACTIONS(1305), - [anon_sym_inline] = ACTIONS(1305), - [anon_sym___inline] = ACTIONS(1305), - [anon_sym___inline__] = ACTIONS(1305), - [anon_sym___forceinline] = ACTIONS(1305), - [anon_sym_thread_local] = ACTIONS(1305), - [anon_sym___thread] = ACTIONS(1305), - [anon_sym_const] = ACTIONS(1305), - [anon_sym_constexpr] = ACTIONS(1305), - [anon_sym_volatile] = ACTIONS(1305), - [anon_sym_restrict] = ACTIONS(1305), - [anon_sym___restrict__] = ACTIONS(1305), - [anon_sym__Atomic] = ACTIONS(1305), - [anon_sym__Noreturn] = ACTIONS(1305), - [anon_sym_noreturn] = ACTIONS(1305), - [anon_sym_alignas] = ACTIONS(1305), - [anon_sym__Alignas] = ACTIONS(1305), - [sym_primitive_type] = ACTIONS(1305), - [anon_sym_enum] = ACTIONS(1305), - [anon_sym_struct] = ACTIONS(1305), - [anon_sym_union] = ACTIONS(1305), - [anon_sym_if] = ACTIONS(1305), - [anon_sym_switch] = ACTIONS(1305), - [anon_sym_case] = ACTIONS(1305), - [anon_sym_default] = ACTIONS(1305), - [anon_sym_while] = ACTIONS(1305), - [anon_sym_do] = ACTIONS(1305), - [anon_sym_for] = ACTIONS(1305), - [anon_sym_return] = ACTIONS(1305), - [anon_sym_break] = ACTIONS(1305), - [anon_sym_continue] = ACTIONS(1305), - [anon_sym_goto] = ACTIONS(1305), - [anon_sym___try] = ACTIONS(1305), - [anon_sym___leave] = ACTIONS(1305), - [anon_sym_DASH_DASH] = ACTIONS(1307), - [anon_sym_PLUS_PLUS] = ACTIONS(1307), - [anon_sym_sizeof] = ACTIONS(1305), - [anon_sym___alignof__] = ACTIONS(1305), - [anon_sym___alignof] = ACTIONS(1305), - [anon_sym__alignof] = ACTIONS(1305), - [anon_sym_alignof] = ACTIONS(1305), - [anon_sym__Alignof] = ACTIONS(1305), - [anon_sym_offsetof] = ACTIONS(1305), - [anon_sym__Generic] = ACTIONS(1305), - [anon_sym_asm] = ACTIONS(1305), - [anon_sym___asm__] = ACTIONS(1305), - [sym_number_literal] = ACTIONS(1307), - [anon_sym_L_SQUOTE] = ACTIONS(1307), - [anon_sym_u_SQUOTE] = ACTIONS(1307), - [anon_sym_U_SQUOTE] = ACTIONS(1307), - [anon_sym_u8_SQUOTE] = ACTIONS(1307), - [anon_sym_SQUOTE] = ACTIONS(1307), - [anon_sym_L_DQUOTE] = ACTIONS(1307), - [anon_sym_u_DQUOTE] = ACTIONS(1307), - [anon_sym_U_DQUOTE] = ACTIONS(1307), - [anon_sym_u8_DQUOTE] = ACTIONS(1307), - [anon_sym_DQUOTE] = ACTIONS(1307), - [sym_true] = ACTIONS(1305), - [sym_false] = ACTIONS(1305), - [anon_sym_NULL] = ACTIONS(1305), - [anon_sym_nullptr] = ACTIONS(1305), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [300] = { - [sym_identifier] = ACTIONS(1289), - [aux_sym_preproc_include_token1] = ACTIONS(1289), - [aux_sym_preproc_def_token1] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1289), - [aux_sym_preproc_if_token2] = ACTIONS(1289), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1289), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1289), - [sym_preproc_directive] = ACTIONS(1289), - [anon_sym_LPAREN2] = ACTIONS(1291), - [anon_sym_BANG] = ACTIONS(1291), - [anon_sym_TILDE] = ACTIONS(1291), - [anon_sym_DASH] = ACTIONS(1289), - [anon_sym_PLUS] = ACTIONS(1289), - [anon_sym_STAR] = ACTIONS(1291), - [anon_sym_AMP] = ACTIONS(1291), - [anon_sym_SEMI] = ACTIONS(1291), - [anon_sym___extension__] = ACTIONS(1289), - [anon_sym_typedef] = ACTIONS(1289), - [anon_sym_extern] = ACTIONS(1289), - [anon_sym___attribute__] = ACTIONS(1289), - [anon_sym___scanf] = ACTIONS(1289), - [anon_sym___printf] = ACTIONS(1289), - [anon_sym___read_mostly] = ACTIONS(1289), - [anon_sym___must_hold] = ACTIONS(1289), - [anon_sym___ro_after_init] = ACTIONS(1289), - [anon_sym___noreturn] = ACTIONS(1289), - [anon_sym___cold] = ACTIONS(1289), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1291), - [anon_sym___declspec] = ACTIONS(1289), - [anon_sym___init] = ACTIONS(1289), - [anon_sym___exit] = ACTIONS(1289), - [anon_sym___cdecl] = ACTIONS(1289), - [anon_sym___clrcall] = ACTIONS(1289), - [anon_sym___stdcall] = ACTIONS(1289), - [anon_sym___fastcall] = ACTIONS(1289), - [anon_sym___thiscall] = ACTIONS(1289), - [anon_sym___vectorcall] = ACTIONS(1289), - [anon_sym_LBRACE] = ACTIONS(1291), - [anon_sym_signed] = ACTIONS(1289), - [anon_sym_unsigned] = ACTIONS(1289), - [anon_sym_long] = ACTIONS(1289), - [anon_sym_short] = ACTIONS(1289), - [anon_sym_static] = ACTIONS(1289), - [anon_sym_auto] = ACTIONS(1289), - [anon_sym_register] = ACTIONS(1289), - [anon_sym_inline] = ACTIONS(1289), - [anon_sym___inline] = ACTIONS(1289), - [anon_sym___inline__] = ACTIONS(1289), - [anon_sym___forceinline] = ACTIONS(1289), - [anon_sym_thread_local] = ACTIONS(1289), - [anon_sym___thread] = ACTIONS(1289), - [anon_sym_const] = ACTIONS(1289), - [anon_sym_constexpr] = ACTIONS(1289), - [anon_sym_volatile] = ACTIONS(1289), - [anon_sym_restrict] = ACTIONS(1289), - [anon_sym___restrict__] = ACTIONS(1289), - [anon_sym__Atomic] = ACTIONS(1289), - [anon_sym__Noreturn] = ACTIONS(1289), - [anon_sym_noreturn] = ACTIONS(1289), - [anon_sym_alignas] = ACTIONS(1289), - [anon_sym__Alignas] = ACTIONS(1289), - [sym_primitive_type] = ACTIONS(1289), - [anon_sym_enum] = ACTIONS(1289), - [anon_sym_struct] = ACTIONS(1289), - [anon_sym_union] = ACTIONS(1289), - [anon_sym_if] = ACTIONS(1289), - [anon_sym_switch] = ACTIONS(1289), - [anon_sym_case] = ACTIONS(1289), - [anon_sym_default] = ACTIONS(1289), - [anon_sym_while] = ACTIONS(1289), - [anon_sym_do] = ACTIONS(1289), - [anon_sym_for] = ACTIONS(1289), - [anon_sym_return] = ACTIONS(1289), - [anon_sym_break] = ACTIONS(1289), - [anon_sym_continue] = ACTIONS(1289), - [anon_sym_goto] = ACTIONS(1289), - [anon_sym___try] = ACTIONS(1289), - [anon_sym___leave] = ACTIONS(1289), - [anon_sym_DASH_DASH] = ACTIONS(1291), - [anon_sym_PLUS_PLUS] = ACTIONS(1291), - [anon_sym_sizeof] = ACTIONS(1289), - [anon_sym___alignof__] = ACTIONS(1289), - [anon_sym___alignof] = ACTIONS(1289), - [anon_sym__alignof] = ACTIONS(1289), - [anon_sym_alignof] = ACTIONS(1289), - [anon_sym__Alignof] = ACTIONS(1289), - [anon_sym_offsetof] = ACTIONS(1289), - [anon_sym__Generic] = ACTIONS(1289), - [anon_sym_asm] = ACTIONS(1289), - [anon_sym___asm__] = ACTIONS(1289), - [sym_number_literal] = ACTIONS(1291), - [anon_sym_L_SQUOTE] = ACTIONS(1291), - [anon_sym_u_SQUOTE] = ACTIONS(1291), - [anon_sym_U_SQUOTE] = ACTIONS(1291), - [anon_sym_u8_SQUOTE] = ACTIONS(1291), - [anon_sym_SQUOTE] = ACTIONS(1291), - [anon_sym_L_DQUOTE] = ACTIONS(1291), - [anon_sym_u_DQUOTE] = ACTIONS(1291), - [anon_sym_U_DQUOTE] = ACTIONS(1291), - [anon_sym_u8_DQUOTE] = ACTIONS(1291), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_true] = ACTIONS(1289), - [sym_false] = ACTIONS(1289), - [anon_sym_NULL] = ACTIONS(1289), - [anon_sym_nullptr] = ACTIONS(1289), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [301] = { - [sym_identifier] = ACTIONS(1313), - [aux_sym_preproc_include_token1] = ACTIONS(1313), - [aux_sym_preproc_def_token1] = ACTIONS(1313), - [aux_sym_preproc_if_token1] = ACTIONS(1313), - [aux_sym_preproc_if_token2] = ACTIONS(1313), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1313), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1313), - [sym_preproc_directive] = ACTIONS(1313), - [anon_sym_LPAREN2] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1315), - [anon_sym_TILDE] = ACTIONS(1315), - [anon_sym_DASH] = ACTIONS(1313), - [anon_sym_PLUS] = ACTIONS(1313), - [anon_sym_STAR] = ACTIONS(1315), - [anon_sym_AMP] = ACTIONS(1315), - [anon_sym_SEMI] = ACTIONS(1315), - [anon_sym___extension__] = ACTIONS(1313), - [anon_sym_typedef] = ACTIONS(1313), - [anon_sym_extern] = ACTIONS(1313), - [anon_sym___attribute__] = ACTIONS(1313), - [anon_sym___scanf] = ACTIONS(1313), - [anon_sym___printf] = ACTIONS(1313), - [anon_sym___read_mostly] = ACTIONS(1313), - [anon_sym___must_hold] = ACTIONS(1313), - [anon_sym___ro_after_init] = ACTIONS(1313), - [anon_sym___noreturn] = ACTIONS(1313), - [anon_sym___cold] = ACTIONS(1313), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1315), - [anon_sym___declspec] = ACTIONS(1313), - [anon_sym___init] = ACTIONS(1313), - [anon_sym___exit] = ACTIONS(1313), - [anon_sym___cdecl] = ACTIONS(1313), - [anon_sym___clrcall] = ACTIONS(1313), - [anon_sym___stdcall] = ACTIONS(1313), - [anon_sym___fastcall] = ACTIONS(1313), - [anon_sym___thiscall] = ACTIONS(1313), - [anon_sym___vectorcall] = ACTIONS(1313), - [anon_sym_LBRACE] = ACTIONS(1315), - [anon_sym_signed] = ACTIONS(1313), - [anon_sym_unsigned] = ACTIONS(1313), - [anon_sym_long] = ACTIONS(1313), - [anon_sym_short] = ACTIONS(1313), - [anon_sym_static] = ACTIONS(1313), - [anon_sym_auto] = ACTIONS(1313), - [anon_sym_register] = ACTIONS(1313), - [anon_sym_inline] = ACTIONS(1313), - [anon_sym___inline] = ACTIONS(1313), - [anon_sym___inline__] = ACTIONS(1313), - [anon_sym___forceinline] = ACTIONS(1313), - [anon_sym_thread_local] = ACTIONS(1313), - [anon_sym___thread] = ACTIONS(1313), - [anon_sym_const] = ACTIONS(1313), - [anon_sym_constexpr] = ACTIONS(1313), - [anon_sym_volatile] = ACTIONS(1313), - [anon_sym_restrict] = ACTIONS(1313), - [anon_sym___restrict__] = ACTIONS(1313), - [anon_sym__Atomic] = ACTIONS(1313), - [anon_sym__Noreturn] = ACTIONS(1313), - [anon_sym_noreturn] = ACTIONS(1313), - [anon_sym_alignas] = ACTIONS(1313), - [anon_sym__Alignas] = ACTIONS(1313), - [sym_primitive_type] = ACTIONS(1313), - [anon_sym_enum] = ACTIONS(1313), - [anon_sym_struct] = ACTIONS(1313), - [anon_sym_union] = ACTIONS(1313), - [anon_sym_if] = ACTIONS(1313), - [anon_sym_switch] = ACTIONS(1313), - [anon_sym_case] = ACTIONS(1313), - [anon_sym_default] = ACTIONS(1313), - [anon_sym_while] = ACTIONS(1313), - [anon_sym_do] = ACTIONS(1313), - [anon_sym_for] = ACTIONS(1313), - [anon_sym_return] = ACTIONS(1313), - [anon_sym_break] = ACTIONS(1313), - [anon_sym_continue] = ACTIONS(1313), - [anon_sym_goto] = ACTIONS(1313), - [anon_sym___try] = ACTIONS(1313), - [anon_sym___leave] = ACTIONS(1313), - [anon_sym_DASH_DASH] = ACTIONS(1315), - [anon_sym_PLUS_PLUS] = ACTIONS(1315), - [anon_sym_sizeof] = ACTIONS(1313), - [anon_sym___alignof__] = ACTIONS(1313), - [anon_sym___alignof] = ACTIONS(1313), - [anon_sym__alignof] = ACTIONS(1313), - [anon_sym_alignof] = ACTIONS(1313), - [anon_sym__Alignof] = ACTIONS(1313), - [anon_sym_offsetof] = ACTIONS(1313), - [anon_sym__Generic] = ACTIONS(1313), - [anon_sym_asm] = ACTIONS(1313), - [anon_sym___asm__] = ACTIONS(1313), - [sym_number_literal] = ACTIONS(1315), - [anon_sym_L_SQUOTE] = ACTIONS(1315), - [anon_sym_u_SQUOTE] = ACTIONS(1315), - [anon_sym_U_SQUOTE] = ACTIONS(1315), - [anon_sym_u8_SQUOTE] = ACTIONS(1315), - [anon_sym_SQUOTE] = ACTIONS(1315), - [anon_sym_L_DQUOTE] = ACTIONS(1315), - [anon_sym_u_DQUOTE] = ACTIONS(1315), - [anon_sym_U_DQUOTE] = ACTIONS(1315), - [anon_sym_u8_DQUOTE] = ACTIONS(1315), - [anon_sym_DQUOTE] = ACTIONS(1315), - [sym_true] = ACTIONS(1313), - [sym_false] = ACTIONS(1313), - [anon_sym_NULL] = ACTIONS(1313), - [anon_sym_nullptr] = ACTIONS(1313), - [sym_comment] = ACTIONS(3), + [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_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), }, [302] = { - [sym_identifier] = ACTIONS(1365), - [aux_sym_preproc_include_token1] = ACTIONS(1365), - [aux_sym_preproc_def_token1] = ACTIONS(1365), - [aux_sym_preproc_if_token1] = ACTIONS(1365), - [aux_sym_preproc_if_token2] = ACTIONS(1365), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1365), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1365), - [sym_preproc_directive] = ACTIONS(1365), - [anon_sym_LPAREN2] = ACTIONS(1367), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_DASH] = ACTIONS(1365), - [anon_sym_PLUS] = ACTIONS(1365), - [anon_sym_STAR] = ACTIONS(1367), - [anon_sym_AMP] = ACTIONS(1367), - [anon_sym_SEMI] = ACTIONS(1367), - [anon_sym___extension__] = ACTIONS(1365), - [anon_sym_typedef] = ACTIONS(1365), - [anon_sym_extern] = ACTIONS(1365), - [anon_sym___attribute__] = ACTIONS(1365), - [anon_sym___scanf] = ACTIONS(1365), - [anon_sym___printf] = ACTIONS(1365), - [anon_sym___read_mostly] = ACTIONS(1365), - [anon_sym___must_hold] = ACTIONS(1365), - [anon_sym___ro_after_init] = ACTIONS(1365), - [anon_sym___noreturn] = ACTIONS(1365), - [anon_sym___cold] = ACTIONS(1365), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1367), - [anon_sym___declspec] = ACTIONS(1365), - [anon_sym___init] = ACTIONS(1365), - [anon_sym___exit] = ACTIONS(1365), - [anon_sym___cdecl] = ACTIONS(1365), - [anon_sym___clrcall] = ACTIONS(1365), - [anon_sym___stdcall] = ACTIONS(1365), - [anon_sym___fastcall] = ACTIONS(1365), - [anon_sym___thiscall] = ACTIONS(1365), - [anon_sym___vectorcall] = ACTIONS(1365), - [anon_sym_LBRACE] = ACTIONS(1367), - [anon_sym_signed] = ACTIONS(1365), - [anon_sym_unsigned] = ACTIONS(1365), - [anon_sym_long] = ACTIONS(1365), - [anon_sym_short] = ACTIONS(1365), - [anon_sym_static] = ACTIONS(1365), - [anon_sym_auto] = ACTIONS(1365), - [anon_sym_register] = ACTIONS(1365), - [anon_sym_inline] = ACTIONS(1365), - [anon_sym___inline] = ACTIONS(1365), - [anon_sym___inline__] = ACTIONS(1365), - [anon_sym___forceinline] = ACTIONS(1365), - [anon_sym_thread_local] = ACTIONS(1365), - [anon_sym___thread] = ACTIONS(1365), - [anon_sym_const] = ACTIONS(1365), - [anon_sym_constexpr] = ACTIONS(1365), - [anon_sym_volatile] = ACTIONS(1365), - [anon_sym_restrict] = ACTIONS(1365), - [anon_sym___restrict__] = ACTIONS(1365), - [anon_sym__Atomic] = ACTIONS(1365), - [anon_sym__Noreturn] = ACTIONS(1365), - [anon_sym_noreturn] = ACTIONS(1365), - [anon_sym_alignas] = ACTIONS(1365), - [anon_sym__Alignas] = ACTIONS(1365), - [sym_primitive_type] = ACTIONS(1365), - [anon_sym_enum] = ACTIONS(1365), - [anon_sym_struct] = ACTIONS(1365), - [anon_sym_union] = ACTIONS(1365), - [anon_sym_if] = ACTIONS(1365), - [anon_sym_switch] = ACTIONS(1365), - [anon_sym_case] = ACTIONS(1365), - [anon_sym_default] = ACTIONS(1365), - [anon_sym_while] = ACTIONS(1365), - [anon_sym_do] = ACTIONS(1365), - [anon_sym_for] = ACTIONS(1365), - [anon_sym_return] = ACTIONS(1365), - [anon_sym_break] = ACTIONS(1365), - [anon_sym_continue] = ACTIONS(1365), - [anon_sym_goto] = ACTIONS(1365), - [anon_sym___try] = ACTIONS(1365), - [anon_sym___leave] = ACTIONS(1365), - [anon_sym_DASH_DASH] = ACTIONS(1367), - [anon_sym_PLUS_PLUS] = ACTIONS(1367), - [anon_sym_sizeof] = ACTIONS(1365), - [anon_sym___alignof__] = ACTIONS(1365), - [anon_sym___alignof] = ACTIONS(1365), - [anon_sym__alignof] = ACTIONS(1365), - [anon_sym_alignof] = ACTIONS(1365), - [anon_sym__Alignof] = ACTIONS(1365), - [anon_sym_offsetof] = ACTIONS(1365), - [anon_sym__Generic] = ACTIONS(1365), - [anon_sym_asm] = ACTIONS(1365), - [anon_sym___asm__] = ACTIONS(1365), - [sym_number_literal] = ACTIONS(1367), - [anon_sym_L_SQUOTE] = ACTIONS(1367), - [anon_sym_u_SQUOTE] = ACTIONS(1367), - [anon_sym_U_SQUOTE] = ACTIONS(1367), - [anon_sym_u8_SQUOTE] = ACTIONS(1367), - [anon_sym_SQUOTE] = ACTIONS(1367), - [anon_sym_L_DQUOTE] = ACTIONS(1367), - [anon_sym_u_DQUOTE] = ACTIONS(1367), - [anon_sym_U_DQUOTE] = ACTIONS(1367), - [anon_sym_u8_DQUOTE] = ACTIONS(1367), - [anon_sym_DQUOTE] = ACTIONS(1367), - [sym_true] = ACTIONS(1365), - [sym_false] = ACTIONS(1365), - [anon_sym_NULL] = ACTIONS(1365), - [anon_sym_nullptr] = ACTIONS(1365), - [sym_comment] = ACTIONS(3), + [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_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(1369), - [aux_sym_preproc_include_token1] = ACTIONS(1369), - [aux_sym_preproc_def_token1] = ACTIONS(1369), - [aux_sym_preproc_if_token1] = ACTIONS(1369), - [aux_sym_preproc_if_token2] = ACTIONS(1369), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1369), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1369), - [sym_preproc_directive] = ACTIONS(1369), - [anon_sym_LPAREN2] = ACTIONS(1371), - [anon_sym_BANG] = ACTIONS(1371), - [anon_sym_TILDE] = ACTIONS(1371), - [anon_sym_DASH] = ACTIONS(1369), - [anon_sym_PLUS] = ACTIONS(1369), - [anon_sym_STAR] = ACTIONS(1371), - [anon_sym_AMP] = ACTIONS(1371), - [anon_sym_SEMI] = ACTIONS(1371), - [anon_sym___extension__] = ACTIONS(1369), - [anon_sym_typedef] = ACTIONS(1369), - [anon_sym_extern] = ACTIONS(1369), - [anon_sym___attribute__] = ACTIONS(1369), - [anon_sym___scanf] = ACTIONS(1369), - [anon_sym___printf] = ACTIONS(1369), - [anon_sym___read_mostly] = ACTIONS(1369), - [anon_sym___must_hold] = ACTIONS(1369), - [anon_sym___ro_after_init] = ACTIONS(1369), - [anon_sym___noreturn] = ACTIONS(1369), - [anon_sym___cold] = ACTIONS(1369), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1371), - [anon_sym___declspec] = ACTIONS(1369), - [anon_sym___init] = ACTIONS(1369), - [anon_sym___exit] = ACTIONS(1369), - [anon_sym___cdecl] = ACTIONS(1369), - [anon_sym___clrcall] = ACTIONS(1369), - [anon_sym___stdcall] = ACTIONS(1369), - [anon_sym___fastcall] = ACTIONS(1369), - [anon_sym___thiscall] = ACTIONS(1369), - [anon_sym___vectorcall] = ACTIONS(1369), - [anon_sym_LBRACE] = ACTIONS(1371), - [anon_sym_signed] = ACTIONS(1369), - [anon_sym_unsigned] = ACTIONS(1369), - [anon_sym_long] = ACTIONS(1369), - [anon_sym_short] = ACTIONS(1369), - [anon_sym_static] = ACTIONS(1369), - [anon_sym_auto] = ACTIONS(1369), - [anon_sym_register] = ACTIONS(1369), - [anon_sym_inline] = ACTIONS(1369), - [anon_sym___inline] = ACTIONS(1369), - [anon_sym___inline__] = ACTIONS(1369), - [anon_sym___forceinline] = ACTIONS(1369), - [anon_sym_thread_local] = ACTIONS(1369), - [anon_sym___thread] = ACTIONS(1369), - [anon_sym_const] = ACTIONS(1369), - [anon_sym_constexpr] = ACTIONS(1369), - [anon_sym_volatile] = ACTIONS(1369), - [anon_sym_restrict] = ACTIONS(1369), - [anon_sym___restrict__] = ACTIONS(1369), - [anon_sym__Atomic] = ACTIONS(1369), - [anon_sym__Noreturn] = ACTIONS(1369), - [anon_sym_noreturn] = ACTIONS(1369), - [anon_sym_alignas] = ACTIONS(1369), - [anon_sym__Alignas] = ACTIONS(1369), - [sym_primitive_type] = ACTIONS(1369), - [anon_sym_enum] = ACTIONS(1369), - [anon_sym_struct] = ACTIONS(1369), - [anon_sym_union] = ACTIONS(1369), - [anon_sym_if] = ACTIONS(1369), - [anon_sym_switch] = ACTIONS(1369), - [anon_sym_case] = ACTIONS(1369), - [anon_sym_default] = ACTIONS(1369), - [anon_sym_while] = ACTIONS(1369), - [anon_sym_do] = ACTIONS(1369), - [anon_sym_for] = ACTIONS(1369), - [anon_sym_return] = ACTIONS(1369), - [anon_sym_break] = ACTIONS(1369), - [anon_sym_continue] = ACTIONS(1369), - [anon_sym_goto] = ACTIONS(1369), - [anon_sym___try] = ACTIONS(1369), - [anon_sym___leave] = ACTIONS(1369), - [anon_sym_DASH_DASH] = ACTIONS(1371), - [anon_sym_PLUS_PLUS] = ACTIONS(1371), - [anon_sym_sizeof] = ACTIONS(1369), - [anon_sym___alignof__] = ACTIONS(1369), - [anon_sym___alignof] = ACTIONS(1369), - [anon_sym__alignof] = ACTIONS(1369), - [anon_sym_alignof] = ACTIONS(1369), - [anon_sym__Alignof] = ACTIONS(1369), - [anon_sym_offsetof] = ACTIONS(1369), - [anon_sym__Generic] = ACTIONS(1369), - [anon_sym_asm] = ACTIONS(1369), - [anon_sym___asm__] = ACTIONS(1369), - [sym_number_literal] = ACTIONS(1371), - [anon_sym_L_SQUOTE] = ACTIONS(1371), - [anon_sym_u_SQUOTE] = ACTIONS(1371), - [anon_sym_U_SQUOTE] = ACTIONS(1371), - [anon_sym_u8_SQUOTE] = ACTIONS(1371), - [anon_sym_SQUOTE] = ACTIONS(1371), - [anon_sym_L_DQUOTE] = ACTIONS(1371), - [anon_sym_u_DQUOTE] = ACTIONS(1371), - [anon_sym_U_DQUOTE] = ACTIONS(1371), - [anon_sym_u8_DQUOTE] = ACTIONS(1371), - [anon_sym_DQUOTE] = ACTIONS(1371), - [sym_true] = ACTIONS(1369), - [sym_false] = ACTIONS(1369), - [anon_sym_NULL] = ACTIONS(1369), - [anon_sym_nullptr] = ACTIONS(1369), - [sym_comment] = ACTIONS(3), + [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(1361), - [aux_sym_preproc_include_token1] = ACTIONS(1361), - [aux_sym_preproc_def_token1] = ACTIONS(1361), - [aux_sym_preproc_if_token1] = ACTIONS(1361), - [aux_sym_preproc_if_token2] = ACTIONS(1361), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1361), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1361), - [sym_preproc_directive] = ACTIONS(1361), - [anon_sym_LPAREN2] = ACTIONS(1363), - [anon_sym_BANG] = ACTIONS(1363), - [anon_sym_TILDE] = ACTIONS(1363), - [anon_sym_DASH] = ACTIONS(1361), - [anon_sym_PLUS] = ACTIONS(1361), - [anon_sym_STAR] = ACTIONS(1363), - [anon_sym_AMP] = ACTIONS(1363), - [anon_sym_SEMI] = ACTIONS(1363), - [anon_sym___extension__] = ACTIONS(1361), - [anon_sym_typedef] = ACTIONS(1361), - [anon_sym_extern] = ACTIONS(1361), - [anon_sym___attribute__] = ACTIONS(1361), - [anon_sym___scanf] = ACTIONS(1361), - [anon_sym___printf] = ACTIONS(1361), - [anon_sym___read_mostly] = ACTIONS(1361), - [anon_sym___must_hold] = ACTIONS(1361), - [anon_sym___ro_after_init] = ACTIONS(1361), - [anon_sym___noreturn] = ACTIONS(1361), - [anon_sym___cold] = ACTIONS(1361), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1363), - [anon_sym___declspec] = ACTIONS(1361), - [anon_sym___init] = ACTIONS(1361), - [anon_sym___exit] = ACTIONS(1361), - [anon_sym___cdecl] = ACTIONS(1361), - [anon_sym___clrcall] = ACTIONS(1361), - [anon_sym___stdcall] = ACTIONS(1361), - [anon_sym___fastcall] = ACTIONS(1361), - [anon_sym___thiscall] = ACTIONS(1361), - [anon_sym___vectorcall] = ACTIONS(1361), - [anon_sym_LBRACE] = ACTIONS(1363), - [anon_sym_signed] = ACTIONS(1361), - [anon_sym_unsigned] = ACTIONS(1361), - [anon_sym_long] = ACTIONS(1361), - [anon_sym_short] = ACTIONS(1361), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_auto] = ACTIONS(1361), - [anon_sym_register] = ACTIONS(1361), - [anon_sym_inline] = ACTIONS(1361), - [anon_sym___inline] = ACTIONS(1361), - [anon_sym___inline__] = ACTIONS(1361), - [anon_sym___forceinline] = ACTIONS(1361), - [anon_sym_thread_local] = ACTIONS(1361), - [anon_sym___thread] = ACTIONS(1361), - [anon_sym_const] = ACTIONS(1361), - [anon_sym_constexpr] = ACTIONS(1361), - [anon_sym_volatile] = ACTIONS(1361), - [anon_sym_restrict] = ACTIONS(1361), - [anon_sym___restrict__] = ACTIONS(1361), - [anon_sym__Atomic] = ACTIONS(1361), - [anon_sym__Noreturn] = ACTIONS(1361), - [anon_sym_noreturn] = ACTIONS(1361), - [anon_sym_alignas] = ACTIONS(1361), - [anon_sym__Alignas] = ACTIONS(1361), - [sym_primitive_type] = ACTIONS(1361), - [anon_sym_enum] = ACTIONS(1361), - [anon_sym_struct] = ACTIONS(1361), - [anon_sym_union] = ACTIONS(1361), - [anon_sym_if] = ACTIONS(1361), - [anon_sym_switch] = ACTIONS(1361), - [anon_sym_case] = ACTIONS(1361), - [anon_sym_default] = ACTIONS(1361), - [anon_sym_while] = ACTIONS(1361), - [anon_sym_do] = ACTIONS(1361), - [anon_sym_for] = ACTIONS(1361), - [anon_sym_return] = ACTIONS(1361), - [anon_sym_break] = ACTIONS(1361), - [anon_sym_continue] = ACTIONS(1361), - [anon_sym_goto] = ACTIONS(1361), - [anon_sym___try] = ACTIONS(1361), - [anon_sym___leave] = ACTIONS(1361), - [anon_sym_DASH_DASH] = ACTIONS(1363), - [anon_sym_PLUS_PLUS] = ACTIONS(1363), - [anon_sym_sizeof] = ACTIONS(1361), - [anon_sym___alignof__] = ACTIONS(1361), - [anon_sym___alignof] = ACTIONS(1361), - [anon_sym__alignof] = ACTIONS(1361), - [anon_sym_alignof] = ACTIONS(1361), - [anon_sym__Alignof] = ACTIONS(1361), - [anon_sym_offsetof] = ACTIONS(1361), - [anon_sym__Generic] = ACTIONS(1361), - [anon_sym_asm] = ACTIONS(1361), - [anon_sym___asm__] = ACTIONS(1361), - [sym_number_literal] = ACTIONS(1363), - [anon_sym_L_SQUOTE] = ACTIONS(1363), - [anon_sym_u_SQUOTE] = ACTIONS(1363), - [anon_sym_U_SQUOTE] = ACTIONS(1363), - [anon_sym_u8_SQUOTE] = ACTIONS(1363), - [anon_sym_SQUOTE] = ACTIONS(1363), - [anon_sym_L_DQUOTE] = ACTIONS(1363), - [anon_sym_u_DQUOTE] = ACTIONS(1363), - [anon_sym_U_DQUOTE] = ACTIONS(1363), - [anon_sym_u8_DQUOTE] = ACTIONS(1363), - [anon_sym_DQUOTE] = ACTIONS(1363), - [sym_true] = ACTIONS(1361), - [sym_false] = ACTIONS(1361), - [anon_sym_NULL] = ACTIONS(1361), - [anon_sym_nullptr] = ACTIONS(1361), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [305] = { - [sym_identifier] = ACTIONS(1337), - [aux_sym_preproc_include_token1] = ACTIONS(1337), - [aux_sym_preproc_def_token1] = ACTIONS(1337), - [aux_sym_preproc_if_token1] = ACTIONS(1337), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1337), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1337), - [sym_preproc_directive] = ACTIONS(1337), - [anon_sym_LPAREN2] = ACTIONS(1339), - [anon_sym_BANG] = ACTIONS(1339), - [anon_sym_TILDE] = ACTIONS(1339), - [anon_sym_DASH] = ACTIONS(1337), - [anon_sym_PLUS] = ACTIONS(1337), - [anon_sym_STAR] = ACTIONS(1339), - [anon_sym_AMP] = ACTIONS(1339), - [anon_sym_SEMI] = ACTIONS(1339), - [anon_sym___extension__] = ACTIONS(1337), - [anon_sym_typedef] = ACTIONS(1337), - [anon_sym_extern] = ACTIONS(1337), - [anon_sym___attribute__] = ACTIONS(1337), - [anon_sym___scanf] = ACTIONS(1337), - [anon_sym___printf] = ACTIONS(1337), - [anon_sym___read_mostly] = ACTIONS(1337), - [anon_sym___must_hold] = ACTIONS(1337), - [anon_sym___ro_after_init] = ACTIONS(1337), - [anon_sym___noreturn] = ACTIONS(1337), - [anon_sym___cold] = ACTIONS(1337), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1339), - [anon_sym___declspec] = ACTIONS(1337), - [anon_sym___init] = ACTIONS(1337), - [anon_sym___exit] = ACTIONS(1337), - [anon_sym___cdecl] = ACTIONS(1337), - [anon_sym___clrcall] = ACTIONS(1337), - [anon_sym___stdcall] = ACTIONS(1337), - [anon_sym___fastcall] = ACTIONS(1337), - [anon_sym___thiscall] = ACTIONS(1337), - [anon_sym___vectorcall] = ACTIONS(1337), - [anon_sym_LBRACE] = ACTIONS(1339), - [anon_sym_RBRACE] = ACTIONS(1339), - [anon_sym_signed] = ACTIONS(1337), - [anon_sym_unsigned] = ACTIONS(1337), - [anon_sym_long] = ACTIONS(1337), - [anon_sym_short] = ACTIONS(1337), - [anon_sym_static] = ACTIONS(1337), - [anon_sym_auto] = ACTIONS(1337), - [anon_sym_register] = ACTIONS(1337), - [anon_sym_inline] = ACTIONS(1337), - [anon_sym___inline] = ACTIONS(1337), - [anon_sym___inline__] = ACTIONS(1337), - [anon_sym___forceinline] = ACTIONS(1337), - [anon_sym_thread_local] = ACTIONS(1337), - [anon_sym___thread] = ACTIONS(1337), - [anon_sym_const] = ACTIONS(1337), - [anon_sym_constexpr] = ACTIONS(1337), - [anon_sym_volatile] = ACTIONS(1337), - [anon_sym_restrict] = ACTIONS(1337), - [anon_sym___restrict__] = ACTIONS(1337), - [anon_sym__Atomic] = ACTIONS(1337), - [anon_sym__Noreturn] = ACTIONS(1337), - [anon_sym_noreturn] = ACTIONS(1337), - [anon_sym_alignas] = ACTIONS(1337), - [anon_sym__Alignas] = ACTIONS(1337), - [sym_primitive_type] = ACTIONS(1337), - [anon_sym_enum] = ACTIONS(1337), - [anon_sym_struct] = ACTIONS(1337), - [anon_sym_union] = ACTIONS(1337), - [anon_sym_if] = ACTIONS(1337), - [anon_sym_switch] = ACTIONS(1337), - [anon_sym_case] = ACTIONS(1337), - [anon_sym_default] = ACTIONS(1337), - [anon_sym_while] = ACTIONS(1337), - [anon_sym_do] = ACTIONS(1337), - [anon_sym_for] = ACTIONS(1337), - [anon_sym_return] = ACTIONS(1337), - [anon_sym_break] = ACTIONS(1337), - [anon_sym_continue] = ACTIONS(1337), - [anon_sym_goto] = ACTIONS(1337), - [anon_sym___try] = ACTIONS(1337), - [anon_sym___leave] = ACTIONS(1337), - [anon_sym_DASH_DASH] = ACTIONS(1339), - [anon_sym_PLUS_PLUS] = ACTIONS(1339), - [anon_sym_sizeof] = ACTIONS(1337), - [anon_sym___alignof__] = ACTIONS(1337), - [anon_sym___alignof] = ACTIONS(1337), - [anon_sym__alignof] = ACTIONS(1337), - [anon_sym_alignof] = ACTIONS(1337), - [anon_sym__Alignof] = ACTIONS(1337), - [anon_sym_offsetof] = ACTIONS(1337), - [anon_sym__Generic] = ACTIONS(1337), - [anon_sym_asm] = ACTIONS(1337), - [anon_sym___asm__] = ACTIONS(1337), - [sym_number_literal] = ACTIONS(1339), - [anon_sym_L_SQUOTE] = ACTIONS(1339), - [anon_sym_u_SQUOTE] = ACTIONS(1339), - [anon_sym_U_SQUOTE] = ACTIONS(1339), - [anon_sym_u8_SQUOTE] = ACTIONS(1339), - [anon_sym_SQUOTE] = ACTIONS(1339), - [anon_sym_L_DQUOTE] = ACTIONS(1339), - [anon_sym_u_DQUOTE] = ACTIONS(1339), - [anon_sym_U_DQUOTE] = ACTIONS(1339), - [anon_sym_u8_DQUOTE] = ACTIONS(1339), - [anon_sym_DQUOTE] = ACTIONS(1339), - [sym_true] = ACTIONS(1337), - [sym_false] = ACTIONS(1337), - [anon_sym_NULL] = ACTIONS(1337), - [anon_sym_nullptr] = ACTIONS(1337), - [sym_comment] = ACTIONS(3), + [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_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(1401), - [aux_sym_preproc_include_token1] = ACTIONS(1401), - [aux_sym_preproc_def_token1] = ACTIONS(1401), - [aux_sym_preproc_if_token1] = ACTIONS(1401), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1401), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1401), - [sym_preproc_directive] = ACTIONS(1401), - [anon_sym_LPAREN2] = ACTIONS(1404), - [anon_sym_BANG] = ACTIONS(1404), - [anon_sym_TILDE] = ACTIONS(1404), - [anon_sym_DASH] = ACTIONS(1401), - [anon_sym_PLUS] = ACTIONS(1401), - [anon_sym_STAR] = ACTIONS(1404), - [anon_sym_AMP] = ACTIONS(1404), - [anon_sym_SEMI] = ACTIONS(1404), - [anon_sym___extension__] = ACTIONS(1401), - [anon_sym_typedef] = ACTIONS(1401), - [anon_sym_extern] = ACTIONS(1401), - [anon_sym___attribute__] = ACTIONS(1401), - [anon_sym___scanf] = ACTIONS(1401), - [anon_sym___printf] = ACTIONS(1401), - [anon_sym___read_mostly] = ACTIONS(1401), - [anon_sym___must_hold] = ACTIONS(1401), - [anon_sym___ro_after_init] = ACTIONS(1401), - [anon_sym___noreturn] = ACTIONS(1401), - [anon_sym___cold] = ACTIONS(1401), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1404), - [anon_sym___declspec] = ACTIONS(1401), - [anon_sym___init] = ACTIONS(1401), - [anon_sym___exit] = ACTIONS(1401), - [anon_sym___cdecl] = ACTIONS(1401), - [anon_sym___clrcall] = ACTIONS(1401), - [anon_sym___stdcall] = ACTIONS(1401), - [anon_sym___fastcall] = ACTIONS(1401), - [anon_sym___thiscall] = ACTIONS(1401), - [anon_sym___vectorcall] = ACTIONS(1401), - [anon_sym_LBRACE] = ACTIONS(1404), - [anon_sym_RBRACE] = ACTIONS(1404), - [anon_sym_signed] = ACTIONS(1401), - [anon_sym_unsigned] = ACTIONS(1401), - [anon_sym_long] = ACTIONS(1401), - [anon_sym_short] = ACTIONS(1401), - [anon_sym_static] = ACTIONS(1401), - [anon_sym_auto] = ACTIONS(1401), - [anon_sym_register] = ACTIONS(1401), - [anon_sym_inline] = ACTIONS(1401), - [anon_sym___inline] = ACTIONS(1401), - [anon_sym___inline__] = ACTIONS(1401), - [anon_sym___forceinline] = ACTIONS(1401), - [anon_sym_thread_local] = ACTIONS(1401), - [anon_sym___thread] = ACTIONS(1401), - [anon_sym_const] = ACTIONS(1401), - [anon_sym_constexpr] = ACTIONS(1401), - [anon_sym_volatile] = ACTIONS(1401), - [anon_sym_restrict] = ACTIONS(1401), - [anon_sym___restrict__] = ACTIONS(1401), - [anon_sym__Atomic] = ACTIONS(1401), - [anon_sym__Noreturn] = ACTIONS(1401), - [anon_sym_noreturn] = ACTIONS(1401), - [anon_sym_alignas] = ACTIONS(1401), - [anon_sym__Alignas] = ACTIONS(1401), - [sym_primitive_type] = ACTIONS(1401), - [anon_sym_enum] = ACTIONS(1401), - [anon_sym_struct] = ACTIONS(1401), - [anon_sym_union] = ACTIONS(1401), - [anon_sym_if] = ACTIONS(1401), - [anon_sym_switch] = ACTIONS(1401), - [anon_sym_case] = ACTIONS(1401), - [anon_sym_default] = ACTIONS(1401), - [anon_sym_while] = ACTIONS(1401), - [anon_sym_do] = ACTIONS(1401), - [anon_sym_for] = ACTIONS(1401), - [anon_sym_return] = ACTIONS(1401), - [anon_sym_break] = ACTIONS(1401), - [anon_sym_continue] = ACTIONS(1401), - [anon_sym_goto] = ACTIONS(1401), - [anon_sym___try] = ACTIONS(1401), - [anon_sym___leave] = ACTIONS(1401), - [anon_sym_DASH_DASH] = ACTIONS(1404), - [anon_sym_PLUS_PLUS] = ACTIONS(1404), - [anon_sym_sizeof] = ACTIONS(1401), - [anon_sym___alignof__] = ACTIONS(1401), - [anon_sym___alignof] = ACTIONS(1401), - [anon_sym__alignof] = ACTIONS(1401), - [anon_sym_alignof] = ACTIONS(1401), - [anon_sym__Alignof] = ACTIONS(1401), - [anon_sym_offsetof] = ACTIONS(1401), - [anon_sym__Generic] = ACTIONS(1401), - [anon_sym_asm] = ACTIONS(1401), - [anon_sym___asm__] = ACTIONS(1401), - [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(1401), - [sym_false] = ACTIONS(1401), - [anon_sym_NULL] = ACTIONS(1401), - [anon_sym_nullptr] = ACTIONS(1401), - [sym_comment] = ACTIONS(3), + [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(1289), - [aux_sym_preproc_include_token1] = ACTIONS(1289), - [aux_sym_preproc_def_token1] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1289), - [aux_sym_preproc_if_token2] = ACTIONS(1289), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1289), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1289), - [sym_preproc_directive] = ACTIONS(1289), - [anon_sym_LPAREN2] = ACTIONS(1291), - [anon_sym_BANG] = ACTIONS(1291), - [anon_sym_TILDE] = ACTIONS(1291), - [anon_sym_DASH] = ACTIONS(1289), - [anon_sym_PLUS] = ACTIONS(1289), - [anon_sym_STAR] = ACTIONS(1291), - [anon_sym_AMP] = ACTIONS(1291), - [anon_sym_SEMI] = ACTIONS(1291), - [anon_sym___extension__] = ACTIONS(1289), - [anon_sym_typedef] = ACTIONS(1289), - [anon_sym_extern] = ACTIONS(1289), - [anon_sym___attribute__] = ACTIONS(1289), - [anon_sym___scanf] = ACTIONS(1289), - [anon_sym___printf] = ACTIONS(1289), - [anon_sym___read_mostly] = ACTIONS(1289), - [anon_sym___must_hold] = ACTIONS(1289), - [anon_sym___ro_after_init] = ACTIONS(1289), - [anon_sym___noreturn] = ACTIONS(1289), - [anon_sym___cold] = ACTIONS(1289), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1291), - [anon_sym___declspec] = ACTIONS(1289), - [anon_sym___init] = ACTIONS(1289), - [anon_sym___exit] = ACTIONS(1289), - [anon_sym___cdecl] = ACTIONS(1289), - [anon_sym___clrcall] = ACTIONS(1289), - [anon_sym___stdcall] = ACTIONS(1289), - [anon_sym___fastcall] = ACTIONS(1289), - [anon_sym___thiscall] = ACTIONS(1289), - [anon_sym___vectorcall] = ACTIONS(1289), - [anon_sym_LBRACE] = ACTIONS(1291), - [anon_sym_signed] = ACTIONS(1289), - [anon_sym_unsigned] = ACTIONS(1289), - [anon_sym_long] = ACTIONS(1289), - [anon_sym_short] = ACTIONS(1289), - [anon_sym_static] = ACTIONS(1289), - [anon_sym_auto] = ACTIONS(1289), - [anon_sym_register] = ACTIONS(1289), - [anon_sym_inline] = ACTIONS(1289), - [anon_sym___inline] = ACTIONS(1289), - [anon_sym___inline__] = ACTIONS(1289), - [anon_sym___forceinline] = ACTIONS(1289), - [anon_sym_thread_local] = ACTIONS(1289), - [anon_sym___thread] = ACTIONS(1289), - [anon_sym_const] = ACTIONS(1289), - [anon_sym_constexpr] = ACTIONS(1289), - [anon_sym_volatile] = ACTIONS(1289), - [anon_sym_restrict] = ACTIONS(1289), - [anon_sym___restrict__] = ACTIONS(1289), - [anon_sym__Atomic] = ACTIONS(1289), - [anon_sym__Noreturn] = ACTIONS(1289), - [anon_sym_noreturn] = ACTIONS(1289), - [anon_sym_alignas] = ACTIONS(1289), - [anon_sym__Alignas] = ACTIONS(1289), - [sym_primitive_type] = ACTIONS(1289), - [anon_sym_enum] = ACTIONS(1289), - [anon_sym_struct] = ACTIONS(1289), - [anon_sym_union] = ACTIONS(1289), - [anon_sym_if] = ACTIONS(1289), - [anon_sym_switch] = ACTIONS(1289), - [anon_sym_case] = ACTIONS(1289), - [anon_sym_default] = ACTIONS(1289), - [anon_sym_while] = ACTIONS(1289), - [anon_sym_do] = ACTIONS(1289), - [anon_sym_for] = ACTIONS(1289), - [anon_sym_return] = ACTIONS(1289), - [anon_sym_break] = ACTIONS(1289), - [anon_sym_continue] = ACTIONS(1289), - [anon_sym_goto] = ACTIONS(1289), - [anon_sym___try] = ACTIONS(1289), - [anon_sym___leave] = ACTIONS(1289), - [anon_sym_DASH_DASH] = ACTIONS(1291), - [anon_sym_PLUS_PLUS] = ACTIONS(1291), - [anon_sym_sizeof] = ACTIONS(1289), - [anon_sym___alignof__] = ACTIONS(1289), - [anon_sym___alignof] = ACTIONS(1289), - [anon_sym__alignof] = ACTIONS(1289), - [anon_sym_alignof] = ACTIONS(1289), - [anon_sym__Alignof] = ACTIONS(1289), - [anon_sym_offsetof] = ACTIONS(1289), - [anon_sym__Generic] = ACTIONS(1289), - [anon_sym_asm] = ACTIONS(1289), - [anon_sym___asm__] = ACTIONS(1289), - [sym_number_literal] = ACTIONS(1291), - [anon_sym_L_SQUOTE] = ACTIONS(1291), - [anon_sym_u_SQUOTE] = ACTIONS(1291), - [anon_sym_U_SQUOTE] = ACTIONS(1291), - [anon_sym_u8_SQUOTE] = ACTIONS(1291), - [anon_sym_SQUOTE] = ACTIONS(1291), - [anon_sym_L_DQUOTE] = ACTIONS(1291), - [anon_sym_u_DQUOTE] = ACTIONS(1291), - [anon_sym_U_DQUOTE] = ACTIONS(1291), - [anon_sym_u8_DQUOTE] = ACTIONS(1291), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_true] = ACTIONS(1289), - [sym_false] = ACTIONS(1289), - [anon_sym_NULL] = ACTIONS(1289), - [anon_sym_nullptr] = ACTIONS(1289), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [308] = { - [sym_identifier] = ACTIONS(1333), - [aux_sym_preproc_include_token1] = ACTIONS(1333), - [aux_sym_preproc_def_token1] = ACTIONS(1333), - [aux_sym_preproc_if_token1] = ACTIONS(1333), - [aux_sym_preproc_if_token2] = ACTIONS(1333), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1333), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1333), - [sym_preproc_directive] = ACTIONS(1333), - [anon_sym_LPAREN2] = ACTIONS(1335), - [anon_sym_BANG] = ACTIONS(1335), - [anon_sym_TILDE] = ACTIONS(1335), - [anon_sym_DASH] = ACTIONS(1333), - [anon_sym_PLUS] = ACTIONS(1333), - [anon_sym_STAR] = ACTIONS(1335), - [anon_sym_AMP] = ACTIONS(1335), - [anon_sym_SEMI] = ACTIONS(1335), - [anon_sym___extension__] = ACTIONS(1333), - [anon_sym_typedef] = ACTIONS(1333), - [anon_sym_extern] = ACTIONS(1333), - [anon_sym___attribute__] = ACTIONS(1333), - [anon_sym___scanf] = ACTIONS(1333), - [anon_sym___printf] = ACTIONS(1333), - [anon_sym___read_mostly] = ACTIONS(1333), - [anon_sym___must_hold] = ACTIONS(1333), - [anon_sym___ro_after_init] = ACTIONS(1333), - [anon_sym___noreturn] = ACTIONS(1333), - [anon_sym___cold] = ACTIONS(1333), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1335), - [anon_sym___declspec] = ACTIONS(1333), - [anon_sym___init] = ACTIONS(1333), - [anon_sym___exit] = ACTIONS(1333), - [anon_sym___cdecl] = ACTIONS(1333), - [anon_sym___clrcall] = ACTIONS(1333), - [anon_sym___stdcall] = ACTIONS(1333), - [anon_sym___fastcall] = ACTIONS(1333), - [anon_sym___thiscall] = ACTIONS(1333), - [anon_sym___vectorcall] = ACTIONS(1333), - [anon_sym_LBRACE] = ACTIONS(1335), - [anon_sym_signed] = ACTIONS(1333), - [anon_sym_unsigned] = ACTIONS(1333), - [anon_sym_long] = ACTIONS(1333), - [anon_sym_short] = ACTIONS(1333), - [anon_sym_static] = ACTIONS(1333), - [anon_sym_auto] = ACTIONS(1333), - [anon_sym_register] = ACTIONS(1333), - [anon_sym_inline] = ACTIONS(1333), - [anon_sym___inline] = ACTIONS(1333), - [anon_sym___inline__] = ACTIONS(1333), - [anon_sym___forceinline] = ACTIONS(1333), - [anon_sym_thread_local] = ACTIONS(1333), - [anon_sym___thread] = ACTIONS(1333), - [anon_sym_const] = ACTIONS(1333), - [anon_sym_constexpr] = ACTIONS(1333), - [anon_sym_volatile] = ACTIONS(1333), - [anon_sym_restrict] = ACTIONS(1333), - [anon_sym___restrict__] = ACTIONS(1333), - [anon_sym__Atomic] = ACTIONS(1333), - [anon_sym__Noreturn] = ACTIONS(1333), - [anon_sym_noreturn] = ACTIONS(1333), - [anon_sym_alignas] = ACTIONS(1333), - [anon_sym__Alignas] = ACTIONS(1333), - [sym_primitive_type] = ACTIONS(1333), - [anon_sym_enum] = ACTIONS(1333), - [anon_sym_struct] = ACTIONS(1333), - [anon_sym_union] = ACTIONS(1333), - [anon_sym_if] = ACTIONS(1333), - [anon_sym_switch] = ACTIONS(1333), - [anon_sym_case] = ACTIONS(1333), - [anon_sym_default] = ACTIONS(1333), - [anon_sym_while] = ACTIONS(1333), - [anon_sym_do] = ACTIONS(1333), - [anon_sym_for] = ACTIONS(1333), - [anon_sym_return] = ACTIONS(1333), - [anon_sym_break] = ACTIONS(1333), - [anon_sym_continue] = ACTIONS(1333), - [anon_sym_goto] = ACTIONS(1333), - [anon_sym___try] = ACTIONS(1333), - [anon_sym___leave] = ACTIONS(1333), - [anon_sym_DASH_DASH] = ACTIONS(1335), - [anon_sym_PLUS_PLUS] = ACTIONS(1335), - [anon_sym_sizeof] = ACTIONS(1333), - [anon_sym___alignof__] = ACTIONS(1333), - [anon_sym___alignof] = ACTIONS(1333), - [anon_sym__alignof] = ACTIONS(1333), - [anon_sym_alignof] = ACTIONS(1333), - [anon_sym__Alignof] = ACTIONS(1333), - [anon_sym_offsetof] = ACTIONS(1333), - [anon_sym__Generic] = ACTIONS(1333), - [anon_sym_asm] = ACTIONS(1333), - [anon_sym___asm__] = ACTIONS(1333), - [sym_number_literal] = ACTIONS(1335), - [anon_sym_L_SQUOTE] = ACTIONS(1335), - [anon_sym_u_SQUOTE] = ACTIONS(1335), - [anon_sym_U_SQUOTE] = ACTIONS(1335), - [anon_sym_u8_SQUOTE] = ACTIONS(1335), - [anon_sym_SQUOTE] = ACTIONS(1335), - [anon_sym_L_DQUOTE] = ACTIONS(1335), - [anon_sym_u_DQUOTE] = ACTIONS(1335), - [anon_sym_U_DQUOTE] = ACTIONS(1335), - [anon_sym_u8_DQUOTE] = ACTIONS(1335), - [anon_sym_DQUOTE] = ACTIONS(1335), - [sym_true] = ACTIONS(1333), - [sym_false] = ACTIONS(1333), - [anon_sym_NULL] = ACTIONS(1333), - [anon_sym_nullptr] = ACTIONS(1333), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [309] = { - [sym_identifier] = ACTIONS(1357), - [aux_sym_preproc_include_token1] = ACTIONS(1357), - [aux_sym_preproc_def_token1] = ACTIONS(1357), - [aux_sym_preproc_if_token1] = ACTIONS(1357), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1357), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1357), - [sym_preproc_directive] = ACTIONS(1357), - [anon_sym_LPAREN2] = ACTIONS(1359), - [anon_sym_BANG] = ACTIONS(1359), - [anon_sym_TILDE] = ACTIONS(1359), - [anon_sym_DASH] = ACTIONS(1357), - [anon_sym_PLUS] = ACTIONS(1357), - [anon_sym_STAR] = ACTIONS(1359), - [anon_sym_AMP] = ACTIONS(1359), - [anon_sym_SEMI] = ACTIONS(1359), - [anon_sym___extension__] = ACTIONS(1357), - [anon_sym_typedef] = ACTIONS(1357), - [anon_sym_extern] = ACTIONS(1357), - [anon_sym___attribute__] = ACTIONS(1357), - [anon_sym___scanf] = ACTIONS(1357), - [anon_sym___printf] = ACTIONS(1357), - [anon_sym___read_mostly] = ACTIONS(1357), - [anon_sym___must_hold] = ACTIONS(1357), - [anon_sym___ro_after_init] = ACTIONS(1357), - [anon_sym___noreturn] = ACTIONS(1357), - [anon_sym___cold] = ACTIONS(1357), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1359), - [anon_sym___declspec] = ACTIONS(1357), - [anon_sym___init] = ACTIONS(1357), - [anon_sym___exit] = ACTIONS(1357), - [anon_sym___cdecl] = ACTIONS(1357), - [anon_sym___clrcall] = ACTIONS(1357), - [anon_sym___stdcall] = ACTIONS(1357), - [anon_sym___fastcall] = ACTIONS(1357), - [anon_sym___thiscall] = ACTIONS(1357), - [anon_sym___vectorcall] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(1359), - [anon_sym_RBRACE] = ACTIONS(1359), - [anon_sym_signed] = ACTIONS(1357), - [anon_sym_unsigned] = ACTIONS(1357), - [anon_sym_long] = ACTIONS(1357), - [anon_sym_short] = ACTIONS(1357), - [anon_sym_static] = ACTIONS(1357), - [anon_sym_auto] = ACTIONS(1357), - [anon_sym_register] = ACTIONS(1357), - [anon_sym_inline] = ACTIONS(1357), - [anon_sym___inline] = ACTIONS(1357), - [anon_sym___inline__] = ACTIONS(1357), - [anon_sym___forceinline] = ACTIONS(1357), - [anon_sym_thread_local] = ACTIONS(1357), - [anon_sym___thread] = ACTIONS(1357), - [anon_sym_const] = ACTIONS(1357), - [anon_sym_constexpr] = ACTIONS(1357), - [anon_sym_volatile] = ACTIONS(1357), - [anon_sym_restrict] = ACTIONS(1357), - [anon_sym___restrict__] = ACTIONS(1357), - [anon_sym__Atomic] = ACTIONS(1357), - [anon_sym__Noreturn] = ACTIONS(1357), - [anon_sym_noreturn] = ACTIONS(1357), - [anon_sym_alignas] = ACTIONS(1357), - [anon_sym__Alignas] = ACTIONS(1357), - [sym_primitive_type] = ACTIONS(1357), - [anon_sym_enum] = ACTIONS(1357), - [anon_sym_struct] = ACTIONS(1357), - [anon_sym_union] = ACTIONS(1357), - [anon_sym_if] = ACTIONS(1357), - [anon_sym_switch] = ACTIONS(1357), - [anon_sym_case] = ACTIONS(1357), - [anon_sym_default] = ACTIONS(1357), - [anon_sym_while] = ACTIONS(1357), - [anon_sym_do] = ACTIONS(1357), - [anon_sym_for] = ACTIONS(1357), - [anon_sym_return] = ACTIONS(1357), - [anon_sym_break] = ACTIONS(1357), - [anon_sym_continue] = ACTIONS(1357), - [anon_sym_goto] = ACTIONS(1357), - [anon_sym___try] = ACTIONS(1357), - [anon_sym___leave] = ACTIONS(1357), - [anon_sym_DASH_DASH] = ACTIONS(1359), - [anon_sym_PLUS_PLUS] = ACTIONS(1359), - [anon_sym_sizeof] = ACTIONS(1357), - [anon_sym___alignof__] = ACTIONS(1357), - [anon_sym___alignof] = ACTIONS(1357), - [anon_sym__alignof] = ACTIONS(1357), - [anon_sym_alignof] = ACTIONS(1357), - [anon_sym__Alignof] = ACTIONS(1357), - [anon_sym_offsetof] = ACTIONS(1357), - [anon_sym__Generic] = ACTIONS(1357), - [anon_sym_asm] = ACTIONS(1357), - [anon_sym___asm__] = ACTIONS(1357), - [sym_number_literal] = ACTIONS(1359), - [anon_sym_L_SQUOTE] = ACTIONS(1359), - [anon_sym_u_SQUOTE] = ACTIONS(1359), - [anon_sym_U_SQUOTE] = ACTIONS(1359), - [anon_sym_u8_SQUOTE] = ACTIONS(1359), - [anon_sym_SQUOTE] = ACTIONS(1359), - [anon_sym_L_DQUOTE] = ACTIONS(1359), - [anon_sym_u_DQUOTE] = ACTIONS(1359), - [anon_sym_U_DQUOTE] = ACTIONS(1359), - [anon_sym_u8_DQUOTE] = ACTIONS(1359), - [anon_sym_DQUOTE] = ACTIONS(1359), - [sym_true] = ACTIONS(1357), - [sym_false] = ACTIONS(1357), - [anon_sym_NULL] = ACTIONS(1357), - [anon_sym_nullptr] = ACTIONS(1357), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [310] = { - [sym_identifier] = ACTIONS(1401), - [aux_sym_preproc_include_token1] = ACTIONS(1401), - [aux_sym_preproc_def_token1] = ACTIONS(1401), - [aux_sym_preproc_if_token1] = ACTIONS(1401), - [aux_sym_preproc_if_token2] = ACTIONS(1401), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1401), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1401), - [sym_preproc_directive] = ACTIONS(1401), - [anon_sym_LPAREN2] = ACTIONS(1404), - [anon_sym_BANG] = ACTIONS(1404), - [anon_sym_TILDE] = ACTIONS(1404), - [anon_sym_DASH] = ACTIONS(1401), - [anon_sym_PLUS] = ACTIONS(1401), - [anon_sym_STAR] = ACTIONS(1404), - [anon_sym_AMP] = ACTIONS(1404), - [anon_sym_SEMI] = ACTIONS(1404), - [anon_sym___extension__] = ACTIONS(1401), - [anon_sym_typedef] = ACTIONS(1401), - [anon_sym_extern] = ACTIONS(1401), - [anon_sym___attribute__] = ACTIONS(1401), - [anon_sym___scanf] = ACTIONS(1401), - [anon_sym___printf] = ACTIONS(1401), - [anon_sym___read_mostly] = ACTIONS(1401), - [anon_sym___must_hold] = ACTIONS(1401), - [anon_sym___ro_after_init] = ACTIONS(1401), - [anon_sym___noreturn] = ACTIONS(1401), - [anon_sym___cold] = ACTIONS(1401), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1404), - [anon_sym___declspec] = ACTIONS(1401), - [anon_sym___init] = ACTIONS(1401), - [anon_sym___exit] = ACTIONS(1401), - [anon_sym___cdecl] = ACTIONS(1401), - [anon_sym___clrcall] = ACTIONS(1401), - [anon_sym___stdcall] = ACTIONS(1401), - [anon_sym___fastcall] = ACTIONS(1401), - [anon_sym___thiscall] = ACTIONS(1401), - [anon_sym___vectorcall] = ACTIONS(1401), - [anon_sym_LBRACE] = ACTIONS(1404), - [anon_sym_signed] = ACTIONS(1401), - [anon_sym_unsigned] = ACTIONS(1401), - [anon_sym_long] = ACTIONS(1401), - [anon_sym_short] = ACTIONS(1401), - [anon_sym_static] = ACTIONS(1401), - [anon_sym_auto] = ACTIONS(1401), - [anon_sym_register] = ACTIONS(1401), - [anon_sym_inline] = ACTIONS(1401), - [anon_sym___inline] = ACTIONS(1401), - [anon_sym___inline__] = ACTIONS(1401), - [anon_sym___forceinline] = ACTIONS(1401), - [anon_sym_thread_local] = ACTIONS(1401), - [anon_sym___thread] = ACTIONS(1401), - [anon_sym_const] = ACTIONS(1401), - [anon_sym_constexpr] = ACTIONS(1401), - [anon_sym_volatile] = ACTIONS(1401), - [anon_sym_restrict] = ACTIONS(1401), - [anon_sym___restrict__] = ACTIONS(1401), - [anon_sym__Atomic] = ACTIONS(1401), - [anon_sym__Noreturn] = ACTIONS(1401), - [anon_sym_noreturn] = ACTIONS(1401), - [anon_sym_alignas] = ACTIONS(1401), - [anon_sym__Alignas] = ACTIONS(1401), - [sym_primitive_type] = ACTIONS(1401), - [anon_sym_enum] = ACTIONS(1401), - [anon_sym_struct] = ACTIONS(1401), - [anon_sym_union] = ACTIONS(1401), - [anon_sym_if] = ACTIONS(1401), - [anon_sym_switch] = ACTIONS(1401), - [anon_sym_case] = ACTIONS(1401), - [anon_sym_default] = ACTIONS(1401), - [anon_sym_while] = ACTIONS(1401), - [anon_sym_do] = ACTIONS(1401), - [anon_sym_for] = ACTIONS(1401), - [anon_sym_return] = ACTIONS(1401), - [anon_sym_break] = ACTIONS(1401), - [anon_sym_continue] = ACTIONS(1401), - [anon_sym_goto] = ACTIONS(1401), - [anon_sym___try] = ACTIONS(1401), - [anon_sym___leave] = ACTIONS(1401), - [anon_sym_DASH_DASH] = ACTIONS(1404), - [anon_sym_PLUS_PLUS] = ACTIONS(1404), - [anon_sym_sizeof] = ACTIONS(1401), - [anon_sym___alignof__] = ACTIONS(1401), - [anon_sym___alignof] = ACTIONS(1401), - [anon_sym__alignof] = ACTIONS(1401), - [anon_sym_alignof] = ACTIONS(1401), - [anon_sym__Alignof] = ACTIONS(1401), - [anon_sym_offsetof] = ACTIONS(1401), - [anon_sym__Generic] = ACTIONS(1401), - [anon_sym_asm] = ACTIONS(1401), - [anon_sym___asm__] = ACTIONS(1401), - [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(1401), - [sym_false] = ACTIONS(1401), - [anon_sym_NULL] = ACTIONS(1401), - [anon_sym_nullptr] = ACTIONS(1401), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [311] = { - [sym_identifier] = ACTIONS(1415), - [aux_sym_preproc_include_token1] = ACTIONS(1415), - [aux_sym_preproc_def_token1] = ACTIONS(1415), - [aux_sym_preproc_if_token1] = ACTIONS(1415), - [aux_sym_preproc_if_token2] = ACTIONS(1415), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1415), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1415), - [sym_preproc_directive] = ACTIONS(1415), - [anon_sym_LPAREN2] = ACTIONS(1417), - [anon_sym_BANG] = ACTIONS(1417), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1415), - [anon_sym_PLUS] = ACTIONS(1415), - [anon_sym_STAR] = ACTIONS(1417), - [anon_sym_AMP] = ACTIONS(1417), - [anon_sym_SEMI] = ACTIONS(1417), - [anon_sym___extension__] = ACTIONS(1415), - [anon_sym_typedef] = ACTIONS(1415), - [anon_sym_extern] = ACTIONS(1415), - [anon_sym___attribute__] = ACTIONS(1415), - [anon_sym___scanf] = ACTIONS(1415), - [anon_sym___printf] = ACTIONS(1415), - [anon_sym___read_mostly] = ACTIONS(1415), - [anon_sym___must_hold] = ACTIONS(1415), - [anon_sym___ro_after_init] = ACTIONS(1415), - [anon_sym___noreturn] = ACTIONS(1415), - [anon_sym___cold] = ACTIONS(1415), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1417), - [anon_sym___declspec] = ACTIONS(1415), - [anon_sym___init] = ACTIONS(1415), - [anon_sym___exit] = ACTIONS(1415), - [anon_sym___cdecl] = ACTIONS(1415), - [anon_sym___clrcall] = ACTIONS(1415), - [anon_sym___stdcall] = ACTIONS(1415), - [anon_sym___fastcall] = ACTIONS(1415), - [anon_sym___thiscall] = ACTIONS(1415), - [anon_sym___vectorcall] = ACTIONS(1415), - [anon_sym_LBRACE] = ACTIONS(1417), - [anon_sym_signed] = ACTIONS(1415), - [anon_sym_unsigned] = ACTIONS(1415), - [anon_sym_long] = ACTIONS(1415), - [anon_sym_short] = ACTIONS(1415), - [anon_sym_static] = ACTIONS(1415), - [anon_sym_auto] = ACTIONS(1415), - [anon_sym_register] = ACTIONS(1415), - [anon_sym_inline] = ACTIONS(1415), - [anon_sym___inline] = ACTIONS(1415), - [anon_sym___inline__] = ACTIONS(1415), - [anon_sym___forceinline] = ACTIONS(1415), - [anon_sym_thread_local] = ACTIONS(1415), - [anon_sym___thread] = ACTIONS(1415), - [anon_sym_const] = ACTIONS(1415), - [anon_sym_constexpr] = ACTIONS(1415), - [anon_sym_volatile] = ACTIONS(1415), - [anon_sym_restrict] = ACTIONS(1415), - [anon_sym___restrict__] = ACTIONS(1415), - [anon_sym__Atomic] = ACTIONS(1415), - [anon_sym__Noreturn] = ACTIONS(1415), - [anon_sym_noreturn] = ACTIONS(1415), - [anon_sym_alignas] = ACTIONS(1415), - [anon_sym__Alignas] = ACTIONS(1415), - [sym_primitive_type] = ACTIONS(1415), - [anon_sym_enum] = ACTIONS(1415), - [anon_sym_struct] = ACTIONS(1415), - [anon_sym_union] = ACTIONS(1415), - [anon_sym_if] = ACTIONS(1415), - [anon_sym_switch] = ACTIONS(1415), - [anon_sym_case] = ACTIONS(1415), - [anon_sym_default] = ACTIONS(1415), - [anon_sym_while] = ACTIONS(1415), - [anon_sym_do] = ACTIONS(1415), - [anon_sym_for] = ACTIONS(1415), - [anon_sym_return] = ACTIONS(1415), - [anon_sym_break] = ACTIONS(1415), - [anon_sym_continue] = ACTIONS(1415), - [anon_sym_goto] = ACTIONS(1415), - [anon_sym___try] = ACTIONS(1415), - [anon_sym___leave] = ACTIONS(1415), - [anon_sym_DASH_DASH] = ACTIONS(1417), - [anon_sym_PLUS_PLUS] = ACTIONS(1417), - [anon_sym_sizeof] = ACTIONS(1415), - [anon_sym___alignof__] = ACTIONS(1415), - [anon_sym___alignof] = ACTIONS(1415), - [anon_sym__alignof] = ACTIONS(1415), - [anon_sym_alignof] = ACTIONS(1415), - [anon_sym__Alignof] = ACTIONS(1415), - [anon_sym_offsetof] = ACTIONS(1415), - [anon_sym__Generic] = ACTIONS(1415), - [anon_sym_asm] = ACTIONS(1415), - [anon_sym___asm__] = ACTIONS(1415), - [sym_number_literal] = ACTIONS(1417), - [anon_sym_L_SQUOTE] = ACTIONS(1417), - [anon_sym_u_SQUOTE] = ACTIONS(1417), - [anon_sym_U_SQUOTE] = ACTIONS(1417), - [anon_sym_u8_SQUOTE] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1417), - [anon_sym_L_DQUOTE] = ACTIONS(1417), - [anon_sym_u_DQUOTE] = ACTIONS(1417), - [anon_sym_U_DQUOTE] = ACTIONS(1417), - [anon_sym_u8_DQUOTE] = ACTIONS(1417), - [anon_sym_DQUOTE] = ACTIONS(1417), - [sym_true] = ACTIONS(1415), - [sym_false] = ACTIONS(1415), - [anon_sym_NULL] = ACTIONS(1415), - [anon_sym_nullptr] = ACTIONS(1415), - [sym_comment] = ACTIONS(3), + [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(1397), - [aux_sym_preproc_include_token1] = ACTIONS(1397), - [aux_sym_preproc_def_token1] = ACTIONS(1397), - [aux_sym_preproc_if_token1] = ACTIONS(1397), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1397), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1397), - [sym_preproc_directive] = ACTIONS(1397), - [anon_sym_LPAREN2] = ACTIONS(1399), - [anon_sym_BANG] = ACTIONS(1399), - [anon_sym_TILDE] = ACTIONS(1399), - [anon_sym_DASH] = ACTIONS(1397), - [anon_sym_PLUS] = ACTIONS(1397), - [anon_sym_STAR] = ACTIONS(1399), - [anon_sym_AMP] = ACTIONS(1399), - [anon_sym_SEMI] = ACTIONS(1399), - [anon_sym___extension__] = ACTIONS(1397), - [anon_sym_typedef] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1397), - [anon_sym___attribute__] = ACTIONS(1397), - [anon_sym___scanf] = ACTIONS(1397), - [anon_sym___printf] = ACTIONS(1397), - [anon_sym___read_mostly] = ACTIONS(1397), - [anon_sym___must_hold] = ACTIONS(1397), - [anon_sym___ro_after_init] = ACTIONS(1397), - [anon_sym___noreturn] = ACTIONS(1397), - [anon_sym___cold] = ACTIONS(1397), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1399), - [anon_sym___declspec] = ACTIONS(1397), - [anon_sym___init] = ACTIONS(1397), - [anon_sym___exit] = ACTIONS(1397), - [anon_sym___cdecl] = ACTIONS(1397), - [anon_sym___clrcall] = ACTIONS(1397), - [anon_sym___stdcall] = ACTIONS(1397), - [anon_sym___fastcall] = ACTIONS(1397), - [anon_sym___thiscall] = ACTIONS(1397), - [anon_sym___vectorcall] = ACTIONS(1397), - [anon_sym_LBRACE] = ACTIONS(1399), - [anon_sym_RBRACE] = ACTIONS(1399), - [anon_sym_signed] = ACTIONS(1397), - [anon_sym_unsigned] = ACTIONS(1397), - [anon_sym_long] = ACTIONS(1397), - [anon_sym_short] = ACTIONS(1397), - [anon_sym_static] = ACTIONS(1397), - [anon_sym_auto] = ACTIONS(1397), - [anon_sym_register] = ACTIONS(1397), - [anon_sym_inline] = ACTIONS(1397), - [anon_sym___inline] = ACTIONS(1397), - [anon_sym___inline__] = ACTIONS(1397), - [anon_sym___forceinline] = ACTIONS(1397), - [anon_sym_thread_local] = ACTIONS(1397), - [anon_sym___thread] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_constexpr] = ACTIONS(1397), - [anon_sym_volatile] = ACTIONS(1397), - [anon_sym_restrict] = ACTIONS(1397), - [anon_sym___restrict__] = ACTIONS(1397), - [anon_sym__Atomic] = ACTIONS(1397), - [anon_sym__Noreturn] = ACTIONS(1397), - [anon_sym_noreturn] = ACTIONS(1397), - [anon_sym_alignas] = ACTIONS(1397), - [anon_sym__Alignas] = ACTIONS(1397), - [sym_primitive_type] = ACTIONS(1397), - [anon_sym_enum] = ACTIONS(1397), - [anon_sym_struct] = ACTIONS(1397), - [anon_sym_union] = ACTIONS(1397), - [anon_sym_if] = ACTIONS(1397), - [anon_sym_switch] = ACTIONS(1397), - [anon_sym_case] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_while] = ACTIONS(1397), - [anon_sym_do] = ACTIONS(1397), - [anon_sym_for] = ACTIONS(1397), - [anon_sym_return] = ACTIONS(1397), - [anon_sym_break] = ACTIONS(1397), - [anon_sym_continue] = ACTIONS(1397), - [anon_sym_goto] = ACTIONS(1397), - [anon_sym___try] = ACTIONS(1397), - [anon_sym___leave] = ACTIONS(1397), - [anon_sym_DASH_DASH] = ACTIONS(1399), - [anon_sym_PLUS_PLUS] = ACTIONS(1399), - [anon_sym_sizeof] = ACTIONS(1397), - [anon_sym___alignof__] = ACTIONS(1397), - [anon_sym___alignof] = ACTIONS(1397), - [anon_sym__alignof] = ACTIONS(1397), - [anon_sym_alignof] = ACTIONS(1397), - [anon_sym__Alignof] = ACTIONS(1397), - [anon_sym_offsetof] = ACTIONS(1397), - [anon_sym__Generic] = ACTIONS(1397), - [anon_sym_asm] = ACTIONS(1397), - [anon_sym___asm__] = ACTIONS(1397), - [sym_number_literal] = ACTIONS(1399), - [anon_sym_L_SQUOTE] = ACTIONS(1399), - [anon_sym_u_SQUOTE] = ACTIONS(1399), - [anon_sym_U_SQUOTE] = ACTIONS(1399), - [anon_sym_u8_SQUOTE] = ACTIONS(1399), - [anon_sym_SQUOTE] = ACTIONS(1399), - [anon_sym_L_DQUOTE] = ACTIONS(1399), - [anon_sym_u_DQUOTE] = ACTIONS(1399), - [anon_sym_U_DQUOTE] = ACTIONS(1399), - [anon_sym_u8_DQUOTE] = ACTIONS(1399), - [anon_sym_DQUOTE] = ACTIONS(1399), - [sym_true] = ACTIONS(1397), - [sym_false] = ACTIONS(1397), - [anon_sym_NULL] = ACTIONS(1397), - [anon_sym_nullptr] = ACTIONS(1397), - [sym_comment] = ACTIONS(3), + [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(1385), - [aux_sym_preproc_include_token1] = ACTIONS(1385), - [aux_sym_preproc_def_token1] = ACTIONS(1385), - [aux_sym_preproc_if_token1] = ACTIONS(1385), - [aux_sym_preproc_if_token2] = ACTIONS(1385), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1385), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1385), - [sym_preproc_directive] = ACTIONS(1385), - [anon_sym_LPAREN2] = ACTIONS(1387), - [anon_sym_BANG] = ACTIONS(1387), - [anon_sym_TILDE] = ACTIONS(1387), - [anon_sym_DASH] = ACTIONS(1385), - [anon_sym_PLUS] = ACTIONS(1385), - [anon_sym_STAR] = ACTIONS(1387), - [anon_sym_AMP] = ACTIONS(1387), - [anon_sym_SEMI] = ACTIONS(1387), - [anon_sym___extension__] = ACTIONS(1385), - [anon_sym_typedef] = ACTIONS(1385), - [anon_sym_extern] = ACTIONS(1385), - [anon_sym___attribute__] = ACTIONS(1385), - [anon_sym___scanf] = ACTIONS(1385), - [anon_sym___printf] = ACTIONS(1385), - [anon_sym___read_mostly] = ACTIONS(1385), - [anon_sym___must_hold] = ACTIONS(1385), - [anon_sym___ro_after_init] = ACTIONS(1385), - [anon_sym___noreturn] = ACTIONS(1385), - [anon_sym___cold] = ACTIONS(1385), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1387), - [anon_sym___declspec] = ACTIONS(1385), - [anon_sym___init] = ACTIONS(1385), - [anon_sym___exit] = ACTIONS(1385), - [anon_sym___cdecl] = ACTIONS(1385), - [anon_sym___clrcall] = ACTIONS(1385), - [anon_sym___stdcall] = ACTIONS(1385), - [anon_sym___fastcall] = ACTIONS(1385), - [anon_sym___thiscall] = ACTIONS(1385), - [anon_sym___vectorcall] = ACTIONS(1385), - [anon_sym_LBRACE] = ACTIONS(1387), - [anon_sym_signed] = ACTIONS(1385), - [anon_sym_unsigned] = ACTIONS(1385), - [anon_sym_long] = ACTIONS(1385), - [anon_sym_short] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1385), - [anon_sym_auto] = ACTIONS(1385), - [anon_sym_register] = ACTIONS(1385), - [anon_sym_inline] = ACTIONS(1385), - [anon_sym___inline] = ACTIONS(1385), - [anon_sym___inline__] = ACTIONS(1385), - [anon_sym___forceinline] = ACTIONS(1385), - [anon_sym_thread_local] = ACTIONS(1385), - [anon_sym___thread] = ACTIONS(1385), - [anon_sym_const] = ACTIONS(1385), - [anon_sym_constexpr] = ACTIONS(1385), - [anon_sym_volatile] = ACTIONS(1385), - [anon_sym_restrict] = ACTIONS(1385), - [anon_sym___restrict__] = ACTIONS(1385), - [anon_sym__Atomic] = ACTIONS(1385), - [anon_sym__Noreturn] = ACTIONS(1385), - [anon_sym_noreturn] = ACTIONS(1385), - [anon_sym_alignas] = ACTIONS(1385), - [anon_sym__Alignas] = ACTIONS(1385), - [sym_primitive_type] = ACTIONS(1385), - [anon_sym_enum] = ACTIONS(1385), - [anon_sym_struct] = ACTIONS(1385), - [anon_sym_union] = ACTIONS(1385), - [anon_sym_if] = ACTIONS(1385), - [anon_sym_switch] = ACTIONS(1385), - [anon_sym_case] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1385), - [anon_sym_while] = ACTIONS(1385), - [anon_sym_do] = ACTIONS(1385), - [anon_sym_for] = ACTIONS(1385), - [anon_sym_return] = ACTIONS(1385), - [anon_sym_break] = ACTIONS(1385), - [anon_sym_continue] = ACTIONS(1385), - [anon_sym_goto] = ACTIONS(1385), - [anon_sym___try] = ACTIONS(1385), - [anon_sym___leave] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1387), - [anon_sym_PLUS_PLUS] = ACTIONS(1387), - [anon_sym_sizeof] = ACTIONS(1385), - [anon_sym___alignof__] = ACTIONS(1385), - [anon_sym___alignof] = ACTIONS(1385), - [anon_sym__alignof] = ACTIONS(1385), - [anon_sym_alignof] = ACTIONS(1385), - [anon_sym__Alignof] = ACTIONS(1385), - [anon_sym_offsetof] = ACTIONS(1385), - [anon_sym__Generic] = ACTIONS(1385), - [anon_sym_asm] = ACTIONS(1385), - [anon_sym___asm__] = ACTIONS(1385), - [sym_number_literal] = ACTIONS(1387), - [anon_sym_L_SQUOTE] = ACTIONS(1387), - [anon_sym_u_SQUOTE] = ACTIONS(1387), - [anon_sym_U_SQUOTE] = ACTIONS(1387), - [anon_sym_u8_SQUOTE] = ACTIONS(1387), - [anon_sym_SQUOTE] = ACTIONS(1387), - [anon_sym_L_DQUOTE] = ACTIONS(1387), - [anon_sym_u_DQUOTE] = ACTIONS(1387), - [anon_sym_U_DQUOTE] = ACTIONS(1387), - [anon_sym_u8_DQUOTE] = ACTIONS(1387), - [anon_sym_DQUOTE] = ACTIONS(1387), - [sym_true] = ACTIONS(1385), - [sym_false] = ACTIONS(1385), - [anon_sym_NULL] = ACTIONS(1385), - [anon_sym_nullptr] = ACTIONS(1385), - [sym_comment] = ACTIONS(3), + [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(1349), - [aux_sym_preproc_include_token1] = ACTIONS(1349), - [aux_sym_preproc_def_token1] = ACTIONS(1349), - [aux_sym_preproc_if_token1] = ACTIONS(1349), - [aux_sym_preproc_if_token2] = ACTIONS(1349), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1349), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1349), - [sym_preproc_directive] = ACTIONS(1349), - [anon_sym_LPAREN2] = ACTIONS(1351), - [anon_sym_BANG] = ACTIONS(1351), - [anon_sym_TILDE] = ACTIONS(1351), - [anon_sym_DASH] = ACTIONS(1349), - [anon_sym_PLUS] = ACTIONS(1349), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_AMP] = ACTIONS(1351), - [anon_sym_SEMI] = ACTIONS(1351), - [anon_sym___extension__] = ACTIONS(1349), - [anon_sym_typedef] = ACTIONS(1349), - [anon_sym_extern] = ACTIONS(1349), - [anon_sym___attribute__] = ACTIONS(1349), - [anon_sym___scanf] = ACTIONS(1349), - [anon_sym___printf] = ACTIONS(1349), - [anon_sym___read_mostly] = ACTIONS(1349), - [anon_sym___must_hold] = ACTIONS(1349), - [anon_sym___ro_after_init] = ACTIONS(1349), - [anon_sym___noreturn] = ACTIONS(1349), - [anon_sym___cold] = ACTIONS(1349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1351), - [anon_sym___declspec] = ACTIONS(1349), - [anon_sym___init] = ACTIONS(1349), - [anon_sym___exit] = ACTIONS(1349), - [anon_sym___cdecl] = ACTIONS(1349), - [anon_sym___clrcall] = ACTIONS(1349), - [anon_sym___stdcall] = ACTIONS(1349), - [anon_sym___fastcall] = ACTIONS(1349), - [anon_sym___thiscall] = ACTIONS(1349), - [anon_sym___vectorcall] = ACTIONS(1349), - [anon_sym_LBRACE] = ACTIONS(1351), - [anon_sym_signed] = ACTIONS(1349), - [anon_sym_unsigned] = ACTIONS(1349), - [anon_sym_long] = ACTIONS(1349), - [anon_sym_short] = ACTIONS(1349), - [anon_sym_static] = ACTIONS(1349), - [anon_sym_auto] = ACTIONS(1349), - [anon_sym_register] = ACTIONS(1349), - [anon_sym_inline] = ACTIONS(1349), - [anon_sym___inline] = ACTIONS(1349), - [anon_sym___inline__] = ACTIONS(1349), - [anon_sym___forceinline] = ACTIONS(1349), - [anon_sym_thread_local] = ACTIONS(1349), - [anon_sym___thread] = ACTIONS(1349), - [anon_sym_const] = ACTIONS(1349), - [anon_sym_constexpr] = ACTIONS(1349), - [anon_sym_volatile] = ACTIONS(1349), - [anon_sym_restrict] = ACTIONS(1349), - [anon_sym___restrict__] = ACTIONS(1349), - [anon_sym__Atomic] = ACTIONS(1349), - [anon_sym__Noreturn] = ACTIONS(1349), - [anon_sym_noreturn] = ACTIONS(1349), - [anon_sym_alignas] = ACTIONS(1349), - [anon_sym__Alignas] = ACTIONS(1349), - [sym_primitive_type] = ACTIONS(1349), - [anon_sym_enum] = ACTIONS(1349), - [anon_sym_struct] = ACTIONS(1349), - [anon_sym_union] = ACTIONS(1349), - [anon_sym_if] = ACTIONS(1349), - [anon_sym_switch] = ACTIONS(1349), - [anon_sym_case] = ACTIONS(1349), - [anon_sym_default] = ACTIONS(1349), - [anon_sym_while] = ACTIONS(1349), - [anon_sym_do] = ACTIONS(1349), - [anon_sym_for] = ACTIONS(1349), - [anon_sym_return] = ACTIONS(1349), - [anon_sym_break] = ACTIONS(1349), - [anon_sym_continue] = ACTIONS(1349), - [anon_sym_goto] = ACTIONS(1349), - [anon_sym___try] = ACTIONS(1349), - [anon_sym___leave] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1351), - [anon_sym_PLUS_PLUS] = ACTIONS(1351), - [anon_sym_sizeof] = ACTIONS(1349), - [anon_sym___alignof__] = ACTIONS(1349), - [anon_sym___alignof] = ACTIONS(1349), - [anon_sym__alignof] = ACTIONS(1349), - [anon_sym_alignof] = ACTIONS(1349), - [anon_sym__Alignof] = ACTIONS(1349), - [anon_sym_offsetof] = ACTIONS(1349), - [anon_sym__Generic] = ACTIONS(1349), - [anon_sym_asm] = ACTIONS(1349), - [anon_sym___asm__] = ACTIONS(1349), - [sym_number_literal] = ACTIONS(1351), - [anon_sym_L_SQUOTE] = ACTIONS(1351), - [anon_sym_u_SQUOTE] = ACTIONS(1351), - [anon_sym_U_SQUOTE] = ACTIONS(1351), - [anon_sym_u8_SQUOTE] = ACTIONS(1351), - [anon_sym_SQUOTE] = ACTIONS(1351), - [anon_sym_L_DQUOTE] = ACTIONS(1351), - [anon_sym_u_DQUOTE] = ACTIONS(1351), - [anon_sym_U_DQUOTE] = ACTIONS(1351), - [anon_sym_u8_DQUOTE] = ACTIONS(1351), - [anon_sym_DQUOTE] = ACTIONS(1351), - [sym_true] = ACTIONS(1349), - [sym_false] = ACTIONS(1349), - [anon_sym_NULL] = ACTIONS(1349), - [anon_sym_nullptr] = ACTIONS(1349), - [sym_comment] = ACTIONS(3), + [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(1345), - [aux_sym_preproc_include_token1] = ACTIONS(1345), - [aux_sym_preproc_def_token1] = ACTIONS(1345), - [aux_sym_preproc_if_token1] = ACTIONS(1345), - [aux_sym_preproc_if_token2] = ACTIONS(1345), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1345), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1345), - [sym_preproc_directive] = ACTIONS(1345), - [anon_sym_LPAREN2] = ACTIONS(1347), - [anon_sym_BANG] = ACTIONS(1347), - [anon_sym_TILDE] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_PLUS] = ACTIONS(1345), - [anon_sym_STAR] = ACTIONS(1347), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym_SEMI] = ACTIONS(1347), - [anon_sym___extension__] = ACTIONS(1345), - [anon_sym_typedef] = ACTIONS(1345), - [anon_sym_extern] = ACTIONS(1345), - [anon_sym___attribute__] = ACTIONS(1345), - [anon_sym___scanf] = ACTIONS(1345), - [anon_sym___printf] = ACTIONS(1345), - [anon_sym___read_mostly] = ACTIONS(1345), - [anon_sym___must_hold] = ACTIONS(1345), - [anon_sym___ro_after_init] = ACTIONS(1345), - [anon_sym___noreturn] = ACTIONS(1345), - [anon_sym___cold] = ACTIONS(1345), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1347), - [anon_sym___declspec] = ACTIONS(1345), - [anon_sym___init] = ACTIONS(1345), - [anon_sym___exit] = ACTIONS(1345), - [anon_sym___cdecl] = ACTIONS(1345), - [anon_sym___clrcall] = ACTIONS(1345), - [anon_sym___stdcall] = ACTIONS(1345), - [anon_sym___fastcall] = ACTIONS(1345), - [anon_sym___thiscall] = ACTIONS(1345), - [anon_sym___vectorcall] = ACTIONS(1345), - [anon_sym_LBRACE] = ACTIONS(1347), - [anon_sym_signed] = ACTIONS(1345), - [anon_sym_unsigned] = ACTIONS(1345), - [anon_sym_long] = ACTIONS(1345), - [anon_sym_short] = ACTIONS(1345), - [anon_sym_static] = ACTIONS(1345), - [anon_sym_auto] = ACTIONS(1345), - [anon_sym_register] = ACTIONS(1345), - [anon_sym_inline] = ACTIONS(1345), - [anon_sym___inline] = ACTIONS(1345), - [anon_sym___inline__] = ACTIONS(1345), - [anon_sym___forceinline] = ACTIONS(1345), - [anon_sym_thread_local] = ACTIONS(1345), - [anon_sym___thread] = ACTIONS(1345), - [anon_sym_const] = ACTIONS(1345), - [anon_sym_constexpr] = ACTIONS(1345), - [anon_sym_volatile] = ACTIONS(1345), - [anon_sym_restrict] = ACTIONS(1345), - [anon_sym___restrict__] = ACTIONS(1345), - [anon_sym__Atomic] = ACTIONS(1345), - [anon_sym__Noreturn] = ACTIONS(1345), - [anon_sym_noreturn] = ACTIONS(1345), - [anon_sym_alignas] = ACTIONS(1345), - [anon_sym__Alignas] = ACTIONS(1345), - [sym_primitive_type] = ACTIONS(1345), - [anon_sym_enum] = ACTIONS(1345), - [anon_sym_struct] = ACTIONS(1345), - [anon_sym_union] = ACTIONS(1345), - [anon_sym_if] = ACTIONS(1345), - [anon_sym_switch] = ACTIONS(1345), - [anon_sym_case] = ACTIONS(1345), - [anon_sym_default] = ACTIONS(1345), - [anon_sym_while] = ACTIONS(1345), - [anon_sym_do] = ACTIONS(1345), - [anon_sym_for] = ACTIONS(1345), - [anon_sym_return] = ACTIONS(1345), - [anon_sym_break] = ACTIONS(1345), - [anon_sym_continue] = ACTIONS(1345), - [anon_sym_goto] = ACTIONS(1345), - [anon_sym___try] = ACTIONS(1345), - [anon_sym___leave] = ACTIONS(1345), - [anon_sym_DASH_DASH] = ACTIONS(1347), - [anon_sym_PLUS_PLUS] = ACTIONS(1347), - [anon_sym_sizeof] = ACTIONS(1345), - [anon_sym___alignof__] = ACTIONS(1345), - [anon_sym___alignof] = ACTIONS(1345), - [anon_sym__alignof] = ACTIONS(1345), - [anon_sym_alignof] = ACTIONS(1345), - [anon_sym__Alignof] = ACTIONS(1345), - [anon_sym_offsetof] = ACTIONS(1345), - [anon_sym__Generic] = ACTIONS(1345), - [anon_sym_asm] = ACTIONS(1345), - [anon_sym___asm__] = ACTIONS(1345), - [sym_number_literal] = ACTIONS(1347), - [anon_sym_L_SQUOTE] = ACTIONS(1347), - [anon_sym_u_SQUOTE] = ACTIONS(1347), - [anon_sym_U_SQUOTE] = ACTIONS(1347), - [anon_sym_u8_SQUOTE] = ACTIONS(1347), - [anon_sym_SQUOTE] = ACTIONS(1347), - [anon_sym_L_DQUOTE] = ACTIONS(1347), - [anon_sym_u_DQUOTE] = ACTIONS(1347), - [anon_sym_U_DQUOTE] = ACTIONS(1347), - [anon_sym_u8_DQUOTE] = ACTIONS(1347), - [anon_sym_DQUOTE] = ACTIONS(1347), - [sym_true] = ACTIONS(1345), - [sym_false] = ACTIONS(1345), - [anon_sym_NULL] = ACTIONS(1345), - [anon_sym_nullptr] = ACTIONS(1345), - [sym_comment] = ACTIONS(3), + [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(1341), - [aux_sym_preproc_include_token1] = ACTIONS(1341), - [aux_sym_preproc_def_token1] = ACTIONS(1341), - [aux_sym_preproc_if_token1] = ACTIONS(1341), - [aux_sym_preproc_if_token2] = ACTIONS(1341), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1341), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1341), - [sym_preproc_directive] = ACTIONS(1341), - [anon_sym_LPAREN2] = ACTIONS(1343), - [anon_sym_BANG] = ACTIONS(1343), - [anon_sym_TILDE] = ACTIONS(1343), - [anon_sym_DASH] = ACTIONS(1341), - [anon_sym_PLUS] = ACTIONS(1341), - [anon_sym_STAR] = ACTIONS(1343), - [anon_sym_AMP] = ACTIONS(1343), - [anon_sym_SEMI] = ACTIONS(1343), - [anon_sym___extension__] = ACTIONS(1341), - [anon_sym_typedef] = ACTIONS(1341), - [anon_sym_extern] = ACTIONS(1341), - [anon_sym___attribute__] = ACTIONS(1341), - [anon_sym___scanf] = ACTIONS(1341), - [anon_sym___printf] = ACTIONS(1341), - [anon_sym___read_mostly] = ACTIONS(1341), - [anon_sym___must_hold] = ACTIONS(1341), - [anon_sym___ro_after_init] = ACTIONS(1341), - [anon_sym___noreturn] = ACTIONS(1341), - [anon_sym___cold] = ACTIONS(1341), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1343), - [anon_sym___declspec] = ACTIONS(1341), - [anon_sym___init] = ACTIONS(1341), - [anon_sym___exit] = ACTIONS(1341), - [anon_sym___cdecl] = ACTIONS(1341), - [anon_sym___clrcall] = ACTIONS(1341), - [anon_sym___stdcall] = ACTIONS(1341), - [anon_sym___fastcall] = ACTIONS(1341), - [anon_sym___thiscall] = ACTIONS(1341), - [anon_sym___vectorcall] = ACTIONS(1341), - [anon_sym_LBRACE] = ACTIONS(1343), - [anon_sym_signed] = ACTIONS(1341), - [anon_sym_unsigned] = ACTIONS(1341), - [anon_sym_long] = ACTIONS(1341), - [anon_sym_short] = ACTIONS(1341), - [anon_sym_static] = ACTIONS(1341), - [anon_sym_auto] = ACTIONS(1341), - [anon_sym_register] = ACTIONS(1341), - [anon_sym_inline] = ACTIONS(1341), - [anon_sym___inline] = ACTIONS(1341), - [anon_sym___inline__] = ACTIONS(1341), - [anon_sym___forceinline] = ACTIONS(1341), - [anon_sym_thread_local] = ACTIONS(1341), - [anon_sym___thread] = ACTIONS(1341), - [anon_sym_const] = ACTIONS(1341), - [anon_sym_constexpr] = ACTIONS(1341), - [anon_sym_volatile] = ACTIONS(1341), - [anon_sym_restrict] = ACTIONS(1341), - [anon_sym___restrict__] = ACTIONS(1341), - [anon_sym__Atomic] = ACTIONS(1341), - [anon_sym__Noreturn] = ACTIONS(1341), - [anon_sym_noreturn] = ACTIONS(1341), - [anon_sym_alignas] = ACTIONS(1341), - [anon_sym__Alignas] = ACTIONS(1341), - [sym_primitive_type] = ACTIONS(1341), - [anon_sym_enum] = ACTIONS(1341), - [anon_sym_struct] = ACTIONS(1341), - [anon_sym_union] = ACTIONS(1341), - [anon_sym_if] = ACTIONS(1341), - [anon_sym_switch] = ACTIONS(1341), - [anon_sym_case] = ACTIONS(1341), - [anon_sym_default] = ACTIONS(1341), - [anon_sym_while] = ACTIONS(1341), - [anon_sym_do] = ACTIONS(1341), - [anon_sym_for] = ACTIONS(1341), - [anon_sym_return] = ACTIONS(1341), - [anon_sym_break] = ACTIONS(1341), - [anon_sym_continue] = ACTIONS(1341), - [anon_sym_goto] = ACTIONS(1341), - [anon_sym___try] = ACTIONS(1341), - [anon_sym___leave] = ACTIONS(1341), - [anon_sym_DASH_DASH] = ACTIONS(1343), - [anon_sym_PLUS_PLUS] = ACTIONS(1343), - [anon_sym_sizeof] = ACTIONS(1341), - [anon_sym___alignof__] = ACTIONS(1341), - [anon_sym___alignof] = ACTIONS(1341), - [anon_sym__alignof] = ACTIONS(1341), - [anon_sym_alignof] = ACTIONS(1341), - [anon_sym__Alignof] = ACTIONS(1341), - [anon_sym_offsetof] = ACTIONS(1341), - [anon_sym__Generic] = ACTIONS(1341), - [anon_sym_asm] = ACTIONS(1341), - [anon_sym___asm__] = ACTIONS(1341), - [sym_number_literal] = ACTIONS(1343), - [anon_sym_L_SQUOTE] = ACTIONS(1343), - [anon_sym_u_SQUOTE] = ACTIONS(1343), - [anon_sym_U_SQUOTE] = ACTIONS(1343), - [anon_sym_u8_SQUOTE] = ACTIONS(1343), - [anon_sym_SQUOTE] = ACTIONS(1343), - [anon_sym_L_DQUOTE] = ACTIONS(1343), - [anon_sym_u_DQUOTE] = ACTIONS(1343), - [anon_sym_U_DQUOTE] = ACTIONS(1343), - [anon_sym_u8_DQUOTE] = ACTIONS(1343), - [anon_sym_DQUOTE] = ACTIONS(1343), - [sym_true] = ACTIONS(1341), - [sym_false] = ACTIONS(1341), - [anon_sym_NULL] = ACTIONS(1341), - [anon_sym_nullptr] = ACTIONS(1341), - [sym_comment] = ACTIONS(3), + [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(1325), - [aux_sym_preproc_include_token1] = ACTIONS(1325), - [aux_sym_preproc_def_token1] = ACTIONS(1325), - [aux_sym_preproc_if_token1] = ACTIONS(1325), - [aux_sym_preproc_if_token2] = ACTIONS(1325), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1325), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1325), - [sym_preproc_directive] = ACTIONS(1325), - [anon_sym_LPAREN2] = ACTIONS(1327), - [anon_sym_BANG] = ACTIONS(1327), - [anon_sym_TILDE] = ACTIONS(1327), - [anon_sym_DASH] = ACTIONS(1325), - [anon_sym_PLUS] = ACTIONS(1325), - [anon_sym_STAR] = ACTIONS(1327), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_SEMI] = ACTIONS(1327), - [anon_sym___extension__] = ACTIONS(1325), - [anon_sym_typedef] = ACTIONS(1325), - [anon_sym_extern] = ACTIONS(1325), - [anon_sym___attribute__] = ACTIONS(1325), - [anon_sym___scanf] = ACTIONS(1325), - [anon_sym___printf] = ACTIONS(1325), - [anon_sym___read_mostly] = ACTIONS(1325), - [anon_sym___must_hold] = ACTIONS(1325), - [anon_sym___ro_after_init] = ACTIONS(1325), - [anon_sym___noreturn] = ACTIONS(1325), - [anon_sym___cold] = ACTIONS(1325), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1327), - [anon_sym___declspec] = ACTIONS(1325), - [anon_sym___init] = ACTIONS(1325), - [anon_sym___exit] = ACTIONS(1325), - [anon_sym___cdecl] = ACTIONS(1325), - [anon_sym___clrcall] = ACTIONS(1325), - [anon_sym___stdcall] = ACTIONS(1325), - [anon_sym___fastcall] = ACTIONS(1325), - [anon_sym___thiscall] = ACTIONS(1325), - [anon_sym___vectorcall] = ACTIONS(1325), - [anon_sym_LBRACE] = ACTIONS(1327), - [anon_sym_signed] = ACTIONS(1325), - [anon_sym_unsigned] = ACTIONS(1325), - [anon_sym_long] = ACTIONS(1325), - [anon_sym_short] = ACTIONS(1325), - [anon_sym_static] = ACTIONS(1325), - [anon_sym_auto] = ACTIONS(1325), - [anon_sym_register] = ACTIONS(1325), - [anon_sym_inline] = ACTIONS(1325), - [anon_sym___inline] = ACTIONS(1325), - [anon_sym___inline__] = ACTIONS(1325), - [anon_sym___forceinline] = ACTIONS(1325), - [anon_sym_thread_local] = ACTIONS(1325), - [anon_sym___thread] = ACTIONS(1325), - [anon_sym_const] = ACTIONS(1325), - [anon_sym_constexpr] = ACTIONS(1325), - [anon_sym_volatile] = ACTIONS(1325), - [anon_sym_restrict] = ACTIONS(1325), - [anon_sym___restrict__] = ACTIONS(1325), - [anon_sym__Atomic] = ACTIONS(1325), - [anon_sym__Noreturn] = ACTIONS(1325), - [anon_sym_noreturn] = ACTIONS(1325), - [anon_sym_alignas] = ACTIONS(1325), - [anon_sym__Alignas] = ACTIONS(1325), - [sym_primitive_type] = ACTIONS(1325), - [anon_sym_enum] = ACTIONS(1325), - [anon_sym_struct] = ACTIONS(1325), - [anon_sym_union] = ACTIONS(1325), - [anon_sym_if] = ACTIONS(1325), - [anon_sym_switch] = ACTIONS(1325), - [anon_sym_case] = ACTIONS(1325), - [anon_sym_default] = ACTIONS(1325), - [anon_sym_while] = ACTIONS(1325), - [anon_sym_do] = ACTIONS(1325), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_return] = ACTIONS(1325), - [anon_sym_break] = ACTIONS(1325), - [anon_sym_continue] = ACTIONS(1325), - [anon_sym_goto] = ACTIONS(1325), - [anon_sym___try] = ACTIONS(1325), - [anon_sym___leave] = ACTIONS(1325), - [anon_sym_DASH_DASH] = ACTIONS(1327), - [anon_sym_PLUS_PLUS] = ACTIONS(1327), - [anon_sym_sizeof] = ACTIONS(1325), - [anon_sym___alignof__] = ACTIONS(1325), - [anon_sym___alignof] = ACTIONS(1325), - [anon_sym__alignof] = ACTIONS(1325), - [anon_sym_alignof] = ACTIONS(1325), - [anon_sym__Alignof] = ACTIONS(1325), - [anon_sym_offsetof] = ACTIONS(1325), - [anon_sym__Generic] = ACTIONS(1325), - [anon_sym_asm] = ACTIONS(1325), - [anon_sym___asm__] = ACTIONS(1325), - [sym_number_literal] = ACTIONS(1327), - [anon_sym_L_SQUOTE] = ACTIONS(1327), - [anon_sym_u_SQUOTE] = ACTIONS(1327), - [anon_sym_U_SQUOTE] = ACTIONS(1327), - [anon_sym_u8_SQUOTE] = ACTIONS(1327), - [anon_sym_SQUOTE] = ACTIONS(1327), - [anon_sym_L_DQUOTE] = ACTIONS(1327), - [anon_sym_u_DQUOTE] = ACTIONS(1327), - [anon_sym_U_DQUOTE] = ACTIONS(1327), - [anon_sym_u8_DQUOTE] = ACTIONS(1327), - [anon_sym_DQUOTE] = ACTIONS(1327), - [sym_true] = ACTIONS(1325), - [sym_false] = ACTIONS(1325), - [anon_sym_NULL] = ACTIONS(1325), - [anon_sym_nullptr] = ACTIONS(1325), - [sym_comment] = ACTIONS(3), + [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(1321), - [aux_sym_preproc_include_token1] = ACTIONS(1321), - [aux_sym_preproc_def_token1] = ACTIONS(1321), - [aux_sym_preproc_if_token1] = ACTIONS(1321), - [aux_sym_preproc_if_token2] = ACTIONS(1321), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1321), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1321), - [sym_preproc_directive] = ACTIONS(1321), - [anon_sym_LPAREN2] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1323), - [anon_sym_TILDE] = ACTIONS(1323), - [anon_sym_DASH] = ACTIONS(1321), - [anon_sym_PLUS] = ACTIONS(1321), - [anon_sym_STAR] = ACTIONS(1323), - [anon_sym_AMP] = ACTIONS(1323), - [anon_sym_SEMI] = ACTIONS(1323), - [anon_sym___extension__] = ACTIONS(1321), - [anon_sym_typedef] = ACTIONS(1321), - [anon_sym_extern] = ACTIONS(1321), - [anon_sym___attribute__] = ACTIONS(1321), - [anon_sym___scanf] = ACTIONS(1321), - [anon_sym___printf] = ACTIONS(1321), - [anon_sym___read_mostly] = ACTIONS(1321), - [anon_sym___must_hold] = ACTIONS(1321), - [anon_sym___ro_after_init] = ACTIONS(1321), - [anon_sym___noreturn] = ACTIONS(1321), - [anon_sym___cold] = ACTIONS(1321), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1323), - [anon_sym___declspec] = ACTIONS(1321), - [anon_sym___init] = ACTIONS(1321), - [anon_sym___exit] = ACTIONS(1321), - [anon_sym___cdecl] = ACTIONS(1321), - [anon_sym___clrcall] = ACTIONS(1321), - [anon_sym___stdcall] = ACTIONS(1321), - [anon_sym___fastcall] = ACTIONS(1321), - [anon_sym___thiscall] = ACTIONS(1321), - [anon_sym___vectorcall] = ACTIONS(1321), - [anon_sym_LBRACE] = ACTIONS(1323), - [anon_sym_signed] = ACTIONS(1321), - [anon_sym_unsigned] = ACTIONS(1321), - [anon_sym_long] = ACTIONS(1321), - [anon_sym_short] = ACTIONS(1321), - [anon_sym_static] = ACTIONS(1321), - [anon_sym_auto] = ACTIONS(1321), - [anon_sym_register] = ACTIONS(1321), - [anon_sym_inline] = ACTIONS(1321), - [anon_sym___inline] = ACTIONS(1321), - [anon_sym___inline__] = ACTIONS(1321), - [anon_sym___forceinline] = ACTIONS(1321), - [anon_sym_thread_local] = ACTIONS(1321), - [anon_sym___thread] = ACTIONS(1321), - [anon_sym_const] = ACTIONS(1321), - [anon_sym_constexpr] = ACTIONS(1321), - [anon_sym_volatile] = ACTIONS(1321), - [anon_sym_restrict] = ACTIONS(1321), - [anon_sym___restrict__] = ACTIONS(1321), - [anon_sym__Atomic] = ACTIONS(1321), - [anon_sym__Noreturn] = ACTIONS(1321), - [anon_sym_noreturn] = ACTIONS(1321), - [anon_sym_alignas] = ACTIONS(1321), - [anon_sym__Alignas] = ACTIONS(1321), - [sym_primitive_type] = ACTIONS(1321), - [anon_sym_enum] = ACTIONS(1321), - [anon_sym_struct] = ACTIONS(1321), - [anon_sym_union] = ACTIONS(1321), - [anon_sym_if] = ACTIONS(1321), - [anon_sym_switch] = ACTIONS(1321), - [anon_sym_case] = ACTIONS(1321), - [anon_sym_default] = ACTIONS(1321), - [anon_sym_while] = ACTIONS(1321), - [anon_sym_do] = ACTIONS(1321), - [anon_sym_for] = ACTIONS(1321), - [anon_sym_return] = ACTIONS(1321), - [anon_sym_break] = ACTIONS(1321), - [anon_sym_continue] = ACTIONS(1321), - [anon_sym_goto] = ACTIONS(1321), - [anon_sym___try] = ACTIONS(1321), - [anon_sym___leave] = ACTIONS(1321), - [anon_sym_DASH_DASH] = ACTIONS(1323), - [anon_sym_PLUS_PLUS] = ACTIONS(1323), - [anon_sym_sizeof] = ACTIONS(1321), - [anon_sym___alignof__] = ACTIONS(1321), - [anon_sym___alignof] = ACTIONS(1321), - [anon_sym__alignof] = ACTIONS(1321), - [anon_sym_alignof] = ACTIONS(1321), - [anon_sym__Alignof] = ACTIONS(1321), - [anon_sym_offsetof] = ACTIONS(1321), - [anon_sym__Generic] = ACTIONS(1321), - [anon_sym_asm] = ACTIONS(1321), - [anon_sym___asm__] = ACTIONS(1321), - [sym_number_literal] = ACTIONS(1323), - [anon_sym_L_SQUOTE] = ACTIONS(1323), - [anon_sym_u_SQUOTE] = ACTIONS(1323), - [anon_sym_U_SQUOTE] = ACTIONS(1323), - [anon_sym_u8_SQUOTE] = ACTIONS(1323), - [anon_sym_SQUOTE] = ACTIONS(1323), - [anon_sym_L_DQUOTE] = ACTIONS(1323), - [anon_sym_u_DQUOTE] = ACTIONS(1323), - [anon_sym_U_DQUOTE] = ACTIONS(1323), - [anon_sym_u8_DQUOTE] = ACTIONS(1323), - [anon_sym_DQUOTE] = ACTIONS(1323), - [sym_true] = ACTIONS(1321), - [sym_false] = ACTIONS(1321), - [anon_sym_NULL] = ACTIONS(1321), - [anon_sym_nullptr] = ACTIONS(1321), - [sym_comment] = ACTIONS(3), + [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(1325), - [aux_sym_preproc_include_token1] = ACTIONS(1325), - [aux_sym_preproc_def_token1] = ACTIONS(1325), - [aux_sym_preproc_if_token1] = ACTIONS(1325), - [aux_sym_preproc_if_token2] = ACTIONS(1325), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1325), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1325), - [sym_preproc_directive] = ACTIONS(1325), - [anon_sym_LPAREN2] = ACTIONS(1327), - [anon_sym_BANG] = ACTIONS(1327), - [anon_sym_TILDE] = ACTIONS(1327), - [anon_sym_DASH] = ACTIONS(1325), - [anon_sym_PLUS] = ACTIONS(1325), - [anon_sym_STAR] = ACTIONS(1327), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_SEMI] = ACTIONS(1327), - [anon_sym___extension__] = ACTIONS(1325), - [anon_sym_typedef] = ACTIONS(1325), - [anon_sym_extern] = ACTIONS(1325), - [anon_sym___attribute__] = ACTIONS(1325), - [anon_sym___scanf] = ACTIONS(1325), - [anon_sym___printf] = ACTIONS(1325), - [anon_sym___read_mostly] = ACTIONS(1325), - [anon_sym___must_hold] = ACTIONS(1325), - [anon_sym___ro_after_init] = ACTIONS(1325), - [anon_sym___noreturn] = ACTIONS(1325), - [anon_sym___cold] = ACTIONS(1325), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1327), - [anon_sym___declspec] = ACTIONS(1325), - [anon_sym___init] = ACTIONS(1325), - [anon_sym___exit] = ACTIONS(1325), - [anon_sym___cdecl] = ACTIONS(1325), - [anon_sym___clrcall] = ACTIONS(1325), - [anon_sym___stdcall] = ACTIONS(1325), - [anon_sym___fastcall] = ACTIONS(1325), - [anon_sym___thiscall] = ACTIONS(1325), - [anon_sym___vectorcall] = ACTIONS(1325), - [anon_sym_LBRACE] = ACTIONS(1327), - [anon_sym_signed] = ACTIONS(1325), - [anon_sym_unsigned] = ACTIONS(1325), - [anon_sym_long] = ACTIONS(1325), - [anon_sym_short] = ACTIONS(1325), - [anon_sym_static] = ACTIONS(1325), - [anon_sym_auto] = ACTIONS(1325), - [anon_sym_register] = ACTIONS(1325), - [anon_sym_inline] = ACTIONS(1325), - [anon_sym___inline] = ACTIONS(1325), - [anon_sym___inline__] = ACTIONS(1325), - [anon_sym___forceinline] = ACTIONS(1325), - [anon_sym_thread_local] = ACTIONS(1325), - [anon_sym___thread] = ACTIONS(1325), - [anon_sym_const] = ACTIONS(1325), - [anon_sym_constexpr] = ACTIONS(1325), - [anon_sym_volatile] = ACTIONS(1325), - [anon_sym_restrict] = ACTIONS(1325), - [anon_sym___restrict__] = ACTIONS(1325), - [anon_sym__Atomic] = ACTIONS(1325), - [anon_sym__Noreturn] = ACTIONS(1325), - [anon_sym_noreturn] = ACTIONS(1325), - [anon_sym_alignas] = ACTIONS(1325), - [anon_sym__Alignas] = ACTIONS(1325), - [sym_primitive_type] = ACTIONS(1325), - [anon_sym_enum] = ACTIONS(1325), - [anon_sym_struct] = ACTIONS(1325), - [anon_sym_union] = ACTIONS(1325), - [anon_sym_if] = ACTIONS(1325), - [anon_sym_switch] = ACTIONS(1325), - [anon_sym_case] = ACTIONS(1325), - [anon_sym_default] = ACTIONS(1325), - [anon_sym_while] = ACTIONS(1325), - [anon_sym_do] = ACTIONS(1325), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_return] = ACTIONS(1325), - [anon_sym_break] = ACTIONS(1325), - [anon_sym_continue] = ACTIONS(1325), - [anon_sym_goto] = ACTIONS(1325), - [anon_sym___try] = ACTIONS(1325), - [anon_sym___leave] = ACTIONS(1325), - [anon_sym_DASH_DASH] = ACTIONS(1327), - [anon_sym_PLUS_PLUS] = ACTIONS(1327), - [anon_sym_sizeof] = ACTIONS(1325), - [anon_sym___alignof__] = ACTIONS(1325), - [anon_sym___alignof] = ACTIONS(1325), - [anon_sym__alignof] = ACTIONS(1325), - [anon_sym_alignof] = ACTIONS(1325), - [anon_sym__Alignof] = ACTIONS(1325), - [anon_sym_offsetof] = ACTIONS(1325), - [anon_sym__Generic] = ACTIONS(1325), - [anon_sym_asm] = ACTIONS(1325), - [anon_sym___asm__] = ACTIONS(1325), - [sym_number_literal] = ACTIONS(1327), - [anon_sym_L_SQUOTE] = ACTIONS(1327), - [anon_sym_u_SQUOTE] = ACTIONS(1327), - [anon_sym_U_SQUOTE] = ACTIONS(1327), - [anon_sym_u8_SQUOTE] = ACTIONS(1327), - [anon_sym_SQUOTE] = ACTIONS(1327), - [anon_sym_L_DQUOTE] = ACTIONS(1327), - [anon_sym_u_DQUOTE] = ACTIONS(1327), - [anon_sym_U_DQUOTE] = ACTIONS(1327), - [anon_sym_u8_DQUOTE] = ACTIONS(1327), - [anon_sym_DQUOTE] = ACTIONS(1327), - [sym_true] = ACTIONS(1325), - [sym_false] = ACTIONS(1325), - [anon_sym_NULL] = ACTIONS(1325), - [anon_sym_nullptr] = ACTIONS(1325), - [sym_comment] = ACTIONS(3), + [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_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), }, [320] = { - [sym_identifier] = ACTIONS(1419), - [aux_sym_preproc_include_token1] = ACTIONS(1419), - [aux_sym_preproc_def_token1] = ACTIONS(1419), - [aux_sym_preproc_if_token1] = ACTIONS(1419), - [aux_sym_preproc_if_token2] = ACTIONS(1419), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1419), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1419), - [sym_preproc_directive] = ACTIONS(1419), - [anon_sym_LPAREN2] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_SEMI] = ACTIONS(1421), - [anon_sym___extension__] = ACTIONS(1419), - [anon_sym_typedef] = ACTIONS(1419), - [anon_sym_extern] = ACTIONS(1419), - [anon_sym___attribute__] = ACTIONS(1419), - [anon_sym___scanf] = ACTIONS(1419), - [anon_sym___printf] = ACTIONS(1419), - [anon_sym___read_mostly] = ACTIONS(1419), - [anon_sym___must_hold] = ACTIONS(1419), - [anon_sym___ro_after_init] = ACTIONS(1419), - [anon_sym___noreturn] = ACTIONS(1419), - [anon_sym___cold] = ACTIONS(1419), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1421), - [anon_sym___declspec] = ACTIONS(1419), - [anon_sym___init] = ACTIONS(1419), - [anon_sym___exit] = ACTIONS(1419), - [anon_sym___cdecl] = ACTIONS(1419), - [anon_sym___clrcall] = ACTIONS(1419), - [anon_sym___stdcall] = ACTIONS(1419), - [anon_sym___fastcall] = ACTIONS(1419), - [anon_sym___thiscall] = ACTIONS(1419), - [anon_sym___vectorcall] = ACTIONS(1419), - [anon_sym_LBRACE] = ACTIONS(1421), - [anon_sym_signed] = ACTIONS(1419), - [anon_sym_unsigned] = ACTIONS(1419), - [anon_sym_long] = ACTIONS(1419), - [anon_sym_short] = ACTIONS(1419), - [anon_sym_static] = ACTIONS(1419), - [anon_sym_auto] = ACTIONS(1419), - [anon_sym_register] = ACTIONS(1419), - [anon_sym_inline] = ACTIONS(1419), - [anon_sym___inline] = ACTIONS(1419), - [anon_sym___inline__] = ACTIONS(1419), - [anon_sym___forceinline] = ACTIONS(1419), - [anon_sym_thread_local] = ACTIONS(1419), - [anon_sym___thread] = ACTIONS(1419), - [anon_sym_const] = ACTIONS(1419), - [anon_sym_constexpr] = ACTIONS(1419), - [anon_sym_volatile] = ACTIONS(1419), - [anon_sym_restrict] = ACTIONS(1419), - [anon_sym___restrict__] = ACTIONS(1419), - [anon_sym__Atomic] = ACTIONS(1419), - [anon_sym__Noreturn] = ACTIONS(1419), - [anon_sym_noreturn] = ACTIONS(1419), - [anon_sym_alignas] = ACTIONS(1419), - [anon_sym__Alignas] = ACTIONS(1419), - [sym_primitive_type] = ACTIONS(1419), - [anon_sym_enum] = ACTIONS(1419), - [anon_sym_struct] = ACTIONS(1419), - [anon_sym_union] = ACTIONS(1419), - [anon_sym_if] = ACTIONS(1419), - [anon_sym_switch] = ACTIONS(1419), - [anon_sym_case] = ACTIONS(1419), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_while] = ACTIONS(1419), - [anon_sym_do] = ACTIONS(1419), - [anon_sym_for] = ACTIONS(1419), - [anon_sym_return] = ACTIONS(1419), - [anon_sym_break] = ACTIONS(1419), - [anon_sym_continue] = ACTIONS(1419), - [anon_sym_goto] = ACTIONS(1419), - [anon_sym___try] = ACTIONS(1419), - [anon_sym___leave] = ACTIONS(1419), - [anon_sym_DASH_DASH] = ACTIONS(1421), - [anon_sym_PLUS_PLUS] = ACTIONS(1421), - [anon_sym_sizeof] = ACTIONS(1419), - [anon_sym___alignof__] = ACTIONS(1419), - [anon_sym___alignof] = ACTIONS(1419), - [anon_sym__alignof] = ACTIONS(1419), - [anon_sym_alignof] = ACTIONS(1419), - [anon_sym__Alignof] = ACTIONS(1419), - [anon_sym_offsetof] = ACTIONS(1419), - [anon_sym__Generic] = ACTIONS(1419), - [anon_sym_asm] = ACTIONS(1419), - [anon_sym___asm__] = ACTIONS(1419), - [sym_number_literal] = ACTIONS(1421), - [anon_sym_L_SQUOTE] = ACTIONS(1421), - [anon_sym_u_SQUOTE] = ACTIONS(1421), - [anon_sym_U_SQUOTE] = ACTIONS(1421), - [anon_sym_u8_SQUOTE] = ACTIONS(1421), - [anon_sym_SQUOTE] = ACTIONS(1421), - [anon_sym_L_DQUOTE] = ACTIONS(1421), - [anon_sym_u_DQUOTE] = ACTIONS(1421), - [anon_sym_U_DQUOTE] = ACTIONS(1421), - [anon_sym_u8_DQUOTE] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1421), - [sym_true] = ACTIONS(1419), - [sym_false] = ACTIONS(1419), - [anon_sym_NULL] = ACTIONS(1419), - [anon_sym_nullptr] = ACTIONS(1419), - [sym_comment] = ACTIONS(3), + [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] = { - [sym_identifier] = ACTIONS(1407), - [aux_sym_preproc_include_token1] = ACTIONS(1407), - [aux_sym_preproc_def_token1] = ACTIONS(1407), - [aux_sym_preproc_if_token1] = ACTIONS(1407), - [aux_sym_preproc_if_token2] = ACTIONS(1407), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1407), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1407), - [sym_preproc_directive] = ACTIONS(1407), - [anon_sym_LPAREN2] = ACTIONS(1409), - [anon_sym_BANG] = ACTIONS(1409), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1407), - [anon_sym_PLUS] = ACTIONS(1407), - [anon_sym_STAR] = ACTIONS(1409), - [anon_sym_AMP] = ACTIONS(1409), - [anon_sym_SEMI] = ACTIONS(1409), - [anon_sym___extension__] = ACTIONS(1407), - [anon_sym_typedef] = ACTIONS(1407), - [anon_sym_extern] = ACTIONS(1407), - [anon_sym___attribute__] = ACTIONS(1407), - [anon_sym___scanf] = ACTIONS(1407), - [anon_sym___printf] = ACTIONS(1407), - [anon_sym___read_mostly] = ACTIONS(1407), - [anon_sym___must_hold] = ACTIONS(1407), - [anon_sym___ro_after_init] = ACTIONS(1407), - [anon_sym___noreturn] = ACTIONS(1407), - [anon_sym___cold] = ACTIONS(1407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1409), - [anon_sym___declspec] = ACTIONS(1407), - [anon_sym___init] = ACTIONS(1407), - [anon_sym___exit] = ACTIONS(1407), - [anon_sym___cdecl] = ACTIONS(1407), - [anon_sym___clrcall] = ACTIONS(1407), - [anon_sym___stdcall] = ACTIONS(1407), - [anon_sym___fastcall] = ACTIONS(1407), - [anon_sym___thiscall] = ACTIONS(1407), - [anon_sym___vectorcall] = ACTIONS(1407), - [anon_sym_LBRACE] = ACTIONS(1409), - [anon_sym_signed] = ACTIONS(1407), - [anon_sym_unsigned] = ACTIONS(1407), - [anon_sym_long] = ACTIONS(1407), - [anon_sym_short] = ACTIONS(1407), - [anon_sym_static] = ACTIONS(1407), - [anon_sym_auto] = ACTIONS(1407), - [anon_sym_register] = ACTIONS(1407), - [anon_sym_inline] = ACTIONS(1407), - [anon_sym___inline] = ACTIONS(1407), - [anon_sym___inline__] = ACTIONS(1407), - [anon_sym___forceinline] = ACTIONS(1407), - [anon_sym_thread_local] = ACTIONS(1407), - [anon_sym___thread] = ACTIONS(1407), - [anon_sym_const] = ACTIONS(1407), - [anon_sym_constexpr] = ACTIONS(1407), - [anon_sym_volatile] = ACTIONS(1407), - [anon_sym_restrict] = ACTIONS(1407), - [anon_sym___restrict__] = ACTIONS(1407), - [anon_sym__Atomic] = ACTIONS(1407), - [anon_sym__Noreturn] = ACTIONS(1407), - [anon_sym_noreturn] = ACTIONS(1407), - [anon_sym_alignas] = ACTIONS(1407), - [anon_sym__Alignas] = ACTIONS(1407), - [sym_primitive_type] = ACTIONS(1407), - [anon_sym_enum] = ACTIONS(1407), - [anon_sym_struct] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1407), - [anon_sym_if] = ACTIONS(1407), - [anon_sym_switch] = ACTIONS(1407), - [anon_sym_case] = ACTIONS(1407), - [anon_sym_default] = ACTIONS(1407), - [anon_sym_while] = ACTIONS(1407), - [anon_sym_do] = ACTIONS(1407), - [anon_sym_for] = ACTIONS(1407), - [anon_sym_return] = ACTIONS(1407), - [anon_sym_break] = ACTIONS(1407), - [anon_sym_continue] = ACTIONS(1407), - [anon_sym_goto] = ACTIONS(1407), - [anon_sym___try] = ACTIONS(1407), - [anon_sym___leave] = ACTIONS(1407), - [anon_sym_DASH_DASH] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1409), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym___alignof__] = ACTIONS(1407), - [anon_sym___alignof] = ACTIONS(1407), - [anon_sym__alignof] = ACTIONS(1407), - [anon_sym_alignof] = ACTIONS(1407), - [anon_sym__Alignof] = ACTIONS(1407), - [anon_sym_offsetof] = ACTIONS(1407), - [anon_sym__Generic] = ACTIONS(1407), - [anon_sym_asm] = ACTIONS(1407), - [anon_sym___asm__] = ACTIONS(1407), - [sym_number_literal] = ACTIONS(1409), - [anon_sym_L_SQUOTE] = ACTIONS(1409), - [anon_sym_u_SQUOTE] = ACTIONS(1409), - [anon_sym_U_SQUOTE] = ACTIONS(1409), - [anon_sym_u8_SQUOTE] = ACTIONS(1409), - [anon_sym_SQUOTE] = ACTIONS(1409), - [anon_sym_L_DQUOTE] = ACTIONS(1409), - [anon_sym_u_DQUOTE] = ACTIONS(1409), - [anon_sym_U_DQUOTE] = ACTIONS(1409), - [anon_sym_u8_DQUOTE] = ACTIONS(1409), - [anon_sym_DQUOTE] = ACTIONS(1409), - [sym_true] = ACTIONS(1407), - [sym_false] = ACTIONS(1407), - [anon_sym_NULL] = ACTIONS(1407), - [anon_sym_nullptr] = ACTIONS(1407), - [sym_comment] = ACTIONS(3), + [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), + [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_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), }, [322] = { - [sym_identifier] = ACTIONS(1407), - [aux_sym_preproc_include_token1] = ACTIONS(1407), - [aux_sym_preproc_def_token1] = ACTIONS(1407), - [aux_sym_preproc_if_token1] = ACTIONS(1407), - [aux_sym_preproc_if_token2] = ACTIONS(1407), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1407), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1407), - [sym_preproc_directive] = ACTIONS(1407), - [anon_sym_LPAREN2] = ACTIONS(1409), - [anon_sym_BANG] = ACTIONS(1409), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1407), - [anon_sym_PLUS] = ACTIONS(1407), - [anon_sym_STAR] = ACTIONS(1409), - [anon_sym_AMP] = ACTIONS(1409), - [anon_sym_SEMI] = ACTIONS(1409), - [anon_sym___extension__] = ACTIONS(1407), - [anon_sym_typedef] = ACTIONS(1407), - [anon_sym_extern] = ACTIONS(1407), - [anon_sym___attribute__] = ACTIONS(1407), - [anon_sym___scanf] = ACTIONS(1407), - [anon_sym___printf] = ACTIONS(1407), - [anon_sym___read_mostly] = ACTIONS(1407), - [anon_sym___must_hold] = ACTIONS(1407), - [anon_sym___ro_after_init] = ACTIONS(1407), - [anon_sym___noreturn] = ACTIONS(1407), - [anon_sym___cold] = ACTIONS(1407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1409), - [anon_sym___declspec] = ACTIONS(1407), - [anon_sym___init] = ACTIONS(1407), - [anon_sym___exit] = ACTIONS(1407), - [anon_sym___cdecl] = ACTIONS(1407), - [anon_sym___clrcall] = ACTIONS(1407), - [anon_sym___stdcall] = ACTIONS(1407), - [anon_sym___fastcall] = ACTIONS(1407), - [anon_sym___thiscall] = ACTIONS(1407), - [anon_sym___vectorcall] = ACTIONS(1407), - [anon_sym_LBRACE] = ACTIONS(1409), - [anon_sym_signed] = ACTIONS(1407), - [anon_sym_unsigned] = ACTIONS(1407), - [anon_sym_long] = ACTIONS(1407), - [anon_sym_short] = ACTIONS(1407), - [anon_sym_static] = ACTIONS(1407), - [anon_sym_auto] = ACTIONS(1407), - [anon_sym_register] = ACTIONS(1407), - [anon_sym_inline] = ACTIONS(1407), - [anon_sym___inline] = ACTIONS(1407), - [anon_sym___inline__] = ACTIONS(1407), - [anon_sym___forceinline] = ACTIONS(1407), - [anon_sym_thread_local] = ACTIONS(1407), - [anon_sym___thread] = ACTIONS(1407), - [anon_sym_const] = ACTIONS(1407), - [anon_sym_constexpr] = ACTIONS(1407), - [anon_sym_volatile] = ACTIONS(1407), - [anon_sym_restrict] = ACTIONS(1407), - [anon_sym___restrict__] = ACTIONS(1407), - [anon_sym__Atomic] = ACTIONS(1407), - [anon_sym__Noreturn] = ACTIONS(1407), - [anon_sym_noreturn] = ACTIONS(1407), - [anon_sym_alignas] = ACTIONS(1407), - [anon_sym__Alignas] = ACTIONS(1407), - [sym_primitive_type] = ACTIONS(1407), - [anon_sym_enum] = ACTIONS(1407), - [anon_sym_struct] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1407), - [anon_sym_if] = ACTIONS(1407), - [anon_sym_switch] = ACTIONS(1407), - [anon_sym_case] = ACTIONS(1407), - [anon_sym_default] = ACTIONS(1407), - [anon_sym_while] = ACTIONS(1407), - [anon_sym_do] = ACTIONS(1407), - [anon_sym_for] = ACTIONS(1407), - [anon_sym_return] = ACTIONS(1407), - [anon_sym_break] = ACTIONS(1407), - [anon_sym_continue] = ACTIONS(1407), - [anon_sym_goto] = ACTIONS(1407), - [anon_sym___try] = ACTIONS(1407), - [anon_sym___leave] = ACTIONS(1407), - [anon_sym_DASH_DASH] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1409), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym___alignof__] = ACTIONS(1407), - [anon_sym___alignof] = ACTIONS(1407), - [anon_sym__alignof] = ACTIONS(1407), - [anon_sym_alignof] = ACTIONS(1407), - [anon_sym__Alignof] = ACTIONS(1407), - [anon_sym_offsetof] = ACTIONS(1407), - [anon_sym__Generic] = ACTIONS(1407), - [anon_sym_asm] = ACTIONS(1407), - [anon_sym___asm__] = ACTIONS(1407), - [sym_number_literal] = ACTIONS(1409), - [anon_sym_L_SQUOTE] = ACTIONS(1409), - [anon_sym_u_SQUOTE] = ACTIONS(1409), - [anon_sym_U_SQUOTE] = ACTIONS(1409), - [anon_sym_u8_SQUOTE] = ACTIONS(1409), - [anon_sym_SQUOTE] = ACTIONS(1409), - [anon_sym_L_DQUOTE] = ACTIONS(1409), - [anon_sym_u_DQUOTE] = ACTIONS(1409), - [anon_sym_U_DQUOTE] = ACTIONS(1409), - [anon_sym_u8_DQUOTE] = ACTIONS(1409), - [anon_sym_DQUOTE] = ACTIONS(1409), - [sym_true] = ACTIONS(1407), - [sym_false] = ACTIONS(1407), - [anon_sym_NULL] = ACTIONS(1407), - [anon_sym_nullptr] = ACTIONS(1407), - [sym_comment] = ACTIONS(3), + [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), }, [323] = { - [sym_identifier] = ACTIONS(1385), - [aux_sym_preproc_include_token1] = ACTIONS(1385), - [aux_sym_preproc_def_token1] = ACTIONS(1385), - [aux_sym_preproc_if_token1] = ACTIONS(1385), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1385), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1385), - [sym_preproc_directive] = ACTIONS(1385), - [anon_sym_LPAREN2] = ACTIONS(1387), - [anon_sym_BANG] = ACTIONS(1387), - [anon_sym_TILDE] = ACTIONS(1387), - [anon_sym_DASH] = ACTIONS(1385), - [anon_sym_PLUS] = ACTIONS(1385), - [anon_sym_STAR] = ACTIONS(1387), - [anon_sym_AMP] = ACTIONS(1387), - [anon_sym_SEMI] = ACTIONS(1387), - [anon_sym___extension__] = ACTIONS(1385), - [anon_sym_typedef] = ACTIONS(1385), - [anon_sym_extern] = ACTIONS(1385), - [anon_sym___attribute__] = ACTIONS(1385), - [anon_sym___scanf] = ACTIONS(1385), - [anon_sym___printf] = ACTIONS(1385), - [anon_sym___read_mostly] = ACTIONS(1385), - [anon_sym___must_hold] = ACTIONS(1385), - [anon_sym___ro_after_init] = ACTIONS(1385), - [anon_sym___noreturn] = ACTIONS(1385), - [anon_sym___cold] = ACTIONS(1385), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1387), - [anon_sym___declspec] = ACTIONS(1385), - [anon_sym___init] = ACTIONS(1385), - [anon_sym___exit] = ACTIONS(1385), - [anon_sym___cdecl] = ACTIONS(1385), - [anon_sym___clrcall] = ACTIONS(1385), - [anon_sym___stdcall] = ACTIONS(1385), - [anon_sym___fastcall] = ACTIONS(1385), - [anon_sym___thiscall] = ACTIONS(1385), - [anon_sym___vectorcall] = ACTIONS(1385), - [anon_sym_LBRACE] = ACTIONS(1387), - [anon_sym_RBRACE] = ACTIONS(1387), - [anon_sym_signed] = ACTIONS(1385), - [anon_sym_unsigned] = ACTIONS(1385), - [anon_sym_long] = ACTIONS(1385), - [anon_sym_short] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1385), - [anon_sym_auto] = ACTIONS(1385), - [anon_sym_register] = ACTIONS(1385), - [anon_sym_inline] = ACTIONS(1385), - [anon_sym___inline] = ACTIONS(1385), - [anon_sym___inline__] = ACTIONS(1385), - [anon_sym___forceinline] = ACTIONS(1385), - [anon_sym_thread_local] = ACTIONS(1385), - [anon_sym___thread] = ACTIONS(1385), - [anon_sym_const] = ACTIONS(1385), - [anon_sym_constexpr] = ACTIONS(1385), - [anon_sym_volatile] = ACTIONS(1385), - [anon_sym_restrict] = ACTIONS(1385), - [anon_sym___restrict__] = ACTIONS(1385), - [anon_sym__Atomic] = ACTIONS(1385), - [anon_sym__Noreturn] = ACTIONS(1385), - [anon_sym_noreturn] = ACTIONS(1385), - [anon_sym_alignas] = ACTIONS(1385), - [anon_sym__Alignas] = ACTIONS(1385), - [sym_primitive_type] = ACTIONS(1385), - [anon_sym_enum] = ACTIONS(1385), - [anon_sym_struct] = ACTIONS(1385), - [anon_sym_union] = ACTIONS(1385), - [anon_sym_if] = ACTIONS(1385), - [anon_sym_switch] = ACTIONS(1385), - [anon_sym_case] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1385), - [anon_sym_while] = ACTIONS(1385), - [anon_sym_do] = ACTIONS(1385), - [anon_sym_for] = ACTIONS(1385), - [anon_sym_return] = ACTIONS(1385), - [anon_sym_break] = ACTIONS(1385), - [anon_sym_continue] = ACTIONS(1385), - [anon_sym_goto] = ACTIONS(1385), - [anon_sym___try] = ACTIONS(1385), - [anon_sym___leave] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1387), - [anon_sym_PLUS_PLUS] = ACTIONS(1387), - [anon_sym_sizeof] = ACTIONS(1385), - [anon_sym___alignof__] = ACTIONS(1385), - [anon_sym___alignof] = ACTIONS(1385), - [anon_sym__alignof] = ACTIONS(1385), - [anon_sym_alignof] = ACTIONS(1385), - [anon_sym__Alignof] = ACTIONS(1385), - [anon_sym_offsetof] = ACTIONS(1385), - [anon_sym__Generic] = ACTIONS(1385), - [anon_sym_asm] = ACTIONS(1385), - [anon_sym___asm__] = ACTIONS(1385), - [sym_number_literal] = ACTIONS(1387), - [anon_sym_L_SQUOTE] = ACTIONS(1387), - [anon_sym_u_SQUOTE] = ACTIONS(1387), - [anon_sym_U_SQUOTE] = ACTIONS(1387), - [anon_sym_u8_SQUOTE] = ACTIONS(1387), - [anon_sym_SQUOTE] = ACTIONS(1387), - [anon_sym_L_DQUOTE] = ACTIONS(1387), - [anon_sym_u_DQUOTE] = ACTIONS(1387), - [anon_sym_U_DQUOTE] = ACTIONS(1387), - [anon_sym_u8_DQUOTE] = ACTIONS(1387), - [anon_sym_DQUOTE] = ACTIONS(1387), - [sym_true] = ACTIONS(1385), - [sym_false] = ACTIONS(1385), - [anon_sym_NULL] = ACTIONS(1385), - [anon_sym_nullptr] = ACTIONS(1385), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [324] = { - [sym_identifier] = ACTIONS(1389), - [aux_sym_preproc_include_token1] = ACTIONS(1389), - [aux_sym_preproc_def_token1] = ACTIONS(1389), - [aux_sym_preproc_if_token1] = ACTIONS(1389), - [aux_sym_preproc_if_token2] = ACTIONS(1389), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1389), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1389), - [sym_preproc_directive] = ACTIONS(1389), - [anon_sym_LPAREN2] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1391), - [anon_sym_TILDE] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(1389), - [anon_sym_STAR] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1391), - [anon_sym_SEMI] = ACTIONS(1391), - [anon_sym___extension__] = ACTIONS(1389), - [anon_sym_typedef] = ACTIONS(1389), - [anon_sym_extern] = ACTIONS(1389), - [anon_sym___attribute__] = ACTIONS(1389), - [anon_sym___scanf] = ACTIONS(1389), - [anon_sym___printf] = ACTIONS(1389), - [anon_sym___read_mostly] = ACTIONS(1389), - [anon_sym___must_hold] = ACTIONS(1389), - [anon_sym___ro_after_init] = ACTIONS(1389), - [anon_sym___noreturn] = ACTIONS(1389), - [anon_sym___cold] = ACTIONS(1389), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1391), - [anon_sym___declspec] = ACTIONS(1389), - [anon_sym___init] = ACTIONS(1389), - [anon_sym___exit] = ACTIONS(1389), - [anon_sym___cdecl] = ACTIONS(1389), - [anon_sym___clrcall] = ACTIONS(1389), - [anon_sym___stdcall] = ACTIONS(1389), - [anon_sym___fastcall] = ACTIONS(1389), - [anon_sym___thiscall] = ACTIONS(1389), - [anon_sym___vectorcall] = ACTIONS(1389), - [anon_sym_LBRACE] = ACTIONS(1391), - [anon_sym_signed] = ACTIONS(1389), - [anon_sym_unsigned] = ACTIONS(1389), - [anon_sym_long] = ACTIONS(1389), - [anon_sym_short] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1389), - [anon_sym_auto] = ACTIONS(1389), - [anon_sym_register] = ACTIONS(1389), - [anon_sym_inline] = ACTIONS(1389), - [anon_sym___inline] = ACTIONS(1389), - [anon_sym___inline__] = ACTIONS(1389), - [anon_sym___forceinline] = ACTIONS(1389), - [anon_sym_thread_local] = ACTIONS(1389), - [anon_sym___thread] = ACTIONS(1389), - [anon_sym_const] = ACTIONS(1389), - [anon_sym_constexpr] = ACTIONS(1389), - [anon_sym_volatile] = ACTIONS(1389), - [anon_sym_restrict] = ACTIONS(1389), - [anon_sym___restrict__] = ACTIONS(1389), - [anon_sym__Atomic] = ACTIONS(1389), - [anon_sym__Noreturn] = ACTIONS(1389), - [anon_sym_noreturn] = ACTIONS(1389), - [anon_sym_alignas] = ACTIONS(1389), - [anon_sym__Alignas] = ACTIONS(1389), - [sym_primitive_type] = ACTIONS(1389), - [anon_sym_enum] = ACTIONS(1389), - [anon_sym_struct] = ACTIONS(1389), - [anon_sym_union] = ACTIONS(1389), - [anon_sym_if] = ACTIONS(1389), - [anon_sym_switch] = ACTIONS(1389), - [anon_sym_case] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1389), - [anon_sym_while] = ACTIONS(1389), - [anon_sym_do] = ACTIONS(1389), - [anon_sym_for] = ACTIONS(1389), - [anon_sym_return] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1389), - [anon_sym_continue] = ACTIONS(1389), - [anon_sym_goto] = ACTIONS(1389), - [anon_sym___try] = ACTIONS(1389), - [anon_sym___leave] = ACTIONS(1389), - [anon_sym_DASH_DASH] = ACTIONS(1391), - [anon_sym_PLUS_PLUS] = ACTIONS(1391), - [anon_sym_sizeof] = ACTIONS(1389), - [anon_sym___alignof__] = ACTIONS(1389), - [anon_sym___alignof] = ACTIONS(1389), - [anon_sym__alignof] = ACTIONS(1389), - [anon_sym_alignof] = ACTIONS(1389), - [anon_sym__Alignof] = ACTIONS(1389), - [anon_sym_offsetof] = ACTIONS(1389), - [anon_sym__Generic] = ACTIONS(1389), - [anon_sym_asm] = ACTIONS(1389), - [anon_sym___asm__] = ACTIONS(1389), - [sym_number_literal] = ACTIONS(1391), - [anon_sym_L_SQUOTE] = ACTIONS(1391), - [anon_sym_u_SQUOTE] = ACTIONS(1391), - [anon_sym_U_SQUOTE] = ACTIONS(1391), - [anon_sym_u8_SQUOTE] = ACTIONS(1391), - [anon_sym_SQUOTE] = ACTIONS(1391), - [anon_sym_L_DQUOTE] = ACTIONS(1391), - [anon_sym_u_DQUOTE] = ACTIONS(1391), - [anon_sym_U_DQUOTE] = ACTIONS(1391), - [anon_sym_u8_DQUOTE] = ACTIONS(1391), - [anon_sym_DQUOTE] = ACTIONS(1391), - [sym_true] = ACTIONS(1389), - [sym_false] = ACTIONS(1389), - [anon_sym_NULL] = ACTIONS(1389), - [anon_sym_nullptr] = ACTIONS(1389), - [sym_comment] = ACTIONS(3), + [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(1381), - [aux_sym_preproc_include_token1] = ACTIONS(1381), - [aux_sym_preproc_def_token1] = ACTIONS(1381), - [aux_sym_preproc_if_token1] = ACTIONS(1381), - [aux_sym_preproc_if_token2] = ACTIONS(1381), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1381), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1381), - [sym_preproc_directive] = ACTIONS(1381), - [anon_sym_LPAREN2] = ACTIONS(1383), - [anon_sym_BANG] = ACTIONS(1383), - [anon_sym_TILDE] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1381), - [anon_sym_PLUS] = ACTIONS(1381), - [anon_sym_STAR] = ACTIONS(1383), - [anon_sym_AMP] = ACTIONS(1383), - [anon_sym_SEMI] = ACTIONS(1383), - [anon_sym___extension__] = ACTIONS(1381), - [anon_sym_typedef] = ACTIONS(1381), - [anon_sym_extern] = ACTIONS(1381), - [anon_sym___attribute__] = ACTIONS(1381), - [anon_sym___scanf] = ACTIONS(1381), - [anon_sym___printf] = ACTIONS(1381), - [anon_sym___read_mostly] = ACTIONS(1381), - [anon_sym___must_hold] = ACTIONS(1381), - [anon_sym___ro_after_init] = ACTIONS(1381), - [anon_sym___noreturn] = ACTIONS(1381), - [anon_sym___cold] = ACTIONS(1381), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1383), - [anon_sym___declspec] = ACTIONS(1381), - [anon_sym___init] = ACTIONS(1381), - [anon_sym___exit] = ACTIONS(1381), - [anon_sym___cdecl] = ACTIONS(1381), - [anon_sym___clrcall] = ACTIONS(1381), - [anon_sym___stdcall] = ACTIONS(1381), - [anon_sym___fastcall] = ACTIONS(1381), - [anon_sym___thiscall] = ACTIONS(1381), - [anon_sym___vectorcall] = ACTIONS(1381), - [anon_sym_LBRACE] = ACTIONS(1383), - [anon_sym_signed] = ACTIONS(1381), - [anon_sym_unsigned] = ACTIONS(1381), - [anon_sym_long] = ACTIONS(1381), - [anon_sym_short] = ACTIONS(1381), - [anon_sym_static] = ACTIONS(1381), - [anon_sym_auto] = ACTIONS(1381), - [anon_sym_register] = ACTIONS(1381), - [anon_sym_inline] = ACTIONS(1381), - [anon_sym___inline] = ACTIONS(1381), - [anon_sym___inline__] = ACTIONS(1381), - [anon_sym___forceinline] = ACTIONS(1381), - [anon_sym_thread_local] = ACTIONS(1381), - [anon_sym___thread] = ACTIONS(1381), - [anon_sym_const] = ACTIONS(1381), - [anon_sym_constexpr] = ACTIONS(1381), - [anon_sym_volatile] = ACTIONS(1381), - [anon_sym_restrict] = ACTIONS(1381), - [anon_sym___restrict__] = ACTIONS(1381), - [anon_sym__Atomic] = ACTIONS(1381), - [anon_sym__Noreturn] = ACTIONS(1381), - [anon_sym_noreturn] = ACTIONS(1381), - [anon_sym_alignas] = ACTIONS(1381), - [anon_sym__Alignas] = ACTIONS(1381), - [sym_primitive_type] = ACTIONS(1381), - [anon_sym_enum] = ACTIONS(1381), - [anon_sym_struct] = ACTIONS(1381), - [anon_sym_union] = ACTIONS(1381), - [anon_sym_if] = ACTIONS(1381), - [anon_sym_switch] = ACTIONS(1381), - [anon_sym_case] = ACTIONS(1381), - [anon_sym_default] = ACTIONS(1381), - [anon_sym_while] = ACTIONS(1381), - [anon_sym_do] = ACTIONS(1381), - [anon_sym_for] = ACTIONS(1381), - [anon_sym_return] = ACTIONS(1381), - [anon_sym_break] = ACTIONS(1381), - [anon_sym_continue] = ACTIONS(1381), - [anon_sym_goto] = ACTIONS(1381), - [anon_sym___try] = ACTIONS(1381), - [anon_sym___leave] = ACTIONS(1381), - [anon_sym_DASH_DASH] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1383), - [anon_sym_sizeof] = ACTIONS(1381), - [anon_sym___alignof__] = ACTIONS(1381), - [anon_sym___alignof] = ACTIONS(1381), - [anon_sym__alignof] = ACTIONS(1381), - [anon_sym_alignof] = ACTIONS(1381), - [anon_sym__Alignof] = ACTIONS(1381), - [anon_sym_offsetof] = ACTIONS(1381), - [anon_sym__Generic] = ACTIONS(1381), - [anon_sym_asm] = ACTIONS(1381), - [anon_sym___asm__] = ACTIONS(1381), - [sym_number_literal] = ACTIONS(1383), - [anon_sym_L_SQUOTE] = ACTIONS(1383), - [anon_sym_u_SQUOTE] = ACTIONS(1383), - [anon_sym_U_SQUOTE] = ACTIONS(1383), - [anon_sym_u8_SQUOTE] = ACTIONS(1383), - [anon_sym_SQUOTE] = ACTIONS(1383), - [anon_sym_L_DQUOTE] = ACTIONS(1383), - [anon_sym_u_DQUOTE] = ACTIONS(1383), - [anon_sym_U_DQUOTE] = ACTIONS(1383), - [anon_sym_u8_DQUOTE] = ACTIONS(1383), - [anon_sym_DQUOTE] = ACTIONS(1383), - [sym_true] = ACTIONS(1381), - [sym_false] = ACTIONS(1381), - [anon_sym_NULL] = ACTIONS(1381), - [anon_sym_nullptr] = ACTIONS(1381), - [sym_comment] = ACTIONS(3), + [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(1377), - [aux_sym_preproc_include_token1] = ACTIONS(1377), - [aux_sym_preproc_def_token1] = ACTIONS(1377), - [aux_sym_preproc_if_token1] = ACTIONS(1377), - [aux_sym_preproc_if_token2] = ACTIONS(1377), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1377), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1377), - [sym_preproc_directive] = ACTIONS(1377), - [anon_sym_LPAREN2] = ACTIONS(1379), - [anon_sym_BANG] = ACTIONS(1379), - [anon_sym_TILDE] = ACTIONS(1379), - [anon_sym_DASH] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1377), - [anon_sym_STAR] = ACTIONS(1379), - [anon_sym_AMP] = ACTIONS(1379), - [anon_sym_SEMI] = ACTIONS(1379), - [anon_sym___extension__] = ACTIONS(1377), - [anon_sym_typedef] = ACTIONS(1377), - [anon_sym_extern] = ACTIONS(1377), - [anon_sym___attribute__] = ACTIONS(1377), - [anon_sym___scanf] = ACTIONS(1377), - [anon_sym___printf] = ACTIONS(1377), - [anon_sym___read_mostly] = ACTIONS(1377), - [anon_sym___must_hold] = ACTIONS(1377), - [anon_sym___ro_after_init] = ACTIONS(1377), - [anon_sym___noreturn] = ACTIONS(1377), - [anon_sym___cold] = ACTIONS(1377), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1379), - [anon_sym___declspec] = ACTIONS(1377), - [anon_sym___init] = ACTIONS(1377), - [anon_sym___exit] = ACTIONS(1377), - [anon_sym___cdecl] = ACTIONS(1377), - [anon_sym___clrcall] = ACTIONS(1377), - [anon_sym___stdcall] = ACTIONS(1377), - [anon_sym___fastcall] = ACTIONS(1377), - [anon_sym___thiscall] = ACTIONS(1377), - [anon_sym___vectorcall] = ACTIONS(1377), - [anon_sym_LBRACE] = ACTIONS(1379), - [anon_sym_signed] = ACTIONS(1377), - [anon_sym_unsigned] = ACTIONS(1377), - [anon_sym_long] = ACTIONS(1377), - [anon_sym_short] = ACTIONS(1377), - [anon_sym_static] = ACTIONS(1377), - [anon_sym_auto] = ACTIONS(1377), - [anon_sym_register] = ACTIONS(1377), - [anon_sym_inline] = ACTIONS(1377), - [anon_sym___inline] = ACTIONS(1377), - [anon_sym___inline__] = ACTIONS(1377), - [anon_sym___forceinline] = ACTIONS(1377), - [anon_sym_thread_local] = ACTIONS(1377), - [anon_sym___thread] = ACTIONS(1377), - [anon_sym_const] = ACTIONS(1377), - [anon_sym_constexpr] = ACTIONS(1377), - [anon_sym_volatile] = ACTIONS(1377), - [anon_sym_restrict] = ACTIONS(1377), - [anon_sym___restrict__] = ACTIONS(1377), - [anon_sym__Atomic] = ACTIONS(1377), - [anon_sym__Noreturn] = ACTIONS(1377), - [anon_sym_noreturn] = ACTIONS(1377), - [anon_sym_alignas] = ACTIONS(1377), - [anon_sym__Alignas] = ACTIONS(1377), - [sym_primitive_type] = ACTIONS(1377), - [anon_sym_enum] = ACTIONS(1377), - [anon_sym_struct] = ACTIONS(1377), - [anon_sym_union] = ACTIONS(1377), - [anon_sym_if] = ACTIONS(1377), - [anon_sym_switch] = ACTIONS(1377), - [anon_sym_case] = ACTIONS(1377), - [anon_sym_default] = ACTIONS(1377), - [anon_sym_while] = ACTIONS(1377), - [anon_sym_do] = ACTIONS(1377), - [anon_sym_for] = ACTIONS(1377), - [anon_sym_return] = ACTIONS(1377), - [anon_sym_break] = ACTIONS(1377), - [anon_sym_continue] = ACTIONS(1377), - [anon_sym_goto] = ACTIONS(1377), - [anon_sym___try] = ACTIONS(1377), - [anon_sym___leave] = ACTIONS(1377), - [anon_sym_DASH_DASH] = ACTIONS(1379), - [anon_sym_PLUS_PLUS] = ACTIONS(1379), - [anon_sym_sizeof] = ACTIONS(1377), - [anon_sym___alignof__] = ACTIONS(1377), - [anon_sym___alignof] = ACTIONS(1377), - [anon_sym__alignof] = ACTIONS(1377), - [anon_sym_alignof] = ACTIONS(1377), - [anon_sym__Alignof] = ACTIONS(1377), - [anon_sym_offsetof] = ACTIONS(1377), - [anon_sym__Generic] = ACTIONS(1377), - [anon_sym_asm] = ACTIONS(1377), - [anon_sym___asm__] = ACTIONS(1377), - [sym_number_literal] = ACTIONS(1379), - [anon_sym_L_SQUOTE] = ACTIONS(1379), - [anon_sym_u_SQUOTE] = ACTIONS(1379), - [anon_sym_U_SQUOTE] = ACTIONS(1379), - [anon_sym_u8_SQUOTE] = ACTIONS(1379), - [anon_sym_SQUOTE] = ACTIONS(1379), - [anon_sym_L_DQUOTE] = ACTIONS(1379), - [anon_sym_u_DQUOTE] = ACTIONS(1379), - [anon_sym_U_DQUOTE] = ACTIONS(1379), - [anon_sym_u8_DQUOTE] = ACTIONS(1379), - [anon_sym_DQUOTE] = ACTIONS(1379), - [sym_true] = ACTIONS(1377), - [sym_false] = ACTIONS(1377), - [anon_sym_NULL] = ACTIONS(1377), - [anon_sym_nullptr] = ACTIONS(1377), - [sym_comment] = ACTIONS(3), + [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(1373), - [aux_sym_preproc_include_token1] = ACTIONS(1373), - [aux_sym_preproc_def_token1] = ACTIONS(1373), - [aux_sym_preproc_if_token1] = ACTIONS(1373), - [aux_sym_preproc_if_token2] = ACTIONS(1373), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1373), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1373), - [sym_preproc_directive] = ACTIONS(1373), - [anon_sym_LPAREN2] = ACTIONS(1375), - [anon_sym_BANG] = ACTIONS(1375), - [anon_sym_TILDE] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1373), - [anon_sym_PLUS] = ACTIONS(1373), - [anon_sym_STAR] = ACTIONS(1375), - [anon_sym_AMP] = ACTIONS(1375), - [anon_sym_SEMI] = ACTIONS(1375), - [anon_sym___extension__] = ACTIONS(1373), - [anon_sym_typedef] = ACTIONS(1373), - [anon_sym_extern] = ACTIONS(1373), - [anon_sym___attribute__] = ACTIONS(1373), - [anon_sym___scanf] = ACTIONS(1373), - [anon_sym___printf] = ACTIONS(1373), - [anon_sym___read_mostly] = ACTIONS(1373), - [anon_sym___must_hold] = ACTIONS(1373), - [anon_sym___ro_after_init] = ACTIONS(1373), - [anon_sym___noreturn] = ACTIONS(1373), - [anon_sym___cold] = ACTIONS(1373), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1375), - [anon_sym___declspec] = ACTIONS(1373), - [anon_sym___init] = ACTIONS(1373), - [anon_sym___exit] = ACTIONS(1373), - [anon_sym___cdecl] = ACTIONS(1373), - [anon_sym___clrcall] = ACTIONS(1373), - [anon_sym___stdcall] = ACTIONS(1373), - [anon_sym___fastcall] = ACTIONS(1373), - [anon_sym___thiscall] = ACTIONS(1373), - [anon_sym___vectorcall] = ACTIONS(1373), - [anon_sym_LBRACE] = ACTIONS(1375), - [anon_sym_signed] = ACTIONS(1373), - [anon_sym_unsigned] = ACTIONS(1373), - [anon_sym_long] = ACTIONS(1373), - [anon_sym_short] = ACTIONS(1373), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_auto] = ACTIONS(1373), - [anon_sym_register] = ACTIONS(1373), - [anon_sym_inline] = ACTIONS(1373), - [anon_sym___inline] = ACTIONS(1373), - [anon_sym___inline__] = ACTIONS(1373), - [anon_sym___forceinline] = ACTIONS(1373), - [anon_sym_thread_local] = ACTIONS(1373), - [anon_sym___thread] = ACTIONS(1373), - [anon_sym_const] = ACTIONS(1373), - [anon_sym_constexpr] = ACTIONS(1373), - [anon_sym_volatile] = ACTIONS(1373), - [anon_sym_restrict] = ACTIONS(1373), - [anon_sym___restrict__] = ACTIONS(1373), - [anon_sym__Atomic] = ACTIONS(1373), - [anon_sym__Noreturn] = ACTIONS(1373), - [anon_sym_noreturn] = ACTIONS(1373), - [anon_sym_alignas] = ACTIONS(1373), - [anon_sym__Alignas] = ACTIONS(1373), - [sym_primitive_type] = ACTIONS(1373), - [anon_sym_enum] = ACTIONS(1373), - [anon_sym_struct] = ACTIONS(1373), - [anon_sym_union] = ACTIONS(1373), - [anon_sym_if] = ACTIONS(1373), - [anon_sym_switch] = ACTIONS(1373), - [anon_sym_case] = ACTIONS(1373), - [anon_sym_default] = ACTIONS(1373), - [anon_sym_while] = ACTIONS(1373), - [anon_sym_do] = ACTIONS(1373), - [anon_sym_for] = ACTIONS(1373), - [anon_sym_return] = ACTIONS(1373), - [anon_sym_break] = ACTIONS(1373), - [anon_sym_continue] = ACTIONS(1373), - [anon_sym_goto] = ACTIONS(1373), - [anon_sym___try] = ACTIONS(1373), - [anon_sym___leave] = ACTIONS(1373), - [anon_sym_DASH_DASH] = ACTIONS(1375), - [anon_sym_PLUS_PLUS] = ACTIONS(1375), - [anon_sym_sizeof] = ACTIONS(1373), - [anon_sym___alignof__] = ACTIONS(1373), - [anon_sym___alignof] = ACTIONS(1373), - [anon_sym__alignof] = ACTIONS(1373), - [anon_sym_alignof] = ACTIONS(1373), - [anon_sym__Alignof] = ACTIONS(1373), - [anon_sym_offsetof] = ACTIONS(1373), - [anon_sym__Generic] = ACTIONS(1373), - [anon_sym_asm] = ACTIONS(1373), - [anon_sym___asm__] = ACTIONS(1373), - [sym_number_literal] = ACTIONS(1375), - [anon_sym_L_SQUOTE] = ACTIONS(1375), - [anon_sym_u_SQUOTE] = ACTIONS(1375), - [anon_sym_U_SQUOTE] = ACTIONS(1375), - [anon_sym_u8_SQUOTE] = ACTIONS(1375), - [anon_sym_SQUOTE] = ACTIONS(1375), - [anon_sym_L_DQUOTE] = ACTIONS(1375), - [anon_sym_u_DQUOTE] = ACTIONS(1375), - [anon_sym_U_DQUOTE] = ACTIONS(1375), - [anon_sym_u8_DQUOTE] = ACTIONS(1375), - [anon_sym_DQUOTE] = ACTIONS(1375), - [sym_true] = ACTIONS(1373), - [sym_false] = ACTIONS(1373), - [anon_sym_NULL] = ACTIONS(1373), - [anon_sym_nullptr] = ACTIONS(1373), - [sym_comment] = ACTIONS(3), + [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(1357), - [aux_sym_preproc_include_token1] = ACTIONS(1357), - [aux_sym_preproc_def_token1] = ACTIONS(1357), - [aux_sym_preproc_if_token1] = ACTIONS(1357), - [aux_sym_preproc_if_token2] = ACTIONS(1357), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1357), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1357), - [sym_preproc_directive] = ACTIONS(1357), - [anon_sym_LPAREN2] = ACTIONS(1359), - [anon_sym_BANG] = ACTIONS(1359), - [anon_sym_TILDE] = ACTIONS(1359), - [anon_sym_DASH] = ACTIONS(1357), - [anon_sym_PLUS] = ACTIONS(1357), - [anon_sym_STAR] = ACTIONS(1359), - [anon_sym_AMP] = ACTIONS(1359), - [anon_sym_SEMI] = ACTIONS(1359), - [anon_sym___extension__] = ACTIONS(1357), - [anon_sym_typedef] = ACTIONS(1357), - [anon_sym_extern] = ACTIONS(1357), - [anon_sym___attribute__] = ACTIONS(1357), - [anon_sym___scanf] = ACTIONS(1357), - [anon_sym___printf] = ACTIONS(1357), - [anon_sym___read_mostly] = ACTIONS(1357), - [anon_sym___must_hold] = ACTIONS(1357), - [anon_sym___ro_after_init] = ACTIONS(1357), - [anon_sym___noreturn] = ACTIONS(1357), - [anon_sym___cold] = ACTIONS(1357), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1359), - [anon_sym___declspec] = ACTIONS(1357), - [anon_sym___init] = ACTIONS(1357), - [anon_sym___exit] = ACTIONS(1357), - [anon_sym___cdecl] = ACTIONS(1357), - [anon_sym___clrcall] = ACTIONS(1357), - [anon_sym___stdcall] = ACTIONS(1357), - [anon_sym___fastcall] = ACTIONS(1357), - [anon_sym___thiscall] = ACTIONS(1357), - [anon_sym___vectorcall] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(1359), - [anon_sym_signed] = ACTIONS(1357), - [anon_sym_unsigned] = ACTIONS(1357), - [anon_sym_long] = ACTIONS(1357), - [anon_sym_short] = ACTIONS(1357), - [anon_sym_static] = ACTIONS(1357), - [anon_sym_auto] = ACTIONS(1357), - [anon_sym_register] = ACTIONS(1357), - [anon_sym_inline] = ACTIONS(1357), - [anon_sym___inline] = ACTIONS(1357), - [anon_sym___inline__] = ACTIONS(1357), - [anon_sym___forceinline] = ACTIONS(1357), - [anon_sym_thread_local] = ACTIONS(1357), - [anon_sym___thread] = ACTIONS(1357), - [anon_sym_const] = ACTIONS(1357), - [anon_sym_constexpr] = ACTIONS(1357), - [anon_sym_volatile] = ACTIONS(1357), - [anon_sym_restrict] = ACTIONS(1357), - [anon_sym___restrict__] = ACTIONS(1357), - [anon_sym__Atomic] = ACTIONS(1357), - [anon_sym__Noreturn] = ACTIONS(1357), - [anon_sym_noreturn] = ACTIONS(1357), - [anon_sym_alignas] = ACTIONS(1357), - [anon_sym__Alignas] = ACTIONS(1357), - [sym_primitive_type] = ACTIONS(1357), - [anon_sym_enum] = ACTIONS(1357), - [anon_sym_struct] = ACTIONS(1357), - [anon_sym_union] = ACTIONS(1357), - [anon_sym_if] = ACTIONS(1357), - [anon_sym_switch] = ACTIONS(1357), - [anon_sym_case] = ACTIONS(1357), - [anon_sym_default] = ACTIONS(1357), - [anon_sym_while] = ACTIONS(1357), - [anon_sym_do] = ACTIONS(1357), - [anon_sym_for] = ACTIONS(1357), - [anon_sym_return] = ACTIONS(1357), - [anon_sym_break] = ACTIONS(1357), - [anon_sym_continue] = ACTIONS(1357), - [anon_sym_goto] = ACTIONS(1357), - [anon_sym___try] = ACTIONS(1357), - [anon_sym___leave] = ACTIONS(1357), - [anon_sym_DASH_DASH] = ACTIONS(1359), - [anon_sym_PLUS_PLUS] = ACTIONS(1359), - [anon_sym_sizeof] = ACTIONS(1357), - [anon_sym___alignof__] = ACTIONS(1357), - [anon_sym___alignof] = ACTIONS(1357), - [anon_sym__alignof] = ACTIONS(1357), - [anon_sym_alignof] = ACTIONS(1357), - [anon_sym__Alignof] = ACTIONS(1357), - [anon_sym_offsetof] = ACTIONS(1357), - [anon_sym__Generic] = ACTIONS(1357), - [anon_sym_asm] = ACTIONS(1357), - [anon_sym___asm__] = ACTIONS(1357), - [sym_number_literal] = ACTIONS(1359), - [anon_sym_L_SQUOTE] = ACTIONS(1359), - [anon_sym_u_SQUOTE] = ACTIONS(1359), - [anon_sym_U_SQUOTE] = ACTIONS(1359), - [anon_sym_u8_SQUOTE] = ACTIONS(1359), - [anon_sym_SQUOTE] = ACTIONS(1359), - [anon_sym_L_DQUOTE] = ACTIONS(1359), - [anon_sym_u_DQUOTE] = ACTIONS(1359), - [anon_sym_U_DQUOTE] = ACTIONS(1359), - [anon_sym_u8_DQUOTE] = ACTIONS(1359), - [anon_sym_DQUOTE] = ACTIONS(1359), - [sym_true] = ACTIONS(1357), - [sym_false] = ACTIONS(1357), - [anon_sym_NULL] = ACTIONS(1357), - [anon_sym_nullptr] = ACTIONS(1357), - [sym_comment] = ACTIONS(3), + [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(1411), - [aux_sym_preproc_include_token1] = ACTIONS(1411), - [aux_sym_preproc_def_token1] = ACTIONS(1411), - [aux_sym_preproc_if_token1] = ACTIONS(1411), - [aux_sym_preproc_if_token2] = ACTIONS(1411), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1411), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1411), - [sym_preproc_directive] = ACTIONS(1411), - [anon_sym_LPAREN2] = ACTIONS(1413), - [anon_sym_BANG] = ACTIONS(1413), - [anon_sym_TILDE] = ACTIONS(1413), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(1413), - [anon_sym_SEMI] = ACTIONS(1413), - [anon_sym___extension__] = ACTIONS(1411), - [anon_sym_typedef] = ACTIONS(1411), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym___attribute__] = ACTIONS(1411), - [anon_sym___scanf] = ACTIONS(1411), - [anon_sym___printf] = ACTIONS(1411), - [anon_sym___read_mostly] = ACTIONS(1411), - [anon_sym___must_hold] = ACTIONS(1411), - [anon_sym___ro_after_init] = ACTIONS(1411), - [anon_sym___noreturn] = ACTIONS(1411), - [anon_sym___cold] = ACTIONS(1411), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(1411), - [anon_sym___init] = ACTIONS(1411), - [anon_sym___exit] = ACTIONS(1411), - [anon_sym___cdecl] = ACTIONS(1411), - [anon_sym___clrcall] = ACTIONS(1411), - [anon_sym___stdcall] = ACTIONS(1411), - [anon_sym___fastcall] = ACTIONS(1411), - [anon_sym___thiscall] = ACTIONS(1411), - [anon_sym___vectorcall] = ACTIONS(1411), - [anon_sym_LBRACE] = ACTIONS(1413), - [anon_sym_signed] = ACTIONS(1411), - [anon_sym_unsigned] = ACTIONS(1411), - [anon_sym_long] = ACTIONS(1411), - [anon_sym_short] = ACTIONS(1411), - [anon_sym_static] = ACTIONS(1411), - [anon_sym_auto] = ACTIONS(1411), - [anon_sym_register] = ACTIONS(1411), - [anon_sym_inline] = ACTIONS(1411), - [anon_sym___inline] = ACTIONS(1411), - [anon_sym___inline__] = ACTIONS(1411), - [anon_sym___forceinline] = ACTIONS(1411), - [anon_sym_thread_local] = ACTIONS(1411), - [anon_sym___thread] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1411), - [anon_sym_constexpr] = ACTIONS(1411), - [anon_sym_volatile] = ACTIONS(1411), - [anon_sym_restrict] = ACTIONS(1411), - [anon_sym___restrict__] = ACTIONS(1411), - [anon_sym__Atomic] = ACTIONS(1411), - [anon_sym__Noreturn] = ACTIONS(1411), - [anon_sym_noreturn] = ACTIONS(1411), - [anon_sym_alignas] = ACTIONS(1411), - [anon_sym__Alignas] = ACTIONS(1411), - [sym_primitive_type] = ACTIONS(1411), - [anon_sym_enum] = ACTIONS(1411), - [anon_sym_struct] = ACTIONS(1411), - [anon_sym_union] = ACTIONS(1411), - [anon_sym_if] = ACTIONS(1411), - [anon_sym_switch] = ACTIONS(1411), - [anon_sym_case] = ACTIONS(1411), - [anon_sym_default] = ACTIONS(1411), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(1411), - [anon_sym_for] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_break] = ACTIONS(1411), - [anon_sym_continue] = ACTIONS(1411), - [anon_sym_goto] = ACTIONS(1411), - [anon_sym___try] = ACTIONS(1411), - [anon_sym___leave] = ACTIONS(1411), - [anon_sym_DASH_DASH] = ACTIONS(1413), - [anon_sym_PLUS_PLUS] = ACTIONS(1413), - [anon_sym_sizeof] = ACTIONS(1411), - [anon_sym___alignof__] = ACTIONS(1411), - [anon_sym___alignof] = ACTIONS(1411), - [anon_sym__alignof] = ACTIONS(1411), - [anon_sym_alignof] = ACTIONS(1411), - [anon_sym__Alignof] = ACTIONS(1411), - [anon_sym_offsetof] = ACTIONS(1411), - [anon_sym__Generic] = ACTIONS(1411), - [anon_sym_asm] = ACTIONS(1411), - [anon_sym___asm__] = ACTIONS(1411), - [sym_number_literal] = ACTIONS(1413), - [anon_sym_L_SQUOTE] = ACTIONS(1413), - [anon_sym_u_SQUOTE] = ACTIONS(1413), - [anon_sym_U_SQUOTE] = ACTIONS(1413), - [anon_sym_u8_SQUOTE] = ACTIONS(1413), - [anon_sym_SQUOTE] = ACTIONS(1413), - [anon_sym_L_DQUOTE] = ACTIONS(1413), - [anon_sym_u_DQUOTE] = ACTIONS(1413), - [anon_sym_U_DQUOTE] = ACTIONS(1413), - [anon_sym_u8_DQUOTE] = ACTIONS(1413), - [anon_sym_DQUOTE] = ACTIONS(1413), - [sym_true] = ACTIONS(1411), - [sym_false] = ACTIONS(1411), - [anon_sym_NULL] = ACTIONS(1411), - [anon_sym_nullptr] = ACTIONS(1411), - [sym_comment] = ACTIONS(3), + [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(1365), - [aux_sym_preproc_include_token1] = ACTIONS(1365), - [aux_sym_preproc_def_token1] = ACTIONS(1365), - [aux_sym_preproc_if_token1] = ACTIONS(1365), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1365), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1365), - [sym_preproc_directive] = ACTIONS(1365), - [anon_sym_LPAREN2] = ACTIONS(1367), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_DASH] = ACTIONS(1365), - [anon_sym_PLUS] = ACTIONS(1365), - [anon_sym_STAR] = ACTIONS(1367), - [anon_sym_AMP] = ACTIONS(1367), - [anon_sym_SEMI] = ACTIONS(1367), - [anon_sym___extension__] = ACTIONS(1365), - [anon_sym_typedef] = ACTIONS(1365), - [anon_sym_extern] = ACTIONS(1365), - [anon_sym___attribute__] = ACTIONS(1365), - [anon_sym___scanf] = ACTIONS(1365), - [anon_sym___printf] = ACTIONS(1365), - [anon_sym___read_mostly] = ACTIONS(1365), - [anon_sym___must_hold] = ACTIONS(1365), - [anon_sym___ro_after_init] = ACTIONS(1365), - [anon_sym___noreturn] = ACTIONS(1365), - [anon_sym___cold] = ACTIONS(1365), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1367), - [anon_sym___declspec] = ACTIONS(1365), - [anon_sym___init] = ACTIONS(1365), - [anon_sym___exit] = ACTIONS(1365), - [anon_sym___cdecl] = ACTIONS(1365), - [anon_sym___clrcall] = ACTIONS(1365), - [anon_sym___stdcall] = ACTIONS(1365), - [anon_sym___fastcall] = ACTIONS(1365), - [anon_sym___thiscall] = ACTIONS(1365), - [anon_sym___vectorcall] = ACTIONS(1365), - [anon_sym_LBRACE] = ACTIONS(1367), - [anon_sym_RBRACE] = ACTIONS(1367), - [anon_sym_signed] = ACTIONS(1365), - [anon_sym_unsigned] = ACTIONS(1365), - [anon_sym_long] = ACTIONS(1365), - [anon_sym_short] = ACTIONS(1365), - [anon_sym_static] = ACTIONS(1365), - [anon_sym_auto] = ACTIONS(1365), - [anon_sym_register] = ACTIONS(1365), - [anon_sym_inline] = ACTIONS(1365), - [anon_sym___inline] = ACTIONS(1365), - [anon_sym___inline__] = ACTIONS(1365), - [anon_sym___forceinline] = ACTIONS(1365), - [anon_sym_thread_local] = ACTIONS(1365), - [anon_sym___thread] = ACTIONS(1365), - [anon_sym_const] = ACTIONS(1365), - [anon_sym_constexpr] = ACTIONS(1365), - [anon_sym_volatile] = ACTIONS(1365), - [anon_sym_restrict] = ACTIONS(1365), - [anon_sym___restrict__] = ACTIONS(1365), - [anon_sym__Atomic] = ACTIONS(1365), - [anon_sym__Noreturn] = ACTIONS(1365), - [anon_sym_noreturn] = ACTIONS(1365), - [anon_sym_alignas] = ACTIONS(1365), - [anon_sym__Alignas] = ACTIONS(1365), - [sym_primitive_type] = ACTIONS(1365), - [anon_sym_enum] = ACTIONS(1365), - [anon_sym_struct] = ACTIONS(1365), - [anon_sym_union] = ACTIONS(1365), - [anon_sym_if] = ACTIONS(1365), - [anon_sym_switch] = ACTIONS(1365), - [anon_sym_case] = ACTIONS(1365), - [anon_sym_default] = ACTIONS(1365), - [anon_sym_while] = ACTIONS(1365), - [anon_sym_do] = ACTIONS(1365), - [anon_sym_for] = ACTIONS(1365), - [anon_sym_return] = ACTIONS(1365), - [anon_sym_break] = ACTIONS(1365), - [anon_sym_continue] = ACTIONS(1365), - [anon_sym_goto] = ACTIONS(1365), - [anon_sym___try] = ACTIONS(1365), - [anon_sym___leave] = ACTIONS(1365), - [anon_sym_DASH_DASH] = ACTIONS(1367), - [anon_sym_PLUS_PLUS] = ACTIONS(1367), - [anon_sym_sizeof] = ACTIONS(1365), - [anon_sym___alignof__] = ACTIONS(1365), - [anon_sym___alignof] = ACTIONS(1365), - [anon_sym__alignof] = ACTIONS(1365), - [anon_sym_alignof] = ACTIONS(1365), - [anon_sym__Alignof] = ACTIONS(1365), - [anon_sym_offsetof] = ACTIONS(1365), - [anon_sym__Generic] = ACTIONS(1365), - [anon_sym_asm] = ACTIONS(1365), - [anon_sym___asm__] = ACTIONS(1365), - [sym_number_literal] = ACTIONS(1367), - [anon_sym_L_SQUOTE] = ACTIONS(1367), - [anon_sym_u_SQUOTE] = ACTIONS(1367), - [anon_sym_U_SQUOTE] = ACTIONS(1367), - [anon_sym_u8_SQUOTE] = ACTIONS(1367), - [anon_sym_SQUOTE] = ACTIONS(1367), - [anon_sym_L_DQUOTE] = ACTIONS(1367), - [anon_sym_u_DQUOTE] = ACTIONS(1367), - [anon_sym_U_DQUOTE] = ACTIONS(1367), - [anon_sym_u8_DQUOTE] = ACTIONS(1367), - [anon_sym_DQUOTE] = ACTIONS(1367), - [sym_true] = ACTIONS(1365), - [sym_false] = ACTIONS(1365), - [anon_sym_NULL] = ACTIONS(1365), - [anon_sym_nullptr] = ACTIONS(1365), - [sym_comment] = ACTIONS(3), + [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(1369), - [aux_sym_preproc_include_token1] = ACTIONS(1369), - [aux_sym_preproc_def_token1] = ACTIONS(1369), - [aux_sym_preproc_if_token1] = ACTIONS(1369), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1369), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1369), - [sym_preproc_directive] = ACTIONS(1369), - [anon_sym_LPAREN2] = ACTIONS(1371), - [anon_sym_BANG] = ACTIONS(1371), - [anon_sym_TILDE] = ACTIONS(1371), - [anon_sym_DASH] = ACTIONS(1369), - [anon_sym_PLUS] = ACTIONS(1369), - [anon_sym_STAR] = ACTIONS(1371), - [anon_sym_AMP] = ACTIONS(1371), - [anon_sym_SEMI] = ACTIONS(1371), - [anon_sym___extension__] = ACTIONS(1369), - [anon_sym_typedef] = ACTIONS(1369), - [anon_sym_extern] = ACTIONS(1369), - [anon_sym___attribute__] = ACTIONS(1369), - [anon_sym___scanf] = ACTIONS(1369), - [anon_sym___printf] = ACTIONS(1369), - [anon_sym___read_mostly] = ACTIONS(1369), - [anon_sym___must_hold] = ACTIONS(1369), - [anon_sym___ro_after_init] = ACTIONS(1369), - [anon_sym___noreturn] = ACTIONS(1369), - [anon_sym___cold] = ACTIONS(1369), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1371), - [anon_sym___declspec] = ACTIONS(1369), - [anon_sym___init] = ACTIONS(1369), - [anon_sym___exit] = ACTIONS(1369), - [anon_sym___cdecl] = ACTIONS(1369), - [anon_sym___clrcall] = ACTIONS(1369), - [anon_sym___stdcall] = ACTIONS(1369), - [anon_sym___fastcall] = ACTIONS(1369), - [anon_sym___thiscall] = ACTIONS(1369), - [anon_sym___vectorcall] = ACTIONS(1369), - [anon_sym_LBRACE] = ACTIONS(1371), - [anon_sym_RBRACE] = ACTIONS(1371), - [anon_sym_signed] = ACTIONS(1369), - [anon_sym_unsigned] = ACTIONS(1369), - [anon_sym_long] = ACTIONS(1369), - [anon_sym_short] = ACTIONS(1369), - [anon_sym_static] = ACTIONS(1369), - [anon_sym_auto] = ACTIONS(1369), - [anon_sym_register] = ACTIONS(1369), - [anon_sym_inline] = ACTIONS(1369), - [anon_sym___inline] = ACTIONS(1369), - [anon_sym___inline__] = ACTIONS(1369), - [anon_sym___forceinline] = ACTIONS(1369), - [anon_sym_thread_local] = ACTIONS(1369), - [anon_sym___thread] = ACTIONS(1369), - [anon_sym_const] = ACTIONS(1369), - [anon_sym_constexpr] = ACTIONS(1369), - [anon_sym_volatile] = ACTIONS(1369), - [anon_sym_restrict] = ACTIONS(1369), - [anon_sym___restrict__] = ACTIONS(1369), - [anon_sym__Atomic] = ACTIONS(1369), - [anon_sym__Noreturn] = ACTIONS(1369), - [anon_sym_noreturn] = ACTIONS(1369), - [anon_sym_alignas] = ACTIONS(1369), - [anon_sym__Alignas] = ACTIONS(1369), - [sym_primitive_type] = ACTIONS(1369), - [anon_sym_enum] = ACTIONS(1369), - [anon_sym_struct] = ACTIONS(1369), - [anon_sym_union] = ACTIONS(1369), - [anon_sym_if] = ACTIONS(1369), - [anon_sym_switch] = ACTIONS(1369), - [anon_sym_case] = ACTIONS(1369), - [anon_sym_default] = ACTIONS(1369), - [anon_sym_while] = ACTIONS(1369), - [anon_sym_do] = ACTIONS(1369), - [anon_sym_for] = ACTIONS(1369), - [anon_sym_return] = ACTIONS(1369), - [anon_sym_break] = ACTIONS(1369), - [anon_sym_continue] = ACTIONS(1369), - [anon_sym_goto] = ACTIONS(1369), - [anon_sym___try] = ACTIONS(1369), - [anon_sym___leave] = ACTIONS(1369), - [anon_sym_DASH_DASH] = ACTIONS(1371), - [anon_sym_PLUS_PLUS] = ACTIONS(1371), - [anon_sym_sizeof] = ACTIONS(1369), - [anon_sym___alignof__] = ACTIONS(1369), - [anon_sym___alignof] = ACTIONS(1369), - [anon_sym__alignof] = ACTIONS(1369), - [anon_sym_alignof] = ACTIONS(1369), - [anon_sym__Alignof] = ACTIONS(1369), - [anon_sym_offsetof] = ACTIONS(1369), - [anon_sym__Generic] = ACTIONS(1369), - [anon_sym_asm] = ACTIONS(1369), - [anon_sym___asm__] = ACTIONS(1369), - [sym_number_literal] = ACTIONS(1371), - [anon_sym_L_SQUOTE] = ACTIONS(1371), - [anon_sym_u_SQUOTE] = ACTIONS(1371), - [anon_sym_U_SQUOTE] = ACTIONS(1371), - [anon_sym_u8_SQUOTE] = ACTIONS(1371), - [anon_sym_SQUOTE] = ACTIONS(1371), - [anon_sym_L_DQUOTE] = ACTIONS(1371), - [anon_sym_u_DQUOTE] = ACTIONS(1371), - [anon_sym_U_DQUOTE] = ACTIONS(1371), - [anon_sym_u8_DQUOTE] = ACTIONS(1371), - [anon_sym_DQUOTE] = ACTIONS(1371), - [sym_true] = ACTIONS(1369), - [sym_false] = ACTIONS(1369), - [anon_sym_NULL] = ACTIONS(1369), - [anon_sym_nullptr] = ACTIONS(1369), - [sym_comment] = ACTIONS(3), + [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(1313), - [aux_sym_preproc_include_token1] = ACTIONS(1313), - [aux_sym_preproc_def_token1] = ACTIONS(1313), - [aux_sym_preproc_if_token1] = ACTIONS(1313), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1313), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1313), - [sym_preproc_directive] = ACTIONS(1313), - [anon_sym_LPAREN2] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1315), - [anon_sym_TILDE] = ACTIONS(1315), - [anon_sym_DASH] = ACTIONS(1313), - [anon_sym_PLUS] = ACTIONS(1313), - [anon_sym_STAR] = ACTIONS(1315), - [anon_sym_AMP] = ACTIONS(1315), - [anon_sym_SEMI] = ACTIONS(1315), - [anon_sym___extension__] = ACTIONS(1313), - [anon_sym_typedef] = ACTIONS(1313), - [anon_sym_extern] = ACTIONS(1313), - [anon_sym___attribute__] = ACTIONS(1313), - [anon_sym___scanf] = ACTIONS(1313), - [anon_sym___printf] = ACTIONS(1313), - [anon_sym___read_mostly] = ACTIONS(1313), - [anon_sym___must_hold] = ACTIONS(1313), - [anon_sym___ro_after_init] = ACTIONS(1313), - [anon_sym___noreturn] = ACTIONS(1313), - [anon_sym___cold] = ACTIONS(1313), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1315), - [anon_sym___declspec] = ACTIONS(1313), - [anon_sym___init] = ACTIONS(1313), - [anon_sym___exit] = ACTIONS(1313), - [anon_sym___cdecl] = ACTIONS(1313), - [anon_sym___clrcall] = ACTIONS(1313), - [anon_sym___stdcall] = ACTIONS(1313), - [anon_sym___fastcall] = ACTIONS(1313), - [anon_sym___thiscall] = ACTIONS(1313), - [anon_sym___vectorcall] = ACTIONS(1313), - [anon_sym_LBRACE] = ACTIONS(1315), - [anon_sym_RBRACE] = ACTIONS(1315), - [anon_sym_signed] = ACTIONS(1313), - [anon_sym_unsigned] = ACTIONS(1313), - [anon_sym_long] = ACTIONS(1313), - [anon_sym_short] = ACTIONS(1313), - [anon_sym_static] = ACTIONS(1313), - [anon_sym_auto] = ACTIONS(1313), - [anon_sym_register] = ACTIONS(1313), - [anon_sym_inline] = ACTIONS(1313), - [anon_sym___inline] = ACTIONS(1313), - [anon_sym___inline__] = ACTIONS(1313), - [anon_sym___forceinline] = ACTIONS(1313), - [anon_sym_thread_local] = ACTIONS(1313), - [anon_sym___thread] = ACTIONS(1313), - [anon_sym_const] = ACTIONS(1313), - [anon_sym_constexpr] = ACTIONS(1313), - [anon_sym_volatile] = ACTIONS(1313), - [anon_sym_restrict] = ACTIONS(1313), - [anon_sym___restrict__] = ACTIONS(1313), - [anon_sym__Atomic] = ACTIONS(1313), - [anon_sym__Noreturn] = ACTIONS(1313), - [anon_sym_noreturn] = ACTIONS(1313), - [anon_sym_alignas] = ACTIONS(1313), - [anon_sym__Alignas] = ACTIONS(1313), - [sym_primitive_type] = ACTIONS(1313), - [anon_sym_enum] = ACTIONS(1313), - [anon_sym_struct] = ACTIONS(1313), - [anon_sym_union] = ACTIONS(1313), - [anon_sym_if] = ACTIONS(1313), - [anon_sym_switch] = ACTIONS(1313), - [anon_sym_case] = ACTIONS(1313), - [anon_sym_default] = ACTIONS(1313), - [anon_sym_while] = ACTIONS(1313), - [anon_sym_do] = ACTIONS(1313), - [anon_sym_for] = ACTIONS(1313), - [anon_sym_return] = ACTIONS(1313), - [anon_sym_break] = ACTIONS(1313), - [anon_sym_continue] = ACTIONS(1313), - [anon_sym_goto] = ACTIONS(1313), - [anon_sym___try] = ACTIONS(1313), - [anon_sym___leave] = ACTIONS(1313), - [anon_sym_DASH_DASH] = ACTIONS(1315), - [anon_sym_PLUS_PLUS] = ACTIONS(1315), - [anon_sym_sizeof] = ACTIONS(1313), - [anon_sym___alignof__] = ACTIONS(1313), - [anon_sym___alignof] = ACTIONS(1313), - [anon_sym__alignof] = ACTIONS(1313), - [anon_sym_alignof] = ACTIONS(1313), - [anon_sym__Alignof] = ACTIONS(1313), - [anon_sym_offsetof] = ACTIONS(1313), - [anon_sym__Generic] = ACTIONS(1313), - [anon_sym_asm] = ACTIONS(1313), - [anon_sym___asm__] = ACTIONS(1313), - [sym_number_literal] = ACTIONS(1315), - [anon_sym_L_SQUOTE] = ACTIONS(1315), - [anon_sym_u_SQUOTE] = ACTIONS(1315), - [anon_sym_U_SQUOTE] = ACTIONS(1315), - [anon_sym_u8_SQUOTE] = ACTIONS(1315), - [anon_sym_SQUOTE] = ACTIONS(1315), - [anon_sym_L_DQUOTE] = ACTIONS(1315), - [anon_sym_u_DQUOTE] = ACTIONS(1315), - [anon_sym_U_DQUOTE] = ACTIONS(1315), - [anon_sym_u8_DQUOTE] = ACTIONS(1315), - [anon_sym_DQUOTE] = ACTIONS(1315), - [sym_true] = ACTIONS(1313), - [sym_false] = ACTIONS(1313), - [anon_sym_NULL] = ACTIONS(1313), - [anon_sym_nullptr] = ACTIONS(1313), - [sym_comment] = ACTIONS(3), + [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(1373), - [aux_sym_preproc_include_token1] = ACTIONS(1373), - [aux_sym_preproc_def_token1] = ACTIONS(1373), - [aux_sym_preproc_if_token1] = ACTIONS(1373), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1373), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1373), - [sym_preproc_directive] = ACTIONS(1373), - [anon_sym_LPAREN2] = ACTIONS(1375), - [anon_sym_BANG] = ACTIONS(1375), - [anon_sym_TILDE] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1373), - [anon_sym_PLUS] = ACTIONS(1373), - [anon_sym_STAR] = ACTIONS(1375), - [anon_sym_AMP] = ACTIONS(1375), - [anon_sym_SEMI] = ACTIONS(1375), - [anon_sym___extension__] = ACTIONS(1373), - [anon_sym_typedef] = ACTIONS(1373), - [anon_sym_extern] = ACTIONS(1373), - [anon_sym___attribute__] = ACTIONS(1373), - [anon_sym___scanf] = ACTIONS(1373), - [anon_sym___printf] = ACTIONS(1373), - [anon_sym___read_mostly] = ACTIONS(1373), - [anon_sym___must_hold] = ACTIONS(1373), - [anon_sym___ro_after_init] = ACTIONS(1373), - [anon_sym___noreturn] = ACTIONS(1373), - [anon_sym___cold] = ACTIONS(1373), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1375), - [anon_sym___declspec] = ACTIONS(1373), - [anon_sym___init] = ACTIONS(1373), - [anon_sym___exit] = ACTIONS(1373), - [anon_sym___cdecl] = ACTIONS(1373), - [anon_sym___clrcall] = ACTIONS(1373), - [anon_sym___stdcall] = ACTIONS(1373), - [anon_sym___fastcall] = ACTIONS(1373), - [anon_sym___thiscall] = ACTIONS(1373), - [anon_sym___vectorcall] = ACTIONS(1373), - [anon_sym_LBRACE] = ACTIONS(1375), - [anon_sym_RBRACE] = ACTIONS(1375), - [anon_sym_signed] = ACTIONS(1373), - [anon_sym_unsigned] = ACTIONS(1373), - [anon_sym_long] = ACTIONS(1373), - [anon_sym_short] = ACTIONS(1373), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_auto] = ACTIONS(1373), - [anon_sym_register] = ACTIONS(1373), - [anon_sym_inline] = ACTIONS(1373), - [anon_sym___inline] = ACTIONS(1373), - [anon_sym___inline__] = ACTIONS(1373), - [anon_sym___forceinline] = ACTIONS(1373), - [anon_sym_thread_local] = ACTIONS(1373), - [anon_sym___thread] = ACTIONS(1373), - [anon_sym_const] = ACTIONS(1373), - [anon_sym_constexpr] = ACTIONS(1373), - [anon_sym_volatile] = ACTIONS(1373), - [anon_sym_restrict] = ACTIONS(1373), - [anon_sym___restrict__] = ACTIONS(1373), - [anon_sym__Atomic] = ACTIONS(1373), - [anon_sym__Noreturn] = ACTIONS(1373), - [anon_sym_noreturn] = ACTIONS(1373), - [anon_sym_alignas] = ACTIONS(1373), - [anon_sym__Alignas] = ACTIONS(1373), - [sym_primitive_type] = ACTIONS(1373), - [anon_sym_enum] = ACTIONS(1373), - [anon_sym_struct] = ACTIONS(1373), - [anon_sym_union] = ACTIONS(1373), - [anon_sym_if] = ACTIONS(1373), - [anon_sym_switch] = ACTIONS(1373), - [anon_sym_case] = ACTIONS(1373), - [anon_sym_default] = ACTIONS(1373), - [anon_sym_while] = ACTIONS(1373), - [anon_sym_do] = ACTIONS(1373), - [anon_sym_for] = ACTIONS(1373), - [anon_sym_return] = ACTIONS(1373), - [anon_sym_break] = ACTIONS(1373), - [anon_sym_continue] = ACTIONS(1373), - [anon_sym_goto] = ACTIONS(1373), - [anon_sym___try] = ACTIONS(1373), - [anon_sym___leave] = ACTIONS(1373), - [anon_sym_DASH_DASH] = ACTIONS(1375), - [anon_sym_PLUS_PLUS] = ACTIONS(1375), - [anon_sym_sizeof] = ACTIONS(1373), - [anon_sym___alignof__] = ACTIONS(1373), - [anon_sym___alignof] = ACTIONS(1373), - [anon_sym__alignof] = ACTIONS(1373), - [anon_sym_alignof] = ACTIONS(1373), - [anon_sym__Alignof] = ACTIONS(1373), - [anon_sym_offsetof] = ACTIONS(1373), - [anon_sym__Generic] = ACTIONS(1373), - [anon_sym_asm] = ACTIONS(1373), - [anon_sym___asm__] = ACTIONS(1373), - [sym_number_literal] = ACTIONS(1375), - [anon_sym_L_SQUOTE] = ACTIONS(1375), - [anon_sym_u_SQUOTE] = ACTIONS(1375), - [anon_sym_U_SQUOTE] = ACTIONS(1375), - [anon_sym_u8_SQUOTE] = ACTIONS(1375), - [anon_sym_SQUOTE] = ACTIONS(1375), - [anon_sym_L_DQUOTE] = ACTIONS(1375), - [anon_sym_u_DQUOTE] = ACTIONS(1375), - [anon_sym_U_DQUOTE] = ACTIONS(1375), - [anon_sym_u8_DQUOTE] = ACTIONS(1375), - [anon_sym_DQUOTE] = ACTIONS(1375), - [sym_true] = ACTIONS(1373), - [sym_false] = ACTIONS(1373), - [anon_sym_NULL] = ACTIONS(1373), - [anon_sym_nullptr] = ACTIONS(1373), - [sym_comment] = ACTIONS(3), + [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(1309), - [aux_sym_preproc_include_token1] = ACTIONS(1309), - [aux_sym_preproc_def_token1] = ACTIONS(1309), - [aux_sym_preproc_if_token1] = ACTIONS(1309), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1309), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1309), - [sym_preproc_directive] = ACTIONS(1309), - [anon_sym_LPAREN2] = ACTIONS(1311), - [anon_sym_BANG] = ACTIONS(1311), - [anon_sym_TILDE] = ACTIONS(1311), - [anon_sym_DASH] = ACTIONS(1309), - [anon_sym_PLUS] = ACTIONS(1309), - [anon_sym_STAR] = ACTIONS(1311), - [anon_sym_AMP] = ACTIONS(1311), - [anon_sym_SEMI] = ACTIONS(1311), - [anon_sym___extension__] = ACTIONS(1309), - [anon_sym_typedef] = ACTIONS(1309), - [anon_sym_extern] = ACTIONS(1309), - [anon_sym___attribute__] = ACTIONS(1309), - [anon_sym___scanf] = ACTIONS(1309), - [anon_sym___printf] = ACTIONS(1309), - [anon_sym___read_mostly] = ACTIONS(1309), - [anon_sym___must_hold] = ACTIONS(1309), - [anon_sym___ro_after_init] = ACTIONS(1309), - [anon_sym___noreturn] = ACTIONS(1309), - [anon_sym___cold] = ACTIONS(1309), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1311), - [anon_sym___declspec] = ACTIONS(1309), - [anon_sym___init] = ACTIONS(1309), - [anon_sym___exit] = ACTIONS(1309), - [anon_sym___cdecl] = ACTIONS(1309), - [anon_sym___clrcall] = ACTIONS(1309), - [anon_sym___stdcall] = ACTIONS(1309), - [anon_sym___fastcall] = ACTIONS(1309), - [anon_sym___thiscall] = ACTIONS(1309), - [anon_sym___vectorcall] = ACTIONS(1309), - [anon_sym_LBRACE] = ACTIONS(1311), - [anon_sym_RBRACE] = ACTIONS(1311), - [anon_sym_signed] = ACTIONS(1309), - [anon_sym_unsigned] = ACTIONS(1309), - [anon_sym_long] = ACTIONS(1309), - [anon_sym_short] = ACTIONS(1309), - [anon_sym_static] = ACTIONS(1309), - [anon_sym_auto] = ACTIONS(1309), - [anon_sym_register] = ACTIONS(1309), - [anon_sym_inline] = ACTIONS(1309), - [anon_sym___inline] = ACTIONS(1309), - [anon_sym___inline__] = ACTIONS(1309), - [anon_sym___forceinline] = ACTIONS(1309), - [anon_sym_thread_local] = ACTIONS(1309), - [anon_sym___thread] = ACTIONS(1309), - [anon_sym_const] = ACTIONS(1309), - [anon_sym_constexpr] = ACTIONS(1309), - [anon_sym_volatile] = ACTIONS(1309), - [anon_sym_restrict] = ACTIONS(1309), - [anon_sym___restrict__] = ACTIONS(1309), - [anon_sym__Atomic] = ACTIONS(1309), - [anon_sym__Noreturn] = ACTIONS(1309), - [anon_sym_noreturn] = ACTIONS(1309), - [anon_sym_alignas] = ACTIONS(1309), - [anon_sym__Alignas] = ACTIONS(1309), - [sym_primitive_type] = ACTIONS(1309), - [anon_sym_enum] = ACTIONS(1309), - [anon_sym_struct] = ACTIONS(1309), - [anon_sym_union] = ACTIONS(1309), - [anon_sym_if] = ACTIONS(1309), - [anon_sym_switch] = ACTIONS(1309), - [anon_sym_case] = ACTIONS(1309), - [anon_sym_default] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1309), - [anon_sym_do] = ACTIONS(1309), - [anon_sym_for] = ACTIONS(1309), - [anon_sym_return] = ACTIONS(1309), - [anon_sym_break] = ACTIONS(1309), - [anon_sym_continue] = ACTIONS(1309), - [anon_sym_goto] = ACTIONS(1309), - [anon_sym___try] = ACTIONS(1309), - [anon_sym___leave] = ACTIONS(1309), - [anon_sym_DASH_DASH] = ACTIONS(1311), - [anon_sym_PLUS_PLUS] = ACTIONS(1311), - [anon_sym_sizeof] = ACTIONS(1309), - [anon_sym___alignof__] = ACTIONS(1309), - [anon_sym___alignof] = ACTIONS(1309), - [anon_sym__alignof] = ACTIONS(1309), - [anon_sym_alignof] = ACTIONS(1309), - [anon_sym__Alignof] = ACTIONS(1309), - [anon_sym_offsetof] = ACTIONS(1309), - [anon_sym__Generic] = ACTIONS(1309), - [anon_sym_asm] = ACTIONS(1309), - [anon_sym___asm__] = ACTIONS(1309), - [sym_number_literal] = ACTIONS(1311), - [anon_sym_L_SQUOTE] = ACTIONS(1311), - [anon_sym_u_SQUOTE] = ACTIONS(1311), - [anon_sym_U_SQUOTE] = ACTIONS(1311), - [anon_sym_u8_SQUOTE] = ACTIONS(1311), - [anon_sym_SQUOTE] = ACTIONS(1311), - [anon_sym_L_DQUOTE] = ACTIONS(1311), - [anon_sym_u_DQUOTE] = ACTIONS(1311), - [anon_sym_U_DQUOTE] = ACTIONS(1311), - [anon_sym_u8_DQUOTE] = ACTIONS(1311), - [anon_sym_DQUOTE] = ACTIONS(1311), - [sym_true] = ACTIONS(1309), - [sym_false] = ACTIONS(1309), - [anon_sym_NULL] = ACTIONS(1309), - [anon_sym_nullptr] = ACTIONS(1309), - [sym_comment] = ACTIONS(3), + [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(1325), - [aux_sym_preproc_include_token1] = ACTIONS(1325), - [aux_sym_preproc_def_token1] = ACTIONS(1325), - [aux_sym_preproc_if_token1] = ACTIONS(1325), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1325), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1325), - [sym_preproc_directive] = ACTIONS(1325), - [anon_sym_LPAREN2] = ACTIONS(1327), - [anon_sym_BANG] = ACTIONS(1327), - [anon_sym_TILDE] = ACTIONS(1327), - [anon_sym_DASH] = ACTIONS(1325), - [anon_sym_PLUS] = ACTIONS(1325), - [anon_sym_STAR] = ACTIONS(1327), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_SEMI] = ACTIONS(1327), - [anon_sym___extension__] = ACTIONS(1325), - [anon_sym_typedef] = ACTIONS(1325), - [anon_sym_extern] = ACTIONS(1325), - [anon_sym___attribute__] = ACTIONS(1325), - [anon_sym___scanf] = ACTIONS(1325), - [anon_sym___printf] = ACTIONS(1325), - [anon_sym___read_mostly] = ACTIONS(1325), - [anon_sym___must_hold] = ACTIONS(1325), - [anon_sym___ro_after_init] = ACTIONS(1325), - [anon_sym___noreturn] = ACTIONS(1325), - [anon_sym___cold] = ACTIONS(1325), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1327), - [anon_sym___declspec] = ACTIONS(1325), - [anon_sym___init] = ACTIONS(1325), - [anon_sym___exit] = ACTIONS(1325), - [anon_sym___cdecl] = ACTIONS(1325), - [anon_sym___clrcall] = ACTIONS(1325), - [anon_sym___stdcall] = ACTIONS(1325), - [anon_sym___fastcall] = ACTIONS(1325), - [anon_sym___thiscall] = ACTIONS(1325), - [anon_sym___vectorcall] = ACTIONS(1325), - [anon_sym_LBRACE] = ACTIONS(1327), - [anon_sym_RBRACE] = ACTIONS(1327), - [anon_sym_signed] = ACTIONS(1325), - [anon_sym_unsigned] = ACTIONS(1325), - [anon_sym_long] = ACTIONS(1325), - [anon_sym_short] = ACTIONS(1325), - [anon_sym_static] = ACTIONS(1325), - [anon_sym_auto] = ACTIONS(1325), - [anon_sym_register] = ACTIONS(1325), - [anon_sym_inline] = ACTIONS(1325), - [anon_sym___inline] = ACTIONS(1325), - [anon_sym___inline__] = ACTIONS(1325), - [anon_sym___forceinline] = ACTIONS(1325), - [anon_sym_thread_local] = ACTIONS(1325), - [anon_sym___thread] = ACTIONS(1325), - [anon_sym_const] = ACTIONS(1325), - [anon_sym_constexpr] = ACTIONS(1325), - [anon_sym_volatile] = ACTIONS(1325), - [anon_sym_restrict] = ACTIONS(1325), - [anon_sym___restrict__] = ACTIONS(1325), - [anon_sym__Atomic] = ACTIONS(1325), - [anon_sym__Noreturn] = ACTIONS(1325), - [anon_sym_noreturn] = ACTIONS(1325), - [anon_sym_alignas] = ACTIONS(1325), - [anon_sym__Alignas] = ACTIONS(1325), - [sym_primitive_type] = ACTIONS(1325), - [anon_sym_enum] = ACTIONS(1325), - [anon_sym_struct] = ACTIONS(1325), - [anon_sym_union] = ACTIONS(1325), - [anon_sym_if] = ACTIONS(1325), - [anon_sym_switch] = ACTIONS(1325), - [anon_sym_case] = ACTIONS(1325), - [anon_sym_default] = ACTIONS(1325), - [anon_sym_while] = ACTIONS(1325), - [anon_sym_do] = ACTIONS(1325), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_return] = ACTIONS(1325), - [anon_sym_break] = ACTIONS(1325), - [anon_sym_continue] = ACTIONS(1325), - [anon_sym_goto] = ACTIONS(1325), - [anon_sym___try] = ACTIONS(1325), - [anon_sym___leave] = ACTIONS(1325), - [anon_sym_DASH_DASH] = ACTIONS(1327), - [anon_sym_PLUS_PLUS] = ACTIONS(1327), - [anon_sym_sizeof] = ACTIONS(1325), - [anon_sym___alignof__] = ACTIONS(1325), - [anon_sym___alignof] = ACTIONS(1325), - [anon_sym__alignof] = ACTIONS(1325), - [anon_sym_alignof] = ACTIONS(1325), - [anon_sym__Alignof] = ACTIONS(1325), - [anon_sym_offsetof] = ACTIONS(1325), - [anon_sym__Generic] = ACTIONS(1325), - [anon_sym_asm] = ACTIONS(1325), - [anon_sym___asm__] = ACTIONS(1325), - [sym_number_literal] = ACTIONS(1327), - [anon_sym_L_SQUOTE] = ACTIONS(1327), - [anon_sym_u_SQUOTE] = ACTIONS(1327), - [anon_sym_U_SQUOTE] = ACTIONS(1327), - [anon_sym_u8_SQUOTE] = ACTIONS(1327), - [anon_sym_SQUOTE] = ACTIONS(1327), - [anon_sym_L_DQUOTE] = ACTIONS(1327), - [anon_sym_u_DQUOTE] = ACTIONS(1327), - [anon_sym_U_DQUOTE] = ACTIONS(1327), - [anon_sym_u8_DQUOTE] = ACTIONS(1327), - [anon_sym_DQUOTE] = ACTIONS(1327), - [sym_true] = ACTIONS(1325), - [sym_false] = ACTIONS(1325), - [anon_sym_NULL] = ACTIONS(1325), - [anon_sym_nullptr] = ACTIONS(1325), - [sym_comment] = ACTIONS(3), + [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(1341), - [aux_sym_preproc_include_token1] = ACTIONS(1341), - [aux_sym_preproc_def_token1] = ACTIONS(1341), - [aux_sym_preproc_if_token1] = ACTIONS(1341), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1341), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1341), - [sym_preproc_directive] = ACTIONS(1341), - [anon_sym_LPAREN2] = ACTIONS(1343), - [anon_sym_BANG] = ACTIONS(1343), - [anon_sym_TILDE] = ACTIONS(1343), - [anon_sym_DASH] = ACTIONS(1341), - [anon_sym_PLUS] = ACTIONS(1341), - [anon_sym_STAR] = ACTIONS(1343), - [anon_sym_AMP] = ACTIONS(1343), - [anon_sym_SEMI] = ACTIONS(1343), - [anon_sym___extension__] = ACTIONS(1341), - [anon_sym_typedef] = ACTIONS(1341), - [anon_sym_extern] = ACTIONS(1341), - [anon_sym___attribute__] = ACTIONS(1341), - [anon_sym___scanf] = ACTIONS(1341), - [anon_sym___printf] = ACTIONS(1341), - [anon_sym___read_mostly] = ACTIONS(1341), - [anon_sym___must_hold] = ACTIONS(1341), - [anon_sym___ro_after_init] = ACTIONS(1341), - [anon_sym___noreturn] = ACTIONS(1341), - [anon_sym___cold] = ACTIONS(1341), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1343), - [anon_sym___declspec] = ACTIONS(1341), - [anon_sym___init] = ACTIONS(1341), - [anon_sym___exit] = ACTIONS(1341), - [anon_sym___cdecl] = ACTIONS(1341), - [anon_sym___clrcall] = ACTIONS(1341), - [anon_sym___stdcall] = ACTIONS(1341), - [anon_sym___fastcall] = ACTIONS(1341), - [anon_sym___thiscall] = ACTIONS(1341), - [anon_sym___vectorcall] = ACTIONS(1341), - [anon_sym_LBRACE] = ACTIONS(1343), - [anon_sym_RBRACE] = ACTIONS(1343), - [anon_sym_signed] = ACTIONS(1341), - [anon_sym_unsigned] = ACTIONS(1341), - [anon_sym_long] = ACTIONS(1341), - [anon_sym_short] = ACTIONS(1341), - [anon_sym_static] = ACTIONS(1341), - [anon_sym_auto] = ACTIONS(1341), - [anon_sym_register] = ACTIONS(1341), - [anon_sym_inline] = ACTIONS(1341), - [anon_sym___inline] = ACTIONS(1341), - [anon_sym___inline__] = ACTIONS(1341), - [anon_sym___forceinline] = ACTIONS(1341), - [anon_sym_thread_local] = ACTIONS(1341), - [anon_sym___thread] = ACTIONS(1341), - [anon_sym_const] = ACTIONS(1341), - [anon_sym_constexpr] = ACTIONS(1341), - [anon_sym_volatile] = ACTIONS(1341), - [anon_sym_restrict] = ACTIONS(1341), - [anon_sym___restrict__] = ACTIONS(1341), - [anon_sym__Atomic] = ACTIONS(1341), - [anon_sym__Noreturn] = ACTIONS(1341), - [anon_sym_noreturn] = ACTIONS(1341), - [anon_sym_alignas] = ACTIONS(1341), - [anon_sym__Alignas] = ACTIONS(1341), - [sym_primitive_type] = ACTIONS(1341), - [anon_sym_enum] = ACTIONS(1341), - [anon_sym_struct] = ACTIONS(1341), - [anon_sym_union] = ACTIONS(1341), - [anon_sym_if] = ACTIONS(1341), - [anon_sym_switch] = ACTIONS(1341), - [anon_sym_case] = ACTIONS(1341), - [anon_sym_default] = ACTIONS(1341), - [anon_sym_while] = ACTIONS(1341), - [anon_sym_do] = ACTIONS(1341), - [anon_sym_for] = ACTIONS(1341), - [anon_sym_return] = ACTIONS(1341), - [anon_sym_break] = ACTIONS(1341), - [anon_sym_continue] = ACTIONS(1341), - [anon_sym_goto] = ACTIONS(1341), - [anon_sym___try] = ACTIONS(1341), - [anon_sym___leave] = ACTIONS(1341), - [anon_sym_DASH_DASH] = ACTIONS(1343), - [anon_sym_PLUS_PLUS] = ACTIONS(1343), - [anon_sym_sizeof] = ACTIONS(1341), - [anon_sym___alignof__] = ACTIONS(1341), - [anon_sym___alignof] = ACTIONS(1341), - [anon_sym__alignof] = ACTIONS(1341), - [anon_sym_alignof] = ACTIONS(1341), - [anon_sym__Alignof] = ACTIONS(1341), - [anon_sym_offsetof] = ACTIONS(1341), - [anon_sym__Generic] = ACTIONS(1341), - [anon_sym_asm] = ACTIONS(1341), - [anon_sym___asm__] = ACTIONS(1341), - [sym_number_literal] = ACTIONS(1343), - [anon_sym_L_SQUOTE] = ACTIONS(1343), - [anon_sym_u_SQUOTE] = ACTIONS(1343), - [anon_sym_U_SQUOTE] = ACTIONS(1343), - [anon_sym_u8_SQUOTE] = ACTIONS(1343), - [anon_sym_SQUOTE] = ACTIONS(1343), - [anon_sym_L_DQUOTE] = ACTIONS(1343), - [anon_sym_u_DQUOTE] = ACTIONS(1343), - [anon_sym_U_DQUOTE] = ACTIONS(1343), - [anon_sym_u8_DQUOTE] = ACTIONS(1343), - [anon_sym_DQUOTE] = ACTIONS(1343), - [sym_true] = ACTIONS(1341), - [sym_false] = ACTIONS(1341), - [anon_sym_NULL] = ACTIONS(1341), - [anon_sym_nullptr] = ACTIONS(1341), - [sym_comment] = ACTIONS(3), + [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(1415), - [aux_sym_preproc_include_token1] = ACTIONS(1415), - [aux_sym_preproc_def_token1] = ACTIONS(1415), - [aux_sym_preproc_if_token1] = ACTIONS(1415), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1415), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1415), - [sym_preproc_directive] = ACTIONS(1415), - [anon_sym_LPAREN2] = ACTIONS(1417), - [anon_sym_BANG] = ACTIONS(1417), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1415), - [anon_sym_PLUS] = ACTIONS(1415), - [anon_sym_STAR] = ACTIONS(1417), - [anon_sym_AMP] = ACTIONS(1417), - [anon_sym_SEMI] = ACTIONS(1417), - [anon_sym___extension__] = ACTIONS(1415), - [anon_sym_typedef] = ACTIONS(1415), - [anon_sym_extern] = ACTIONS(1415), - [anon_sym___attribute__] = ACTIONS(1415), - [anon_sym___scanf] = ACTIONS(1415), - [anon_sym___printf] = ACTIONS(1415), - [anon_sym___read_mostly] = ACTIONS(1415), - [anon_sym___must_hold] = ACTIONS(1415), - [anon_sym___ro_after_init] = ACTIONS(1415), - [anon_sym___noreturn] = ACTIONS(1415), - [anon_sym___cold] = ACTIONS(1415), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1417), - [anon_sym___declspec] = ACTIONS(1415), - [anon_sym___init] = ACTIONS(1415), - [anon_sym___exit] = ACTIONS(1415), - [anon_sym___cdecl] = ACTIONS(1415), - [anon_sym___clrcall] = ACTIONS(1415), - [anon_sym___stdcall] = ACTIONS(1415), - [anon_sym___fastcall] = ACTIONS(1415), - [anon_sym___thiscall] = ACTIONS(1415), - [anon_sym___vectorcall] = ACTIONS(1415), - [anon_sym_LBRACE] = ACTIONS(1417), - [anon_sym_RBRACE] = ACTIONS(1417), - [anon_sym_signed] = ACTIONS(1415), - [anon_sym_unsigned] = ACTIONS(1415), - [anon_sym_long] = ACTIONS(1415), - [anon_sym_short] = ACTIONS(1415), - [anon_sym_static] = ACTIONS(1415), - [anon_sym_auto] = ACTIONS(1415), - [anon_sym_register] = ACTIONS(1415), - [anon_sym_inline] = ACTIONS(1415), - [anon_sym___inline] = ACTIONS(1415), - [anon_sym___inline__] = ACTIONS(1415), - [anon_sym___forceinline] = ACTIONS(1415), - [anon_sym_thread_local] = ACTIONS(1415), - [anon_sym___thread] = ACTIONS(1415), - [anon_sym_const] = ACTIONS(1415), - [anon_sym_constexpr] = ACTIONS(1415), - [anon_sym_volatile] = ACTIONS(1415), - [anon_sym_restrict] = ACTIONS(1415), - [anon_sym___restrict__] = ACTIONS(1415), - [anon_sym__Atomic] = ACTIONS(1415), - [anon_sym__Noreturn] = ACTIONS(1415), - [anon_sym_noreturn] = ACTIONS(1415), - [anon_sym_alignas] = ACTIONS(1415), - [anon_sym__Alignas] = ACTIONS(1415), - [sym_primitive_type] = ACTIONS(1415), - [anon_sym_enum] = ACTIONS(1415), - [anon_sym_struct] = ACTIONS(1415), - [anon_sym_union] = ACTIONS(1415), - [anon_sym_if] = ACTIONS(1415), - [anon_sym_switch] = ACTIONS(1415), - [anon_sym_case] = ACTIONS(1415), - [anon_sym_default] = ACTIONS(1415), - [anon_sym_while] = ACTIONS(1415), - [anon_sym_do] = ACTIONS(1415), - [anon_sym_for] = ACTIONS(1415), - [anon_sym_return] = ACTIONS(1415), - [anon_sym_break] = ACTIONS(1415), - [anon_sym_continue] = ACTIONS(1415), - [anon_sym_goto] = ACTIONS(1415), - [anon_sym___try] = ACTIONS(1415), - [anon_sym___leave] = ACTIONS(1415), - [anon_sym_DASH_DASH] = ACTIONS(1417), - [anon_sym_PLUS_PLUS] = ACTIONS(1417), - [anon_sym_sizeof] = ACTIONS(1415), - [anon_sym___alignof__] = ACTIONS(1415), - [anon_sym___alignof] = ACTIONS(1415), - [anon_sym__alignof] = ACTIONS(1415), - [anon_sym_alignof] = ACTIONS(1415), - [anon_sym__Alignof] = ACTIONS(1415), - [anon_sym_offsetof] = ACTIONS(1415), - [anon_sym__Generic] = ACTIONS(1415), - [anon_sym_asm] = ACTIONS(1415), - [anon_sym___asm__] = ACTIONS(1415), - [sym_number_literal] = ACTIONS(1417), - [anon_sym_L_SQUOTE] = ACTIONS(1417), - [anon_sym_u_SQUOTE] = ACTIONS(1417), - [anon_sym_U_SQUOTE] = ACTIONS(1417), - [anon_sym_u8_SQUOTE] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1417), - [anon_sym_L_DQUOTE] = ACTIONS(1417), - [anon_sym_u_DQUOTE] = ACTIONS(1417), - [anon_sym_U_DQUOTE] = ACTIONS(1417), - [anon_sym_u8_DQUOTE] = ACTIONS(1417), - [anon_sym_DQUOTE] = ACTIONS(1417), - [sym_true] = ACTIONS(1415), - [sym_false] = ACTIONS(1415), - [anon_sym_NULL] = ACTIONS(1415), - [anon_sym_nullptr] = ACTIONS(1415), - [sym_comment] = ACTIONS(3), + [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(1317), - [aux_sym_preproc_include_token1] = ACTIONS(1317), - [aux_sym_preproc_def_token1] = ACTIONS(1317), - [aux_sym_preproc_if_token1] = ACTIONS(1317), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1317), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1317), - [sym_preproc_directive] = ACTIONS(1317), - [anon_sym_LPAREN2] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1319), - [anon_sym_TILDE] = ACTIONS(1319), - [anon_sym_DASH] = ACTIONS(1317), - [anon_sym_PLUS] = ACTIONS(1317), - [anon_sym_STAR] = ACTIONS(1319), - [anon_sym_AMP] = ACTIONS(1319), - [anon_sym_SEMI] = ACTIONS(1319), - [anon_sym___extension__] = ACTIONS(1317), - [anon_sym_typedef] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1317), - [anon_sym___attribute__] = ACTIONS(1317), - [anon_sym___scanf] = ACTIONS(1317), - [anon_sym___printf] = ACTIONS(1317), - [anon_sym___read_mostly] = ACTIONS(1317), - [anon_sym___must_hold] = ACTIONS(1317), - [anon_sym___ro_after_init] = ACTIONS(1317), - [anon_sym___noreturn] = ACTIONS(1317), - [anon_sym___cold] = ACTIONS(1317), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1319), - [anon_sym___declspec] = ACTIONS(1317), - [anon_sym___init] = ACTIONS(1317), - [anon_sym___exit] = ACTIONS(1317), - [anon_sym___cdecl] = ACTIONS(1317), - [anon_sym___clrcall] = ACTIONS(1317), - [anon_sym___stdcall] = ACTIONS(1317), - [anon_sym___fastcall] = ACTIONS(1317), - [anon_sym___thiscall] = ACTIONS(1317), - [anon_sym___vectorcall] = ACTIONS(1317), - [anon_sym_LBRACE] = ACTIONS(1319), - [anon_sym_RBRACE] = ACTIONS(1319), - [anon_sym_signed] = ACTIONS(1317), - [anon_sym_unsigned] = ACTIONS(1317), - [anon_sym_long] = ACTIONS(1317), - [anon_sym_short] = ACTIONS(1317), - [anon_sym_static] = ACTIONS(1317), - [anon_sym_auto] = ACTIONS(1317), - [anon_sym_register] = ACTIONS(1317), - [anon_sym_inline] = ACTIONS(1317), - [anon_sym___inline] = ACTIONS(1317), - [anon_sym___inline__] = ACTIONS(1317), - [anon_sym___forceinline] = ACTIONS(1317), - [anon_sym_thread_local] = ACTIONS(1317), - [anon_sym___thread] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_constexpr] = ACTIONS(1317), - [anon_sym_volatile] = ACTIONS(1317), - [anon_sym_restrict] = ACTIONS(1317), - [anon_sym___restrict__] = ACTIONS(1317), - [anon_sym__Atomic] = ACTIONS(1317), - [anon_sym__Noreturn] = ACTIONS(1317), - [anon_sym_noreturn] = ACTIONS(1317), - [anon_sym_alignas] = ACTIONS(1317), - [anon_sym__Alignas] = ACTIONS(1317), - [sym_primitive_type] = ACTIONS(1317), - [anon_sym_enum] = ACTIONS(1317), - [anon_sym_struct] = ACTIONS(1317), - [anon_sym_union] = ACTIONS(1317), - [anon_sym_if] = ACTIONS(1317), - [anon_sym_switch] = ACTIONS(1317), - [anon_sym_case] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(1317), - [anon_sym_while] = ACTIONS(1317), - [anon_sym_do] = ACTIONS(1317), - [anon_sym_for] = ACTIONS(1317), - [anon_sym_return] = ACTIONS(1317), - [anon_sym_break] = ACTIONS(1317), - [anon_sym_continue] = ACTIONS(1317), - [anon_sym_goto] = ACTIONS(1317), - [anon_sym___try] = ACTIONS(1317), - [anon_sym___leave] = ACTIONS(1317), - [anon_sym_DASH_DASH] = ACTIONS(1319), - [anon_sym_PLUS_PLUS] = ACTIONS(1319), - [anon_sym_sizeof] = ACTIONS(1317), - [anon_sym___alignof__] = ACTIONS(1317), - [anon_sym___alignof] = ACTIONS(1317), - [anon_sym__alignof] = ACTIONS(1317), - [anon_sym_alignof] = ACTIONS(1317), - [anon_sym__Alignof] = ACTIONS(1317), - [anon_sym_offsetof] = ACTIONS(1317), - [anon_sym__Generic] = ACTIONS(1317), - [anon_sym_asm] = ACTIONS(1317), - [anon_sym___asm__] = ACTIONS(1317), - [sym_number_literal] = ACTIONS(1319), - [anon_sym_L_SQUOTE] = ACTIONS(1319), - [anon_sym_u_SQUOTE] = ACTIONS(1319), - [anon_sym_U_SQUOTE] = ACTIONS(1319), - [anon_sym_u8_SQUOTE] = ACTIONS(1319), - [anon_sym_SQUOTE] = ACTIONS(1319), - [anon_sym_L_DQUOTE] = ACTIONS(1319), - [anon_sym_u_DQUOTE] = ACTIONS(1319), - [anon_sym_U_DQUOTE] = ACTIONS(1319), - [anon_sym_u8_DQUOTE] = ACTIONS(1319), - [anon_sym_DQUOTE] = ACTIONS(1319), - [sym_true] = ACTIONS(1317), - [sym_false] = ACTIONS(1317), - [anon_sym_NULL] = ACTIONS(1317), - [anon_sym_nullptr] = ACTIONS(1317), - [sym_comment] = ACTIONS(3), + [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(1317), - [aux_sym_preproc_include_token1] = ACTIONS(1317), - [aux_sym_preproc_def_token1] = ACTIONS(1317), - [aux_sym_preproc_if_token1] = ACTIONS(1317), - [aux_sym_preproc_if_token2] = ACTIONS(1317), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1317), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1317), - [sym_preproc_directive] = ACTIONS(1317), - [anon_sym_LPAREN2] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1319), - [anon_sym_TILDE] = ACTIONS(1319), - [anon_sym_DASH] = ACTIONS(1317), - [anon_sym_PLUS] = ACTIONS(1317), - [anon_sym_STAR] = ACTIONS(1319), - [anon_sym_AMP] = ACTIONS(1319), - [anon_sym_SEMI] = ACTIONS(1319), - [anon_sym___extension__] = ACTIONS(1317), - [anon_sym_typedef] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1317), - [anon_sym___attribute__] = ACTIONS(1317), - [anon_sym___scanf] = ACTIONS(1317), - [anon_sym___printf] = ACTIONS(1317), - [anon_sym___read_mostly] = ACTIONS(1317), - [anon_sym___must_hold] = ACTIONS(1317), - [anon_sym___ro_after_init] = ACTIONS(1317), - [anon_sym___noreturn] = ACTIONS(1317), - [anon_sym___cold] = ACTIONS(1317), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1319), - [anon_sym___declspec] = ACTIONS(1317), - [anon_sym___init] = ACTIONS(1317), - [anon_sym___exit] = ACTIONS(1317), - [anon_sym___cdecl] = ACTIONS(1317), - [anon_sym___clrcall] = ACTIONS(1317), - [anon_sym___stdcall] = ACTIONS(1317), - [anon_sym___fastcall] = ACTIONS(1317), - [anon_sym___thiscall] = ACTIONS(1317), - [anon_sym___vectorcall] = ACTIONS(1317), - [anon_sym_LBRACE] = ACTIONS(1319), - [anon_sym_signed] = ACTIONS(1317), - [anon_sym_unsigned] = ACTIONS(1317), - [anon_sym_long] = ACTIONS(1317), - [anon_sym_short] = ACTIONS(1317), - [anon_sym_static] = ACTIONS(1317), - [anon_sym_auto] = ACTIONS(1317), - [anon_sym_register] = ACTIONS(1317), - [anon_sym_inline] = ACTIONS(1317), - [anon_sym___inline] = ACTIONS(1317), - [anon_sym___inline__] = ACTIONS(1317), - [anon_sym___forceinline] = ACTIONS(1317), - [anon_sym_thread_local] = ACTIONS(1317), - [anon_sym___thread] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_constexpr] = ACTIONS(1317), - [anon_sym_volatile] = ACTIONS(1317), - [anon_sym_restrict] = ACTIONS(1317), - [anon_sym___restrict__] = ACTIONS(1317), - [anon_sym__Atomic] = ACTIONS(1317), - [anon_sym__Noreturn] = ACTIONS(1317), - [anon_sym_noreturn] = ACTIONS(1317), - [anon_sym_alignas] = ACTIONS(1317), - [anon_sym__Alignas] = ACTIONS(1317), - [sym_primitive_type] = ACTIONS(1317), - [anon_sym_enum] = ACTIONS(1317), - [anon_sym_struct] = ACTIONS(1317), - [anon_sym_union] = ACTIONS(1317), - [anon_sym_if] = ACTIONS(1317), - [anon_sym_switch] = ACTIONS(1317), - [anon_sym_case] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(1317), - [anon_sym_while] = ACTIONS(1317), - [anon_sym_do] = ACTIONS(1317), - [anon_sym_for] = ACTIONS(1317), - [anon_sym_return] = ACTIONS(1317), - [anon_sym_break] = ACTIONS(1317), - [anon_sym_continue] = ACTIONS(1317), - [anon_sym_goto] = ACTIONS(1317), - [anon_sym___try] = ACTIONS(1317), - [anon_sym___leave] = ACTIONS(1317), - [anon_sym_DASH_DASH] = ACTIONS(1319), - [anon_sym_PLUS_PLUS] = ACTIONS(1319), - [anon_sym_sizeof] = ACTIONS(1317), - [anon_sym___alignof__] = ACTIONS(1317), - [anon_sym___alignof] = ACTIONS(1317), - [anon_sym__alignof] = ACTIONS(1317), - [anon_sym_alignof] = ACTIONS(1317), - [anon_sym__Alignof] = ACTIONS(1317), - [anon_sym_offsetof] = ACTIONS(1317), - [anon_sym__Generic] = ACTIONS(1317), - [anon_sym_asm] = ACTIONS(1317), - [anon_sym___asm__] = ACTIONS(1317), - [sym_number_literal] = ACTIONS(1319), - [anon_sym_L_SQUOTE] = ACTIONS(1319), - [anon_sym_u_SQUOTE] = ACTIONS(1319), - [anon_sym_U_SQUOTE] = ACTIONS(1319), - [anon_sym_u8_SQUOTE] = ACTIONS(1319), - [anon_sym_SQUOTE] = ACTIONS(1319), - [anon_sym_L_DQUOTE] = ACTIONS(1319), - [anon_sym_u_DQUOTE] = ACTIONS(1319), - [anon_sym_U_DQUOTE] = ACTIONS(1319), - [anon_sym_u8_DQUOTE] = ACTIONS(1319), - [anon_sym_DQUOTE] = ACTIONS(1319), - [sym_true] = ACTIONS(1317), - [sym_false] = ACTIONS(1317), - [anon_sym_NULL] = ACTIONS(1317), - [anon_sym_nullptr] = ACTIONS(1317), - [sym_comment] = ACTIONS(3), + [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] = { - [sym_identifier] = ACTIONS(1345), - [aux_sym_preproc_include_token1] = ACTIONS(1345), - [aux_sym_preproc_def_token1] = ACTIONS(1345), - [aux_sym_preproc_if_token1] = ACTIONS(1345), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1345), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1345), - [sym_preproc_directive] = ACTIONS(1345), - [anon_sym_LPAREN2] = ACTIONS(1347), - [anon_sym_BANG] = ACTIONS(1347), - [anon_sym_TILDE] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_PLUS] = ACTIONS(1345), - [anon_sym_STAR] = ACTIONS(1347), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym_SEMI] = ACTIONS(1347), - [anon_sym___extension__] = ACTIONS(1345), - [anon_sym_typedef] = ACTIONS(1345), - [anon_sym_extern] = ACTIONS(1345), - [anon_sym___attribute__] = ACTIONS(1345), - [anon_sym___scanf] = ACTIONS(1345), - [anon_sym___printf] = ACTIONS(1345), - [anon_sym___read_mostly] = ACTIONS(1345), - [anon_sym___must_hold] = ACTIONS(1345), - [anon_sym___ro_after_init] = ACTIONS(1345), - [anon_sym___noreturn] = ACTIONS(1345), - [anon_sym___cold] = ACTIONS(1345), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1347), - [anon_sym___declspec] = ACTIONS(1345), - [anon_sym___init] = ACTIONS(1345), - [anon_sym___exit] = ACTIONS(1345), - [anon_sym___cdecl] = ACTIONS(1345), - [anon_sym___clrcall] = ACTIONS(1345), - [anon_sym___stdcall] = ACTIONS(1345), - [anon_sym___fastcall] = ACTIONS(1345), - [anon_sym___thiscall] = ACTIONS(1345), - [anon_sym___vectorcall] = ACTIONS(1345), - [anon_sym_LBRACE] = ACTIONS(1347), - [anon_sym_RBRACE] = ACTIONS(1347), - [anon_sym_signed] = ACTIONS(1345), - [anon_sym_unsigned] = ACTIONS(1345), - [anon_sym_long] = ACTIONS(1345), - [anon_sym_short] = ACTIONS(1345), - [anon_sym_static] = ACTIONS(1345), - [anon_sym_auto] = ACTIONS(1345), - [anon_sym_register] = ACTIONS(1345), - [anon_sym_inline] = ACTIONS(1345), - [anon_sym___inline] = ACTIONS(1345), - [anon_sym___inline__] = ACTIONS(1345), - [anon_sym___forceinline] = ACTIONS(1345), - [anon_sym_thread_local] = ACTIONS(1345), - [anon_sym___thread] = ACTIONS(1345), - [anon_sym_const] = ACTIONS(1345), - [anon_sym_constexpr] = ACTIONS(1345), - [anon_sym_volatile] = ACTIONS(1345), - [anon_sym_restrict] = ACTIONS(1345), - [anon_sym___restrict__] = ACTIONS(1345), - [anon_sym__Atomic] = ACTIONS(1345), - [anon_sym__Noreturn] = ACTIONS(1345), - [anon_sym_noreturn] = ACTIONS(1345), - [anon_sym_alignas] = ACTIONS(1345), - [anon_sym__Alignas] = ACTIONS(1345), - [sym_primitive_type] = ACTIONS(1345), - [anon_sym_enum] = ACTIONS(1345), - [anon_sym_struct] = ACTIONS(1345), - [anon_sym_union] = ACTIONS(1345), - [anon_sym_if] = ACTIONS(1345), - [anon_sym_switch] = ACTIONS(1345), - [anon_sym_case] = ACTIONS(1345), - [anon_sym_default] = ACTIONS(1345), - [anon_sym_while] = ACTIONS(1345), - [anon_sym_do] = ACTIONS(1345), - [anon_sym_for] = ACTIONS(1345), - [anon_sym_return] = ACTIONS(1345), - [anon_sym_break] = ACTIONS(1345), - [anon_sym_continue] = ACTIONS(1345), - [anon_sym_goto] = ACTIONS(1345), - [anon_sym___try] = ACTIONS(1345), - [anon_sym___leave] = ACTIONS(1345), - [anon_sym_DASH_DASH] = ACTIONS(1347), - [anon_sym_PLUS_PLUS] = ACTIONS(1347), - [anon_sym_sizeof] = ACTIONS(1345), - [anon_sym___alignof__] = ACTIONS(1345), - [anon_sym___alignof] = ACTIONS(1345), - [anon_sym__alignof] = ACTIONS(1345), - [anon_sym_alignof] = ACTIONS(1345), - [anon_sym__Alignof] = ACTIONS(1345), - [anon_sym_offsetof] = ACTIONS(1345), - [anon_sym__Generic] = ACTIONS(1345), - [anon_sym_asm] = ACTIONS(1345), - [anon_sym___asm__] = ACTIONS(1345), - [sym_number_literal] = ACTIONS(1347), - [anon_sym_L_SQUOTE] = ACTIONS(1347), - [anon_sym_u_SQUOTE] = ACTIONS(1347), - [anon_sym_U_SQUOTE] = ACTIONS(1347), - [anon_sym_u8_SQUOTE] = ACTIONS(1347), - [anon_sym_SQUOTE] = ACTIONS(1347), - [anon_sym_L_DQUOTE] = ACTIONS(1347), - [anon_sym_u_DQUOTE] = ACTIONS(1347), - [anon_sym_U_DQUOTE] = ACTIONS(1347), - [anon_sym_u8_DQUOTE] = ACTIONS(1347), - [anon_sym_DQUOTE] = ACTIONS(1347), - [sym_true] = ACTIONS(1345), - [sym_false] = ACTIONS(1345), - [anon_sym_NULL] = ACTIONS(1345), - [anon_sym_nullptr] = ACTIONS(1345), - [sym_comment] = ACTIONS(3), + [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_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), }, [341] = { - [sym_identifier] = ACTIONS(1349), - [aux_sym_preproc_include_token1] = ACTIONS(1349), - [aux_sym_preproc_def_token1] = ACTIONS(1349), - [aux_sym_preproc_if_token1] = ACTIONS(1349), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1349), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1349), - [sym_preproc_directive] = ACTIONS(1349), - [anon_sym_LPAREN2] = ACTIONS(1351), - [anon_sym_BANG] = ACTIONS(1351), - [anon_sym_TILDE] = ACTIONS(1351), - [anon_sym_DASH] = ACTIONS(1349), - [anon_sym_PLUS] = ACTIONS(1349), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_AMP] = ACTIONS(1351), - [anon_sym_SEMI] = ACTIONS(1351), - [anon_sym___extension__] = ACTIONS(1349), - [anon_sym_typedef] = ACTIONS(1349), - [anon_sym_extern] = ACTIONS(1349), - [anon_sym___attribute__] = ACTIONS(1349), - [anon_sym___scanf] = ACTIONS(1349), - [anon_sym___printf] = ACTIONS(1349), - [anon_sym___read_mostly] = ACTIONS(1349), - [anon_sym___must_hold] = ACTIONS(1349), - [anon_sym___ro_after_init] = ACTIONS(1349), - [anon_sym___noreturn] = ACTIONS(1349), - [anon_sym___cold] = ACTIONS(1349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1351), - [anon_sym___declspec] = ACTIONS(1349), - [anon_sym___init] = ACTIONS(1349), - [anon_sym___exit] = ACTIONS(1349), - [anon_sym___cdecl] = ACTIONS(1349), - [anon_sym___clrcall] = ACTIONS(1349), - [anon_sym___stdcall] = ACTIONS(1349), - [anon_sym___fastcall] = ACTIONS(1349), - [anon_sym___thiscall] = ACTIONS(1349), - [anon_sym___vectorcall] = ACTIONS(1349), - [anon_sym_LBRACE] = ACTIONS(1351), - [anon_sym_RBRACE] = ACTIONS(1351), - [anon_sym_signed] = ACTIONS(1349), - [anon_sym_unsigned] = ACTIONS(1349), - [anon_sym_long] = ACTIONS(1349), - [anon_sym_short] = ACTIONS(1349), - [anon_sym_static] = ACTIONS(1349), - [anon_sym_auto] = ACTIONS(1349), - [anon_sym_register] = ACTIONS(1349), - [anon_sym_inline] = ACTIONS(1349), - [anon_sym___inline] = ACTIONS(1349), - [anon_sym___inline__] = ACTIONS(1349), - [anon_sym___forceinline] = ACTIONS(1349), - [anon_sym_thread_local] = ACTIONS(1349), - [anon_sym___thread] = ACTIONS(1349), - [anon_sym_const] = ACTIONS(1349), - [anon_sym_constexpr] = ACTIONS(1349), - [anon_sym_volatile] = ACTIONS(1349), - [anon_sym_restrict] = ACTIONS(1349), - [anon_sym___restrict__] = ACTIONS(1349), - [anon_sym__Atomic] = ACTIONS(1349), - [anon_sym__Noreturn] = ACTIONS(1349), - [anon_sym_noreturn] = ACTIONS(1349), - [anon_sym_alignas] = ACTIONS(1349), - [anon_sym__Alignas] = ACTIONS(1349), - [sym_primitive_type] = ACTIONS(1349), - [anon_sym_enum] = ACTIONS(1349), - [anon_sym_struct] = ACTIONS(1349), - [anon_sym_union] = ACTIONS(1349), - [anon_sym_if] = ACTIONS(1349), - [anon_sym_switch] = ACTIONS(1349), - [anon_sym_case] = ACTIONS(1349), - [anon_sym_default] = ACTIONS(1349), - [anon_sym_while] = ACTIONS(1349), - [anon_sym_do] = ACTIONS(1349), - [anon_sym_for] = ACTIONS(1349), - [anon_sym_return] = ACTIONS(1349), - [anon_sym_break] = ACTIONS(1349), - [anon_sym_continue] = ACTIONS(1349), - [anon_sym_goto] = ACTIONS(1349), - [anon_sym___try] = ACTIONS(1349), - [anon_sym___leave] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1351), - [anon_sym_PLUS_PLUS] = ACTIONS(1351), - [anon_sym_sizeof] = ACTIONS(1349), - [anon_sym___alignof__] = ACTIONS(1349), - [anon_sym___alignof] = ACTIONS(1349), - [anon_sym__alignof] = ACTIONS(1349), - [anon_sym_alignof] = ACTIONS(1349), - [anon_sym__Alignof] = ACTIONS(1349), - [anon_sym_offsetof] = ACTIONS(1349), - [anon_sym__Generic] = ACTIONS(1349), - [anon_sym_asm] = ACTIONS(1349), - [anon_sym___asm__] = ACTIONS(1349), - [sym_number_literal] = ACTIONS(1351), - [anon_sym_L_SQUOTE] = ACTIONS(1351), - [anon_sym_u_SQUOTE] = ACTIONS(1351), - [anon_sym_U_SQUOTE] = ACTIONS(1351), - [anon_sym_u8_SQUOTE] = ACTIONS(1351), - [anon_sym_SQUOTE] = ACTIONS(1351), - [anon_sym_L_DQUOTE] = ACTIONS(1351), - [anon_sym_u_DQUOTE] = ACTIONS(1351), - [anon_sym_U_DQUOTE] = ACTIONS(1351), - [anon_sym_u8_DQUOTE] = ACTIONS(1351), - [anon_sym_DQUOTE] = ACTIONS(1351), - [sym_true] = ACTIONS(1349), - [sym_false] = ACTIONS(1349), - [anon_sym_NULL] = ACTIONS(1349), - [anon_sym_nullptr] = ACTIONS(1349), - [sym_comment] = ACTIONS(3), + [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(1301), - [aux_sym_preproc_include_token1] = ACTIONS(1301), - [aux_sym_preproc_def_token1] = ACTIONS(1301), - [aux_sym_preproc_if_token1] = ACTIONS(1301), - [aux_sym_preproc_if_token2] = ACTIONS(1301), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1301), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1301), - [sym_preproc_directive] = ACTIONS(1301), - [anon_sym_LPAREN2] = ACTIONS(1303), - [anon_sym_BANG] = ACTIONS(1303), - [anon_sym_TILDE] = ACTIONS(1303), - [anon_sym_DASH] = ACTIONS(1301), - [anon_sym_PLUS] = ACTIONS(1301), - [anon_sym_STAR] = ACTIONS(1303), - [anon_sym_AMP] = ACTIONS(1303), - [anon_sym_SEMI] = ACTIONS(1303), - [anon_sym___extension__] = ACTIONS(1301), - [anon_sym_typedef] = ACTIONS(1301), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym___attribute__] = ACTIONS(1301), - [anon_sym___scanf] = ACTIONS(1301), - [anon_sym___printf] = ACTIONS(1301), - [anon_sym___read_mostly] = ACTIONS(1301), - [anon_sym___must_hold] = ACTIONS(1301), - [anon_sym___ro_after_init] = ACTIONS(1301), - [anon_sym___noreturn] = ACTIONS(1301), - [anon_sym___cold] = ACTIONS(1301), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1303), - [anon_sym___declspec] = ACTIONS(1301), - [anon_sym___init] = ACTIONS(1301), - [anon_sym___exit] = ACTIONS(1301), - [anon_sym___cdecl] = ACTIONS(1301), - [anon_sym___clrcall] = ACTIONS(1301), - [anon_sym___stdcall] = ACTIONS(1301), - [anon_sym___fastcall] = ACTIONS(1301), - [anon_sym___thiscall] = ACTIONS(1301), - [anon_sym___vectorcall] = ACTIONS(1301), - [anon_sym_LBRACE] = ACTIONS(1303), - [anon_sym_signed] = ACTIONS(1301), - [anon_sym_unsigned] = ACTIONS(1301), - [anon_sym_long] = ACTIONS(1301), - [anon_sym_short] = ACTIONS(1301), - [anon_sym_static] = ACTIONS(1301), - [anon_sym_auto] = ACTIONS(1301), - [anon_sym_register] = ACTIONS(1301), - [anon_sym_inline] = ACTIONS(1301), - [anon_sym___inline] = ACTIONS(1301), - [anon_sym___inline__] = ACTIONS(1301), - [anon_sym___forceinline] = ACTIONS(1301), - [anon_sym_thread_local] = ACTIONS(1301), - [anon_sym___thread] = ACTIONS(1301), - [anon_sym_const] = ACTIONS(1301), - [anon_sym_constexpr] = ACTIONS(1301), - [anon_sym_volatile] = ACTIONS(1301), - [anon_sym_restrict] = ACTIONS(1301), - [anon_sym___restrict__] = ACTIONS(1301), - [anon_sym__Atomic] = ACTIONS(1301), - [anon_sym__Noreturn] = ACTIONS(1301), - [anon_sym_noreturn] = ACTIONS(1301), - [anon_sym_alignas] = ACTIONS(1301), - [anon_sym__Alignas] = ACTIONS(1301), - [sym_primitive_type] = ACTIONS(1301), - [anon_sym_enum] = ACTIONS(1301), - [anon_sym_struct] = ACTIONS(1301), - [anon_sym_union] = ACTIONS(1301), - [anon_sym_if] = ACTIONS(1301), - [anon_sym_switch] = ACTIONS(1301), - [anon_sym_case] = ACTIONS(1301), - [anon_sym_default] = ACTIONS(1301), - [anon_sym_while] = ACTIONS(1301), - [anon_sym_do] = ACTIONS(1301), - [anon_sym_for] = ACTIONS(1301), - [anon_sym_return] = ACTIONS(1301), - [anon_sym_break] = ACTIONS(1301), - [anon_sym_continue] = ACTIONS(1301), - [anon_sym_goto] = ACTIONS(1301), - [anon_sym___try] = ACTIONS(1301), - [anon_sym___leave] = ACTIONS(1301), - [anon_sym_DASH_DASH] = ACTIONS(1303), - [anon_sym_PLUS_PLUS] = ACTIONS(1303), - [anon_sym_sizeof] = ACTIONS(1301), - [anon_sym___alignof__] = ACTIONS(1301), - [anon_sym___alignof] = ACTIONS(1301), - [anon_sym__alignof] = ACTIONS(1301), - [anon_sym_alignof] = ACTIONS(1301), - [anon_sym__Alignof] = ACTIONS(1301), - [anon_sym_offsetof] = ACTIONS(1301), - [anon_sym__Generic] = ACTIONS(1301), - [anon_sym_asm] = ACTIONS(1301), - [anon_sym___asm__] = ACTIONS(1301), - [sym_number_literal] = ACTIONS(1303), - [anon_sym_L_SQUOTE] = ACTIONS(1303), - [anon_sym_u_SQUOTE] = ACTIONS(1303), - [anon_sym_U_SQUOTE] = ACTIONS(1303), - [anon_sym_u8_SQUOTE] = ACTIONS(1303), - [anon_sym_SQUOTE] = ACTIONS(1303), - [anon_sym_L_DQUOTE] = ACTIONS(1303), - [anon_sym_u_DQUOTE] = ACTIONS(1303), - [anon_sym_U_DQUOTE] = ACTIONS(1303), - [anon_sym_u8_DQUOTE] = ACTIONS(1303), - [anon_sym_DQUOTE] = ACTIONS(1303), - [sym_true] = ACTIONS(1301), - [sym_false] = ACTIONS(1301), - [anon_sym_NULL] = ACTIONS(1301), - [anon_sym_nullptr] = ACTIONS(1301), - [sym_comment] = ACTIONS(3), + [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(1297), - [aux_sym_preproc_include_token1] = ACTIONS(1297), - [aux_sym_preproc_def_token1] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1297), - [aux_sym_preproc_if_token2] = ACTIONS(1297), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1297), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1297), - [sym_preproc_directive] = ACTIONS(1297), - [anon_sym_LPAREN2] = ACTIONS(1299), - [anon_sym_BANG] = ACTIONS(1299), - [anon_sym_TILDE] = ACTIONS(1299), - [anon_sym_DASH] = ACTIONS(1297), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_STAR] = ACTIONS(1299), - [anon_sym_AMP] = ACTIONS(1299), - [anon_sym_SEMI] = ACTIONS(1299), - [anon_sym___extension__] = ACTIONS(1297), - [anon_sym_typedef] = ACTIONS(1297), - [anon_sym_extern] = ACTIONS(1297), - [anon_sym___attribute__] = ACTIONS(1297), - [anon_sym___scanf] = ACTIONS(1297), - [anon_sym___printf] = ACTIONS(1297), - [anon_sym___read_mostly] = ACTIONS(1297), - [anon_sym___must_hold] = ACTIONS(1297), - [anon_sym___ro_after_init] = ACTIONS(1297), - [anon_sym___noreturn] = ACTIONS(1297), - [anon_sym___cold] = ACTIONS(1297), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1299), - [anon_sym___declspec] = ACTIONS(1297), - [anon_sym___init] = ACTIONS(1297), - [anon_sym___exit] = ACTIONS(1297), - [anon_sym___cdecl] = ACTIONS(1297), - [anon_sym___clrcall] = ACTIONS(1297), - [anon_sym___stdcall] = ACTIONS(1297), - [anon_sym___fastcall] = ACTIONS(1297), - [anon_sym___thiscall] = ACTIONS(1297), - [anon_sym___vectorcall] = ACTIONS(1297), - [anon_sym_LBRACE] = ACTIONS(1299), - [anon_sym_signed] = ACTIONS(1297), - [anon_sym_unsigned] = ACTIONS(1297), - [anon_sym_long] = ACTIONS(1297), - [anon_sym_short] = ACTIONS(1297), - [anon_sym_static] = ACTIONS(1297), - [anon_sym_auto] = ACTIONS(1297), - [anon_sym_register] = ACTIONS(1297), - [anon_sym_inline] = ACTIONS(1297), - [anon_sym___inline] = ACTIONS(1297), - [anon_sym___inline__] = ACTIONS(1297), - [anon_sym___forceinline] = ACTIONS(1297), - [anon_sym_thread_local] = ACTIONS(1297), - [anon_sym___thread] = ACTIONS(1297), - [anon_sym_const] = ACTIONS(1297), - [anon_sym_constexpr] = ACTIONS(1297), - [anon_sym_volatile] = ACTIONS(1297), - [anon_sym_restrict] = ACTIONS(1297), - [anon_sym___restrict__] = ACTIONS(1297), - [anon_sym__Atomic] = ACTIONS(1297), - [anon_sym__Noreturn] = ACTIONS(1297), - [anon_sym_noreturn] = ACTIONS(1297), - [anon_sym_alignas] = ACTIONS(1297), - [anon_sym__Alignas] = ACTIONS(1297), - [sym_primitive_type] = ACTIONS(1297), - [anon_sym_enum] = ACTIONS(1297), - [anon_sym_struct] = ACTIONS(1297), - [anon_sym_union] = ACTIONS(1297), - [anon_sym_if] = ACTIONS(1297), - [anon_sym_switch] = ACTIONS(1297), - [anon_sym_case] = ACTIONS(1297), - [anon_sym_default] = ACTIONS(1297), - [anon_sym_while] = ACTIONS(1297), - [anon_sym_do] = ACTIONS(1297), - [anon_sym_for] = ACTIONS(1297), - [anon_sym_return] = ACTIONS(1297), - [anon_sym_break] = ACTIONS(1297), - [anon_sym_continue] = ACTIONS(1297), - [anon_sym_goto] = ACTIONS(1297), - [anon_sym___try] = ACTIONS(1297), - [anon_sym___leave] = ACTIONS(1297), - [anon_sym_DASH_DASH] = ACTIONS(1299), - [anon_sym_PLUS_PLUS] = ACTIONS(1299), - [anon_sym_sizeof] = ACTIONS(1297), - [anon_sym___alignof__] = ACTIONS(1297), - [anon_sym___alignof] = ACTIONS(1297), - [anon_sym__alignof] = ACTIONS(1297), - [anon_sym_alignof] = ACTIONS(1297), - [anon_sym__Alignof] = ACTIONS(1297), - [anon_sym_offsetof] = ACTIONS(1297), - [anon_sym__Generic] = ACTIONS(1297), - [anon_sym_asm] = ACTIONS(1297), - [anon_sym___asm__] = ACTIONS(1297), - [sym_number_literal] = ACTIONS(1299), - [anon_sym_L_SQUOTE] = ACTIONS(1299), - [anon_sym_u_SQUOTE] = ACTIONS(1299), - [anon_sym_U_SQUOTE] = ACTIONS(1299), - [anon_sym_u8_SQUOTE] = ACTIONS(1299), - [anon_sym_SQUOTE] = ACTIONS(1299), - [anon_sym_L_DQUOTE] = ACTIONS(1299), - [anon_sym_u_DQUOTE] = ACTIONS(1299), - [anon_sym_U_DQUOTE] = ACTIONS(1299), - [anon_sym_u8_DQUOTE] = ACTIONS(1299), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_true] = ACTIONS(1297), - [sym_false] = ACTIONS(1297), - [anon_sym_NULL] = ACTIONS(1297), - [anon_sym_nullptr] = ACTIONS(1297), - [sym_comment] = ACTIONS(3), + [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(1289), - [aux_sym_preproc_include_token1] = ACTIONS(1289), - [aux_sym_preproc_def_token1] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1289), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1289), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1289), - [sym_preproc_directive] = ACTIONS(1289), - [anon_sym_LPAREN2] = ACTIONS(1291), - [anon_sym_BANG] = ACTIONS(1291), - [anon_sym_TILDE] = ACTIONS(1291), - [anon_sym_DASH] = ACTIONS(1289), - [anon_sym_PLUS] = ACTIONS(1289), - [anon_sym_STAR] = ACTIONS(1291), - [anon_sym_AMP] = ACTIONS(1291), - [anon_sym_SEMI] = ACTIONS(1291), - [anon_sym___extension__] = ACTIONS(1289), - [anon_sym_typedef] = ACTIONS(1289), - [anon_sym_extern] = ACTIONS(1289), - [anon_sym___attribute__] = ACTIONS(1289), - [anon_sym___scanf] = ACTIONS(1289), - [anon_sym___printf] = ACTIONS(1289), - [anon_sym___read_mostly] = ACTIONS(1289), - [anon_sym___must_hold] = ACTIONS(1289), - [anon_sym___ro_after_init] = ACTIONS(1289), - [anon_sym___noreturn] = ACTIONS(1289), - [anon_sym___cold] = ACTIONS(1289), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1291), - [anon_sym___declspec] = ACTIONS(1289), - [anon_sym___init] = ACTIONS(1289), - [anon_sym___exit] = ACTIONS(1289), - [anon_sym___cdecl] = ACTIONS(1289), - [anon_sym___clrcall] = ACTIONS(1289), - [anon_sym___stdcall] = ACTIONS(1289), - [anon_sym___fastcall] = ACTIONS(1289), - [anon_sym___thiscall] = ACTIONS(1289), - [anon_sym___vectorcall] = ACTIONS(1289), - [anon_sym_LBRACE] = ACTIONS(1291), - [anon_sym_RBRACE] = ACTIONS(1291), - [anon_sym_signed] = ACTIONS(1289), - [anon_sym_unsigned] = ACTIONS(1289), - [anon_sym_long] = ACTIONS(1289), - [anon_sym_short] = ACTIONS(1289), - [anon_sym_static] = ACTIONS(1289), - [anon_sym_auto] = ACTIONS(1289), - [anon_sym_register] = ACTIONS(1289), - [anon_sym_inline] = ACTIONS(1289), - [anon_sym___inline] = ACTIONS(1289), - [anon_sym___inline__] = ACTIONS(1289), - [anon_sym___forceinline] = ACTIONS(1289), - [anon_sym_thread_local] = ACTIONS(1289), - [anon_sym___thread] = ACTIONS(1289), - [anon_sym_const] = ACTIONS(1289), - [anon_sym_constexpr] = ACTIONS(1289), - [anon_sym_volatile] = ACTIONS(1289), - [anon_sym_restrict] = ACTIONS(1289), - [anon_sym___restrict__] = ACTIONS(1289), - [anon_sym__Atomic] = ACTIONS(1289), - [anon_sym__Noreturn] = ACTIONS(1289), - [anon_sym_noreturn] = ACTIONS(1289), - [anon_sym_alignas] = ACTIONS(1289), - [anon_sym__Alignas] = ACTIONS(1289), - [sym_primitive_type] = ACTIONS(1289), - [anon_sym_enum] = ACTIONS(1289), - [anon_sym_struct] = ACTIONS(1289), - [anon_sym_union] = ACTIONS(1289), - [anon_sym_if] = ACTIONS(1289), - [anon_sym_switch] = ACTIONS(1289), - [anon_sym_case] = ACTIONS(1289), - [anon_sym_default] = ACTIONS(1289), - [anon_sym_while] = ACTIONS(1289), - [anon_sym_do] = ACTIONS(1289), - [anon_sym_for] = ACTIONS(1289), - [anon_sym_return] = ACTIONS(1289), - [anon_sym_break] = ACTIONS(1289), - [anon_sym_continue] = ACTIONS(1289), - [anon_sym_goto] = ACTIONS(1289), - [anon_sym___try] = ACTIONS(1289), - [anon_sym___leave] = ACTIONS(1289), - [anon_sym_DASH_DASH] = ACTIONS(1291), - [anon_sym_PLUS_PLUS] = ACTIONS(1291), - [anon_sym_sizeof] = ACTIONS(1289), - [anon_sym___alignof__] = ACTIONS(1289), - [anon_sym___alignof] = ACTIONS(1289), - [anon_sym__alignof] = ACTIONS(1289), - [anon_sym_alignof] = ACTIONS(1289), - [anon_sym__Alignof] = ACTIONS(1289), - [anon_sym_offsetof] = ACTIONS(1289), - [anon_sym__Generic] = ACTIONS(1289), - [anon_sym_asm] = ACTIONS(1289), - [anon_sym___asm__] = ACTIONS(1289), - [sym_number_literal] = ACTIONS(1291), - [anon_sym_L_SQUOTE] = ACTIONS(1291), - [anon_sym_u_SQUOTE] = ACTIONS(1291), - [anon_sym_U_SQUOTE] = ACTIONS(1291), - [anon_sym_u8_SQUOTE] = ACTIONS(1291), - [anon_sym_SQUOTE] = ACTIONS(1291), - [anon_sym_L_DQUOTE] = ACTIONS(1291), - [anon_sym_u_DQUOTE] = ACTIONS(1291), - [anon_sym_U_DQUOTE] = ACTIONS(1291), - [anon_sym_u8_DQUOTE] = ACTIONS(1291), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_true] = ACTIONS(1289), - [sym_false] = ACTIONS(1289), - [anon_sym_NULL] = ACTIONS(1289), - [anon_sym_nullptr] = ACTIONS(1289), - [sym_comment] = ACTIONS(3), + [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(1411), - [aux_sym_preproc_include_token1] = ACTIONS(1411), - [aux_sym_preproc_def_token1] = ACTIONS(1411), - [aux_sym_preproc_if_token1] = ACTIONS(1411), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1411), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1411), - [sym_preproc_directive] = ACTIONS(1411), - [anon_sym_LPAREN2] = ACTIONS(1413), - [anon_sym_BANG] = ACTIONS(1413), - [anon_sym_TILDE] = ACTIONS(1413), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(1413), - [anon_sym_SEMI] = ACTIONS(1413), - [anon_sym___extension__] = ACTIONS(1411), - [anon_sym_typedef] = ACTIONS(1411), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym___attribute__] = ACTIONS(1411), - [anon_sym___scanf] = ACTIONS(1411), - [anon_sym___printf] = ACTIONS(1411), - [anon_sym___read_mostly] = ACTIONS(1411), - [anon_sym___must_hold] = ACTIONS(1411), - [anon_sym___ro_after_init] = ACTIONS(1411), - [anon_sym___noreturn] = ACTIONS(1411), - [anon_sym___cold] = ACTIONS(1411), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(1411), - [anon_sym___init] = ACTIONS(1411), - [anon_sym___exit] = ACTIONS(1411), - [anon_sym___cdecl] = ACTIONS(1411), - [anon_sym___clrcall] = ACTIONS(1411), - [anon_sym___stdcall] = ACTIONS(1411), - [anon_sym___fastcall] = ACTIONS(1411), - [anon_sym___thiscall] = ACTIONS(1411), - [anon_sym___vectorcall] = ACTIONS(1411), - [anon_sym_LBRACE] = ACTIONS(1413), - [anon_sym_RBRACE] = ACTIONS(1413), - [anon_sym_signed] = ACTIONS(1411), - [anon_sym_unsigned] = ACTIONS(1411), - [anon_sym_long] = ACTIONS(1411), - [anon_sym_short] = ACTIONS(1411), - [anon_sym_static] = ACTIONS(1411), - [anon_sym_auto] = ACTIONS(1411), - [anon_sym_register] = ACTIONS(1411), - [anon_sym_inline] = ACTIONS(1411), - [anon_sym___inline] = ACTIONS(1411), - [anon_sym___inline__] = ACTIONS(1411), - [anon_sym___forceinline] = ACTIONS(1411), - [anon_sym_thread_local] = ACTIONS(1411), - [anon_sym___thread] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1411), - [anon_sym_constexpr] = ACTIONS(1411), - [anon_sym_volatile] = ACTIONS(1411), - [anon_sym_restrict] = ACTIONS(1411), - [anon_sym___restrict__] = ACTIONS(1411), - [anon_sym__Atomic] = ACTIONS(1411), - [anon_sym__Noreturn] = ACTIONS(1411), - [anon_sym_noreturn] = ACTIONS(1411), - [anon_sym_alignas] = ACTIONS(1411), - [anon_sym__Alignas] = ACTIONS(1411), - [sym_primitive_type] = ACTIONS(1411), - [anon_sym_enum] = ACTIONS(1411), - [anon_sym_struct] = ACTIONS(1411), - [anon_sym_union] = ACTIONS(1411), - [anon_sym_if] = ACTIONS(1411), - [anon_sym_switch] = ACTIONS(1411), - [anon_sym_case] = ACTIONS(1411), - [anon_sym_default] = ACTIONS(1411), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(1411), - [anon_sym_for] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_break] = ACTIONS(1411), - [anon_sym_continue] = ACTIONS(1411), - [anon_sym_goto] = ACTIONS(1411), - [anon_sym___try] = ACTIONS(1411), - [anon_sym___leave] = ACTIONS(1411), - [anon_sym_DASH_DASH] = ACTIONS(1413), - [anon_sym_PLUS_PLUS] = ACTIONS(1413), - [anon_sym_sizeof] = ACTIONS(1411), - [anon_sym___alignof__] = ACTIONS(1411), - [anon_sym___alignof] = ACTIONS(1411), - [anon_sym__alignof] = ACTIONS(1411), - [anon_sym_alignof] = ACTIONS(1411), - [anon_sym__Alignof] = ACTIONS(1411), - [anon_sym_offsetof] = ACTIONS(1411), - [anon_sym__Generic] = ACTIONS(1411), - [anon_sym_asm] = ACTIONS(1411), - [anon_sym___asm__] = ACTIONS(1411), - [sym_number_literal] = ACTIONS(1413), - [anon_sym_L_SQUOTE] = ACTIONS(1413), - [anon_sym_u_SQUOTE] = ACTIONS(1413), - [anon_sym_U_SQUOTE] = ACTIONS(1413), - [anon_sym_u8_SQUOTE] = ACTIONS(1413), - [anon_sym_SQUOTE] = ACTIONS(1413), - [anon_sym_L_DQUOTE] = ACTIONS(1413), - [anon_sym_u_DQUOTE] = ACTIONS(1413), - [anon_sym_U_DQUOTE] = ACTIONS(1413), - [anon_sym_u8_DQUOTE] = ACTIONS(1413), - [anon_sym_DQUOTE] = ACTIONS(1413), - [sym_true] = ACTIONS(1411), - [sym_false] = ACTIONS(1411), - [anon_sym_NULL] = ACTIONS(1411), - [anon_sym_nullptr] = ACTIONS(1411), - [sym_comment] = ACTIONS(3), + [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(1377), - [aux_sym_preproc_include_token1] = ACTIONS(1377), - [aux_sym_preproc_def_token1] = ACTIONS(1377), - [aux_sym_preproc_if_token1] = ACTIONS(1377), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1377), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1377), - [sym_preproc_directive] = ACTIONS(1377), - [anon_sym_LPAREN2] = ACTIONS(1379), - [anon_sym_BANG] = ACTIONS(1379), - [anon_sym_TILDE] = ACTIONS(1379), - [anon_sym_DASH] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1377), - [anon_sym_STAR] = ACTIONS(1379), - [anon_sym_AMP] = ACTIONS(1379), - [anon_sym_SEMI] = ACTIONS(1379), - [anon_sym___extension__] = ACTIONS(1377), - [anon_sym_typedef] = ACTIONS(1377), - [anon_sym_extern] = ACTIONS(1377), - [anon_sym___attribute__] = ACTIONS(1377), - [anon_sym___scanf] = ACTIONS(1377), - [anon_sym___printf] = ACTIONS(1377), - [anon_sym___read_mostly] = ACTIONS(1377), - [anon_sym___must_hold] = ACTIONS(1377), - [anon_sym___ro_after_init] = ACTIONS(1377), - [anon_sym___noreturn] = ACTIONS(1377), - [anon_sym___cold] = ACTIONS(1377), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1379), - [anon_sym___declspec] = ACTIONS(1377), - [anon_sym___init] = ACTIONS(1377), - [anon_sym___exit] = ACTIONS(1377), - [anon_sym___cdecl] = ACTIONS(1377), - [anon_sym___clrcall] = ACTIONS(1377), - [anon_sym___stdcall] = ACTIONS(1377), - [anon_sym___fastcall] = ACTIONS(1377), - [anon_sym___thiscall] = ACTIONS(1377), - [anon_sym___vectorcall] = ACTIONS(1377), - [anon_sym_LBRACE] = ACTIONS(1379), - [anon_sym_RBRACE] = ACTIONS(1379), - [anon_sym_signed] = ACTIONS(1377), - [anon_sym_unsigned] = ACTIONS(1377), - [anon_sym_long] = ACTIONS(1377), - [anon_sym_short] = ACTIONS(1377), - [anon_sym_static] = ACTIONS(1377), - [anon_sym_auto] = ACTIONS(1377), - [anon_sym_register] = ACTIONS(1377), - [anon_sym_inline] = ACTIONS(1377), - [anon_sym___inline] = ACTIONS(1377), - [anon_sym___inline__] = ACTIONS(1377), - [anon_sym___forceinline] = ACTIONS(1377), - [anon_sym_thread_local] = ACTIONS(1377), - [anon_sym___thread] = ACTIONS(1377), - [anon_sym_const] = ACTIONS(1377), - [anon_sym_constexpr] = ACTIONS(1377), - [anon_sym_volatile] = ACTIONS(1377), - [anon_sym_restrict] = ACTIONS(1377), - [anon_sym___restrict__] = ACTIONS(1377), - [anon_sym__Atomic] = ACTIONS(1377), - [anon_sym__Noreturn] = ACTIONS(1377), - [anon_sym_noreturn] = ACTIONS(1377), - [anon_sym_alignas] = ACTIONS(1377), - [anon_sym__Alignas] = ACTIONS(1377), - [sym_primitive_type] = ACTIONS(1377), - [anon_sym_enum] = ACTIONS(1377), - [anon_sym_struct] = ACTIONS(1377), - [anon_sym_union] = ACTIONS(1377), - [anon_sym_if] = ACTIONS(1377), - [anon_sym_switch] = ACTIONS(1377), - [anon_sym_case] = ACTIONS(1377), - [anon_sym_default] = ACTIONS(1377), - [anon_sym_while] = ACTIONS(1377), - [anon_sym_do] = ACTIONS(1377), - [anon_sym_for] = ACTIONS(1377), - [anon_sym_return] = ACTIONS(1377), - [anon_sym_break] = ACTIONS(1377), - [anon_sym_continue] = ACTIONS(1377), - [anon_sym_goto] = ACTIONS(1377), - [anon_sym___try] = ACTIONS(1377), - [anon_sym___leave] = ACTIONS(1377), - [anon_sym_DASH_DASH] = ACTIONS(1379), - [anon_sym_PLUS_PLUS] = ACTIONS(1379), - [anon_sym_sizeof] = ACTIONS(1377), - [anon_sym___alignof__] = ACTIONS(1377), - [anon_sym___alignof] = ACTIONS(1377), - [anon_sym__alignof] = ACTIONS(1377), - [anon_sym_alignof] = ACTIONS(1377), - [anon_sym__Alignof] = ACTIONS(1377), - [anon_sym_offsetof] = ACTIONS(1377), - [anon_sym__Generic] = ACTIONS(1377), - [anon_sym_asm] = ACTIONS(1377), - [anon_sym___asm__] = ACTIONS(1377), - [sym_number_literal] = ACTIONS(1379), - [anon_sym_L_SQUOTE] = ACTIONS(1379), - [anon_sym_u_SQUOTE] = ACTIONS(1379), - [anon_sym_U_SQUOTE] = ACTIONS(1379), - [anon_sym_u8_SQUOTE] = ACTIONS(1379), - [anon_sym_SQUOTE] = ACTIONS(1379), - [anon_sym_L_DQUOTE] = ACTIONS(1379), - [anon_sym_u_DQUOTE] = ACTIONS(1379), - [anon_sym_U_DQUOTE] = ACTIONS(1379), - [anon_sym_u8_DQUOTE] = ACTIONS(1379), - [anon_sym_DQUOTE] = ACTIONS(1379), - [sym_true] = ACTIONS(1377), - [sym_false] = ACTIONS(1377), - [anon_sym_NULL] = ACTIONS(1377), - [anon_sym_nullptr] = ACTIONS(1377), - [sym_comment] = ACTIONS(3), + [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_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(1381), - [aux_sym_preproc_include_token1] = ACTIONS(1381), - [aux_sym_preproc_def_token1] = ACTIONS(1381), - [aux_sym_preproc_if_token1] = ACTIONS(1381), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1381), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1381), - [sym_preproc_directive] = ACTIONS(1381), - [anon_sym_LPAREN2] = ACTIONS(1383), - [anon_sym_BANG] = ACTIONS(1383), - [anon_sym_TILDE] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1381), - [anon_sym_PLUS] = ACTIONS(1381), - [anon_sym_STAR] = ACTIONS(1383), - [anon_sym_AMP] = ACTIONS(1383), - [anon_sym_SEMI] = ACTIONS(1383), - [anon_sym___extension__] = ACTIONS(1381), - [anon_sym_typedef] = ACTIONS(1381), - [anon_sym_extern] = ACTIONS(1381), - [anon_sym___attribute__] = ACTIONS(1381), - [anon_sym___scanf] = ACTIONS(1381), - [anon_sym___printf] = ACTIONS(1381), - [anon_sym___read_mostly] = ACTIONS(1381), - [anon_sym___must_hold] = ACTIONS(1381), - [anon_sym___ro_after_init] = ACTIONS(1381), - [anon_sym___noreturn] = ACTIONS(1381), - [anon_sym___cold] = ACTIONS(1381), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1383), - [anon_sym___declspec] = ACTIONS(1381), - [anon_sym___init] = ACTIONS(1381), - [anon_sym___exit] = ACTIONS(1381), - [anon_sym___cdecl] = ACTIONS(1381), - [anon_sym___clrcall] = ACTIONS(1381), - [anon_sym___stdcall] = ACTIONS(1381), - [anon_sym___fastcall] = ACTIONS(1381), - [anon_sym___thiscall] = ACTIONS(1381), - [anon_sym___vectorcall] = ACTIONS(1381), - [anon_sym_LBRACE] = ACTIONS(1383), - [anon_sym_RBRACE] = ACTIONS(1383), - [anon_sym_signed] = ACTIONS(1381), - [anon_sym_unsigned] = ACTIONS(1381), - [anon_sym_long] = ACTIONS(1381), - [anon_sym_short] = ACTIONS(1381), - [anon_sym_static] = ACTIONS(1381), - [anon_sym_auto] = ACTIONS(1381), - [anon_sym_register] = ACTIONS(1381), - [anon_sym_inline] = ACTIONS(1381), - [anon_sym___inline] = ACTIONS(1381), - [anon_sym___inline__] = ACTIONS(1381), - [anon_sym___forceinline] = ACTIONS(1381), - [anon_sym_thread_local] = ACTIONS(1381), - [anon_sym___thread] = ACTIONS(1381), - [anon_sym_const] = ACTIONS(1381), - [anon_sym_constexpr] = ACTIONS(1381), - [anon_sym_volatile] = ACTIONS(1381), - [anon_sym_restrict] = ACTIONS(1381), - [anon_sym___restrict__] = ACTIONS(1381), - [anon_sym__Atomic] = ACTIONS(1381), - [anon_sym__Noreturn] = ACTIONS(1381), - [anon_sym_noreturn] = ACTIONS(1381), - [anon_sym_alignas] = ACTIONS(1381), - [anon_sym__Alignas] = ACTIONS(1381), - [sym_primitive_type] = ACTIONS(1381), - [anon_sym_enum] = ACTIONS(1381), - [anon_sym_struct] = ACTIONS(1381), - [anon_sym_union] = ACTIONS(1381), - [anon_sym_if] = ACTIONS(1381), - [anon_sym_switch] = ACTIONS(1381), - [anon_sym_case] = ACTIONS(1381), - [anon_sym_default] = ACTIONS(1381), - [anon_sym_while] = ACTIONS(1381), - [anon_sym_do] = ACTIONS(1381), - [anon_sym_for] = ACTIONS(1381), - [anon_sym_return] = ACTIONS(1381), - [anon_sym_break] = ACTIONS(1381), - [anon_sym_continue] = ACTIONS(1381), - [anon_sym_goto] = ACTIONS(1381), - [anon_sym___try] = ACTIONS(1381), - [anon_sym___leave] = ACTIONS(1381), - [anon_sym_DASH_DASH] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1383), - [anon_sym_sizeof] = ACTIONS(1381), - [anon_sym___alignof__] = ACTIONS(1381), - [anon_sym___alignof] = ACTIONS(1381), - [anon_sym__alignof] = ACTIONS(1381), - [anon_sym_alignof] = ACTIONS(1381), - [anon_sym__Alignof] = ACTIONS(1381), - [anon_sym_offsetof] = ACTIONS(1381), - [anon_sym__Generic] = ACTIONS(1381), - [anon_sym_asm] = ACTIONS(1381), - [anon_sym___asm__] = ACTIONS(1381), - [sym_number_literal] = ACTIONS(1383), - [anon_sym_L_SQUOTE] = ACTIONS(1383), - [anon_sym_u_SQUOTE] = ACTIONS(1383), - [anon_sym_U_SQUOTE] = ACTIONS(1383), - [anon_sym_u8_SQUOTE] = ACTIONS(1383), - [anon_sym_SQUOTE] = ACTIONS(1383), - [anon_sym_L_DQUOTE] = ACTIONS(1383), - [anon_sym_u_DQUOTE] = ACTIONS(1383), - [anon_sym_U_DQUOTE] = ACTIONS(1383), - [anon_sym_u8_DQUOTE] = ACTIONS(1383), - [anon_sym_DQUOTE] = ACTIONS(1383), - [sym_true] = ACTIONS(1381), - [sym_false] = ACTIONS(1381), - [anon_sym_NULL] = ACTIONS(1381), - [anon_sym_nullptr] = ACTIONS(1381), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [348] = { - [sym_identifier] = ACTIONS(1411), - [aux_sym_preproc_include_token1] = ACTIONS(1411), - [aux_sym_preproc_def_token1] = ACTIONS(1411), - [aux_sym_preproc_if_token1] = ACTIONS(1411), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1411), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1411), - [sym_preproc_directive] = ACTIONS(1411), - [anon_sym_LPAREN2] = ACTIONS(1413), - [anon_sym_BANG] = ACTIONS(1413), - [anon_sym_TILDE] = ACTIONS(1413), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(1413), - [anon_sym_SEMI] = ACTIONS(1413), - [anon_sym___extension__] = ACTIONS(1411), - [anon_sym_typedef] = ACTIONS(1411), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym___attribute__] = ACTIONS(1411), - [anon_sym___scanf] = ACTIONS(1411), - [anon_sym___printf] = ACTIONS(1411), - [anon_sym___read_mostly] = ACTIONS(1411), - [anon_sym___must_hold] = ACTIONS(1411), - [anon_sym___ro_after_init] = ACTIONS(1411), - [anon_sym___noreturn] = ACTIONS(1411), - [anon_sym___cold] = ACTIONS(1411), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(1411), - [anon_sym___init] = ACTIONS(1411), - [anon_sym___exit] = ACTIONS(1411), - [anon_sym___cdecl] = ACTIONS(1411), - [anon_sym___clrcall] = ACTIONS(1411), - [anon_sym___stdcall] = ACTIONS(1411), - [anon_sym___fastcall] = ACTIONS(1411), - [anon_sym___thiscall] = ACTIONS(1411), - [anon_sym___vectorcall] = ACTIONS(1411), - [anon_sym_LBRACE] = ACTIONS(1413), - [anon_sym_RBRACE] = ACTIONS(1413), - [anon_sym_signed] = ACTIONS(1411), - [anon_sym_unsigned] = ACTIONS(1411), - [anon_sym_long] = ACTIONS(1411), - [anon_sym_short] = ACTIONS(1411), - [anon_sym_static] = ACTIONS(1411), - [anon_sym_auto] = ACTIONS(1411), - [anon_sym_register] = ACTIONS(1411), - [anon_sym_inline] = ACTIONS(1411), - [anon_sym___inline] = ACTIONS(1411), - [anon_sym___inline__] = ACTIONS(1411), - [anon_sym___forceinline] = ACTIONS(1411), - [anon_sym_thread_local] = ACTIONS(1411), - [anon_sym___thread] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1411), - [anon_sym_constexpr] = ACTIONS(1411), - [anon_sym_volatile] = ACTIONS(1411), - [anon_sym_restrict] = ACTIONS(1411), - [anon_sym___restrict__] = ACTIONS(1411), - [anon_sym__Atomic] = ACTIONS(1411), - [anon_sym__Noreturn] = ACTIONS(1411), - [anon_sym_noreturn] = ACTIONS(1411), - [anon_sym_alignas] = ACTIONS(1411), - [anon_sym__Alignas] = ACTIONS(1411), - [sym_primitive_type] = ACTIONS(1411), - [anon_sym_enum] = ACTIONS(1411), - [anon_sym_struct] = ACTIONS(1411), - [anon_sym_union] = ACTIONS(1411), - [anon_sym_if] = ACTIONS(1411), - [anon_sym_switch] = ACTIONS(1411), - [anon_sym_case] = ACTIONS(1411), - [anon_sym_default] = ACTIONS(1411), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(1411), - [anon_sym_for] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_break] = ACTIONS(1411), - [anon_sym_continue] = ACTIONS(1411), - [anon_sym_goto] = ACTIONS(1411), - [anon_sym___try] = ACTIONS(1411), - [anon_sym___leave] = ACTIONS(1411), - [anon_sym_DASH_DASH] = ACTIONS(1413), - [anon_sym_PLUS_PLUS] = ACTIONS(1413), - [anon_sym_sizeof] = ACTIONS(1411), - [anon_sym___alignof__] = ACTIONS(1411), - [anon_sym___alignof] = ACTIONS(1411), - [anon_sym__alignof] = ACTIONS(1411), - [anon_sym_alignof] = ACTIONS(1411), - [anon_sym__Alignof] = ACTIONS(1411), - [anon_sym_offsetof] = ACTIONS(1411), - [anon_sym__Generic] = ACTIONS(1411), - [anon_sym_asm] = ACTIONS(1411), - [anon_sym___asm__] = ACTIONS(1411), - [sym_number_literal] = ACTIONS(1413), - [anon_sym_L_SQUOTE] = ACTIONS(1413), - [anon_sym_u_SQUOTE] = ACTIONS(1413), - [anon_sym_U_SQUOTE] = ACTIONS(1413), - [anon_sym_u8_SQUOTE] = ACTIONS(1413), - [anon_sym_SQUOTE] = ACTIONS(1413), - [anon_sym_L_DQUOTE] = ACTIONS(1413), - [anon_sym_u_DQUOTE] = ACTIONS(1413), - [anon_sym_U_DQUOTE] = ACTIONS(1413), - [anon_sym_u8_DQUOTE] = ACTIONS(1413), - [anon_sym_DQUOTE] = ACTIONS(1413), - [sym_true] = ACTIONS(1411), - [sym_false] = ACTIONS(1411), - [anon_sym_NULL] = ACTIONS(1411), - [anon_sym_nullptr] = ACTIONS(1411), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [349] = { - [sym_identifier] = ACTIONS(1289), - [aux_sym_preproc_include_token1] = ACTIONS(1289), - [aux_sym_preproc_def_token1] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1289), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1289), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1289), - [sym_preproc_directive] = ACTIONS(1289), - [anon_sym_LPAREN2] = ACTIONS(1291), - [anon_sym_BANG] = ACTIONS(1291), - [anon_sym_TILDE] = ACTIONS(1291), - [anon_sym_DASH] = ACTIONS(1289), - [anon_sym_PLUS] = ACTIONS(1289), - [anon_sym_STAR] = ACTIONS(1291), - [anon_sym_AMP] = ACTIONS(1291), - [anon_sym_SEMI] = ACTIONS(1291), - [anon_sym___extension__] = ACTIONS(1289), - [anon_sym_typedef] = ACTIONS(1289), - [anon_sym_extern] = ACTIONS(1289), - [anon_sym___attribute__] = ACTIONS(1289), - [anon_sym___scanf] = ACTIONS(1289), - [anon_sym___printf] = ACTIONS(1289), - [anon_sym___read_mostly] = ACTIONS(1289), - [anon_sym___must_hold] = ACTIONS(1289), - [anon_sym___ro_after_init] = ACTIONS(1289), - [anon_sym___noreturn] = ACTIONS(1289), - [anon_sym___cold] = ACTIONS(1289), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1291), - [anon_sym___declspec] = ACTIONS(1289), - [anon_sym___init] = ACTIONS(1289), - [anon_sym___exit] = ACTIONS(1289), - [anon_sym___cdecl] = ACTIONS(1289), - [anon_sym___clrcall] = ACTIONS(1289), - [anon_sym___stdcall] = ACTIONS(1289), - [anon_sym___fastcall] = ACTIONS(1289), - [anon_sym___thiscall] = ACTIONS(1289), - [anon_sym___vectorcall] = ACTIONS(1289), - [anon_sym_LBRACE] = ACTIONS(1291), - [anon_sym_RBRACE] = ACTIONS(1291), - [anon_sym_signed] = ACTIONS(1289), - [anon_sym_unsigned] = ACTIONS(1289), - [anon_sym_long] = ACTIONS(1289), - [anon_sym_short] = ACTIONS(1289), - [anon_sym_static] = ACTIONS(1289), - [anon_sym_auto] = ACTIONS(1289), - [anon_sym_register] = ACTIONS(1289), - [anon_sym_inline] = ACTIONS(1289), - [anon_sym___inline] = ACTIONS(1289), - [anon_sym___inline__] = ACTIONS(1289), - [anon_sym___forceinline] = ACTIONS(1289), - [anon_sym_thread_local] = ACTIONS(1289), - [anon_sym___thread] = ACTIONS(1289), - [anon_sym_const] = ACTIONS(1289), - [anon_sym_constexpr] = ACTIONS(1289), - [anon_sym_volatile] = ACTIONS(1289), - [anon_sym_restrict] = ACTIONS(1289), - [anon_sym___restrict__] = ACTIONS(1289), - [anon_sym__Atomic] = ACTIONS(1289), - [anon_sym__Noreturn] = ACTIONS(1289), - [anon_sym_noreturn] = ACTIONS(1289), - [anon_sym_alignas] = ACTIONS(1289), - [anon_sym__Alignas] = ACTIONS(1289), - [sym_primitive_type] = ACTIONS(1289), - [anon_sym_enum] = ACTIONS(1289), - [anon_sym_struct] = ACTIONS(1289), - [anon_sym_union] = ACTIONS(1289), - [anon_sym_if] = ACTIONS(1289), - [anon_sym_switch] = ACTIONS(1289), - [anon_sym_case] = ACTIONS(1289), - [anon_sym_default] = ACTIONS(1289), - [anon_sym_while] = ACTIONS(1289), - [anon_sym_do] = ACTIONS(1289), - [anon_sym_for] = ACTIONS(1289), - [anon_sym_return] = ACTIONS(1289), - [anon_sym_break] = ACTIONS(1289), - [anon_sym_continue] = ACTIONS(1289), - [anon_sym_goto] = ACTIONS(1289), - [anon_sym___try] = ACTIONS(1289), - [anon_sym___leave] = ACTIONS(1289), - [anon_sym_DASH_DASH] = ACTIONS(1291), - [anon_sym_PLUS_PLUS] = ACTIONS(1291), - [anon_sym_sizeof] = ACTIONS(1289), - [anon_sym___alignof__] = ACTIONS(1289), - [anon_sym___alignof] = ACTIONS(1289), - [anon_sym__alignof] = ACTIONS(1289), - [anon_sym_alignof] = ACTIONS(1289), - [anon_sym__Alignof] = ACTIONS(1289), - [anon_sym_offsetof] = ACTIONS(1289), - [anon_sym__Generic] = ACTIONS(1289), - [anon_sym_asm] = ACTIONS(1289), - [anon_sym___asm__] = ACTIONS(1289), - [sym_number_literal] = ACTIONS(1291), - [anon_sym_L_SQUOTE] = ACTIONS(1291), - [anon_sym_u_SQUOTE] = ACTIONS(1291), - [anon_sym_U_SQUOTE] = ACTIONS(1291), - [anon_sym_u8_SQUOTE] = ACTIONS(1291), - [anon_sym_SQUOTE] = ACTIONS(1291), - [anon_sym_L_DQUOTE] = ACTIONS(1291), - [anon_sym_u_DQUOTE] = ACTIONS(1291), - [anon_sym_U_DQUOTE] = ACTIONS(1291), - [anon_sym_u8_DQUOTE] = ACTIONS(1291), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_true] = ACTIONS(1289), - [sym_false] = ACTIONS(1289), - [anon_sym_NULL] = ACTIONS(1289), - [anon_sym_nullptr] = ACTIONS(1289), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [350] = { - [sym_identifier] = ACTIONS(1389), - [aux_sym_preproc_include_token1] = ACTIONS(1389), - [aux_sym_preproc_def_token1] = ACTIONS(1389), - [aux_sym_preproc_if_token1] = ACTIONS(1389), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1389), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1389), - [sym_preproc_directive] = ACTIONS(1389), - [anon_sym_LPAREN2] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1391), - [anon_sym_TILDE] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(1389), - [anon_sym_STAR] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1391), - [anon_sym_SEMI] = ACTIONS(1391), - [anon_sym___extension__] = ACTIONS(1389), - [anon_sym_typedef] = ACTIONS(1389), - [anon_sym_extern] = ACTIONS(1389), - [anon_sym___attribute__] = ACTIONS(1389), - [anon_sym___scanf] = ACTIONS(1389), - [anon_sym___printf] = ACTIONS(1389), - [anon_sym___read_mostly] = ACTIONS(1389), - [anon_sym___must_hold] = ACTIONS(1389), - [anon_sym___ro_after_init] = ACTIONS(1389), - [anon_sym___noreturn] = ACTIONS(1389), - [anon_sym___cold] = ACTIONS(1389), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1391), - [anon_sym___declspec] = ACTIONS(1389), - [anon_sym___init] = ACTIONS(1389), - [anon_sym___exit] = ACTIONS(1389), - [anon_sym___cdecl] = ACTIONS(1389), - [anon_sym___clrcall] = ACTIONS(1389), - [anon_sym___stdcall] = ACTIONS(1389), - [anon_sym___fastcall] = ACTIONS(1389), - [anon_sym___thiscall] = ACTIONS(1389), - [anon_sym___vectorcall] = ACTIONS(1389), - [anon_sym_LBRACE] = ACTIONS(1391), - [anon_sym_RBRACE] = ACTIONS(1391), - [anon_sym_signed] = ACTIONS(1389), - [anon_sym_unsigned] = ACTIONS(1389), - [anon_sym_long] = ACTIONS(1389), - [anon_sym_short] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1389), - [anon_sym_auto] = ACTIONS(1389), - [anon_sym_register] = ACTIONS(1389), - [anon_sym_inline] = ACTIONS(1389), - [anon_sym___inline] = ACTIONS(1389), - [anon_sym___inline__] = ACTIONS(1389), - [anon_sym___forceinline] = ACTIONS(1389), - [anon_sym_thread_local] = ACTIONS(1389), - [anon_sym___thread] = ACTIONS(1389), - [anon_sym_const] = ACTIONS(1389), - [anon_sym_constexpr] = ACTIONS(1389), - [anon_sym_volatile] = ACTIONS(1389), - [anon_sym_restrict] = ACTIONS(1389), - [anon_sym___restrict__] = ACTIONS(1389), - [anon_sym__Atomic] = ACTIONS(1389), - [anon_sym__Noreturn] = ACTIONS(1389), - [anon_sym_noreturn] = ACTIONS(1389), - [anon_sym_alignas] = ACTIONS(1389), - [anon_sym__Alignas] = ACTIONS(1389), - [sym_primitive_type] = ACTIONS(1389), - [anon_sym_enum] = ACTIONS(1389), - [anon_sym_struct] = ACTIONS(1389), - [anon_sym_union] = ACTIONS(1389), - [anon_sym_if] = ACTIONS(1389), - [anon_sym_switch] = ACTIONS(1389), - [anon_sym_case] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1389), - [anon_sym_while] = ACTIONS(1389), - [anon_sym_do] = ACTIONS(1389), - [anon_sym_for] = ACTIONS(1389), - [anon_sym_return] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1389), - [anon_sym_continue] = ACTIONS(1389), - [anon_sym_goto] = ACTIONS(1389), - [anon_sym___try] = ACTIONS(1389), - [anon_sym___leave] = ACTIONS(1389), - [anon_sym_DASH_DASH] = ACTIONS(1391), - [anon_sym_PLUS_PLUS] = ACTIONS(1391), - [anon_sym_sizeof] = ACTIONS(1389), - [anon_sym___alignof__] = ACTIONS(1389), - [anon_sym___alignof] = ACTIONS(1389), - [anon_sym__alignof] = ACTIONS(1389), - [anon_sym_alignof] = ACTIONS(1389), - [anon_sym__Alignof] = ACTIONS(1389), - [anon_sym_offsetof] = ACTIONS(1389), - [anon_sym__Generic] = ACTIONS(1389), - [anon_sym_asm] = ACTIONS(1389), - [anon_sym___asm__] = ACTIONS(1389), - [sym_number_literal] = ACTIONS(1391), - [anon_sym_L_SQUOTE] = ACTIONS(1391), - [anon_sym_u_SQUOTE] = ACTIONS(1391), - [anon_sym_U_SQUOTE] = ACTIONS(1391), - [anon_sym_u8_SQUOTE] = ACTIONS(1391), - [anon_sym_SQUOTE] = ACTIONS(1391), - [anon_sym_L_DQUOTE] = ACTIONS(1391), - [anon_sym_u_DQUOTE] = ACTIONS(1391), - [anon_sym_U_DQUOTE] = ACTIONS(1391), - [anon_sym_u8_DQUOTE] = ACTIONS(1391), - [anon_sym_DQUOTE] = ACTIONS(1391), - [sym_true] = ACTIONS(1389), - [sym_false] = ACTIONS(1389), - [anon_sym_NULL] = ACTIONS(1389), - [anon_sym_nullptr] = ACTIONS(1389), - [sym_comment] = ACTIONS(3), + [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), + [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), }, [351] = { - [sym_identifier] = ACTIONS(1353), - [aux_sym_preproc_include_token1] = ACTIONS(1353), - [aux_sym_preproc_def_token1] = ACTIONS(1353), - [aux_sym_preproc_if_token1] = ACTIONS(1353), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1353), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1353), - [sym_preproc_directive] = ACTIONS(1353), - [anon_sym_LPAREN2] = ACTIONS(1355), - [anon_sym_BANG] = ACTIONS(1355), - [anon_sym_TILDE] = ACTIONS(1355), - [anon_sym_DASH] = ACTIONS(1353), - [anon_sym_PLUS] = ACTIONS(1353), - [anon_sym_STAR] = ACTIONS(1355), - [anon_sym_AMP] = ACTIONS(1355), - [anon_sym_SEMI] = ACTIONS(1355), - [anon_sym___extension__] = ACTIONS(1353), - [anon_sym_typedef] = ACTIONS(1353), - [anon_sym_extern] = ACTIONS(1353), - [anon_sym___attribute__] = ACTIONS(1353), - [anon_sym___scanf] = ACTIONS(1353), - [anon_sym___printf] = ACTIONS(1353), - [anon_sym___read_mostly] = ACTIONS(1353), - [anon_sym___must_hold] = ACTIONS(1353), - [anon_sym___ro_after_init] = ACTIONS(1353), - [anon_sym___noreturn] = ACTIONS(1353), - [anon_sym___cold] = ACTIONS(1353), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1355), - [anon_sym___declspec] = ACTIONS(1353), - [anon_sym___init] = ACTIONS(1353), - [anon_sym___exit] = ACTIONS(1353), - [anon_sym___cdecl] = ACTIONS(1353), - [anon_sym___clrcall] = ACTIONS(1353), - [anon_sym___stdcall] = ACTIONS(1353), - [anon_sym___fastcall] = ACTIONS(1353), - [anon_sym___thiscall] = ACTIONS(1353), - [anon_sym___vectorcall] = ACTIONS(1353), - [anon_sym_LBRACE] = ACTIONS(1355), - [anon_sym_RBRACE] = ACTIONS(1355), - [anon_sym_signed] = ACTIONS(1353), - [anon_sym_unsigned] = ACTIONS(1353), - [anon_sym_long] = ACTIONS(1353), - [anon_sym_short] = ACTIONS(1353), - [anon_sym_static] = ACTIONS(1353), - [anon_sym_auto] = ACTIONS(1353), - [anon_sym_register] = ACTIONS(1353), - [anon_sym_inline] = ACTIONS(1353), - [anon_sym___inline] = ACTIONS(1353), - [anon_sym___inline__] = ACTIONS(1353), - [anon_sym___forceinline] = ACTIONS(1353), - [anon_sym_thread_local] = ACTIONS(1353), - [anon_sym___thread] = ACTIONS(1353), - [anon_sym_const] = ACTIONS(1353), - [anon_sym_constexpr] = ACTIONS(1353), - [anon_sym_volatile] = ACTIONS(1353), - [anon_sym_restrict] = ACTIONS(1353), - [anon_sym___restrict__] = ACTIONS(1353), - [anon_sym__Atomic] = ACTIONS(1353), - [anon_sym__Noreturn] = ACTIONS(1353), - [anon_sym_noreturn] = ACTIONS(1353), - [anon_sym_alignas] = ACTIONS(1353), - [anon_sym__Alignas] = ACTIONS(1353), - [sym_primitive_type] = ACTIONS(1353), - [anon_sym_enum] = ACTIONS(1353), - [anon_sym_struct] = ACTIONS(1353), - [anon_sym_union] = ACTIONS(1353), - [anon_sym_if] = ACTIONS(1353), - [anon_sym_switch] = ACTIONS(1353), - [anon_sym_case] = ACTIONS(1353), - [anon_sym_default] = ACTIONS(1353), - [anon_sym_while] = ACTIONS(1353), - [anon_sym_do] = ACTIONS(1353), - [anon_sym_for] = ACTIONS(1353), - [anon_sym_return] = ACTIONS(1353), - [anon_sym_break] = ACTIONS(1353), - [anon_sym_continue] = ACTIONS(1353), - [anon_sym_goto] = ACTIONS(1353), - [anon_sym___try] = ACTIONS(1353), - [anon_sym___leave] = ACTIONS(1353), - [anon_sym_DASH_DASH] = ACTIONS(1355), - [anon_sym_PLUS_PLUS] = ACTIONS(1355), - [anon_sym_sizeof] = ACTIONS(1353), - [anon_sym___alignof__] = ACTIONS(1353), - [anon_sym___alignof] = ACTIONS(1353), - [anon_sym__alignof] = ACTIONS(1353), - [anon_sym_alignof] = ACTIONS(1353), - [anon_sym__Alignof] = ACTIONS(1353), - [anon_sym_offsetof] = ACTIONS(1353), - [anon_sym__Generic] = ACTIONS(1353), - [anon_sym_asm] = ACTIONS(1353), - [anon_sym___asm__] = ACTIONS(1353), - [sym_number_literal] = ACTIONS(1355), - [anon_sym_L_SQUOTE] = ACTIONS(1355), - [anon_sym_u_SQUOTE] = ACTIONS(1355), - [anon_sym_U_SQUOTE] = ACTIONS(1355), - [anon_sym_u8_SQUOTE] = ACTIONS(1355), - [anon_sym_SQUOTE] = ACTIONS(1355), - [anon_sym_L_DQUOTE] = ACTIONS(1355), - [anon_sym_u_DQUOTE] = ACTIONS(1355), - [anon_sym_U_DQUOTE] = ACTIONS(1355), - [anon_sym_u8_DQUOTE] = ACTIONS(1355), - [anon_sym_DQUOTE] = ACTIONS(1355), - [sym_true] = ACTIONS(1353), - [sym_false] = ACTIONS(1353), - [anon_sym_NULL] = ACTIONS(1353), - [anon_sym_nullptr] = ACTIONS(1353), - [sym_comment] = ACTIONS(3), + [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), + [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), }, [352] = { - [sym_identifier] = ACTIONS(1305), - [aux_sym_preproc_include_token1] = ACTIONS(1305), - [aux_sym_preproc_def_token1] = ACTIONS(1305), - [aux_sym_preproc_if_token1] = ACTIONS(1305), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1305), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1305), - [sym_preproc_directive] = ACTIONS(1305), - [anon_sym_LPAREN2] = ACTIONS(1307), - [anon_sym_BANG] = ACTIONS(1307), - [anon_sym_TILDE] = ACTIONS(1307), - [anon_sym_DASH] = ACTIONS(1305), - [anon_sym_PLUS] = ACTIONS(1305), - [anon_sym_STAR] = ACTIONS(1307), - [anon_sym_AMP] = ACTIONS(1307), - [anon_sym_SEMI] = ACTIONS(1307), - [anon_sym___extension__] = ACTIONS(1305), - [anon_sym_typedef] = ACTIONS(1305), - [anon_sym_extern] = ACTIONS(1305), - [anon_sym___attribute__] = ACTIONS(1305), - [anon_sym___scanf] = ACTIONS(1305), - [anon_sym___printf] = ACTIONS(1305), - [anon_sym___read_mostly] = ACTIONS(1305), - [anon_sym___must_hold] = ACTIONS(1305), - [anon_sym___ro_after_init] = ACTIONS(1305), - [anon_sym___noreturn] = ACTIONS(1305), - [anon_sym___cold] = ACTIONS(1305), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1307), - [anon_sym___declspec] = ACTIONS(1305), - [anon_sym___init] = ACTIONS(1305), - [anon_sym___exit] = ACTIONS(1305), - [anon_sym___cdecl] = ACTIONS(1305), - [anon_sym___clrcall] = ACTIONS(1305), - [anon_sym___stdcall] = ACTIONS(1305), - [anon_sym___fastcall] = ACTIONS(1305), - [anon_sym___thiscall] = ACTIONS(1305), - [anon_sym___vectorcall] = ACTIONS(1305), - [anon_sym_LBRACE] = ACTIONS(1307), - [anon_sym_RBRACE] = ACTIONS(1307), - [anon_sym_signed] = ACTIONS(1305), - [anon_sym_unsigned] = ACTIONS(1305), - [anon_sym_long] = ACTIONS(1305), - [anon_sym_short] = ACTIONS(1305), - [anon_sym_static] = ACTIONS(1305), - [anon_sym_auto] = ACTIONS(1305), - [anon_sym_register] = ACTIONS(1305), - [anon_sym_inline] = ACTIONS(1305), - [anon_sym___inline] = ACTIONS(1305), - [anon_sym___inline__] = ACTIONS(1305), - [anon_sym___forceinline] = ACTIONS(1305), - [anon_sym_thread_local] = ACTIONS(1305), - [anon_sym___thread] = ACTIONS(1305), - [anon_sym_const] = ACTIONS(1305), - [anon_sym_constexpr] = ACTIONS(1305), - [anon_sym_volatile] = ACTIONS(1305), - [anon_sym_restrict] = ACTIONS(1305), - [anon_sym___restrict__] = ACTIONS(1305), - [anon_sym__Atomic] = ACTIONS(1305), - [anon_sym__Noreturn] = ACTIONS(1305), - [anon_sym_noreturn] = ACTIONS(1305), - [anon_sym_alignas] = ACTIONS(1305), - [anon_sym__Alignas] = ACTIONS(1305), - [sym_primitive_type] = ACTIONS(1305), - [anon_sym_enum] = ACTIONS(1305), - [anon_sym_struct] = ACTIONS(1305), - [anon_sym_union] = ACTIONS(1305), - [anon_sym_if] = ACTIONS(1305), - [anon_sym_switch] = ACTIONS(1305), - [anon_sym_case] = ACTIONS(1305), - [anon_sym_default] = ACTIONS(1305), - [anon_sym_while] = ACTIONS(1305), - [anon_sym_do] = ACTIONS(1305), - [anon_sym_for] = ACTIONS(1305), - [anon_sym_return] = ACTIONS(1305), - [anon_sym_break] = ACTIONS(1305), - [anon_sym_continue] = ACTIONS(1305), - [anon_sym_goto] = ACTIONS(1305), - [anon_sym___try] = ACTIONS(1305), - [anon_sym___leave] = ACTIONS(1305), - [anon_sym_DASH_DASH] = ACTIONS(1307), - [anon_sym_PLUS_PLUS] = ACTIONS(1307), - [anon_sym_sizeof] = ACTIONS(1305), - [anon_sym___alignof__] = ACTIONS(1305), - [anon_sym___alignof] = ACTIONS(1305), - [anon_sym__alignof] = ACTIONS(1305), - [anon_sym_alignof] = ACTIONS(1305), - [anon_sym__Alignof] = ACTIONS(1305), - [anon_sym_offsetof] = ACTIONS(1305), - [anon_sym__Generic] = ACTIONS(1305), - [anon_sym_asm] = ACTIONS(1305), - [anon_sym___asm__] = ACTIONS(1305), - [sym_number_literal] = ACTIONS(1307), - [anon_sym_L_SQUOTE] = ACTIONS(1307), - [anon_sym_u_SQUOTE] = ACTIONS(1307), - [anon_sym_U_SQUOTE] = ACTIONS(1307), - [anon_sym_u8_SQUOTE] = ACTIONS(1307), - [anon_sym_SQUOTE] = ACTIONS(1307), - [anon_sym_L_DQUOTE] = ACTIONS(1307), - [anon_sym_u_DQUOTE] = ACTIONS(1307), - [anon_sym_U_DQUOTE] = ACTIONS(1307), - [anon_sym_u8_DQUOTE] = ACTIONS(1307), - [anon_sym_DQUOTE] = ACTIONS(1307), - [sym_true] = ACTIONS(1305), - [sym_false] = ACTIONS(1305), - [anon_sym_NULL] = ACTIONS(1305), - [anon_sym_nullptr] = ACTIONS(1305), - [sym_comment] = ACTIONS(3), + [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(1301), - [aux_sym_preproc_include_token1] = ACTIONS(1301), - [aux_sym_preproc_def_token1] = ACTIONS(1301), - [aux_sym_preproc_if_token1] = ACTIONS(1301), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1301), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1301), - [sym_preproc_directive] = ACTIONS(1301), - [anon_sym_LPAREN2] = ACTIONS(1303), - [anon_sym_BANG] = ACTIONS(1303), - [anon_sym_TILDE] = ACTIONS(1303), - [anon_sym_DASH] = ACTIONS(1301), - [anon_sym_PLUS] = ACTIONS(1301), - [anon_sym_STAR] = ACTIONS(1303), - [anon_sym_AMP] = ACTIONS(1303), - [anon_sym_SEMI] = ACTIONS(1303), - [anon_sym___extension__] = ACTIONS(1301), - [anon_sym_typedef] = ACTIONS(1301), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym___attribute__] = ACTIONS(1301), - [anon_sym___scanf] = ACTIONS(1301), - [anon_sym___printf] = ACTIONS(1301), - [anon_sym___read_mostly] = ACTIONS(1301), - [anon_sym___must_hold] = ACTIONS(1301), - [anon_sym___ro_after_init] = ACTIONS(1301), - [anon_sym___noreturn] = ACTIONS(1301), - [anon_sym___cold] = ACTIONS(1301), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1303), - [anon_sym___declspec] = ACTIONS(1301), - [anon_sym___init] = ACTIONS(1301), - [anon_sym___exit] = ACTIONS(1301), - [anon_sym___cdecl] = ACTIONS(1301), - [anon_sym___clrcall] = ACTIONS(1301), - [anon_sym___stdcall] = ACTIONS(1301), - [anon_sym___fastcall] = ACTIONS(1301), - [anon_sym___thiscall] = ACTIONS(1301), - [anon_sym___vectorcall] = ACTIONS(1301), - [anon_sym_LBRACE] = ACTIONS(1303), - [anon_sym_RBRACE] = ACTIONS(1303), - [anon_sym_signed] = ACTIONS(1301), - [anon_sym_unsigned] = ACTIONS(1301), - [anon_sym_long] = ACTIONS(1301), - [anon_sym_short] = ACTIONS(1301), - [anon_sym_static] = ACTIONS(1301), - [anon_sym_auto] = ACTIONS(1301), - [anon_sym_register] = ACTIONS(1301), - [anon_sym_inline] = ACTIONS(1301), - [anon_sym___inline] = ACTIONS(1301), - [anon_sym___inline__] = ACTIONS(1301), - [anon_sym___forceinline] = ACTIONS(1301), - [anon_sym_thread_local] = ACTIONS(1301), - [anon_sym___thread] = ACTIONS(1301), - [anon_sym_const] = ACTIONS(1301), - [anon_sym_constexpr] = ACTIONS(1301), - [anon_sym_volatile] = ACTIONS(1301), - [anon_sym_restrict] = ACTIONS(1301), - [anon_sym___restrict__] = ACTIONS(1301), - [anon_sym__Atomic] = ACTIONS(1301), - [anon_sym__Noreturn] = ACTIONS(1301), - [anon_sym_noreturn] = ACTIONS(1301), - [anon_sym_alignas] = ACTIONS(1301), - [anon_sym__Alignas] = ACTIONS(1301), - [sym_primitive_type] = ACTIONS(1301), - [anon_sym_enum] = ACTIONS(1301), - [anon_sym_struct] = ACTIONS(1301), - [anon_sym_union] = ACTIONS(1301), - [anon_sym_if] = ACTIONS(1301), - [anon_sym_switch] = ACTIONS(1301), - [anon_sym_case] = ACTIONS(1301), - [anon_sym_default] = ACTIONS(1301), - [anon_sym_while] = ACTIONS(1301), - [anon_sym_do] = ACTIONS(1301), - [anon_sym_for] = ACTIONS(1301), - [anon_sym_return] = ACTIONS(1301), - [anon_sym_break] = ACTIONS(1301), - [anon_sym_continue] = ACTIONS(1301), - [anon_sym_goto] = ACTIONS(1301), - [anon_sym___try] = ACTIONS(1301), - [anon_sym___leave] = ACTIONS(1301), - [anon_sym_DASH_DASH] = ACTIONS(1303), - [anon_sym_PLUS_PLUS] = ACTIONS(1303), - [anon_sym_sizeof] = ACTIONS(1301), - [anon_sym___alignof__] = ACTIONS(1301), - [anon_sym___alignof] = ACTIONS(1301), - [anon_sym__alignof] = ACTIONS(1301), - [anon_sym_alignof] = ACTIONS(1301), - [anon_sym__Alignof] = ACTIONS(1301), - [anon_sym_offsetof] = ACTIONS(1301), - [anon_sym__Generic] = ACTIONS(1301), - [anon_sym_asm] = ACTIONS(1301), - [anon_sym___asm__] = ACTIONS(1301), - [sym_number_literal] = ACTIONS(1303), - [anon_sym_L_SQUOTE] = ACTIONS(1303), - [anon_sym_u_SQUOTE] = ACTIONS(1303), - [anon_sym_U_SQUOTE] = ACTIONS(1303), - [anon_sym_u8_SQUOTE] = ACTIONS(1303), - [anon_sym_SQUOTE] = ACTIONS(1303), - [anon_sym_L_DQUOTE] = ACTIONS(1303), - [anon_sym_u_DQUOTE] = ACTIONS(1303), - [anon_sym_U_DQUOTE] = ACTIONS(1303), - [anon_sym_u8_DQUOTE] = ACTIONS(1303), - [anon_sym_DQUOTE] = ACTIONS(1303), - [sym_true] = ACTIONS(1301), - [sym_false] = ACTIONS(1301), - [anon_sym_NULL] = ACTIONS(1301), - [anon_sym_nullptr] = ACTIONS(1301), - [sym_comment] = ACTIONS(3), + [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(1407), - [aux_sym_preproc_include_token1] = ACTIONS(1407), - [aux_sym_preproc_def_token1] = ACTIONS(1407), - [aux_sym_preproc_if_token1] = ACTIONS(1407), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1407), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1407), - [sym_preproc_directive] = ACTIONS(1407), - [anon_sym_LPAREN2] = ACTIONS(1409), - [anon_sym_BANG] = ACTIONS(1409), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1407), - [anon_sym_PLUS] = ACTIONS(1407), - [anon_sym_STAR] = ACTIONS(1409), - [anon_sym_AMP] = ACTIONS(1409), - [anon_sym_SEMI] = ACTIONS(1409), - [anon_sym___extension__] = ACTIONS(1407), - [anon_sym_typedef] = ACTIONS(1407), - [anon_sym_extern] = ACTIONS(1407), - [anon_sym___attribute__] = ACTIONS(1407), - [anon_sym___scanf] = ACTIONS(1407), - [anon_sym___printf] = ACTIONS(1407), - [anon_sym___read_mostly] = ACTIONS(1407), - [anon_sym___must_hold] = ACTIONS(1407), - [anon_sym___ro_after_init] = ACTIONS(1407), - [anon_sym___noreturn] = ACTIONS(1407), - [anon_sym___cold] = ACTIONS(1407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1409), - [anon_sym___declspec] = ACTIONS(1407), - [anon_sym___init] = ACTIONS(1407), - [anon_sym___exit] = ACTIONS(1407), - [anon_sym___cdecl] = ACTIONS(1407), - [anon_sym___clrcall] = ACTIONS(1407), - [anon_sym___stdcall] = ACTIONS(1407), - [anon_sym___fastcall] = ACTIONS(1407), - [anon_sym___thiscall] = ACTIONS(1407), - [anon_sym___vectorcall] = ACTIONS(1407), - [anon_sym_LBRACE] = ACTIONS(1409), - [anon_sym_RBRACE] = ACTIONS(1409), - [anon_sym_signed] = ACTIONS(1407), - [anon_sym_unsigned] = ACTIONS(1407), - [anon_sym_long] = ACTIONS(1407), - [anon_sym_short] = ACTIONS(1407), - [anon_sym_static] = ACTIONS(1407), - [anon_sym_auto] = ACTIONS(1407), - [anon_sym_register] = ACTIONS(1407), - [anon_sym_inline] = ACTIONS(1407), - [anon_sym___inline] = ACTIONS(1407), - [anon_sym___inline__] = ACTIONS(1407), - [anon_sym___forceinline] = ACTIONS(1407), - [anon_sym_thread_local] = ACTIONS(1407), - [anon_sym___thread] = ACTIONS(1407), - [anon_sym_const] = ACTIONS(1407), - [anon_sym_constexpr] = ACTIONS(1407), - [anon_sym_volatile] = ACTIONS(1407), - [anon_sym_restrict] = ACTIONS(1407), - [anon_sym___restrict__] = ACTIONS(1407), - [anon_sym__Atomic] = ACTIONS(1407), - [anon_sym__Noreturn] = ACTIONS(1407), - [anon_sym_noreturn] = ACTIONS(1407), - [anon_sym_alignas] = ACTIONS(1407), - [anon_sym__Alignas] = ACTIONS(1407), - [sym_primitive_type] = ACTIONS(1407), - [anon_sym_enum] = ACTIONS(1407), - [anon_sym_struct] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1407), - [anon_sym_if] = ACTIONS(1407), - [anon_sym_switch] = ACTIONS(1407), - [anon_sym_case] = ACTIONS(1407), - [anon_sym_default] = ACTIONS(1407), - [anon_sym_while] = ACTIONS(1407), - [anon_sym_do] = ACTIONS(1407), - [anon_sym_for] = ACTIONS(1407), - [anon_sym_return] = ACTIONS(1407), - [anon_sym_break] = ACTIONS(1407), - [anon_sym_continue] = ACTIONS(1407), - [anon_sym_goto] = ACTIONS(1407), - [anon_sym___try] = ACTIONS(1407), - [anon_sym___leave] = ACTIONS(1407), - [anon_sym_DASH_DASH] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1409), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym___alignof__] = ACTIONS(1407), - [anon_sym___alignof] = ACTIONS(1407), - [anon_sym__alignof] = ACTIONS(1407), - [anon_sym_alignof] = ACTIONS(1407), - [anon_sym__Alignof] = ACTIONS(1407), - [anon_sym_offsetof] = ACTIONS(1407), - [anon_sym__Generic] = ACTIONS(1407), - [anon_sym_asm] = ACTIONS(1407), - [anon_sym___asm__] = ACTIONS(1407), - [sym_number_literal] = ACTIONS(1409), - [anon_sym_L_SQUOTE] = ACTIONS(1409), - [anon_sym_u_SQUOTE] = ACTIONS(1409), - [anon_sym_U_SQUOTE] = ACTIONS(1409), - [anon_sym_u8_SQUOTE] = ACTIONS(1409), - [anon_sym_SQUOTE] = ACTIONS(1409), - [anon_sym_L_DQUOTE] = ACTIONS(1409), - [anon_sym_u_DQUOTE] = ACTIONS(1409), - [anon_sym_U_DQUOTE] = ACTIONS(1409), - [anon_sym_u8_DQUOTE] = ACTIONS(1409), - [anon_sym_DQUOTE] = ACTIONS(1409), - [sym_true] = ACTIONS(1407), - [sym_false] = ACTIONS(1407), - [anon_sym_NULL] = ACTIONS(1407), - [anon_sym_nullptr] = ACTIONS(1407), - [sym_comment] = ACTIONS(3), + [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(1361), - [aux_sym_preproc_include_token1] = ACTIONS(1361), - [aux_sym_preproc_def_token1] = ACTIONS(1361), - [aux_sym_preproc_if_token1] = ACTIONS(1361), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1361), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1361), - [sym_preproc_directive] = ACTIONS(1361), - [anon_sym_LPAREN2] = ACTIONS(1363), - [anon_sym_BANG] = ACTIONS(1363), - [anon_sym_TILDE] = ACTIONS(1363), - [anon_sym_DASH] = ACTIONS(1361), - [anon_sym_PLUS] = ACTIONS(1361), - [anon_sym_STAR] = ACTIONS(1363), - [anon_sym_AMP] = ACTIONS(1363), - [anon_sym_SEMI] = ACTIONS(1363), - [anon_sym___extension__] = ACTIONS(1361), - [anon_sym_typedef] = ACTIONS(1361), - [anon_sym_extern] = ACTIONS(1361), - [anon_sym___attribute__] = ACTIONS(1361), - [anon_sym___scanf] = ACTIONS(1361), - [anon_sym___printf] = ACTIONS(1361), - [anon_sym___read_mostly] = ACTIONS(1361), - [anon_sym___must_hold] = ACTIONS(1361), - [anon_sym___ro_after_init] = ACTIONS(1361), - [anon_sym___noreturn] = ACTIONS(1361), - [anon_sym___cold] = ACTIONS(1361), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1363), - [anon_sym___declspec] = ACTIONS(1361), - [anon_sym___init] = ACTIONS(1361), - [anon_sym___exit] = ACTIONS(1361), - [anon_sym___cdecl] = ACTIONS(1361), - [anon_sym___clrcall] = ACTIONS(1361), - [anon_sym___stdcall] = ACTIONS(1361), - [anon_sym___fastcall] = ACTIONS(1361), - [anon_sym___thiscall] = ACTIONS(1361), - [anon_sym___vectorcall] = ACTIONS(1361), - [anon_sym_LBRACE] = ACTIONS(1363), - [anon_sym_RBRACE] = ACTIONS(1363), - [anon_sym_signed] = ACTIONS(1361), - [anon_sym_unsigned] = ACTIONS(1361), - [anon_sym_long] = ACTIONS(1361), - [anon_sym_short] = ACTIONS(1361), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_auto] = ACTIONS(1361), - [anon_sym_register] = ACTIONS(1361), - [anon_sym_inline] = ACTIONS(1361), - [anon_sym___inline] = ACTIONS(1361), - [anon_sym___inline__] = ACTIONS(1361), - [anon_sym___forceinline] = ACTIONS(1361), - [anon_sym_thread_local] = ACTIONS(1361), - [anon_sym___thread] = ACTIONS(1361), - [anon_sym_const] = ACTIONS(1361), - [anon_sym_constexpr] = ACTIONS(1361), - [anon_sym_volatile] = ACTIONS(1361), - [anon_sym_restrict] = ACTIONS(1361), - [anon_sym___restrict__] = ACTIONS(1361), - [anon_sym__Atomic] = ACTIONS(1361), - [anon_sym__Noreturn] = ACTIONS(1361), - [anon_sym_noreturn] = ACTIONS(1361), - [anon_sym_alignas] = ACTIONS(1361), - [anon_sym__Alignas] = ACTIONS(1361), - [sym_primitive_type] = ACTIONS(1361), - [anon_sym_enum] = ACTIONS(1361), - [anon_sym_struct] = ACTIONS(1361), - [anon_sym_union] = ACTIONS(1361), - [anon_sym_if] = ACTIONS(1361), - [anon_sym_switch] = ACTIONS(1361), - [anon_sym_case] = ACTIONS(1361), - [anon_sym_default] = ACTIONS(1361), - [anon_sym_while] = ACTIONS(1361), - [anon_sym_do] = ACTIONS(1361), - [anon_sym_for] = ACTIONS(1361), - [anon_sym_return] = ACTIONS(1361), - [anon_sym_break] = ACTIONS(1361), - [anon_sym_continue] = ACTIONS(1361), - [anon_sym_goto] = ACTIONS(1361), - [anon_sym___try] = ACTIONS(1361), - [anon_sym___leave] = ACTIONS(1361), - [anon_sym_DASH_DASH] = ACTIONS(1363), - [anon_sym_PLUS_PLUS] = ACTIONS(1363), - [anon_sym_sizeof] = ACTIONS(1361), - [anon_sym___alignof__] = ACTIONS(1361), - [anon_sym___alignof] = ACTIONS(1361), - [anon_sym__alignof] = ACTIONS(1361), - [anon_sym_alignof] = ACTIONS(1361), - [anon_sym__Alignof] = ACTIONS(1361), - [anon_sym_offsetof] = ACTIONS(1361), - [anon_sym__Generic] = ACTIONS(1361), - [anon_sym_asm] = ACTIONS(1361), - [anon_sym___asm__] = ACTIONS(1361), - [sym_number_literal] = ACTIONS(1363), - [anon_sym_L_SQUOTE] = ACTIONS(1363), - [anon_sym_u_SQUOTE] = ACTIONS(1363), - [anon_sym_U_SQUOTE] = ACTIONS(1363), - [anon_sym_u8_SQUOTE] = ACTIONS(1363), - [anon_sym_SQUOTE] = ACTIONS(1363), - [anon_sym_L_DQUOTE] = ACTIONS(1363), - [anon_sym_u_DQUOTE] = ACTIONS(1363), - [anon_sym_U_DQUOTE] = ACTIONS(1363), - [anon_sym_u8_DQUOTE] = ACTIONS(1363), - [anon_sym_DQUOTE] = ACTIONS(1363), - [sym_true] = ACTIONS(1361), - [sym_false] = ACTIONS(1361), - [anon_sym_NULL] = ACTIONS(1361), - [anon_sym_nullptr] = ACTIONS(1361), - [sym_comment] = ACTIONS(3), + [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(1333), - [aux_sym_preproc_include_token1] = ACTIONS(1333), - [aux_sym_preproc_def_token1] = ACTIONS(1333), - [aux_sym_preproc_if_token1] = ACTIONS(1333), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1333), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1333), - [sym_preproc_directive] = ACTIONS(1333), - [anon_sym_LPAREN2] = ACTIONS(1335), - [anon_sym_BANG] = ACTIONS(1335), - [anon_sym_TILDE] = ACTIONS(1335), - [anon_sym_DASH] = ACTIONS(1333), - [anon_sym_PLUS] = ACTIONS(1333), - [anon_sym_STAR] = ACTIONS(1335), - [anon_sym_AMP] = ACTIONS(1335), - [anon_sym_SEMI] = ACTIONS(1335), - [anon_sym___extension__] = ACTIONS(1333), - [anon_sym_typedef] = ACTIONS(1333), - [anon_sym_extern] = ACTIONS(1333), - [anon_sym___attribute__] = ACTIONS(1333), - [anon_sym___scanf] = ACTIONS(1333), - [anon_sym___printf] = ACTIONS(1333), - [anon_sym___read_mostly] = ACTIONS(1333), - [anon_sym___must_hold] = ACTIONS(1333), - [anon_sym___ro_after_init] = ACTIONS(1333), - [anon_sym___noreturn] = ACTIONS(1333), - [anon_sym___cold] = ACTIONS(1333), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1335), - [anon_sym___declspec] = ACTIONS(1333), - [anon_sym___init] = ACTIONS(1333), - [anon_sym___exit] = ACTIONS(1333), - [anon_sym___cdecl] = ACTIONS(1333), - [anon_sym___clrcall] = ACTIONS(1333), - [anon_sym___stdcall] = ACTIONS(1333), - [anon_sym___fastcall] = ACTIONS(1333), - [anon_sym___thiscall] = ACTIONS(1333), - [anon_sym___vectorcall] = ACTIONS(1333), - [anon_sym_LBRACE] = ACTIONS(1335), - [anon_sym_RBRACE] = ACTIONS(1335), - [anon_sym_signed] = ACTIONS(1333), - [anon_sym_unsigned] = ACTIONS(1333), - [anon_sym_long] = ACTIONS(1333), - [anon_sym_short] = ACTIONS(1333), - [anon_sym_static] = ACTIONS(1333), - [anon_sym_auto] = ACTIONS(1333), - [anon_sym_register] = ACTIONS(1333), - [anon_sym_inline] = ACTIONS(1333), - [anon_sym___inline] = ACTIONS(1333), - [anon_sym___inline__] = ACTIONS(1333), - [anon_sym___forceinline] = ACTIONS(1333), - [anon_sym_thread_local] = ACTIONS(1333), - [anon_sym___thread] = ACTIONS(1333), - [anon_sym_const] = ACTIONS(1333), - [anon_sym_constexpr] = ACTIONS(1333), - [anon_sym_volatile] = ACTIONS(1333), - [anon_sym_restrict] = ACTIONS(1333), - [anon_sym___restrict__] = ACTIONS(1333), - [anon_sym__Atomic] = ACTIONS(1333), - [anon_sym__Noreturn] = ACTIONS(1333), - [anon_sym_noreturn] = ACTIONS(1333), - [anon_sym_alignas] = ACTIONS(1333), - [anon_sym__Alignas] = ACTIONS(1333), - [sym_primitive_type] = ACTIONS(1333), - [anon_sym_enum] = ACTIONS(1333), - [anon_sym_struct] = ACTIONS(1333), - [anon_sym_union] = ACTIONS(1333), - [anon_sym_if] = ACTIONS(1333), - [anon_sym_switch] = ACTIONS(1333), - [anon_sym_case] = ACTIONS(1333), - [anon_sym_default] = ACTIONS(1333), - [anon_sym_while] = ACTIONS(1333), - [anon_sym_do] = ACTIONS(1333), - [anon_sym_for] = ACTIONS(1333), - [anon_sym_return] = ACTIONS(1333), - [anon_sym_break] = ACTIONS(1333), - [anon_sym_continue] = ACTIONS(1333), - [anon_sym_goto] = ACTIONS(1333), - [anon_sym___try] = ACTIONS(1333), - [anon_sym___leave] = ACTIONS(1333), - [anon_sym_DASH_DASH] = ACTIONS(1335), - [anon_sym_PLUS_PLUS] = ACTIONS(1335), - [anon_sym_sizeof] = ACTIONS(1333), - [anon_sym___alignof__] = ACTIONS(1333), - [anon_sym___alignof] = ACTIONS(1333), - [anon_sym__alignof] = ACTIONS(1333), - [anon_sym_alignof] = ACTIONS(1333), - [anon_sym__Alignof] = ACTIONS(1333), - [anon_sym_offsetof] = ACTIONS(1333), - [anon_sym__Generic] = ACTIONS(1333), - [anon_sym_asm] = ACTIONS(1333), - [anon_sym___asm__] = ACTIONS(1333), - [sym_number_literal] = ACTIONS(1335), - [anon_sym_L_SQUOTE] = ACTIONS(1335), - [anon_sym_u_SQUOTE] = ACTIONS(1335), - [anon_sym_U_SQUOTE] = ACTIONS(1335), - [anon_sym_u8_SQUOTE] = ACTIONS(1335), - [anon_sym_SQUOTE] = ACTIONS(1335), - [anon_sym_L_DQUOTE] = ACTIONS(1335), - [anon_sym_u_DQUOTE] = ACTIONS(1335), - [anon_sym_U_DQUOTE] = ACTIONS(1335), - [anon_sym_u8_DQUOTE] = ACTIONS(1335), - [anon_sym_DQUOTE] = ACTIONS(1335), - [sym_true] = ACTIONS(1333), - [sym_false] = ACTIONS(1333), - [anon_sym_NULL] = ACTIONS(1333), - [anon_sym_nullptr] = ACTIONS(1333), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [357] = { - [sym_identifier] = ACTIONS(1407), - [aux_sym_preproc_include_token1] = ACTIONS(1407), - [aux_sym_preproc_def_token1] = ACTIONS(1407), - [aux_sym_preproc_if_token1] = ACTIONS(1407), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1407), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1407), - [sym_preproc_directive] = ACTIONS(1407), - [anon_sym_LPAREN2] = ACTIONS(1409), - [anon_sym_BANG] = ACTIONS(1409), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1407), - [anon_sym_PLUS] = ACTIONS(1407), - [anon_sym_STAR] = ACTIONS(1409), - [anon_sym_AMP] = ACTIONS(1409), - [anon_sym_SEMI] = ACTIONS(1409), - [anon_sym___extension__] = ACTIONS(1407), - [anon_sym_typedef] = ACTIONS(1407), - [anon_sym_extern] = ACTIONS(1407), - [anon_sym___attribute__] = ACTIONS(1407), - [anon_sym___scanf] = ACTIONS(1407), - [anon_sym___printf] = ACTIONS(1407), - [anon_sym___read_mostly] = ACTIONS(1407), - [anon_sym___must_hold] = ACTIONS(1407), - [anon_sym___ro_after_init] = ACTIONS(1407), - [anon_sym___noreturn] = ACTIONS(1407), - [anon_sym___cold] = ACTIONS(1407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1409), - [anon_sym___declspec] = ACTIONS(1407), - [anon_sym___init] = ACTIONS(1407), - [anon_sym___exit] = ACTIONS(1407), - [anon_sym___cdecl] = ACTIONS(1407), - [anon_sym___clrcall] = ACTIONS(1407), - [anon_sym___stdcall] = ACTIONS(1407), - [anon_sym___fastcall] = ACTIONS(1407), - [anon_sym___thiscall] = ACTIONS(1407), - [anon_sym___vectorcall] = ACTIONS(1407), - [anon_sym_LBRACE] = ACTIONS(1409), - [anon_sym_RBRACE] = ACTIONS(1409), - [anon_sym_signed] = ACTIONS(1407), - [anon_sym_unsigned] = ACTIONS(1407), - [anon_sym_long] = ACTIONS(1407), - [anon_sym_short] = ACTIONS(1407), - [anon_sym_static] = ACTIONS(1407), - [anon_sym_auto] = ACTIONS(1407), - [anon_sym_register] = ACTIONS(1407), - [anon_sym_inline] = ACTIONS(1407), - [anon_sym___inline] = ACTIONS(1407), - [anon_sym___inline__] = ACTIONS(1407), - [anon_sym___forceinline] = ACTIONS(1407), - [anon_sym_thread_local] = ACTIONS(1407), - [anon_sym___thread] = ACTIONS(1407), - [anon_sym_const] = ACTIONS(1407), - [anon_sym_constexpr] = ACTIONS(1407), - [anon_sym_volatile] = ACTIONS(1407), - [anon_sym_restrict] = ACTIONS(1407), - [anon_sym___restrict__] = ACTIONS(1407), - [anon_sym__Atomic] = ACTIONS(1407), - [anon_sym__Noreturn] = ACTIONS(1407), - [anon_sym_noreturn] = ACTIONS(1407), - [anon_sym_alignas] = ACTIONS(1407), - [anon_sym__Alignas] = ACTIONS(1407), - [sym_primitive_type] = ACTIONS(1407), - [anon_sym_enum] = ACTIONS(1407), - [anon_sym_struct] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1407), - [anon_sym_if] = ACTIONS(1407), - [anon_sym_switch] = ACTIONS(1407), - [anon_sym_case] = ACTIONS(1407), - [anon_sym_default] = ACTIONS(1407), - [anon_sym_while] = ACTIONS(1407), - [anon_sym_do] = ACTIONS(1407), - [anon_sym_for] = ACTIONS(1407), - [anon_sym_return] = ACTIONS(1407), - [anon_sym_break] = ACTIONS(1407), - [anon_sym_continue] = ACTIONS(1407), - [anon_sym_goto] = ACTIONS(1407), - [anon_sym___try] = ACTIONS(1407), - [anon_sym___leave] = ACTIONS(1407), - [anon_sym_DASH_DASH] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1409), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym___alignof__] = ACTIONS(1407), - [anon_sym___alignof] = ACTIONS(1407), - [anon_sym__alignof] = ACTIONS(1407), - [anon_sym_alignof] = ACTIONS(1407), - [anon_sym__Alignof] = ACTIONS(1407), - [anon_sym_offsetof] = ACTIONS(1407), - [anon_sym__Generic] = ACTIONS(1407), - [anon_sym_asm] = ACTIONS(1407), - [anon_sym___asm__] = ACTIONS(1407), - [sym_number_literal] = ACTIONS(1409), - [anon_sym_L_SQUOTE] = ACTIONS(1409), - [anon_sym_u_SQUOTE] = ACTIONS(1409), - [anon_sym_U_SQUOTE] = ACTIONS(1409), - [anon_sym_u8_SQUOTE] = ACTIONS(1409), - [anon_sym_SQUOTE] = ACTIONS(1409), - [anon_sym_L_DQUOTE] = ACTIONS(1409), - [anon_sym_u_DQUOTE] = ACTIONS(1409), - [anon_sym_U_DQUOTE] = ACTIONS(1409), - [anon_sym_u8_DQUOTE] = ACTIONS(1409), - [anon_sym_DQUOTE] = ACTIONS(1409), - [sym_true] = ACTIONS(1407), - [sym_false] = ACTIONS(1407), - [anon_sym_NULL] = ACTIONS(1407), - [anon_sym_nullptr] = ACTIONS(1407), - [sym_comment] = ACTIONS(3), + [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), }, [358] = { - [sym_identifier] = ACTIONS(1297), - [aux_sym_preproc_include_token1] = ACTIONS(1297), - [aux_sym_preproc_def_token1] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1297), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1297), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1297), - [sym_preproc_directive] = ACTIONS(1297), - [anon_sym_LPAREN2] = ACTIONS(1299), - [anon_sym_BANG] = ACTIONS(1299), - [anon_sym_TILDE] = ACTIONS(1299), - [anon_sym_DASH] = ACTIONS(1297), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_STAR] = ACTIONS(1299), - [anon_sym_AMP] = ACTIONS(1299), - [anon_sym_SEMI] = ACTIONS(1299), - [anon_sym___extension__] = ACTIONS(1297), - [anon_sym_typedef] = ACTIONS(1297), - [anon_sym_extern] = ACTIONS(1297), - [anon_sym___attribute__] = ACTIONS(1297), - [anon_sym___scanf] = ACTIONS(1297), - [anon_sym___printf] = ACTIONS(1297), - [anon_sym___read_mostly] = ACTIONS(1297), - [anon_sym___must_hold] = ACTIONS(1297), - [anon_sym___ro_after_init] = ACTIONS(1297), - [anon_sym___noreturn] = ACTIONS(1297), - [anon_sym___cold] = ACTIONS(1297), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1299), - [anon_sym___declspec] = ACTIONS(1297), - [anon_sym___init] = ACTIONS(1297), - [anon_sym___exit] = ACTIONS(1297), - [anon_sym___cdecl] = ACTIONS(1297), - [anon_sym___clrcall] = ACTIONS(1297), - [anon_sym___stdcall] = ACTIONS(1297), - [anon_sym___fastcall] = ACTIONS(1297), - [anon_sym___thiscall] = ACTIONS(1297), - [anon_sym___vectorcall] = ACTIONS(1297), - [anon_sym_LBRACE] = ACTIONS(1299), - [anon_sym_RBRACE] = ACTIONS(1299), - [anon_sym_signed] = ACTIONS(1297), - [anon_sym_unsigned] = ACTIONS(1297), - [anon_sym_long] = ACTIONS(1297), - [anon_sym_short] = ACTIONS(1297), - [anon_sym_static] = ACTIONS(1297), - [anon_sym_auto] = ACTIONS(1297), - [anon_sym_register] = ACTIONS(1297), - [anon_sym_inline] = ACTIONS(1297), - [anon_sym___inline] = ACTIONS(1297), - [anon_sym___inline__] = ACTIONS(1297), - [anon_sym___forceinline] = ACTIONS(1297), - [anon_sym_thread_local] = ACTIONS(1297), - [anon_sym___thread] = ACTIONS(1297), - [anon_sym_const] = ACTIONS(1297), - [anon_sym_constexpr] = ACTIONS(1297), - [anon_sym_volatile] = ACTIONS(1297), - [anon_sym_restrict] = ACTIONS(1297), - [anon_sym___restrict__] = ACTIONS(1297), - [anon_sym__Atomic] = ACTIONS(1297), - [anon_sym__Noreturn] = ACTIONS(1297), - [anon_sym_noreturn] = ACTIONS(1297), - [anon_sym_alignas] = ACTIONS(1297), - [anon_sym__Alignas] = ACTIONS(1297), - [sym_primitive_type] = ACTIONS(1297), - [anon_sym_enum] = ACTIONS(1297), - [anon_sym_struct] = ACTIONS(1297), - [anon_sym_union] = ACTIONS(1297), - [anon_sym_if] = ACTIONS(1297), - [anon_sym_switch] = ACTIONS(1297), - [anon_sym_case] = ACTIONS(1297), - [anon_sym_default] = ACTIONS(1297), - [anon_sym_while] = ACTIONS(1297), - [anon_sym_do] = ACTIONS(1297), - [anon_sym_for] = ACTIONS(1297), - [anon_sym_return] = ACTIONS(1297), - [anon_sym_break] = ACTIONS(1297), - [anon_sym_continue] = ACTIONS(1297), - [anon_sym_goto] = ACTIONS(1297), - [anon_sym___try] = ACTIONS(1297), - [anon_sym___leave] = ACTIONS(1297), - [anon_sym_DASH_DASH] = ACTIONS(1299), - [anon_sym_PLUS_PLUS] = ACTIONS(1299), - [anon_sym_sizeof] = ACTIONS(1297), - [anon_sym___alignof__] = ACTIONS(1297), - [anon_sym___alignof] = ACTIONS(1297), - [anon_sym__alignof] = ACTIONS(1297), - [anon_sym_alignof] = ACTIONS(1297), - [anon_sym__Alignof] = ACTIONS(1297), - [anon_sym_offsetof] = ACTIONS(1297), - [anon_sym__Generic] = ACTIONS(1297), - [anon_sym_asm] = ACTIONS(1297), - [anon_sym___asm__] = ACTIONS(1297), - [sym_number_literal] = ACTIONS(1299), - [anon_sym_L_SQUOTE] = ACTIONS(1299), - [anon_sym_u_SQUOTE] = ACTIONS(1299), - [anon_sym_U_SQUOTE] = ACTIONS(1299), - [anon_sym_u8_SQUOTE] = ACTIONS(1299), - [anon_sym_SQUOTE] = ACTIONS(1299), - [anon_sym_L_DQUOTE] = ACTIONS(1299), - [anon_sym_u_DQUOTE] = ACTIONS(1299), - [anon_sym_U_DQUOTE] = ACTIONS(1299), - [anon_sym_u8_DQUOTE] = ACTIONS(1299), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_true] = ACTIONS(1297), - [sym_false] = ACTIONS(1297), - [anon_sym_NULL] = ACTIONS(1297), - [anon_sym_nullptr] = ACTIONS(1297), - [sym_comment] = ACTIONS(3), + [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_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(1321), - [aux_sym_preproc_include_token1] = ACTIONS(1321), - [aux_sym_preproc_def_token1] = ACTIONS(1321), - [aux_sym_preproc_if_token1] = ACTIONS(1321), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1321), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1321), - [sym_preproc_directive] = ACTIONS(1321), - [anon_sym_LPAREN2] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1323), - [anon_sym_TILDE] = ACTIONS(1323), - [anon_sym_DASH] = ACTIONS(1321), - [anon_sym_PLUS] = ACTIONS(1321), - [anon_sym_STAR] = ACTIONS(1323), - [anon_sym_AMP] = ACTIONS(1323), - [anon_sym_SEMI] = ACTIONS(1323), - [anon_sym___extension__] = ACTIONS(1321), - [anon_sym_typedef] = ACTIONS(1321), - [anon_sym_extern] = ACTIONS(1321), - [anon_sym___attribute__] = ACTIONS(1321), - [anon_sym___scanf] = ACTIONS(1321), - [anon_sym___printf] = ACTIONS(1321), - [anon_sym___read_mostly] = ACTIONS(1321), - [anon_sym___must_hold] = ACTIONS(1321), - [anon_sym___ro_after_init] = ACTIONS(1321), - [anon_sym___noreturn] = ACTIONS(1321), - [anon_sym___cold] = ACTIONS(1321), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1323), - [anon_sym___declspec] = ACTIONS(1321), - [anon_sym___init] = ACTIONS(1321), - [anon_sym___exit] = ACTIONS(1321), - [anon_sym___cdecl] = ACTIONS(1321), - [anon_sym___clrcall] = ACTIONS(1321), - [anon_sym___stdcall] = ACTIONS(1321), - [anon_sym___fastcall] = ACTIONS(1321), - [anon_sym___thiscall] = ACTIONS(1321), - [anon_sym___vectorcall] = ACTIONS(1321), - [anon_sym_LBRACE] = ACTIONS(1323), - [anon_sym_RBRACE] = ACTIONS(1323), - [anon_sym_signed] = ACTIONS(1321), - [anon_sym_unsigned] = ACTIONS(1321), - [anon_sym_long] = ACTIONS(1321), - [anon_sym_short] = ACTIONS(1321), - [anon_sym_static] = ACTIONS(1321), - [anon_sym_auto] = ACTIONS(1321), - [anon_sym_register] = ACTIONS(1321), - [anon_sym_inline] = ACTIONS(1321), - [anon_sym___inline] = ACTIONS(1321), - [anon_sym___inline__] = ACTIONS(1321), - [anon_sym___forceinline] = ACTIONS(1321), - [anon_sym_thread_local] = ACTIONS(1321), - [anon_sym___thread] = ACTIONS(1321), - [anon_sym_const] = ACTIONS(1321), - [anon_sym_constexpr] = ACTIONS(1321), - [anon_sym_volatile] = ACTIONS(1321), - [anon_sym_restrict] = ACTIONS(1321), - [anon_sym___restrict__] = ACTIONS(1321), - [anon_sym__Atomic] = ACTIONS(1321), - [anon_sym__Noreturn] = ACTIONS(1321), - [anon_sym_noreturn] = ACTIONS(1321), - [anon_sym_alignas] = ACTIONS(1321), - [anon_sym__Alignas] = ACTIONS(1321), - [sym_primitive_type] = ACTIONS(1321), - [anon_sym_enum] = ACTIONS(1321), - [anon_sym_struct] = ACTIONS(1321), - [anon_sym_union] = ACTIONS(1321), - [anon_sym_if] = ACTIONS(1321), - [anon_sym_switch] = ACTIONS(1321), - [anon_sym_case] = ACTIONS(1321), - [anon_sym_default] = ACTIONS(1321), - [anon_sym_while] = ACTIONS(1321), - [anon_sym_do] = ACTIONS(1321), - [anon_sym_for] = ACTIONS(1321), - [anon_sym_return] = ACTIONS(1321), - [anon_sym_break] = ACTIONS(1321), - [anon_sym_continue] = ACTIONS(1321), - [anon_sym_goto] = ACTIONS(1321), - [anon_sym___try] = ACTIONS(1321), - [anon_sym___leave] = ACTIONS(1321), - [anon_sym_DASH_DASH] = ACTIONS(1323), - [anon_sym_PLUS_PLUS] = ACTIONS(1323), - [anon_sym_sizeof] = ACTIONS(1321), - [anon_sym___alignof__] = ACTIONS(1321), - [anon_sym___alignof] = ACTIONS(1321), - [anon_sym__alignof] = ACTIONS(1321), - [anon_sym_alignof] = ACTIONS(1321), - [anon_sym__Alignof] = ACTIONS(1321), - [anon_sym_offsetof] = ACTIONS(1321), - [anon_sym__Generic] = ACTIONS(1321), - [anon_sym_asm] = ACTIONS(1321), - [anon_sym___asm__] = ACTIONS(1321), - [sym_number_literal] = ACTIONS(1323), - [anon_sym_L_SQUOTE] = ACTIONS(1323), - [anon_sym_u_SQUOTE] = ACTIONS(1323), - [anon_sym_U_SQUOTE] = ACTIONS(1323), - [anon_sym_u8_SQUOTE] = ACTIONS(1323), - [anon_sym_SQUOTE] = ACTIONS(1323), - [anon_sym_L_DQUOTE] = ACTIONS(1323), - [anon_sym_u_DQUOTE] = ACTIONS(1323), - [anon_sym_U_DQUOTE] = ACTIONS(1323), - [anon_sym_u8_DQUOTE] = ACTIONS(1323), - [anon_sym_DQUOTE] = ACTIONS(1323), - [sym_true] = ACTIONS(1321), - [sym_false] = ACTIONS(1321), - [anon_sym_NULL] = ACTIONS(1321), - [anon_sym_nullptr] = ACTIONS(1321), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [360] = { - [sym_identifier] = ACTIONS(1393), - [aux_sym_preproc_include_token1] = ACTIONS(1393), - [aux_sym_preproc_def_token1] = ACTIONS(1393), - [aux_sym_preproc_if_token1] = ACTIONS(1393), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1393), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1393), - [sym_preproc_directive] = ACTIONS(1393), - [anon_sym_LPAREN2] = ACTIONS(1395), - [anon_sym_BANG] = ACTIONS(1395), - [anon_sym_TILDE] = ACTIONS(1395), - [anon_sym_DASH] = ACTIONS(1393), - [anon_sym_PLUS] = ACTIONS(1393), - [anon_sym_STAR] = ACTIONS(1395), - [anon_sym_AMP] = ACTIONS(1395), - [anon_sym_SEMI] = ACTIONS(1395), - [anon_sym___extension__] = ACTIONS(1393), - [anon_sym_typedef] = ACTIONS(1393), - [anon_sym_extern] = ACTIONS(1393), - [anon_sym___attribute__] = ACTIONS(1393), - [anon_sym___scanf] = ACTIONS(1393), - [anon_sym___printf] = ACTIONS(1393), - [anon_sym___read_mostly] = ACTIONS(1393), - [anon_sym___must_hold] = ACTIONS(1393), - [anon_sym___ro_after_init] = ACTIONS(1393), - [anon_sym___noreturn] = ACTIONS(1393), - [anon_sym___cold] = ACTIONS(1393), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1395), - [anon_sym___declspec] = ACTIONS(1393), - [anon_sym___init] = ACTIONS(1393), - [anon_sym___exit] = ACTIONS(1393), - [anon_sym___cdecl] = ACTIONS(1393), - [anon_sym___clrcall] = ACTIONS(1393), - [anon_sym___stdcall] = ACTIONS(1393), - [anon_sym___fastcall] = ACTIONS(1393), - [anon_sym___thiscall] = ACTIONS(1393), - [anon_sym___vectorcall] = ACTIONS(1393), - [anon_sym_LBRACE] = ACTIONS(1395), - [anon_sym_RBRACE] = ACTIONS(1395), - [anon_sym_signed] = ACTIONS(1393), - [anon_sym_unsigned] = ACTIONS(1393), - [anon_sym_long] = ACTIONS(1393), - [anon_sym_short] = ACTIONS(1393), - [anon_sym_static] = ACTIONS(1393), - [anon_sym_auto] = ACTIONS(1393), - [anon_sym_register] = ACTIONS(1393), - [anon_sym_inline] = ACTIONS(1393), - [anon_sym___inline] = ACTIONS(1393), - [anon_sym___inline__] = ACTIONS(1393), - [anon_sym___forceinline] = ACTIONS(1393), - [anon_sym_thread_local] = ACTIONS(1393), - [anon_sym___thread] = ACTIONS(1393), - [anon_sym_const] = ACTIONS(1393), - [anon_sym_constexpr] = ACTIONS(1393), - [anon_sym_volatile] = ACTIONS(1393), - [anon_sym_restrict] = ACTIONS(1393), - [anon_sym___restrict__] = ACTIONS(1393), - [anon_sym__Atomic] = ACTIONS(1393), - [anon_sym__Noreturn] = ACTIONS(1393), - [anon_sym_noreturn] = ACTIONS(1393), - [anon_sym_alignas] = ACTIONS(1393), - [anon_sym__Alignas] = ACTIONS(1393), - [sym_primitive_type] = ACTIONS(1393), - [anon_sym_enum] = ACTIONS(1393), - [anon_sym_struct] = ACTIONS(1393), - [anon_sym_union] = ACTIONS(1393), - [anon_sym_if] = ACTIONS(1393), - [anon_sym_switch] = ACTIONS(1393), - [anon_sym_case] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1393), - [anon_sym_while] = ACTIONS(1393), - [anon_sym_do] = ACTIONS(1393), - [anon_sym_for] = ACTIONS(1393), - [anon_sym_return] = ACTIONS(1393), - [anon_sym_break] = ACTIONS(1393), - [anon_sym_continue] = ACTIONS(1393), - [anon_sym_goto] = ACTIONS(1393), - [anon_sym___try] = ACTIONS(1393), - [anon_sym___leave] = ACTIONS(1393), - [anon_sym_DASH_DASH] = ACTIONS(1395), - [anon_sym_PLUS_PLUS] = ACTIONS(1395), - [anon_sym_sizeof] = ACTIONS(1393), - [anon_sym___alignof__] = ACTIONS(1393), - [anon_sym___alignof] = ACTIONS(1393), - [anon_sym__alignof] = ACTIONS(1393), - [anon_sym_alignof] = ACTIONS(1393), - [anon_sym__Alignof] = ACTIONS(1393), - [anon_sym_offsetof] = ACTIONS(1393), - [anon_sym__Generic] = ACTIONS(1393), - [anon_sym_asm] = ACTIONS(1393), - [anon_sym___asm__] = ACTIONS(1393), - [sym_number_literal] = ACTIONS(1395), - [anon_sym_L_SQUOTE] = ACTIONS(1395), - [anon_sym_u_SQUOTE] = ACTIONS(1395), - [anon_sym_U_SQUOTE] = ACTIONS(1395), - [anon_sym_u8_SQUOTE] = ACTIONS(1395), - [anon_sym_SQUOTE] = ACTIONS(1395), - [anon_sym_L_DQUOTE] = ACTIONS(1395), - [anon_sym_u_DQUOTE] = ACTIONS(1395), - [anon_sym_U_DQUOTE] = ACTIONS(1395), - [anon_sym_u8_DQUOTE] = ACTIONS(1395), - [anon_sym_DQUOTE] = ACTIONS(1395), - [sym_true] = ACTIONS(1393), - [sym_false] = ACTIONS(1393), - [anon_sym_NULL] = ACTIONS(1393), - [anon_sym_nullptr] = ACTIONS(1393), - [sym_comment] = ACTIONS(3), + [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), + [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), }, [361] = { - [sym_identifier] = ACTIONS(1329), - [aux_sym_preproc_include_token1] = ACTIONS(1329), - [aux_sym_preproc_def_token1] = ACTIONS(1329), - [aux_sym_preproc_if_token1] = ACTIONS(1329), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1329), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1329), - [sym_preproc_directive] = ACTIONS(1329), - [anon_sym_LPAREN2] = ACTIONS(1331), - [anon_sym_BANG] = ACTIONS(1331), - [anon_sym_TILDE] = ACTIONS(1331), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_STAR] = ACTIONS(1331), - [anon_sym_AMP] = ACTIONS(1331), - [anon_sym_SEMI] = ACTIONS(1331), - [anon_sym___extension__] = ACTIONS(1329), - [anon_sym_typedef] = ACTIONS(1329), - [anon_sym_extern] = ACTIONS(1329), - [anon_sym___attribute__] = ACTIONS(1329), - [anon_sym___scanf] = ACTIONS(1329), - [anon_sym___printf] = ACTIONS(1329), - [anon_sym___read_mostly] = ACTIONS(1329), - [anon_sym___must_hold] = ACTIONS(1329), - [anon_sym___ro_after_init] = ACTIONS(1329), - [anon_sym___noreturn] = ACTIONS(1329), - [anon_sym___cold] = ACTIONS(1329), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1331), - [anon_sym___declspec] = ACTIONS(1329), - [anon_sym___init] = ACTIONS(1329), - [anon_sym___exit] = ACTIONS(1329), - [anon_sym___cdecl] = ACTIONS(1329), - [anon_sym___clrcall] = ACTIONS(1329), - [anon_sym___stdcall] = ACTIONS(1329), - [anon_sym___fastcall] = ACTIONS(1329), - [anon_sym___thiscall] = ACTIONS(1329), - [anon_sym___vectorcall] = ACTIONS(1329), - [anon_sym_LBRACE] = ACTIONS(1331), - [anon_sym_RBRACE] = ACTIONS(1331), - [anon_sym_signed] = ACTIONS(1329), - [anon_sym_unsigned] = ACTIONS(1329), - [anon_sym_long] = ACTIONS(1329), - [anon_sym_short] = ACTIONS(1329), - [anon_sym_static] = ACTIONS(1329), - [anon_sym_auto] = ACTIONS(1329), - [anon_sym_register] = ACTIONS(1329), - [anon_sym_inline] = ACTIONS(1329), - [anon_sym___inline] = ACTIONS(1329), - [anon_sym___inline__] = ACTIONS(1329), - [anon_sym___forceinline] = ACTIONS(1329), - [anon_sym_thread_local] = ACTIONS(1329), - [anon_sym___thread] = ACTIONS(1329), - [anon_sym_const] = ACTIONS(1329), - [anon_sym_constexpr] = ACTIONS(1329), - [anon_sym_volatile] = ACTIONS(1329), - [anon_sym_restrict] = ACTIONS(1329), - [anon_sym___restrict__] = ACTIONS(1329), - [anon_sym__Atomic] = ACTIONS(1329), - [anon_sym__Noreturn] = ACTIONS(1329), - [anon_sym_noreturn] = ACTIONS(1329), - [anon_sym_alignas] = ACTIONS(1329), - [anon_sym__Alignas] = ACTIONS(1329), - [sym_primitive_type] = ACTIONS(1329), - [anon_sym_enum] = ACTIONS(1329), - [anon_sym_struct] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1329), - [anon_sym_if] = ACTIONS(1329), - [anon_sym_switch] = ACTIONS(1329), - [anon_sym_case] = ACTIONS(1329), - [anon_sym_default] = ACTIONS(1329), - [anon_sym_while] = ACTIONS(1329), - [anon_sym_do] = ACTIONS(1329), - [anon_sym_for] = ACTIONS(1329), - [anon_sym_return] = ACTIONS(1329), - [anon_sym_break] = ACTIONS(1329), - [anon_sym_continue] = ACTIONS(1329), - [anon_sym_goto] = ACTIONS(1329), - [anon_sym___try] = ACTIONS(1329), - [anon_sym___leave] = ACTIONS(1329), - [anon_sym_DASH_DASH] = ACTIONS(1331), - [anon_sym_PLUS_PLUS] = ACTIONS(1331), - [anon_sym_sizeof] = ACTIONS(1329), - [anon_sym___alignof__] = ACTIONS(1329), - [anon_sym___alignof] = ACTIONS(1329), - [anon_sym__alignof] = ACTIONS(1329), - [anon_sym_alignof] = ACTIONS(1329), - [anon_sym__Alignof] = ACTIONS(1329), - [anon_sym_offsetof] = ACTIONS(1329), - [anon_sym__Generic] = ACTIONS(1329), - [anon_sym_asm] = ACTIONS(1329), - [anon_sym___asm__] = ACTIONS(1329), - [sym_number_literal] = ACTIONS(1331), - [anon_sym_L_SQUOTE] = ACTIONS(1331), - [anon_sym_u_SQUOTE] = ACTIONS(1331), - [anon_sym_U_SQUOTE] = ACTIONS(1331), - [anon_sym_u8_SQUOTE] = ACTIONS(1331), - [anon_sym_SQUOTE] = ACTIONS(1331), - [anon_sym_L_DQUOTE] = ACTIONS(1331), - [anon_sym_u_DQUOTE] = ACTIONS(1331), - [anon_sym_U_DQUOTE] = ACTIONS(1331), - [anon_sym_u8_DQUOTE] = ACTIONS(1331), - [anon_sym_DQUOTE] = ACTIONS(1331), - [sym_true] = ACTIONS(1329), - [sym_false] = ACTIONS(1329), - [anon_sym_NULL] = ACTIONS(1329), - [anon_sym_nullptr] = ACTIONS(1329), - [sym_comment] = ACTIONS(3), + [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(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(1419), - [aux_sym_preproc_include_token1] = ACTIONS(1419), - [aux_sym_preproc_def_token1] = ACTIONS(1419), - [aux_sym_preproc_if_token1] = ACTIONS(1419), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1419), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1419), - [sym_preproc_directive] = ACTIONS(1419), - [anon_sym_LPAREN2] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_SEMI] = ACTIONS(1421), - [anon_sym___extension__] = ACTIONS(1419), - [anon_sym_typedef] = ACTIONS(1419), - [anon_sym_extern] = ACTIONS(1419), - [anon_sym___attribute__] = ACTIONS(1419), - [anon_sym___scanf] = ACTIONS(1419), - [anon_sym___printf] = ACTIONS(1419), - [anon_sym___read_mostly] = ACTIONS(1419), - [anon_sym___must_hold] = ACTIONS(1419), - [anon_sym___ro_after_init] = ACTIONS(1419), - [anon_sym___noreturn] = ACTIONS(1419), - [anon_sym___cold] = ACTIONS(1419), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1421), - [anon_sym___declspec] = ACTIONS(1419), - [anon_sym___init] = ACTIONS(1419), - [anon_sym___exit] = ACTIONS(1419), - [anon_sym___cdecl] = ACTIONS(1419), - [anon_sym___clrcall] = ACTIONS(1419), - [anon_sym___stdcall] = ACTIONS(1419), - [anon_sym___fastcall] = ACTIONS(1419), - [anon_sym___thiscall] = ACTIONS(1419), - [anon_sym___vectorcall] = ACTIONS(1419), - [anon_sym_LBRACE] = ACTIONS(1421), - [anon_sym_RBRACE] = ACTIONS(1421), - [anon_sym_signed] = ACTIONS(1419), - [anon_sym_unsigned] = ACTIONS(1419), - [anon_sym_long] = ACTIONS(1419), - [anon_sym_short] = ACTIONS(1419), - [anon_sym_static] = ACTIONS(1419), - [anon_sym_auto] = ACTIONS(1419), - [anon_sym_register] = ACTIONS(1419), - [anon_sym_inline] = ACTIONS(1419), - [anon_sym___inline] = ACTIONS(1419), - [anon_sym___inline__] = ACTIONS(1419), - [anon_sym___forceinline] = ACTIONS(1419), - [anon_sym_thread_local] = ACTIONS(1419), - [anon_sym___thread] = ACTIONS(1419), - [anon_sym_const] = ACTIONS(1419), - [anon_sym_constexpr] = ACTIONS(1419), - [anon_sym_volatile] = ACTIONS(1419), - [anon_sym_restrict] = ACTIONS(1419), - [anon_sym___restrict__] = ACTIONS(1419), - [anon_sym__Atomic] = ACTIONS(1419), - [anon_sym__Noreturn] = ACTIONS(1419), - [anon_sym_noreturn] = ACTIONS(1419), - [anon_sym_alignas] = ACTIONS(1419), - [anon_sym__Alignas] = ACTIONS(1419), - [sym_primitive_type] = ACTIONS(1419), - [anon_sym_enum] = ACTIONS(1419), - [anon_sym_struct] = ACTIONS(1419), - [anon_sym_union] = ACTIONS(1419), - [anon_sym_if] = ACTIONS(1419), - [anon_sym_switch] = ACTIONS(1419), - [anon_sym_case] = ACTIONS(1419), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_while] = ACTIONS(1419), - [anon_sym_do] = ACTIONS(1419), - [anon_sym_for] = ACTIONS(1419), - [anon_sym_return] = ACTIONS(1419), - [anon_sym_break] = ACTIONS(1419), - [anon_sym_continue] = ACTIONS(1419), - [anon_sym_goto] = ACTIONS(1419), - [anon_sym___try] = ACTIONS(1419), - [anon_sym___leave] = ACTIONS(1419), - [anon_sym_DASH_DASH] = ACTIONS(1421), - [anon_sym_PLUS_PLUS] = ACTIONS(1421), - [anon_sym_sizeof] = ACTIONS(1419), - [anon_sym___alignof__] = ACTIONS(1419), - [anon_sym___alignof] = ACTIONS(1419), - [anon_sym__alignof] = ACTIONS(1419), - [anon_sym_alignof] = ACTIONS(1419), - [anon_sym__Alignof] = ACTIONS(1419), - [anon_sym_offsetof] = ACTIONS(1419), - [anon_sym__Generic] = ACTIONS(1419), - [anon_sym_asm] = ACTIONS(1419), - [anon_sym___asm__] = ACTIONS(1419), - [sym_number_literal] = ACTIONS(1421), - [anon_sym_L_SQUOTE] = ACTIONS(1421), - [anon_sym_u_SQUOTE] = ACTIONS(1421), - [anon_sym_U_SQUOTE] = ACTIONS(1421), - [anon_sym_u8_SQUOTE] = ACTIONS(1421), - [anon_sym_SQUOTE] = ACTIONS(1421), - [anon_sym_L_DQUOTE] = ACTIONS(1421), - [anon_sym_u_DQUOTE] = ACTIONS(1421), - [anon_sym_U_DQUOTE] = ACTIONS(1421), - [anon_sym_u8_DQUOTE] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1421), - [sym_true] = ACTIONS(1419), - [sym_false] = ACTIONS(1419), - [anon_sym_NULL] = ACTIONS(1419), - [anon_sym_nullptr] = ACTIONS(1419), - [sym_comment] = ACTIONS(3), + [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(1293), - [aux_sym_preproc_include_token1] = ACTIONS(1293), - [aux_sym_preproc_def_token1] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1293), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1293), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1293), - [sym_preproc_directive] = ACTIONS(1293), - [anon_sym_LPAREN2] = ACTIONS(1295), - [anon_sym_BANG] = ACTIONS(1295), - [anon_sym_TILDE] = ACTIONS(1295), - [anon_sym_DASH] = ACTIONS(1293), - [anon_sym_PLUS] = ACTIONS(1293), - [anon_sym_STAR] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(1295), - [anon_sym_SEMI] = ACTIONS(1295), - [anon_sym___extension__] = ACTIONS(1293), - [anon_sym_typedef] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1293), - [anon_sym___attribute__] = ACTIONS(1293), - [anon_sym___scanf] = ACTIONS(1293), - [anon_sym___printf] = ACTIONS(1293), - [anon_sym___read_mostly] = ACTIONS(1293), - [anon_sym___must_hold] = ACTIONS(1293), - [anon_sym___ro_after_init] = ACTIONS(1293), - [anon_sym___noreturn] = ACTIONS(1293), - [anon_sym___cold] = ACTIONS(1293), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1295), - [anon_sym___declspec] = ACTIONS(1293), - [anon_sym___init] = ACTIONS(1293), - [anon_sym___exit] = ACTIONS(1293), - [anon_sym___cdecl] = ACTIONS(1293), - [anon_sym___clrcall] = ACTIONS(1293), - [anon_sym___stdcall] = ACTIONS(1293), - [anon_sym___fastcall] = ACTIONS(1293), - [anon_sym___thiscall] = ACTIONS(1293), - [anon_sym___vectorcall] = ACTIONS(1293), - [anon_sym_LBRACE] = ACTIONS(1295), - [anon_sym_RBRACE] = ACTIONS(1295), - [anon_sym_signed] = ACTIONS(1293), - [anon_sym_unsigned] = ACTIONS(1293), - [anon_sym_long] = ACTIONS(1293), - [anon_sym_short] = ACTIONS(1293), - [anon_sym_static] = ACTIONS(1293), - [anon_sym_auto] = ACTIONS(1293), - [anon_sym_register] = ACTIONS(1293), - [anon_sym_inline] = ACTIONS(1293), - [anon_sym___inline] = ACTIONS(1293), - [anon_sym___inline__] = ACTIONS(1293), - [anon_sym___forceinline] = ACTIONS(1293), - [anon_sym_thread_local] = ACTIONS(1293), - [anon_sym___thread] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), - [anon_sym_constexpr] = ACTIONS(1293), - [anon_sym_volatile] = ACTIONS(1293), - [anon_sym_restrict] = ACTIONS(1293), - [anon_sym___restrict__] = ACTIONS(1293), - [anon_sym__Atomic] = ACTIONS(1293), - [anon_sym__Noreturn] = ACTIONS(1293), - [anon_sym_noreturn] = ACTIONS(1293), - [anon_sym_alignas] = ACTIONS(1293), - [anon_sym__Alignas] = ACTIONS(1293), - [sym_primitive_type] = ACTIONS(1293), - [anon_sym_enum] = ACTIONS(1293), - [anon_sym_struct] = ACTIONS(1293), - [anon_sym_union] = ACTIONS(1293), - [anon_sym_if] = ACTIONS(1293), - [anon_sym_switch] = ACTIONS(1293), - [anon_sym_case] = ACTIONS(1293), - [anon_sym_default] = ACTIONS(1293), - [anon_sym_while] = ACTIONS(1293), - [anon_sym_do] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1293), - [anon_sym_return] = ACTIONS(1293), - [anon_sym_break] = ACTIONS(1293), - [anon_sym_continue] = ACTIONS(1293), - [anon_sym_goto] = ACTIONS(1293), - [anon_sym___try] = ACTIONS(1293), - [anon_sym___leave] = ACTIONS(1293), - [anon_sym_DASH_DASH] = ACTIONS(1295), - [anon_sym_PLUS_PLUS] = ACTIONS(1295), - [anon_sym_sizeof] = ACTIONS(1293), - [anon_sym___alignof__] = ACTIONS(1293), - [anon_sym___alignof] = ACTIONS(1293), - [anon_sym__alignof] = ACTIONS(1293), - [anon_sym_alignof] = ACTIONS(1293), - [anon_sym__Alignof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1293), - [anon_sym__Generic] = ACTIONS(1293), - [anon_sym_asm] = ACTIONS(1293), - [anon_sym___asm__] = ACTIONS(1293), - [sym_number_literal] = ACTIONS(1295), - [anon_sym_L_SQUOTE] = ACTIONS(1295), - [anon_sym_u_SQUOTE] = ACTIONS(1295), - [anon_sym_U_SQUOTE] = ACTIONS(1295), - [anon_sym_u8_SQUOTE] = ACTIONS(1295), - [anon_sym_SQUOTE] = ACTIONS(1295), - [anon_sym_L_DQUOTE] = ACTIONS(1295), - [anon_sym_u_DQUOTE] = ACTIONS(1295), - [anon_sym_U_DQUOTE] = ACTIONS(1295), - [anon_sym_u8_DQUOTE] = ACTIONS(1295), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_true] = ACTIONS(1293), - [sym_false] = ACTIONS(1293), - [anon_sym_NULL] = ACTIONS(1293), - [anon_sym_nullptr] = ACTIONS(1293), - [sym_comment] = ACTIONS(3), + [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(1397), - [aux_sym_preproc_include_token1] = ACTIONS(1397), - [aux_sym_preproc_def_token1] = ACTIONS(1397), - [aux_sym_preproc_if_token1] = ACTIONS(1397), - [aux_sym_preproc_if_token2] = ACTIONS(1397), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1397), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1397), - [sym_preproc_directive] = ACTIONS(1397), - [anon_sym_LPAREN2] = ACTIONS(1399), - [anon_sym_BANG] = ACTIONS(1399), - [anon_sym_TILDE] = ACTIONS(1399), - [anon_sym_DASH] = ACTIONS(1397), - [anon_sym_PLUS] = ACTIONS(1397), - [anon_sym_STAR] = ACTIONS(1399), - [anon_sym_AMP] = ACTIONS(1399), - [anon_sym_SEMI] = ACTIONS(1399), - [anon_sym___extension__] = ACTIONS(1397), - [anon_sym_typedef] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1397), - [anon_sym___attribute__] = ACTIONS(1397), - [anon_sym___scanf] = ACTIONS(1397), - [anon_sym___printf] = ACTIONS(1397), - [anon_sym___read_mostly] = ACTIONS(1397), - [anon_sym___must_hold] = ACTIONS(1397), - [anon_sym___ro_after_init] = ACTIONS(1397), - [anon_sym___noreturn] = ACTIONS(1397), - [anon_sym___cold] = ACTIONS(1397), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1399), - [anon_sym___declspec] = ACTIONS(1397), - [anon_sym___init] = ACTIONS(1397), - [anon_sym___exit] = ACTIONS(1397), - [anon_sym___cdecl] = ACTIONS(1397), - [anon_sym___clrcall] = ACTIONS(1397), - [anon_sym___stdcall] = ACTIONS(1397), - [anon_sym___fastcall] = ACTIONS(1397), - [anon_sym___thiscall] = ACTIONS(1397), - [anon_sym___vectorcall] = ACTIONS(1397), - [anon_sym_LBRACE] = ACTIONS(1399), - [anon_sym_signed] = ACTIONS(1397), - [anon_sym_unsigned] = ACTIONS(1397), - [anon_sym_long] = ACTIONS(1397), - [anon_sym_short] = ACTIONS(1397), - [anon_sym_static] = ACTIONS(1397), - [anon_sym_auto] = ACTIONS(1397), - [anon_sym_register] = ACTIONS(1397), - [anon_sym_inline] = ACTIONS(1397), - [anon_sym___inline] = ACTIONS(1397), - [anon_sym___inline__] = ACTIONS(1397), - [anon_sym___forceinline] = ACTIONS(1397), - [anon_sym_thread_local] = ACTIONS(1397), - [anon_sym___thread] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_constexpr] = ACTIONS(1397), - [anon_sym_volatile] = ACTIONS(1397), - [anon_sym_restrict] = ACTIONS(1397), - [anon_sym___restrict__] = ACTIONS(1397), - [anon_sym__Atomic] = ACTIONS(1397), - [anon_sym__Noreturn] = ACTIONS(1397), - [anon_sym_noreturn] = ACTIONS(1397), - [anon_sym_alignas] = ACTIONS(1397), - [anon_sym__Alignas] = ACTIONS(1397), - [sym_primitive_type] = ACTIONS(1397), - [anon_sym_enum] = ACTIONS(1397), - [anon_sym_struct] = ACTIONS(1397), - [anon_sym_union] = ACTIONS(1397), - [anon_sym_if] = ACTIONS(1397), - [anon_sym_switch] = ACTIONS(1397), - [anon_sym_case] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_while] = ACTIONS(1397), - [anon_sym_do] = ACTIONS(1397), - [anon_sym_for] = ACTIONS(1397), - [anon_sym_return] = ACTIONS(1397), - [anon_sym_break] = ACTIONS(1397), - [anon_sym_continue] = ACTIONS(1397), - [anon_sym_goto] = ACTIONS(1397), - [anon_sym___try] = ACTIONS(1397), - [anon_sym___leave] = ACTIONS(1397), - [anon_sym_DASH_DASH] = ACTIONS(1399), - [anon_sym_PLUS_PLUS] = ACTIONS(1399), - [anon_sym_sizeof] = ACTIONS(1397), - [anon_sym___alignof__] = ACTIONS(1397), - [anon_sym___alignof] = ACTIONS(1397), - [anon_sym__alignof] = ACTIONS(1397), - [anon_sym_alignof] = ACTIONS(1397), - [anon_sym__Alignof] = ACTIONS(1397), - [anon_sym_offsetof] = ACTIONS(1397), - [anon_sym__Generic] = ACTIONS(1397), - [anon_sym_asm] = ACTIONS(1397), - [anon_sym___asm__] = ACTIONS(1397), - [sym_number_literal] = ACTIONS(1399), - [anon_sym_L_SQUOTE] = ACTIONS(1399), - [anon_sym_u_SQUOTE] = ACTIONS(1399), - [anon_sym_U_SQUOTE] = ACTIONS(1399), - [anon_sym_u8_SQUOTE] = ACTIONS(1399), - [anon_sym_SQUOTE] = ACTIONS(1399), - [anon_sym_L_DQUOTE] = ACTIONS(1399), - [anon_sym_u_DQUOTE] = ACTIONS(1399), - [anon_sym_U_DQUOTE] = ACTIONS(1399), - [anon_sym_u8_DQUOTE] = ACTIONS(1399), - [anon_sym_DQUOTE] = ACTIONS(1399), - [sym_true] = ACTIONS(1397), - [sym_false] = ACTIONS(1397), - [anon_sym_NULL] = ACTIONS(1397), - [anon_sym_nullptr] = ACTIONS(1397), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [365] = { - [sym_identifier] = ACTIONS(1325), - [aux_sym_preproc_include_token1] = ACTIONS(1325), - [aux_sym_preproc_def_token1] = ACTIONS(1325), - [aux_sym_preproc_if_token1] = ACTIONS(1325), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1325), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1325), - [sym_preproc_directive] = ACTIONS(1325), - [anon_sym_LPAREN2] = ACTIONS(1327), - [anon_sym_BANG] = ACTIONS(1327), - [anon_sym_TILDE] = ACTIONS(1327), - [anon_sym_DASH] = ACTIONS(1325), - [anon_sym_PLUS] = ACTIONS(1325), - [anon_sym_STAR] = ACTIONS(1327), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_SEMI] = ACTIONS(1327), - [anon_sym___extension__] = ACTIONS(1325), - [anon_sym_typedef] = ACTIONS(1325), - [anon_sym_extern] = ACTIONS(1325), - [anon_sym___attribute__] = ACTIONS(1325), - [anon_sym___scanf] = ACTIONS(1325), - [anon_sym___printf] = ACTIONS(1325), - [anon_sym___read_mostly] = ACTIONS(1325), - [anon_sym___must_hold] = ACTIONS(1325), - [anon_sym___ro_after_init] = ACTIONS(1325), - [anon_sym___noreturn] = ACTIONS(1325), - [anon_sym___cold] = ACTIONS(1325), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1327), - [anon_sym___declspec] = ACTIONS(1325), - [anon_sym___init] = ACTIONS(1325), - [anon_sym___exit] = ACTIONS(1325), - [anon_sym___cdecl] = ACTIONS(1325), - [anon_sym___clrcall] = ACTIONS(1325), - [anon_sym___stdcall] = ACTIONS(1325), - [anon_sym___fastcall] = ACTIONS(1325), - [anon_sym___thiscall] = ACTIONS(1325), - [anon_sym___vectorcall] = ACTIONS(1325), - [anon_sym_LBRACE] = ACTIONS(1327), - [anon_sym_RBRACE] = ACTIONS(1327), - [anon_sym_signed] = ACTIONS(1325), - [anon_sym_unsigned] = ACTIONS(1325), - [anon_sym_long] = ACTIONS(1325), - [anon_sym_short] = ACTIONS(1325), - [anon_sym_static] = ACTIONS(1325), - [anon_sym_auto] = ACTIONS(1325), - [anon_sym_register] = ACTIONS(1325), - [anon_sym_inline] = ACTIONS(1325), - [anon_sym___inline] = ACTIONS(1325), - [anon_sym___inline__] = ACTIONS(1325), - [anon_sym___forceinline] = ACTIONS(1325), - [anon_sym_thread_local] = ACTIONS(1325), - [anon_sym___thread] = ACTIONS(1325), - [anon_sym_const] = ACTIONS(1325), - [anon_sym_constexpr] = ACTIONS(1325), - [anon_sym_volatile] = ACTIONS(1325), - [anon_sym_restrict] = ACTIONS(1325), - [anon_sym___restrict__] = ACTIONS(1325), - [anon_sym__Atomic] = ACTIONS(1325), - [anon_sym__Noreturn] = ACTIONS(1325), - [anon_sym_noreturn] = ACTIONS(1325), - [anon_sym_alignas] = ACTIONS(1325), - [anon_sym__Alignas] = ACTIONS(1325), - [sym_primitive_type] = ACTIONS(1325), - [anon_sym_enum] = ACTIONS(1325), - [anon_sym_struct] = ACTIONS(1325), - [anon_sym_union] = ACTIONS(1325), - [anon_sym_if] = ACTIONS(1325), - [anon_sym_switch] = ACTIONS(1325), - [anon_sym_case] = ACTIONS(1325), - [anon_sym_default] = ACTIONS(1325), - [anon_sym_while] = ACTIONS(1325), - [anon_sym_do] = ACTIONS(1325), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_return] = ACTIONS(1325), - [anon_sym_break] = ACTIONS(1325), - [anon_sym_continue] = ACTIONS(1325), - [anon_sym_goto] = ACTIONS(1325), - [anon_sym___try] = ACTIONS(1325), - [anon_sym___leave] = ACTIONS(1325), - [anon_sym_DASH_DASH] = ACTIONS(1327), - [anon_sym_PLUS_PLUS] = ACTIONS(1327), - [anon_sym_sizeof] = ACTIONS(1325), - [anon_sym___alignof__] = ACTIONS(1325), - [anon_sym___alignof] = ACTIONS(1325), - [anon_sym__alignof] = ACTIONS(1325), - [anon_sym_alignof] = ACTIONS(1325), - [anon_sym__Alignof] = ACTIONS(1325), - [anon_sym_offsetof] = ACTIONS(1325), - [anon_sym__Generic] = ACTIONS(1325), - [anon_sym_asm] = ACTIONS(1325), - [anon_sym___asm__] = ACTIONS(1325), - [sym_number_literal] = ACTIONS(1327), - [anon_sym_L_SQUOTE] = ACTIONS(1327), - [anon_sym_u_SQUOTE] = ACTIONS(1327), - [anon_sym_U_SQUOTE] = ACTIONS(1327), - [anon_sym_u8_SQUOTE] = ACTIONS(1327), - [anon_sym_SQUOTE] = ACTIONS(1327), - [anon_sym_L_DQUOTE] = ACTIONS(1327), - [anon_sym_u_DQUOTE] = ACTIONS(1327), - [anon_sym_U_DQUOTE] = ACTIONS(1327), - [anon_sym_u8_DQUOTE] = ACTIONS(1327), - [anon_sym_DQUOTE] = ACTIONS(1327), - [sym_true] = ACTIONS(1325), - [sym_false] = ACTIONS(1325), - [anon_sym_NULL] = ACTIONS(1325), - [anon_sym_nullptr] = ACTIONS(1325), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [366] = { - [ts_builtin_sym_end] = ACTIONS(1395), - [sym_identifier] = ACTIONS(1393), - [aux_sym_preproc_include_token1] = ACTIONS(1393), - [aux_sym_preproc_def_token1] = ACTIONS(1393), - [anon_sym_COMMA] = ACTIONS(1395), - [aux_sym_preproc_if_token1] = ACTIONS(1393), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1393), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1393), - [sym_preproc_directive] = ACTIONS(1393), - [anon_sym_LPAREN2] = ACTIONS(1395), - [anon_sym_BANG] = ACTIONS(1395), - [anon_sym_TILDE] = ACTIONS(1395), - [anon_sym_DASH] = ACTIONS(1393), - [anon_sym_PLUS] = ACTIONS(1393), - [anon_sym_STAR] = ACTIONS(1395), - [anon_sym_AMP] = ACTIONS(1395), - [anon_sym___extension__] = ACTIONS(1393), - [anon_sym_typedef] = ACTIONS(1393), - [anon_sym_extern] = ACTIONS(1393), - [anon_sym___attribute__] = ACTIONS(1393), - [anon_sym___scanf] = ACTIONS(1393), - [anon_sym___printf] = ACTIONS(1393), - [anon_sym___read_mostly] = ACTIONS(1393), - [anon_sym___must_hold] = ACTIONS(1393), - [anon_sym___ro_after_init] = ACTIONS(1393), - [anon_sym___noreturn] = ACTIONS(1393), - [anon_sym___cold] = ACTIONS(1393), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1395), - [anon_sym___declspec] = ACTIONS(1393), - [anon_sym___init] = ACTIONS(1393), - [anon_sym___exit] = ACTIONS(1393), - [anon_sym___cdecl] = ACTIONS(1393), - [anon_sym___clrcall] = ACTIONS(1393), - [anon_sym___stdcall] = ACTIONS(1393), - [anon_sym___fastcall] = ACTIONS(1393), - [anon_sym___thiscall] = ACTIONS(1393), - [anon_sym___vectorcall] = ACTIONS(1393), - [anon_sym_LBRACE] = ACTIONS(1395), - [anon_sym_RBRACE] = ACTIONS(1395), - [anon_sym_signed] = ACTIONS(1393), - [anon_sym_unsigned] = ACTIONS(1393), - [anon_sym_long] = ACTIONS(1393), - [anon_sym_short] = ACTIONS(1393), - [anon_sym_static] = ACTIONS(1393), - [anon_sym_auto] = ACTIONS(1393), - [anon_sym_register] = ACTIONS(1393), - [anon_sym_inline] = ACTIONS(1393), - [anon_sym___inline] = ACTIONS(1393), - [anon_sym___inline__] = ACTIONS(1393), - [anon_sym___forceinline] = ACTIONS(1393), - [anon_sym_thread_local] = ACTIONS(1393), - [anon_sym___thread] = ACTIONS(1393), - [anon_sym_const] = ACTIONS(1393), - [anon_sym_constexpr] = ACTIONS(1393), - [anon_sym_volatile] = ACTIONS(1393), - [anon_sym_restrict] = ACTIONS(1393), - [anon_sym___restrict__] = ACTIONS(1393), - [anon_sym__Atomic] = ACTIONS(1393), - [anon_sym__Noreturn] = ACTIONS(1393), - [anon_sym_noreturn] = ACTIONS(1393), - [anon_sym_alignas] = ACTIONS(1393), - [anon_sym__Alignas] = ACTIONS(1393), - [sym_primitive_type] = ACTIONS(1393), - [anon_sym_enum] = ACTIONS(1393), - [anon_sym_struct] = ACTIONS(1393), - [anon_sym_union] = ACTIONS(1393), - [anon_sym_if] = ACTIONS(1393), - [anon_sym_switch] = ACTIONS(1393), - [anon_sym_case] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1393), - [anon_sym_while] = ACTIONS(1393), - [anon_sym_do] = ACTIONS(1393), - [anon_sym_for] = ACTIONS(1393), - [anon_sym_return] = ACTIONS(1393), - [anon_sym_break] = ACTIONS(1393), - [anon_sym_continue] = ACTIONS(1393), - [anon_sym_goto] = ACTIONS(1393), - [anon_sym_DASH_DASH] = ACTIONS(1395), - [anon_sym_PLUS_PLUS] = ACTIONS(1395), - [anon_sym_sizeof] = ACTIONS(1393), - [anon_sym___alignof__] = ACTIONS(1393), - [anon_sym___alignof] = ACTIONS(1393), - [anon_sym__alignof] = ACTIONS(1393), - [anon_sym_alignof] = ACTIONS(1393), - [anon_sym__Alignof] = ACTIONS(1393), - [anon_sym_offsetof] = ACTIONS(1393), - [anon_sym__Generic] = ACTIONS(1393), - [anon_sym_asm] = ACTIONS(1393), - [anon_sym___asm__] = ACTIONS(1393), - [sym_number_literal] = ACTIONS(1395), - [anon_sym_L_SQUOTE] = ACTIONS(1395), - [anon_sym_u_SQUOTE] = ACTIONS(1395), - [anon_sym_U_SQUOTE] = ACTIONS(1395), - [anon_sym_u8_SQUOTE] = ACTIONS(1395), - [anon_sym_SQUOTE] = ACTIONS(1395), - [anon_sym_L_DQUOTE] = ACTIONS(1395), - [anon_sym_u_DQUOTE] = ACTIONS(1395), - [anon_sym_U_DQUOTE] = ACTIONS(1395), - [anon_sym_u8_DQUOTE] = ACTIONS(1395), - [anon_sym_DQUOTE] = ACTIONS(1395), - [sym_true] = ACTIONS(1393), - [sym_false] = ACTIONS(1393), - [anon_sym_NULL] = ACTIONS(1393), - [anon_sym_nullptr] = ACTIONS(1393), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [367] = { - [ts_builtin_sym_end] = ACTIONS(1315), - [sym_identifier] = ACTIONS(1313), - [aux_sym_preproc_include_token1] = ACTIONS(1313), - [aux_sym_preproc_def_token1] = ACTIONS(1313), - [anon_sym_COMMA] = ACTIONS(1315), - [aux_sym_preproc_if_token1] = ACTIONS(1313), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1313), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1313), - [sym_preproc_directive] = ACTIONS(1313), - [anon_sym_LPAREN2] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1315), - [anon_sym_TILDE] = ACTIONS(1315), - [anon_sym_DASH] = ACTIONS(1313), - [anon_sym_PLUS] = ACTIONS(1313), - [anon_sym_STAR] = ACTIONS(1315), - [anon_sym_AMP] = ACTIONS(1315), - [anon_sym___extension__] = ACTIONS(1313), - [anon_sym_typedef] = ACTIONS(1313), - [anon_sym_extern] = ACTIONS(1313), - [anon_sym___attribute__] = ACTIONS(1313), - [anon_sym___scanf] = ACTIONS(1313), - [anon_sym___printf] = ACTIONS(1313), - [anon_sym___read_mostly] = ACTIONS(1313), - [anon_sym___must_hold] = ACTIONS(1313), - [anon_sym___ro_after_init] = ACTIONS(1313), - [anon_sym___noreturn] = ACTIONS(1313), - [anon_sym___cold] = ACTIONS(1313), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1315), - [anon_sym___declspec] = ACTIONS(1313), - [anon_sym___init] = ACTIONS(1313), - [anon_sym___exit] = ACTIONS(1313), - [anon_sym___cdecl] = ACTIONS(1313), - [anon_sym___clrcall] = ACTIONS(1313), - [anon_sym___stdcall] = ACTIONS(1313), - [anon_sym___fastcall] = ACTIONS(1313), - [anon_sym___thiscall] = ACTIONS(1313), - [anon_sym___vectorcall] = ACTIONS(1313), - [anon_sym_LBRACE] = ACTIONS(1315), - [anon_sym_RBRACE] = ACTIONS(1315), - [anon_sym_signed] = ACTIONS(1313), - [anon_sym_unsigned] = ACTIONS(1313), - [anon_sym_long] = ACTIONS(1313), - [anon_sym_short] = ACTIONS(1313), - [anon_sym_static] = ACTIONS(1313), - [anon_sym_auto] = ACTIONS(1313), - [anon_sym_register] = ACTIONS(1313), - [anon_sym_inline] = ACTIONS(1313), - [anon_sym___inline] = ACTIONS(1313), - [anon_sym___inline__] = ACTIONS(1313), - [anon_sym___forceinline] = ACTIONS(1313), - [anon_sym_thread_local] = ACTIONS(1313), - [anon_sym___thread] = ACTIONS(1313), - [anon_sym_const] = ACTIONS(1313), - [anon_sym_constexpr] = ACTIONS(1313), - [anon_sym_volatile] = ACTIONS(1313), - [anon_sym_restrict] = ACTIONS(1313), - [anon_sym___restrict__] = ACTIONS(1313), - [anon_sym__Atomic] = ACTIONS(1313), - [anon_sym__Noreturn] = ACTIONS(1313), - [anon_sym_noreturn] = ACTIONS(1313), - [anon_sym_alignas] = ACTIONS(1313), - [anon_sym__Alignas] = ACTIONS(1313), - [sym_primitive_type] = ACTIONS(1313), - [anon_sym_enum] = ACTIONS(1313), - [anon_sym_struct] = ACTIONS(1313), - [anon_sym_union] = ACTIONS(1313), - [anon_sym_if] = ACTIONS(1313), - [anon_sym_switch] = ACTIONS(1313), - [anon_sym_case] = ACTIONS(1313), - [anon_sym_default] = ACTIONS(1313), - [anon_sym_while] = ACTIONS(1313), - [anon_sym_do] = ACTIONS(1313), - [anon_sym_for] = ACTIONS(1313), - [anon_sym_return] = ACTIONS(1313), - [anon_sym_break] = ACTIONS(1313), - [anon_sym_continue] = ACTIONS(1313), - [anon_sym_goto] = ACTIONS(1313), - [anon_sym_DASH_DASH] = ACTIONS(1315), - [anon_sym_PLUS_PLUS] = ACTIONS(1315), - [anon_sym_sizeof] = ACTIONS(1313), - [anon_sym___alignof__] = ACTIONS(1313), - [anon_sym___alignof] = ACTIONS(1313), - [anon_sym__alignof] = ACTIONS(1313), - [anon_sym_alignof] = ACTIONS(1313), - [anon_sym__Alignof] = ACTIONS(1313), - [anon_sym_offsetof] = ACTIONS(1313), - [anon_sym__Generic] = ACTIONS(1313), - [anon_sym_asm] = ACTIONS(1313), - [anon_sym___asm__] = ACTIONS(1313), - [sym_number_literal] = ACTIONS(1315), - [anon_sym_L_SQUOTE] = ACTIONS(1315), - [anon_sym_u_SQUOTE] = ACTIONS(1315), - [anon_sym_U_SQUOTE] = ACTIONS(1315), - [anon_sym_u8_SQUOTE] = ACTIONS(1315), - [anon_sym_SQUOTE] = ACTIONS(1315), - [anon_sym_L_DQUOTE] = ACTIONS(1315), - [anon_sym_u_DQUOTE] = ACTIONS(1315), - [anon_sym_U_DQUOTE] = ACTIONS(1315), - [anon_sym_u8_DQUOTE] = ACTIONS(1315), - [anon_sym_DQUOTE] = ACTIONS(1315), - [sym_true] = ACTIONS(1313), - [sym_false] = ACTIONS(1313), - [anon_sym_NULL] = ACTIONS(1313), - [anon_sym_nullptr] = ACTIONS(1313), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [368] = { - [ts_builtin_sym_end] = ACTIONS(1295), - [sym_identifier] = ACTIONS(1293), - [aux_sym_preproc_include_token1] = ACTIONS(1293), - [aux_sym_preproc_def_token1] = ACTIONS(1293), - [aux_sym_preproc_if_token1] = ACTIONS(1293), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1293), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1293), - [sym_preproc_directive] = ACTIONS(1293), - [anon_sym_LPAREN2] = ACTIONS(1295), - [anon_sym_BANG] = ACTIONS(1295), - [anon_sym_TILDE] = ACTIONS(1295), - [anon_sym_DASH] = ACTIONS(1293), - [anon_sym_PLUS] = ACTIONS(1293), - [anon_sym_STAR] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(1295), - [anon_sym___extension__] = ACTIONS(1293), - [anon_sym_typedef] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1293), - [anon_sym___attribute__] = ACTIONS(1293), - [anon_sym___scanf] = ACTIONS(1293), - [anon_sym___printf] = ACTIONS(1293), - [anon_sym___read_mostly] = ACTIONS(1293), - [anon_sym___must_hold] = ACTIONS(1293), - [anon_sym___ro_after_init] = ACTIONS(1293), - [anon_sym___noreturn] = ACTIONS(1293), - [anon_sym___cold] = ACTIONS(1293), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1295), - [anon_sym___declspec] = ACTIONS(1293), - [anon_sym___init] = ACTIONS(1293), - [anon_sym___exit] = ACTIONS(1293), - [anon_sym___cdecl] = ACTIONS(1293), - [anon_sym___clrcall] = ACTIONS(1293), - [anon_sym___stdcall] = ACTIONS(1293), - [anon_sym___fastcall] = ACTIONS(1293), - [anon_sym___thiscall] = ACTIONS(1293), - [anon_sym___vectorcall] = ACTIONS(1293), - [anon_sym_LBRACE] = ACTIONS(1295), - [anon_sym_signed] = ACTIONS(1293), - [anon_sym_unsigned] = ACTIONS(1293), - [anon_sym_long] = ACTIONS(1293), - [anon_sym_short] = ACTIONS(1293), - [anon_sym_static] = ACTIONS(1293), - [anon_sym_auto] = ACTIONS(1293), - [anon_sym_register] = ACTIONS(1293), - [anon_sym_inline] = ACTIONS(1293), - [anon_sym___inline] = ACTIONS(1293), - [anon_sym___inline__] = ACTIONS(1293), - [anon_sym___forceinline] = ACTIONS(1293), - [anon_sym_thread_local] = ACTIONS(1293), - [anon_sym___thread] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), - [anon_sym_constexpr] = ACTIONS(1293), - [anon_sym_volatile] = ACTIONS(1293), - [anon_sym_restrict] = ACTIONS(1293), - [anon_sym___restrict__] = ACTIONS(1293), - [anon_sym__Atomic] = ACTIONS(1293), - [anon_sym__Noreturn] = ACTIONS(1293), - [anon_sym_noreturn] = ACTIONS(1293), - [anon_sym_alignas] = ACTIONS(1293), - [anon_sym__Alignas] = ACTIONS(1293), - [sym_primitive_type] = ACTIONS(1293), - [anon_sym_enum] = ACTIONS(1293), - [anon_sym_struct] = ACTIONS(1293), - [anon_sym_union] = ACTIONS(1293), - [anon_sym_if] = ACTIONS(1293), - [anon_sym_switch] = ACTIONS(1293), - [anon_sym_case] = ACTIONS(1293), - [anon_sym_default] = ACTIONS(1293), - [anon_sym_while] = ACTIONS(1293), - [anon_sym_do] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1293), - [anon_sym_return] = ACTIONS(1293), - [anon_sym_break] = ACTIONS(1293), - [anon_sym_continue] = ACTIONS(1293), - [anon_sym_goto] = ACTIONS(1293), - [anon_sym_DASH_DASH] = ACTIONS(1295), - [anon_sym_PLUS_PLUS] = ACTIONS(1295), - [anon_sym_sizeof] = ACTIONS(1293), - [anon_sym___alignof__] = ACTIONS(1293), - [anon_sym___alignof] = ACTIONS(1293), - [anon_sym__alignof] = ACTIONS(1293), - [anon_sym_alignof] = ACTIONS(1293), - [anon_sym__Alignof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1293), - [anon_sym__Generic] = ACTIONS(1293), - [anon_sym_asm] = ACTIONS(1293), - [anon_sym___asm__] = ACTIONS(1293), - [sym_number_literal] = ACTIONS(1295), - [anon_sym_L_SQUOTE] = ACTIONS(1295), - [anon_sym_u_SQUOTE] = ACTIONS(1295), - [anon_sym_U_SQUOTE] = ACTIONS(1295), - [anon_sym_u8_SQUOTE] = ACTIONS(1295), - [anon_sym_SQUOTE] = ACTIONS(1295), - [anon_sym_L_DQUOTE] = ACTIONS(1295), - [anon_sym_u_DQUOTE] = ACTIONS(1295), - [anon_sym_U_DQUOTE] = ACTIONS(1295), - [anon_sym_u8_DQUOTE] = ACTIONS(1295), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_true] = ACTIONS(1293), - [sym_false] = ACTIONS(1293), - [anon_sym_NULL] = ACTIONS(1293), - [anon_sym_nullptr] = ACTIONS(1293), - [sym_comment] = ACTIONS(3), + [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), + [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), + [sym_comment] = ACTIONS(5), }, [369] = { - [ts_builtin_sym_end] = ACTIONS(1291), - [sym_identifier] = ACTIONS(1289), - [aux_sym_preproc_include_token1] = ACTIONS(1289), - [aux_sym_preproc_def_token1] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1289), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1289), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1289), - [sym_preproc_directive] = ACTIONS(1289), - [anon_sym_LPAREN2] = ACTIONS(1291), - [anon_sym_BANG] = ACTIONS(1291), - [anon_sym_TILDE] = ACTIONS(1291), - [anon_sym_DASH] = ACTIONS(1289), - [anon_sym_PLUS] = ACTIONS(1289), - [anon_sym_STAR] = ACTIONS(1291), - [anon_sym_AMP] = ACTIONS(1291), - [anon_sym___extension__] = ACTIONS(1289), - [anon_sym_typedef] = ACTIONS(1289), - [anon_sym_extern] = ACTIONS(1289), - [anon_sym___attribute__] = ACTIONS(1289), - [anon_sym___scanf] = ACTIONS(1289), - [anon_sym___printf] = ACTIONS(1289), - [anon_sym___read_mostly] = ACTIONS(1289), - [anon_sym___must_hold] = ACTIONS(1289), - [anon_sym___ro_after_init] = ACTIONS(1289), - [anon_sym___noreturn] = ACTIONS(1289), - [anon_sym___cold] = ACTIONS(1289), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1291), - [anon_sym___declspec] = ACTIONS(1289), - [anon_sym___init] = ACTIONS(1289), - [anon_sym___exit] = ACTIONS(1289), - [anon_sym___cdecl] = ACTIONS(1289), - [anon_sym___clrcall] = ACTIONS(1289), - [anon_sym___stdcall] = ACTIONS(1289), - [anon_sym___fastcall] = ACTIONS(1289), - [anon_sym___thiscall] = ACTIONS(1289), - [anon_sym___vectorcall] = ACTIONS(1289), - [anon_sym_LBRACE] = ACTIONS(1291), - [anon_sym_signed] = ACTIONS(1289), - [anon_sym_unsigned] = ACTIONS(1289), - [anon_sym_long] = ACTIONS(1289), - [anon_sym_short] = ACTIONS(1289), - [anon_sym_static] = ACTIONS(1289), - [anon_sym_auto] = ACTIONS(1289), - [anon_sym_register] = ACTIONS(1289), - [anon_sym_inline] = ACTIONS(1289), - [anon_sym___inline] = ACTIONS(1289), - [anon_sym___inline__] = ACTIONS(1289), - [anon_sym___forceinline] = ACTIONS(1289), - [anon_sym_thread_local] = ACTIONS(1289), - [anon_sym___thread] = ACTIONS(1289), - [anon_sym_const] = ACTIONS(1289), - [anon_sym_constexpr] = ACTIONS(1289), - [anon_sym_volatile] = ACTIONS(1289), - [anon_sym_restrict] = ACTIONS(1289), - [anon_sym___restrict__] = ACTIONS(1289), - [anon_sym__Atomic] = ACTIONS(1289), - [anon_sym__Noreturn] = ACTIONS(1289), - [anon_sym_noreturn] = ACTIONS(1289), - [anon_sym_alignas] = ACTIONS(1289), - [anon_sym__Alignas] = ACTIONS(1289), - [sym_primitive_type] = ACTIONS(1289), - [anon_sym_enum] = ACTIONS(1289), - [anon_sym_struct] = ACTIONS(1289), - [anon_sym_union] = ACTIONS(1289), - [anon_sym_if] = ACTIONS(1289), - [anon_sym_switch] = ACTIONS(1289), - [anon_sym_case] = ACTIONS(1289), - [anon_sym_default] = ACTIONS(1289), - [anon_sym_while] = ACTIONS(1289), - [anon_sym_do] = ACTIONS(1289), - [anon_sym_for] = ACTIONS(1289), - [anon_sym_return] = ACTIONS(1289), - [anon_sym_break] = ACTIONS(1289), - [anon_sym_continue] = ACTIONS(1289), - [anon_sym_goto] = ACTIONS(1289), - [anon_sym_DASH_DASH] = ACTIONS(1291), - [anon_sym_PLUS_PLUS] = ACTIONS(1291), - [anon_sym_sizeof] = ACTIONS(1289), - [anon_sym___alignof__] = ACTIONS(1289), - [anon_sym___alignof] = ACTIONS(1289), - [anon_sym__alignof] = ACTIONS(1289), - [anon_sym_alignof] = ACTIONS(1289), - [anon_sym__Alignof] = ACTIONS(1289), - [anon_sym_offsetof] = ACTIONS(1289), - [anon_sym__Generic] = ACTIONS(1289), - [anon_sym_asm] = ACTIONS(1289), - [anon_sym___asm__] = ACTIONS(1289), - [sym_number_literal] = ACTIONS(1291), - [anon_sym_L_SQUOTE] = ACTIONS(1291), - [anon_sym_u_SQUOTE] = ACTIONS(1291), - [anon_sym_U_SQUOTE] = ACTIONS(1291), - [anon_sym_u8_SQUOTE] = ACTIONS(1291), - [anon_sym_SQUOTE] = ACTIONS(1291), - [anon_sym_L_DQUOTE] = ACTIONS(1291), - [anon_sym_u_DQUOTE] = ACTIONS(1291), - [anon_sym_U_DQUOTE] = ACTIONS(1291), - [anon_sym_u8_DQUOTE] = ACTIONS(1291), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_true] = ACTIONS(1289), - [sym_false] = ACTIONS(1289), - [anon_sym_NULL] = ACTIONS(1289), - [anon_sym_nullptr] = ACTIONS(1289), - [sym_comment] = ACTIONS(3), + [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), }, [370] = { - [ts_builtin_sym_end] = ACTIONS(1323), - [sym_identifier] = ACTIONS(1321), - [aux_sym_preproc_include_token1] = ACTIONS(1321), - [aux_sym_preproc_def_token1] = ACTIONS(1321), - [aux_sym_preproc_if_token1] = ACTIONS(1321), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1321), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1321), - [sym_preproc_directive] = ACTIONS(1321), - [anon_sym_LPAREN2] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1323), - [anon_sym_TILDE] = ACTIONS(1323), - [anon_sym_DASH] = ACTIONS(1321), - [anon_sym_PLUS] = ACTIONS(1321), - [anon_sym_STAR] = ACTIONS(1323), - [anon_sym_AMP] = ACTIONS(1323), - [anon_sym___extension__] = ACTIONS(1321), - [anon_sym_typedef] = ACTIONS(1321), - [anon_sym_extern] = ACTIONS(1321), - [anon_sym___attribute__] = ACTIONS(1321), - [anon_sym___scanf] = ACTIONS(1321), - [anon_sym___printf] = ACTIONS(1321), - [anon_sym___read_mostly] = ACTIONS(1321), - [anon_sym___must_hold] = ACTIONS(1321), - [anon_sym___ro_after_init] = ACTIONS(1321), - [anon_sym___noreturn] = ACTIONS(1321), - [anon_sym___cold] = ACTIONS(1321), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1323), - [anon_sym___declspec] = ACTIONS(1321), - [anon_sym___init] = ACTIONS(1321), - [anon_sym___exit] = ACTIONS(1321), - [anon_sym___cdecl] = ACTIONS(1321), - [anon_sym___clrcall] = ACTIONS(1321), - [anon_sym___stdcall] = ACTIONS(1321), - [anon_sym___fastcall] = ACTIONS(1321), - [anon_sym___thiscall] = ACTIONS(1321), - [anon_sym___vectorcall] = ACTIONS(1321), - [anon_sym_LBRACE] = ACTIONS(1323), - [anon_sym_signed] = ACTIONS(1321), - [anon_sym_unsigned] = ACTIONS(1321), - [anon_sym_long] = ACTIONS(1321), - [anon_sym_short] = ACTIONS(1321), - [anon_sym_static] = ACTIONS(1321), - [anon_sym_auto] = ACTIONS(1321), - [anon_sym_register] = ACTIONS(1321), - [anon_sym_inline] = ACTIONS(1321), - [anon_sym___inline] = ACTIONS(1321), - [anon_sym___inline__] = ACTIONS(1321), - [anon_sym___forceinline] = ACTIONS(1321), - [anon_sym_thread_local] = ACTIONS(1321), - [anon_sym___thread] = ACTIONS(1321), - [anon_sym_const] = ACTIONS(1321), - [anon_sym_constexpr] = ACTIONS(1321), - [anon_sym_volatile] = ACTIONS(1321), - [anon_sym_restrict] = ACTIONS(1321), - [anon_sym___restrict__] = ACTIONS(1321), - [anon_sym__Atomic] = ACTIONS(1321), - [anon_sym__Noreturn] = ACTIONS(1321), - [anon_sym_noreturn] = ACTIONS(1321), - [anon_sym_alignas] = ACTIONS(1321), - [anon_sym__Alignas] = ACTIONS(1321), - [sym_primitive_type] = ACTIONS(1321), - [anon_sym_enum] = ACTIONS(1321), - [anon_sym_struct] = ACTIONS(1321), - [anon_sym_union] = ACTIONS(1321), - [anon_sym_if] = ACTIONS(1321), - [anon_sym_switch] = ACTIONS(1321), - [anon_sym_case] = ACTIONS(1321), - [anon_sym_default] = ACTIONS(1321), - [anon_sym_while] = ACTIONS(1321), - [anon_sym_do] = ACTIONS(1321), - [anon_sym_for] = ACTIONS(1321), - [anon_sym_return] = ACTIONS(1321), - [anon_sym_break] = ACTIONS(1321), - [anon_sym_continue] = ACTIONS(1321), - [anon_sym_goto] = ACTIONS(1321), - [anon_sym_DASH_DASH] = ACTIONS(1323), - [anon_sym_PLUS_PLUS] = ACTIONS(1323), - [anon_sym_sizeof] = ACTIONS(1321), - [anon_sym___alignof__] = ACTIONS(1321), - [anon_sym___alignof] = ACTIONS(1321), - [anon_sym__alignof] = ACTIONS(1321), - [anon_sym_alignof] = ACTIONS(1321), - [anon_sym__Alignof] = ACTIONS(1321), - [anon_sym_offsetof] = ACTIONS(1321), - [anon_sym__Generic] = ACTIONS(1321), - [anon_sym_asm] = ACTIONS(1321), - [anon_sym___asm__] = ACTIONS(1321), - [sym_number_literal] = ACTIONS(1323), - [anon_sym_L_SQUOTE] = ACTIONS(1323), - [anon_sym_u_SQUOTE] = ACTIONS(1323), - [anon_sym_U_SQUOTE] = ACTIONS(1323), - [anon_sym_u8_SQUOTE] = ACTIONS(1323), - [anon_sym_SQUOTE] = ACTIONS(1323), - [anon_sym_L_DQUOTE] = ACTIONS(1323), - [anon_sym_u_DQUOTE] = ACTIONS(1323), - [anon_sym_U_DQUOTE] = ACTIONS(1323), - [anon_sym_u8_DQUOTE] = ACTIONS(1323), - [anon_sym_DQUOTE] = ACTIONS(1323), - [sym_true] = ACTIONS(1321), - [sym_false] = ACTIONS(1321), - [anon_sym_NULL] = ACTIONS(1321), - [anon_sym_nullptr] = ACTIONS(1321), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [371] = { - [ts_builtin_sym_end] = ACTIONS(1347), - [sym_identifier] = ACTIONS(1345), - [aux_sym_preproc_include_token1] = ACTIONS(1345), - [aux_sym_preproc_def_token1] = ACTIONS(1345), - [aux_sym_preproc_if_token1] = ACTIONS(1345), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1345), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1345), - [sym_preproc_directive] = ACTIONS(1345), - [anon_sym_LPAREN2] = ACTIONS(1347), - [anon_sym_BANG] = ACTIONS(1347), - [anon_sym_TILDE] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_PLUS] = ACTIONS(1345), - [anon_sym_STAR] = ACTIONS(1347), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym___extension__] = ACTIONS(1345), - [anon_sym_typedef] = ACTIONS(1345), - [anon_sym_extern] = ACTIONS(1345), - [anon_sym___attribute__] = ACTIONS(1345), - [anon_sym___scanf] = ACTIONS(1345), - [anon_sym___printf] = ACTIONS(1345), - [anon_sym___read_mostly] = ACTIONS(1345), - [anon_sym___must_hold] = ACTIONS(1345), - [anon_sym___ro_after_init] = ACTIONS(1345), - [anon_sym___noreturn] = ACTIONS(1345), - [anon_sym___cold] = ACTIONS(1345), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1347), - [anon_sym___declspec] = ACTIONS(1345), - [anon_sym___init] = ACTIONS(1345), - [anon_sym___exit] = ACTIONS(1345), - [anon_sym___cdecl] = ACTIONS(1345), - [anon_sym___clrcall] = ACTIONS(1345), - [anon_sym___stdcall] = ACTIONS(1345), - [anon_sym___fastcall] = ACTIONS(1345), - [anon_sym___thiscall] = ACTIONS(1345), - [anon_sym___vectorcall] = ACTIONS(1345), - [anon_sym_LBRACE] = ACTIONS(1347), - [anon_sym_signed] = ACTIONS(1345), - [anon_sym_unsigned] = ACTIONS(1345), - [anon_sym_long] = ACTIONS(1345), - [anon_sym_short] = ACTIONS(1345), - [anon_sym_static] = ACTIONS(1345), - [anon_sym_auto] = ACTIONS(1345), - [anon_sym_register] = ACTIONS(1345), - [anon_sym_inline] = ACTIONS(1345), - [anon_sym___inline] = ACTIONS(1345), - [anon_sym___inline__] = ACTIONS(1345), - [anon_sym___forceinline] = ACTIONS(1345), - [anon_sym_thread_local] = ACTIONS(1345), - [anon_sym___thread] = ACTIONS(1345), - [anon_sym_const] = ACTIONS(1345), - [anon_sym_constexpr] = ACTIONS(1345), - [anon_sym_volatile] = ACTIONS(1345), - [anon_sym_restrict] = ACTIONS(1345), - [anon_sym___restrict__] = ACTIONS(1345), - [anon_sym__Atomic] = ACTIONS(1345), - [anon_sym__Noreturn] = ACTIONS(1345), - [anon_sym_noreturn] = ACTIONS(1345), - [anon_sym_alignas] = ACTIONS(1345), - [anon_sym__Alignas] = ACTIONS(1345), - [sym_primitive_type] = ACTIONS(1345), - [anon_sym_enum] = ACTIONS(1345), - [anon_sym_struct] = ACTIONS(1345), - [anon_sym_union] = ACTIONS(1345), - [anon_sym_if] = ACTIONS(1345), - [anon_sym_switch] = ACTIONS(1345), - [anon_sym_case] = ACTIONS(1345), - [anon_sym_default] = ACTIONS(1345), - [anon_sym_while] = ACTIONS(1345), - [anon_sym_do] = ACTIONS(1345), - [anon_sym_for] = ACTIONS(1345), - [anon_sym_return] = ACTIONS(1345), - [anon_sym_break] = ACTIONS(1345), - [anon_sym_continue] = ACTIONS(1345), - [anon_sym_goto] = ACTIONS(1345), - [anon_sym_DASH_DASH] = ACTIONS(1347), - [anon_sym_PLUS_PLUS] = ACTIONS(1347), - [anon_sym_sizeof] = ACTIONS(1345), - [anon_sym___alignof__] = ACTIONS(1345), - [anon_sym___alignof] = ACTIONS(1345), - [anon_sym__alignof] = ACTIONS(1345), - [anon_sym_alignof] = ACTIONS(1345), - [anon_sym__Alignof] = ACTIONS(1345), - [anon_sym_offsetof] = ACTIONS(1345), - [anon_sym__Generic] = ACTIONS(1345), - [anon_sym_asm] = ACTIONS(1345), - [anon_sym___asm__] = ACTIONS(1345), - [sym_number_literal] = ACTIONS(1347), - [anon_sym_L_SQUOTE] = ACTIONS(1347), - [anon_sym_u_SQUOTE] = ACTIONS(1347), - [anon_sym_U_SQUOTE] = ACTIONS(1347), - [anon_sym_u8_SQUOTE] = ACTIONS(1347), - [anon_sym_SQUOTE] = ACTIONS(1347), - [anon_sym_L_DQUOTE] = ACTIONS(1347), - [anon_sym_u_DQUOTE] = ACTIONS(1347), - [anon_sym_U_DQUOTE] = ACTIONS(1347), - [anon_sym_u8_DQUOTE] = ACTIONS(1347), - [anon_sym_DQUOTE] = ACTIONS(1347), - [sym_true] = ACTIONS(1345), - [sym_false] = ACTIONS(1345), - [anon_sym_NULL] = ACTIONS(1345), - [anon_sym_nullptr] = ACTIONS(1345), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [372] = { - [sym_expression] = STATE(771), - [sym__string] = STATE(758), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(762), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(762), - [sym_call_expression] = STATE(762), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(762), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(762), - [sym_initializer_list] = STATE(760), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [sym_identifier] = ACTIONS(1429), - [anon_sym_COMMA] = ACTIONS(1431), - [anon_sym_RPAREN] = ACTIONS(1431), - [anon_sym_LPAREN2] = ACTIONS(1431), - [anon_sym_BANG] = ACTIONS(1433), - [anon_sym_TILDE] = ACTIONS(1435), - [anon_sym_DASH] = ACTIONS(1437), - [anon_sym_PLUS] = ACTIONS(1437), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1437), - [anon_sym_PIPE_PIPE] = ACTIONS(1431), - [anon_sym_AMP_AMP] = ACTIONS(1431), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_CARET] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(1437), - [anon_sym_EQ_EQ] = ACTIONS(1431), - [anon_sym_BANG_EQ] = ACTIONS(1431), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_GT_EQ] = ACTIONS(1431), - [anon_sym_LT_EQ] = ACTIONS(1431), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_LT_LT] = ACTIONS(1437), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_SEMI] = ACTIONS(1431), - [anon_sym___attribute__] = ACTIONS(1437), - [anon_sym___scanf] = ACTIONS(1437), - [anon_sym___printf] = ACTIONS(1437), - [anon_sym___read_mostly] = ACTIONS(1437), - [anon_sym___must_hold] = ACTIONS(1437), - [anon_sym___ro_after_init] = ACTIONS(1437), - [anon_sym___noreturn] = ACTIONS(1437), - [anon_sym___cold] = ACTIONS(1437), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_RBRACE] = ACTIONS(1431), - [anon_sym_LBRACK] = ACTIONS(1431), - [anon_sym_EQ] = ACTIONS(1437), - [anon_sym_COLON] = ACTIONS(1431), - [anon_sym_QMARK] = ACTIONS(1431), - [anon_sym_STAR_EQ] = ACTIONS(1431), - [anon_sym_SLASH_EQ] = ACTIONS(1431), - [anon_sym_PERCENT_EQ] = ACTIONS(1431), - [anon_sym_PLUS_EQ] = ACTIONS(1431), - [anon_sym_DASH_EQ] = ACTIONS(1431), - [anon_sym_LT_LT_EQ] = ACTIONS(1431), - [anon_sym_GT_GT_EQ] = ACTIONS(1431), - [anon_sym_AMP_EQ] = ACTIONS(1431), - [anon_sym_CARET_EQ] = ACTIONS(1431), - [anon_sym_PIPE_EQ] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1431), - [anon_sym_PLUS_PLUS] = ACTIONS(1431), - [anon_sym_sizeof] = ACTIONS(1441), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(1437), - [anon_sym_DASH_GT] = ACTIONS(1431), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [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), }, [373] = { - [ts_builtin_sym_end] = ACTIONS(1343), - [sym_identifier] = ACTIONS(1341), - [aux_sym_preproc_include_token1] = ACTIONS(1341), - [aux_sym_preproc_def_token1] = ACTIONS(1341), - [aux_sym_preproc_if_token1] = ACTIONS(1341), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1341), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1341), - [sym_preproc_directive] = ACTIONS(1341), - [anon_sym_LPAREN2] = ACTIONS(1343), - [anon_sym_BANG] = ACTIONS(1343), - [anon_sym_TILDE] = ACTIONS(1343), - [anon_sym_DASH] = ACTIONS(1341), - [anon_sym_PLUS] = ACTIONS(1341), - [anon_sym_STAR] = ACTIONS(1343), - [anon_sym_AMP] = ACTIONS(1343), - [anon_sym___extension__] = ACTIONS(1341), - [anon_sym_typedef] = ACTIONS(1341), - [anon_sym_extern] = ACTIONS(1341), - [anon_sym___attribute__] = ACTIONS(1341), - [anon_sym___scanf] = ACTIONS(1341), - [anon_sym___printf] = ACTIONS(1341), - [anon_sym___read_mostly] = ACTIONS(1341), - [anon_sym___must_hold] = ACTIONS(1341), - [anon_sym___ro_after_init] = ACTIONS(1341), - [anon_sym___noreturn] = ACTIONS(1341), - [anon_sym___cold] = ACTIONS(1341), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1343), - [anon_sym___declspec] = ACTIONS(1341), - [anon_sym___init] = ACTIONS(1341), - [anon_sym___exit] = ACTIONS(1341), - [anon_sym___cdecl] = ACTIONS(1341), - [anon_sym___clrcall] = ACTIONS(1341), - [anon_sym___stdcall] = ACTIONS(1341), - [anon_sym___fastcall] = ACTIONS(1341), - [anon_sym___thiscall] = ACTIONS(1341), - [anon_sym___vectorcall] = ACTIONS(1341), - [anon_sym_LBRACE] = ACTIONS(1343), - [anon_sym_signed] = ACTIONS(1341), - [anon_sym_unsigned] = ACTIONS(1341), - [anon_sym_long] = ACTIONS(1341), - [anon_sym_short] = ACTIONS(1341), - [anon_sym_static] = ACTIONS(1341), - [anon_sym_auto] = ACTIONS(1341), - [anon_sym_register] = ACTIONS(1341), - [anon_sym_inline] = ACTIONS(1341), - [anon_sym___inline] = ACTIONS(1341), - [anon_sym___inline__] = ACTIONS(1341), - [anon_sym___forceinline] = ACTIONS(1341), - [anon_sym_thread_local] = ACTIONS(1341), - [anon_sym___thread] = ACTIONS(1341), - [anon_sym_const] = ACTIONS(1341), - [anon_sym_constexpr] = ACTIONS(1341), - [anon_sym_volatile] = ACTIONS(1341), - [anon_sym_restrict] = ACTIONS(1341), - [anon_sym___restrict__] = ACTIONS(1341), - [anon_sym__Atomic] = ACTIONS(1341), - [anon_sym__Noreturn] = ACTIONS(1341), - [anon_sym_noreturn] = ACTIONS(1341), - [anon_sym_alignas] = ACTIONS(1341), - [anon_sym__Alignas] = ACTIONS(1341), - [sym_primitive_type] = ACTIONS(1341), - [anon_sym_enum] = ACTIONS(1341), - [anon_sym_struct] = ACTIONS(1341), - [anon_sym_union] = ACTIONS(1341), - [anon_sym_if] = ACTIONS(1341), - [anon_sym_switch] = ACTIONS(1341), - [anon_sym_case] = ACTIONS(1341), - [anon_sym_default] = ACTIONS(1341), - [anon_sym_while] = ACTIONS(1341), - [anon_sym_do] = ACTIONS(1341), - [anon_sym_for] = ACTIONS(1341), - [anon_sym_return] = ACTIONS(1341), - [anon_sym_break] = ACTIONS(1341), - [anon_sym_continue] = ACTIONS(1341), - [anon_sym_goto] = ACTIONS(1341), - [anon_sym_DASH_DASH] = ACTIONS(1343), - [anon_sym_PLUS_PLUS] = ACTIONS(1343), - [anon_sym_sizeof] = ACTIONS(1341), - [anon_sym___alignof__] = ACTIONS(1341), - [anon_sym___alignof] = ACTIONS(1341), - [anon_sym__alignof] = ACTIONS(1341), - [anon_sym_alignof] = ACTIONS(1341), - [anon_sym__Alignof] = ACTIONS(1341), - [anon_sym_offsetof] = ACTIONS(1341), - [anon_sym__Generic] = ACTIONS(1341), - [anon_sym_asm] = ACTIONS(1341), - [anon_sym___asm__] = ACTIONS(1341), - [sym_number_literal] = ACTIONS(1343), - [anon_sym_L_SQUOTE] = ACTIONS(1343), - [anon_sym_u_SQUOTE] = ACTIONS(1343), - [anon_sym_U_SQUOTE] = ACTIONS(1343), - [anon_sym_u8_SQUOTE] = ACTIONS(1343), - [anon_sym_SQUOTE] = ACTIONS(1343), - [anon_sym_L_DQUOTE] = ACTIONS(1343), - [anon_sym_u_DQUOTE] = ACTIONS(1343), - [anon_sym_U_DQUOTE] = ACTIONS(1343), - [anon_sym_u8_DQUOTE] = ACTIONS(1343), - [anon_sym_DQUOTE] = ACTIONS(1343), - [sym_true] = ACTIONS(1341), - [sym_false] = ACTIONS(1341), - [anon_sym_NULL] = ACTIONS(1341), - [anon_sym_nullptr] = ACTIONS(1341), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [374] = { - [ts_builtin_sym_end] = ACTIONS(1409), - [sym_identifier] = ACTIONS(1407), - [aux_sym_preproc_include_token1] = ACTIONS(1407), - [aux_sym_preproc_def_token1] = ACTIONS(1407), - [aux_sym_preproc_if_token1] = ACTIONS(1407), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1407), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1407), - [sym_preproc_directive] = ACTIONS(1407), - [anon_sym_LPAREN2] = ACTIONS(1409), - [anon_sym_BANG] = ACTIONS(1409), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1407), - [anon_sym_PLUS] = ACTIONS(1407), - [anon_sym_STAR] = ACTIONS(1409), - [anon_sym_AMP] = ACTIONS(1409), - [anon_sym___extension__] = ACTIONS(1407), - [anon_sym_typedef] = ACTIONS(1407), - [anon_sym_extern] = ACTIONS(1407), - [anon_sym___attribute__] = ACTIONS(1407), - [anon_sym___scanf] = ACTIONS(1407), - [anon_sym___printf] = ACTIONS(1407), - [anon_sym___read_mostly] = ACTIONS(1407), - [anon_sym___must_hold] = ACTIONS(1407), - [anon_sym___ro_after_init] = ACTIONS(1407), - [anon_sym___noreturn] = ACTIONS(1407), - [anon_sym___cold] = ACTIONS(1407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1409), - [anon_sym___declspec] = ACTIONS(1407), - [anon_sym___init] = ACTIONS(1407), - [anon_sym___exit] = ACTIONS(1407), - [anon_sym___cdecl] = ACTIONS(1407), - [anon_sym___clrcall] = ACTIONS(1407), - [anon_sym___stdcall] = ACTIONS(1407), - [anon_sym___fastcall] = ACTIONS(1407), - [anon_sym___thiscall] = ACTIONS(1407), - [anon_sym___vectorcall] = ACTIONS(1407), - [anon_sym_LBRACE] = ACTIONS(1409), - [anon_sym_signed] = ACTIONS(1407), - [anon_sym_unsigned] = ACTIONS(1407), - [anon_sym_long] = ACTIONS(1407), - [anon_sym_short] = ACTIONS(1407), - [anon_sym_static] = ACTIONS(1407), - [anon_sym_auto] = ACTIONS(1407), - [anon_sym_register] = ACTIONS(1407), - [anon_sym_inline] = ACTIONS(1407), - [anon_sym___inline] = ACTIONS(1407), - [anon_sym___inline__] = ACTIONS(1407), - [anon_sym___forceinline] = ACTIONS(1407), - [anon_sym_thread_local] = ACTIONS(1407), - [anon_sym___thread] = ACTIONS(1407), - [anon_sym_const] = ACTIONS(1407), - [anon_sym_constexpr] = ACTIONS(1407), - [anon_sym_volatile] = ACTIONS(1407), - [anon_sym_restrict] = ACTIONS(1407), - [anon_sym___restrict__] = ACTIONS(1407), - [anon_sym__Atomic] = ACTIONS(1407), - [anon_sym__Noreturn] = ACTIONS(1407), - [anon_sym_noreturn] = ACTIONS(1407), - [anon_sym_alignas] = ACTIONS(1407), - [anon_sym__Alignas] = ACTIONS(1407), - [sym_primitive_type] = ACTIONS(1407), - [anon_sym_enum] = ACTIONS(1407), - [anon_sym_struct] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1407), - [anon_sym_if] = ACTIONS(1407), - [anon_sym_switch] = ACTIONS(1407), - [anon_sym_case] = ACTIONS(1407), - [anon_sym_default] = ACTIONS(1407), - [anon_sym_while] = ACTIONS(1407), - [anon_sym_do] = ACTIONS(1407), - [anon_sym_for] = ACTIONS(1407), - [anon_sym_return] = ACTIONS(1407), - [anon_sym_break] = ACTIONS(1407), - [anon_sym_continue] = ACTIONS(1407), - [anon_sym_goto] = ACTIONS(1407), - [anon_sym_DASH_DASH] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1409), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym___alignof__] = ACTIONS(1407), - [anon_sym___alignof] = ACTIONS(1407), - [anon_sym__alignof] = ACTIONS(1407), - [anon_sym_alignof] = ACTIONS(1407), - [anon_sym__Alignof] = ACTIONS(1407), - [anon_sym_offsetof] = ACTIONS(1407), - [anon_sym__Generic] = ACTIONS(1407), - [anon_sym_asm] = ACTIONS(1407), - [anon_sym___asm__] = ACTIONS(1407), - [sym_number_literal] = ACTIONS(1409), - [anon_sym_L_SQUOTE] = ACTIONS(1409), - [anon_sym_u_SQUOTE] = ACTIONS(1409), - [anon_sym_U_SQUOTE] = ACTIONS(1409), - [anon_sym_u8_SQUOTE] = ACTIONS(1409), - [anon_sym_SQUOTE] = ACTIONS(1409), - [anon_sym_L_DQUOTE] = ACTIONS(1409), - [anon_sym_u_DQUOTE] = ACTIONS(1409), - [anon_sym_U_DQUOTE] = ACTIONS(1409), - [anon_sym_u8_DQUOTE] = ACTIONS(1409), - [anon_sym_DQUOTE] = ACTIONS(1409), - [sym_true] = ACTIONS(1407), - [sym_false] = ACTIONS(1407), - [anon_sym_NULL] = ACTIONS(1407), - [anon_sym_nullptr] = ACTIONS(1407), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [375] = { - [ts_builtin_sym_end] = ACTIONS(1327), - [sym_identifier] = ACTIONS(1325), - [aux_sym_preproc_include_token1] = ACTIONS(1325), - [aux_sym_preproc_def_token1] = ACTIONS(1325), - [aux_sym_preproc_if_token1] = ACTIONS(1325), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1325), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1325), - [sym_preproc_directive] = ACTIONS(1325), - [anon_sym_LPAREN2] = ACTIONS(1327), - [anon_sym_BANG] = ACTIONS(1327), - [anon_sym_TILDE] = ACTIONS(1327), - [anon_sym_DASH] = ACTIONS(1325), - [anon_sym_PLUS] = ACTIONS(1325), - [anon_sym_STAR] = ACTIONS(1327), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym___extension__] = ACTIONS(1325), - [anon_sym_typedef] = ACTIONS(1325), - [anon_sym_extern] = ACTIONS(1325), - [anon_sym___attribute__] = ACTIONS(1325), - [anon_sym___scanf] = ACTIONS(1325), - [anon_sym___printf] = ACTIONS(1325), - [anon_sym___read_mostly] = ACTIONS(1325), - [anon_sym___must_hold] = ACTIONS(1325), - [anon_sym___ro_after_init] = ACTIONS(1325), - [anon_sym___noreturn] = ACTIONS(1325), - [anon_sym___cold] = ACTIONS(1325), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1327), - [anon_sym___declspec] = ACTIONS(1325), - [anon_sym___init] = ACTIONS(1325), - [anon_sym___exit] = ACTIONS(1325), - [anon_sym___cdecl] = ACTIONS(1325), - [anon_sym___clrcall] = ACTIONS(1325), - [anon_sym___stdcall] = ACTIONS(1325), - [anon_sym___fastcall] = ACTIONS(1325), - [anon_sym___thiscall] = ACTIONS(1325), - [anon_sym___vectorcall] = ACTIONS(1325), - [anon_sym_LBRACE] = ACTIONS(1327), - [anon_sym_signed] = ACTIONS(1325), - [anon_sym_unsigned] = ACTIONS(1325), - [anon_sym_long] = ACTIONS(1325), - [anon_sym_short] = ACTIONS(1325), - [anon_sym_static] = ACTIONS(1325), - [anon_sym_auto] = ACTIONS(1325), - [anon_sym_register] = ACTIONS(1325), - [anon_sym_inline] = ACTIONS(1325), - [anon_sym___inline] = ACTIONS(1325), - [anon_sym___inline__] = ACTIONS(1325), - [anon_sym___forceinline] = ACTIONS(1325), - [anon_sym_thread_local] = ACTIONS(1325), - [anon_sym___thread] = ACTIONS(1325), - [anon_sym_const] = ACTIONS(1325), - [anon_sym_constexpr] = ACTIONS(1325), - [anon_sym_volatile] = ACTIONS(1325), - [anon_sym_restrict] = ACTIONS(1325), - [anon_sym___restrict__] = ACTIONS(1325), - [anon_sym__Atomic] = ACTIONS(1325), - [anon_sym__Noreturn] = ACTIONS(1325), - [anon_sym_noreturn] = ACTIONS(1325), - [anon_sym_alignas] = ACTIONS(1325), - [anon_sym__Alignas] = ACTIONS(1325), - [sym_primitive_type] = ACTIONS(1325), - [anon_sym_enum] = ACTIONS(1325), - [anon_sym_struct] = ACTIONS(1325), - [anon_sym_union] = ACTIONS(1325), - [anon_sym_if] = ACTIONS(1325), - [anon_sym_switch] = ACTIONS(1325), - [anon_sym_case] = ACTIONS(1325), - [anon_sym_default] = ACTIONS(1325), - [anon_sym_while] = ACTIONS(1325), - [anon_sym_do] = ACTIONS(1325), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_return] = ACTIONS(1325), - [anon_sym_break] = ACTIONS(1325), - [anon_sym_continue] = ACTIONS(1325), - [anon_sym_goto] = ACTIONS(1325), - [anon_sym_DASH_DASH] = ACTIONS(1327), - [anon_sym_PLUS_PLUS] = ACTIONS(1327), - [anon_sym_sizeof] = ACTIONS(1325), - [anon_sym___alignof__] = ACTIONS(1325), - [anon_sym___alignof] = ACTIONS(1325), - [anon_sym__alignof] = ACTIONS(1325), - [anon_sym_alignof] = ACTIONS(1325), - [anon_sym__Alignof] = ACTIONS(1325), - [anon_sym_offsetof] = ACTIONS(1325), - [anon_sym__Generic] = ACTIONS(1325), - [anon_sym_asm] = ACTIONS(1325), - [anon_sym___asm__] = ACTIONS(1325), - [sym_number_literal] = ACTIONS(1327), - [anon_sym_L_SQUOTE] = ACTIONS(1327), - [anon_sym_u_SQUOTE] = ACTIONS(1327), - [anon_sym_U_SQUOTE] = ACTIONS(1327), - [anon_sym_u8_SQUOTE] = ACTIONS(1327), - [anon_sym_SQUOTE] = ACTIONS(1327), - [anon_sym_L_DQUOTE] = ACTIONS(1327), - [anon_sym_u_DQUOTE] = ACTIONS(1327), - [anon_sym_U_DQUOTE] = ACTIONS(1327), - [anon_sym_u8_DQUOTE] = ACTIONS(1327), - [anon_sym_DQUOTE] = ACTIONS(1327), - [sym_true] = ACTIONS(1325), - [sym_false] = ACTIONS(1325), - [anon_sym_NULL] = ACTIONS(1325), - [anon_sym_nullptr] = ACTIONS(1325), - [sym_comment] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1364), + [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___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), + [sym_comment] = ACTIONS(5), }, [376] = { - [ts_builtin_sym_end] = ACTIONS(1335), - [sym_identifier] = ACTIONS(1333), - [aux_sym_preproc_include_token1] = ACTIONS(1333), - [aux_sym_preproc_def_token1] = ACTIONS(1333), - [aux_sym_preproc_if_token1] = ACTIONS(1333), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1333), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1333), - [sym_preproc_directive] = ACTIONS(1333), - [anon_sym_LPAREN2] = ACTIONS(1335), - [anon_sym_BANG] = ACTIONS(1335), - [anon_sym_TILDE] = ACTIONS(1335), - [anon_sym_DASH] = ACTIONS(1333), - [anon_sym_PLUS] = ACTIONS(1333), - [anon_sym_STAR] = ACTIONS(1335), - [anon_sym_AMP] = ACTIONS(1335), - [anon_sym___extension__] = ACTIONS(1333), - [anon_sym_typedef] = ACTIONS(1333), - [anon_sym_extern] = ACTIONS(1333), - [anon_sym___attribute__] = ACTIONS(1333), - [anon_sym___scanf] = ACTIONS(1333), - [anon_sym___printf] = ACTIONS(1333), - [anon_sym___read_mostly] = ACTIONS(1333), - [anon_sym___must_hold] = ACTIONS(1333), - [anon_sym___ro_after_init] = ACTIONS(1333), - [anon_sym___noreturn] = ACTIONS(1333), - [anon_sym___cold] = ACTIONS(1333), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1335), - [anon_sym___declspec] = ACTIONS(1333), - [anon_sym___init] = ACTIONS(1333), - [anon_sym___exit] = ACTIONS(1333), - [anon_sym___cdecl] = ACTIONS(1333), - [anon_sym___clrcall] = ACTIONS(1333), - [anon_sym___stdcall] = ACTIONS(1333), - [anon_sym___fastcall] = ACTIONS(1333), - [anon_sym___thiscall] = ACTIONS(1333), - [anon_sym___vectorcall] = ACTIONS(1333), - [anon_sym_LBRACE] = ACTIONS(1335), - [anon_sym_signed] = ACTIONS(1333), - [anon_sym_unsigned] = ACTIONS(1333), - [anon_sym_long] = ACTIONS(1333), - [anon_sym_short] = ACTIONS(1333), - [anon_sym_static] = ACTIONS(1333), - [anon_sym_auto] = ACTIONS(1333), - [anon_sym_register] = ACTIONS(1333), - [anon_sym_inline] = ACTIONS(1333), - [anon_sym___inline] = ACTIONS(1333), - [anon_sym___inline__] = ACTIONS(1333), - [anon_sym___forceinline] = ACTIONS(1333), - [anon_sym_thread_local] = ACTIONS(1333), - [anon_sym___thread] = ACTIONS(1333), - [anon_sym_const] = ACTIONS(1333), - [anon_sym_constexpr] = ACTIONS(1333), - [anon_sym_volatile] = ACTIONS(1333), - [anon_sym_restrict] = ACTIONS(1333), - [anon_sym___restrict__] = ACTIONS(1333), - [anon_sym__Atomic] = ACTIONS(1333), - [anon_sym__Noreturn] = ACTIONS(1333), - [anon_sym_noreturn] = ACTIONS(1333), - [anon_sym_alignas] = ACTIONS(1333), - [anon_sym__Alignas] = ACTIONS(1333), - [sym_primitive_type] = ACTIONS(1333), - [anon_sym_enum] = ACTIONS(1333), - [anon_sym_struct] = ACTIONS(1333), - [anon_sym_union] = ACTIONS(1333), - [anon_sym_if] = ACTIONS(1333), - [anon_sym_switch] = ACTIONS(1333), - [anon_sym_case] = ACTIONS(1333), - [anon_sym_default] = ACTIONS(1333), - [anon_sym_while] = ACTIONS(1333), - [anon_sym_do] = ACTIONS(1333), - [anon_sym_for] = ACTIONS(1333), - [anon_sym_return] = ACTIONS(1333), - [anon_sym_break] = ACTIONS(1333), - [anon_sym_continue] = ACTIONS(1333), - [anon_sym_goto] = ACTIONS(1333), - [anon_sym_DASH_DASH] = ACTIONS(1335), - [anon_sym_PLUS_PLUS] = ACTIONS(1335), - [anon_sym_sizeof] = ACTIONS(1333), - [anon_sym___alignof__] = ACTIONS(1333), - [anon_sym___alignof] = ACTIONS(1333), - [anon_sym__alignof] = ACTIONS(1333), - [anon_sym_alignof] = ACTIONS(1333), - [anon_sym__Alignof] = ACTIONS(1333), - [anon_sym_offsetof] = ACTIONS(1333), - [anon_sym__Generic] = ACTIONS(1333), - [anon_sym_asm] = ACTIONS(1333), - [anon_sym___asm__] = ACTIONS(1333), - [sym_number_literal] = ACTIONS(1335), - [anon_sym_L_SQUOTE] = ACTIONS(1335), - [anon_sym_u_SQUOTE] = ACTIONS(1335), - [anon_sym_U_SQUOTE] = ACTIONS(1335), - [anon_sym_u8_SQUOTE] = ACTIONS(1335), - [anon_sym_SQUOTE] = ACTIONS(1335), - [anon_sym_L_DQUOTE] = ACTIONS(1335), - [anon_sym_u_DQUOTE] = ACTIONS(1335), - [anon_sym_U_DQUOTE] = ACTIONS(1335), - [anon_sym_u8_DQUOTE] = ACTIONS(1335), - [anon_sym_DQUOTE] = ACTIONS(1335), - [sym_true] = ACTIONS(1333), - [sym_false] = ACTIONS(1333), - [anon_sym_NULL] = ACTIONS(1333), - [anon_sym_nullptr] = ACTIONS(1333), - [sym_comment] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1376), + [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___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), + [sym_comment] = ACTIONS(5), }, [377] = { - [ts_builtin_sym_end] = ACTIONS(1409), - [sym_identifier] = ACTIONS(1407), - [aux_sym_preproc_include_token1] = ACTIONS(1407), - [aux_sym_preproc_def_token1] = ACTIONS(1407), - [aux_sym_preproc_if_token1] = ACTIONS(1407), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1407), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1407), - [sym_preproc_directive] = ACTIONS(1407), - [anon_sym_LPAREN2] = ACTIONS(1409), - [anon_sym_BANG] = ACTIONS(1409), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1407), - [anon_sym_PLUS] = ACTIONS(1407), - [anon_sym_STAR] = ACTIONS(1409), - [anon_sym_AMP] = ACTIONS(1409), - [anon_sym___extension__] = ACTIONS(1407), - [anon_sym_typedef] = ACTIONS(1407), - [anon_sym_extern] = ACTIONS(1407), - [anon_sym___attribute__] = ACTIONS(1407), - [anon_sym___scanf] = ACTIONS(1407), - [anon_sym___printf] = ACTIONS(1407), - [anon_sym___read_mostly] = ACTIONS(1407), - [anon_sym___must_hold] = ACTIONS(1407), - [anon_sym___ro_after_init] = ACTIONS(1407), - [anon_sym___noreturn] = ACTIONS(1407), - [anon_sym___cold] = ACTIONS(1407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1409), - [anon_sym___declspec] = ACTIONS(1407), - [anon_sym___init] = ACTIONS(1407), - [anon_sym___exit] = ACTIONS(1407), - [anon_sym___cdecl] = ACTIONS(1407), - [anon_sym___clrcall] = ACTIONS(1407), - [anon_sym___stdcall] = ACTIONS(1407), - [anon_sym___fastcall] = ACTIONS(1407), - [anon_sym___thiscall] = ACTIONS(1407), - [anon_sym___vectorcall] = ACTIONS(1407), - [anon_sym_LBRACE] = ACTIONS(1409), - [anon_sym_signed] = ACTIONS(1407), - [anon_sym_unsigned] = ACTIONS(1407), - [anon_sym_long] = ACTIONS(1407), - [anon_sym_short] = ACTIONS(1407), - [anon_sym_static] = ACTIONS(1407), - [anon_sym_auto] = ACTIONS(1407), - [anon_sym_register] = ACTIONS(1407), - [anon_sym_inline] = ACTIONS(1407), - [anon_sym___inline] = ACTIONS(1407), - [anon_sym___inline__] = ACTIONS(1407), - [anon_sym___forceinline] = ACTIONS(1407), - [anon_sym_thread_local] = ACTIONS(1407), - [anon_sym___thread] = ACTIONS(1407), - [anon_sym_const] = ACTIONS(1407), - [anon_sym_constexpr] = ACTIONS(1407), - [anon_sym_volatile] = ACTIONS(1407), - [anon_sym_restrict] = ACTIONS(1407), - [anon_sym___restrict__] = ACTIONS(1407), - [anon_sym__Atomic] = ACTIONS(1407), - [anon_sym__Noreturn] = ACTIONS(1407), - [anon_sym_noreturn] = ACTIONS(1407), - [anon_sym_alignas] = ACTIONS(1407), - [anon_sym__Alignas] = ACTIONS(1407), - [sym_primitive_type] = ACTIONS(1407), - [anon_sym_enum] = ACTIONS(1407), - [anon_sym_struct] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1407), - [anon_sym_if] = ACTIONS(1407), - [anon_sym_switch] = ACTIONS(1407), - [anon_sym_case] = ACTIONS(1407), - [anon_sym_default] = ACTIONS(1407), - [anon_sym_while] = ACTIONS(1407), - [anon_sym_do] = ACTIONS(1407), - [anon_sym_for] = ACTIONS(1407), - [anon_sym_return] = ACTIONS(1407), - [anon_sym_break] = ACTIONS(1407), - [anon_sym_continue] = ACTIONS(1407), - [anon_sym_goto] = ACTIONS(1407), - [anon_sym_DASH_DASH] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1409), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym___alignof__] = ACTIONS(1407), - [anon_sym___alignof] = ACTIONS(1407), - [anon_sym__alignof] = ACTIONS(1407), - [anon_sym_alignof] = ACTIONS(1407), - [anon_sym__Alignof] = ACTIONS(1407), - [anon_sym_offsetof] = ACTIONS(1407), - [anon_sym__Generic] = ACTIONS(1407), - [anon_sym_asm] = ACTIONS(1407), - [anon_sym___asm__] = ACTIONS(1407), - [sym_number_literal] = ACTIONS(1409), - [anon_sym_L_SQUOTE] = ACTIONS(1409), - [anon_sym_u_SQUOTE] = ACTIONS(1409), - [anon_sym_U_SQUOTE] = ACTIONS(1409), - [anon_sym_u8_SQUOTE] = ACTIONS(1409), - [anon_sym_SQUOTE] = ACTIONS(1409), - [anon_sym_L_DQUOTE] = ACTIONS(1409), - [anon_sym_u_DQUOTE] = ACTIONS(1409), - [anon_sym_U_DQUOTE] = ACTIONS(1409), - [anon_sym_u8_DQUOTE] = ACTIONS(1409), - [anon_sym_DQUOTE] = ACTIONS(1409), - [sym_true] = ACTIONS(1407), - [sym_false] = ACTIONS(1407), - [anon_sym_NULL] = ACTIONS(1407), - [anon_sym_nullptr] = ACTIONS(1407), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [378] = { - [ts_builtin_sym_end] = ACTIONS(1421), - [sym_identifier] = ACTIONS(1419), - [aux_sym_preproc_include_token1] = ACTIONS(1419), - [aux_sym_preproc_def_token1] = ACTIONS(1419), - [aux_sym_preproc_if_token1] = ACTIONS(1419), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1419), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1419), - [sym_preproc_directive] = ACTIONS(1419), - [anon_sym_LPAREN2] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym___extension__] = ACTIONS(1419), - [anon_sym_typedef] = ACTIONS(1419), - [anon_sym_extern] = ACTIONS(1419), - [anon_sym___attribute__] = ACTIONS(1419), - [anon_sym___scanf] = ACTIONS(1419), - [anon_sym___printf] = ACTIONS(1419), - [anon_sym___read_mostly] = ACTIONS(1419), - [anon_sym___must_hold] = ACTIONS(1419), - [anon_sym___ro_after_init] = ACTIONS(1419), - [anon_sym___noreturn] = ACTIONS(1419), - [anon_sym___cold] = ACTIONS(1419), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1421), - [anon_sym___declspec] = ACTIONS(1419), - [anon_sym___init] = ACTIONS(1419), - [anon_sym___exit] = ACTIONS(1419), - [anon_sym___cdecl] = ACTIONS(1419), - [anon_sym___clrcall] = ACTIONS(1419), - [anon_sym___stdcall] = ACTIONS(1419), - [anon_sym___fastcall] = ACTIONS(1419), - [anon_sym___thiscall] = ACTIONS(1419), - [anon_sym___vectorcall] = ACTIONS(1419), - [anon_sym_LBRACE] = ACTIONS(1421), - [anon_sym_signed] = ACTIONS(1419), - [anon_sym_unsigned] = ACTIONS(1419), - [anon_sym_long] = ACTIONS(1419), - [anon_sym_short] = ACTIONS(1419), - [anon_sym_static] = ACTIONS(1419), - [anon_sym_auto] = ACTIONS(1419), - [anon_sym_register] = ACTIONS(1419), - [anon_sym_inline] = ACTIONS(1419), - [anon_sym___inline] = ACTIONS(1419), - [anon_sym___inline__] = ACTIONS(1419), - [anon_sym___forceinline] = ACTIONS(1419), - [anon_sym_thread_local] = ACTIONS(1419), - [anon_sym___thread] = ACTIONS(1419), - [anon_sym_const] = ACTIONS(1419), - [anon_sym_constexpr] = ACTIONS(1419), - [anon_sym_volatile] = ACTIONS(1419), - [anon_sym_restrict] = ACTIONS(1419), - [anon_sym___restrict__] = ACTIONS(1419), - [anon_sym__Atomic] = ACTIONS(1419), - [anon_sym__Noreturn] = ACTIONS(1419), - [anon_sym_noreturn] = ACTIONS(1419), - [anon_sym_alignas] = ACTIONS(1419), - [anon_sym__Alignas] = ACTIONS(1419), - [sym_primitive_type] = ACTIONS(1419), - [anon_sym_enum] = ACTIONS(1419), - [anon_sym_struct] = ACTIONS(1419), - [anon_sym_union] = ACTIONS(1419), - [anon_sym_if] = ACTIONS(1419), - [anon_sym_switch] = ACTIONS(1419), - [anon_sym_case] = ACTIONS(1419), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_while] = ACTIONS(1419), - [anon_sym_do] = ACTIONS(1419), - [anon_sym_for] = ACTIONS(1419), - [anon_sym_return] = ACTIONS(1419), - [anon_sym_break] = ACTIONS(1419), - [anon_sym_continue] = ACTIONS(1419), - [anon_sym_goto] = ACTIONS(1419), - [anon_sym_DASH_DASH] = ACTIONS(1421), - [anon_sym_PLUS_PLUS] = ACTIONS(1421), - [anon_sym_sizeof] = ACTIONS(1419), - [anon_sym___alignof__] = ACTIONS(1419), - [anon_sym___alignof] = ACTIONS(1419), - [anon_sym__alignof] = ACTIONS(1419), - [anon_sym_alignof] = ACTIONS(1419), - [anon_sym__Alignof] = ACTIONS(1419), - [anon_sym_offsetof] = ACTIONS(1419), - [anon_sym__Generic] = ACTIONS(1419), - [anon_sym_asm] = ACTIONS(1419), - [anon_sym___asm__] = ACTIONS(1419), - [sym_number_literal] = ACTIONS(1421), - [anon_sym_L_SQUOTE] = ACTIONS(1421), - [anon_sym_u_SQUOTE] = ACTIONS(1421), - [anon_sym_U_SQUOTE] = ACTIONS(1421), - [anon_sym_u8_SQUOTE] = ACTIONS(1421), - [anon_sym_SQUOTE] = ACTIONS(1421), - [anon_sym_L_DQUOTE] = ACTIONS(1421), - [anon_sym_u_DQUOTE] = ACTIONS(1421), - [anon_sym_U_DQUOTE] = ACTIONS(1421), - [anon_sym_u8_DQUOTE] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1421), - [sym_true] = ACTIONS(1419), - [sym_false] = ACTIONS(1419), - [anon_sym_NULL] = ACTIONS(1419), - [anon_sym_nullptr] = ACTIONS(1419), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [379] = { - [ts_builtin_sym_end] = ACTIONS(1351), - [sym_identifier] = ACTIONS(1349), - [aux_sym_preproc_include_token1] = ACTIONS(1349), - [aux_sym_preproc_def_token1] = ACTIONS(1349), - [aux_sym_preproc_if_token1] = ACTIONS(1349), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1349), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1349), - [sym_preproc_directive] = ACTIONS(1349), - [anon_sym_LPAREN2] = ACTIONS(1351), - [anon_sym_BANG] = ACTIONS(1351), - [anon_sym_TILDE] = ACTIONS(1351), - [anon_sym_DASH] = ACTIONS(1349), - [anon_sym_PLUS] = ACTIONS(1349), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_AMP] = ACTIONS(1351), - [anon_sym___extension__] = ACTIONS(1349), - [anon_sym_typedef] = ACTIONS(1349), - [anon_sym_extern] = ACTIONS(1349), - [anon_sym___attribute__] = ACTIONS(1349), - [anon_sym___scanf] = ACTIONS(1349), - [anon_sym___printf] = ACTIONS(1349), - [anon_sym___read_mostly] = ACTIONS(1349), - [anon_sym___must_hold] = ACTIONS(1349), - [anon_sym___ro_after_init] = ACTIONS(1349), - [anon_sym___noreturn] = ACTIONS(1349), - [anon_sym___cold] = ACTIONS(1349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1351), - [anon_sym___declspec] = ACTIONS(1349), - [anon_sym___init] = ACTIONS(1349), - [anon_sym___exit] = ACTIONS(1349), - [anon_sym___cdecl] = ACTIONS(1349), - [anon_sym___clrcall] = ACTIONS(1349), - [anon_sym___stdcall] = ACTIONS(1349), - [anon_sym___fastcall] = ACTIONS(1349), - [anon_sym___thiscall] = ACTIONS(1349), - [anon_sym___vectorcall] = ACTIONS(1349), - [anon_sym_LBRACE] = ACTIONS(1351), - [anon_sym_signed] = ACTIONS(1349), - [anon_sym_unsigned] = ACTIONS(1349), - [anon_sym_long] = ACTIONS(1349), - [anon_sym_short] = ACTIONS(1349), - [anon_sym_static] = ACTIONS(1349), - [anon_sym_auto] = ACTIONS(1349), - [anon_sym_register] = ACTIONS(1349), - [anon_sym_inline] = ACTIONS(1349), - [anon_sym___inline] = ACTIONS(1349), - [anon_sym___inline__] = ACTIONS(1349), - [anon_sym___forceinline] = ACTIONS(1349), - [anon_sym_thread_local] = ACTIONS(1349), - [anon_sym___thread] = ACTIONS(1349), - [anon_sym_const] = ACTIONS(1349), - [anon_sym_constexpr] = ACTIONS(1349), - [anon_sym_volatile] = ACTIONS(1349), - [anon_sym_restrict] = ACTIONS(1349), - [anon_sym___restrict__] = ACTIONS(1349), - [anon_sym__Atomic] = ACTIONS(1349), - [anon_sym__Noreturn] = ACTIONS(1349), - [anon_sym_noreturn] = ACTIONS(1349), - [anon_sym_alignas] = ACTIONS(1349), - [anon_sym__Alignas] = ACTIONS(1349), - [sym_primitive_type] = ACTIONS(1349), - [anon_sym_enum] = ACTIONS(1349), - [anon_sym_struct] = ACTIONS(1349), - [anon_sym_union] = ACTIONS(1349), - [anon_sym_if] = ACTIONS(1349), - [anon_sym_switch] = ACTIONS(1349), - [anon_sym_case] = ACTIONS(1349), - [anon_sym_default] = ACTIONS(1349), - [anon_sym_while] = ACTIONS(1349), - [anon_sym_do] = ACTIONS(1349), - [anon_sym_for] = ACTIONS(1349), - [anon_sym_return] = ACTIONS(1349), - [anon_sym_break] = ACTIONS(1349), - [anon_sym_continue] = ACTIONS(1349), - [anon_sym_goto] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1351), - [anon_sym_PLUS_PLUS] = ACTIONS(1351), - [anon_sym_sizeof] = ACTIONS(1349), - [anon_sym___alignof__] = ACTIONS(1349), - [anon_sym___alignof] = ACTIONS(1349), - [anon_sym__alignof] = ACTIONS(1349), - [anon_sym_alignof] = ACTIONS(1349), - [anon_sym__Alignof] = ACTIONS(1349), - [anon_sym_offsetof] = ACTIONS(1349), - [anon_sym__Generic] = ACTIONS(1349), - [anon_sym_asm] = ACTIONS(1349), - [anon_sym___asm__] = ACTIONS(1349), - [sym_number_literal] = ACTIONS(1351), - [anon_sym_L_SQUOTE] = ACTIONS(1351), - [anon_sym_u_SQUOTE] = ACTIONS(1351), - [anon_sym_U_SQUOTE] = ACTIONS(1351), - [anon_sym_u8_SQUOTE] = ACTIONS(1351), - [anon_sym_SQUOTE] = ACTIONS(1351), - [anon_sym_L_DQUOTE] = ACTIONS(1351), - [anon_sym_u_DQUOTE] = ACTIONS(1351), - [anon_sym_U_DQUOTE] = ACTIONS(1351), - [anon_sym_u8_DQUOTE] = ACTIONS(1351), - [anon_sym_DQUOTE] = ACTIONS(1351), - [sym_true] = ACTIONS(1349), - [sym_false] = ACTIONS(1349), - [anon_sym_NULL] = ACTIONS(1349), - [anon_sym_nullptr] = ACTIONS(1349), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [380] = { - [ts_builtin_sym_end] = ACTIONS(1327), - [sym_identifier] = ACTIONS(1325), - [aux_sym_preproc_include_token1] = ACTIONS(1325), - [aux_sym_preproc_def_token1] = ACTIONS(1325), - [aux_sym_preproc_if_token1] = ACTIONS(1325), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1325), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1325), - [sym_preproc_directive] = ACTIONS(1325), - [anon_sym_LPAREN2] = ACTIONS(1327), - [anon_sym_BANG] = ACTIONS(1327), - [anon_sym_TILDE] = ACTIONS(1327), - [anon_sym_DASH] = ACTIONS(1325), - [anon_sym_PLUS] = ACTIONS(1325), - [anon_sym_STAR] = ACTIONS(1327), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym___extension__] = ACTIONS(1325), - [anon_sym_typedef] = ACTIONS(1325), - [anon_sym_extern] = ACTIONS(1325), - [anon_sym___attribute__] = ACTIONS(1325), - [anon_sym___scanf] = ACTIONS(1325), - [anon_sym___printf] = ACTIONS(1325), - [anon_sym___read_mostly] = ACTIONS(1325), - [anon_sym___must_hold] = ACTIONS(1325), - [anon_sym___ro_after_init] = ACTIONS(1325), - [anon_sym___noreturn] = ACTIONS(1325), - [anon_sym___cold] = ACTIONS(1325), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1327), - [anon_sym___declspec] = ACTIONS(1325), - [anon_sym___init] = ACTIONS(1325), - [anon_sym___exit] = ACTIONS(1325), - [anon_sym___cdecl] = ACTIONS(1325), - [anon_sym___clrcall] = ACTIONS(1325), - [anon_sym___stdcall] = ACTIONS(1325), - [anon_sym___fastcall] = ACTIONS(1325), - [anon_sym___thiscall] = ACTIONS(1325), - [anon_sym___vectorcall] = ACTIONS(1325), - [anon_sym_LBRACE] = ACTIONS(1327), - [anon_sym_signed] = ACTIONS(1325), - [anon_sym_unsigned] = ACTIONS(1325), - [anon_sym_long] = ACTIONS(1325), - [anon_sym_short] = ACTIONS(1325), - [anon_sym_static] = ACTIONS(1325), - [anon_sym_auto] = ACTIONS(1325), - [anon_sym_register] = ACTIONS(1325), - [anon_sym_inline] = ACTIONS(1325), - [anon_sym___inline] = ACTIONS(1325), - [anon_sym___inline__] = ACTIONS(1325), - [anon_sym___forceinline] = ACTIONS(1325), - [anon_sym_thread_local] = ACTIONS(1325), - [anon_sym___thread] = ACTIONS(1325), - [anon_sym_const] = ACTIONS(1325), - [anon_sym_constexpr] = ACTIONS(1325), - [anon_sym_volatile] = ACTIONS(1325), - [anon_sym_restrict] = ACTIONS(1325), - [anon_sym___restrict__] = ACTIONS(1325), - [anon_sym__Atomic] = ACTIONS(1325), - [anon_sym__Noreturn] = ACTIONS(1325), - [anon_sym_noreturn] = ACTIONS(1325), - [anon_sym_alignas] = ACTIONS(1325), - [anon_sym__Alignas] = ACTIONS(1325), - [sym_primitive_type] = ACTIONS(1325), - [anon_sym_enum] = ACTIONS(1325), - [anon_sym_struct] = ACTIONS(1325), - [anon_sym_union] = ACTIONS(1325), - [anon_sym_if] = ACTIONS(1325), - [anon_sym_switch] = ACTIONS(1325), - [anon_sym_case] = ACTIONS(1325), - [anon_sym_default] = ACTIONS(1325), - [anon_sym_while] = ACTIONS(1325), - [anon_sym_do] = ACTIONS(1325), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_return] = ACTIONS(1325), - [anon_sym_break] = ACTIONS(1325), - [anon_sym_continue] = ACTIONS(1325), - [anon_sym_goto] = ACTIONS(1325), - [anon_sym_DASH_DASH] = ACTIONS(1327), - [anon_sym_PLUS_PLUS] = ACTIONS(1327), - [anon_sym_sizeof] = ACTIONS(1325), - [anon_sym___alignof__] = ACTIONS(1325), - [anon_sym___alignof] = ACTIONS(1325), - [anon_sym__alignof] = ACTIONS(1325), - [anon_sym_alignof] = ACTIONS(1325), - [anon_sym__Alignof] = ACTIONS(1325), - [anon_sym_offsetof] = ACTIONS(1325), - [anon_sym__Generic] = ACTIONS(1325), - [anon_sym_asm] = ACTIONS(1325), - [anon_sym___asm__] = ACTIONS(1325), - [sym_number_literal] = ACTIONS(1327), - [anon_sym_L_SQUOTE] = ACTIONS(1327), - [anon_sym_u_SQUOTE] = ACTIONS(1327), - [anon_sym_U_SQUOTE] = ACTIONS(1327), - [anon_sym_u8_SQUOTE] = ACTIONS(1327), - [anon_sym_SQUOTE] = ACTIONS(1327), - [anon_sym_L_DQUOTE] = ACTIONS(1327), - [anon_sym_u_DQUOTE] = ACTIONS(1327), - [anon_sym_U_DQUOTE] = ACTIONS(1327), - [anon_sym_u8_DQUOTE] = ACTIONS(1327), - [anon_sym_DQUOTE] = ACTIONS(1327), - [sym_true] = ACTIONS(1325), - [sym_false] = ACTIONS(1325), - [anon_sym_NULL] = ACTIONS(1325), - [anon_sym_nullptr] = ACTIONS(1325), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [381] = { - [ts_builtin_sym_end] = ACTIONS(1387), - [sym_identifier] = ACTIONS(1385), - [aux_sym_preproc_include_token1] = ACTIONS(1385), - [aux_sym_preproc_def_token1] = ACTIONS(1385), - [aux_sym_preproc_if_token1] = ACTIONS(1385), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1385), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1385), - [sym_preproc_directive] = ACTIONS(1385), - [anon_sym_LPAREN2] = ACTIONS(1387), - [anon_sym_BANG] = ACTIONS(1387), - [anon_sym_TILDE] = ACTIONS(1387), - [anon_sym_DASH] = ACTIONS(1385), - [anon_sym_PLUS] = ACTIONS(1385), - [anon_sym_STAR] = ACTIONS(1387), - [anon_sym_AMP] = ACTIONS(1387), - [anon_sym___extension__] = ACTIONS(1385), - [anon_sym_typedef] = ACTIONS(1385), - [anon_sym_extern] = ACTIONS(1385), - [anon_sym___attribute__] = ACTIONS(1385), - [anon_sym___scanf] = ACTIONS(1385), - [anon_sym___printf] = ACTIONS(1385), - [anon_sym___read_mostly] = ACTIONS(1385), - [anon_sym___must_hold] = ACTIONS(1385), - [anon_sym___ro_after_init] = ACTIONS(1385), - [anon_sym___noreturn] = ACTIONS(1385), - [anon_sym___cold] = ACTIONS(1385), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1387), - [anon_sym___declspec] = ACTIONS(1385), - [anon_sym___init] = ACTIONS(1385), - [anon_sym___exit] = ACTIONS(1385), - [anon_sym___cdecl] = ACTIONS(1385), - [anon_sym___clrcall] = ACTIONS(1385), - [anon_sym___stdcall] = ACTIONS(1385), - [anon_sym___fastcall] = ACTIONS(1385), - [anon_sym___thiscall] = ACTIONS(1385), - [anon_sym___vectorcall] = ACTIONS(1385), - [anon_sym_LBRACE] = ACTIONS(1387), - [anon_sym_signed] = ACTIONS(1385), - [anon_sym_unsigned] = ACTIONS(1385), - [anon_sym_long] = ACTIONS(1385), - [anon_sym_short] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1385), - [anon_sym_auto] = ACTIONS(1385), - [anon_sym_register] = ACTIONS(1385), - [anon_sym_inline] = ACTIONS(1385), - [anon_sym___inline] = ACTIONS(1385), - [anon_sym___inline__] = ACTIONS(1385), - [anon_sym___forceinline] = ACTIONS(1385), - [anon_sym_thread_local] = ACTIONS(1385), - [anon_sym___thread] = ACTIONS(1385), - [anon_sym_const] = ACTIONS(1385), - [anon_sym_constexpr] = ACTIONS(1385), - [anon_sym_volatile] = ACTIONS(1385), - [anon_sym_restrict] = ACTIONS(1385), - [anon_sym___restrict__] = ACTIONS(1385), - [anon_sym__Atomic] = ACTIONS(1385), - [anon_sym__Noreturn] = ACTIONS(1385), - [anon_sym_noreturn] = ACTIONS(1385), - [anon_sym_alignas] = ACTIONS(1385), - [anon_sym__Alignas] = ACTIONS(1385), - [sym_primitive_type] = ACTIONS(1385), - [anon_sym_enum] = ACTIONS(1385), - [anon_sym_struct] = ACTIONS(1385), - [anon_sym_union] = ACTIONS(1385), - [anon_sym_if] = ACTIONS(1385), - [anon_sym_switch] = ACTIONS(1385), - [anon_sym_case] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1385), - [anon_sym_while] = ACTIONS(1385), - [anon_sym_do] = ACTIONS(1385), - [anon_sym_for] = ACTIONS(1385), - [anon_sym_return] = ACTIONS(1385), - [anon_sym_break] = ACTIONS(1385), - [anon_sym_continue] = ACTIONS(1385), - [anon_sym_goto] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1387), - [anon_sym_PLUS_PLUS] = ACTIONS(1387), - [anon_sym_sizeof] = ACTIONS(1385), - [anon_sym___alignof__] = ACTIONS(1385), - [anon_sym___alignof] = ACTIONS(1385), - [anon_sym__alignof] = ACTIONS(1385), - [anon_sym_alignof] = ACTIONS(1385), - [anon_sym__Alignof] = ACTIONS(1385), - [anon_sym_offsetof] = ACTIONS(1385), - [anon_sym__Generic] = ACTIONS(1385), - [anon_sym_asm] = ACTIONS(1385), - [anon_sym___asm__] = ACTIONS(1385), - [sym_number_literal] = ACTIONS(1387), - [anon_sym_L_SQUOTE] = ACTIONS(1387), - [anon_sym_u_SQUOTE] = ACTIONS(1387), - [anon_sym_U_SQUOTE] = ACTIONS(1387), - [anon_sym_u8_SQUOTE] = ACTIONS(1387), - [anon_sym_SQUOTE] = ACTIONS(1387), - [anon_sym_L_DQUOTE] = ACTIONS(1387), - [anon_sym_u_DQUOTE] = ACTIONS(1387), - [anon_sym_U_DQUOTE] = ACTIONS(1387), - [anon_sym_u8_DQUOTE] = ACTIONS(1387), - [anon_sym_DQUOTE] = ACTIONS(1387), - [sym_true] = ACTIONS(1385), - [sym_false] = ACTIONS(1385), - [anon_sym_NULL] = ACTIONS(1385), - [anon_sym_nullptr] = ACTIONS(1385), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [382] = { - [ts_builtin_sym_end] = ACTIONS(1417), - [sym_identifier] = ACTIONS(1415), - [aux_sym_preproc_include_token1] = ACTIONS(1415), - [aux_sym_preproc_def_token1] = ACTIONS(1415), - [aux_sym_preproc_if_token1] = ACTIONS(1415), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1415), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1415), - [sym_preproc_directive] = ACTIONS(1415), - [anon_sym_LPAREN2] = ACTIONS(1417), - [anon_sym_BANG] = ACTIONS(1417), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1415), - [anon_sym_PLUS] = ACTIONS(1415), - [anon_sym_STAR] = ACTIONS(1417), - [anon_sym_AMP] = ACTIONS(1417), - [anon_sym___extension__] = ACTIONS(1415), - [anon_sym_typedef] = ACTIONS(1415), - [anon_sym_extern] = ACTIONS(1415), - [anon_sym___attribute__] = ACTIONS(1415), - [anon_sym___scanf] = ACTIONS(1415), - [anon_sym___printf] = ACTIONS(1415), - [anon_sym___read_mostly] = ACTIONS(1415), - [anon_sym___must_hold] = ACTIONS(1415), - [anon_sym___ro_after_init] = ACTIONS(1415), - [anon_sym___noreturn] = ACTIONS(1415), - [anon_sym___cold] = ACTIONS(1415), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1417), - [anon_sym___declspec] = ACTIONS(1415), - [anon_sym___init] = ACTIONS(1415), - [anon_sym___exit] = ACTIONS(1415), - [anon_sym___cdecl] = ACTIONS(1415), - [anon_sym___clrcall] = ACTIONS(1415), - [anon_sym___stdcall] = ACTIONS(1415), - [anon_sym___fastcall] = ACTIONS(1415), - [anon_sym___thiscall] = ACTIONS(1415), - [anon_sym___vectorcall] = ACTIONS(1415), - [anon_sym_LBRACE] = ACTIONS(1417), - [anon_sym_signed] = ACTIONS(1415), - [anon_sym_unsigned] = ACTIONS(1415), - [anon_sym_long] = ACTIONS(1415), - [anon_sym_short] = ACTIONS(1415), - [anon_sym_static] = ACTIONS(1415), - [anon_sym_auto] = ACTIONS(1415), - [anon_sym_register] = ACTIONS(1415), - [anon_sym_inline] = ACTIONS(1415), - [anon_sym___inline] = ACTIONS(1415), - [anon_sym___inline__] = ACTIONS(1415), - [anon_sym___forceinline] = ACTIONS(1415), - [anon_sym_thread_local] = ACTIONS(1415), - [anon_sym___thread] = ACTIONS(1415), - [anon_sym_const] = ACTIONS(1415), - [anon_sym_constexpr] = ACTIONS(1415), - [anon_sym_volatile] = ACTIONS(1415), - [anon_sym_restrict] = ACTIONS(1415), - [anon_sym___restrict__] = ACTIONS(1415), - [anon_sym__Atomic] = ACTIONS(1415), - [anon_sym__Noreturn] = ACTIONS(1415), - [anon_sym_noreturn] = ACTIONS(1415), - [anon_sym_alignas] = ACTIONS(1415), - [anon_sym__Alignas] = ACTIONS(1415), - [sym_primitive_type] = ACTIONS(1415), - [anon_sym_enum] = ACTIONS(1415), - [anon_sym_struct] = ACTIONS(1415), - [anon_sym_union] = ACTIONS(1415), - [anon_sym_if] = ACTIONS(1415), - [anon_sym_switch] = ACTIONS(1415), - [anon_sym_case] = ACTIONS(1415), - [anon_sym_default] = ACTIONS(1415), - [anon_sym_while] = ACTIONS(1415), - [anon_sym_do] = ACTIONS(1415), - [anon_sym_for] = ACTIONS(1415), - [anon_sym_return] = ACTIONS(1415), - [anon_sym_break] = ACTIONS(1415), - [anon_sym_continue] = ACTIONS(1415), - [anon_sym_goto] = ACTIONS(1415), - [anon_sym_DASH_DASH] = ACTIONS(1417), - [anon_sym_PLUS_PLUS] = ACTIONS(1417), - [anon_sym_sizeof] = ACTIONS(1415), - [anon_sym___alignof__] = ACTIONS(1415), - [anon_sym___alignof] = ACTIONS(1415), - [anon_sym__alignof] = ACTIONS(1415), - [anon_sym_alignof] = ACTIONS(1415), - [anon_sym__Alignof] = ACTIONS(1415), - [anon_sym_offsetof] = ACTIONS(1415), - [anon_sym__Generic] = ACTIONS(1415), - [anon_sym_asm] = ACTIONS(1415), - [anon_sym___asm__] = ACTIONS(1415), - [sym_number_literal] = ACTIONS(1417), - [anon_sym_L_SQUOTE] = ACTIONS(1417), - [anon_sym_u_SQUOTE] = ACTIONS(1417), - [anon_sym_U_SQUOTE] = ACTIONS(1417), - [anon_sym_u8_SQUOTE] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1417), - [anon_sym_L_DQUOTE] = ACTIONS(1417), - [anon_sym_u_DQUOTE] = ACTIONS(1417), - [anon_sym_U_DQUOTE] = ACTIONS(1417), - [anon_sym_u8_DQUOTE] = ACTIONS(1417), - [anon_sym_DQUOTE] = ACTIONS(1417), - [sym_true] = ACTIONS(1415), - [sym_false] = ACTIONS(1415), - [anon_sym_NULL] = ACTIONS(1415), - [anon_sym_nullptr] = ACTIONS(1415), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [383] = { - [ts_builtin_sym_end] = ACTIONS(1291), - [sym_identifier] = ACTIONS(1289), - [aux_sym_preproc_include_token1] = ACTIONS(1289), - [aux_sym_preproc_def_token1] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1289), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1289), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1289), - [sym_preproc_directive] = ACTIONS(1289), - [anon_sym_LPAREN2] = ACTIONS(1291), - [anon_sym_BANG] = ACTIONS(1291), - [anon_sym_TILDE] = ACTIONS(1291), - [anon_sym_DASH] = ACTIONS(1289), - [anon_sym_PLUS] = ACTIONS(1289), - [anon_sym_STAR] = ACTIONS(1291), - [anon_sym_AMP] = ACTIONS(1291), - [anon_sym___extension__] = ACTIONS(1289), - [anon_sym_typedef] = ACTIONS(1289), - [anon_sym_extern] = ACTIONS(1289), - [anon_sym___attribute__] = ACTIONS(1289), - [anon_sym___scanf] = ACTIONS(1289), - [anon_sym___printf] = ACTIONS(1289), - [anon_sym___read_mostly] = ACTIONS(1289), - [anon_sym___must_hold] = ACTIONS(1289), - [anon_sym___ro_after_init] = ACTIONS(1289), - [anon_sym___noreturn] = ACTIONS(1289), - [anon_sym___cold] = ACTIONS(1289), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1291), - [anon_sym___declspec] = ACTIONS(1289), - [anon_sym___init] = ACTIONS(1289), - [anon_sym___exit] = ACTIONS(1289), - [anon_sym___cdecl] = ACTIONS(1289), - [anon_sym___clrcall] = ACTIONS(1289), - [anon_sym___stdcall] = ACTIONS(1289), - [anon_sym___fastcall] = ACTIONS(1289), - [anon_sym___thiscall] = ACTIONS(1289), - [anon_sym___vectorcall] = ACTIONS(1289), - [anon_sym_LBRACE] = ACTIONS(1291), - [anon_sym_signed] = ACTIONS(1289), - [anon_sym_unsigned] = ACTIONS(1289), - [anon_sym_long] = ACTIONS(1289), - [anon_sym_short] = ACTIONS(1289), - [anon_sym_static] = ACTIONS(1289), - [anon_sym_auto] = ACTIONS(1289), - [anon_sym_register] = ACTIONS(1289), - [anon_sym_inline] = ACTIONS(1289), - [anon_sym___inline] = ACTIONS(1289), - [anon_sym___inline__] = ACTIONS(1289), - [anon_sym___forceinline] = ACTIONS(1289), - [anon_sym_thread_local] = ACTIONS(1289), - [anon_sym___thread] = ACTIONS(1289), - [anon_sym_const] = ACTIONS(1289), - [anon_sym_constexpr] = ACTIONS(1289), - [anon_sym_volatile] = ACTIONS(1289), - [anon_sym_restrict] = ACTIONS(1289), - [anon_sym___restrict__] = ACTIONS(1289), - [anon_sym__Atomic] = ACTIONS(1289), - [anon_sym__Noreturn] = ACTIONS(1289), - [anon_sym_noreturn] = ACTIONS(1289), - [anon_sym_alignas] = ACTIONS(1289), - [anon_sym__Alignas] = ACTIONS(1289), - [sym_primitive_type] = ACTIONS(1289), - [anon_sym_enum] = ACTIONS(1289), - [anon_sym_struct] = ACTIONS(1289), - [anon_sym_union] = ACTIONS(1289), - [anon_sym_if] = ACTIONS(1289), - [anon_sym_switch] = ACTIONS(1289), - [anon_sym_case] = ACTIONS(1289), - [anon_sym_default] = ACTIONS(1289), - [anon_sym_while] = ACTIONS(1289), - [anon_sym_do] = ACTIONS(1289), - [anon_sym_for] = ACTIONS(1289), - [anon_sym_return] = ACTIONS(1289), - [anon_sym_break] = ACTIONS(1289), - [anon_sym_continue] = ACTIONS(1289), - [anon_sym_goto] = ACTIONS(1289), - [anon_sym_DASH_DASH] = ACTIONS(1291), - [anon_sym_PLUS_PLUS] = ACTIONS(1291), - [anon_sym_sizeof] = ACTIONS(1289), - [anon_sym___alignof__] = ACTIONS(1289), - [anon_sym___alignof] = ACTIONS(1289), - [anon_sym__alignof] = ACTIONS(1289), - [anon_sym_alignof] = ACTIONS(1289), - [anon_sym__Alignof] = ACTIONS(1289), - [anon_sym_offsetof] = ACTIONS(1289), - [anon_sym__Generic] = ACTIONS(1289), - [anon_sym_asm] = ACTIONS(1289), - [anon_sym___asm__] = ACTIONS(1289), - [sym_number_literal] = ACTIONS(1291), - [anon_sym_L_SQUOTE] = ACTIONS(1291), - [anon_sym_u_SQUOTE] = ACTIONS(1291), - [anon_sym_U_SQUOTE] = ACTIONS(1291), - [anon_sym_u8_SQUOTE] = ACTIONS(1291), - [anon_sym_SQUOTE] = ACTIONS(1291), - [anon_sym_L_DQUOTE] = ACTIONS(1291), - [anon_sym_u_DQUOTE] = ACTIONS(1291), - [anon_sym_U_DQUOTE] = ACTIONS(1291), - [anon_sym_u8_DQUOTE] = ACTIONS(1291), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_true] = ACTIONS(1289), - [sym_false] = ACTIONS(1289), - [anon_sym_NULL] = ACTIONS(1289), - [anon_sym_nullptr] = ACTIONS(1289), - [sym_comment] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1372), + [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_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), + [sym_comment] = ACTIONS(5), }, [384] = { - [ts_builtin_sym_end] = ACTIONS(1413), - [sym_identifier] = ACTIONS(1411), - [aux_sym_preproc_include_token1] = ACTIONS(1411), - [aux_sym_preproc_def_token1] = ACTIONS(1411), - [aux_sym_preproc_if_token1] = ACTIONS(1411), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1411), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1411), - [sym_preproc_directive] = ACTIONS(1411), - [anon_sym_LPAREN2] = ACTIONS(1413), - [anon_sym_BANG] = ACTIONS(1413), - [anon_sym_TILDE] = ACTIONS(1413), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(1413), - [anon_sym___extension__] = ACTIONS(1411), - [anon_sym_typedef] = ACTIONS(1411), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym___attribute__] = ACTIONS(1411), - [anon_sym___scanf] = ACTIONS(1411), - [anon_sym___printf] = ACTIONS(1411), - [anon_sym___read_mostly] = ACTIONS(1411), - [anon_sym___must_hold] = ACTIONS(1411), - [anon_sym___ro_after_init] = ACTIONS(1411), - [anon_sym___noreturn] = ACTIONS(1411), - [anon_sym___cold] = ACTIONS(1411), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(1411), - [anon_sym___init] = ACTIONS(1411), - [anon_sym___exit] = ACTIONS(1411), - [anon_sym___cdecl] = ACTIONS(1411), - [anon_sym___clrcall] = ACTIONS(1411), - [anon_sym___stdcall] = ACTIONS(1411), - [anon_sym___fastcall] = ACTIONS(1411), - [anon_sym___thiscall] = ACTIONS(1411), - [anon_sym___vectorcall] = ACTIONS(1411), - [anon_sym_LBRACE] = ACTIONS(1413), - [anon_sym_signed] = ACTIONS(1411), - [anon_sym_unsigned] = ACTIONS(1411), - [anon_sym_long] = ACTIONS(1411), - [anon_sym_short] = ACTIONS(1411), - [anon_sym_static] = ACTIONS(1411), - [anon_sym_auto] = ACTIONS(1411), - [anon_sym_register] = ACTIONS(1411), - [anon_sym_inline] = ACTIONS(1411), - [anon_sym___inline] = ACTIONS(1411), - [anon_sym___inline__] = ACTIONS(1411), - [anon_sym___forceinline] = ACTIONS(1411), - [anon_sym_thread_local] = ACTIONS(1411), - [anon_sym___thread] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1411), - [anon_sym_constexpr] = ACTIONS(1411), - [anon_sym_volatile] = ACTIONS(1411), - [anon_sym_restrict] = ACTIONS(1411), - [anon_sym___restrict__] = ACTIONS(1411), - [anon_sym__Atomic] = ACTIONS(1411), - [anon_sym__Noreturn] = ACTIONS(1411), - [anon_sym_noreturn] = ACTIONS(1411), - [anon_sym_alignas] = ACTIONS(1411), - [anon_sym__Alignas] = ACTIONS(1411), - [sym_primitive_type] = ACTIONS(1411), - [anon_sym_enum] = ACTIONS(1411), - [anon_sym_struct] = ACTIONS(1411), - [anon_sym_union] = ACTIONS(1411), - [anon_sym_if] = ACTIONS(1411), - [anon_sym_switch] = ACTIONS(1411), - [anon_sym_case] = ACTIONS(1411), - [anon_sym_default] = ACTIONS(1411), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(1411), - [anon_sym_for] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_break] = ACTIONS(1411), - [anon_sym_continue] = ACTIONS(1411), - [anon_sym_goto] = ACTIONS(1411), - [anon_sym_DASH_DASH] = ACTIONS(1413), - [anon_sym_PLUS_PLUS] = ACTIONS(1413), - [anon_sym_sizeof] = ACTIONS(1411), - [anon_sym___alignof__] = ACTIONS(1411), - [anon_sym___alignof] = ACTIONS(1411), - [anon_sym__alignof] = ACTIONS(1411), - [anon_sym_alignof] = ACTIONS(1411), - [anon_sym__Alignof] = ACTIONS(1411), - [anon_sym_offsetof] = ACTIONS(1411), - [anon_sym__Generic] = ACTIONS(1411), - [anon_sym_asm] = ACTIONS(1411), - [anon_sym___asm__] = ACTIONS(1411), - [sym_number_literal] = ACTIONS(1413), - [anon_sym_L_SQUOTE] = ACTIONS(1413), - [anon_sym_u_SQUOTE] = ACTIONS(1413), - [anon_sym_U_SQUOTE] = ACTIONS(1413), - [anon_sym_u8_SQUOTE] = ACTIONS(1413), - [anon_sym_SQUOTE] = ACTIONS(1413), - [anon_sym_L_DQUOTE] = ACTIONS(1413), - [anon_sym_u_DQUOTE] = ACTIONS(1413), - [anon_sym_U_DQUOTE] = ACTIONS(1413), - [anon_sym_u8_DQUOTE] = ACTIONS(1413), - [anon_sym_DQUOTE] = ACTIONS(1413), - [sym_true] = ACTIONS(1411), - [sym_false] = ACTIONS(1411), - [anon_sym_NULL] = ACTIONS(1411), - [anon_sym_nullptr] = ACTIONS(1411), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [385] = { - [ts_builtin_sym_end] = ACTIONS(1339), - [sym_identifier] = ACTIONS(1337), - [aux_sym_preproc_include_token1] = ACTIONS(1337), - [aux_sym_preproc_def_token1] = ACTIONS(1337), - [aux_sym_preproc_if_token1] = ACTIONS(1337), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1337), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1337), - [sym_preproc_directive] = ACTIONS(1337), - [anon_sym_LPAREN2] = ACTIONS(1339), - [anon_sym_BANG] = ACTIONS(1339), - [anon_sym_TILDE] = ACTIONS(1339), - [anon_sym_DASH] = ACTIONS(1337), - [anon_sym_PLUS] = ACTIONS(1337), - [anon_sym_STAR] = ACTIONS(1339), - [anon_sym_AMP] = ACTIONS(1339), - [anon_sym___extension__] = ACTIONS(1337), - [anon_sym_typedef] = ACTIONS(1337), - [anon_sym_extern] = ACTIONS(1337), - [anon_sym___attribute__] = ACTIONS(1337), - [anon_sym___scanf] = ACTIONS(1337), - [anon_sym___printf] = ACTIONS(1337), - [anon_sym___read_mostly] = ACTIONS(1337), - [anon_sym___must_hold] = ACTIONS(1337), - [anon_sym___ro_after_init] = ACTIONS(1337), - [anon_sym___noreturn] = ACTIONS(1337), - [anon_sym___cold] = ACTIONS(1337), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1339), - [anon_sym___declspec] = ACTIONS(1337), - [anon_sym___init] = ACTIONS(1337), - [anon_sym___exit] = ACTIONS(1337), - [anon_sym___cdecl] = ACTIONS(1337), - [anon_sym___clrcall] = ACTIONS(1337), - [anon_sym___stdcall] = ACTIONS(1337), - [anon_sym___fastcall] = ACTIONS(1337), - [anon_sym___thiscall] = ACTIONS(1337), - [anon_sym___vectorcall] = ACTIONS(1337), - [anon_sym_LBRACE] = ACTIONS(1339), - [anon_sym_signed] = ACTIONS(1337), - [anon_sym_unsigned] = ACTIONS(1337), - [anon_sym_long] = ACTIONS(1337), - [anon_sym_short] = ACTIONS(1337), - [anon_sym_static] = ACTIONS(1337), - [anon_sym_auto] = ACTIONS(1337), - [anon_sym_register] = ACTIONS(1337), - [anon_sym_inline] = ACTIONS(1337), - [anon_sym___inline] = ACTIONS(1337), - [anon_sym___inline__] = ACTIONS(1337), - [anon_sym___forceinline] = ACTIONS(1337), - [anon_sym_thread_local] = ACTIONS(1337), - [anon_sym___thread] = ACTIONS(1337), - [anon_sym_const] = ACTIONS(1337), - [anon_sym_constexpr] = ACTIONS(1337), - [anon_sym_volatile] = ACTIONS(1337), - [anon_sym_restrict] = ACTIONS(1337), - [anon_sym___restrict__] = ACTIONS(1337), - [anon_sym__Atomic] = ACTIONS(1337), - [anon_sym__Noreturn] = ACTIONS(1337), - [anon_sym_noreturn] = ACTIONS(1337), - [anon_sym_alignas] = ACTIONS(1337), - [anon_sym__Alignas] = ACTIONS(1337), - [sym_primitive_type] = ACTIONS(1337), - [anon_sym_enum] = ACTIONS(1337), - [anon_sym_struct] = ACTIONS(1337), - [anon_sym_union] = ACTIONS(1337), - [anon_sym_if] = ACTIONS(1337), - [anon_sym_switch] = ACTIONS(1337), - [anon_sym_case] = ACTIONS(1337), - [anon_sym_default] = ACTIONS(1337), - [anon_sym_while] = ACTIONS(1337), - [anon_sym_do] = ACTIONS(1337), - [anon_sym_for] = ACTIONS(1337), - [anon_sym_return] = ACTIONS(1337), - [anon_sym_break] = ACTIONS(1337), - [anon_sym_continue] = ACTIONS(1337), - [anon_sym_goto] = ACTIONS(1337), - [anon_sym_DASH_DASH] = ACTIONS(1339), - [anon_sym_PLUS_PLUS] = ACTIONS(1339), - [anon_sym_sizeof] = ACTIONS(1337), - [anon_sym___alignof__] = ACTIONS(1337), - [anon_sym___alignof] = ACTIONS(1337), - [anon_sym__alignof] = ACTIONS(1337), - [anon_sym_alignof] = ACTIONS(1337), - [anon_sym__Alignof] = ACTIONS(1337), - [anon_sym_offsetof] = ACTIONS(1337), - [anon_sym__Generic] = ACTIONS(1337), - [anon_sym_asm] = ACTIONS(1337), - [anon_sym___asm__] = ACTIONS(1337), - [sym_number_literal] = ACTIONS(1339), - [anon_sym_L_SQUOTE] = ACTIONS(1339), - [anon_sym_u_SQUOTE] = ACTIONS(1339), - [anon_sym_U_SQUOTE] = ACTIONS(1339), - [anon_sym_u8_SQUOTE] = ACTIONS(1339), - [anon_sym_SQUOTE] = ACTIONS(1339), - [anon_sym_L_DQUOTE] = ACTIONS(1339), - [anon_sym_u_DQUOTE] = ACTIONS(1339), - [anon_sym_U_DQUOTE] = ACTIONS(1339), - [anon_sym_u8_DQUOTE] = ACTIONS(1339), - [anon_sym_DQUOTE] = ACTIONS(1339), - [sym_true] = ACTIONS(1337), - [sym_false] = ACTIONS(1337), - [anon_sym_NULL] = ACTIONS(1337), - [anon_sym_nullptr] = ACTIONS(1337), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [386] = { - [ts_builtin_sym_end] = ACTIONS(1413), - [sym_identifier] = ACTIONS(1411), - [aux_sym_preproc_include_token1] = ACTIONS(1411), - [aux_sym_preproc_def_token1] = ACTIONS(1411), - [aux_sym_preproc_if_token1] = ACTIONS(1411), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1411), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1411), - [sym_preproc_directive] = ACTIONS(1411), - [anon_sym_LPAREN2] = ACTIONS(1413), - [anon_sym_BANG] = ACTIONS(1413), - [anon_sym_TILDE] = ACTIONS(1413), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(1413), - [anon_sym___extension__] = ACTIONS(1411), - [anon_sym_typedef] = ACTIONS(1411), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym___attribute__] = ACTIONS(1411), - [anon_sym___scanf] = ACTIONS(1411), - [anon_sym___printf] = ACTIONS(1411), - [anon_sym___read_mostly] = ACTIONS(1411), - [anon_sym___must_hold] = ACTIONS(1411), - [anon_sym___ro_after_init] = ACTIONS(1411), - [anon_sym___noreturn] = ACTIONS(1411), - [anon_sym___cold] = ACTIONS(1411), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(1411), - [anon_sym___init] = ACTIONS(1411), - [anon_sym___exit] = ACTIONS(1411), - [anon_sym___cdecl] = ACTIONS(1411), - [anon_sym___clrcall] = ACTIONS(1411), - [anon_sym___stdcall] = ACTIONS(1411), - [anon_sym___fastcall] = ACTIONS(1411), - [anon_sym___thiscall] = ACTIONS(1411), - [anon_sym___vectorcall] = ACTIONS(1411), - [anon_sym_LBRACE] = ACTIONS(1413), - [anon_sym_signed] = ACTIONS(1411), - [anon_sym_unsigned] = ACTIONS(1411), - [anon_sym_long] = ACTIONS(1411), - [anon_sym_short] = ACTIONS(1411), - [anon_sym_static] = ACTIONS(1411), - [anon_sym_auto] = ACTIONS(1411), - [anon_sym_register] = ACTIONS(1411), - [anon_sym_inline] = ACTIONS(1411), - [anon_sym___inline] = ACTIONS(1411), - [anon_sym___inline__] = ACTIONS(1411), - [anon_sym___forceinline] = ACTIONS(1411), - [anon_sym_thread_local] = ACTIONS(1411), - [anon_sym___thread] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1411), - [anon_sym_constexpr] = ACTIONS(1411), - [anon_sym_volatile] = ACTIONS(1411), - [anon_sym_restrict] = ACTIONS(1411), - [anon_sym___restrict__] = ACTIONS(1411), - [anon_sym__Atomic] = ACTIONS(1411), - [anon_sym__Noreturn] = ACTIONS(1411), - [anon_sym_noreturn] = ACTIONS(1411), - [anon_sym_alignas] = ACTIONS(1411), - [anon_sym__Alignas] = ACTIONS(1411), - [sym_primitive_type] = ACTIONS(1411), - [anon_sym_enum] = ACTIONS(1411), - [anon_sym_struct] = ACTIONS(1411), - [anon_sym_union] = ACTIONS(1411), - [anon_sym_if] = ACTIONS(1411), - [anon_sym_switch] = ACTIONS(1411), - [anon_sym_case] = ACTIONS(1411), - [anon_sym_default] = ACTIONS(1411), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(1411), - [anon_sym_for] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_break] = ACTIONS(1411), - [anon_sym_continue] = ACTIONS(1411), - [anon_sym_goto] = ACTIONS(1411), - [anon_sym_DASH_DASH] = ACTIONS(1413), - [anon_sym_PLUS_PLUS] = ACTIONS(1413), - [anon_sym_sizeof] = ACTIONS(1411), - [anon_sym___alignof__] = ACTIONS(1411), - [anon_sym___alignof] = ACTIONS(1411), - [anon_sym__alignof] = ACTIONS(1411), - [anon_sym_alignof] = ACTIONS(1411), - [anon_sym__Alignof] = ACTIONS(1411), - [anon_sym_offsetof] = ACTIONS(1411), - [anon_sym__Generic] = ACTIONS(1411), - [anon_sym_asm] = ACTIONS(1411), - [anon_sym___asm__] = ACTIONS(1411), - [sym_number_literal] = ACTIONS(1413), - [anon_sym_L_SQUOTE] = ACTIONS(1413), - [anon_sym_u_SQUOTE] = ACTIONS(1413), - [anon_sym_U_SQUOTE] = ACTIONS(1413), - [anon_sym_u8_SQUOTE] = ACTIONS(1413), - [anon_sym_SQUOTE] = ACTIONS(1413), - [anon_sym_L_DQUOTE] = ACTIONS(1413), - [anon_sym_u_DQUOTE] = ACTIONS(1413), - [anon_sym_U_DQUOTE] = ACTIONS(1413), - [anon_sym_u8_DQUOTE] = ACTIONS(1413), - [anon_sym_DQUOTE] = ACTIONS(1413), - [sym_true] = ACTIONS(1411), - [sym_false] = ACTIONS(1411), - [anon_sym_NULL] = ACTIONS(1411), - [anon_sym_nullptr] = ACTIONS(1411), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [387] = { - [ts_builtin_sym_end] = ACTIONS(1443), - [sym_identifier] = ACTIONS(1445), - [aux_sym_preproc_include_token1] = ACTIONS(1445), - [aux_sym_preproc_def_token1] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1445), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1445), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1445), - [sym_preproc_directive] = ACTIONS(1445), - [anon_sym_LPAREN2] = ACTIONS(1443), - [anon_sym_BANG] = ACTIONS(1443), - [anon_sym_TILDE] = ACTIONS(1443), - [anon_sym_DASH] = ACTIONS(1445), - [anon_sym_PLUS] = ACTIONS(1445), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_AMP] = ACTIONS(1443), - [anon_sym___extension__] = ACTIONS(1445), - [anon_sym_typedef] = ACTIONS(1445), - [anon_sym_extern] = ACTIONS(1445), - [anon_sym___attribute__] = ACTIONS(1445), - [anon_sym___scanf] = ACTIONS(1445), - [anon_sym___printf] = ACTIONS(1445), - [anon_sym___read_mostly] = ACTIONS(1445), - [anon_sym___must_hold] = ACTIONS(1445), - [anon_sym___ro_after_init] = ACTIONS(1445), - [anon_sym___noreturn] = ACTIONS(1445), - [anon_sym___cold] = ACTIONS(1445), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1443), - [anon_sym___declspec] = ACTIONS(1445), - [anon_sym___init] = ACTIONS(1445), - [anon_sym___exit] = ACTIONS(1445), - [anon_sym___cdecl] = ACTIONS(1445), - [anon_sym___clrcall] = ACTIONS(1445), - [anon_sym___stdcall] = ACTIONS(1445), - [anon_sym___fastcall] = ACTIONS(1445), - [anon_sym___thiscall] = ACTIONS(1445), - [anon_sym___vectorcall] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(1443), - [anon_sym_signed] = ACTIONS(1445), - [anon_sym_unsigned] = ACTIONS(1445), - [anon_sym_long] = ACTIONS(1445), - [anon_sym_short] = ACTIONS(1445), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_auto] = ACTIONS(1445), - [anon_sym_register] = ACTIONS(1445), - [anon_sym_inline] = ACTIONS(1445), - [anon_sym___inline] = ACTIONS(1445), - [anon_sym___inline__] = ACTIONS(1445), - [anon_sym___forceinline] = ACTIONS(1445), - [anon_sym_thread_local] = ACTIONS(1445), - [anon_sym___thread] = ACTIONS(1445), - [anon_sym_const] = ACTIONS(1445), - [anon_sym_constexpr] = ACTIONS(1445), - [anon_sym_volatile] = ACTIONS(1445), - [anon_sym_restrict] = ACTIONS(1445), - [anon_sym___restrict__] = ACTIONS(1445), - [anon_sym__Atomic] = ACTIONS(1445), - [anon_sym__Noreturn] = ACTIONS(1445), - [anon_sym_noreturn] = ACTIONS(1445), - [anon_sym_alignas] = ACTIONS(1445), - [anon_sym__Alignas] = ACTIONS(1445), - [sym_primitive_type] = ACTIONS(1445), - [anon_sym_enum] = ACTIONS(1445), - [anon_sym_struct] = ACTIONS(1445), - [anon_sym_union] = ACTIONS(1445), - [anon_sym_if] = ACTIONS(1445), - [anon_sym_switch] = ACTIONS(1445), - [anon_sym_case] = ACTIONS(1445), - [anon_sym_default] = ACTIONS(1445), - [anon_sym_while] = ACTIONS(1445), - [anon_sym_do] = ACTIONS(1445), - [anon_sym_for] = ACTIONS(1445), - [anon_sym_return] = ACTIONS(1445), - [anon_sym_break] = ACTIONS(1445), - [anon_sym_continue] = ACTIONS(1445), - [anon_sym_goto] = ACTIONS(1445), - [anon_sym_DASH_DASH] = ACTIONS(1443), - [anon_sym_PLUS_PLUS] = ACTIONS(1443), - [anon_sym_sizeof] = ACTIONS(1445), - [anon_sym___alignof__] = ACTIONS(1445), - [anon_sym___alignof] = ACTIONS(1445), - [anon_sym__alignof] = ACTIONS(1445), - [anon_sym_alignof] = ACTIONS(1445), - [anon_sym__Alignof] = ACTIONS(1445), - [anon_sym_offsetof] = ACTIONS(1445), - [anon_sym__Generic] = ACTIONS(1445), - [anon_sym_asm] = ACTIONS(1445), - [anon_sym___asm__] = ACTIONS(1445), - [sym_number_literal] = ACTIONS(1443), - [anon_sym_L_SQUOTE] = ACTIONS(1443), - [anon_sym_u_SQUOTE] = ACTIONS(1443), - [anon_sym_U_SQUOTE] = ACTIONS(1443), - [anon_sym_u8_SQUOTE] = ACTIONS(1443), - [anon_sym_SQUOTE] = ACTIONS(1443), - [anon_sym_L_DQUOTE] = ACTIONS(1443), - [anon_sym_u_DQUOTE] = ACTIONS(1443), - [anon_sym_U_DQUOTE] = ACTIONS(1443), - [anon_sym_u8_DQUOTE] = ACTIONS(1443), - [anon_sym_DQUOTE] = ACTIONS(1443), - [sym_true] = ACTIONS(1445), - [sym_false] = ACTIONS(1445), - [anon_sym_NULL] = ACTIONS(1445), - [anon_sym_nullptr] = ACTIONS(1445), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [388] = { - [ts_builtin_sym_end] = ACTIONS(1355), - [sym_identifier] = ACTIONS(1353), - [aux_sym_preproc_include_token1] = ACTIONS(1353), - [aux_sym_preproc_def_token1] = ACTIONS(1353), - [aux_sym_preproc_if_token1] = ACTIONS(1353), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1353), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1353), - [sym_preproc_directive] = ACTIONS(1353), - [anon_sym_LPAREN2] = ACTIONS(1355), - [anon_sym_BANG] = ACTIONS(1355), - [anon_sym_TILDE] = ACTIONS(1355), - [anon_sym_DASH] = ACTIONS(1353), - [anon_sym_PLUS] = ACTIONS(1353), - [anon_sym_STAR] = ACTIONS(1355), - [anon_sym_AMP] = ACTIONS(1355), - [anon_sym___extension__] = ACTIONS(1353), - [anon_sym_typedef] = ACTIONS(1353), - [anon_sym_extern] = ACTIONS(1353), - [anon_sym___attribute__] = ACTIONS(1353), - [anon_sym___scanf] = ACTIONS(1353), - [anon_sym___printf] = ACTIONS(1353), - [anon_sym___read_mostly] = ACTIONS(1353), - [anon_sym___must_hold] = ACTIONS(1353), - [anon_sym___ro_after_init] = ACTIONS(1353), - [anon_sym___noreturn] = ACTIONS(1353), - [anon_sym___cold] = ACTIONS(1353), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1355), - [anon_sym___declspec] = ACTIONS(1353), - [anon_sym___init] = ACTIONS(1353), - [anon_sym___exit] = ACTIONS(1353), - [anon_sym___cdecl] = ACTIONS(1353), - [anon_sym___clrcall] = ACTIONS(1353), - [anon_sym___stdcall] = ACTIONS(1353), - [anon_sym___fastcall] = ACTIONS(1353), - [anon_sym___thiscall] = ACTIONS(1353), - [anon_sym___vectorcall] = ACTIONS(1353), - [anon_sym_LBRACE] = ACTIONS(1355), - [anon_sym_signed] = ACTIONS(1353), - [anon_sym_unsigned] = ACTIONS(1353), - [anon_sym_long] = ACTIONS(1353), - [anon_sym_short] = ACTIONS(1353), - [anon_sym_static] = ACTIONS(1353), - [anon_sym_auto] = ACTIONS(1353), - [anon_sym_register] = ACTIONS(1353), - [anon_sym_inline] = ACTIONS(1353), - [anon_sym___inline] = ACTIONS(1353), - [anon_sym___inline__] = ACTIONS(1353), - [anon_sym___forceinline] = ACTIONS(1353), - [anon_sym_thread_local] = ACTIONS(1353), - [anon_sym___thread] = ACTIONS(1353), - [anon_sym_const] = ACTIONS(1353), - [anon_sym_constexpr] = ACTIONS(1353), - [anon_sym_volatile] = ACTIONS(1353), - [anon_sym_restrict] = ACTIONS(1353), - [anon_sym___restrict__] = ACTIONS(1353), - [anon_sym__Atomic] = ACTIONS(1353), - [anon_sym__Noreturn] = ACTIONS(1353), - [anon_sym_noreturn] = ACTIONS(1353), - [anon_sym_alignas] = ACTIONS(1353), - [anon_sym__Alignas] = ACTIONS(1353), - [sym_primitive_type] = ACTIONS(1353), - [anon_sym_enum] = ACTIONS(1353), - [anon_sym_struct] = ACTIONS(1353), - [anon_sym_union] = ACTIONS(1353), - [anon_sym_if] = ACTIONS(1353), - [anon_sym_switch] = ACTIONS(1353), - [anon_sym_case] = ACTIONS(1353), - [anon_sym_default] = ACTIONS(1353), - [anon_sym_while] = ACTIONS(1353), - [anon_sym_do] = ACTIONS(1353), - [anon_sym_for] = ACTIONS(1353), - [anon_sym_return] = ACTIONS(1353), - [anon_sym_break] = ACTIONS(1353), - [anon_sym_continue] = ACTIONS(1353), - [anon_sym_goto] = ACTIONS(1353), - [anon_sym_DASH_DASH] = ACTIONS(1355), - [anon_sym_PLUS_PLUS] = ACTIONS(1355), - [anon_sym_sizeof] = ACTIONS(1353), - [anon_sym___alignof__] = ACTIONS(1353), - [anon_sym___alignof] = ACTIONS(1353), - [anon_sym__alignof] = ACTIONS(1353), - [anon_sym_alignof] = ACTIONS(1353), - [anon_sym__Alignof] = ACTIONS(1353), - [anon_sym_offsetof] = ACTIONS(1353), - [anon_sym__Generic] = ACTIONS(1353), - [anon_sym_asm] = ACTIONS(1353), - [anon_sym___asm__] = ACTIONS(1353), - [sym_number_literal] = ACTIONS(1355), - [anon_sym_L_SQUOTE] = ACTIONS(1355), - [anon_sym_u_SQUOTE] = ACTIONS(1355), - [anon_sym_U_SQUOTE] = ACTIONS(1355), - [anon_sym_u8_SQUOTE] = ACTIONS(1355), - [anon_sym_SQUOTE] = ACTIONS(1355), - [anon_sym_L_DQUOTE] = ACTIONS(1355), - [anon_sym_u_DQUOTE] = ACTIONS(1355), - [anon_sym_U_DQUOTE] = ACTIONS(1355), - [anon_sym_u8_DQUOTE] = ACTIONS(1355), - [anon_sym_DQUOTE] = ACTIONS(1355), - [sym_true] = ACTIONS(1353), - [sym_false] = ACTIONS(1353), - [anon_sym_NULL] = ACTIONS(1353), - [anon_sym_nullptr] = ACTIONS(1353), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [389] = { - [ts_builtin_sym_end] = ACTIONS(1391), - [sym_identifier] = ACTIONS(1389), - [aux_sym_preproc_include_token1] = ACTIONS(1389), - [aux_sym_preproc_def_token1] = ACTIONS(1389), - [aux_sym_preproc_if_token1] = ACTIONS(1389), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1389), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1389), - [sym_preproc_directive] = ACTIONS(1389), - [anon_sym_LPAREN2] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1391), - [anon_sym_TILDE] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(1389), - [anon_sym_STAR] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1391), - [anon_sym___extension__] = ACTIONS(1389), - [anon_sym_typedef] = ACTIONS(1389), - [anon_sym_extern] = ACTIONS(1389), - [anon_sym___attribute__] = ACTIONS(1389), - [anon_sym___scanf] = ACTIONS(1389), - [anon_sym___printf] = ACTIONS(1389), - [anon_sym___read_mostly] = ACTIONS(1389), - [anon_sym___must_hold] = ACTIONS(1389), - [anon_sym___ro_after_init] = ACTIONS(1389), - [anon_sym___noreturn] = ACTIONS(1389), - [anon_sym___cold] = ACTIONS(1389), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1391), - [anon_sym___declspec] = ACTIONS(1389), - [anon_sym___init] = ACTIONS(1389), - [anon_sym___exit] = ACTIONS(1389), - [anon_sym___cdecl] = ACTIONS(1389), - [anon_sym___clrcall] = ACTIONS(1389), - [anon_sym___stdcall] = ACTIONS(1389), - [anon_sym___fastcall] = ACTIONS(1389), - [anon_sym___thiscall] = ACTIONS(1389), - [anon_sym___vectorcall] = ACTIONS(1389), - [anon_sym_LBRACE] = ACTIONS(1391), - [anon_sym_signed] = ACTIONS(1389), - [anon_sym_unsigned] = ACTIONS(1389), - [anon_sym_long] = ACTIONS(1389), - [anon_sym_short] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1389), - [anon_sym_auto] = ACTIONS(1389), - [anon_sym_register] = ACTIONS(1389), - [anon_sym_inline] = ACTIONS(1389), - [anon_sym___inline] = ACTIONS(1389), - [anon_sym___inline__] = ACTIONS(1389), - [anon_sym___forceinline] = ACTIONS(1389), - [anon_sym_thread_local] = ACTIONS(1389), - [anon_sym___thread] = ACTIONS(1389), - [anon_sym_const] = ACTIONS(1389), - [anon_sym_constexpr] = ACTIONS(1389), - [anon_sym_volatile] = ACTIONS(1389), - [anon_sym_restrict] = ACTIONS(1389), - [anon_sym___restrict__] = ACTIONS(1389), - [anon_sym__Atomic] = ACTIONS(1389), - [anon_sym__Noreturn] = ACTIONS(1389), - [anon_sym_noreturn] = ACTIONS(1389), - [anon_sym_alignas] = ACTIONS(1389), - [anon_sym__Alignas] = ACTIONS(1389), - [sym_primitive_type] = ACTIONS(1389), - [anon_sym_enum] = ACTIONS(1389), - [anon_sym_struct] = ACTIONS(1389), - [anon_sym_union] = ACTIONS(1389), - [anon_sym_if] = ACTIONS(1389), - [anon_sym_switch] = ACTIONS(1389), - [anon_sym_case] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1389), - [anon_sym_while] = ACTIONS(1389), - [anon_sym_do] = ACTIONS(1389), - [anon_sym_for] = ACTIONS(1389), - [anon_sym_return] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1389), - [anon_sym_continue] = ACTIONS(1389), - [anon_sym_goto] = ACTIONS(1389), - [anon_sym_DASH_DASH] = ACTIONS(1391), - [anon_sym_PLUS_PLUS] = ACTIONS(1391), - [anon_sym_sizeof] = ACTIONS(1389), - [anon_sym___alignof__] = ACTIONS(1389), - [anon_sym___alignof] = ACTIONS(1389), - [anon_sym__alignof] = ACTIONS(1389), - [anon_sym_alignof] = ACTIONS(1389), - [anon_sym__Alignof] = ACTIONS(1389), - [anon_sym_offsetof] = ACTIONS(1389), - [anon_sym__Generic] = ACTIONS(1389), - [anon_sym_asm] = ACTIONS(1389), - [anon_sym___asm__] = ACTIONS(1389), - [sym_number_literal] = ACTIONS(1391), - [anon_sym_L_SQUOTE] = ACTIONS(1391), - [anon_sym_u_SQUOTE] = ACTIONS(1391), - [anon_sym_U_SQUOTE] = ACTIONS(1391), - [anon_sym_u8_SQUOTE] = ACTIONS(1391), - [anon_sym_SQUOTE] = ACTIONS(1391), - [anon_sym_L_DQUOTE] = ACTIONS(1391), - [anon_sym_u_DQUOTE] = ACTIONS(1391), - [anon_sym_U_DQUOTE] = ACTIONS(1391), - [anon_sym_u8_DQUOTE] = ACTIONS(1391), - [anon_sym_DQUOTE] = ACTIONS(1391), - [sym_true] = ACTIONS(1389), - [sym_false] = ACTIONS(1389), - [anon_sym_NULL] = ACTIONS(1389), - [anon_sym_nullptr] = ACTIONS(1389), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [390] = { - [ts_builtin_sym_end] = ACTIONS(1363), - [sym_identifier] = ACTIONS(1361), - [aux_sym_preproc_include_token1] = ACTIONS(1361), - [aux_sym_preproc_def_token1] = ACTIONS(1361), - [aux_sym_preproc_if_token1] = ACTIONS(1361), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1361), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1361), - [sym_preproc_directive] = ACTIONS(1361), - [anon_sym_LPAREN2] = ACTIONS(1363), - [anon_sym_BANG] = ACTIONS(1363), - [anon_sym_TILDE] = ACTIONS(1363), - [anon_sym_DASH] = ACTIONS(1361), - [anon_sym_PLUS] = ACTIONS(1361), - [anon_sym_STAR] = ACTIONS(1363), - [anon_sym_AMP] = ACTIONS(1363), - [anon_sym___extension__] = ACTIONS(1361), - [anon_sym_typedef] = ACTIONS(1361), - [anon_sym_extern] = ACTIONS(1361), - [anon_sym___attribute__] = ACTIONS(1361), - [anon_sym___scanf] = ACTIONS(1361), - [anon_sym___printf] = ACTIONS(1361), - [anon_sym___read_mostly] = ACTIONS(1361), - [anon_sym___must_hold] = ACTIONS(1361), - [anon_sym___ro_after_init] = ACTIONS(1361), - [anon_sym___noreturn] = ACTIONS(1361), - [anon_sym___cold] = ACTIONS(1361), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1363), - [anon_sym___declspec] = ACTIONS(1361), - [anon_sym___init] = ACTIONS(1361), - [anon_sym___exit] = ACTIONS(1361), - [anon_sym___cdecl] = ACTIONS(1361), - [anon_sym___clrcall] = ACTIONS(1361), - [anon_sym___stdcall] = ACTIONS(1361), - [anon_sym___fastcall] = ACTIONS(1361), - [anon_sym___thiscall] = ACTIONS(1361), - [anon_sym___vectorcall] = ACTIONS(1361), - [anon_sym_LBRACE] = ACTIONS(1363), - [anon_sym_signed] = ACTIONS(1361), - [anon_sym_unsigned] = ACTIONS(1361), - [anon_sym_long] = ACTIONS(1361), - [anon_sym_short] = ACTIONS(1361), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_auto] = ACTIONS(1361), - [anon_sym_register] = ACTIONS(1361), - [anon_sym_inline] = ACTIONS(1361), - [anon_sym___inline] = ACTIONS(1361), - [anon_sym___inline__] = ACTIONS(1361), - [anon_sym___forceinline] = ACTIONS(1361), - [anon_sym_thread_local] = ACTIONS(1361), - [anon_sym___thread] = ACTIONS(1361), - [anon_sym_const] = ACTIONS(1361), - [anon_sym_constexpr] = ACTIONS(1361), - [anon_sym_volatile] = ACTIONS(1361), - [anon_sym_restrict] = ACTIONS(1361), - [anon_sym___restrict__] = ACTIONS(1361), - [anon_sym__Atomic] = ACTIONS(1361), - [anon_sym__Noreturn] = ACTIONS(1361), - [anon_sym_noreturn] = ACTIONS(1361), - [anon_sym_alignas] = ACTIONS(1361), - [anon_sym__Alignas] = ACTIONS(1361), - [sym_primitive_type] = ACTIONS(1361), - [anon_sym_enum] = ACTIONS(1361), - [anon_sym_struct] = ACTIONS(1361), - [anon_sym_union] = ACTIONS(1361), - [anon_sym_if] = ACTIONS(1361), - [anon_sym_switch] = ACTIONS(1361), - [anon_sym_case] = ACTIONS(1361), - [anon_sym_default] = ACTIONS(1361), - [anon_sym_while] = ACTIONS(1361), - [anon_sym_do] = ACTIONS(1361), - [anon_sym_for] = ACTIONS(1361), - [anon_sym_return] = ACTIONS(1361), - [anon_sym_break] = ACTIONS(1361), - [anon_sym_continue] = ACTIONS(1361), - [anon_sym_goto] = ACTIONS(1361), - [anon_sym_DASH_DASH] = ACTIONS(1363), - [anon_sym_PLUS_PLUS] = ACTIONS(1363), - [anon_sym_sizeof] = ACTIONS(1361), - [anon_sym___alignof__] = ACTIONS(1361), - [anon_sym___alignof] = ACTIONS(1361), - [anon_sym__alignof] = ACTIONS(1361), - [anon_sym_alignof] = ACTIONS(1361), - [anon_sym__Alignof] = ACTIONS(1361), - [anon_sym_offsetof] = ACTIONS(1361), - [anon_sym__Generic] = ACTIONS(1361), - [anon_sym_asm] = ACTIONS(1361), - [anon_sym___asm__] = ACTIONS(1361), - [sym_number_literal] = ACTIONS(1363), - [anon_sym_L_SQUOTE] = ACTIONS(1363), - [anon_sym_u_SQUOTE] = ACTIONS(1363), - [anon_sym_U_SQUOTE] = ACTIONS(1363), - [anon_sym_u8_SQUOTE] = ACTIONS(1363), - [anon_sym_SQUOTE] = ACTIONS(1363), - [anon_sym_L_DQUOTE] = ACTIONS(1363), - [anon_sym_u_DQUOTE] = ACTIONS(1363), - [anon_sym_U_DQUOTE] = ACTIONS(1363), - [anon_sym_u8_DQUOTE] = ACTIONS(1363), - [anon_sym_DQUOTE] = ACTIONS(1363), - [sym_true] = ACTIONS(1361), - [sym_false] = ACTIONS(1361), - [anon_sym_NULL] = ACTIONS(1361), - [anon_sym_nullptr] = ACTIONS(1361), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [391] = { - [ts_builtin_sym_end] = ACTIONS(1299), - [sym_identifier] = ACTIONS(1297), - [aux_sym_preproc_include_token1] = ACTIONS(1297), - [aux_sym_preproc_def_token1] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1297), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1297), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1297), - [sym_preproc_directive] = ACTIONS(1297), - [anon_sym_LPAREN2] = ACTIONS(1299), - [anon_sym_BANG] = ACTIONS(1299), - [anon_sym_TILDE] = ACTIONS(1299), - [anon_sym_DASH] = ACTIONS(1297), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_STAR] = ACTIONS(1299), - [anon_sym_AMP] = ACTIONS(1299), - [anon_sym___extension__] = ACTIONS(1297), - [anon_sym_typedef] = ACTIONS(1297), - [anon_sym_extern] = ACTIONS(1297), - [anon_sym___attribute__] = ACTIONS(1297), - [anon_sym___scanf] = ACTIONS(1297), - [anon_sym___printf] = ACTIONS(1297), - [anon_sym___read_mostly] = ACTIONS(1297), - [anon_sym___must_hold] = ACTIONS(1297), - [anon_sym___ro_after_init] = ACTIONS(1297), - [anon_sym___noreturn] = ACTIONS(1297), - [anon_sym___cold] = ACTIONS(1297), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1299), - [anon_sym___declspec] = ACTIONS(1297), - [anon_sym___init] = ACTIONS(1297), - [anon_sym___exit] = ACTIONS(1297), - [anon_sym___cdecl] = ACTIONS(1297), - [anon_sym___clrcall] = ACTIONS(1297), - [anon_sym___stdcall] = ACTIONS(1297), - [anon_sym___fastcall] = ACTIONS(1297), - [anon_sym___thiscall] = ACTIONS(1297), - [anon_sym___vectorcall] = ACTIONS(1297), - [anon_sym_LBRACE] = ACTIONS(1299), - [anon_sym_signed] = ACTIONS(1297), - [anon_sym_unsigned] = ACTIONS(1297), - [anon_sym_long] = ACTIONS(1297), - [anon_sym_short] = ACTIONS(1297), - [anon_sym_static] = ACTIONS(1297), - [anon_sym_auto] = ACTIONS(1297), - [anon_sym_register] = ACTIONS(1297), - [anon_sym_inline] = ACTIONS(1297), - [anon_sym___inline] = ACTIONS(1297), - [anon_sym___inline__] = ACTIONS(1297), - [anon_sym___forceinline] = ACTIONS(1297), - [anon_sym_thread_local] = ACTIONS(1297), - [anon_sym___thread] = ACTIONS(1297), - [anon_sym_const] = ACTIONS(1297), - [anon_sym_constexpr] = ACTIONS(1297), - [anon_sym_volatile] = ACTIONS(1297), - [anon_sym_restrict] = ACTIONS(1297), - [anon_sym___restrict__] = ACTIONS(1297), - [anon_sym__Atomic] = ACTIONS(1297), - [anon_sym__Noreturn] = ACTIONS(1297), - [anon_sym_noreturn] = ACTIONS(1297), - [anon_sym_alignas] = ACTIONS(1297), - [anon_sym__Alignas] = ACTIONS(1297), - [sym_primitive_type] = ACTIONS(1297), - [anon_sym_enum] = ACTIONS(1297), - [anon_sym_struct] = ACTIONS(1297), - [anon_sym_union] = ACTIONS(1297), - [anon_sym_if] = ACTIONS(1297), - [anon_sym_switch] = ACTIONS(1297), - [anon_sym_case] = ACTIONS(1297), - [anon_sym_default] = ACTIONS(1297), - [anon_sym_while] = ACTIONS(1297), - [anon_sym_do] = ACTIONS(1297), - [anon_sym_for] = ACTIONS(1297), - [anon_sym_return] = ACTIONS(1297), - [anon_sym_break] = ACTIONS(1297), - [anon_sym_continue] = ACTIONS(1297), - [anon_sym_goto] = ACTIONS(1297), - [anon_sym_DASH_DASH] = ACTIONS(1299), - [anon_sym_PLUS_PLUS] = ACTIONS(1299), - [anon_sym_sizeof] = ACTIONS(1297), - [anon_sym___alignof__] = ACTIONS(1297), - [anon_sym___alignof] = ACTIONS(1297), - [anon_sym__alignof] = ACTIONS(1297), - [anon_sym_alignof] = ACTIONS(1297), - [anon_sym__Alignof] = ACTIONS(1297), - [anon_sym_offsetof] = ACTIONS(1297), - [anon_sym__Generic] = ACTIONS(1297), - [anon_sym_asm] = ACTIONS(1297), - [anon_sym___asm__] = ACTIONS(1297), - [sym_number_literal] = ACTIONS(1299), - [anon_sym_L_SQUOTE] = ACTIONS(1299), - [anon_sym_u_SQUOTE] = ACTIONS(1299), - [anon_sym_U_SQUOTE] = ACTIONS(1299), - [anon_sym_u8_SQUOTE] = ACTIONS(1299), - [anon_sym_SQUOTE] = ACTIONS(1299), - [anon_sym_L_DQUOTE] = ACTIONS(1299), - [anon_sym_u_DQUOTE] = ACTIONS(1299), - [anon_sym_U_DQUOTE] = ACTIONS(1299), - [anon_sym_u8_DQUOTE] = ACTIONS(1299), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_true] = ACTIONS(1297), - [sym_false] = ACTIONS(1297), - [anon_sym_NULL] = ACTIONS(1297), - [anon_sym_nullptr] = ACTIONS(1297), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [392] = { - [ts_builtin_sym_end] = ACTIONS(1319), - [sym_identifier] = ACTIONS(1317), - [aux_sym_preproc_include_token1] = ACTIONS(1317), - [aux_sym_preproc_def_token1] = ACTIONS(1317), - [aux_sym_preproc_if_token1] = ACTIONS(1317), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1317), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1317), - [sym_preproc_directive] = ACTIONS(1317), - [anon_sym_LPAREN2] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1319), - [anon_sym_TILDE] = ACTIONS(1319), - [anon_sym_DASH] = ACTIONS(1317), - [anon_sym_PLUS] = ACTIONS(1317), - [anon_sym_STAR] = ACTIONS(1319), - [anon_sym_AMP] = ACTIONS(1319), - [anon_sym___extension__] = ACTIONS(1317), - [anon_sym_typedef] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1317), - [anon_sym___attribute__] = ACTIONS(1317), - [anon_sym___scanf] = ACTIONS(1317), - [anon_sym___printf] = ACTIONS(1317), - [anon_sym___read_mostly] = ACTIONS(1317), - [anon_sym___must_hold] = ACTIONS(1317), - [anon_sym___ro_after_init] = ACTIONS(1317), - [anon_sym___noreturn] = ACTIONS(1317), - [anon_sym___cold] = ACTIONS(1317), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1319), - [anon_sym___declspec] = ACTIONS(1317), - [anon_sym___init] = ACTIONS(1317), - [anon_sym___exit] = ACTIONS(1317), - [anon_sym___cdecl] = ACTIONS(1317), - [anon_sym___clrcall] = ACTIONS(1317), - [anon_sym___stdcall] = ACTIONS(1317), - [anon_sym___fastcall] = ACTIONS(1317), - [anon_sym___thiscall] = ACTIONS(1317), - [anon_sym___vectorcall] = ACTIONS(1317), - [anon_sym_LBRACE] = ACTIONS(1319), - [anon_sym_signed] = ACTIONS(1317), - [anon_sym_unsigned] = ACTIONS(1317), - [anon_sym_long] = ACTIONS(1317), - [anon_sym_short] = ACTIONS(1317), - [anon_sym_static] = ACTIONS(1317), - [anon_sym_auto] = ACTIONS(1317), - [anon_sym_register] = ACTIONS(1317), - [anon_sym_inline] = ACTIONS(1317), - [anon_sym___inline] = ACTIONS(1317), - [anon_sym___inline__] = ACTIONS(1317), - [anon_sym___forceinline] = ACTIONS(1317), - [anon_sym_thread_local] = ACTIONS(1317), - [anon_sym___thread] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_constexpr] = ACTIONS(1317), - [anon_sym_volatile] = ACTIONS(1317), - [anon_sym_restrict] = ACTIONS(1317), - [anon_sym___restrict__] = ACTIONS(1317), - [anon_sym__Atomic] = ACTIONS(1317), - [anon_sym__Noreturn] = ACTIONS(1317), - [anon_sym_noreturn] = ACTIONS(1317), - [anon_sym_alignas] = ACTIONS(1317), - [anon_sym__Alignas] = ACTIONS(1317), - [sym_primitive_type] = ACTIONS(1317), - [anon_sym_enum] = ACTIONS(1317), - [anon_sym_struct] = ACTIONS(1317), - [anon_sym_union] = ACTIONS(1317), - [anon_sym_if] = ACTIONS(1317), - [anon_sym_switch] = ACTIONS(1317), - [anon_sym_case] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(1317), - [anon_sym_while] = ACTIONS(1317), - [anon_sym_do] = ACTIONS(1317), - [anon_sym_for] = ACTIONS(1317), - [anon_sym_return] = ACTIONS(1317), - [anon_sym_break] = ACTIONS(1317), - [anon_sym_continue] = ACTIONS(1317), - [anon_sym_goto] = ACTIONS(1317), - [anon_sym_DASH_DASH] = ACTIONS(1319), - [anon_sym_PLUS_PLUS] = ACTIONS(1319), - [anon_sym_sizeof] = ACTIONS(1317), - [anon_sym___alignof__] = ACTIONS(1317), - [anon_sym___alignof] = ACTIONS(1317), - [anon_sym__alignof] = ACTIONS(1317), - [anon_sym_alignof] = ACTIONS(1317), - [anon_sym__Alignof] = ACTIONS(1317), - [anon_sym_offsetof] = ACTIONS(1317), - [anon_sym__Generic] = ACTIONS(1317), - [anon_sym_asm] = ACTIONS(1317), - [anon_sym___asm__] = ACTIONS(1317), - [sym_number_literal] = ACTIONS(1319), - [anon_sym_L_SQUOTE] = ACTIONS(1319), - [anon_sym_u_SQUOTE] = ACTIONS(1319), - [anon_sym_U_SQUOTE] = ACTIONS(1319), - [anon_sym_u8_SQUOTE] = ACTIONS(1319), - [anon_sym_SQUOTE] = ACTIONS(1319), - [anon_sym_L_DQUOTE] = ACTIONS(1319), - [anon_sym_u_DQUOTE] = ACTIONS(1319), - [anon_sym_U_DQUOTE] = ACTIONS(1319), - [anon_sym_u8_DQUOTE] = ACTIONS(1319), - [anon_sym_DQUOTE] = ACTIONS(1319), - [sym_true] = ACTIONS(1317), - [sym_false] = ACTIONS(1317), - [anon_sym_NULL] = ACTIONS(1317), - [anon_sym_nullptr] = ACTIONS(1317), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [393] = { - [ts_builtin_sym_end] = ACTIONS(1311), - [sym_identifier] = ACTIONS(1309), - [aux_sym_preproc_include_token1] = ACTIONS(1309), - [aux_sym_preproc_def_token1] = ACTIONS(1309), - [aux_sym_preproc_if_token1] = ACTIONS(1309), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1309), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1309), - [sym_preproc_directive] = ACTIONS(1309), - [anon_sym_LPAREN2] = ACTIONS(1311), - [anon_sym_BANG] = ACTIONS(1311), - [anon_sym_TILDE] = ACTIONS(1311), - [anon_sym_DASH] = ACTIONS(1309), - [anon_sym_PLUS] = ACTIONS(1309), - [anon_sym_STAR] = ACTIONS(1311), - [anon_sym_AMP] = ACTIONS(1311), - [anon_sym___extension__] = ACTIONS(1309), - [anon_sym_typedef] = ACTIONS(1309), - [anon_sym_extern] = ACTIONS(1309), - [anon_sym___attribute__] = ACTIONS(1309), - [anon_sym___scanf] = ACTIONS(1309), - [anon_sym___printf] = ACTIONS(1309), - [anon_sym___read_mostly] = ACTIONS(1309), - [anon_sym___must_hold] = ACTIONS(1309), - [anon_sym___ro_after_init] = ACTIONS(1309), - [anon_sym___noreturn] = ACTIONS(1309), - [anon_sym___cold] = ACTIONS(1309), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1311), - [anon_sym___declspec] = ACTIONS(1309), - [anon_sym___init] = ACTIONS(1309), - [anon_sym___exit] = ACTIONS(1309), - [anon_sym___cdecl] = ACTIONS(1309), - [anon_sym___clrcall] = ACTIONS(1309), - [anon_sym___stdcall] = ACTIONS(1309), - [anon_sym___fastcall] = ACTIONS(1309), - [anon_sym___thiscall] = ACTIONS(1309), - [anon_sym___vectorcall] = ACTIONS(1309), - [anon_sym_LBRACE] = ACTIONS(1311), - [anon_sym_signed] = ACTIONS(1309), - [anon_sym_unsigned] = ACTIONS(1309), - [anon_sym_long] = ACTIONS(1309), - [anon_sym_short] = ACTIONS(1309), - [anon_sym_static] = ACTIONS(1309), - [anon_sym_auto] = ACTIONS(1309), - [anon_sym_register] = ACTIONS(1309), - [anon_sym_inline] = ACTIONS(1309), - [anon_sym___inline] = ACTIONS(1309), - [anon_sym___inline__] = ACTIONS(1309), - [anon_sym___forceinline] = ACTIONS(1309), - [anon_sym_thread_local] = ACTIONS(1309), - [anon_sym___thread] = ACTIONS(1309), - [anon_sym_const] = ACTIONS(1309), - [anon_sym_constexpr] = ACTIONS(1309), - [anon_sym_volatile] = ACTIONS(1309), - [anon_sym_restrict] = ACTIONS(1309), - [anon_sym___restrict__] = ACTIONS(1309), - [anon_sym__Atomic] = ACTIONS(1309), - [anon_sym__Noreturn] = ACTIONS(1309), - [anon_sym_noreturn] = ACTIONS(1309), - [anon_sym_alignas] = ACTIONS(1309), - [anon_sym__Alignas] = ACTIONS(1309), - [sym_primitive_type] = ACTIONS(1309), - [anon_sym_enum] = ACTIONS(1309), - [anon_sym_struct] = ACTIONS(1309), - [anon_sym_union] = ACTIONS(1309), - [anon_sym_if] = ACTIONS(1309), - [anon_sym_switch] = ACTIONS(1309), - [anon_sym_case] = ACTIONS(1309), - [anon_sym_default] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1309), - [anon_sym_do] = ACTIONS(1309), - [anon_sym_for] = ACTIONS(1309), - [anon_sym_return] = ACTIONS(1309), - [anon_sym_break] = ACTIONS(1309), - [anon_sym_continue] = ACTIONS(1309), - [anon_sym_goto] = ACTIONS(1309), - [anon_sym_DASH_DASH] = ACTIONS(1311), - [anon_sym_PLUS_PLUS] = ACTIONS(1311), - [anon_sym_sizeof] = ACTIONS(1309), - [anon_sym___alignof__] = ACTIONS(1309), - [anon_sym___alignof] = ACTIONS(1309), - [anon_sym__alignof] = ACTIONS(1309), - [anon_sym_alignof] = ACTIONS(1309), - [anon_sym__Alignof] = ACTIONS(1309), - [anon_sym_offsetof] = ACTIONS(1309), - [anon_sym__Generic] = ACTIONS(1309), - [anon_sym_asm] = ACTIONS(1309), - [anon_sym___asm__] = ACTIONS(1309), - [sym_number_literal] = ACTIONS(1311), - [anon_sym_L_SQUOTE] = ACTIONS(1311), - [anon_sym_u_SQUOTE] = ACTIONS(1311), - [anon_sym_U_SQUOTE] = ACTIONS(1311), - [anon_sym_u8_SQUOTE] = ACTIONS(1311), - [anon_sym_SQUOTE] = ACTIONS(1311), - [anon_sym_L_DQUOTE] = ACTIONS(1311), - [anon_sym_u_DQUOTE] = ACTIONS(1311), - [anon_sym_U_DQUOTE] = ACTIONS(1311), - [anon_sym_u8_DQUOTE] = ACTIONS(1311), - [anon_sym_DQUOTE] = ACTIONS(1311), - [sym_true] = ACTIONS(1309), - [sym_false] = ACTIONS(1309), - [anon_sym_NULL] = ACTIONS(1309), - [anon_sym_nullptr] = ACTIONS(1309), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [394] = { - [ts_builtin_sym_end] = ACTIONS(1359), - [sym_identifier] = ACTIONS(1357), - [aux_sym_preproc_include_token1] = ACTIONS(1357), - [aux_sym_preproc_def_token1] = ACTIONS(1357), - [aux_sym_preproc_if_token1] = ACTIONS(1357), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1357), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1357), - [sym_preproc_directive] = ACTIONS(1357), - [anon_sym_LPAREN2] = ACTIONS(1359), - [anon_sym_BANG] = ACTIONS(1359), - [anon_sym_TILDE] = ACTIONS(1359), - [anon_sym_DASH] = ACTIONS(1357), - [anon_sym_PLUS] = ACTIONS(1357), - [anon_sym_STAR] = ACTIONS(1359), - [anon_sym_AMP] = ACTIONS(1359), - [anon_sym___extension__] = ACTIONS(1357), - [anon_sym_typedef] = ACTIONS(1357), - [anon_sym_extern] = ACTIONS(1357), - [anon_sym___attribute__] = ACTIONS(1357), - [anon_sym___scanf] = ACTIONS(1357), - [anon_sym___printf] = ACTIONS(1357), - [anon_sym___read_mostly] = ACTIONS(1357), - [anon_sym___must_hold] = ACTIONS(1357), - [anon_sym___ro_after_init] = ACTIONS(1357), - [anon_sym___noreturn] = ACTIONS(1357), - [anon_sym___cold] = ACTIONS(1357), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1359), - [anon_sym___declspec] = ACTIONS(1357), - [anon_sym___init] = ACTIONS(1357), - [anon_sym___exit] = ACTIONS(1357), - [anon_sym___cdecl] = ACTIONS(1357), - [anon_sym___clrcall] = ACTIONS(1357), - [anon_sym___stdcall] = ACTIONS(1357), - [anon_sym___fastcall] = ACTIONS(1357), - [anon_sym___thiscall] = ACTIONS(1357), - [anon_sym___vectorcall] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(1359), - [anon_sym_signed] = ACTIONS(1357), - [anon_sym_unsigned] = ACTIONS(1357), - [anon_sym_long] = ACTIONS(1357), - [anon_sym_short] = ACTIONS(1357), - [anon_sym_static] = ACTIONS(1357), - [anon_sym_auto] = ACTIONS(1357), - [anon_sym_register] = ACTIONS(1357), - [anon_sym_inline] = ACTIONS(1357), - [anon_sym___inline] = ACTIONS(1357), - [anon_sym___inline__] = ACTIONS(1357), - [anon_sym___forceinline] = ACTIONS(1357), - [anon_sym_thread_local] = ACTIONS(1357), - [anon_sym___thread] = ACTIONS(1357), - [anon_sym_const] = ACTIONS(1357), - [anon_sym_constexpr] = ACTIONS(1357), - [anon_sym_volatile] = ACTIONS(1357), - [anon_sym_restrict] = ACTIONS(1357), - [anon_sym___restrict__] = ACTIONS(1357), - [anon_sym__Atomic] = ACTIONS(1357), - [anon_sym__Noreturn] = ACTIONS(1357), - [anon_sym_noreturn] = ACTIONS(1357), - [anon_sym_alignas] = ACTIONS(1357), - [anon_sym__Alignas] = ACTIONS(1357), - [sym_primitive_type] = ACTIONS(1357), - [anon_sym_enum] = ACTIONS(1357), - [anon_sym_struct] = ACTIONS(1357), - [anon_sym_union] = ACTIONS(1357), - [anon_sym_if] = ACTIONS(1357), - [anon_sym_switch] = ACTIONS(1357), - [anon_sym_case] = ACTIONS(1357), - [anon_sym_default] = ACTIONS(1357), - [anon_sym_while] = ACTIONS(1357), - [anon_sym_do] = ACTIONS(1357), - [anon_sym_for] = ACTIONS(1357), - [anon_sym_return] = ACTIONS(1357), - [anon_sym_break] = ACTIONS(1357), - [anon_sym_continue] = ACTIONS(1357), - [anon_sym_goto] = ACTIONS(1357), - [anon_sym_DASH_DASH] = ACTIONS(1359), - [anon_sym_PLUS_PLUS] = ACTIONS(1359), - [anon_sym_sizeof] = ACTIONS(1357), - [anon_sym___alignof__] = ACTIONS(1357), - [anon_sym___alignof] = ACTIONS(1357), - [anon_sym__alignof] = ACTIONS(1357), - [anon_sym_alignof] = ACTIONS(1357), - [anon_sym__Alignof] = ACTIONS(1357), - [anon_sym_offsetof] = ACTIONS(1357), - [anon_sym__Generic] = ACTIONS(1357), - [anon_sym_asm] = ACTIONS(1357), - [anon_sym___asm__] = ACTIONS(1357), - [sym_number_literal] = ACTIONS(1359), - [anon_sym_L_SQUOTE] = ACTIONS(1359), - [anon_sym_u_SQUOTE] = ACTIONS(1359), - [anon_sym_U_SQUOTE] = ACTIONS(1359), - [anon_sym_u8_SQUOTE] = ACTIONS(1359), - [anon_sym_SQUOTE] = ACTIONS(1359), - [anon_sym_L_DQUOTE] = ACTIONS(1359), - [anon_sym_u_DQUOTE] = ACTIONS(1359), - [anon_sym_U_DQUOTE] = ACTIONS(1359), - [anon_sym_u8_DQUOTE] = ACTIONS(1359), - [anon_sym_DQUOTE] = ACTIONS(1359), - [sym_true] = ACTIONS(1357), - [sym_false] = ACTIONS(1357), - [anon_sym_NULL] = ACTIONS(1357), - [anon_sym_nullptr] = ACTIONS(1357), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [395] = { - [ts_builtin_sym_end] = ACTIONS(1379), - [sym_identifier] = ACTIONS(1377), - [aux_sym_preproc_include_token1] = ACTIONS(1377), - [aux_sym_preproc_def_token1] = ACTIONS(1377), - [aux_sym_preproc_if_token1] = ACTIONS(1377), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1377), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1377), - [sym_preproc_directive] = ACTIONS(1377), - [anon_sym_LPAREN2] = ACTIONS(1379), - [anon_sym_BANG] = ACTIONS(1379), - [anon_sym_TILDE] = ACTIONS(1379), - [anon_sym_DASH] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1377), - [anon_sym_STAR] = ACTIONS(1379), - [anon_sym_AMP] = ACTIONS(1379), - [anon_sym___extension__] = ACTIONS(1377), - [anon_sym_typedef] = ACTIONS(1377), - [anon_sym_extern] = ACTIONS(1377), - [anon_sym___attribute__] = ACTIONS(1377), - [anon_sym___scanf] = ACTIONS(1377), - [anon_sym___printf] = ACTIONS(1377), - [anon_sym___read_mostly] = ACTIONS(1377), - [anon_sym___must_hold] = ACTIONS(1377), - [anon_sym___ro_after_init] = ACTIONS(1377), - [anon_sym___noreturn] = ACTIONS(1377), - [anon_sym___cold] = ACTIONS(1377), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1379), - [anon_sym___declspec] = ACTIONS(1377), - [anon_sym___init] = ACTIONS(1377), - [anon_sym___exit] = ACTIONS(1377), - [anon_sym___cdecl] = ACTIONS(1377), - [anon_sym___clrcall] = ACTIONS(1377), - [anon_sym___stdcall] = ACTIONS(1377), - [anon_sym___fastcall] = ACTIONS(1377), - [anon_sym___thiscall] = ACTIONS(1377), - [anon_sym___vectorcall] = ACTIONS(1377), - [anon_sym_LBRACE] = ACTIONS(1379), - [anon_sym_signed] = ACTIONS(1377), - [anon_sym_unsigned] = ACTIONS(1377), - [anon_sym_long] = ACTIONS(1377), - [anon_sym_short] = ACTIONS(1377), - [anon_sym_static] = ACTIONS(1377), - [anon_sym_auto] = ACTIONS(1377), - [anon_sym_register] = ACTIONS(1377), - [anon_sym_inline] = ACTIONS(1377), - [anon_sym___inline] = ACTIONS(1377), - [anon_sym___inline__] = ACTIONS(1377), - [anon_sym___forceinline] = ACTIONS(1377), - [anon_sym_thread_local] = ACTIONS(1377), - [anon_sym___thread] = ACTIONS(1377), - [anon_sym_const] = ACTIONS(1377), - [anon_sym_constexpr] = ACTIONS(1377), - [anon_sym_volatile] = ACTIONS(1377), - [anon_sym_restrict] = ACTIONS(1377), - [anon_sym___restrict__] = ACTIONS(1377), - [anon_sym__Atomic] = ACTIONS(1377), - [anon_sym__Noreturn] = ACTIONS(1377), - [anon_sym_noreturn] = ACTIONS(1377), - [anon_sym_alignas] = ACTIONS(1377), - [anon_sym__Alignas] = ACTIONS(1377), - [sym_primitive_type] = ACTIONS(1377), - [anon_sym_enum] = ACTIONS(1377), - [anon_sym_struct] = ACTIONS(1377), - [anon_sym_union] = ACTIONS(1377), - [anon_sym_if] = ACTIONS(1377), - [anon_sym_switch] = ACTIONS(1377), - [anon_sym_case] = ACTIONS(1377), - [anon_sym_default] = ACTIONS(1377), - [anon_sym_while] = ACTIONS(1377), - [anon_sym_do] = ACTIONS(1377), - [anon_sym_for] = ACTIONS(1377), - [anon_sym_return] = ACTIONS(1377), - [anon_sym_break] = ACTIONS(1377), - [anon_sym_continue] = ACTIONS(1377), - [anon_sym_goto] = ACTIONS(1377), - [anon_sym_DASH_DASH] = ACTIONS(1379), - [anon_sym_PLUS_PLUS] = ACTIONS(1379), - [anon_sym_sizeof] = ACTIONS(1377), - [anon_sym___alignof__] = ACTIONS(1377), - [anon_sym___alignof] = ACTIONS(1377), - [anon_sym__alignof] = ACTIONS(1377), - [anon_sym_alignof] = ACTIONS(1377), - [anon_sym__Alignof] = ACTIONS(1377), - [anon_sym_offsetof] = ACTIONS(1377), - [anon_sym__Generic] = ACTIONS(1377), - [anon_sym_asm] = ACTIONS(1377), - [anon_sym___asm__] = ACTIONS(1377), - [sym_number_literal] = ACTIONS(1379), - [anon_sym_L_SQUOTE] = ACTIONS(1379), - [anon_sym_u_SQUOTE] = ACTIONS(1379), - [anon_sym_U_SQUOTE] = ACTIONS(1379), - [anon_sym_u8_SQUOTE] = ACTIONS(1379), - [anon_sym_SQUOTE] = ACTIONS(1379), - [anon_sym_L_DQUOTE] = ACTIONS(1379), - [anon_sym_u_DQUOTE] = ACTIONS(1379), - [anon_sym_U_DQUOTE] = ACTIONS(1379), - [anon_sym_u8_DQUOTE] = ACTIONS(1379), - [anon_sym_DQUOTE] = ACTIONS(1379), - [sym_true] = ACTIONS(1377), - [sym_false] = ACTIONS(1377), - [anon_sym_NULL] = ACTIONS(1377), - [anon_sym_nullptr] = ACTIONS(1377), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [396] = { - [ts_builtin_sym_end] = ACTIONS(1383), - [sym_identifier] = ACTIONS(1381), - [aux_sym_preproc_include_token1] = ACTIONS(1381), - [aux_sym_preproc_def_token1] = ACTIONS(1381), - [aux_sym_preproc_if_token1] = ACTIONS(1381), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1381), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1381), - [sym_preproc_directive] = ACTIONS(1381), - [anon_sym_LPAREN2] = ACTIONS(1383), - [anon_sym_BANG] = ACTIONS(1383), - [anon_sym_TILDE] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1381), - [anon_sym_PLUS] = ACTIONS(1381), - [anon_sym_STAR] = ACTIONS(1383), - [anon_sym_AMP] = ACTIONS(1383), - [anon_sym___extension__] = ACTIONS(1381), - [anon_sym_typedef] = ACTIONS(1381), - [anon_sym_extern] = ACTIONS(1381), - [anon_sym___attribute__] = ACTIONS(1381), - [anon_sym___scanf] = ACTIONS(1381), - [anon_sym___printf] = ACTIONS(1381), - [anon_sym___read_mostly] = ACTIONS(1381), - [anon_sym___must_hold] = ACTIONS(1381), - [anon_sym___ro_after_init] = ACTIONS(1381), - [anon_sym___noreturn] = ACTIONS(1381), - [anon_sym___cold] = ACTIONS(1381), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1383), - [anon_sym___declspec] = ACTIONS(1381), - [anon_sym___init] = ACTIONS(1381), - [anon_sym___exit] = ACTIONS(1381), - [anon_sym___cdecl] = ACTIONS(1381), - [anon_sym___clrcall] = ACTIONS(1381), - [anon_sym___stdcall] = ACTIONS(1381), - [anon_sym___fastcall] = ACTIONS(1381), - [anon_sym___thiscall] = ACTIONS(1381), - [anon_sym___vectorcall] = ACTIONS(1381), - [anon_sym_LBRACE] = ACTIONS(1383), - [anon_sym_signed] = ACTIONS(1381), - [anon_sym_unsigned] = ACTIONS(1381), - [anon_sym_long] = ACTIONS(1381), - [anon_sym_short] = ACTIONS(1381), - [anon_sym_static] = ACTIONS(1381), - [anon_sym_auto] = ACTIONS(1381), - [anon_sym_register] = ACTIONS(1381), - [anon_sym_inline] = ACTIONS(1381), - [anon_sym___inline] = ACTIONS(1381), - [anon_sym___inline__] = ACTIONS(1381), - [anon_sym___forceinline] = ACTIONS(1381), - [anon_sym_thread_local] = ACTIONS(1381), - [anon_sym___thread] = ACTIONS(1381), - [anon_sym_const] = ACTIONS(1381), - [anon_sym_constexpr] = ACTIONS(1381), - [anon_sym_volatile] = ACTIONS(1381), - [anon_sym_restrict] = ACTIONS(1381), - [anon_sym___restrict__] = ACTIONS(1381), - [anon_sym__Atomic] = ACTIONS(1381), - [anon_sym__Noreturn] = ACTIONS(1381), - [anon_sym_noreturn] = ACTIONS(1381), - [anon_sym_alignas] = ACTIONS(1381), - [anon_sym__Alignas] = ACTIONS(1381), - [sym_primitive_type] = ACTIONS(1381), - [anon_sym_enum] = ACTIONS(1381), - [anon_sym_struct] = ACTIONS(1381), - [anon_sym_union] = ACTIONS(1381), - [anon_sym_if] = ACTIONS(1381), - [anon_sym_switch] = ACTIONS(1381), - [anon_sym_case] = ACTIONS(1381), - [anon_sym_default] = ACTIONS(1381), - [anon_sym_while] = ACTIONS(1381), - [anon_sym_do] = ACTIONS(1381), - [anon_sym_for] = ACTIONS(1381), - [anon_sym_return] = ACTIONS(1381), - [anon_sym_break] = ACTIONS(1381), - [anon_sym_continue] = ACTIONS(1381), - [anon_sym_goto] = ACTIONS(1381), - [anon_sym_DASH_DASH] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1383), - [anon_sym_sizeof] = ACTIONS(1381), - [anon_sym___alignof__] = ACTIONS(1381), - [anon_sym___alignof] = ACTIONS(1381), - [anon_sym__alignof] = ACTIONS(1381), - [anon_sym_alignof] = ACTIONS(1381), - [anon_sym__Alignof] = ACTIONS(1381), - [anon_sym_offsetof] = ACTIONS(1381), - [anon_sym__Generic] = ACTIONS(1381), - [anon_sym_asm] = ACTIONS(1381), - [anon_sym___asm__] = ACTIONS(1381), - [sym_number_literal] = ACTIONS(1383), - [anon_sym_L_SQUOTE] = ACTIONS(1383), - [anon_sym_u_SQUOTE] = ACTIONS(1383), - [anon_sym_U_SQUOTE] = ACTIONS(1383), - [anon_sym_u8_SQUOTE] = ACTIONS(1383), - [anon_sym_SQUOTE] = ACTIONS(1383), - [anon_sym_L_DQUOTE] = ACTIONS(1383), - [anon_sym_u_DQUOTE] = ACTIONS(1383), - [anon_sym_U_DQUOTE] = ACTIONS(1383), - [anon_sym_u8_DQUOTE] = ACTIONS(1383), - [anon_sym_DQUOTE] = ACTIONS(1383), - [sym_true] = ACTIONS(1381), - [sym_false] = ACTIONS(1381), - [anon_sym_NULL] = ACTIONS(1381), - [anon_sym_nullptr] = ACTIONS(1381), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [397] = { - [ts_builtin_sym_end] = ACTIONS(1307), - [sym_identifier] = ACTIONS(1305), - [aux_sym_preproc_include_token1] = ACTIONS(1305), - [aux_sym_preproc_def_token1] = ACTIONS(1305), - [aux_sym_preproc_if_token1] = ACTIONS(1305), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1305), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1305), - [sym_preproc_directive] = ACTIONS(1305), - [anon_sym_LPAREN2] = ACTIONS(1307), - [anon_sym_BANG] = ACTIONS(1307), - [anon_sym_TILDE] = ACTIONS(1307), - [anon_sym_DASH] = ACTIONS(1305), - [anon_sym_PLUS] = ACTIONS(1305), - [anon_sym_STAR] = ACTIONS(1307), - [anon_sym_AMP] = ACTIONS(1307), - [anon_sym___extension__] = ACTIONS(1305), - [anon_sym_typedef] = ACTIONS(1305), - [anon_sym_extern] = ACTIONS(1305), - [anon_sym___attribute__] = ACTIONS(1305), - [anon_sym___scanf] = ACTIONS(1305), - [anon_sym___printf] = ACTIONS(1305), - [anon_sym___read_mostly] = ACTIONS(1305), - [anon_sym___must_hold] = ACTIONS(1305), - [anon_sym___ro_after_init] = ACTIONS(1305), - [anon_sym___noreturn] = ACTIONS(1305), - [anon_sym___cold] = ACTIONS(1305), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1307), - [anon_sym___declspec] = ACTIONS(1305), - [anon_sym___init] = ACTIONS(1305), - [anon_sym___exit] = ACTIONS(1305), - [anon_sym___cdecl] = ACTIONS(1305), - [anon_sym___clrcall] = ACTIONS(1305), - [anon_sym___stdcall] = ACTIONS(1305), - [anon_sym___fastcall] = ACTIONS(1305), - [anon_sym___thiscall] = ACTIONS(1305), - [anon_sym___vectorcall] = ACTIONS(1305), - [anon_sym_LBRACE] = ACTIONS(1307), - [anon_sym_signed] = ACTIONS(1305), - [anon_sym_unsigned] = ACTIONS(1305), - [anon_sym_long] = ACTIONS(1305), - [anon_sym_short] = ACTIONS(1305), - [anon_sym_static] = ACTIONS(1305), - [anon_sym_auto] = ACTIONS(1305), - [anon_sym_register] = ACTIONS(1305), - [anon_sym_inline] = ACTIONS(1305), - [anon_sym___inline] = ACTIONS(1305), - [anon_sym___inline__] = ACTIONS(1305), - [anon_sym___forceinline] = ACTIONS(1305), - [anon_sym_thread_local] = ACTIONS(1305), - [anon_sym___thread] = ACTIONS(1305), - [anon_sym_const] = ACTIONS(1305), - [anon_sym_constexpr] = ACTIONS(1305), - [anon_sym_volatile] = ACTIONS(1305), - [anon_sym_restrict] = ACTIONS(1305), - [anon_sym___restrict__] = ACTIONS(1305), - [anon_sym__Atomic] = ACTIONS(1305), - [anon_sym__Noreturn] = ACTIONS(1305), - [anon_sym_noreturn] = ACTIONS(1305), - [anon_sym_alignas] = ACTIONS(1305), - [anon_sym__Alignas] = ACTIONS(1305), - [sym_primitive_type] = ACTIONS(1305), - [anon_sym_enum] = ACTIONS(1305), - [anon_sym_struct] = ACTIONS(1305), - [anon_sym_union] = ACTIONS(1305), - [anon_sym_if] = ACTIONS(1305), - [anon_sym_switch] = ACTIONS(1305), - [anon_sym_case] = ACTIONS(1305), - [anon_sym_default] = ACTIONS(1305), - [anon_sym_while] = ACTIONS(1305), - [anon_sym_do] = ACTIONS(1305), - [anon_sym_for] = ACTIONS(1305), - [anon_sym_return] = ACTIONS(1305), - [anon_sym_break] = ACTIONS(1305), - [anon_sym_continue] = ACTIONS(1305), - [anon_sym_goto] = ACTIONS(1305), - [anon_sym_DASH_DASH] = ACTIONS(1307), - [anon_sym_PLUS_PLUS] = ACTIONS(1307), - [anon_sym_sizeof] = ACTIONS(1305), - [anon_sym___alignof__] = ACTIONS(1305), - [anon_sym___alignof] = ACTIONS(1305), - [anon_sym__alignof] = ACTIONS(1305), - [anon_sym_alignof] = ACTIONS(1305), - [anon_sym__Alignof] = ACTIONS(1305), - [anon_sym_offsetof] = ACTIONS(1305), - [anon_sym__Generic] = ACTIONS(1305), - [anon_sym_asm] = ACTIONS(1305), - [anon_sym___asm__] = ACTIONS(1305), - [sym_number_literal] = ACTIONS(1307), - [anon_sym_L_SQUOTE] = ACTIONS(1307), - [anon_sym_u_SQUOTE] = ACTIONS(1307), - [anon_sym_U_SQUOTE] = ACTIONS(1307), - [anon_sym_u8_SQUOTE] = ACTIONS(1307), - [anon_sym_SQUOTE] = ACTIONS(1307), - [anon_sym_L_DQUOTE] = ACTIONS(1307), - [anon_sym_u_DQUOTE] = ACTIONS(1307), - [anon_sym_U_DQUOTE] = ACTIONS(1307), - [anon_sym_u8_DQUOTE] = ACTIONS(1307), - [anon_sym_DQUOTE] = ACTIONS(1307), - [sym_true] = ACTIONS(1305), - [sym_false] = ACTIONS(1305), - [anon_sym_NULL] = ACTIONS(1305), - [anon_sym_nullptr] = ACTIONS(1305), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [398] = { - [ts_builtin_sym_end] = ACTIONS(1367), - [sym_identifier] = ACTIONS(1365), - [aux_sym_preproc_include_token1] = ACTIONS(1365), - [aux_sym_preproc_def_token1] = ACTIONS(1365), - [aux_sym_preproc_if_token1] = ACTIONS(1365), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1365), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1365), - [sym_preproc_directive] = ACTIONS(1365), - [anon_sym_LPAREN2] = ACTIONS(1367), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_DASH] = ACTIONS(1365), - [anon_sym_PLUS] = ACTIONS(1365), - [anon_sym_STAR] = ACTIONS(1367), - [anon_sym_AMP] = ACTIONS(1367), - [anon_sym___extension__] = ACTIONS(1365), - [anon_sym_typedef] = ACTIONS(1365), - [anon_sym_extern] = ACTIONS(1365), - [anon_sym___attribute__] = ACTIONS(1365), - [anon_sym___scanf] = ACTIONS(1365), - [anon_sym___printf] = ACTIONS(1365), - [anon_sym___read_mostly] = ACTIONS(1365), - [anon_sym___must_hold] = ACTIONS(1365), - [anon_sym___ro_after_init] = ACTIONS(1365), - [anon_sym___noreturn] = ACTIONS(1365), - [anon_sym___cold] = ACTIONS(1365), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1367), - [anon_sym___declspec] = ACTIONS(1365), - [anon_sym___init] = ACTIONS(1365), - [anon_sym___exit] = ACTIONS(1365), - [anon_sym___cdecl] = ACTIONS(1365), - [anon_sym___clrcall] = ACTIONS(1365), - [anon_sym___stdcall] = ACTIONS(1365), - [anon_sym___fastcall] = ACTIONS(1365), - [anon_sym___thiscall] = ACTIONS(1365), - [anon_sym___vectorcall] = ACTIONS(1365), - [anon_sym_LBRACE] = ACTIONS(1367), - [anon_sym_signed] = ACTIONS(1365), - [anon_sym_unsigned] = ACTIONS(1365), - [anon_sym_long] = ACTIONS(1365), - [anon_sym_short] = ACTIONS(1365), - [anon_sym_static] = ACTIONS(1365), - [anon_sym_auto] = ACTIONS(1365), - [anon_sym_register] = ACTIONS(1365), - [anon_sym_inline] = ACTIONS(1365), - [anon_sym___inline] = ACTIONS(1365), - [anon_sym___inline__] = ACTIONS(1365), - [anon_sym___forceinline] = ACTIONS(1365), - [anon_sym_thread_local] = ACTIONS(1365), - [anon_sym___thread] = ACTIONS(1365), - [anon_sym_const] = ACTIONS(1365), - [anon_sym_constexpr] = ACTIONS(1365), - [anon_sym_volatile] = ACTIONS(1365), - [anon_sym_restrict] = ACTIONS(1365), - [anon_sym___restrict__] = ACTIONS(1365), - [anon_sym__Atomic] = ACTIONS(1365), - [anon_sym__Noreturn] = ACTIONS(1365), - [anon_sym_noreturn] = ACTIONS(1365), - [anon_sym_alignas] = ACTIONS(1365), - [anon_sym__Alignas] = ACTIONS(1365), - [sym_primitive_type] = ACTIONS(1365), - [anon_sym_enum] = ACTIONS(1365), - [anon_sym_struct] = ACTIONS(1365), - [anon_sym_union] = ACTIONS(1365), - [anon_sym_if] = ACTIONS(1365), - [anon_sym_switch] = ACTIONS(1365), - [anon_sym_case] = ACTIONS(1365), - [anon_sym_default] = ACTIONS(1365), - [anon_sym_while] = ACTIONS(1365), - [anon_sym_do] = ACTIONS(1365), - [anon_sym_for] = ACTIONS(1365), - [anon_sym_return] = ACTIONS(1365), - [anon_sym_break] = ACTIONS(1365), - [anon_sym_continue] = ACTIONS(1365), - [anon_sym_goto] = ACTIONS(1365), - [anon_sym_DASH_DASH] = ACTIONS(1367), - [anon_sym_PLUS_PLUS] = ACTIONS(1367), - [anon_sym_sizeof] = ACTIONS(1365), - [anon_sym___alignof__] = ACTIONS(1365), - [anon_sym___alignof] = ACTIONS(1365), - [anon_sym__alignof] = ACTIONS(1365), - [anon_sym_alignof] = ACTIONS(1365), - [anon_sym__Alignof] = ACTIONS(1365), - [anon_sym_offsetof] = ACTIONS(1365), - [anon_sym__Generic] = ACTIONS(1365), - [anon_sym_asm] = ACTIONS(1365), - [anon_sym___asm__] = ACTIONS(1365), - [sym_number_literal] = ACTIONS(1367), - [anon_sym_L_SQUOTE] = ACTIONS(1367), - [anon_sym_u_SQUOTE] = ACTIONS(1367), - [anon_sym_U_SQUOTE] = ACTIONS(1367), - [anon_sym_u8_SQUOTE] = ACTIONS(1367), - [anon_sym_SQUOTE] = ACTIONS(1367), - [anon_sym_L_DQUOTE] = ACTIONS(1367), - [anon_sym_u_DQUOTE] = ACTIONS(1367), - [anon_sym_U_DQUOTE] = ACTIONS(1367), - [anon_sym_u8_DQUOTE] = ACTIONS(1367), - [anon_sym_DQUOTE] = ACTIONS(1367), - [sym_true] = ACTIONS(1365), - [sym_false] = ACTIONS(1365), - [anon_sym_NULL] = ACTIONS(1365), - [anon_sym_nullptr] = ACTIONS(1365), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [399] = { - [ts_builtin_sym_end] = ACTIONS(1447), - [sym_identifier] = ACTIONS(1449), - [aux_sym_preproc_include_token1] = ACTIONS(1449), - [aux_sym_preproc_def_token1] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1449), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1449), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1449), - [sym_preproc_directive] = ACTIONS(1449), - [anon_sym_LPAREN2] = ACTIONS(1447), - [anon_sym_BANG] = ACTIONS(1447), - [anon_sym_TILDE] = ACTIONS(1447), - [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_STAR] = ACTIONS(1447), - [anon_sym_AMP] = ACTIONS(1447), - [anon_sym___extension__] = ACTIONS(1449), - [anon_sym_typedef] = ACTIONS(1449), - [anon_sym_extern] = ACTIONS(1449), - [anon_sym___attribute__] = ACTIONS(1449), - [anon_sym___scanf] = ACTIONS(1449), - [anon_sym___printf] = ACTIONS(1449), - [anon_sym___read_mostly] = ACTIONS(1449), - [anon_sym___must_hold] = ACTIONS(1449), - [anon_sym___ro_after_init] = ACTIONS(1449), - [anon_sym___noreturn] = ACTIONS(1449), - [anon_sym___cold] = ACTIONS(1449), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1447), - [anon_sym___declspec] = ACTIONS(1449), - [anon_sym___init] = ACTIONS(1449), - [anon_sym___exit] = ACTIONS(1449), - [anon_sym___cdecl] = ACTIONS(1449), - [anon_sym___clrcall] = ACTIONS(1449), - [anon_sym___stdcall] = ACTIONS(1449), - [anon_sym___fastcall] = ACTIONS(1449), - [anon_sym___thiscall] = ACTIONS(1449), - [anon_sym___vectorcall] = ACTIONS(1449), - [anon_sym_LBRACE] = ACTIONS(1447), - [anon_sym_signed] = ACTIONS(1449), - [anon_sym_unsigned] = ACTIONS(1449), - [anon_sym_long] = ACTIONS(1449), - [anon_sym_short] = ACTIONS(1449), - [anon_sym_static] = ACTIONS(1449), - [anon_sym_auto] = ACTIONS(1449), - [anon_sym_register] = ACTIONS(1449), - [anon_sym_inline] = ACTIONS(1449), - [anon_sym___inline] = ACTIONS(1449), - [anon_sym___inline__] = ACTIONS(1449), - [anon_sym___forceinline] = ACTIONS(1449), - [anon_sym_thread_local] = ACTIONS(1449), - [anon_sym___thread] = ACTIONS(1449), - [anon_sym_const] = ACTIONS(1449), - [anon_sym_constexpr] = ACTIONS(1449), - [anon_sym_volatile] = ACTIONS(1449), - [anon_sym_restrict] = ACTIONS(1449), - [anon_sym___restrict__] = ACTIONS(1449), - [anon_sym__Atomic] = ACTIONS(1449), - [anon_sym__Noreturn] = ACTIONS(1449), - [anon_sym_noreturn] = ACTIONS(1449), - [anon_sym_alignas] = ACTIONS(1449), - [anon_sym__Alignas] = ACTIONS(1449), - [sym_primitive_type] = ACTIONS(1449), - [anon_sym_enum] = ACTIONS(1449), - [anon_sym_struct] = ACTIONS(1449), - [anon_sym_union] = ACTIONS(1449), - [anon_sym_if] = ACTIONS(1449), - [anon_sym_switch] = ACTIONS(1449), - [anon_sym_case] = ACTIONS(1449), - [anon_sym_default] = ACTIONS(1449), - [anon_sym_while] = ACTIONS(1449), - [anon_sym_do] = ACTIONS(1449), - [anon_sym_for] = ACTIONS(1449), - [anon_sym_return] = ACTIONS(1449), - [anon_sym_break] = ACTIONS(1449), - [anon_sym_continue] = ACTIONS(1449), - [anon_sym_goto] = ACTIONS(1449), - [anon_sym_DASH_DASH] = ACTIONS(1447), - [anon_sym_PLUS_PLUS] = ACTIONS(1447), - [anon_sym_sizeof] = ACTIONS(1449), - [anon_sym___alignof__] = ACTIONS(1449), - [anon_sym___alignof] = ACTIONS(1449), - [anon_sym__alignof] = ACTIONS(1449), - [anon_sym_alignof] = ACTIONS(1449), - [anon_sym__Alignof] = ACTIONS(1449), - [anon_sym_offsetof] = ACTIONS(1449), - [anon_sym__Generic] = ACTIONS(1449), - [anon_sym_asm] = ACTIONS(1449), - [anon_sym___asm__] = ACTIONS(1449), - [sym_number_literal] = ACTIONS(1447), - [anon_sym_L_SQUOTE] = ACTIONS(1447), - [anon_sym_u_SQUOTE] = ACTIONS(1447), - [anon_sym_U_SQUOTE] = ACTIONS(1447), - [anon_sym_u8_SQUOTE] = ACTIONS(1447), - [anon_sym_SQUOTE] = ACTIONS(1447), - [anon_sym_L_DQUOTE] = ACTIONS(1447), - [anon_sym_u_DQUOTE] = ACTIONS(1447), - [anon_sym_U_DQUOTE] = ACTIONS(1447), - [anon_sym_u8_DQUOTE] = ACTIONS(1447), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_true] = ACTIONS(1449), - [sym_false] = ACTIONS(1449), - [anon_sym_NULL] = ACTIONS(1449), - [anon_sym_nullptr] = ACTIONS(1449), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [400] = { - [ts_builtin_sym_end] = ACTIONS(1371), - [sym_identifier] = ACTIONS(1369), - [aux_sym_preproc_include_token1] = ACTIONS(1369), - [aux_sym_preproc_def_token1] = ACTIONS(1369), - [aux_sym_preproc_if_token1] = ACTIONS(1369), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1369), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1369), - [sym_preproc_directive] = ACTIONS(1369), - [anon_sym_LPAREN2] = ACTIONS(1371), - [anon_sym_BANG] = ACTIONS(1371), - [anon_sym_TILDE] = ACTIONS(1371), - [anon_sym_DASH] = ACTIONS(1369), - [anon_sym_PLUS] = ACTIONS(1369), - [anon_sym_STAR] = ACTIONS(1371), - [anon_sym_AMP] = ACTIONS(1371), - [anon_sym___extension__] = ACTIONS(1369), - [anon_sym_typedef] = ACTIONS(1369), - [anon_sym_extern] = ACTIONS(1369), - [anon_sym___attribute__] = ACTIONS(1369), - [anon_sym___scanf] = ACTIONS(1369), - [anon_sym___printf] = ACTIONS(1369), - [anon_sym___read_mostly] = ACTIONS(1369), - [anon_sym___must_hold] = ACTIONS(1369), - [anon_sym___ro_after_init] = ACTIONS(1369), - [anon_sym___noreturn] = ACTIONS(1369), - [anon_sym___cold] = ACTIONS(1369), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1371), - [anon_sym___declspec] = ACTIONS(1369), - [anon_sym___init] = ACTIONS(1369), - [anon_sym___exit] = ACTIONS(1369), - [anon_sym___cdecl] = ACTIONS(1369), - [anon_sym___clrcall] = ACTIONS(1369), - [anon_sym___stdcall] = ACTIONS(1369), - [anon_sym___fastcall] = ACTIONS(1369), - [anon_sym___thiscall] = ACTIONS(1369), - [anon_sym___vectorcall] = ACTIONS(1369), - [anon_sym_LBRACE] = ACTIONS(1371), - [anon_sym_signed] = ACTIONS(1369), - [anon_sym_unsigned] = ACTIONS(1369), - [anon_sym_long] = ACTIONS(1369), - [anon_sym_short] = ACTIONS(1369), - [anon_sym_static] = ACTIONS(1369), - [anon_sym_auto] = ACTIONS(1369), - [anon_sym_register] = ACTIONS(1369), - [anon_sym_inline] = ACTIONS(1369), - [anon_sym___inline] = ACTIONS(1369), - [anon_sym___inline__] = ACTIONS(1369), - [anon_sym___forceinline] = ACTIONS(1369), - [anon_sym_thread_local] = ACTIONS(1369), - [anon_sym___thread] = ACTIONS(1369), - [anon_sym_const] = ACTIONS(1369), - [anon_sym_constexpr] = ACTIONS(1369), - [anon_sym_volatile] = ACTIONS(1369), - [anon_sym_restrict] = ACTIONS(1369), - [anon_sym___restrict__] = ACTIONS(1369), - [anon_sym__Atomic] = ACTIONS(1369), - [anon_sym__Noreturn] = ACTIONS(1369), - [anon_sym_noreturn] = ACTIONS(1369), - [anon_sym_alignas] = ACTIONS(1369), - [anon_sym__Alignas] = ACTIONS(1369), - [sym_primitive_type] = ACTIONS(1369), - [anon_sym_enum] = ACTIONS(1369), - [anon_sym_struct] = ACTIONS(1369), - [anon_sym_union] = ACTIONS(1369), - [anon_sym_if] = ACTIONS(1369), - [anon_sym_switch] = ACTIONS(1369), - [anon_sym_case] = ACTIONS(1369), - [anon_sym_default] = ACTIONS(1369), - [anon_sym_while] = ACTIONS(1369), - [anon_sym_do] = ACTIONS(1369), - [anon_sym_for] = ACTIONS(1369), - [anon_sym_return] = ACTIONS(1369), - [anon_sym_break] = ACTIONS(1369), - [anon_sym_continue] = ACTIONS(1369), - [anon_sym_goto] = ACTIONS(1369), - [anon_sym_DASH_DASH] = ACTIONS(1371), - [anon_sym_PLUS_PLUS] = ACTIONS(1371), - [anon_sym_sizeof] = ACTIONS(1369), - [anon_sym___alignof__] = ACTIONS(1369), - [anon_sym___alignof] = ACTIONS(1369), - [anon_sym__alignof] = ACTIONS(1369), - [anon_sym_alignof] = ACTIONS(1369), - [anon_sym__Alignof] = ACTIONS(1369), - [anon_sym_offsetof] = ACTIONS(1369), - [anon_sym__Generic] = ACTIONS(1369), - [anon_sym_asm] = ACTIONS(1369), - [anon_sym___asm__] = ACTIONS(1369), - [sym_number_literal] = ACTIONS(1371), - [anon_sym_L_SQUOTE] = ACTIONS(1371), - [anon_sym_u_SQUOTE] = ACTIONS(1371), - [anon_sym_U_SQUOTE] = ACTIONS(1371), - [anon_sym_u8_SQUOTE] = ACTIONS(1371), - [anon_sym_SQUOTE] = ACTIONS(1371), - [anon_sym_L_DQUOTE] = ACTIONS(1371), - [anon_sym_u_DQUOTE] = ACTIONS(1371), - [anon_sym_U_DQUOTE] = ACTIONS(1371), - [anon_sym_u8_DQUOTE] = ACTIONS(1371), - [anon_sym_DQUOTE] = ACTIONS(1371), - [sym_true] = ACTIONS(1369), - [sym_false] = ACTIONS(1369), - [anon_sym_NULL] = ACTIONS(1369), - [anon_sym_nullptr] = ACTIONS(1369), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [401] = { - [ts_builtin_sym_end] = ACTIONS(1451), - [sym_identifier] = ACTIONS(1454), - [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(1451), - [anon_sym_BANG] = ACTIONS(1451), - [anon_sym_TILDE] = ACTIONS(1451), - [anon_sym_DASH] = ACTIONS(1454), - [anon_sym_PLUS] = ACTIONS(1454), - [anon_sym_STAR] = ACTIONS(1451), - [anon_sym_AMP] = ACTIONS(1451), - [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(1451), - [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(1451), - [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(1451), - [anon_sym_PLUS_PLUS] = ACTIONS(1451), - [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(1451), - [anon_sym_L_SQUOTE] = ACTIONS(1451), - [anon_sym_u_SQUOTE] = ACTIONS(1451), - [anon_sym_U_SQUOTE] = ACTIONS(1451), - [anon_sym_u8_SQUOTE] = ACTIONS(1451), - [anon_sym_SQUOTE] = ACTIONS(1451), - [anon_sym_L_DQUOTE] = ACTIONS(1451), - [anon_sym_u_DQUOTE] = ACTIONS(1451), - [anon_sym_U_DQUOTE] = ACTIONS(1451), - [anon_sym_u8_DQUOTE] = ACTIONS(1451), - [anon_sym_DQUOTE] = ACTIONS(1451), - [sym_true] = ACTIONS(1454), - [sym_false] = ACTIONS(1454), - [anon_sym_NULL] = ACTIONS(1454), - [anon_sym_nullptr] = ACTIONS(1454), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [402] = { - [ts_builtin_sym_end] = ACTIONS(1331), - [sym_identifier] = ACTIONS(1329), - [aux_sym_preproc_include_token1] = ACTIONS(1329), - [aux_sym_preproc_def_token1] = ACTIONS(1329), - [aux_sym_preproc_if_token1] = ACTIONS(1329), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1329), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1329), - [sym_preproc_directive] = ACTIONS(1329), - [anon_sym_LPAREN2] = ACTIONS(1331), - [anon_sym_BANG] = ACTIONS(1331), - [anon_sym_TILDE] = ACTIONS(1331), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_STAR] = ACTIONS(1331), - [anon_sym_AMP] = ACTIONS(1331), - [anon_sym___extension__] = ACTIONS(1329), - [anon_sym_typedef] = ACTIONS(1329), - [anon_sym_extern] = ACTIONS(1329), - [anon_sym___attribute__] = ACTIONS(1329), - [anon_sym___scanf] = ACTIONS(1329), - [anon_sym___printf] = ACTIONS(1329), - [anon_sym___read_mostly] = ACTIONS(1329), - [anon_sym___must_hold] = ACTIONS(1329), - [anon_sym___ro_after_init] = ACTIONS(1329), - [anon_sym___noreturn] = ACTIONS(1329), - [anon_sym___cold] = ACTIONS(1329), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1331), - [anon_sym___declspec] = ACTIONS(1329), - [anon_sym___init] = ACTIONS(1329), - [anon_sym___exit] = ACTIONS(1329), - [anon_sym___cdecl] = ACTIONS(1329), - [anon_sym___clrcall] = ACTIONS(1329), - [anon_sym___stdcall] = ACTIONS(1329), - [anon_sym___fastcall] = ACTIONS(1329), - [anon_sym___thiscall] = ACTIONS(1329), - [anon_sym___vectorcall] = ACTIONS(1329), - [anon_sym_LBRACE] = ACTIONS(1331), - [anon_sym_signed] = ACTIONS(1329), - [anon_sym_unsigned] = ACTIONS(1329), - [anon_sym_long] = ACTIONS(1329), - [anon_sym_short] = ACTIONS(1329), - [anon_sym_static] = ACTIONS(1329), - [anon_sym_auto] = ACTIONS(1329), - [anon_sym_register] = ACTIONS(1329), - [anon_sym_inline] = ACTIONS(1329), - [anon_sym___inline] = ACTIONS(1329), - [anon_sym___inline__] = ACTIONS(1329), - [anon_sym___forceinline] = ACTIONS(1329), - [anon_sym_thread_local] = ACTIONS(1329), - [anon_sym___thread] = ACTIONS(1329), - [anon_sym_const] = ACTIONS(1329), - [anon_sym_constexpr] = ACTIONS(1329), - [anon_sym_volatile] = ACTIONS(1329), - [anon_sym_restrict] = ACTIONS(1329), - [anon_sym___restrict__] = ACTIONS(1329), - [anon_sym__Atomic] = ACTIONS(1329), - [anon_sym__Noreturn] = ACTIONS(1329), - [anon_sym_noreturn] = ACTIONS(1329), - [anon_sym_alignas] = ACTIONS(1329), - [anon_sym__Alignas] = ACTIONS(1329), - [sym_primitive_type] = ACTIONS(1329), - [anon_sym_enum] = ACTIONS(1329), - [anon_sym_struct] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1329), - [anon_sym_if] = ACTIONS(1329), - [anon_sym_switch] = ACTIONS(1329), - [anon_sym_case] = ACTIONS(1329), - [anon_sym_default] = ACTIONS(1329), - [anon_sym_while] = ACTIONS(1329), - [anon_sym_do] = ACTIONS(1329), - [anon_sym_for] = ACTIONS(1329), - [anon_sym_return] = ACTIONS(1329), - [anon_sym_break] = ACTIONS(1329), - [anon_sym_continue] = ACTIONS(1329), - [anon_sym_goto] = ACTIONS(1329), - [anon_sym_DASH_DASH] = ACTIONS(1331), - [anon_sym_PLUS_PLUS] = ACTIONS(1331), - [anon_sym_sizeof] = ACTIONS(1329), - [anon_sym___alignof__] = ACTIONS(1329), - [anon_sym___alignof] = ACTIONS(1329), - [anon_sym__alignof] = ACTIONS(1329), - [anon_sym_alignof] = ACTIONS(1329), - [anon_sym__Alignof] = ACTIONS(1329), - [anon_sym_offsetof] = ACTIONS(1329), - [anon_sym__Generic] = ACTIONS(1329), - [anon_sym_asm] = ACTIONS(1329), - [anon_sym___asm__] = ACTIONS(1329), - [sym_number_literal] = ACTIONS(1331), - [anon_sym_L_SQUOTE] = ACTIONS(1331), - [anon_sym_u_SQUOTE] = ACTIONS(1331), - [anon_sym_U_SQUOTE] = ACTIONS(1331), - [anon_sym_u8_SQUOTE] = ACTIONS(1331), - [anon_sym_SQUOTE] = ACTIONS(1331), - [anon_sym_L_DQUOTE] = ACTIONS(1331), - [anon_sym_u_DQUOTE] = ACTIONS(1331), - [anon_sym_U_DQUOTE] = ACTIONS(1331), - [anon_sym_u8_DQUOTE] = ACTIONS(1331), - [anon_sym_DQUOTE] = ACTIONS(1331), - [sym_true] = ACTIONS(1329), - [sym_false] = ACTIONS(1329), - [anon_sym_NULL] = ACTIONS(1329), - [anon_sym_nullptr] = ACTIONS(1329), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [403] = { - [ts_builtin_sym_end] = ACTIONS(1375), - [sym_identifier] = ACTIONS(1373), - [aux_sym_preproc_include_token1] = ACTIONS(1373), - [aux_sym_preproc_def_token1] = ACTIONS(1373), - [aux_sym_preproc_if_token1] = ACTIONS(1373), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1373), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1373), - [sym_preproc_directive] = ACTIONS(1373), - [anon_sym_LPAREN2] = ACTIONS(1375), - [anon_sym_BANG] = ACTIONS(1375), - [anon_sym_TILDE] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1373), - [anon_sym_PLUS] = ACTIONS(1373), - [anon_sym_STAR] = ACTIONS(1375), - [anon_sym_AMP] = ACTIONS(1375), - [anon_sym___extension__] = ACTIONS(1373), - [anon_sym_typedef] = ACTIONS(1373), - [anon_sym_extern] = ACTIONS(1373), - [anon_sym___attribute__] = ACTIONS(1373), - [anon_sym___scanf] = ACTIONS(1373), - [anon_sym___printf] = ACTIONS(1373), - [anon_sym___read_mostly] = ACTIONS(1373), - [anon_sym___must_hold] = ACTIONS(1373), - [anon_sym___ro_after_init] = ACTIONS(1373), - [anon_sym___noreturn] = ACTIONS(1373), - [anon_sym___cold] = ACTIONS(1373), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1375), - [anon_sym___declspec] = ACTIONS(1373), - [anon_sym___init] = ACTIONS(1373), - [anon_sym___exit] = ACTIONS(1373), - [anon_sym___cdecl] = ACTIONS(1373), - [anon_sym___clrcall] = ACTIONS(1373), - [anon_sym___stdcall] = ACTIONS(1373), - [anon_sym___fastcall] = ACTIONS(1373), - [anon_sym___thiscall] = ACTIONS(1373), - [anon_sym___vectorcall] = ACTIONS(1373), - [anon_sym_LBRACE] = ACTIONS(1375), - [anon_sym_signed] = ACTIONS(1373), - [anon_sym_unsigned] = ACTIONS(1373), - [anon_sym_long] = ACTIONS(1373), - [anon_sym_short] = ACTIONS(1373), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_auto] = ACTIONS(1373), - [anon_sym_register] = ACTIONS(1373), - [anon_sym_inline] = ACTIONS(1373), - [anon_sym___inline] = ACTIONS(1373), - [anon_sym___inline__] = ACTIONS(1373), - [anon_sym___forceinline] = ACTIONS(1373), - [anon_sym_thread_local] = ACTIONS(1373), - [anon_sym___thread] = ACTIONS(1373), - [anon_sym_const] = ACTIONS(1373), - [anon_sym_constexpr] = ACTIONS(1373), - [anon_sym_volatile] = ACTIONS(1373), - [anon_sym_restrict] = ACTIONS(1373), - [anon_sym___restrict__] = ACTIONS(1373), - [anon_sym__Atomic] = ACTIONS(1373), - [anon_sym__Noreturn] = ACTIONS(1373), - [anon_sym_noreturn] = ACTIONS(1373), - [anon_sym_alignas] = ACTIONS(1373), - [anon_sym__Alignas] = ACTIONS(1373), - [sym_primitive_type] = ACTIONS(1373), - [anon_sym_enum] = ACTIONS(1373), - [anon_sym_struct] = ACTIONS(1373), - [anon_sym_union] = ACTIONS(1373), - [anon_sym_if] = ACTIONS(1373), - [anon_sym_switch] = ACTIONS(1373), - [anon_sym_case] = ACTIONS(1373), - [anon_sym_default] = ACTIONS(1373), - [anon_sym_while] = ACTIONS(1373), - [anon_sym_do] = ACTIONS(1373), - [anon_sym_for] = ACTIONS(1373), - [anon_sym_return] = ACTIONS(1373), - [anon_sym_break] = ACTIONS(1373), - [anon_sym_continue] = ACTIONS(1373), - [anon_sym_goto] = ACTIONS(1373), - [anon_sym_DASH_DASH] = ACTIONS(1375), - [anon_sym_PLUS_PLUS] = ACTIONS(1375), - [anon_sym_sizeof] = ACTIONS(1373), - [anon_sym___alignof__] = ACTIONS(1373), - [anon_sym___alignof] = ACTIONS(1373), - [anon_sym__alignof] = ACTIONS(1373), - [anon_sym_alignof] = ACTIONS(1373), - [anon_sym__Alignof] = ACTIONS(1373), - [anon_sym_offsetof] = ACTIONS(1373), - [anon_sym__Generic] = ACTIONS(1373), - [anon_sym_asm] = ACTIONS(1373), - [anon_sym___asm__] = ACTIONS(1373), - [sym_number_literal] = ACTIONS(1375), - [anon_sym_L_SQUOTE] = ACTIONS(1375), - [anon_sym_u_SQUOTE] = ACTIONS(1375), - [anon_sym_U_SQUOTE] = ACTIONS(1375), - [anon_sym_u8_SQUOTE] = ACTIONS(1375), - [anon_sym_SQUOTE] = ACTIONS(1375), - [anon_sym_L_DQUOTE] = ACTIONS(1375), - [anon_sym_u_DQUOTE] = ACTIONS(1375), - [anon_sym_U_DQUOTE] = ACTIONS(1375), - [anon_sym_u8_DQUOTE] = ACTIONS(1375), - [anon_sym_DQUOTE] = ACTIONS(1375), - [sym_true] = ACTIONS(1373), - [sym_false] = ACTIONS(1373), - [anon_sym_NULL] = ACTIONS(1373), - [anon_sym_nullptr] = ACTIONS(1373), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [404] = { - [ts_builtin_sym_end] = ACTIONS(1303), - [sym_identifier] = ACTIONS(1301), - [aux_sym_preproc_include_token1] = ACTIONS(1301), - [aux_sym_preproc_def_token1] = ACTIONS(1301), - [aux_sym_preproc_if_token1] = ACTIONS(1301), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1301), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1301), - [sym_preproc_directive] = ACTIONS(1301), - [anon_sym_LPAREN2] = ACTIONS(1303), - [anon_sym_BANG] = ACTIONS(1303), - [anon_sym_TILDE] = ACTIONS(1303), - [anon_sym_DASH] = ACTIONS(1301), - [anon_sym_PLUS] = ACTIONS(1301), - [anon_sym_STAR] = ACTIONS(1303), - [anon_sym_AMP] = ACTIONS(1303), - [anon_sym___extension__] = ACTIONS(1301), - [anon_sym_typedef] = ACTIONS(1301), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym___attribute__] = ACTIONS(1301), - [anon_sym___scanf] = ACTIONS(1301), - [anon_sym___printf] = ACTIONS(1301), - [anon_sym___read_mostly] = ACTIONS(1301), - [anon_sym___must_hold] = ACTIONS(1301), - [anon_sym___ro_after_init] = ACTIONS(1301), - [anon_sym___noreturn] = ACTIONS(1301), - [anon_sym___cold] = ACTIONS(1301), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1303), - [anon_sym___declspec] = ACTIONS(1301), - [anon_sym___init] = ACTIONS(1301), - [anon_sym___exit] = ACTIONS(1301), - [anon_sym___cdecl] = ACTIONS(1301), - [anon_sym___clrcall] = ACTIONS(1301), - [anon_sym___stdcall] = ACTIONS(1301), - [anon_sym___fastcall] = ACTIONS(1301), - [anon_sym___thiscall] = ACTIONS(1301), - [anon_sym___vectorcall] = ACTIONS(1301), - [anon_sym_LBRACE] = ACTIONS(1303), - [anon_sym_signed] = ACTIONS(1301), - [anon_sym_unsigned] = ACTIONS(1301), - [anon_sym_long] = ACTIONS(1301), - [anon_sym_short] = ACTIONS(1301), - [anon_sym_static] = ACTIONS(1301), - [anon_sym_auto] = ACTIONS(1301), - [anon_sym_register] = ACTIONS(1301), - [anon_sym_inline] = ACTIONS(1301), - [anon_sym___inline] = ACTIONS(1301), - [anon_sym___inline__] = ACTIONS(1301), - [anon_sym___forceinline] = ACTIONS(1301), - [anon_sym_thread_local] = ACTIONS(1301), - [anon_sym___thread] = ACTIONS(1301), - [anon_sym_const] = ACTIONS(1301), - [anon_sym_constexpr] = ACTIONS(1301), - [anon_sym_volatile] = ACTIONS(1301), - [anon_sym_restrict] = ACTIONS(1301), - [anon_sym___restrict__] = ACTIONS(1301), - [anon_sym__Atomic] = ACTIONS(1301), - [anon_sym__Noreturn] = ACTIONS(1301), - [anon_sym_noreturn] = ACTIONS(1301), - [anon_sym_alignas] = ACTIONS(1301), - [anon_sym__Alignas] = ACTIONS(1301), - [sym_primitive_type] = ACTIONS(1301), - [anon_sym_enum] = ACTIONS(1301), - [anon_sym_struct] = ACTIONS(1301), - [anon_sym_union] = ACTIONS(1301), - [anon_sym_if] = ACTIONS(1301), - [anon_sym_switch] = ACTIONS(1301), - [anon_sym_case] = ACTIONS(1301), - [anon_sym_default] = ACTIONS(1301), - [anon_sym_while] = ACTIONS(1301), - [anon_sym_do] = ACTIONS(1301), - [anon_sym_for] = ACTIONS(1301), - [anon_sym_return] = ACTIONS(1301), - [anon_sym_break] = ACTIONS(1301), - [anon_sym_continue] = ACTIONS(1301), - [anon_sym_goto] = ACTIONS(1301), - [anon_sym_DASH_DASH] = ACTIONS(1303), - [anon_sym_PLUS_PLUS] = ACTIONS(1303), - [anon_sym_sizeof] = ACTIONS(1301), - [anon_sym___alignof__] = ACTIONS(1301), - [anon_sym___alignof] = ACTIONS(1301), - [anon_sym__alignof] = ACTIONS(1301), - [anon_sym_alignof] = ACTIONS(1301), - [anon_sym__Alignof] = ACTIONS(1301), - [anon_sym_offsetof] = ACTIONS(1301), - [anon_sym__Generic] = ACTIONS(1301), - [anon_sym_asm] = ACTIONS(1301), - [anon_sym___asm__] = ACTIONS(1301), - [sym_number_literal] = ACTIONS(1303), - [anon_sym_L_SQUOTE] = ACTIONS(1303), - [anon_sym_u_SQUOTE] = ACTIONS(1303), - [anon_sym_U_SQUOTE] = ACTIONS(1303), - [anon_sym_u8_SQUOTE] = ACTIONS(1303), - [anon_sym_SQUOTE] = ACTIONS(1303), - [anon_sym_L_DQUOTE] = ACTIONS(1303), - [anon_sym_u_DQUOTE] = ACTIONS(1303), - [anon_sym_U_DQUOTE] = ACTIONS(1303), - [anon_sym_u8_DQUOTE] = ACTIONS(1303), - [anon_sym_DQUOTE] = ACTIONS(1303), - [sym_true] = ACTIONS(1301), - [sym_false] = ACTIONS(1301), - [anon_sym_NULL] = ACTIONS(1301), - [anon_sym_nullptr] = ACTIONS(1301), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [405] = { - [sym_expression] = STATE(771), - [sym__string] = STATE(758), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(762), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(762), - [sym_call_expression] = STATE(762), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(762), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(762), - [sym_initializer_list] = STATE(760), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(940), - [sym_null] = STATE(758), - [sym_identifier] = ACTIONS(1437), - [anon_sym_COMMA] = ACTIONS(1431), - [aux_sym_preproc_if_token2] = ACTIONS(1431), - [aux_sym_preproc_else_token1] = ACTIONS(1431), - [aux_sym_preproc_elif_token1] = ACTIONS(1437), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1431), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1431), - [anon_sym_LPAREN2] = ACTIONS(1431), - [anon_sym_BANG] = ACTIONS(1457), - [anon_sym_TILDE] = ACTIONS(1459), - [anon_sym_DASH] = ACTIONS(1437), - [anon_sym_PLUS] = ACTIONS(1437), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1437), - [anon_sym_PIPE_PIPE] = ACTIONS(1431), - [anon_sym_AMP_AMP] = ACTIONS(1431), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_CARET] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(1437), - [anon_sym_EQ_EQ] = ACTIONS(1431), - [anon_sym_BANG_EQ] = ACTIONS(1431), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_GT_EQ] = ACTIONS(1431), - [anon_sym_LT_EQ] = ACTIONS(1431), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_LT_LT] = ACTIONS(1437), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_LBRACK] = ACTIONS(1431), - [anon_sym_EQ] = ACTIONS(1437), - [anon_sym_QMARK] = ACTIONS(1431), - [anon_sym_STAR_EQ] = ACTIONS(1431), - [anon_sym_SLASH_EQ] = ACTIONS(1431), - [anon_sym_PERCENT_EQ] = ACTIONS(1431), - [anon_sym_PLUS_EQ] = ACTIONS(1431), - [anon_sym_DASH_EQ] = ACTIONS(1431), - [anon_sym_LT_LT_EQ] = ACTIONS(1431), - [anon_sym_GT_GT_EQ] = ACTIONS(1431), - [anon_sym_AMP_EQ] = ACTIONS(1431), - [anon_sym_CARET_EQ] = ACTIONS(1431), - [anon_sym_PIPE_EQ] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1431), - [anon_sym_PLUS_PLUS] = ACTIONS(1431), - [anon_sym_sizeof] = ACTIONS(1461), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(1437), - [anon_sym_DASH_GT] = ACTIONS(1431), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [406] = { - [sym_attribute_declaration] = STATE(406), - [sym_compound_statement] = STATE(290), - [sym_attributed_statement] = STATE(290), - [sym_statement] = STATE(197), - [sym_labeled_statement] = STATE(290), - [sym_expression_statement] = STATE(290), - [sym_if_statement] = STATE(290), - [sym_switch_statement] = STATE(290), - [sym_case_statement] = STATE(290), - [sym_while_statement] = STATE(290), - [sym_do_statement] = STATE(290), - [sym_for_statement] = STATE(290), - [sym_return_statement] = STATE(290), - [sym_break_statement] = STATE(290), - [sym_continue_statement] = STATE(290), - [sym_goto_statement] = STATE(290), - [sym_seh_try_statement] = STATE(290), - [sym_seh_leave_statement] = STATE(290), - [sym_expression] = STATE(1167), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2207), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [aux_sym_attributed_declarator_repeat1] = STATE(406), - [sym_identifier] = ACTIONS(1463), - [anon_sym_LPAREN2] = ACTIONS(1466), - [anon_sym_BANG] = ACTIONS(1469), - [anon_sym_TILDE] = ACTIONS(1469), - [anon_sym_DASH] = ACTIONS(1472), - [anon_sym_PLUS] = ACTIONS(1472), - [anon_sym_STAR] = ACTIONS(1475), - [anon_sym_AMP] = ACTIONS(1475), - [anon_sym_SEMI] = ACTIONS(1478), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1481), - [anon_sym_LBRACE] = ACTIONS(1484), - [anon_sym_if] = ACTIONS(1487), - [anon_sym_switch] = ACTIONS(1490), - [anon_sym_case] = ACTIONS(1493), - [anon_sym_default] = ACTIONS(1496), - [anon_sym_while] = ACTIONS(1499), - [anon_sym_do] = ACTIONS(1502), - [anon_sym_for] = ACTIONS(1505), - [anon_sym_return] = ACTIONS(1508), - [anon_sym_break] = ACTIONS(1511), - [anon_sym_continue] = ACTIONS(1514), - [anon_sym_goto] = ACTIONS(1517), - [anon_sym___try] = ACTIONS(1520), - [anon_sym___leave] = ACTIONS(1523), - [anon_sym_DASH_DASH] = ACTIONS(1526), - [anon_sym_PLUS_PLUS] = ACTIONS(1526), - [anon_sym_sizeof] = ACTIONS(1529), - [anon_sym___alignof__] = ACTIONS(1532), - [anon_sym___alignof] = ACTIONS(1532), - [anon_sym__alignof] = ACTIONS(1532), - [anon_sym_alignof] = ACTIONS(1532), - [anon_sym__Alignof] = ACTIONS(1532), - [anon_sym_offsetof] = ACTIONS(1535), - [anon_sym__Generic] = ACTIONS(1538), - [anon_sym_asm] = ACTIONS(1541), - [anon_sym___asm__] = ACTIONS(1541), - [sym_number_literal] = ACTIONS(1544), - [anon_sym_L_SQUOTE] = ACTIONS(1547), - [anon_sym_u_SQUOTE] = ACTIONS(1547), - [anon_sym_U_SQUOTE] = ACTIONS(1547), - [anon_sym_u8_SQUOTE] = ACTIONS(1547), - [anon_sym_SQUOTE] = ACTIONS(1547), - [anon_sym_L_DQUOTE] = ACTIONS(1550), - [anon_sym_u_DQUOTE] = ACTIONS(1550), - [anon_sym_U_DQUOTE] = ACTIONS(1550), - [anon_sym_u8_DQUOTE] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1550), - [sym_true] = ACTIONS(1553), - [sym_false] = ACTIONS(1553), - [anon_sym_NULL] = ACTIONS(1556), - [anon_sym_nullptr] = ACTIONS(1556), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [407] = { - [sym_attribute_declaration] = STATE(421), - [sym_compound_statement] = STATE(180), - [sym_attributed_statement] = STATE(180), - [sym_statement] = STATE(281), - [sym_labeled_statement] = STATE(180), - [sym_expression_statement] = STATE(180), - [sym_if_statement] = STATE(180), - [sym_switch_statement] = STATE(180), - [sym_case_statement] = STATE(180), - [sym_while_statement] = STATE(180), - [sym_do_statement] = STATE(180), - [sym_for_statement] = STATE(180), - [sym_return_statement] = STATE(180), - [sym_break_statement] = STATE(180), - [sym_continue_statement] = STATE(180), - [sym_goto_statement] = STATE(180), - [sym_seh_try_statement] = STATE(180), - [sym_seh_leave_statement] = STATE(180), - [sym_expression] = STATE(1179), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2159), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [aux_sym_attributed_declarator_repeat1] = STATE(421), - [sym_identifier] = ACTIONS(1559), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1006), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_if] = ACTIONS(65), - [anon_sym_switch] = ACTIONS(67), - [anon_sym_case] = ACTIONS(69), - [anon_sym_default] = ACTIONS(71), - [anon_sym_while] = ACTIONS(73), - [anon_sym_do] = ACTIONS(75), - [anon_sym_for] = ACTIONS(77), - [anon_sym_return] = ACTIONS(79), - [anon_sym_break] = ACTIONS(81), - [anon_sym_continue] = ACTIONS(83), - [anon_sym_goto] = ACTIONS(85), - [anon_sym___try] = ACTIONS(1008), - [anon_sym___leave] = ACTIONS(1010), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [408] = { - [sym_attribute_declaration] = STATE(428), - [sym_compound_statement] = STATE(290), - [sym_attributed_statement] = STATE(290), - [sym_statement] = STATE(267), - [sym_labeled_statement] = STATE(290), - [sym_expression_statement] = STATE(290), - [sym_if_statement] = STATE(290), - [sym_switch_statement] = STATE(290), - [sym_case_statement] = STATE(290), - [sym_while_statement] = STATE(290), - [sym_do_statement] = STATE(290), - [sym_for_statement] = STATE(290), - [sym_return_statement] = STATE(290), - [sym_break_statement] = STATE(290), - [sym_continue_statement] = STATE(290), - [sym_goto_statement] = STATE(290), - [sym_seh_try_statement] = STATE(290), - [sym_seh_leave_statement] = STATE(290), - [sym_expression] = STATE(1167), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2207), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [aux_sym_attributed_declarator_repeat1] = STATE(428), - [sym_identifier] = ACTIONS(1563), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(383), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_if] = ACTIONS(395), - [anon_sym_switch] = ACTIONS(397), - [anon_sym_case] = ACTIONS(399), - [anon_sym_default] = ACTIONS(401), - [anon_sym_while] = ACTIONS(403), - [anon_sym_do] = ACTIONS(405), - [anon_sym_for] = ACTIONS(407), - [anon_sym_return] = ACTIONS(409), - [anon_sym_break] = ACTIONS(411), - [anon_sym_continue] = ACTIONS(413), - [anon_sym_goto] = ACTIONS(415), - [anon_sym___try] = ACTIONS(417), - [anon_sym___leave] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [409] = { - [sym_attribute_declaration] = STATE(421), - [sym_compound_statement] = STATE(180), - [sym_attributed_statement] = STATE(180), - [sym_statement] = STATE(161), - [sym_labeled_statement] = STATE(180), - [sym_expression_statement] = STATE(180), - [sym_if_statement] = STATE(180), - [sym_switch_statement] = STATE(180), - [sym_case_statement] = STATE(180), - [sym_while_statement] = STATE(180), - [sym_do_statement] = STATE(180), - [sym_for_statement] = STATE(180), - [sym_return_statement] = STATE(180), - [sym_break_statement] = STATE(180), - [sym_continue_statement] = STATE(180), - [sym_goto_statement] = STATE(180), - [sym_seh_try_statement] = STATE(180), - [sym_seh_leave_statement] = STATE(180), - [sym_expression] = STATE(1179), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2159), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [aux_sym_attributed_declarator_repeat1] = STATE(421), - [sym_identifier] = ACTIONS(1559), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1006), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_if] = ACTIONS(65), - [anon_sym_switch] = ACTIONS(67), - [anon_sym_case] = ACTIONS(69), - [anon_sym_default] = ACTIONS(71), - [anon_sym_while] = ACTIONS(73), - [anon_sym_do] = ACTIONS(75), - [anon_sym_for] = ACTIONS(77), - [anon_sym_return] = ACTIONS(79), - [anon_sym_break] = ACTIONS(81), - [anon_sym_continue] = ACTIONS(83), - [anon_sym_goto] = ACTIONS(85), - [anon_sym___try] = ACTIONS(1008), - [anon_sym___leave] = ACTIONS(1010), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [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), + [sym_identifier] = ACTIONS(1508), + [sym__linux_kernel_annotations] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(1510), + [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_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_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), + [sym_comment] = ACTIONS(5), }, [410] = { - [sym_attribute_declaration] = STATE(421), - [sym_compound_statement] = STATE(180), - [sym_attributed_statement] = STATE(180), - [sym_statement] = STATE(263), - [sym_labeled_statement] = STATE(180), - [sym_expression_statement] = STATE(180), - [sym_if_statement] = STATE(180), - [sym_switch_statement] = STATE(180), - [sym_case_statement] = STATE(180), - [sym_while_statement] = STATE(180), - [sym_do_statement] = STATE(180), - [sym_for_statement] = STATE(180), - [sym_return_statement] = STATE(180), - [sym_break_statement] = STATE(180), - [sym_continue_statement] = STATE(180), - [sym_goto_statement] = STATE(180), - [sym_seh_try_statement] = STATE(180), - [sym_seh_leave_statement] = STATE(180), - [sym_expression] = STATE(1179), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2159), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [aux_sym_attributed_declarator_repeat1] = STATE(421), - [sym_identifier] = ACTIONS(1559), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1006), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_if] = ACTIONS(65), - [anon_sym_switch] = ACTIONS(67), - [anon_sym_case] = ACTIONS(69), - [anon_sym_default] = ACTIONS(71), - [anon_sym_while] = ACTIONS(73), - [anon_sym_do] = ACTIONS(75), - [anon_sym_for] = ACTIONS(77), - [anon_sym_return] = ACTIONS(79), - [anon_sym_break] = ACTIONS(81), - [anon_sym_continue] = ACTIONS(83), - [anon_sym_goto] = ACTIONS(85), - [anon_sym___try] = ACTIONS(1008), - [anon_sym___leave] = ACTIONS(1010), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [411] = { - [sym_attribute_declaration] = STATE(428), - [sym_compound_statement] = STATE(290), - [sym_attributed_statement] = STATE(290), - [sym_statement] = STATE(160), - [sym_labeled_statement] = STATE(290), - [sym_expression_statement] = STATE(290), - [sym_if_statement] = STATE(290), - [sym_switch_statement] = STATE(290), - [sym_case_statement] = STATE(290), - [sym_while_statement] = STATE(290), - [sym_do_statement] = STATE(290), - [sym_for_statement] = STATE(290), - [sym_return_statement] = STATE(290), - [sym_break_statement] = STATE(290), - [sym_continue_statement] = STATE(290), - [sym_goto_statement] = STATE(290), - [sym_seh_try_statement] = STATE(290), - [sym_seh_leave_statement] = STATE(290), - [sym_expression] = STATE(1167), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2207), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [aux_sym_attributed_declarator_repeat1] = STATE(428), - [sym_identifier] = ACTIONS(1563), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(383), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_if] = ACTIONS(395), - [anon_sym_switch] = ACTIONS(397), - [anon_sym_case] = ACTIONS(399), - [anon_sym_default] = ACTIONS(401), - [anon_sym_while] = ACTIONS(403), - [anon_sym_do] = ACTIONS(405), - [anon_sym_for] = ACTIONS(407), - [anon_sym_return] = ACTIONS(409), - [anon_sym_break] = ACTIONS(411), - [anon_sym_continue] = ACTIONS(413), - [anon_sym_goto] = ACTIONS(415), - [anon_sym___try] = ACTIONS(417), - [anon_sym___leave] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [412] = { - [sym_attribute_declaration] = STATE(415), - [sym_compound_statement] = STATE(205), - [sym_attributed_statement] = STATE(205), - [sym_statement] = STATE(257), - [sym_labeled_statement] = STATE(205), - [sym_expression_statement] = STATE(205), - [sym_if_statement] = STATE(205), - [sym_switch_statement] = STATE(205), - [sym_case_statement] = STATE(205), - [sym_while_statement] = STATE(205), - [sym_do_statement] = STATE(205), - [sym_for_statement] = STATE(205), - [sym_return_statement] = STATE(205), - [sym_break_statement] = STATE(205), - [sym_continue_statement] = STATE(205), - [sym_goto_statement] = STATE(205), - [sym_seh_try_statement] = STATE(205), - [sym_seh_leave_statement] = STATE(205), - [sym_expression] = STATE(1193), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2067), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [aux_sym_attributed_declarator_repeat1] = STATE(415), - [sym_identifier] = ACTIONS(1565), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(447), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(455), - [anon_sym_if] = ACTIONS(457), - [anon_sym_switch] = ACTIONS(459), - [anon_sym_case] = ACTIONS(461), - [anon_sym_default] = ACTIONS(463), - [anon_sym_while] = ACTIONS(465), - [anon_sym_do] = ACTIONS(467), - [anon_sym_for] = ACTIONS(469), - [anon_sym_return] = ACTIONS(471), - [anon_sym_break] = ACTIONS(473), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_goto] = ACTIONS(477), - [anon_sym___try] = ACTIONS(479), - [anon_sym___leave] = ACTIONS(481), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [413] = { - [sym_attribute_declaration] = STATE(442), - [sym_compound_statement] = STATE(290), - [sym_attributed_statement] = STATE(290), - [sym_statement] = STATE(263), - [sym_labeled_statement] = STATE(290), - [sym_expression_statement] = STATE(290), - [sym_if_statement] = STATE(290), - [sym_switch_statement] = STATE(290), - [sym_case_statement] = STATE(290), - [sym_while_statement] = STATE(290), - [sym_do_statement] = STATE(290), - [sym_for_statement] = STATE(290), - [sym_return_statement] = STATE(290), - [sym_break_statement] = STATE(290), - [sym_continue_statement] = STATE(290), - [sym_goto_statement] = STATE(290), - [sym_seh_try_statement] = STATE(290), - [sym_seh_leave_statement] = STATE(290), - [sym_expression] = STATE(1167), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2207), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [aux_sym_attributed_declarator_repeat1] = STATE(442), - [sym_identifier] = ACTIONS(1567), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(383), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_if] = ACTIONS(1118), - [anon_sym_switch] = ACTIONS(67), - [anon_sym_case] = ACTIONS(1569), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_while] = ACTIONS(1120), - [anon_sym_do] = ACTIONS(75), - [anon_sym_for] = ACTIONS(1122), - [anon_sym_return] = ACTIONS(79), - [anon_sym_break] = ACTIONS(81), - [anon_sym_continue] = ACTIONS(83), - [anon_sym_goto] = ACTIONS(85), - [anon_sym___try] = ACTIONS(1124), - [anon_sym___leave] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [414] = { - [sym_attribute_declaration] = STATE(428), - [sym_compound_statement] = STATE(290), - [sym_attributed_statement] = STATE(290), - [sym_statement] = STATE(234), - [sym_labeled_statement] = STATE(290), - [sym_expression_statement] = STATE(290), - [sym_if_statement] = STATE(290), - [sym_switch_statement] = STATE(290), - [sym_case_statement] = STATE(290), - [sym_while_statement] = STATE(290), - [sym_do_statement] = STATE(290), - [sym_for_statement] = STATE(290), - [sym_return_statement] = STATE(290), - [sym_break_statement] = STATE(290), - [sym_continue_statement] = STATE(290), - [sym_goto_statement] = STATE(290), - [sym_seh_try_statement] = STATE(290), - [sym_seh_leave_statement] = STATE(290), - [sym_expression] = STATE(1167), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2207), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [aux_sym_attributed_declarator_repeat1] = STATE(428), - [sym_identifier] = ACTIONS(1563), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(383), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_if] = ACTIONS(395), - [anon_sym_switch] = ACTIONS(397), - [anon_sym_case] = ACTIONS(399), - [anon_sym_default] = ACTIONS(401), - [anon_sym_while] = ACTIONS(403), - [anon_sym_do] = ACTIONS(405), - [anon_sym_for] = ACTIONS(407), - [anon_sym_return] = ACTIONS(409), - [anon_sym_break] = ACTIONS(411), - [anon_sym_continue] = ACTIONS(413), - [anon_sym_goto] = ACTIONS(415), - [anon_sym___try] = ACTIONS(417), - [anon_sym___leave] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [415] = { - [sym_attribute_declaration] = STATE(427), - [sym_compound_statement] = STATE(205), - [sym_attributed_statement] = STATE(205), - [sym_statement] = STATE(212), - [sym_labeled_statement] = STATE(205), - [sym_expression_statement] = STATE(205), - [sym_if_statement] = STATE(205), - [sym_switch_statement] = STATE(205), - [sym_case_statement] = STATE(205), - [sym_while_statement] = STATE(205), - [sym_do_statement] = STATE(205), - [sym_for_statement] = STATE(205), - [sym_return_statement] = STATE(205), - [sym_break_statement] = STATE(205), - [sym_continue_statement] = STATE(205), - [sym_goto_statement] = STATE(205), - [sym_seh_try_statement] = STATE(205), - [sym_seh_leave_statement] = STATE(205), - [sym_expression] = STATE(1193), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2067), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [aux_sym_attributed_declarator_repeat1] = STATE(427), - [sym_identifier] = ACTIONS(1565), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(447), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(455), - [anon_sym_if] = ACTIONS(457), - [anon_sym_switch] = ACTIONS(459), - [anon_sym_case] = ACTIONS(461), - [anon_sym_default] = ACTIONS(463), - [anon_sym_while] = ACTIONS(465), - [anon_sym_do] = ACTIONS(467), - [anon_sym_for] = ACTIONS(469), - [anon_sym_return] = ACTIONS(471), - [anon_sym_break] = ACTIONS(473), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_goto] = ACTIONS(477), - [anon_sym___try] = ACTIONS(479), - [anon_sym___leave] = ACTIONS(481), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [416] = { - [sym_attribute_declaration] = STATE(428), - [sym_compound_statement] = STATE(290), - [sym_attributed_statement] = STATE(290), - [sym_statement] = STATE(232), - [sym_labeled_statement] = STATE(290), - [sym_expression_statement] = STATE(290), - [sym_if_statement] = STATE(290), - [sym_switch_statement] = STATE(290), - [sym_case_statement] = STATE(290), - [sym_while_statement] = STATE(290), - [sym_do_statement] = STATE(290), - [sym_for_statement] = STATE(290), - [sym_return_statement] = STATE(290), - [sym_break_statement] = STATE(290), - [sym_continue_statement] = STATE(290), - [sym_goto_statement] = STATE(290), - [sym_seh_try_statement] = STATE(290), - [sym_seh_leave_statement] = STATE(290), - [sym_expression] = STATE(1167), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2207), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [aux_sym_attributed_declarator_repeat1] = STATE(428), - [sym_identifier] = ACTIONS(1563), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(383), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_if] = ACTIONS(395), - [anon_sym_switch] = ACTIONS(397), - [anon_sym_case] = ACTIONS(399), - [anon_sym_default] = ACTIONS(401), - [anon_sym_while] = ACTIONS(403), - [anon_sym_do] = ACTIONS(405), - [anon_sym_for] = ACTIONS(407), - [anon_sym_return] = ACTIONS(409), - [anon_sym_break] = ACTIONS(411), - [anon_sym_continue] = ACTIONS(413), - [anon_sym_goto] = ACTIONS(415), - [anon_sym___try] = ACTIONS(417), - [anon_sym___leave] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [417] = { - [sym_attribute_declaration] = STATE(417), - [sym_compound_statement] = STATE(77), - [sym_attributed_statement] = STATE(77), - [sym_statement] = STATE(113), - [sym_labeled_statement] = STATE(77), - [sym_expression_statement] = STATE(77), - [sym_if_statement] = STATE(77), - [sym_switch_statement] = STATE(77), - [sym_case_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_do_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_return_statement] = STATE(77), - [sym_break_statement] = STATE(77), - [sym_continue_statement] = STATE(77), - [sym_goto_statement] = STATE(77), - [sym_seh_try_statement] = STATE(77), - [sym_seh_leave_statement] = STATE(77), - [sym_expression] = STATE(1157), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2232), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [aux_sym_attributed_declarator_repeat1] = STATE(417), - [sym_identifier] = ACTIONS(1573), - [anon_sym_LPAREN2] = ACTIONS(1466), - [anon_sym_BANG] = ACTIONS(1469), - [anon_sym_TILDE] = ACTIONS(1469), - [anon_sym_DASH] = ACTIONS(1472), - [anon_sym_PLUS] = ACTIONS(1472), - [anon_sym_STAR] = ACTIONS(1475), - [anon_sym_AMP] = ACTIONS(1475), - [anon_sym_SEMI] = ACTIONS(1576), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1481), - [anon_sym_LBRACE] = ACTIONS(1579), - [anon_sym_if] = ACTIONS(1582), - [anon_sym_switch] = ACTIONS(1585), - [anon_sym_case] = ACTIONS(1588), - [anon_sym_default] = ACTIONS(1591), - [anon_sym_while] = ACTIONS(1594), - [anon_sym_do] = ACTIONS(1597), - [anon_sym_for] = ACTIONS(1600), - [anon_sym_return] = ACTIONS(1603), - [anon_sym_break] = ACTIONS(1606), - [anon_sym_continue] = ACTIONS(1609), - [anon_sym_goto] = ACTIONS(1612), - [anon_sym___try] = ACTIONS(1615), - [anon_sym___leave] = ACTIONS(1618), - [anon_sym_DASH_DASH] = ACTIONS(1526), - [anon_sym_PLUS_PLUS] = ACTIONS(1526), - [anon_sym_sizeof] = ACTIONS(1529), - [anon_sym___alignof__] = ACTIONS(1532), - [anon_sym___alignof] = ACTIONS(1532), - [anon_sym__alignof] = ACTIONS(1532), - [anon_sym_alignof] = ACTIONS(1532), - [anon_sym__Alignof] = ACTIONS(1532), - [anon_sym_offsetof] = ACTIONS(1535), - [anon_sym__Generic] = ACTIONS(1538), - [anon_sym_asm] = ACTIONS(1541), - [anon_sym___asm__] = ACTIONS(1541), - [sym_number_literal] = ACTIONS(1544), - [anon_sym_L_SQUOTE] = ACTIONS(1547), - [anon_sym_u_SQUOTE] = ACTIONS(1547), - [anon_sym_U_SQUOTE] = ACTIONS(1547), - [anon_sym_u8_SQUOTE] = ACTIONS(1547), - [anon_sym_SQUOTE] = ACTIONS(1547), - [anon_sym_L_DQUOTE] = ACTIONS(1550), - [anon_sym_u_DQUOTE] = ACTIONS(1550), - [anon_sym_U_DQUOTE] = ACTIONS(1550), - [anon_sym_u8_DQUOTE] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1550), - [sym_true] = ACTIONS(1553), - [sym_false] = ACTIONS(1553), - [anon_sym_NULL] = ACTIONS(1556), - [anon_sym_nullptr] = ACTIONS(1556), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [418] = { - [sym_attribute_declaration] = STATE(439), - [sym_compound_statement] = STATE(77), - [sym_attributed_statement] = STATE(77), - [sym_statement] = STATE(105), - [sym_labeled_statement] = STATE(77), - [sym_expression_statement] = STATE(77), - [sym_if_statement] = STATE(77), - [sym_switch_statement] = STATE(77), - [sym_case_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_do_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_return_statement] = STATE(77), - [sym_break_statement] = STATE(77), - [sym_continue_statement] = STATE(77), - [sym_goto_statement] = STATE(77), - [sym_seh_try_statement] = STATE(77), - [sym_seh_leave_statement] = STATE(77), - [sym_expression] = STATE(1157), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2232), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [aux_sym_attributed_declarator_repeat1] = STATE(439), - [sym_identifier] = ACTIONS(1621), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(129), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(137), - [anon_sym_if] = ACTIONS(139), - [anon_sym_switch] = ACTIONS(141), - [anon_sym_case] = ACTIONS(143), - [anon_sym_default] = ACTIONS(145), - [anon_sym_while] = ACTIONS(147), - [anon_sym_do] = ACTIONS(149), - [anon_sym_for] = ACTIONS(151), - [anon_sym_return] = ACTIONS(153), - [anon_sym_break] = ACTIONS(155), - [anon_sym_continue] = ACTIONS(157), - [anon_sym_goto] = ACTIONS(159), - [anon_sym___try] = ACTIONS(161), - [anon_sym___leave] = ACTIONS(163), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [419] = { - [sym_attribute_declaration] = STATE(439), - [sym_compound_statement] = STATE(77), - [sym_attributed_statement] = STATE(77), - [sym_statement] = STATE(116), - [sym_labeled_statement] = STATE(77), - [sym_expression_statement] = STATE(77), - [sym_if_statement] = STATE(77), - [sym_switch_statement] = STATE(77), - [sym_case_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_do_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_return_statement] = STATE(77), - [sym_break_statement] = STATE(77), - [sym_continue_statement] = STATE(77), - [sym_goto_statement] = STATE(77), - [sym_seh_try_statement] = STATE(77), - [sym_seh_leave_statement] = STATE(77), - [sym_expression] = STATE(1157), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2232), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [aux_sym_attributed_declarator_repeat1] = STATE(439), - [sym_identifier] = ACTIONS(1621), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(129), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(137), - [anon_sym_if] = ACTIONS(139), - [anon_sym_switch] = ACTIONS(141), - [anon_sym_case] = ACTIONS(143), - [anon_sym_default] = ACTIONS(145), - [anon_sym_while] = ACTIONS(147), - [anon_sym_do] = ACTIONS(149), - [anon_sym_for] = ACTIONS(151), - [anon_sym_return] = ACTIONS(153), - [anon_sym_break] = ACTIONS(155), - [anon_sym_continue] = ACTIONS(157), - [anon_sym_goto] = ACTIONS(159), - [anon_sym___try] = ACTIONS(161), - [anon_sym___leave] = ACTIONS(163), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [420] = { - [sym_attribute_declaration] = STATE(421), - [sym_compound_statement] = STATE(180), - [sym_attributed_statement] = STATE(180), - [sym_statement] = STATE(224), - [sym_labeled_statement] = STATE(180), - [sym_expression_statement] = STATE(180), - [sym_if_statement] = STATE(180), - [sym_switch_statement] = STATE(180), - [sym_case_statement] = STATE(180), - [sym_while_statement] = STATE(180), - [sym_do_statement] = STATE(180), - [sym_for_statement] = STATE(180), - [sym_return_statement] = STATE(180), - [sym_break_statement] = STATE(180), - [sym_continue_statement] = STATE(180), - [sym_goto_statement] = STATE(180), - [sym_seh_try_statement] = STATE(180), - [sym_seh_leave_statement] = STATE(180), - [sym_expression] = STATE(1179), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2159), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [aux_sym_attributed_declarator_repeat1] = STATE(421), - [sym_identifier] = ACTIONS(1559), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1006), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_if] = ACTIONS(65), - [anon_sym_switch] = ACTIONS(67), - [anon_sym_case] = ACTIONS(69), - [anon_sym_default] = ACTIONS(71), - [anon_sym_while] = ACTIONS(73), - [anon_sym_do] = ACTIONS(75), - [anon_sym_for] = ACTIONS(77), - [anon_sym_return] = ACTIONS(79), - [anon_sym_break] = ACTIONS(81), - [anon_sym_continue] = ACTIONS(83), - [anon_sym_goto] = ACTIONS(85), - [anon_sym___try] = ACTIONS(1008), - [anon_sym___leave] = ACTIONS(1010), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [421] = { - [sym_attribute_declaration] = STATE(435), - [sym_compound_statement] = STATE(180), - [sym_attributed_statement] = STATE(180), - [sym_statement] = STATE(197), - [sym_labeled_statement] = STATE(180), - [sym_expression_statement] = STATE(180), - [sym_if_statement] = STATE(180), - [sym_switch_statement] = STATE(180), - [sym_case_statement] = STATE(180), - [sym_while_statement] = STATE(180), - [sym_do_statement] = STATE(180), - [sym_for_statement] = STATE(180), - [sym_return_statement] = STATE(180), - [sym_break_statement] = STATE(180), - [sym_continue_statement] = STATE(180), - [sym_goto_statement] = STATE(180), - [sym_seh_try_statement] = STATE(180), - [sym_seh_leave_statement] = STATE(180), - [sym_expression] = STATE(1179), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2159), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [aux_sym_attributed_declarator_repeat1] = STATE(435), - [sym_identifier] = ACTIONS(1559), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1006), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_if] = ACTIONS(65), - [anon_sym_switch] = ACTIONS(67), - [anon_sym_case] = ACTIONS(69), - [anon_sym_default] = ACTIONS(71), - [anon_sym_while] = ACTIONS(73), - [anon_sym_do] = ACTIONS(75), - [anon_sym_for] = ACTIONS(77), - [anon_sym_return] = ACTIONS(79), - [anon_sym_break] = ACTIONS(81), - [anon_sym_continue] = ACTIONS(83), - [anon_sym_goto] = ACTIONS(85), - [anon_sym___try] = ACTIONS(1008), - [anon_sym___leave] = ACTIONS(1010), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [422] = { - [sym_attribute_declaration] = STATE(442), - [sym_compound_statement] = STATE(290), - [sym_attributed_statement] = STATE(290), - [sym_statement] = STATE(2295), - [sym_labeled_statement] = STATE(290), - [sym_expression_statement] = STATE(290), - [sym_if_statement] = STATE(290), - [sym_switch_statement] = STATE(290), - [sym_case_statement] = STATE(290), - [sym_while_statement] = STATE(290), - [sym_do_statement] = STATE(290), - [sym_for_statement] = STATE(290), - [sym_return_statement] = STATE(290), - [sym_break_statement] = STATE(290), - [sym_continue_statement] = STATE(290), - [sym_goto_statement] = STATE(290), - [sym_seh_try_statement] = STATE(290), - [sym_seh_leave_statement] = STATE(290), - [sym_expression] = STATE(1167), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2207), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [aux_sym_attributed_declarator_repeat1] = STATE(442), - [sym_identifier] = ACTIONS(1567), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(383), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_if] = ACTIONS(1118), - [anon_sym_switch] = ACTIONS(67), - [anon_sym_case] = ACTIONS(1569), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_while] = ACTIONS(1120), - [anon_sym_do] = ACTIONS(75), - [anon_sym_for] = ACTIONS(1122), - [anon_sym_return] = ACTIONS(79), - [anon_sym_break] = ACTIONS(81), - [anon_sym_continue] = ACTIONS(83), - [anon_sym_goto] = ACTIONS(85), - [anon_sym___try] = ACTIONS(1124), - [anon_sym___leave] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [423] = { - [sym_attribute_declaration] = STATE(439), - [sym_compound_statement] = STATE(77), - [sym_attributed_statement] = STATE(77), - [sym_statement] = STATE(82), - [sym_labeled_statement] = STATE(77), - [sym_expression_statement] = STATE(77), - [sym_if_statement] = STATE(77), - [sym_switch_statement] = STATE(77), - [sym_case_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_do_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_return_statement] = STATE(77), - [sym_break_statement] = STATE(77), - [sym_continue_statement] = STATE(77), - [sym_goto_statement] = STATE(77), - [sym_seh_try_statement] = STATE(77), - [sym_seh_leave_statement] = STATE(77), - [sym_expression] = STATE(1157), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2232), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [aux_sym_attributed_declarator_repeat1] = STATE(439), - [sym_identifier] = ACTIONS(1621), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(129), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(137), - [anon_sym_if] = ACTIONS(139), - [anon_sym_switch] = ACTIONS(141), - [anon_sym_case] = ACTIONS(143), - [anon_sym_default] = ACTIONS(145), - [anon_sym_while] = ACTIONS(147), - [anon_sym_do] = ACTIONS(149), - [anon_sym_for] = ACTIONS(151), - [anon_sym_return] = ACTIONS(153), - [anon_sym_break] = ACTIONS(155), - [anon_sym_continue] = ACTIONS(157), - [anon_sym_goto] = ACTIONS(159), - [anon_sym___try] = ACTIONS(161), - [anon_sym___leave] = ACTIONS(163), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [424] = { - [sym_attribute_declaration] = STATE(439), - [sym_compound_statement] = STATE(77), - [sym_attributed_statement] = STATE(77), - [sym_statement] = STATE(75), - [sym_labeled_statement] = STATE(77), - [sym_expression_statement] = STATE(77), - [sym_if_statement] = STATE(77), - [sym_switch_statement] = STATE(77), - [sym_case_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_do_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_return_statement] = STATE(77), - [sym_break_statement] = STATE(77), - [sym_continue_statement] = STATE(77), - [sym_goto_statement] = STATE(77), - [sym_seh_try_statement] = STATE(77), - [sym_seh_leave_statement] = STATE(77), - [sym_expression] = STATE(1157), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2232), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [aux_sym_attributed_declarator_repeat1] = STATE(439), - [sym_identifier] = ACTIONS(1621), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(129), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(137), - [anon_sym_if] = ACTIONS(139), - [anon_sym_switch] = ACTIONS(141), - [anon_sym_case] = ACTIONS(143), - [anon_sym_default] = ACTIONS(145), - [anon_sym_while] = ACTIONS(147), - [anon_sym_do] = ACTIONS(149), - [anon_sym_for] = ACTIONS(151), - [anon_sym_return] = ACTIONS(153), - [anon_sym_break] = ACTIONS(155), - [anon_sym_continue] = ACTIONS(157), - [anon_sym_goto] = ACTIONS(159), - [anon_sym___try] = ACTIONS(161), - [anon_sym___leave] = ACTIONS(163), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [425] = { - [sym_attribute_declaration] = STATE(425), - [sym_compound_statement] = STATE(290), - [sym_attributed_statement] = STATE(290), - [sym_statement] = STATE(188), - [sym_labeled_statement] = STATE(290), - [sym_expression_statement] = STATE(290), - [sym_if_statement] = STATE(290), - [sym_switch_statement] = STATE(290), - [sym_case_statement] = STATE(290), - [sym_while_statement] = STATE(290), - [sym_do_statement] = STATE(290), - [sym_for_statement] = STATE(290), - [sym_return_statement] = STATE(290), - [sym_break_statement] = STATE(290), - [sym_continue_statement] = STATE(290), - [sym_goto_statement] = STATE(290), - [sym_seh_try_statement] = STATE(290), - [sym_seh_leave_statement] = STATE(290), - [sym_expression] = STATE(1167), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2207), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [aux_sym_attributed_declarator_repeat1] = STATE(425), - [sym_identifier] = ACTIONS(1623), - [anon_sym_LPAREN2] = ACTIONS(1466), - [anon_sym_BANG] = ACTIONS(1469), - [anon_sym_TILDE] = ACTIONS(1469), - [anon_sym_DASH] = ACTIONS(1472), - [anon_sym_PLUS] = ACTIONS(1472), - [anon_sym_STAR] = ACTIONS(1475), - [anon_sym_AMP] = ACTIONS(1475), - [anon_sym_SEMI] = ACTIONS(1478), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1481), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_if] = ACTIONS(1629), - [anon_sym_switch] = ACTIONS(1632), - [anon_sym_case] = ACTIONS(1635), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_while] = ACTIONS(1641), - [anon_sym_do] = ACTIONS(1644), - [anon_sym_for] = ACTIONS(1647), - [anon_sym_return] = ACTIONS(1650), - [anon_sym_break] = ACTIONS(1653), - [anon_sym_continue] = ACTIONS(1656), - [anon_sym_goto] = ACTIONS(1659), - [anon_sym___try] = ACTIONS(1662), - [anon_sym___leave] = ACTIONS(1523), - [anon_sym_DASH_DASH] = ACTIONS(1526), - [anon_sym_PLUS_PLUS] = ACTIONS(1526), - [anon_sym_sizeof] = ACTIONS(1529), - [anon_sym___alignof__] = ACTIONS(1532), - [anon_sym___alignof] = ACTIONS(1532), - [anon_sym__alignof] = ACTIONS(1532), - [anon_sym_alignof] = ACTIONS(1532), - [anon_sym__Alignof] = ACTIONS(1532), - [anon_sym_offsetof] = ACTIONS(1535), - [anon_sym__Generic] = ACTIONS(1538), - [anon_sym_asm] = ACTIONS(1541), - [anon_sym___asm__] = ACTIONS(1541), - [sym_number_literal] = ACTIONS(1544), - [anon_sym_L_SQUOTE] = ACTIONS(1547), - [anon_sym_u_SQUOTE] = ACTIONS(1547), - [anon_sym_U_SQUOTE] = ACTIONS(1547), - [anon_sym_u8_SQUOTE] = ACTIONS(1547), - [anon_sym_SQUOTE] = ACTIONS(1547), - [anon_sym_L_DQUOTE] = ACTIONS(1550), - [anon_sym_u_DQUOTE] = ACTIONS(1550), - [anon_sym_U_DQUOTE] = ACTIONS(1550), - [anon_sym_u8_DQUOTE] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1550), - [sym_true] = ACTIONS(1553), - [sym_false] = ACTIONS(1553), - [anon_sym_NULL] = ACTIONS(1556), - [anon_sym_nullptr] = ACTIONS(1556), - [sym_comment] = ACTIONS(3), + [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), + [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), + [sym_comment] = ACTIONS(5), }, [426] = { - [sym_attribute_declaration] = STATE(442), - [sym_compound_statement] = STATE(290), - [sym_attributed_statement] = STATE(290), - [sym_statement] = STATE(224), - [sym_labeled_statement] = STATE(290), - [sym_expression_statement] = STATE(290), - [sym_if_statement] = STATE(290), - [sym_switch_statement] = STATE(290), - [sym_case_statement] = STATE(290), - [sym_while_statement] = STATE(290), - [sym_do_statement] = STATE(290), - [sym_for_statement] = STATE(290), - [sym_return_statement] = STATE(290), - [sym_break_statement] = STATE(290), - [sym_continue_statement] = STATE(290), - [sym_goto_statement] = STATE(290), - [sym_seh_try_statement] = STATE(290), - [sym_seh_leave_statement] = STATE(290), - [sym_expression] = STATE(1167), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2207), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [aux_sym_attributed_declarator_repeat1] = STATE(442), - [sym_identifier] = ACTIONS(1567), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(383), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_if] = ACTIONS(1118), - [anon_sym_switch] = ACTIONS(67), - [anon_sym_case] = ACTIONS(1569), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_while] = ACTIONS(1120), - [anon_sym_do] = ACTIONS(75), - [anon_sym_for] = ACTIONS(1122), - [anon_sym_return] = ACTIONS(79), - [anon_sym_break] = ACTIONS(81), - [anon_sym_continue] = ACTIONS(83), - [anon_sym_goto] = ACTIONS(85), - [anon_sym___try] = ACTIONS(1124), - [anon_sym___leave] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [427] = { - [sym_attribute_declaration] = STATE(427), - [sym_compound_statement] = STATE(205), - [sym_attributed_statement] = STATE(205), - [sym_statement] = STATE(212), - [sym_labeled_statement] = STATE(205), - [sym_expression_statement] = STATE(205), - [sym_if_statement] = STATE(205), - [sym_switch_statement] = STATE(205), - [sym_case_statement] = STATE(205), - [sym_while_statement] = STATE(205), - [sym_do_statement] = STATE(205), - [sym_for_statement] = STATE(205), - [sym_return_statement] = STATE(205), - [sym_break_statement] = STATE(205), - [sym_continue_statement] = STATE(205), - [sym_goto_statement] = STATE(205), - [sym_seh_try_statement] = STATE(205), - [sym_seh_leave_statement] = STATE(205), - [sym_expression] = STATE(1193), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2067), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [aux_sym_attributed_declarator_repeat1] = STATE(427), - [sym_identifier] = ACTIONS(1665), - [anon_sym_LPAREN2] = ACTIONS(1466), - [anon_sym_BANG] = ACTIONS(1469), - [anon_sym_TILDE] = ACTIONS(1469), - [anon_sym_DASH] = ACTIONS(1472), - [anon_sym_PLUS] = ACTIONS(1472), - [anon_sym_STAR] = ACTIONS(1475), - [anon_sym_AMP] = ACTIONS(1475), - [anon_sym_SEMI] = ACTIONS(1668), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1481), - [anon_sym_LBRACE] = ACTIONS(1671), - [anon_sym_if] = ACTIONS(1674), - [anon_sym_switch] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1680), - [anon_sym_default] = ACTIONS(1683), - [anon_sym_while] = ACTIONS(1686), - [anon_sym_do] = ACTIONS(1689), - [anon_sym_for] = ACTIONS(1692), - [anon_sym_return] = ACTIONS(1695), - [anon_sym_break] = ACTIONS(1698), - [anon_sym_continue] = ACTIONS(1701), - [anon_sym_goto] = ACTIONS(1704), - [anon_sym___try] = ACTIONS(1707), - [anon_sym___leave] = ACTIONS(1710), - [anon_sym_DASH_DASH] = ACTIONS(1526), - [anon_sym_PLUS_PLUS] = ACTIONS(1526), - [anon_sym_sizeof] = ACTIONS(1529), - [anon_sym___alignof__] = ACTIONS(1532), - [anon_sym___alignof] = ACTIONS(1532), - [anon_sym__alignof] = ACTIONS(1532), - [anon_sym_alignof] = ACTIONS(1532), - [anon_sym__Alignof] = ACTIONS(1532), - [anon_sym_offsetof] = ACTIONS(1535), - [anon_sym__Generic] = ACTIONS(1538), - [anon_sym_asm] = ACTIONS(1541), - [anon_sym___asm__] = ACTIONS(1541), - [sym_number_literal] = ACTIONS(1544), - [anon_sym_L_SQUOTE] = ACTIONS(1547), - [anon_sym_u_SQUOTE] = ACTIONS(1547), - [anon_sym_U_SQUOTE] = ACTIONS(1547), - [anon_sym_u8_SQUOTE] = ACTIONS(1547), - [anon_sym_SQUOTE] = ACTIONS(1547), - [anon_sym_L_DQUOTE] = ACTIONS(1550), - [anon_sym_u_DQUOTE] = ACTIONS(1550), - [anon_sym_U_DQUOTE] = ACTIONS(1550), - [anon_sym_u8_DQUOTE] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1550), - [sym_true] = ACTIONS(1553), - [sym_false] = ACTIONS(1553), - [anon_sym_NULL] = ACTIONS(1556), - [anon_sym_nullptr] = ACTIONS(1556), - [sym_comment] = ACTIONS(3), + [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), + [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), + [sym_comment] = ACTIONS(5), }, [428] = { - [sym_attribute_declaration] = STATE(425), - [sym_compound_statement] = STATE(290), - [sym_attributed_statement] = STATE(290), - [sym_statement] = STATE(188), - [sym_labeled_statement] = STATE(290), - [sym_expression_statement] = STATE(290), - [sym_if_statement] = STATE(290), - [sym_switch_statement] = STATE(290), - [sym_case_statement] = STATE(290), - [sym_while_statement] = STATE(290), - [sym_do_statement] = STATE(290), - [sym_for_statement] = STATE(290), - [sym_return_statement] = STATE(290), - [sym_break_statement] = STATE(290), - [sym_continue_statement] = STATE(290), - [sym_goto_statement] = STATE(290), - [sym_seh_try_statement] = STATE(290), - [sym_seh_leave_statement] = STATE(290), - [sym_expression] = STATE(1167), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2207), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [aux_sym_attributed_declarator_repeat1] = STATE(425), - [sym_identifier] = ACTIONS(1563), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(383), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_if] = ACTIONS(395), - [anon_sym_switch] = ACTIONS(397), - [anon_sym_case] = ACTIONS(399), - [anon_sym_default] = ACTIONS(401), - [anon_sym_while] = ACTIONS(403), - [anon_sym_do] = ACTIONS(405), - [anon_sym_for] = ACTIONS(407), - [anon_sym_return] = ACTIONS(409), - [anon_sym_break] = ACTIONS(411), - [anon_sym_continue] = ACTIONS(413), - [anon_sym_goto] = ACTIONS(415), - [anon_sym___try] = ACTIONS(417), - [anon_sym___leave] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [429] = { - [sym_attribute_declaration] = STATE(415), - [sym_compound_statement] = STATE(205), - [sym_attributed_statement] = STATE(205), - [sym_statement] = STATE(230), - [sym_labeled_statement] = STATE(205), - [sym_expression_statement] = STATE(205), - [sym_if_statement] = STATE(205), - [sym_switch_statement] = STATE(205), - [sym_case_statement] = STATE(205), - [sym_while_statement] = STATE(205), - [sym_do_statement] = STATE(205), - [sym_for_statement] = STATE(205), - [sym_return_statement] = STATE(205), - [sym_break_statement] = STATE(205), - [sym_continue_statement] = STATE(205), - [sym_goto_statement] = STATE(205), - [sym_seh_try_statement] = STATE(205), - [sym_seh_leave_statement] = STATE(205), - [sym_expression] = STATE(1193), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2067), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [aux_sym_attributed_declarator_repeat1] = STATE(415), - [sym_identifier] = ACTIONS(1565), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(447), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(455), - [anon_sym_if] = ACTIONS(457), - [anon_sym_switch] = ACTIONS(459), - [anon_sym_case] = ACTIONS(461), - [anon_sym_default] = ACTIONS(463), - [anon_sym_while] = ACTIONS(465), - [anon_sym_do] = ACTIONS(467), - [anon_sym_for] = ACTIONS(469), - [anon_sym_return] = ACTIONS(471), - [anon_sym_break] = ACTIONS(473), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_goto] = ACTIONS(477), - [anon_sym___try] = ACTIONS(479), - [anon_sym___leave] = ACTIONS(481), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [430] = { - [sym_attribute_declaration] = STATE(442), - [sym_compound_statement] = STATE(290), - [sym_attributed_statement] = STATE(290), - [sym_statement] = STATE(2280), - [sym_labeled_statement] = STATE(290), - [sym_expression_statement] = STATE(290), - [sym_if_statement] = STATE(290), - [sym_switch_statement] = STATE(290), - [sym_case_statement] = STATE(290), - [sym_while_statement] = STATE(290), - [sym_do_statement] = STATE(290), - [sym_for_statement] = STATE(290), - [sym_return_statement] = STATE(290), - [sym_break_statement] = STATE(290), - [sym_continue_statement] = STATE(290), - [sym_goto_statement] = STATE(290), - [sym_seh_try_statement] = STATE(290), - [sym_seh_leave_statement] = STATE(290), - [sym_expression] = STATE(1167), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2207), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [aux_sym_attributed_declarator_repeat1] = STATE(442), - [sym_identifier] = ACTIONS(1567), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(383), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_if] = ACTIONS(1118), - [anon_sym_switch] = ACTIONS(67), - [anon_sym_case] = ACTIONS(1569), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_while] = ACTIONS(1120), - [anon_sym_do] = ACTIONS(75), - [anon_sym_for] = ACTIONS(1122), - [anon_sym_return] = ACTIONS(79), - [anon_sym_break] = ACTIONS(81), - [anon_sym_continue] = ACTIONS(83), - [anon_sym_goto] = ACTIONS(85), - [anon_sym___try] = ACTIONS(1124), - [anon_sym___leave] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [431] = { - [sym_identifier] = ACTIONS(1713), - [anon_sym_COMMA] = ACTIONS(1715), - [anon_sym_RPAREN] = ACTIONS(1715), - [anon_sym_LPAREN2] = ACTIONS(1715), - [anon_sym_BANG] = ACTIONS(1715), - [anon_sym_TILDE] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1713), - [anon_sym_PLUS] = ACTIONS(1713), - [anon_sym_STAR] = ACTIONS(1715), - [anon_sym_AMP] = ACTIONS(1715), - [anon_sym_SEMI] = ACTIONS(1715), - [anon_sym___extension__] = ACTIONS(1713), - [anon_sym_extern] = ACTIONS(1713), - [anon_sym___attribute__] = ACTIONS(1713), - [anon_sym___scanf] = ACTIONS(1713), - [anon_sym___printf] = ACTIONS(1713), - [anon_sym___read_mostly] = ACTIONS(1713), - [anon_sym___must_hold] = ACTIONS(1713), - [anon_sym___ro_after_init] = ACTIONS(1713), - [anon_sym___noreturn] = ACTIONS(1713), - [anon_sym___cold] = ACTIONS(1713), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1715), - [anon_sym___declspec] = ACTIONS(1713), - [anon_sym_LBRACE] = ACTIONS(1715), - [anon_sym_signed] = ACTIONS(1713), - [anon_sym_unsigned] = ACTIONS(1713), - [anon_sym_long] = ACTIONS(1713), - [anon_sym_short] = ACTIONS(1713), - [anon_sym_LBRACK] = ACTIONS(1713), - [anon_sym_static] = ACTIONS(1713), - [anon_sym_EQ] = ACTIONS(1715), - [anon_sym_auto] = ACTIONS(1713), - [anon_sym_register] = ACTIONS(1713), - [anon_sym_inline] = ACTIONS(1713), - [anon_sym___inline] = ACTIONS(1713), - [anon_sym___inline__] = ACTIONS(1713), - [anon_sym___forceinline] = ACTIONS(1713), - [anon_sym_thread_local] = ACTIONS(1713), - [anon_sym___thread] = ACTIONS(1713), - [anon_sym_const] = ACTIONS(1713), - [anon_sym_constexpr] = ACTIONS(1713), - [anon_sym_volatile] = ACTIONS(1713), - [anon_sym_restrict] = ACTIONS(1713), - [anon_sym___restrict__] = ACTIONS(1713), - [anon_sym__Atomic] = ACTIONS(1713), - [anon_sym__Noreturn] = ACTIONS(1713), - [anon_sym_noreturn] = ACTIONS(1713), - [anon_sym_alignas] = ACTIONS(1713), - [anon_sym__Alignas] = ACTIONS(1713), - [sym_primitive_type] = ACTIONS(1713), - [anon_sym_enum] = ACTIONS(1713), - [anon_sym_COLON] = ACTIONS(1715), - [anon_sym_struct] = ACTIONS(1713), - [anon_sym_union] = ACTIONS(1713), - [anon_sym_if] = ACTIONS(1713), - [anon_sym_switch] = ACTIONS(1713), - [anon_sym_case] = ACTIONS(1713), - [anon_sym_default] = ACTIONS(1713), - [anon_sym_while] = ACTIONS(1713), - [anon_sym_do] = ACTIONS(1713), - [anon_sym_for] = ACTIONS(1713), - [anon_sym_return] = ACTIONS(1713), - [anon_sym_break] = ACTIONS(1713), - [anon_sym_continue] = ACTIONS(1713), - [anon_sym_goto] = ACTIONS(1713), - [anon_sym___try] = ACTIONS(1713), - [anon_sym___leave] = ACTIONS(1713), - [anon_sym_DASH_DASH] = ACTIONS(1715), - [anon_sym_PLUS_PLUS] = ACTIONS(1715), - [anon_sym_sizeof] = ACTIONS(1713), - [anon_sym___alignof__] = ACTIONS(1713), - [anon_sym___alignof] = ACTIONS(1713), - [anon_sym__alignof] = ACTIONS(1713), - [anon_sym_alignof] = ACTIONS(1713), - [anon_sym__Alignof] = ACTIONS(1713), - [anon_sym_offsetof] = ACTIONS(1713), - [anon_sym__Generic] = ACTIONS(1713), - [anon_sym_asm] = ACTIONS(1713), - [anon_sym___asm__] = ACTIONS(1713), - [sym_number_literal] = ACTIONS(1715), - [anon_sym_L_SQUOTE] = ACTIONS(1715), - [anon_sym_u_SQUOTE] = ACTIONS(1715), - [anon_sym_U_SQUOTE] = ACTIONS(1715), - [anon_sym_u8_SQUOTE] = ACTIONS(1715), - [anon_sym_SQUOTE] = ACTIONS(1715), - [anon_sym_L_DQUOTE] = ACTIONS(1715), - [anon_sym_u_DQUOTE] = ACTIONS(1715), - [anon_sym_U_DQUOTE] = ACTIONS(1715), - [anon_sym_u8_DQUOTE] = ACTIONS(1715), - [anon_sym_DQUOTE] = ACTIONS(1715), - [sym_true] = ACTIONS(1713), - [sym_false] = ACTIONS(1713), - [anon_sym_NULL] = ACTIONS(1713), - [anon_sym_nullptr] = ACTIONS(1713), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [432] = { - [sym_attribute_declaration] = STATE(415), - [sym_compound_statement] = STATE(205), - [sym_attributed_statement] = STATE(205), - [sym_statement] = STATE(225), - [sym_labeled_statement] = STATE(205), - [sym_expression_statement] = STATE(205), - [sym_if_statement] = STATE(205), - [sym_switch_statement] = STATE(205), - [sym_case_statement] = STATE(205), - [sym_while_statement] = STATE(205), - [sym_do_statement] = STATE(205), - [sym_for_statement] = STATE(205), - [sym_return_statement] = STATE(205), - [sym_break_statement] = STATE(205), - [sym_continue_statement] = STATE(205), - [sym_goto_statement] = STATE(205), - [sym_seh_try_statement] = STATE(205), - [sym_seh_leave_statement] = STATE(205), - [sym_expression] = STATE(1193), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2067), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [aux_sym_attributed_declarator_repeat1] = STATE(415), - [sym_identifier] = ACTIONS(1565), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(447), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(455), - [anon_sym_if] = ACTIONS(457), - [anon_sym_switch] = ACTIONS(459), - [anon_sym_case] = ACTIONS(461), - [anon_sym_default] = ACTIONS(463), - [anon_sym_while] = ACTIONS(465), - [anon_sym_do] = ACTIONS(467), - [anon_sym_for] = ACTIONS(469), - [anon_sym_return] = ACTIONS(471), - [anon_sym_break] = ACTIONS(473), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_goto] = ACTIONS(477), - [anon_sym___try] = ACTIONS(479), - [anon_sym___leave] = ACTIONS(481), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [433] = { - [sym_attribute_declaration] = STATE(442), - [sym_compound_statement] = STATE(290), - [sym_attributed_statement] = STATE(290), - [sym_statement] = STATE(2104), - [sym_labeled_statement] = STATE(290), - [sym_expression_statement] = STATE(290), - [sym_if_statement] = STATE(290), - [sym_switch_statement] = STATE(290), - [sym_case_statement] = STATE(290), - [sym_while_statement] = STATE(290), - [sym_do_statement] = STATE(290), - [sym_for_statement] = STATE(290), - [sym_return_statement] = STATE(290), - [sym_break_statement] = STATE(290), - [sym_continue_statement] = STATE(290), - [sym_goto_statement] = STATE(290), - [sym_seh_try_statement] = STATE(290), - [sym_seh_leave_statement] = STATE(290), - [sym_expression] = STATE(1167), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2207), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [aux_sym_attributed_declarator_repeat1] = STATE(442), - [sym_identifier] = ACTIONS(1567), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(383), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_if] = ACTIONS(1118), - [anon_sym_switch] = ACTIONS(67), - [anon_sym_case] = ACTIONS(1569), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_while] = ACTIONS(1120), - [anon_sym_do] = ACTIONS(75), - [anon_sym_for] = ACTIONS(1122), - [anon_sym_return] = ACTIONS(79), - [anon_sym_break] = ACTIONS(81), - [anon_sym_continue] = ACTIONS(83), - [anon_sym_goto] = ACTIONS(85), - [anon_sym___try] = ACTIONS(1124), - [anon_sym___leave] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [434] = { - [sym_attribute_declaration] = STATE(415), - [sym_compound_statement] = STATE(205), - [sym_attributed_statement] = STATE(205), - [sym_statement] = STATE(159), - [sym_labeled_statement] = STATE(205), - [sym_expression_statement] = STATE(205), - [sym_if_statement] = STATE(205), - [sym_switch_statement] = STATE(205), - [sym_case_statement] = STATE(205), - [sym_while_statement] = STATE(205), - [sym_do_statement] = STATE(205), - [sym_for_statement] = STATE(205), - [sym_return_statement] = STATE(205), - [sym_break_statement] = STATE(205), - [sym_continue_statement] = STATE(205), - [sym_goto_statement] = STATE(205), - [sym_seh_try_statement] = STATE(205), - [sym_seh_leave_statement] = STATE(205), - [sym_expression] = STATE(1193), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2067), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [aux_sym_attributed_declarator_repeat1] = STATE(415), - [sym_identifier] = ACTIONS(1565), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(447), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(455), - [anon_sym_if] = ACTIONS(457), - [anon_sym_switch] = ACTIONS(459), - [anon_sym_case] = ACTIONS(461), - [anon_sym_default] = ACTIONS(463), - [anon_sym_while] = ACTIONS(465), - [anon_sym_do] = ACTIONS(467), - [anon_sym_for] = ACTIONS(469), - [anon_sym_return] = ACTIONS(471), - [anon_sym_break] = ACTIONS(473), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_goto] = ACTIONS(477), - [anon_sym___try] = ACTIONS(479), - [anon_sym___leave] = ACTIONS(481), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [435] = { - [sym_attribute_declaration] = STATE(435), - [sym_compound_statement] = STATE(180), - [sym_attributed_statement] = STATE(180), - [sym_statement] = STATE(197), - [sym_labeled_statement] = STATE(180), - [sym_expression_statement] = STATE(180), - [sym_if_statement] = STATE(180), - [sym_switch_statement] = STATE(180), - [sym_case_statement] = STATE(180), - [sym_while_statement] = STATE(180), - [sym_do_statement] = STATE(180), - [sym_for_statement] = STATE(180), - [sym_return_statement] = STATE(180), - [sym_break_statement] = STATE(180), - [sym_continue_statement] = STATE(180), - [sym_goto_statement] = STATE(180), - [sym_seh_try_statement] = STATE(180), - [sym_seh_leave_statement] = STATE(180), - [sym_expression] = STATE(1179), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2159), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [aux_sym_attributed_declarator_repeat1] = STATE(435), - [sym_identifier] = ACTIONS(1717), - [anon_sym_LPAREN2] = ACTIONS(1466), - [anon_sym_BANG] = ACTIONS(1469), - [anon_sym_TILDE] = ACTIONS(1469), - [anon_sym_DASH] = ACTIONS(1472), - [anon_sym_PLUS] = ACTIONS(1472), - [anon_sym_STAR] = ACTIONS(1475), - [anon_sym_AMP] = ACTIONS(1475), - [anon_sym_SEMI] = ACTIONS(1720), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1481), - [anon_sym_LBRACE] = ACTIONS(1484), - [anon_sym_if] = ACTIONS(1723), - [anon_sym_switch] = ACTIONS(1490), - [anon_sym_case] = ACTIONS(1726), - [anon_sym_default] = ACTIONS(1729), - [anon_sym_while] = ACTIONS(1732), - [anon_sym_do] = ACTIONS(1502), - [anon_sym_for] = ACTIONS(1735), - [anon_sym_return] = ACTIONS(1508), - [anon_sym_break] = ACTIONS(1511), - [anon_sym_continue] = ACTIONS(1514), - [anon_sym_goto] = ACTIONS(1517), - [anon_sym___try] = ACTIONS(1738), - [anon_sym___leave] = ACTIONS(1741), - [anon_sym_DASH_DASH] = ACTIONS(1526), - [anon_sym_PLUS_PLUS] = ACTIONS(1526), - [anon_sym_sizeof] = ACTIONS(1529), - [anon_sym___alignof__] = ACTIONS(1532), - [anon_sym___alignof] = ACTIONS(1532), - [anon_sym__alignof] = ACTIONS(1532), - [anon_sym_alignof] = ACTIONS(1532), - [anon_sym__Alignof] = ACTIONS(1532), - [anon_sym_offsetof] = ACTIONS(1535), - [anon_sym__Generic] = ACTIONS(1538), - [anon_sym_asm] = ACTIONS(1541), - [anon_sym___asm__] = ACTIONS(1541), - [sym_number_literal] = ACTIONS(1544), - [anon_sym_L_SQUOTE] = ACTIONS(1547), - [anon_sym_u_SQUOTE] = ACTIONS(1547), - [anon_sym_U_SQUOTE] = ACTIONS(1547), - [anon_sym_u8_SQUOTE] = ACTIONS(1547), - [anon_sym_SQUOTE] = ACTIONS(1547), - [anon_sym_L_DQUOTE] = ACTIONS(1550), - [anon_sym_u_DQUOTE] = ACTIONS(1550), - [anon_sym_U_DQUOTE] = ACTIONS(1550), - [anon_sym_u8_DQUOTE] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1550), - [sym_true] = ACTIONS(1553), - [sym_false] = ACTIONS(1553), - [anon_sym_NULL] = ACTIONS(1556), - [anon_sym_nullptr] = ACTIONS(1556), - [sym_comment] = ACTIONS(3), + [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), + [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), }, [436] = { - [sym_attribute_declaration] = STATE(442), - [sym_compound_statement] = STATE(290), - [sym_attributed_statement] = STATE(290), - [sym_statement] = STATE(281), - [sym_labeled_statement] = STATE(290), - [sym_expression_statement] = STATE(290), - [sym_if_statement] = STATE(290), - [sym_switch_statement] = STATE(290), - [sym_case_statement] = STATE(290), - [sym_while_statement] = STATE(290), - [sym_do_statement] = STATE(290), - [sym_for_statement] = STATE(290), - [sym_return_statement] = STATE(290), - [sym_break_statement] = STATE(290), - [sym_continue_statement] = STATE(290), - [sym_goto_statement] = STATE(290), - [sym_seh_try_statement] = STATE(290), - [sym_seh_leave_statement] = STATE(290), - [sym_expression] = STATE(1167), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2207), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [aux_sym_attributed_declarator_repeat1] = STATE(442), - [sym_identifier] = ACTIONS(1567), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(383), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_if] = ACTIONS(1118), - [anon_sym_switch] = ACTIONS(67), - [anon_sym_case] = ACTIONS(1569), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_while] = ACTIONS(1120), - [anon_sym_do] = ACTIONS(75), - [anon_sym_for] = ACTIONS(1122), - [anon_sym_return] = ACTIONS(79), - [anon_sym_break] = ACTIONS(81), - [anon_sym_continue] = ACTIONS(83), - [anon_sym_goto] = ACTIONS(85), - [anon_sym___try] = ACTIONS(1124), - [anon_sym___leave] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [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), + [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), + [sym_comment] = ACTIONS(5), }, [437] = { - [sym_attribute_declaration] = STATE(428), - [sym_compound_statement] = STATE(290), - [sym_attributed_statement] = STATE(290), - [sym_statement] = STATE(274), - [sym_labeled_statement] = STATE(290), - [sym_expression_statement] = STATE(290), - [sym_if_statement] = STATE(290), - [sym_switch_statement] = STATE(290), - [sym_case_statement] = STATE(290), - [sym_while_statement] = STATE(290), - [sym_do_statement] = STATE(290), - [sym_for_statement] = STATE(290), - [sym_return_statement] = STATE(290), - [sym_break_statement] = STATE(290), - [sym_continue_statement] = STATE(290), - [sym_goto_statement] = STATE(290), - [sym_seh_try_statement] = STATE(290), - [sym_seh_leave_statement] = STATE(290), - [sym_expression] = STATE(1167), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2207), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [aux_sym_attributed_declarator_repeat1] = STATE(428), - [sym_identifier] = ACTIONS(1563), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(383), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_if] = ACTIONS(395), - [anon_sym_switch] = ACTIONS(397), - [anon_sym_case] = ACTIONS(399), - [anon_sym_default] = ACTIONS(401), - [anon_sym_while] = ACTIONS(403), - [anon_sym_do] = ACTIONS(405), - [anon_sym_for] = ACTIONS(407), - [anon_sym_return] = ACTIONS(409), - [anon_sym_break] = ACTIONS(411), - [anon_sym_continue] = ACTIONS(413), - [anon_sym_goto] = ACTIONS(415), - [anon_sym___try] = ACTIONS(417), - [anon_sym___leave] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [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), + [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), + [sym_comment] = ACTIONS(5), }, [438] = { - [sym_attribute_declaration] = STATE(415), - [sym_compound_statement] = STATE(205), - [sym_attributed_statement] = STATE(205), - [sym_statement] = STATE(262), - [sym_labeled_statement] = STATE(205), - [sym_expression_statement] = STATE(205), - [sym_if_statement] = STATE(205), - [sym_switch_statement] = STATE(205), - [sym_case_statement] = STATE(205), - [sym_while_statement] = STATE(205), - [sym_do_statement] = STATE(205), - [sym_for_statement] = STATE(205), - [sym_return_statement] = STATE(205), - [sym_break_statement] = STATE(205), - [sym_continue_statement] = STATE(205), - [sym_goto_statement] = STATE(205), - [sym_seh_try_statement] = STATE(205), - [sym_seh_leave_statement] = STATE(205), - [sym_expression] = STATE(1193), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2067), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [aux_sym_attributed_declarator_repeat1] = STATE(415), - [sym_identifier] = ACTIONS(1565), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(447), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(455), - [anon_sym_if] = ACTIONS(457), - [anon_sym_switch] = ACTIONS(459), - [anon_sym_case] = ACTIONS(461), - [anon_sym_default] = ACTIONS(463), - [anon_sym_while] = ACTIONS(465), - [anon_sym_do] = ACTIONS(467), - [anon_sym_for] = ACTIONS(469), - [anon_sym_return] = ACTIONS(471), - [anon_sym_break] = ACTIONS(473), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_goto] = ACTIONS(477), - [anon_sym___try] = ACTIONS(479), - [anon_sym___leave] = ACTIONS(481), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [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), + [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), + [sym_comment] = ACTIONS(5), }, [439] = { - [sym_attribute_declaration] = STATE(417), - [sym_compound_statement] = STATE(77), - [sym_attributed_statement] = STATE(77), - [sym_statement] = STATE(113), - [sym_labeled_statement] = STATE(77), - [sym_expression_statement] = STATE(77), - [sym_if_statement] = STATE(77), - [sym_switch_statement] = STATE(77), - [sym_case_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_do_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_return_statement] = STATE(77), - [sym_break_statement] = STATE(77), - [sym_continue_statement] = STATE(77), - [sym_goto_statement] = STATE(77), - [sym_seh_try_statement] = STATE(77), - [sym_seh_leave_statement] = STATE(77), - [sym_expression] = STATE(1157), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2232), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [aux_sym_attributed_declarator_repeat1] = STATE(417), - [sym_identifier] = ACTIONS(1621), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(129), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(137), - [anon_sym_if] = ACTIONS(139), - [anon_sym_switch] = ACTIONS(141), - [anon_sym_case] = ACTIONS(143), - [anon_sym_default] = ACTIONS(145), - [anon_sym_while] = ACTIONS(147), - [anon_sym_do] = ACTIONS(149), - [anon_sym_for] = ACTIONS(151), - [anon_sym_return] = ACTIONS(153), - [anon_sym_break] = ACTIONS(155), - [anon_sym_continue] = ACTIONS(157), - [anon_sym_goto] = ACTIONS(159), - [anon_sym___try] = ACTIONS(161), - [anon_sym___leave] = ACTIONS(163), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [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), + [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), + [sym_comment] = ACTIONS(5), }, [440] = { - [sym_attribute_declaration] = STATE(421), - [sym_compound_statement] = STATE(180), - [sym_attributed_statement] = STATE(180), - [sym_statement] = STATE(285), - [sym_labeled_statement] = STATE(180), - [sym_expression_statement] = STATE(180), - [sym_if_statement] = STATE(180), - [sym_switch_statement] = STATE(180), - [sym_case_statement] = STATE(180), - [sym_while_statement] = STATE(180), - [sym_do_statement] = STATE(180), - [sym_for_statement] = STATE(180), - [sym_return_statement] = STATE(180), - [sym_break_statement] = STATE(180), - [sym_continue_statement] = STATE(180), - [sym_goto_statement] = STATE(180), - [sym_seh_try_statement] = STATE(180), - [sym_seh_leave_statement] = STATE(180), - [sym_expression] = STATE(1179), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2159), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [aux_sym_attributed_declarator_repeat1] = STATE(421), - [sym_identifier] = ACTIONS(1559), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1006), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_if] = ACTIONS(65), - [anon_sym_switch] = ACTIONS(67), - [anon_sym_case] = ACTIONS(69), - [anon_sym_default] = ACTIONS(71), - [anon_sym_while] = ACTIONS(73), - [anon_sym_do] = ACTIONS(75), - [anon_sym_for] = ACTIONS(77), - [anon_sym_return] = ACTIONS(79), - [anon_sym_break] = ACTIONS(81), - [anon_sym_continue] = ACTIONS(83), - [anon_sym_goto] = ACTIONS(85), - [anon_sym___try] = ACTIONS(1008), - [anon_sym___leave] = ACTIONS(1010), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [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), + [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), + [sym_comment] = ACTIONS(5), }, [441] = { - [sym_attribute_declaration] = STATE(442), - [sym_compound_statement] = STATE(290), - [sym_attributed_statement] = STATE(290), - [sym_statement] = STATE(458), - [sym_labeled_statement] = STATE(290), - [sym_expression_statement] = STATE(290), - [sym_if_statement] = STATE(290), - [sym_switch_statement] = STATE(290), - [sym_case_statement] = STATE(290), - [sym_while_statement] = STATE(290), - [sym_do_statement] = STATE(290), - [sym_for_statement] = STATE(290), - [sym_return_statement] = STATE(290), - [sym_break_statement] = STATE(290), - [sym_continue_statement] = STATE(290), - [sym_goto_statement] = STATE(290), - [sym_seh_try_statement] = STATE(290), - [sym_seh_leave_statement] = STATE(290), - [sym_expression] = STATE(1167), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2207), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [aux_sym_attributed_declarator_repeat1] = STATE(442), - [sym_identifier] = ACTIONS(1567), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(383), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_if] = ACTIONS(1118), - [anon_sym_switch] = ACTIONS(67), - [anon_sym_case] = ACTIONS(1569), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_while] = ACTIONS(1120), - [anon_sym_do] = ACTIONS(75), - [anon_sym_for] = ACTIONS(1122), - [anon_sym_return] = ACTIONS(79), - [anon_sym_break] = ACTIONS(81), - [anon_sym_continue] = ACTIONS(83), - [anon_sym_goto] = ACTIONS(85), - [anon_sym___try] = ACTIONS(1124), - [anon_sym___leave] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [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), + [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), + [sym_comment] = ACTIONS(5), }, [442] = { - [sym_attribute_declaration] = STATE(406), - [sym_compound_statement] = STATE(290), - [sym_attributed_statement] = STATE(290), - [sym_statement] = STATE(197), - [sym_labeled_statement] = STATE(290), - [sym_expression_statement] = STATE(290), - [sym_if_statement] = STATE(290), - [sym_switch_statement] = STATE(290), - [sym_case_statement] = STATE(290), - [sym_while_statement] = STATE(290), - [sym_do_statement] = STATE(290), - [sym_for_statement] = STATE(290), - [sym_return_statement] = STATE(290), - [sym_break_statement] = STATE(290), - [sym_continue_statement] = STATE(290), - [sym_goto_statement] = STATE(290), - [sym_seh_try_statement] = STATE(290), - [sym_seh_leave_statement] = STATE(290), - [sym_expression] = STATE(1167), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2207), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [aux_sym_attributed_declarator_repeat1] = STATE(406), - [sym_identifier] = ACTIONS(1567), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(383), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_if] = ACTIONS(1118), - [anon_sym_switch] = ACTIONS(67), - [anon_sym_case] = ACTIONS(1569), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_while] = ACTIONS(1120), - [anon_sym_do] = ACTIONS(75), - [anon_sym_for] = ACTIONS(1122), - [anon_sym_return] = ACTIONS(79), - [anon_sym_break] = ACTIONS(81), - [anon_sym_continue] = ACTIONS(83), - [anon_sym_goto] = ACTIONS(85), - [anon_sym___try] = ACTIONS(1124), - [anon_sym___leave] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [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), + [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), }, [443] = { - [sym_identifier] = ACTIONS(1744), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_RPAREN] = ACTIONS(1746), - [anon_sym_LPAREN2] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1746), - [anon_sym_TILDE] = ACTIONS(1746), - [anon_sym_DASH] = ACTIONS(1744), - [anon_sym_PLUS] = ACTIONS(1744), - [anon_sym_STAR] = ACTIONS(1746), - [anon_sym_AMP] = ACTIONS(1746), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym___extension__] = ACTIONS(1744), - [anon_sym_extern] = ACTIONS(1744), - [anon_sym___attribute__] = ACTIONS(1744), - [anon_sym___scanf] = ACTIONS(1744), - [anon_sym___printf] = ACTIONS(1744), - [anon_sym___read_mostly] = ACTIONS(1744), - [anon_sym___must_hold] = ACTIONS(1744), - [anon_sym___ro_after_init] = ACTIONS(1744), - [anon_sym___noreturn] = ACTIONS(1744), - [anon_sym___cold] = ACTIONS(1744), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1746), - [anon_sym___declspec] = ACTIONS(1744), - [anon_sym_LBRACE] = ACTIONS(1746), - [anon_sym_signed] = ACTIONS(1744), - [anon_sym_unsigned] = ACTIONS(1744), - [anon_sym_long] = ACTIONS(1744), - [anon_sym_short] = ACTIONS(1744), - [anon_sym_LBRACK] = ACTIONS(1744), - [anon_sym_static] = ACTIONS(1744), - [anon_sym_EQ] = ACTIONS(1746), - [anon_sym_auto] = ACTIONS(1744), - [anon_sym_register] = ACTIONS(1744), - [anon_sym_inline] = ACTIONS(1744), - [anon_sym___inline] = ACTIONS(1744), - [anon_sym___inline__] = ACTIONS(1744), - [anon_sym___forceinline] = ACTIONS(1744), - [anon_sym_thread_local] = ACTIONS(1744), - [anon_sym___thread] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1744), - [anon_sym_constexpr] = ACTIONS(1744), - [anon_sym_volatile] = ACTIONS(1744), - [anon_sym_restrict] = ACTIONS(1744), - [anon_sym___restrict__] = ACTIONS(1744), - [anon_sym__Atomic] = ACTIONS(1744), - [anon_sym__Noreturn] = ACTIONS(1744), - [anon_sym_noreturn] = ACTIONS(1744), - [anon_sym_alignas] = ACTIONS(1744), - [anon_sym__Alignas] = ACTIONS(1744), - [sym_primitive_type] = ACTIONS(1744), - [anon_sym_enum] = ACTIONS(1744), - [anon_sym_COLON] = ACTIONS(1746), - [anon_sym_struct] = ACTIONS(1744), - [anon_sym_union] = ACTIONS(1744), - [anon_sym_if] = ACTIONS(1744), - [anon_sym_switch] = ACTIONS(1744), - [anon_sym_case] = ACTIONS(1744), - [anon_sym_default] = ACTIONS(1744), - [anon_sym_while] = ACTIONS(1744), - [anon_sym_do] = ACTIONS(1744), - [anon_sym_for] = ACTIONS(1744), - [anon_sym_return] = ACTIONS(1744), - [anon_sym_break] = ACTIONS(1744), - [anon_sym_continue] = ACTIONS(1744), - [anon_sym_goto] = ACTIONS(1744), - [anon_sym___try] = ACTIONS(1744), - [anon_sym___leave] = ACTIONS(1744), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_sizeof] = ACTIONS(1744), - [anon_sym___alignof__] = ACTIONS(1744), - [anon_sym___alignof] = ACTIONS(1744), - [anon_sym__alignof] = ACTIONS(1744), - [anon_sym_alignof] = ACTIONS(1744), - [anon_sym__Alignof] = ACTIONS(1744), - [anon_sym_offsetof] = ACTIONS(1744), - [anon_sym__Generic] = ACTIONS(1744), - [anon_sym_asm] = ACTIONS(1744), - [anon_sym___asm__] = ACTIONS(1744), - [sym_number_literal] = ACTIONS(1746), - [anon_sym_L_SQUOTE] = ACTIONS(1746), - [anon_sym_u_SQUOTE] = ACTIONS(1746), - [anon_sym_U_SQUOTE] = ACTIONS(1746), - [anon_sym_u8_SQUOTE] = ACTIONS(1746), - [anon_sym_SQUOTE] = ACTIONS(1746), - [anon_sym_L_DQUOTE] = ACTIONS(1746), - [anon_sym_u_DQUOTE] = ACTIONS(1746), - [anon_sym_U_DQUOTE] = ACTIONS(1746), - [anon_sym_u8_DQUOTE] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(1746), - [sym_true] = ACTIONS(1744), - [sym_false] = ACTIONS(1744), - [anon_sym_NULL] = ACTIONS(1744), - [anon_sym_nullptr] = ACTIONS(1744), - [sym_comment] = ACTIONS(3), + [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(439), - [sym_compound_statement] = STATE(77), - [sym_attributed_statement] = STATE(77), - [sym_statement] = STATE(80), - [sym_labeled_statement] = STATE(77), - [sym_expression_statement] = STATE(77), - [sym_if_statement] = STATE(77), - [sym_switch_statement] = STATE(77), - [sym_case_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_do_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_return_statement] = STATE(77), - [sym_break_statement] = STATE(77), - [sym_continue_statement] = STATE(77), - [sym_goto_statement] = STATE(77), - [sym_seh_try_statement] = STATE(77), - [sym_seh_leave_statement] = STATE(77), - [sym_expression] = STATE(1157), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2232), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [aux_sym_attributed_declarator_repeat1] = STATE(439), - [sym_identifier] = ACTIONS(1621), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(129), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(137), - [anon_sym_if] = ACTIONS(139), - [anon_sym_switch] = ACTIONS(141), - [anon_sym_case] = ACTIONS(143), - [anon_sym_default] = ACTIONS(145), - [anon_sym_while] = ACTIONS(147), - [anon_sym_do] = ACTIONS(149), - [anon_sym_for] = ACTIONS(151), - [anon_sym_return] = ACTIONS(153), - [anon_sym_break] = ACTIONS(155), - [anon_sym_continue] = ACTIONS(157), - [anon_sym_goto] = ACTIONS(159), - [anon_sym___try] = ACTIONS(161), - [anon_sym___leave] = ACTIONS(163), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [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), + [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), + [sym_comment] = ACTIONS(5), }, [445] = { - [sym_attribute_declaration] = STATE(442), - [sym_compound_statement] = STATE(290), - [sym_attributed_statement] = STATE(290), - [sym_statement] = STATE(285), - [sym_labeled_statement] = STATE(290), - [sym_expression_statement] = STATE(290), - [sym_if_statement] = STATE(290), - [sym_switch_statement] = STATE(290), - [sym_case_statement] = STATE(290), - [sym_while_statement] = STATE(290), - [sym_do_statement] = STATE(290), - [sym_for_statement] = STATE(290), - [sym_return_statement] = STATE(290), - [sym_break_statement] = STATE(290), - [sym_continue_statement] = STATE(290), - [sym_goto_statement] = STATE(290), - [sym_seh_try_statement] = STATE(290), - [sym_seh_leave_statement] = STATE(290), - [sym_expression] = STATE(1167), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2207), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [aux_sym_attributed_declarator_repeat1] = STATE(442), - [sym_identifier] = ACTIONS(1567), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(383), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_if] = ACTIONS(1118), - [anon_sym_switch] = ACTIONS(67), - [anon_sym_case] = ACTIONS(1569), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_while] = ACTIONS(1120), - [anon_sym_do] = ACTIONS(75), - [anon_sym_for] = ACTIONS(1122), - [anon_sym_return] = ACTIONS(79), - [anon_sym_break] = ACTIONS(81), - [anon_sym_continue] = ACTIONS(83), - [anon_sym_goto] = ACTIONS(85), - [anon_sym___try] = ACTIONS(1124), - [anon_sym___leave] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [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), + [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), + [sym_comment] = ACTIONS(5), }, [446] = { - [sym_attribute_declaration] = STATE(442), - [sym_compound_statement] = STATE(290), - [sym_attributed_statement] = STATE(290), - [sym_statement] = STATE(2305), - [sym_labeled_statement] = STATE(290), - [sym_expression_statement] = STATE(290), - [sym_if_statement] = STATE(290), - [sym_switch_statement] = STATE(290), - [sym_case_statement] = STATE(290), - [sym_while_statement] = STATE(290), - [sym_do_statement] = STATE(290), - [sym_for_statement] = STATE(290), - [sym_return_statement] = STATE(290), - [sym_break_statement] = STATE(290), - [sym_continue_statement] = STATE(290), - [sym_goto_statement] = STATE(290), - [sym_seh_try_statement] = STATE(290), - [sym_seh_leave_statement] = STATE(290), - [sym_expression] = STATE(1167), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2207), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [aux_sym_attributed_declarator_repeat1] = STATE(442), - [sym_identifier] = ACTIONS(1567), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(383), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_if] = ACTIONS(1118), - [anon_sym_switch] = ACTIONS(67), - [anon_sym_case] = ACTIONS(1569), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_while] = ACTIONS(1120), - [anon_sym_do] = ACTIONS(75), - [anon_sym_for] = ACTIONS(1122), - [anon_sym_return] = ACTIONS(79), - [anon_sym_break] = ACTIONS(81), - [anon_sym_continue] = ACTIONS(83), - [anon_sym_goto] = ACTIONS(85), - [anon_sym___try] = ACTIONS(1124), - [anon_sym___leave] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [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_string_literal] = STATE(520), - [aux_sym_sized_type_specifier_repeat1] = STATE(885), - [sym_identifier] = ACTIONS(1748), - [anon_sym_COMMA] = ACTIONS(1750), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1756), - [anon_sym_PLUS] = ACTIONS(1756), - [anon_sym_STAR] = ACTIONS(1758), - [anon_sym_SLASH] = ACTIONS(1756), - [anon_sym_PERCENT] = ACTIONS(1756), - [anon_sym_PIPE_PIPE] = ACTIONS(1750), - [anon_sym_AMP_AMP] = ACTIONS(1750), - [anon_sym_PIPE] = ACTIONS(1756), - [anon_sym_CARET] = ACTIONS(1756), - [anon_sym_AMP] = ACTIONS(1756), - [anon_sym_EQ_EQ] = ACTIONS(1750), - [anon_sym_BANG_EQ] = ACTIONS(1750), - [anon_sym_GT] = ACTIONS(1756), - [anon_sym_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_EQ] = ACTIONS(1750), - [anon_sym_LT] = ACTIONS(1756), - [anon_sym_LT_LT] = ACTIONS(1756), - [anon_sym_GT_GT] = ACTIONS(1756), - [anon_sym_SEMI] = ACTIONS(1750), - [anon_sym___extension__] = ACTIONS(1748), - [anon_sym_extern] = ACTIONS(1748), - [anon_sym___attribute__] = ACTIONS(1748), - [anon_sym___scanf] = ACTIONS(1748), - [anon_sym___printf] = ACTIONS(1748), - [anon_sym___read_mostly] = ACTIONS(1748), - [anon_sym___must_hold] = ACTIONS(1748), - [anon_sym___ro_after_init] = ACTIONS(1748), - [anon_sym___noreturn] = ACTIONS(1748), - [anon_sym___cold] = ACTIONS(1748), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1761), - [anon_sym___declspec] = ACTIONS(1748), - [anon_sym___based] = ACTIONS(1748), - [anon_sym___init] = ACTIONS(1748), - [anon_sym___exit] = ACTIONS(1748), - [anon_sym___cdecl] = ACTIONS(1748), - [anon_sym___clrcall] = ACTIONS(1748), - [anon_sym___stdcall] = ACTIONS(1748), - [anon_sym___fastcall] = ACTIONS(1748), - [anon_sym___thiscall] = ACTIONS(1748), - [anon_sym___vectorcall] = ACTIONS(1748), - [anon_sym_signed] = ACTIONS(1763), - [anon_sym_unsigned] = ACTIONS(1763), - [anon_sym_long] = ACTIONS(1763), - [anon_sym_short] = ACTIONS(1763), - [anon_sym_LBRACK] = ACTIONS(1756), - [anon_sym_static] = ACTIONS(1748), - [anon_sym_EQ] = ACTIONS(1765), - [anon_sym_auto] = ACTIONS(1748), - [anon_sym_register] = ACTIONS(1748), - [anon_sym_inline] = ACTIONS(1748), - [anon_sym___inline] = ACTIONS(1748), - [anon_sym___inline__] = ACTIONS(1748), - [anon_sym___forceinline] = ACTIONS(1748), - [anon_sym_thread_local] = ACTIONS(1748), - [anon_sym___thread] = ACTIONS(1748), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_constexpr] = ACTIONS(1748), - [anon_sym_volatile] = ACTIONS(1748), - [anon_sym_restrict] = ACTIONS(1748), - [anon_sym___restrict__] = ACTIONS(1748), - [anon_sym__Atomic] = ACTIONS(1748), - [anon_sym__Noreturn] = ACTIONS(1748), - [anon_sym_noreturn] = ACTIONS(1748), - [anon_sym_alignas] = ACTIONS(1748), - [anon_sym__Alignas] = ACTIONS(1748), - [anon_sym_COLON] = ACTIONS(1767), - [anon_sym_QMARK] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1769), - [anon_sym_SLASH_EQ] = ACTIONS(1769), - [anon_sym_PERCENT_EQ] = ACTIONS(1769), - [anon_sym_PLUS_EQ] = ACTIONS(1769), - [anon_sym_DASH_EQ] = ACTIONS(1769), - [anon_sym_LT_LT_EQ] = ACTIONS(1769), - [anon_sym_GT_GT_EQ] = ACTIONS(1769), - [anon_sym_AMP_EQ] = ACTIONS(1769), - [anon_sym_CARET_EQ] = ACTIONS(1769), - [anon_sym_PIPE_EQ] = ACTIONS(1769), - [anon_sym_DASH_DASH] = ACTIONS(1750), - [anon_sym_PLUS_PLUS] = ACTIONS(1750), - [anon_sym_DOT] = ACTIONS(1750), - [anon_sym_DASH_GT] = ACTIONS(1750), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_comment] = ACTIONS(3), + [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), + [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), + [sym_comment] = ACTIONS(5), }, [448] = { - [sym_string_literal] = STATE(520), - [aux_sym_sized_type_specifier_repeat1] = STATE(885), - [sym_identifier] = ACTIONS(1748), - [anon_sym_COMMA] = ACTIONS(1750), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1756), - [anon_sym_PLUS] = ACTIONS(1756), - [anon_sym_STAR] = ACTIONS(1758), - [anon_sym_SLASH] = ACTIONS(1756), - [anon_sym_PERCENT] = ACTIONS(1756), - [anon_sym_PIPE_PIPE] = ACTIONS(1750), - [anon_sym_AMP_AMP] = ACTIONS(1750), - [anon_sym_PIPE] = ACTIONS(1756), - [anon_sym_CARET] = ACTIONS(1756), - [anon_sym_AMP] = ACTIONS(1756), - [anon_sym_EQ_EQ] = ACTIONS(1750), - [anon_sym_BANG_EQ] = ACTIONS(1750), - [anon_sym_GT] = ACTIONS(1756), - [anon_sym_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_EQ] = ACTIONS(1750), - [anon_sym_LT] = ACTIONS(1756), - [anon_sym_LT_LT] = ACTIONS(1756), - [anon_sym_GT_GT] = ACTIONS(1756), - [anon_sym_SEMI] = ACTIONS(1750), - [anon_sym___extension__] = ACTIONS(1748), - [anon_sym_extern] = ACTIONS(1748), - [anon_sym___attribute__] = ACTIONS(1748), - [anon_sym___scanf] = ACTIONS(1748), - [anon_sym___printf] = ACTIONS(1748), - [anon_sym___read_mostly] = ACTIONS(1748), - [anon_sym___must_hold] = ACTIONS(1748), - [anon_sym___ro_after_init] = ACTIONS(1748), - [anon_sym___noreturn] = ACTIONS(1748), - [anon_sym___cold] = ACTIONS(1748), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1761), - [anon_sym___declspec] = ACTIONS(1748), - [anon_sym___based] = ACTIONS(1748), - [anon_sym___init] = ACTIONS(1748), - [anon_sym___exit] = ACTIONS(1748), - [anon_sym___cdecl] = ACTIONS(1748), - [anon_sym___clrcall] = ACTIONS(1748), - [anon_sym___stdcall] = ACTIONS(1748), - [anon_sym___fastcall] = ACTIONS(1748), - [anon_sym___thiscall] = ACTIONS(1748), - [anon_sym___vectorcall] = ACTIONS(1748), - [anon_sym_signed] = ACTIONS(1763), - [anon_sym_unsigned] = ACTIONS(1763), - [anon_sym_long] = ACTIONS(1763), - [anon_sym_short] = ACTIONS(1763), - [anon_sym_LBRACK] = ACTIONS(1756), - [anon_sym_static] = ACTIONS(1748), - [anon_sym_EQ] = ACTIONS(1765), - [anon_sym_auto] = ACTIONS(1748), - [anon_sym_register] = ACTIONS(1748), - [anon_sym_inline] = ACTIONS(1748), - [anon_sym___inline] = ACTIONS(1748), - [anon_sym___inline__] = ACTIONS(1748), - [anon_sym___forceinline] = ACTIONS(1748), - [anon_sym_thread_local] = ACTIONS(1748), - [anon_sym___thread] = ACTIONS(1748), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_constexpr] = ACTIONS(1748), - [anon_sym_volatile] = ACTIONS(1748), - [anon_sym_restrict] = ACTIONS(1748), - [anon_sym___restrict__] = ACTIONS(1748), - [anon_sym__Atomic] = ACTIONS(1748), - [anon_sym__Noreturn] = ACTIONS(1748), - [anon_sym_noreturn] = ACTIONS(1748), - [anon_sym_alignas] = ACTIONS(1748), - [anon_sym__Alignas] = ACTIONS(1748), - [anon_sym_COLON] = ACTIONS(1771), - [anon_sym_QMARK] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1769), - [anon_sym_SLASH_EQ] = ACTIONS(1769), - [anon_sym_PERCENT_EQ] = ACTIONS(1769), - [anon_sym_PLUS_EQ] = ACTIONS(1769), - [anon_sym_DASH_EQ] = ACTIONS(1769), - [anon_sym_LT_LT_EQ] = ACTIONS(1769), - [anon_sym_GT_GT_EQ] = ACTIONS(1769), - [anon_sym_AMP_EQ] = ACTIONS(1769), - [anon_sym_CARET_EQ] = ACTIONS(1769), - [anon_sym_PIPE_EQ] = ACTIONS(1769), - [anon_sym_DASH_DASH] = ACTIONS(1750), - [anon_sym_PLUS_PLUS] = ACTIONS(1750), - [anon_sym_DOT] = ACTIONS(1750), - [anon_sym_DASH_GT] = ACTIONS(1750), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_comment] = ACTIONS(3), + [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), + [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), + [sym_comment] = ACTIONS(5), }, [449] = { - [sym_expression] = STATE(771), - [sym__string] = STATE(758), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_initializer_list] = STATE(760), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [sym_identifier] = ACTIONS(1773), - [anon_sym_COMMA] = ACTIONS(1431), - [anon_sym_RPAREN] = ACTIONS(1431), - [anon_sym_LPAREN2] = ACTIONS(1431), + [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(21), - [anon_sym_DASH] = ACTIONS(1437), - [anon_sym_PLUS] = ACTIONS(1437), - [anon_sym_STAR] = ACTIONS(1431), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1431), - [anon_sym_PIPE_PIPE] = ACTIONS(1431), - [anon_sym_AMP_AMP] = ACTIONS(1431), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_CARET] = ACTIONS(1431), - [anon_sym_AMP] = ACTIONS(1437), - [anon_sym_EQ_EQ] = ACTIONS(1431), - [anon_sym_BANG_EQ] = ACTIONS(1431), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_GT_EQ] = ACTIONS(1431), - [anon_sym_LT_EQ] = ACTIONS(1431), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_LT_LT] = ACTIONS(1431), - [anon_sym_GT_GT] = ACTIONS(1431), - [anon_sym_SEMI] = ACTIONS(1431), - [anon_sym___attribute__] = ACTIONS(1437), - [anon_sym___scanf] = ACTIONS(1437), - [anon_sym___printf] = ACTIONS(1437), - [anon_sym___read_mostly] = ACTIONS(1437), - [anon_sym___must_hold] = ACTIONS(1437), - [anon_sym___ro_after_init] = ACTIONS(1437), - [anon_sym___noreturn] = ACTIONS(1437), - [anon_sym___cold] = ACTIONS(1437), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_RBRACE] = ACTIONS(1431), - [anon_sym_LBRACK] = ACTIONS(1431), - [anon_sym_COLON] = ACTIONS(1431), - [anon_sym_QMARK] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1431), - [anon_sym_PLUS_PLUS] = ACTIONS(1431), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(1437), - [anon_sym_DASH_GT] = ACTIONS(1431), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [450] = { - [sym_expression] = STATE(1057), - [sym__string] = STATE(758), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(762), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(762), - [sym_call_expression] = STATE(762), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(762), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(762), - [sym_initializer_list] = STATE(760), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [sym_identifier] = ACTIONS(1429), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1431), - [anon_sym_LPAREN2] = ACTIONS(1431), - [anon_sym_BANG] = ACTIONS(1775), - [anon_sym_TILDE] = ACTIONS(1777), - [anon_sym_DASH] = ACTIONS(1437), - [anon_sym_PLUS] = ACTIONS(1437), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1437), - [anon_sym_PIPE_PIPE] = ACTIONS(1431), - [anon_sym_AMP_AMP] = ACTIONS(1431), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_CARET] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(1437), - [anon_sym_EQ_EQ] = ACTIONS(1431), - [anon_sym_BANG_EQ] = ACTIONS(1431), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_GT_EQ] = ACTIONS(1431), - [anon_sym_LT_EQ] = ACTIONS(1431), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_LT_LT] = ACTIONS(1437), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_LBRACK] = ACTIONS(1431), - [anon_sym_RBRACK] = ACTIONS(1431), - [anon_sym_EQ] = ACTIONS(1437), - [anon_sym_QMARK] = ACTIONS(1431), - [anon_sym_STAR_EQ] = ACTIONS(1431), - [anon_sym_SLASH_EQ] = ACTIONS(1431), - [anon_sym_PERCENT_EQ] = ACTIONS(1431), - [anon_sym_PLUS_EQ] = ACTIONS(1431), - [anon_sym_DASH_EQ] = ACTIONS(1431), - [anon_sym_LT_LT_EQ] = ACTIONS(1431), - [anon_sym_GT_GT_EQ] = ACTIONS(1431), - [anon_sym_AMP_EQ] = ACTIONS(1431), - [anon_sym_CARET_EQ] = ACTIONS(1431), - [anon_sym_PIPE_EQ] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1431), - [anon_sym_PLUS_PLUS] = ACTIONS(1431), - [anon_sym_sizeof] = ACTIONS(1779), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(1437), - [anon_sym_DASH_GT] = ACTIONS(1431), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [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), + [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), + [sym_comment] = ACTIONS(5), }, [451] = { - [sym_string_literal] = STATE(520), - [aux_sym_sized_type_specifier_repeat1] = STATE(885), - [sym_identifier] = ACTIONS(1748), - [anon_sym_COMMA] = ACTIONS(1750), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1756), - [anon_sym_PLUS] = ACTIONS(1756), - [anon_sym_STAR] = ACTIONS(1758), - [anon_sym_SLASH] = ACTIONS(1756), - [anon_sym_PERCENT] = ACTIONS(1756), - [anon_sym_PIPE_PIPE] = ACTIONS(1750), - [anon_sym_AMP_AMP] = ACTIONS(1750), - [anon_sym_PIPE] = ACTIONS(1756), - [anon_sym_CARET] = ACTIONS(1756), - [anon_sym_AMP] = ACTIONS(1756), - [anon_sym_EQ_EQ] = ACTIONS(1750), - [anon_sym_BANG_EQ] = ACTIONS(1750), - [anon_sym_GT] = ACTIONS(1756), - [anon_sym_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_EQ] = ACTIONS(1750), - [anon_sym_LT] = ACTIONS(1756), - [anon_sym_LT_LT] = ACTIONS(1756), - [anon_sym_GT_GT] = ACTIONS(1756), - [anon_sym_SEMI] = ACTIONS(1781), - [anon_sym___extension__] = ACTIONS(1748), - [anon_sym_extern] = ACTIONS(1748), - [anon_sym___attribute__] = ACTIONS(1748), - [anon_sym___scanf] = ACTIONS(1748), - [anon_sym___printf] = ACTIONS(1748), - [anon_sym___read_mostly] = ACTIONS(1748), - [anon_sym___must_hold] = ACTIONS(1748), - [anon_sym___ro_after_init] = ACTIONS(1748), - [anon_sym___noreturn] = ACTIONS(1748), - [anon_sym___cold] = ACTIONS(1748), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1761), - [anon_sym___declspec] = ACTIONS(1748), - [anon_sym___based] = ACTIONS(1748), - [anon_sym___init] = ACTIONS(1748), - [anon_sym___exit] = ACTIONS(1748), - [anon_sym___cdecl] = ACTIONS(1748), - [anon_sym___clrcall] = ACTIONS(1748), - [anon_sym___stdcall] = ACTIONS(1748), - [anon_sym___fastcall] = ACTIONS(1748), - [anon_sym___thiscall] = ACTIONS(1748), - [anon_sym___vectorcall] = ACTIONS(1748), - [anon_sym_signed] = ACTIONS(1763), - [anon_sym_unsigned] = ACTIONS(1763), - [anon_sym_long] = ACTIONS(1763), - [anon_sym_short] = ACTIONS(1763), - [anon_sym_LBRACK] = ACTIONS(1756), - [anon_sym_static] = ACTIONS(1748), - [anon_sym_EQ] = ACTIONS(1765), - [anon_sym_auto] = ACTIONS(1748), - [anon_sym_register] = ACTIONS(1748), - [anon_sym_inline] = ACTIONS(1748), - [anon_sym___inline] = ACTIONS(1748), - [anon_sym___inline__] = ACTIONS(1748), - [anon_sym___forceinline] = ACTIONS(1748), - [anon_sym_thread_local] = ACTIONS(1748), - [anon_sym___thread] = ACTIONS(1748), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_constexpr] = ACTIONS(1748), - [anon_sym_volatile] = ACTIONS(1748), - [anon_sym_restrict] = ACTIONS(1748), - [anon_sym___restrict__] = ACTIONS(1748), - [anon_sym__Atomic] = ACTIONS(1748), - [anon_sym__Noreturn] = ACTIONS(1748), - [anon_sym_noreturn] = ACTIONS(1748), - [anon_sym_alignas] = ACTIONS(1748), - [anon_sym__Alignas] = ACTIONS(1748), - [anon_sym_COLON] = ACTIONS(1771), - [anon_sym_QMARK] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1769), - [anon_sym_SLASH_EQ] = ACTIONS(1769), - [anon_sym_PERCENT_EQ] = ACTIONS(1769), - [anon_sym_PLUS_EQ] = ACTIONS(1769), - [anon_sym_DASH_EQ] = ACTIONS(1769), - [anon_sym_LT_LT_EQ] = ACTIONS(1769), - [anon_sym_GT_GT_EQ] = ACTIONS(1769), - [anon_sym_AMP_EQ] = ACTIONS(1769), - [anon_sym_CARET_EQ] = ACTIONS(1769), - [anon_sym_PIPE_EQ] = ACTIONS(1769), - [anon_sym_DASH_DASH] = ACTIONS(1750), - [anon_sym_PLUS_PLUS] = ACTIONS(1750), - [anon_sym_DOT] = ACTIONS(1750), - [anon_sym_DASH_GT] = ACTIONS(1750), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_comment] = ACTIONS(3), + [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_string_literal] = STATE(520), - [aux_sym_sized_type_specifier_repeat1] = STATE(885), - [sym_identifier] = ACTIONS(1748), - [anon_sym_COMMA] = ACTIONS(1750), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1756), - [anon_sym_PLUS] = ACTIONS(1756), - [anon_sym_STAR] = ACTIONS(1758), - [anon_sym_SLASH] = ACTIONS(1756), - [anon_sym_PERCENT] = ACTIONS(1756), - [anon_sym_PIPE_PIPE] = ACTIONS(1750), - [anon_sym_AMP_AMP] = ACTIONS(1750), - [anon_sym_PIPE] = ACTIONS(1756), - [anon_sym_CARET] = ACTIONS(1756), - [anon_sym_AMP] = ACTIONS(1756), - [anon_sym_EQ_EQ] = ACTIONS(1750), - [anon_sym_BANG_EQ] = ACTIONS(1750), - [anon_sym_GT] = ACTIONS(1756), - [anon_sym_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_EQ] = ACTIONS(1750), - [anon_sym_LT] = ACTIONS(1756), - [anon_sym_LT_LT] = ACTIONS(1756), - [anon_sym_GT_GT] = ACTIONS(1756), - [anon_sym_SEMI] = ACTIONS(1781), - [anon_sym___extension__] = ACTIONS(1748), - [anon_sym_extern] = ACTIONS(1748), - [anon_sym___attribute__] = ACTIONS(1748), - [anon_sym___scanf] = ACTIONS(1748), - [anon_sym___printf] = ACTIONS(1748), - [anon_sym___read_mostly] = ACTIONS(1748), - [anon_sym___must_hold] = ACTIONS(1748), - [anon_sym___ro_after_init] = ACTIONS(1748), - [anon_sym___noreturn] = ACTIONS(1748), - [anon_sym___cold] = ACTIONS(1748), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1761), - [anon_sym___declspec] = ACTIONS(1748), - [anon_sym___based] = ACTIONS(1748), - [anon_sym___init] = ACTIONS(1748), - [anon_sym___exit] = ACTIONS(1748), - [anon_sym___cdecl] = ACTIONS(1748), - [anon_sym___clrcall] = ACTIONS(1748), - [anon_sym___stdcall] = ACTIONS(1748), - [anon_sym___fastcall] = ACTIONS(1748), - [anon_sym___thiscall] = ACTIONS(1748), - [anon_sym___vectorcall] = ACTIONS(1748), - [anon_sym_signed] = ACTIONS(1763), - [anon_sym_unsigned] = ACTIONS(1763), - [anon_sym_long] = ACTIONS(1763), - [anon_sym_short] = ACTIONS(1763), - [anon_sym_LBRACK] = ACTIONS(1756), - [anon_sym_static] = ACTIONS(1748), - [anon_sym_EQ] = ACTIONS(1765), - [anon_sym_auto] = ACTIONS(1748), - [anon_sym_register] = ACTIONS(1748), - [anon_sym_inline] = ACTIONS(1748), - [anon_sym___inline] = ACTIONS(1748), - [anon_sym___inline__] = ACTIONS(1748), - [anon_sym___forceinline] = ACTIONS(1748), - [anon_sym_thread_local] = ACTIONS(1748), - [anon_sym___thread] = ACTIONS(1748), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_constexpr] = ACTIONS(1748), - [anon_sym_volatile] = ACTIONS(1748), - [anon_sym_restrict] = ACTIONS(1748), - [anon_sym___restrict__] = ACTIONS(1748), - [anon_sym__Atomic] = ACTIONS(1748), - [anon_sym__Noreturn] = ACTIONS(1748), - [anon_sym_noreturn] = ACTIONS(1748), - [anon_sym_alignas] = ACTIONS(1748), - [anon_sym__Alignas] = ACTIONS(1748), - [anon_sym_COLON] = ACTIONS(1767), - [anon_sym_QMARK] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1769), - [anon_sym_SLASH_EQ] = ACTIONS(1769), - [anon_sym_PERCENT_EQ] = ACTIONS(1769), - [anon_sym_PLUS_EQ] = ACTIONS(1769), - [anon_sym_DASH_EQ] = ACTIONS(1769), - [anon_sym_LT_LT_EQ] = ACTIONS(1769), - [anon_sym_GT_GT_EQ] = ACTIONS(1769), - [anon_sym_AMP_EQ] = ACTIONS(1769), - [anon_sym_CARET_EQ] = ACTIONS(1769), - [anon_sym_PIPE_EQ] = ACTIONS(1769), - [anon_sym_DASH_DASH] = ACTIONS(1750), - [anon_sym_PLUS_PLUS] = ACTIONS(1750), - [anon_sym_DOT] = ACTIONS(1750), - [anon_sym_DASH_GT] = ACTIONS(1750), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_comment] = ACTIONS(3), + [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), + [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), + [sym_comment] = ACTIONS(5), }, [453] = { - [sym_string_literal] = STATE(520), - [aux_sym_sized_type_specifier_repeat1] = STATE(885), - [sym_identifier] = ACTIONS(1748), - [anon_sym_COMMA] = ACTIONS(1750), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1756), - [anon_sym_PLUS] = ACTIONS(1756), - [anon_sym_STAR] = ACTIONS(1758), - [anon_sym_SLASH] = ACTIONS(1756), - [anon_sym_PERCENT] = ACTIONS(1756), - [anon_sym_PIPE_PIPE] = ACTIONS(1750), - [anon_sym_AMP_AMP] = ACTIONS(1750), - [anon_sym_PIPE] = ACTIONS(1756), - [anon_sym_CARET] = ACTIONS(1756), - [anon_sym_AMP] = ACTIONS(1756), - [anon_sym_EQ_EQ] = ACTIONS(1750), - [anon_sym_BANG_EQ] = ACTIONS(1750), - [anon_sym_GT] = ACTIONS(1756), - [anon_sym_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_EQ] = ACTIONS(1750), - [anon_sym_LT] = ACTIONS(1756), - [anon_sym_LT_LT] = ACTIONS(1756), - [anon_sym_GT_GT] = ACTIONS(1756), - [anon_sym_SEMI] = ACTIONS(1750), - [anon_sym___extension__] = ACTIONS(1748), - [anon_sym_extern] = ACTIONS(1748), - [anon_sym___attribute__] = ACTIONS(1748), - [anon_sym___scanf] = ACTIONS(1748), - [anon_sym___printf] = ACTIONS(1748), - [anon_sym___read_mostly] = ACTIONS(1748), - [anon_sym___must_hold] = ACTIONS(1748), - [anon_sym___ro_after_init] = ACTIONS(1748), - [anon_sym___noreturn] = ACTIONS(1748), - [anon_sym___cold] = ACTIONS(1748), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1761), - [anon_sym___declspec] = ACTIONS(1748), - [anon_sym___based] = ACTIONS(1748), - [anon_sym___init] = ACTIONS(1748), - [anon_sym___exit] = ACTIONS(1748), - [anon_sym___cdecl] = ACTIONS(1748), - [anon_sym___clrcall] = ACTIONS(1748), - [anon_sym___stdcall] = ACTIONS(1748), - [anon_sym___fastcall] = ACTIONS(1748), - [anon_sym___thiscall] = ACTIONS(1748), - [anon_sym___vectorcall] = ACTIONS(1748), - [anon_sym_signed] = ACTIONS(1763), - [anon_sym_unsigned] = ACTIONS(1763), - [anon_sym_long] = ACTIONS(1763), - [anon_sym_short] = ACTIONS(1763), - [anon_sym_LBRACK] = ACTIONS(1756), - [anon_sym_static] = ACTIONS(1748), - [anon_sym_EQ] = ACTIONS(1765), - [anon_sym_auto] = ACTIONS(1748), - [anon_sym_register] = ACTIONS(1748), - [anon_sym_inline] = ACTIONS(1748), - [anon_sym___inline] = ACTIONS(1748), - [anon_sym___inline__] = ACTIONS(1748), - [anon_sym___forceinline] = ACTIONS(1748), - [anon_sym_thread_local] = ACTIONS(1748), - [anon_sym___thread] = ACTIONS(1748), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_constexpr] = ACTIONS(1748), - [anon_sym_volatile] = ACTIONS(1748), - [anon_sym_restrict] = ACTIONS(1748), - [anon_sym___restrict__] = ACTIONS(1748), - [anon_sym__Atomic] = ACTIONS(1748), - [anon_sym__Noreturn] = ACTIONS(1748), - [anon_sym_noreturn] = ACTIONS(1748), - [anon_sym_alignas] = ACTIONS(1748), - [anon_sym__Alignas] = ACTIONS(1748), - [anon_sym_COLON] = ACTIONS(1784), - [anon_sym_QMARK] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1769), - [anon_sym_SLASH_EQ] = ACTIONS(1769), - [anon_sym_PERCENT_EQ] = ACTIONS(1769), - [anon_sym_PLUS_EQ] = ACTIONS(1769), - [anon_sym_DASH_EQ] = ACTIONS(1769), - [anon_sym_LT_LT_EQ] = ACTIONS(1769), - [anon_sym_GT_GT_EQ] = ACTIONS(1769), - [anon_sym_AMP_EQ] = ACTIONS(1769), - [anon_sym_CARET_EQ] = ACTIONS(1769), - [anon_sym_PIPE_EQ] = ACTIONS(1769), - [anon_sym_DASH_DASH] = ACTIONS(1750), - [anon_sym_PLUS_PLUS] = ACTIONS(1750), - [anon_sym_DOT] = ACTIONS(1750), - [anon_sym_DASH_GT] = ACTIONS(1750), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_comment] = ACTIONS(3), + [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), + [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), + [sym_comment] = ACTIONS(5), }, [454] = { - [sym_string_literal] = STATE(520), - [aux_sym_sized_type_specifier_repeat1] = STATE(885), - [sym_identifier] = ACTIONS(1748), - [anon_sym_COMMA] = ACTIONS(1750), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1756), - [anon_sym_PLUS] = ACTIONS(1756), - [anon_sym_STAR] = ACTIONS(1758), - [anon_sym_SLASH] = ACTIONS(1756), - [anon_sym_PERCENT] = ACTIONS(1756), - [anon_sym_PIPE_PIPE] = ACTIONS(1750), - [anon_sym_AMP_AMP] = ACTIONS(1750), - [anon_sym_PIPE] = ACTIONS(1756), - [anon_sym_CARET] = ACTIONS(1756), - [anon_sym_AMP] = ACTIONS(1756), - [anon_sym_EQ_EQ] = ACTIONS(1750), - [anon_sym_BANG_EQ] = ACTIONS(1750), - [anon_sym_GT] = ACTIONS(1756), - [anon_sym_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_EQ] = ACTIONS(1750), - [anon_sym_LT] = ACTIONS(1756), - [anon_sym_LT_LT] = ACTIONS(1756), - [anon_sym_GT_GT] = ACTIONS(1756), - [anon_sym_SEMI] = ACTIONS(1750), - [anon_sym___extension__] = ACTIONS(1748), - [anon_sym_extern] = ACTIONS(1748), - [anon_sym___attribute__] = ACTIONS(1748), - [anon_sym___scanf] = ACTIONS(1748), - [anon_sym___printf] = ACTIONS(1748), - [anon_sym___read_mostly] = ACTIONS(1748), - [anon_sym___must_hold] = ACTIONS(1748), - [anon_sym___ro_after_init] = ACTIONS(1748), - [anon_sym___noreturn] = ACTIONS(1748), - [anon_sym___cold] = ACTIONS(1748), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1761), - [anon_sym___declspec] = ACTIONS(1748), - [anon_sym___based] = ACTIONS(1748), - [anon_sym___init] = ACTIONS(1748), - [anon_sym___exit] = ACTIONS(1748), - [anon_sym___cdecl] = ACTIONS(1748), - [anon_sym___clrcall] = ACTIONS(1748), - [anon_sym___stdcall] = ACTIONS(1748), - [anon_sym___fastcall] = ACTIONS(1748), - [anon_sym___thiscall] = ACTIONS(1748), - [anon_sym___vectorcall] = ACTIONS(1748), - [anon_sym_signed] = ACTIONS(1763), - [anon_sym_unsigned] = ACTIONS(1763), - [anon_sym_long] = ACTIONS(1763), - [anon_sym_short] = ACTIONS(1763), - [anon_sym_LBRACK] = ACTIONS(1756), - [anon_sym_static] = ACTIONS(1748), - [anon_sym_EQ] = ACTIONS(1765), - [anon_sym_auto] = ACTIONS(1748), - [anon_sym_register] = ACTIONS(1748), - [anon_sym_inline] = ACTIONS(1748), - [anon_sym___inline] = ACTIONS(1748), - [anon_sym___inline__] = ACTIONS(1748), - [anon_sym___forceinline] = ACTIONS(1748), - [anon_sym_thread_local] = ACTIONS(1748), - [anon_sym___thread] = ACTIONS(1748), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_constexpr] = ACTIONS(1748), - [anon_sym_volatile] = ACTIONS(1748), - [anon_sym_restrict] = ACTIONS(1748), - [anon_sym___restrict__] = ACTIONS(1748), - [anon_sym__Atomic] = ACTIONS(1748), - [anon_sym__Noreturn] = ACTIONS(1748), - [anon_sym_noreturn] = ACTIONS(1748), - [anon_sym_alignas] = ACTIONS(1748), - [anon_sym__Alignas] = ACTIONS(1748), - [anon_sym_COLON] = ACTIONS(1786), - [anon_sym_QMARK] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1769), - [anon_sym_SLASH_EQ] = ACTIONS(1769), - [anon_sym_PERCENT_EQ] = ACTIONS(1769), - [anon_sym_PLUS_EQ] = ACTIONS(1769), - [anon_sym_DASH_EQ] = ACTIONS(1769), - [anon_sym_LT_LT_EQ] = ACTIONS(1769), - [anon_sym_GT_GT_EQ] = ACTIONS(1769), - [anon_sym_AMP_EQ] = ACTIONS(1769), - [anon_sym_CARET_EQ] = ACTIONS(1769), - [anon_sym_PIPE_EQ] = ACTIONS(1769), - [anon_sym_DASH_DASH] = ACTIONS(1750), - [anon_sym_PLUS_PLUS] = ACTIONS(1750), - [anon_sym_DOT] = ACTIONS(1750), - [anon_sym_DASH_GT] = ACTIONS(1750), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_comment] = ACTIONS(3), + [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), + [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), }, [455] = { - [sym_string_literal] = STATE(520), - [aux_sym_sized_type_specifier_repeat1] = STATE(885), - [sym_identifier] = ACTIONS(1748), - [anon_sym_COMMA] = ACTIONS(1750), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1756), - [anon_sym_PLUS] = ACTIONS(1756), - [anon_sym_STAR] = ACTIONS(1758), - [anon_sym_SLASH] = ACTIONS(1756), - [anon_sym_PERCENT] = ACTIONS(1756), - [anon_sym_PIPE_PIPE] = ACTIONS(1750), - [anon_sym_AMP_AMP] = ACTIONS(1750), - [anon_sym_PIPE] = ACTIONS(1756), - [anon_sym_CARET] = ACTIONS(1756), - [anon_sym_AMP] = ACTIONS(1756), - [anon_sym_EQ_EQ] = ACTIONS(1750), - [anon_sym_BANG_EQ] = ACTIONS(1750), - [anon_sym_GT] = ACTIONS(1756), - [anon_sym_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_EQ] = ACTIONS(1750), - [anon_sym_LT] = ACTIONS(1756), - [anon_sym_LT_LT] = ACTIONS(1756), - [anon_sym_GT_GT] = ACTIONS(1756), - [anon_sym_SEMI] = ACTIONS(1781), - [anon_sym___extension__] = ACTIONS(1748), - [anon_sym_extern] = ACTIONS(1748), - [anon_sym___attribute__] = ACTIONS(1748), - [anon_sym___scanf] = ACTIONS(1748), - [anon_sym___printf] = ACTIONS(1748), - [anon_sym___read_mostly] = ACTIONS(1748), - [anon_sym___must_hold] = ACTIONS(1748), - [anon_sym___ro_after_init] = ACTIONS(1748), - [anon_sym___noreturn] = ACTIONS(1748), - [anon_sym___cold] = ACTIONS(1748), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1761), - [anon_sym___declspec] = ACTIONS(1748), - [anon_sym___based] = ACTIONS(1748), - [anon_sym___init] = ACTIONS(1748), - [anon_sym___exit] = ACTIONS(1748), - [anon_sym___cdecl] = ACTIONS(1748), - [anon_sym___clrcall] = ACTIONS(1748), - [anon_sym___stdcall] = ACTIONS(1748), - [anon_sym___fastcall] = ACTIONS(1748), - [anon_sym___thiscall] = ACTIONS(1748), - [anon_sym___vectorcall] = ACTIONS(1748), - [anon_sym_signed] = ACTIONS(1763), - [anon_sym_unsigned] = ACTIONS(1763), - [anon_sym_long] = ACTIONS(1763), - [anon_sym_short] = ACTIONS(1763), - [anon_sym_LBRACK] = ACTIONS(1756), - [anon_sym_static] = ACTIONS(1748), - [anon_sym_EQ] = ACTIONS(1765), - [anon_sym_auto] = ACTIONS(1748), - [anon_sym_register] = ACTIONS(1748), - [anon_sym_inline] = ACTIONS(1748), - [anon_sym___inline] = ACTIONS(1748), - [anon_sym___inline__] = ACTIONS(1748), - [anon_sym___forceinline] = ACTIONS(1748), - [anon_sym_thread_local] = ACTIONS(1748), - [anon_sym___thread] = ACTIONS(1748), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_constexpr] = ACTIONS(1748), - [anon_sym_volatile] = ACTIONS(1748), - [anon_sym_restrict] = ACTIONS(1748), - [anon_sym___restrict__] = ACTIONS(1748), - [anon_sym__Atomic] = ACTIONS(1748), - [anon_sym__Noreturn] = ACTIONS(1748), - [anon_sym_noreturn] = ACTIONS(1748), - [anon_sym_alignas] = ACTIONS(1748), - [anon_sym__Alignas] = ACTIONS(1748), - [anon_sym_COLON] = ACTIONS(1786), - [anon_sym_QMARK] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1769), - [anon_sym_SLASH_EQ] = ACTIONS(1769), - [anon_sym_PERCENT_EQ] = ACTIONS(1769), - [anon_sym_PLUS_EQ] = ACTIONS(1769), - [anon_sym_DASH_EQ] = ACTIONS(1769), - [anon_sym_LT_LT_EQ] = ACTIONS(1769), - [anon_sym_GT_GT_EQ] = ACTIONS(1769), - [anon_sym_AMP_EQ] = ACTIONS(1769), - [anon_sym_CARET_EQ] = ACTIONS(1769), - [anon_sym_PIPE_EQ] = ACTIONS(1769), - [anon_sym_DASH_DASH] = ACTIONS(1750), - [anon_sym_PLUS_PLUS] = ACTIONS(1750), - [anon_sym_DOT] = ACTIONS(1750), - [anon_sym_DASH_GT] = ACTIONS(1750), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_comment] = ACTIONS(3), + [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), + [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), + [sym_comment] = ACTIONS(5), }, [456] = { - [sym_string_literal] = STATE(520), - [aux_sym_sized_type_specifier_repeat1] = STATE(885), - [sym_identifier] = ACTIONS(1748), - [anon_sym_COMMA] = ACTIONS(1750), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1756), - [anon_sym_PLUS] = ACTIONS(1756), - [anon_sym_STAR] = ACTIONS(1758), - [anon_sym_SLASH] = ACTIONS(1756), - [anon_sym_PERCENT] = ACTIONS(1756), - [anon_sym_PIPE_PIPE] = ACTIONS(1750), - [anon_sym_AMP_AMP] = ACTIONS(1750), - [anon_sym_PIPE] = ACTIONS(1756), - [anon_sym_CARET] = ACTIONS(1756), - [anon_sym_AMP] = ACTIONS(1756), - [anon_sym_EQ_EQ] = ACTIONS(1750), - [anon_sym_BANG_EQ] = ACTIONS(1750), - [anon_sym_GT] = ACTIONS(1756), - [anon_sym_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_EQ] = ACTIONS(1750), - [anon_sym_LT] = ACTIONS(1756), - [anon_sym_LT_LT] = ACTIONS(1756), - [anon_sym_GT_GT] = ACTIONS(1756), - [anon_sym_SEMI] = ACTIONS(1750), - [anon_sym___extension__] = ACTIONS(1748), - [anon_sym_extern] = ACTIONS(1748), - [anon_sym___attribute__] = ACTIONS(1748), - [anon_sym___scanf] = ACTIONS(1748), - [anon_sym___printf] = ACTIONS(1748), - [anon_sym___read_mostly] = ACTIONS(1748), - [anon_sym___must_hold] = ACTIONS(1748), - [anon_sym___ro_after_init] = ACTIONS(1748), - [anon_sym___noreturn] = ACTIONS(1748), - [anon_sym___cold] = ACTIONS(1748), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1761), - [anon_sym___declspec] = ACTIONS(1748), - [anon_sym___based] = ACTIONS(1748), - [anon_sym___init] = ACTIONS(1748), - [anon_sym___exit] = ACTIONS(1748), - [anon_sym___cdecl] = ACTIONS(1748), - [anon_sym___clrcall] = ACTIONS(1748), - [anon_sym___stdcall] = ACTIONS(1748), - [anon_sym___fastcall] = ACTIONS(1748), - [anon_sym___thiscall] = ACTIONS(1748), - [anon_sym___vectorcall] = ACTIONS(1748), - [anon_sym_signed] = ACTIONS(1763), - [anon_sym_unsigned] = ACTIONS(1763), - [anon_sym_long] = ACTIONS(1763), - [anon_sym_short] = ACTIONS(1763), - [anon_sym_LBRACK] = ACTIONS(1756), - [anon_sym_static] = ACTIONS(1748), - [anon_sym_EQ] = ACTIONS(1765), - [anon_sym_auto] = ACTIONS(1748), - [anon_sym_register] = ACTIONS(1748), - [anon_sym_inline] = ACTIONS(1748), - [anon_sym___inline] = ACTIONS(1748), - [anon_sym___inline__] = ACTIONS(1748), - [anon_sym___forceinline] = ACTIONS(1748), - [anon_sym_thread_local] = ACTIONS(1748), - [anon_sym___thread] = ACTIONS(1748), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_constexpr] = ACTIONS(1748), - [anon_sym_volatile] = ACTIONS(1748), - [anon_sym_restrict] = ACTIONS(1748), - [anon_sym___restrict__] = ACTIONS(1748), - [anon_sym__Atomic] = ACTIONS(1748), - [anon_sym__Noreturn] = ACTIONS(1748), - [anon_sym_noreturn] = ACTIONS(1748), - [anon_sym_alignas] = ACTIONS(1748), - [anon_sym__Alignas] = ACTIONS(1748), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_QMARK] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1769), - [anon_sym_SLASH_EQ] = ACTIONS(1769), - [anon_sym_PERCENT_EQ] = ACTIONS(1769), - [anon_sym_PLUS_EQ] = ACTIONS(1769), - [anon_sym_DASH_EQ] = ACTIONS(1769), - [anon_sym_LT_LT_EQ] = ACTIONS(1769), - [anon_sym_GT_GT_EQ] = ACTIONS(1769), - [anon_sym_AMP_EQ] = ACTIONS(1769), - [anon_sym_CARET_EQ] = ACTIONS(1769), - [anon_sym_PIPE_EQ] = ACTIONS(1769), - [anon_sym_DASH_DASH] = ACTIONS(1750), - [anon_sym_PLUS_PLUS] = ACTIONS(1750), - [anon_sym_DOT] = ACTIONS(1750), - [anon_sym_DASH_GT] = ACTIONS(1750), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_comment] = ACTIONS(3), + [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), + [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), + [sym_comment] = ACTIONS(5), }, [457] = { - [sym_string_literal] = STATE(520), - [aux_sym_sized_type_specifier_repeat1] = STATE(885), - [sym_identifier] = ACTIONS(1748), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1756), - [anon_sym_PLUS] = ACTIONS(1756), - [anon_sym_STAR] = ACTIONS(1758), - [anon_sym_SLASH] = ACTIONS(1756), - [anon_sym_PERCENT] = ACTIONS(1756), - [anon_sym_PIPE_PIPE] = ACTIONS(1750), - [anon_sym_AMP_AMP] = ACTIONS(1750), - [anon_sym_PIPE] = ACTIONS(1756), - [anon_sym_CARET] = ACTIONS(1756), - [anon_sym_AMP] = ACTIONS(1756), - [anon_sym_EQ_EQ] = ACTIONS(1750), - [anon_sym_BANG_EQ] = ACTIONS(1750), - [anon_sym_GT] = ACTIONS(1756), - [anon_sym_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_EQ] = ACTIONS(1750), - [anon_sym_LT] = ACTIONS(1756), - [anon_sym_LT_LT] = ACTIONS(1756), - [anon_sym_GT_GT] = ACTIONS(1756), - [anon_sym_SEMI] = ACTIONS(1790), - [anon_sym___extension__] = ACTIONS(1748), - [anon_sym_extern] = ACTIONS(1748), - [anon_sym___attribute__] = ACTIONS(1748), - [anon_sym___scanf] = ACTIONS(1748), - [anon_sym___printf] = ACTIONS(1748), - [anon_sym___read_mostly] = ACTIONS(1748), - [anon_sym___must_hold] = ACTIONS(1748), - [anon_sym___ro_after_init] = ACTIONS(1748), - [anon_sym___noreturn] = ACTIONS(1748), - [anon_sym___cold] = ACTIONS(1748), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1761), - [anon_sym___declspec] = ACTIONS(1748), - [anon_sym___based] = ACTIONS(1748), - [anon_sym___init] = ACTIONS(1748), - [anon_sym___exit] = ACTIONS(1748), - [anon_sym___cdecl] = ACTIONS(1748), - [anon_sym___clrcall] = ACTIONS(1748), - [anon_sym___stdcall] = ACTIONS(1748), - [anon_sym___fastcall] = ACTIONS(1748), - [anon_sym___thiscall] = ACTIONS(1748), - [anon_sym___vectorcall] = ACTIONS(1748), - [anon_sym_signed] = ACTIONS(1763), - [anon_sym_unsigned] = ACTIONS(1763), - [anon_sym_long] = ACTIONS(1763), - [anon_sym_short] = ACTIONS(1763), - [anon_sym_LBRACK] = ACTIONS(1756), - [anon_sym_static] = ACTIONS(1748), - [anon_sym_EQ] = ACTIONS(1765), - [anon_sym_auto] = ACTIONS(1748), - [anon_sym_register] = ACTIONS(1748), - [anon_sym_inline] = ACTIONS(1748), - [anon_sym___inline] = ACTIONS(1748), - [anon_sym___inline__] = ACTIONS(1748), - [anon_sym___forceinline] = ACTIONS(1748), - [anon_sym_thread_local] = ACTIONS(1748), - [anon_sym___thread] = ACTIONS(1748), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_constexpr] = ACTIONS(1748), - [anon_sym_volatile] = ACTIONS(1748), - [anon_sym_restrict] = ACTIONS(1748), - [anon_sym___restrict__] = ACTIONS(1748), - [anon_sym__Atomic] = ACTIONS(1748), - [anon_sym__Noreturn] = ACTIONS(1748), - [anon_sym_noreturn] = ACTIONS(1748), - [anon_sym_alignas] = ACTIONS(1748), - [anon_sym__Alignas] = ACTIONS(1748), - [anon_sym_COLON] = ACTIONS(1784), - [anon_sym_QMARK] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1769), - [anon_sym_SLASH_EQ] = ACTIONS(1769), - [anon_sym_PERCENT_EQ] = ACTIONS(1769), - [anon_sym_PLUS_EQ] = ACTIONS(1769), - [anon_sym_DASH_EQ] = ACTIONS(1769), - [anon_sym_LT_LT_EQ] = ACTIONS(1769), - [anon_sym_GT_GT_EQ] = ACTIONS(1769), - [anon_sym_AMP_EQ] = ACTIONS(1769), - [anon_sym_CARET_EQ] = ACTIONS(1769), - [anon_sym_PIPE_EQ] = ACTIONS(1769), - [anon_sym_DASH_DASH] = ACTIONS(1750), - [anon_sym_PLUS_PLUS] = ACTIONS(1750), - [anon_sym_DOT] = ACTIONS(1750), - [anon_sym_DASH_GT] = ACTIONS(1750), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_comment] = ACTIONS(3), + [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), + [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), + [sym_comment] = ACTIONS(5), }, [458] = { - [sym_else_clause] = STATE(199), - [sym_identifier] = ACTIONS(1147), - [anon_sym_LPAREN2] = ACTIONS(1149), - [anon_sym_BANG] = ACTIONS(1149), - [anon_sym_TILDE] = ACTIONS(1149), - [anon_sym_DASH] = ACTIONS(1147), - [anon_sym_PLUS] = ACTIONS(1147), - [anon_sym_STAR] = ACTIONS(1149), - [anon_sym_AMP] = ACTIONS(1149), - [anon_sym_SEMI] = ACTIONS(1149), - [anon_sym___extension__] = ACTIONS(1147), - [anon_sym_typedef] = ACTIONS(1147), - [anon_sym_extern] = ACTIONS(1147), - [anon_sym___attribute__] = ACTIONS(1147), - [anon_sym___scanf] = ACTIONS(1147), - [anon_sym___printf] = ACTIONS(1147), - [anon_sym___read_mostly] = ACTIONS(1147), - [anon_sym___must_hold] = ACTIONS(1147), - [anon_sym___ro_after_init] = ACTIONS(1147), - [anon_sym___noreturn] = ACTIONS(1147), - [anon_sym___cold] = ACTIONS(1147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1149), - [anon_sym___declspec] = ACTIONS(1147), - [anon_sym_LBRACE] = ACTIONS(1149), - [anon_sym_signed] = ACTIONS(1147), - [anon_sym_unsigned] = ACTIONS(1147), - [anon_sym_long] = ACTIONS(1147), - [anon_sym_short] = ACTIONS(1147), - [anon_sym_static] = ACTIONS(1147), - [anon_sym_auto] = ACTIONS(1147), - [anon_sym_register] = ACTIONS(1147), - [anon_sym_inline] = ACTIONS(1147), - [anon_sym___inline] = ACTIONS(1147), - [anon_sym___inline__] = ACTIONS(1147), - [anon_sym___forceinline] = ACTIONS(1147), - [anon_sym_thread_local] = ACTIONS(1147), - [anon_sym___thread] = ACTIONS(1147), - [anon_sym_const] = ACTIONS(1147), - [anon_sym_constexpr] = ACTIONS(1147), - [anon_sym_volatile] = ACTIONS(1147), - [anon_sym_restrict] = ACTIONS(1147), - [anon_sym___restrict__] = ACTIONS(1147), - [anon_sym__Atomic] = ACTIONS(1147), - [anon_sym__Noreturn] = ACTIONS(1147), - [anon_sym_noreturn] = ACTIONS(1147), - [anon_sym_alignas] = ACTIONS(1147), - [anon_sym__Alignas] = ACTIONS(1147), - [sym_primitive_type] = ACTIONS(1147), - [anon_sym_enum] = ACTIONS(1147), - [anon_sym_struct] = ACTIONS(1147), - [anon_sym_union] = ACTIONS(1147), - [anon_sym_if] = ACTIONS(1147), - [anon_sym_else] = ACTIONS(1793), - [anon_sym_switch] = ACTIONS(1147), - [anon_sym_while] = ACTIONS(1147), - [anon_sym_do] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1147), - [anon_sym_return] = ACTIONS(1147), - [anon_sym_break] = ACTIONS(1147), - [anon_sym_continue] = ACTIONS(1147), - [anon_sym_goto] = ACTIONS(1147), - [anon_sym___try] = ACTIONS(1147), - [anon_sym___leave] = ACTIONS(1147), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_sizeof] = ACTIONS(1147), - [anon_sym___alignof__] = ACTIONS(1147), - [anon_sym___alignof] = ACTIONS(1147), - [anon_sym__alignof] = ACTIONS(1147), - [anon_sym_alignof] = ACTIONS(1147), - [anon_sym__Alignof] = ACTIONS(1147), - [anon_sym_offsetof] = ACTIONS(1147), - [anon_sym__Generic] = ACTIONS(1147), - [anon_sym_asm] = ACTIONS(1147), - [anon_sym___asm__] = ACTIONS(1147), - [sym_number_literal] = ACTIONS(1149), - [anon_sym_L_SQUOTE] = ACTIONS(1149), - [anon_sym_u_SQUOTE] = ACTIONS(1149), - [anon_sym_U_SQUOTE] = ACTIONS(1149), - [anon_sym_u8_SQUOTE] = ACTIONS(1149), - [anon_sym_SQUOTE] = ACTIONS(1149), - [anon_sym_L_DQUOTE] = ACTIONS(1149), - [anon_sym_u_DQUOTE] = ACTIONS(1149), - [anon_sym_U_DQUOTE] = ACTIONS(1149), - [anon_sym_u8_DQUOTE] = ACTIONS(1149), - [anon_sym_DQUOTE] = ACTIONS(1149), - [sym_true] = ACTIONS(1147), - [sym_false] = ACTIONS(1147), - [anon_sym_NULL] = ACTIONS(1147), - [anon_sym_nullptr] = ACTIONS(1147), - [sym_comment] = ACTIONS(3), + [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), + [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), + [sym_comment] = ACTIONS(5), }, [459] = { - [sym_string_literal] = STATE(520), - [aux_sym_sized_type_specifier_repeat1] = STATE(885), - [sym_identifier] = ACTIONS(1748), - [anon_sym_COMMA] = ACTIONS(1750), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1756), - [anon_sym_PLUS] = ACTIONS(1756), - [anon_sym_STAR] = ACTIONS(1758), - [anon_sym_SLASH] = ACTIONS(1756), - [anon_sym_PERCENT] = ACTIONS(1756), - [anon_sym_PIPE_PIPE] = ACTIONS(1750), - [anon_sym_AMP_AMP] = ACTIONS(1750), - [anon_sym_PIPE] = ACTIONS(1756), - [anon_sym_CARET] = ACTIONS(1756), - [anon_sym_AMP] = ACTIONS(1756), - [anon_sym_EQ_EQ] = ACTIONS(1750), - [anon_sym_BANG_EQ] = ACTIONS(1750), - [anon_sym_GT] = ACTIONS(1756), - [anon_sym_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_EQ] = ACTIONS(1750), - [anon_sym_LT] = ACTIONS(1756), - [anon_sym_LT_LT] = ACTIONS(1756), - [anon_sym_GT_GT] = ACTIONS(1756), - [anon_sym_SEMI] = ACTIONS(1750), - [anon_sym___extension__] = ACTIONS(1748), - [anon_sym_extern] = ACTIONS(1748), - [anon_sym___attribute__] = ACTIONS(1748), - [anon_sym___scanf] = ACTIONS(1748), - [anon_sym___printf] = ACTIONS(1748), - [anon_sym___read_mostly] = ACTIONS(1748), - [anon_sym___must_hold] = ACTIONS(1748), - [anon_sym___ro_after_init] = ACTIONS(1748), - [anon_sym___noreturn] = ACTIONS(1748), - [anon_sym___cold] = ACTIONS(1748), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1761), - [anon_sym___declspec] = ACTIONS(1748), - [anon_sym___based] = ACTIONS(1748), - [anon_sym___init] = ACTIONS(1748), - [anon_sym___exit] = ACTIONS(1748), - [anon_sym___cdecl] = ACTIONS(1748), - [anon_sym___clrcall] = ACTIONS(1748), - [anon_sym___stdcall] = ACTIONS(1748), - [anon_sym___fastcall] = ACTIONS(1748), - [anon_sym___thiscall] = ACTIONS(1748), - [anon_sym___vectorcall] = ACTIONS(1748), - [anon_sym_signed] = ACTIONS(1763), - [anon_sym_unsigned] = ACTIONS(1763), - [anon_sym_long] = ACTIONS(1763), - [anon_sym_short] = ACTIONS(1763), - [anon_sym_LBRACK] = ACTIONS(1756), - [anon_sym_static] = ACTIONS(1748), - [anon_sym_EQ] = ACTIONS(1765), - [anon_sym_auto] = ACTIONS(1748), - [anon_sym_register] = ACTIONS(1748), - [anon_sym_inline] = ACTIONS(1748), - [anon_sym___inline] = ACTIONS(1748), - [anon_sym___inline__] = ACTIONS(1748), - [anon_sym___forceinline] = ACTIONS(1748), - [anon_sym_thread_local] = ACTIONS(1748), - [anon_sym___thread] = ACTIONS(1748), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_constexpr] = ACTIONS(1748), - [anon_sym_volatile] = ACTIONS(1748), - [anon_sym_restrict] = ACTIONS(1748), - [anon_sym___restrict__] = ACTIONS(1748), - [anon_sym__Atomic] = ACTIONS(1748), - [anon_sym__Noreturn] = ACTIONS(1748), - [anon_sym_noreturn] = ACTIONS(1748), - [anon_sym_alignas] = ACTIONS(1748), - [anon_sym__Alignas] = ACTIONS(1748), - [anon_sym_QMARK] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1769), - [anon_sym_SLASH_EQ] = ACTIONS(1769), - [anon_sym_PERCENT_EQ] = ACTIONS(1769), - [anon_sym_PLUS_EQ] = ACTIONS(1769), - [anon_sym_DASH_EQ] = ACTIONS(1769), - [anon_sym_LT_LT_EQ] = ACTIONS(1769), - [anon_sym_GT_GT_EQ] = ACTIONS(1769), - [anon_sym_AMP_EQ] = ACTIONS(1769), - [anon_sym_CARET_EQ] = ACTIONS(1769), - [anon_sym_PIPE_EQ] = ACTIONS(1769), - [anon_sym_DASH_DASH] = ACTIONS(1750), - [anon_sym_PLUS_PLUS] = ACTIONS(1750), - [anon_sym_DOT] = ACTIONS(1750), - [anon_sym_DASH_GT] = ACTIONS(1750), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_comment] = ACTIONS(3), + [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), + [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), + [sym_comment] = ACTIONS(5), }, [460] = { - [sym_type_qualifier] = STATE(1135), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(1220), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [sym_expression] = STATE(1171), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2260), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_type_descriptor] = STATE(2071), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [sym_macro_type_specifier] = STATE(873), - [aux_sym__type_definition_type_repeat1] = STATE(1135), - [aux_sym_sized_type_specifier_repeat1] = STATE(1246), - [sym_identifier] = ACTIONS(1795), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym___extension__] = ACTIONS(53), - [anon_sym_signed] = ACTIONS(1797), - [anon_sym_unsigned] = ACTIONS(1797), - [anon_sym_long] = ACTIONS(1797), - [anon_sym_short] = ACTIONS(1797), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(1799), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [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), + [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), }, [461] = { - [sym_type_qualifier] = STATE(1135), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(1220), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [sym_expression] = STATE(1171), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2260), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_type_descriptor] = STATE(2048), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [sym_macro_type_specifier] = STATE(873), - [aux_sym__type_definition_type_repeat1] = STATE(1135), - [aux_sym_sized_type_specifier_repeat1] = STATE(1246), - [sym_identifier] = ACTIONS(1795), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym___extension__] = ACTIONS(53), - [anon_sym_signed] = ACTIONS(1797), - [anon_sym_unsigned] = ACTIONS(1797), - [anon_sym_long] = ACTIONS(1797), - [anon_sym_short] = ACTIONS(1797), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(1799), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [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_type_qualifier] = STATE(1135), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(1220), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [sym_expression] = STATE(1171), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2260), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_type_descriptor] = STATE(2154), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [sym_macro_type_specifier] = STATE(873), - [aux_sym__type_definition_type_repeat1] = STATE(1135), - [aux_sym_sized_type_specifier_repeat1] = STATE(1246), - [sym_identifier] = ACTIONS(1795), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym___extension__] = ACTIONS(53), - [anon_sym_signed] = ACTIONS(1797), - [anon_sym_unsigned] = ACTIONS(1797), - [anon_sym_long] = ACTIONS(1797), - [anon_sym_short] = ACTIONS(1797), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(1799), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [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_type_qualifier] = STATE(1135), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(1220), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [sym_expression] = STATE(1171), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2260), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_type_descriptor] = STATE(2239), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [sym_macro_type_specifier] = STATE(873), - [aux_sym__type_definition_type_repeat1] = STATE(1135), - [aux_sym_sized_type_specifier_repeat1] = STATE(1246), - [sym_identifier] = ACTIONS(1795), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym___extension__] = ACTIONS(53), - [anon_sym_signed] = ACTIONS(1797), - [anon_sym_unsigned] = ACTIONS(1797), - [anon_sym_long] = ACTIONS(1797), - [anon_sym_short] = ACTIONS(1797), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(1799), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [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_type_qualifier] = STATE(1135), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(1220), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [sym_expression] = STATE(1171), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2260), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_type_descriptor] = STATE(2117), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [sym_macro_type_specifier] = STATE(873), - [aux_sym__type_definition_type_repeat1] = STATE(1135), - [aux_sym_sized_type_specifier_repeat1] = STATE(1246), - [sym_identifier] = ACTIONS(1795), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym___extension__] = ACTIONS(53), - [anon_sym_signed] = ACTIONS(1797), - [anon_sym_unsigned] = ACTIONS(1797), - [anon_sym_long] = ACTIONS(1797), - [anon_sym_short] = ACTIONS(1797), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(1799), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [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_type_qualifier] = STATE(1135), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(1220), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [sym_expression] = STATE(1171), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2260), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_type_descriptor] = STATE(2259), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [sym_macro_type_specifier] = STATE(873), - [aux_sym__type_definition_type_repeat1] = STATE(1135), - [aux_sym_sized_type_specifier_repeat1] = STATE(1246), - [sym_identifier] = ACTIONS(1795), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym___extension__] = ACTIONS(53), - [anon_sym_signed] = ACTIONS(1797), - [anon_sym_unsigned] = ACTIONS(1797), - [anon_sym_long] = ACTIONS(1797), - [anon_sym_short] = ACTIONS(1797), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(1799), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [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_type_qualifier] = STATE(1135), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(1220), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [sym_expression] = STATE(1171), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2260), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_type_descriptor] = STATE(2155), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [sym_macro_type_specifier] = STATE(873), - [aux_sym__type_definition_type_repeat1] = STATE(1135), - [aux_sym_sized_type_specifier_repeat1] = STATE(1246), - [sym_identifier] = ACTIONS(1795), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym___extension__] = ACTIONS(53), - [anon_sym_signed] = ACTIONS(1797), - [anon_sym_unsigned] = ACTIONS(1797), - [anon_sym_long] = ACTIONS(1797), - [anon_sym_short] = ACTIONS(1797), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(1799), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [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_type_qualifier] = STATE(1135), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(1220), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [sym_expression] = STATE(1171), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2260), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_type_descriptor] = STATE(2199), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [sym_macro_type_specifier] = STATE(873), - [aux_sym__type_definition_type_repeat1] = STATE(1135), - [aux_sym_sized_type_specifier_repeat1] = STATE(1246), - [sym_identifier] = ACTIONS(1795), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym___extension__] = ACTIONS(53), - [anon_sym_signed] = ACTIONS(1797), - [anon_sym_unsigned] = ACTIONS(1797), - [anon_sym_long] = ACTIONS(1797), - [anon_sym_short] = ACTIONS(1797), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(1799), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [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_identifier] = ACTIONS(1801), - [anon_sym_LPAREN2] = ACTIONS(1804), - [anon_sym_BANG] = ACTIONS(1804), - [anon_sym_TILDE] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1806), - [anon_sym_PLUS] = ACTIONS(1806), - [anon_sym_STAR] = ACTIONS(1804), - [anon_sym_AMP] = ACTIONS(1804), - [anon_sym_SEMI] = ACTIONS(1804), - [anon_sym___extension__] = ACTIONS(1808), - [anon_sym_extern] = ACTIONS(1808), - [anon_sym___attribute__] = ACTIONS(1808), - [anon_sym___scanf] = ACTIONS(1808), - [anon_sym___printf] = ACTIONS(1808), - [anon_sym___read_mostly] = ACTIONS(1808), - [anon_sym___must_hold] = ACTIONS(1808), - [anon_sym___ro_after_init] = ACTIONS(1808), - [anon_sym___noreturn] = ACTIONS(1808), - [anon_sym___cold] = ACTIONS(1808), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1810), - [anon_sym___declspec] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1804), - [anon_sym_signed] = ACTIONS(1808), - [anon_sym_unsigned] = ACTIONS(1808), - [anon_sym_long] = ACTIONS(1808), - [anon_sym_short] = ACTIONS(1808), - [anon_sym_static] = ACTIONS(1808), - [anon_sym_auto] = ACTIONS(1808), - [anon_sym_register] = ACTIONS(1808), - [anon_sym_inline] = ACTIONS(1808), - [anon_sym___inline] = ACTIONS(1808), - [anon_sym___inline__] = ACTIONS(1808), - [anon_sym___forceinline] = ACTIONS(1808), - [anon_sym_thread_local] = ACTIONS(1808), - [anon_sym___thread] = ACTIONS(1808), - [anon_sym_const] = ACTIONS(1808), - [anon_sym_constexpr] = ACTIONS(1808), - [anon_sym_volatile] = ACTIONS(1808), - [anon_sym_restrict] = ACTIONS(1808), - [anon_sym___restrict__] = ACTIONS(1808), - [anon_sym__Atomic] = ACTIONS(1808), - [anon_sym__Noreturn] = ACTIONS(1808), - [anon_sym_noreturn] = ACTIONS(1808), - [anon_sym_alignas] = ACTIONS(1808), - [anon_sym__Alignas] = ACTIONS(1808), - [sym_primitive_type] = ACTIONS(1808), - [anon_sym_enum] = ACTIONS(1808), - [anon_sym_struct] = ACTIONS(1808), - [anon_sym_union] = ACTIONS(1808), - [anon_sym_if] = ACTIONS(1806), - [anon_sym_switch] = ACTIONS(1806), - [anon_sym_case] = ACTIONS(1806), - [anon_sym_default] = ACTIONS(1806), - [anon_sym_while] = ACTIONS(1806), - [anon_sym_do] = ACTIONS(1806), - [anon_sym_for] = ACTIONS(1806), - [anon_sym_return] = ACTIONS(1806), - [anon_sym_break] = ACTIONS(1806), - [anon_sym_continue] = ACTIONS(1806), - [anon_sym_goto] = ACTIONS(1806), - [anon_sym___try] = ACTIONS(1806), - [anon_sym___leave] = ACTIONS(1806), - [anon_sym_DASH_DASH] = ACTIONS(1804), - [anon_sym_PLUS_PLUS] = ACTIONS(1804), - [anon_sym_sizeof] = ACTIONS(1806), - [anon_sym___alignof__] = ACTIONS(1806), - [anon_sym___alignof] = ACTIONS(1806), - [anon_sym__alignof] = ACTIONS(1806), - [anon_sym_alignof] = ACTIONS(1806), - [anon_sym__Alignof] = ACTIONS(1806), - [anon_sym_offsetof] = ACTIONS(1806), - [anon_sym__Generic] = ACTIONS(1806), - [anon_sym_asm] = ACTIONS(1806), - [anon_sym___asm__] = ACTIONS(1806), - [sym_number_literal] = ACTIONS(1804), - [anon_sym_L_SQUOTE] = ACTIONS(1804), - [anon_sym_u_SQUOTE] = ACTIONS(1804), - [anon_sym_U_SQUOTE] = ACTIONS(1804), - [anon_sym_u8_SQUOTE] = ACTIONS(1804), - [anon_sym_SQUOTE] = ACTIONS(1804), - [anon_sym_L_DQUOTE] = ACTIONS(1804), - [anon_sym_u_DQUOTE] = ACTIONS(1804), - [anon_sym_U_DQUOTE] = ACTIONS(1804), - [anon_sym_u8_DQUOTE] = ACTIONS(1804), - [anon_sym_DQUOTE] = ACTIONS(1804), - [sym_true] = ACTIONS(1806), - [sym_false] = ACTIONS(1806), - [anon_sym_NULL] = ACTIONS(1806), - [anon_sym_nullptr] = ACTIONS(1806), - [sym_comment] = ACTIONS(3), + [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_type_qualifier] = STATE(1135), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(1220), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [sym_expression] = STATE(1171), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2260), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_type_descriptor] = STATE(2203), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [sym_macro_type_specifier] = STATE(873), - [aux_sym__type_definition_type_repeat1] = STATE(1135), - [aux_sym_sized_type_specifier_repeat1] = STATE(1246), - [sym_identifier] = ACTIONS(1795), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym___extension__] = ACTIONS(53), - [anon_sym_signed] = ACTIONS(1797), - [anon_sym_unsigned] = ACTIONS(1797), - [anon_sym_long] = ACTIONS(1797), - [anon_sym_short] = ACTIONS(1797), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(1799), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [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_type_qualifier] = STATE(1135), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(1220), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [sym_expression] = STATE(1171), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2260), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_type_descriptor] = STATE(2087), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [sym_macro_type_specifier] = STATE(873), - [aux_sym__type_definition_type_repeat1] = STATE(1135), - [aux_sym_sized_type_specifier_repeat1] = STATE(1246), - [sym_identifier] = ACTIONS(1795), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym___extension__] = ACTIONS(53), - [anon_sym_signed] = ACTIONS(1797), - [anon_sym_unsigned] = ACTIONS(1797), - [anon_sym_long] = ACTIONS(1797), - [anon_sym_short] = ACTIONS(1797), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(1799), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [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_type_qualifier] = STATE(1135), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(1220), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [sym_expression] = STATE(1171), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2260), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_type_descriptor] = STATE(2051), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [sym_macro_type_specifier] = STATE(873), - [aux_sym__type_definition_type_repeat1] = STATE(1135), - [aux_sym_sized_type_specifier_repeat1] = STATE(1246), - [sym_identifier] = ACTIONS(1795), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym___extension__] = ACTIONS(53), - [anon_sym_signed] = ACTIONS(1797), - [anon_sym_unsigned] = ACTIONS(1797), - [anon_sym_long] = ACTIONS(1797), - [anon_sym_short] = ACTIONS(1797), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(1799), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [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_type_qualifier] = STATE(1135), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(1220), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [sym_expression] = STATE(1171), - [sym__string] = STATE(758), - [sym_comma_expression] = STATE(2260), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_type_descriptor] = STATE(2276), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [sym_macro_type_specifier] = STATE(873), - [aux_sym__type_definition_type_repeat1] = STATE(1135), - [aux_sym_sized_type_specifier_repeat1] = STATE(1246), - [sym_identifier] = ACTIONS(1795), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym___extension__] = ACTIONS(53), - [anon_sym_signed] = ACTIONS(1797), - [anon_sym_unsigned] = ACTIONS(1797), - [anon_sym_long] = ACTIONS(1797), - [anon_sym_short] = ACTIONS(1797), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(1799), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [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_type_qualifier] = STATE(1135), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(1220), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [sym_expression] = STATE(1210), - [sym__string] = STATE(758), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_type_descriptor] = STATE(2197), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [sym_macro_type_specifier] = STATE(873), - [aux_sym__type_definition_type_repeat1] = STATE(1135), - [aux_sym_sized_type_specifier_repeat1] = STATE(1246), - [sym_identifier] = ACTIONS(1795), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym___extension__] = ACTIONS(53), - [anon_sym_signed] = ACTIONS(1797), - [anon_sym_unsigned] = ACTIONS(1797), - [anon_sym_long] = ACTIONS(1797), - [anon_sym_short] = ACTIONS(1797), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(1799), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [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_preproc_def] = STATE(492), - [sym_preproc_function_def] = STATE(492), - [sym_preproc_call] = STATE(492), - [sym_preproc_if_in_field_declaration_list] = STATE(492), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(492), - [sym_preproc_else_in_field_declaration_list] = STATE(2108), - [sym_preproc_elif_in_field_declaration_list] = STATE(2108), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(2108), - [sym__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1264), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(805), - [sym_ms_declspec_modifier] = STATE(805), - [sym_ms_based_modifier] = STATE(2174), - [sym__declarator] = STATE(1666), - [sym_parenthesized_declarator] = STATE(1569), - [sym_attributed_declarator] = STATE(1569), - [sym_pointer_declarator] = STATE(1569), - [sym_function_declarator] = STATE(1569), - [sym_array_declarator] = STATE(1569), - [sym_storage_class_specifier] = STATE(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(807), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [sym__field_declaration_list_item] = STATE(492), - [sym_macro_invocation] = STATE(492), - [sym_field_declaration] = STATE(492), - [sym_macro_type_specifier] = STATE(873), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(492), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), - [sym_identifier] = ACTIONS(1813), - [aux_sym_preproc_def_token1] = ACTIONS(1815), - [aux_sym_preproc_if_token1] = ACTIONS(1817), - [aux_sym_preproc_if_token2] = ACTIONS(1819), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1821), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1821), - [aux_sym_preproc_else_token1] = ACTIONS(1823), - [aux_sym_preproc_elif_token1] = ACTIONS(1825), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1827), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1827), - [sym_preproc_directive] = ACTIONS(1829), - [anon_sym_LPAREN2] = ACTIONS(1831), - [anon_sym_STAR] = ACTIONS(1833), - [anon_sym___extension__] = ACTIONS(53), - [anon_sym_extern] = ACTIONS(51), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym___read_mostly] = ACTIONS(37), - [anon_sym___must_hold] = ACTIONS(33), - [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___noreturn] = ACTIONS(37), - [anon_sym___cold] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1145), - [anon_sym___declspec] = ACTIONS(41), - [anon_sym___based] = ACTIONS(1835), - [anon_sym_signed] = ACTIONS(49), - [anon_sym_unsigned] = ACTIONS(49), - [anon_sym_long] = ACTIONS(49), - [anon_sym_short] = ACTIONS(49), - [anon_sym_static] = ACTIONS(51), - [anon_sym_auto] = ACTIONS(51), - [anon_sym_register] = ACTIONS(51), - [anon_sym_inline] = ACTIONS(51), - [anon_sym___inline] = ACTIONS(51), - [anon_sym___inline__] = ACTIONS(51), - [anon_sym___forceinline] = ACTIONS(51), - [anon_sym_thread_local] = ACTIONS(51), - [anon_sym___thread] = ACTIONS(51), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [sym_comment] = ACTIONS(3), + [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_preproc_def] = STATE(477), - [sym_preproc_function_def] = STATE(477), - [sym_preproc_call] = STATE(477), - [sym_preproc_if_in_field_declaration_list] = STATE(477), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(477), - [sym_preproc_else_in_field_declaration_list] = STATE(2123), - [sym_preproc_elif_in_field_declaration_list] = STATE(2123), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(2123), - [sym__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1264), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(805), - [sym_ms_declspec_modifier] = STATE(805), - [sym_ms_based_modifier] = STATE(2174), - [sym__declarator] = STATE(1666), - [sym_parenthesized_declarator] = STATE(1569), - [sym_attributed_declarator] = STATE(1569), - [sym_pointer_declarator] = STATE(1569), - [sym_function_declarator] = STATE(1569), - [sym_array_declarator] = STATE(1569), - [sym_storage_class_specifier] = STATE(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(807), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [sym__field_declaration_list_item] = STATE(477), - [sym_macro_invocation] = STATE(477), - [sym_field_declaration] = STATE(477), - [sym_macro_type_specifier] = STATE(873), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(477), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), - [sym_identifier] = ACTIONS(1813), - [aux_sym_preproc_def_token1] = ACTIONS(1815), - [aux_sym_preproc_if_token1] = ACTIONS(1817), - [aux_sym_preproc_if_token2] = ACTIONS(1837), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1821), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1821), - [aux_sym_preproc_else_token1] = ACTIONS(1823), - [aux_sym_preproc_elif_token1] = ACTIONS(1825), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1827), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1827), - [sym_preproc_directive] = ACTIONS(1829), - [anon_sym_LPAREN2] = ACTIONS(1831), - [anon_sym_STAR] = ACTIONS(1833), - [anon_sym___extension__] = ACTIONS(53), - [anon_sym_extern] = ACTIONS(51), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym___read_mostly] = ACTIONS(37), - [anon_sym___must_hold] = ACTIONS(33), - [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___noreturn] = ACTIONS(37), - [anon_sym___cold] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1145), - [anon_sym___declspec] = ACTIONS(41), - [anon_sym___based] = ACTIONS(1835), - [anon_sym_signed] = ACTIONS(49), - [anon_sym_unsigned] = ACTIONS(49), - [anon_sym_long] = ACTIONS(49), - [anon_sym_short] = ACTIONS(49), - [anon_sym_static] = ACTIONS(51), - [anon_sym_auto] = ACTIONS(51), - [anon_sym_register] = ACTIONS(51), - [anon_sym_inline] = ACTIONS(51), - [anon_sym___inline] = ACTIONS(51), - [anon_sym___inline__] = ACTIONS(51), - [anon_sym___forceinline] = ACTIONS(51), - [anon_sym_thread_local] = ACTIONS(51), - [anon_sym___thread] = ACTIONS(51), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [sym_comment] = ACTIONS(3), + [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_preproc_def] = STATE(486), - [sym_preproc_function_def] = STATE(486), - [sym_preproc_call] = STATE(486), - [sym_preproc_if_in_field_declaration_list] = STATE(486), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(486), - [sym_preproc_else_in_field_declaration_list] = STATE(2312), - [sym_preproc_elif_in_field_declaration_list] = STATE(2312), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(2312), - [sym__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1264), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(805), - [sym_ms_declspec_modifier] = STATE(805), - [sym_ms_based_modifier] = STATE(2174), - [sym__declarator] = STATE(1666), - [sym_parenthesized_declarator] = STATE(1569), - [sym_attributed_declarator] = STATE(1569), - [sym_pointer_declarator] = STATE(1569), - [sym_function_declarator] = STATE(1569), - [sym_array_declarator] = STATE(1569), - [sym_storage_class_specifier] = STATE(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(807), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [sym__field_declaration_list_item] = STATE(486), - [sym_macro_invocation] = STATE(486), - [sym_field_declaration] = STATE(486), - [sym_macro_type_specifier] = STATE(873), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(486), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), - [sym_identifier] = ACTIONS(1813), - [aux_sym_preproc_def_token1] = ACTIONS(1815), - [aux_sym_preproc_if_token1] = ACTIONS(1817), - [aux_sym_preproc_if_token2] = ACTIONS(1839), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1821), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1821), - [aux_sym_preproc_else_token1] = ACTIONS(1823), - [aux_sym_preproc_elif_token1] = ACTIONS(1825), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1827), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1827), - [sym_preproc_directive] = ACTIONS(1829), - [anon_sym_LPAREN2] = ACTIONS(1831), - [anon_sym_STAR] = ACTIONS(1833), - [anon_sym___extension__] = ACTIONS(53), - [anon_sym_extern] = ACTIONS(51), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym___read_mostly] = ACTIONS(37), - [anon_sym___must_hold] = ACTIONS(33), - [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___noreturn] = ACTIONS(37), - [anon_sym___cold] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1145), - [anon_sym___declspec] = ACTIONS(41), - [anon_sym___based] = ACTIONS(1835), - [anon_sym_signed] = ACTIONS(49), - [anon_sym_unsigned] = ACTIONS(49), - [anon_sym_long] = ACTIONS(49), - [anon_sym_short] = ACTIONS(49), - [anon_sym_static] = ACTIONS(51), - [anon_sym_auto] = ACTIONS(51), - [anon_sym_register] = ACTIONS(51), - [anon_sym_inline] = ACTIONS(51), - [anon_sym___inline] = ACTIONS(51), - [anon_sym___inline__] = ACTIONS(51), - [anon_sym___forceinline] = ACTIONS(51), - [anon_sym_thread_local] = ACTIONS(51), - [anon_sym___thread] = ACTIONS(51), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [sym_comment] = ACTIONS(3), + [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), + [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), + [sym_comment] = ACTIONS(5), }, [477] = { - [sym_preproc_def] = STATE(492), - [sym_preproc_function_def] = STATE(492), - [sym_preproc_call] = STATE(492), - [sym_preproc_if_in_field_declaration_list] = STATE(492), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(492), - [sym_preproc_else_in_field_declaration_list] = STATE(2110), - [sym_preproc_elif_in_field_declaration_list] = STATE(2110), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(2110), - [sym__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1264), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(805), - [sym_ms_declspec_modifier] = STATE(805), - [sym_ms_based_modifier] = STATE(2174), - [sym__declarator] = STATE(1666), - [sym_parenthesized_declarator] = STATE(1569), - [sym_attributed_declarator] = STATE(1569), - [sym_pointer_declarator] = STATE(1569), - [sym_function_declarator] = STATE(1569), - [sym_array_declarator] = STATE(1569), - [sym_storage_class_specifier] = STATE(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(807), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [sym__field_declaration_list_item] = STATE(492), - [sym_macro_invocation] = STATE(492), - [sym_field_declaration] = STATE(492), - [sym_macro_type_specifier] = STATE(873), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(492), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), - [sym_identifier] = ACTIONS(1813), - [aux_sym_preproc_def_token1] = ACTIONS(1815), - [aux_sym_preproc_if_token1] = ACTIONS(1817), - [aux_sym_preproc_if_token2] = ACTIONS(1841), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1821), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1821), - [aux_sym_preproc_else_token1] = ACTIONS(1823), - [aux_sym_preproc_elif_token1] = ACTIONS(1825), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1827), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1827), - [sym_preproc_directive] = ACTIONS(1829), - [anon_sym_LPAREN2] = ACTIONS(1831), - [anon_sym_STAR] = ACTIONS(1833), - [anon_sym___extension__] = ACTIONS(53), - [anon_sym_extern] = ACTIONS(51), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym___read_mostly] = ACTIONS(37), - [anon_sym___must_hold] = ACTIONS(33), - [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___noreturn] = ACTIONS(37), - [anon_sym___cold] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1145), - [anon_sym___declspec] = ACTIONS(41), - [anon_sym___based] = ACTIONS(1835), - [anon_sym_signed] = ACTIONS(49), - [anon_sym_unsigned] = ACTIONS(49), - [anon_sym_long] = ACTIONS(49), - [anon_sym_short] = ACTIONS(49), - [anon_sym_static] = ACTIONS(51), - [anon_sym_auto] = ACTIONS(51), - [anon_sym_register] = ACTIONS(51), - [anon_sym_inline] = ACTIONS(51), - [anon_sym___inline] = ACTIONS(51), - [anon_sym___inline__] = ACTIONS(51), - [anon_sym___forceinline] = ACTIONS(51), - [anon_sym_thread_local] = ACTIONS(51), - [anon_sym___thread] = ACTIONS(51), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [sym_comment] = ACTIONS(3), + [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), + [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), + [sym_comment] = ACTIONS(5), }, [478] = { - [sym_preproc_def] = STATE(492), - [sym_preproc_function_def] = STATE(492), - [sym_preproc_call] = STATE(492), - [sym_preproc_if_in_field_declaration_list] = STATE(492), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(492), - [sym_preproc_else_in_field_declaration_list] = STATE(2256), - [sym_preproc_elif_in_field_declaration_list] = STATE(2256), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(2256), - [sym__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1264), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(805), - [sym_ms_declspec_modifier] = STATE(805), - [sym_ms_based_modifier] = STATE(2174), - [sym__declarator] = STATE(1666), - [sym_parenthesized_declarator] = STATE(1569), - [sym_attributed_declarator] = STATE(1569), - [sym_pointer_declarator] = STATE(1569), - [sym_function_declarator] = STATE(1569), - [sym_array_declarator] = STATE(1569), - [sym_storage_class_specifier] = STATE(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(807), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [sym__field_declaration_list_item] = STATE(492), - [sym_macro_invocation] = STATE(492), - [sym_field_declaration] = STATE(492), - [sym_macro_type_specifier] = STATE(873), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(492), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), - [sym_identifier] = ACTIONS(1813), - [aux_sym_preproc_def_token1] = ACTIONS(1815), - [aux_sym_preproc_if_token1] = ACTIONS(1817), - [aux_sym_preproc_if_token2] = ACTIONS(1843), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1821), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1821), - [aux_sym_preproc_else_token1] = ACTIONS(1823), - [aux_sym_preproc_elif_token1] = ACTIONS(1825), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1827), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1827), - [sym_preproc_directive] = ACTIONS(1829), - [anon_sym_LPAREN2] = ACTIONS(1831), - [anon_sym_STAR] = ACTIONS(1833), - [anon_sym___extension__] = ACTIONS(53), - [anon_sym_extern] = ACTIONS(51), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym___read_mostly] = ACTIONS(37), - [anon_sym___must_hold] = ACTIONS(33), - [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___noreturn] = ACTIONS(37), - [anon_sym___cold] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1145), - [anon_sym___declspec] = ACTIONS(41), - [anon_sym___based] = ACTIONS(1835), - [anon_sym_signed] = ACTIONS(49), - [anon_sym_unsigned] = ACTIONS(49), - [anon_sym_long] = ACTIONS(49), - [anon_sym_short] = ACTIONS(49), - [anon_sym_static] = ACTIONS(51), - [anon_sym_auto] = ACTIONS(51), - [anon_sym_register] = ACTIONS(51), - [anon_sym_inline] = ACTIONS(51), - [anon_sym___inline] = ACTIONS(51), - [anon_sym___inline__] = ACTIONS(51), - [anon_sym___forceinline] = ACTIONS(51), - [anon_sym_thread_local] = ACTIONS(51), - [anon_sym___thread] = ACTIONS(51), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [sym_comment] = ACTIONS(3), + [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), + [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), + [sym_comment] = ACTIONS(5), }, [479] = { - [sym_preproc_def] = STATE(492), - [sym_preproc_function_def] = STATE(492), - [sym_preproc_call] = STATE(492), - [sym_preproc_if_in_field_declaration_list] = STATE(492), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(492), - [sym_preproc_else_in_field_declaration_list] = STATE(2118), - [sym_preproc_elif_in_field_declaration_list] = STATE(2118), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(2118), - [sym__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1264), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(805), - [sym_ms_declspec_modifier] = STATE(805), - [sym_ms_based_modifier] = STATE(2174), - [sym__declarator] = STATE(1666), - [sym_parenthesized_declarator] = STATE(1569), - [sym_attributed_declarator] = STATE(1569), - [sym_pointer_declarator] = STATE(1569), - [sym_function_declarator] = STATE(1569), - [sym_array_declarator] = STATE(1569), - [sym_storage_class_specifier] = STATE(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(807), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [sym__field_declaration_list_item] = STATE(492), - [sym_macro_invocation] = STATE(492), - [sym_field_declaration] = STATE(492), - [sym_macro_type_specifier] = STATE(873), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(492), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), - [sym_identifier] = ACTIONS(1813), - [aux_sym_preproc_def_token1] = ACTIONS(1815), - [aux_sym_preproc_if_token1] = ACTIONS(1817), - [aux_sym_preproc_if_token2] = ACTIONS(1845), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1821), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1821), - [aux_sym_preproc_else_token1] = ACTIONS(1823), - [aux_sym_preproc_elif_token1] = ACTIONS(1825), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1827), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1827), - [sym_preproc_directive] = ACTIONS(1829), - [anon_sym_LPAREN2] = ACTIONS(1831), - [anon_sym_STAR] = ACTIONS(1833), - [anon_sym___extension__] = ACTIONS(53), - [anon_sym_extern] = ACTIONS(51), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym___read_mostly] = ACTIONS(37), - [anon_sym___must_hold] = ACTIONS(33), - [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___noreturn] = ACTIONS(37), - [anon_sym___cold] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1145), - [anon_sym___declspec] = ACTIONS(41), - [anon_sym___based] = ACTIONS(1835), - [anon_sym_signed] = ACTIONS(49), - [anon_sym_unsigned] = ACTIONS(49), - [anon_sym_long] = ACTIONS(49), - [anon_sym_short] = ACTIONS(49), - [anon_sym_static] = ACTIONS(51), - [anon_sym_auto] = ACTIONS(51), - [anon_sym_register] = ACTIONS(51), - [anon_sym_inline] = ACTIONS(51), - [anon_sym___inline] = ACTIONS(51), - [anon_sym___inline__] = ACTIONS(51), - [anon_sym___forceinline] = ACTIONS(51), - [anon_sym_thread_local] = ACTIONS(51), - [anon_sym___thread] = ACTIONS(51), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [sym_comment] = ACTIONS(3), + [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), + [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), + [sym_comment] = ACTIONS(5), }, [480] = { - [sym_preproc_def] = STATE(482), - [sym_preproc_function_def] = STATE(482), - [sym_preproc_call] = STATE(482), - [sym_preproc_if_in_field_declaration_list] = STATE(482), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(482), - [sym_preproc_else_in_field_declaration_list] = STATE(2116), - [sym_preproc_elif_in_field_declaration_list] = STATE(2116), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(2116), - [sym__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1264), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(805), - [sym_ms_declspec_modifier] = STATE(805), - [sym_ms_based_modifier] = STATE(2174), - [sym__declarator] = STATE(1666), - [sym_parenthesized_declarator] = STATE(1569), - [sym_attributed_declarator] = STATE(1569), - [sym_pointer_declarator] = STATE(1569), - [sym_function_declarator] = STATE(1569), - [sym_array_declarator] = STATE(1569), - [sym_storage_class_specifier] = STATE(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(807), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [sym__field_declaration_list_item] = STATE(482), - [sym_macro_invocation] = STATE(482), - [sym_field_declaration] = STATE(482), - [sym_macro_type_specifier] = STATE(873), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(482), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), - [sym_identifier] = ACTIONS(1813), - [aux_sym_preproc_def_token1] = ACTIONS(1815), - [aux_sym_preproc_if_token1] = ACTIONS(1817), - [aux_sym_preproc_if_token2] = ACTIONS(1847), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1821), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1821), - [aux_sym_preproc_else_token1] = ACTIONS(1823), - [aux_sym_preproc_elif_token1] = ACTIONS(1825), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1827), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1827), - [sym_preproc_directive] = ACTIONS(1829), - [anon_sym_LPAREN2] = ACTIONS(1831), - [anon_sym_STAR] = ACTIONS(1833), - [anon_sym___extension__] = ACTIONS(53), - [anon_sym_extern] = ACTIONS(51), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym___read_mostly] = ACTIONS(37), - [anon_sym___must_hold] = ACTIONS(33), - [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___noreturn] = ACTIONS(37), - [anon_sym___cold] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1145), - [anon_sym___declspec] = ACTIONS(41), - [anon_sym___based] = ACTIONS(1835), - [anon_sym_signed] = ACTIONS(49), - [anon_sym_unsigned] = ACTIONS(49), - [anon_sym_long] = ACTIONS(49), - [anon_sym_short] = ACTIONS(49), - [anon_sym_static] = ACTIONS(51), - [anon_sym_auto] = ACTIONS(51), - [anon_sym_register] = ACTIONS(51), - [anon_sym_inline] = ACTIONS(51), - [anon_sym___inline] = ACTIONS(51), - [anon_sym___inline__] = ACTIONS(51), - [anon_sym___forceinline] = ACTIONS(51), - [anon_sym_thread_local] = ACTIONS(51), - [anon_sym___thread] = ACTIONS(51), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [sym_comment] = ACTIONS(3), + [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), + [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), + [sym_comment] = ACTIONS(5), }, [481] = { - [sym_preproc_def] = STATE(485), - [sym_preproc_function_def] = STATE(485), - [sym_preproc_call] = STATE(485), - [sym_preproc_if_in_field_declaration_list] = STATE(485), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(485), - [sym_preproc_else_in_field_declaration_list] = STATE(2182), - [sym_preproc_elif_in_field_declaration_list] = STATE(2182), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(2182), - [sym__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1264), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(805), - [sym_ms_declspec_modifier] = STATE(805), - [sym_ms_based_modifier] = STATE(2174), - [sym__declarator] = STATE(1666), - [sym_parenthesized_declarator] = STATE(1569), - [sym_attributed_declarator] = STATE(1569), - [sym_pointer_declarator] = STATE(1569), - [sym_function_declarator] = STATE(1569), - [sym_array_declarator] = STATE(1569), - [sym_storage_class_specifier] = STATE(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(807), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [sym__field_declaration_list_item] = STATE(485), - [sym_macro_invocation] = STATE(485), - [sym_field_declaration] = STATE(485), - [sym_macro_type_specifier] = STATE(873), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(485), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), - [sym_identifier] = ACTIONS(1813), - [aux_sym_preproc_def_token1] = ACTIONS(1815), - [aux_sym_preproc_if_token1] = ACTIONS(1817), - [aux_sym_preproc_if_token2] = ACTIONS(1849), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1821), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1821), - [aux_sym_preproc_else_token1] = ACTIONS(1823), - [aux_sym_preproc_elif_token1] = ACTIONS(1825), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1827), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1827), - [sym_preproc_directive] = ACTIONS(1829), - [anon_sym_LPAREN2] = ACTIONS(1831), - [anon_sym_STAR] = ACTIONS(1833), - [anon_sym___extension__] = ACTIONS(53), - [anon_sym_extern] = ACTIONS(51), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym___read_mostly] = ACTIONS(37), - [anon_sym___must_hold] = ACTIONS(33), - [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___noreturn] = ACTIONS(37), - [anon_sym___cold] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1145), - [anon_sym___declspec] = ACTIONS(41), - [anon_sym___based] = ACTIONS(1835), - [anon_sym_signed] = ACTIONS(49), - [anon_sym_unsigned] = ACTIONS(49), - [anon_sym_long] = ACTIONS(49), - [anon_sym_short] = ACTIONS(49), - [anon_sym_static] = ACTIONS(51), - [anon_sym_auto] = ACTIONS(51), - [anon_sym_register] = ACTIONS(51), - [anon_sym_inline] = ACTIONS(51), - [anon_sym___inline] = ACTIONS(51), - [anon_sym___inline__] = ACTIONS(51), - [anon_sym___forceinline] = ACTIONS(51), - [anon_sym_thread_local] = ACTIONS(51), - [anon_sym___thread] = ACTIONS(51), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [sym_comment] = ACTIONS(3), + [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), }, [482] = { - [sym_preproc_def] = STATE(492), - [sym_preproc_function_def] = STATE(492), - [sym_preproc_call] = STATE(492), - [sym_preproc_if_in_field_declaration_list] = STATE(492), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(492), - [sym_preproc_else_in_field_declaration_list] = STATE(2181), - [sym_preproc_elif_in_field_declaration_list] = STATE(2181), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(2181), - [sym__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1264), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(805), - [sym_ms_declspec_modifier] = STATE(805), - [sym_ms_based_modifier] = STATE(2174), - [sym__declarator] = STATE(1666), - [sym_parenthesized_declarator] = STATE(1569), - [sym_attributed_declarator] = STATE(1569), - [sym_pointer_declarator] = STATE(1569), - [sym_function_declarator] = STATE(1569), - [sym_array_declarator] = STATE(1569), - [sym_storage_class_specifier] = STATE(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(807), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [sym__field_declaration_list_item] = STATE(492), - [sym_macro_invocation] = STATE(492), - [sym_field_declaration] = STATE(492), - [sym_macro_type_specifier] = STATE(873), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(492), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), - [sym_identifier] = ACTIONS(1813), - [aux_sym_preproc_def_token1] = ACTIONS(1815), - [aux_sym_preproc_if_token1] = ACTIONS(1817), - [aux_sym_preproc_if_token2] = ACTIONS(1851), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1821), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1821), - [aux_sym_preproc_else_token1] = ACTIONS(1823), - [aux_sym_preproc_elif_token1] = ACTIONS(1825), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1827), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1827), - [sym_preproc_directive] = ACTIONS(1829), - [anon_sym_LPAREN2] = ACTIONS(1831), - [anon_sym_STAR] = ACTIONS(1833), - [anon_sym___extension__] = ACTIONS(53), - [anon_sym_extern] = ACTIONS(51), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym___read_mostly] = ACTIONS(37), - [anon_sym___must_hold] = ACTIONS(33), - [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___noreturn] = ACTIONS(37), - [anon_sym___cold] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1145), - [anon_sym___declspec] = ACTIONS(41), - [anon_sym___based] = ACTIONS(1835), - [anon_sym_signed] = ACTIONS(49), - [anon_sym_unsigned] = ACTIONS(49), - [anon_sym_long] = ACTIONS(49), - [anon_sym_short] = ACTIONS(49), - [anon_sym_static] = ACTIONS(51), - [anon_sym_auto] = ACTIONS(51), - [anon_sym_register] = ACTIONS(51), - [anon_sym_inline] = ACTIONS(51), - [anon_sym___inline] = ACTIONS(51), - [anon_sym___inline__] = ACTIONS(51), - [anon_sym___forceinline] = ACTIONS(51), - [anon_sym_thread_local] = ACTIONS(51), - [anon_sym___thread] = ACTIONS(51), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [sym_comment] = ACTIONS(3), + [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), }, [483] = { - [sym_preproc_def] = STATE(479), - [sym_preproc_function_def] = STATE(479), - [sym_preproc_call] = STATE(479), - [sym_preproc_if_in_field_declaration_list] = STATE(479), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(479), - [sym_preproc_else_in_field_declaration_list] = STATE(2106), - [sym_preproc_elif_in_field_declaration_list] = STATE(2106), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(2106), - [sym__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1264), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(805), - [sym_ms_declspec_modifier] = STATE(805), - [sym_ms_based_modifier] = STATE(2174), - [sym__declarator] = STATE(1666), - [sym_parenthesized_declarator] = STATE(1569), - [sym_attributed_declarator] = STATE(1569), - [sym_pointer_declarator] = STATE(1569), - [sym_function_declarator] = STATE(1569), - [sym_array_declarator] = STATE(1569), - [sym_storage_class_specifier] = STATE(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(807), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [sym__field_declaration_list_item] = STATE(479), - [sym_macro_invocation] = STATE(479), - [sym_field_declaration] = STATE(479), - [sym_macro_type_specifier] = STATE(873), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(479), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), - [sym_identifier] = ACTIONS(1813), - [aux_sym_preproc_def_token1] = ACTIONS(1815), - [aux_sym_preproc_if_token1] = ACTIONS(1817), - [aux_sym_preproc_if_token2] = ACTIONS(1853), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1821), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1821), - [aux_sym_preproc_else_token1] = ACTIONS(1823), - [aux_sym_preproc_elif_token1] = ACTIONS(1825), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1827), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1827), - [sym_preproc_directive] = ACTIONS(1829), - [anon_sym_LPAREN2] = ACTIONS(1831), - [anon_sym_STAR] = ACTIONS(1833), - [anon_sym___extension__] = ACTIONS(53), - [anon_sym_extern] = ACTIONS(51), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym___read_mostly] = ACTIONS(37), - [anon_sym___must_hold] = ACTIONS(33), - [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___noreturn] = ACTIONS(37), - [anon_sym___cold] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1145), - [anon_sym___declspec] = ACTIONS(41), - [anon_sym___based] = ACTIONS(1835), - [anon_sym_signed] = ACTIONS(49), - [anon_sym_unsigned] = ACTIONS(49), - [anon_sym_long] = ACTIONS(49), - [anon_sym_short] = ACTIONS(49), - [anon_sym_static] = ACTIONS(51), - [anon_sym_auto] = ACTIONS(51), - [anon_sym_register] = ACTIONS(51), - [anon_sym_inline] = ACTIONS(51), - [anon_sym___inline] = ACTIONS(51), - [anon_sym___inline__] = ACTIONS(51), - [anon_sym___forceinline] = ACTIONS(51), - [anon_sym_thread_local] = ACTIONS(51), - [anon_sym___thread] = ACTIONS(51), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [sym_comment] = ACTIONS(3), + [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), + [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), + [sym_comment] = ACTIONS(5), }, [484] = { - [sym_preproc_def] = STATE(478), - [sym_preproc_function_def] = STATE(478), - [sym_preproc_call] = STATE(478), - [sym_preproc_if_in_field_declaration_list] = STATE(478), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(478), - [sym_preproc_else_in_field_declaration_list] = STATE(2234), - [sym_preproc_elif_in_field_declaration_list] = STATE(2234), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(2234), - [sym__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1264), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(805), - [sym_ms_declspec_modifier] = STATE(805), - [sym_ms_based_modifier] = STATE(2174), - [sym__declarator] = STATE(1666), - [sym_parenthesized_declarator] = STATE(1569), - [sym_attributed_declarator] = STATE(1569), - [sym_pointer_declarator] = STATE(1569), - [sym_function_declarator] = STATE(1569), - [sym_array_declarator] = STATE(1569), - [sym_storage_class_specifier] = STATE(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(807), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [sym__field_declaration_list_item] = STATE(478), - [sym_macro_invocation] = STATE(478), - [sym_field_declaration] = STATE(478), - [sym_macro_type_specifier] = STATE(873), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(478), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), - [sym_identifier] = ACTIONS(1813), - [aux_sym_preproc_def_token1] = ACTIONS(1815), - [aux_sym_preproc_if_token1] = ACTIONS(1817), - [aux_sym_preproc_if_token2] = ACTIONS(1855), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1821), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1821), - [aux_sym_preproc_else_token1] = ACTIONS(1823), - [aux_sym_preproc_elif_token1] = ACTIONS(1825), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1827), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1827), - [sym_preproc_directive] = ACTIONS(1829), - [anon_sym_LPAREN2] = ACTIONS(1831), - [anon_sym_STAR] = ACTIONS(1833), - [anon_sym___extension__] = ACTIONS(53), - [anon_sym_extern] = ACTIONS(51), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym___read_mostly] = ACTIONS(37), - [anon_sym___must_hold] = ACTIONS(33), - [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___noreturn] = ACTIONS(37), - [anon_sym___cold] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1145), - [anon_sym___declspec] = ACTIONS(41), - [anon_sym___based] = ACTIONS(1835), - [anon_sym_signed] = ACTIONS(49), - [anon_sym_unsigned] = ACTIONS(49), - [anon_sym_long] = ACTIONS(49), - [anon_sym_short] = ACTIONS(49), - [anon_sym_static] = ACTIONS(51), - [anon_sym_auto] = ACTIONS(51), - [anon_sym_register] = ACTIONS(51), - [anon_sym_inline] = ACTIONS(51), - [anon_sym___inline] = ACTIONS(51), - [anon_sym___inline__] = ACTIONS(51), - [anon_sym___forceinline] = ACTIONS(51), - [anon_sym_thread_local] = ACTIONS(51), - [anon_sym___thread] = ACTIONS(51), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [sym_comment] = ACTIONS(3), + [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), }, [485] = { - [sym_preproc_def] = STATE(492), - [sym_preproc_function_def] = STATE(492), - [sym_preproc_call] = STATE(492), - [sym_preproc_if_in_field_declaration_list] = STATE(492), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(492), - [sym_preproc_else_in_field_declaration_list] = STATE(2237), - [sym_preproc_elif_in_field_declaration_list] = STATE(2237), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(2237), - [sym__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1264), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(805), - [sym_ms_declspec_modifier] = STATE(805), - [sym_ms_based_modifier] = STATE(2174), - [sym__declarator] = STATE(1666), - [sym_parenthesized_declarator] = STATE(1569), - [sym_attributed_declarator] = STATE(1569), - [sym_pointer_declarator] = STATE(1569), - [sym_function_declarator] = STATE(1569), - [sym_array_declarator] = STATE(1569), - [sym_storage_class_specifier] = STATE(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(807), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [sym__field_declaration_list_item] = STATE(492), - [sym_macro_invocation] = STATE(492), - [sym_field_declaration] = STATE(492), - [sym_macro_type_specifier] = STATE(873), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(492), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), - [sym_identifier] = ACTIONS(1813), - [aux_sym_preproc_def_token1] = ACTIONS(1815), - [aux_sym_preproc_if_token1] = ACTIONS(1817), - [aux_sym_preproc_if_token2] = ACTIONS(1857), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1821), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1821), - [aux_sym_preproc_else_token1] = ACTIONS(1823), - [aux_sym_preproc_elif_token1] = ACTIONS(1825), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1827), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1827), - [sym_preproc_directive] = ACTIONS(1829), - [anon_sym_LPAREN2] = ACTIONS(1831), - [anon_sym_STAR] = ACTIONS(1833), - [anon_sym___extension__] = ACTIONS(53), - [anon_sym_extern] = ACTIONS(51), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym___read_mostly] = ACTIONS(37), - [anon_sym___must_hold] = ACTIONS(33), - [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___noreturn] = ACTIONS(37), - [anon_sym___cold] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1145), - [anon_sym___declspec] = ACTIONS(41), - [anon_sym___based] = ACTIONS(1835), - [anon_sym_signed] = ACTIONS(49), - [anon_sym_unsigned] = ACTIONS(49), - [anon_sym_long] = ACTIONS(49), - [anon_sym_short] = ACTIONS(49), - [anon_sym_static] = ACTIONS(51), - [anon_sym_auto] = ACTIONS(51), - [anon_sym_register] = ACTIONS(51), - [anon_sym_inline] = ACTIONS(51), - [anon_sym___inline] = ACTIONS(51), - [anon_sym___inline__] = ACTIONS(51), - [anon_sym___forceinline] = ACTIONS(51), - [anon_sym_thread_local] = ACTIONS(51), - [anon_sym___thread] = ACTIONS(51), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [sym_comment] = ACTIONS(3), + [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), }, [486] = { - [sym_preproc_def] = STATE(492), - [sym_preproc_function_def] = STATE(492), - [sym_preproc_call] = STATE(492), - [sym_preproc_if_in_field_declaration_list] = STATE(492), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(492), - [sym_preproc_else_in_field_declaration_list] = STATE(2302), - [sym_preproc_elif_in_field_declaration_list] = STATE(2302), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(2302), - [sym__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1264), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(805), - [sym_ms_declspec_modifier] = STATE(805), - [sym_ms_based_modifier] = STATE(2174), - [sym__declarator] = STATE(1666), - [sym_parenthesized_declarator] = STATE(1569), - [sym_attributed_declarator] = STATE(1569), - [sym_pointer_declarator] = STATE(1569), - [sym_function_declarator] = STATE(1569), - [sym_array_declarator] = STATE(1569), - [sym_storage_class_specifier] = STATE(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(807), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [sym__field_declaration_list_item] = STATE(492), - [sym_macro_invocation] = STATE(492), - [sym_field_declaration] = STATE(492), - [sym_macro_type_specifier] = STATE(873), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(492), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), - [sym_identifier] = ACTIONS(1813), - [aux_sym_preproc_def_token1] = ACTIONS(1815), - [aux_sym_preproc_if_token1] = ACTIONS(1817), - [aux_sym_preproc_if_token2] = ACTIONS(1859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1821), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1821), - [aux_sym_preproc_else_token1] = ACTIONS(1823), - [aux_sym_preproc_elif_token1] = ACTIONS(1825), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1827), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1827), - [sym_preproc_directive] = ACTIONS(1829), - [anon_sym_LPAREN2] = ACTIONS(1831), - [anon_sym_STAR] = ACTIONS(1833), - [anon_sym___extension__] = ACTIONS(53), - [anon_sym_extern] = ACTIONS(51), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym___read_mostly] = ACTIONS(37), - [anon_sym___must_hold] = ACTIONS(33), - [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___noreturn] = ACTIONS(37), - [anon_sym___cold] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1145), - [anon_sym___declspec] = ACTIONS(41), - [anon_sym___based] = ACTIONS(1835), - [anon_sym_signed] = ACTIONS(49), - [anon_sym_unsigned] = ACTIONS(49), - [anon_sym_long] = ACTIONS(49), - [anon_sym_short] = ACTIONS(49), - [anon_sym_static] = ACTIONS(51), - [anon_sym_auto] = ACTIONS(51), - [anon_sym_register] = ACTIONS(51), - [anon_sym_inline] = ACTIONS(51), - [anon_sym___inline] = ACTIONS(51), - [anon_sym___inline__] = ACTIONS(51), - [anon_sym___forceinline] = ACTIONS(51), - [anon_sym_thread_local] = ACTIONS(51), - [anon_sym___thread] = ACTIONS(51), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1314), + [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), + [sym_comment] = ACTIONS(5), }, [487] = { - [sym_preproc_def] = STATE(492), - [sym_preproc_function_def] = STATE(492), - [sym_preproc_call] = STATE(492), - [sym_preproc_if_in_field_declaration_list] = STATE(492), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(492), - [sym_preproc_else_in_field_declaration_list] = STATE(2301), - [sym_preproc_elif_in_field_declaration_list] = STATE(2301), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(2301), - [sym__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1264), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(805), - [sym_ms_declspec_modifier] = STATE(805), - [sym_ms_based_modifier] = STATE(2174), - [sym__declarator] = STATE(1666), - [sym_parenthesized_declarator] = STATE(1569), - [sym_attributed_declarator] = STATE(1569), - [sym_pointer_declarator] = STATE(1569), - [sym_function_declarator] = STATE(1569), - [sym_array_declarator] = STATE(1569), - [sym_storage_class_specifier] = STATE(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(807), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [sym__field_declaration_list_item] = STATE(492), - [sym_macro_invocation] = STATE(492), - [sym_field_declaration] = STATE(492), - [sym_macro_type_specifier] = STATE(873), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(492), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), - [sym_identifier] = ACTIONS(1813), - [aux_sym_preproc_def_token1] = ACTIONS(1815), - [aux_sym_preproc_if_token1] = ACTIONS(1817), - [aux_sym_preproc_if_token2] = ACTIONS(1861), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1821), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1821), - [aux_sym_preproc_else_token1] = ACTIONS(1823), - [aux_sym_preproc_elif_token1] = ACTIONS(1825), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1827), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1827), - [sym_preproc_directive] = ACTIONS(1829), - [anon_sym_LPAREN2] = ACTIONS(1831), - [anon_sym_STAR] = ACTIONS(1833), - [anon_sym___extension__] = ACTIONS(53), - [anon_sym_extern] = ACTIONS(51), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym___read_mostly] = ACTIONS(37), - [anon_sym___must_hold] = ACTIONS(33), - [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___noreturn] = ACTIONS(37), - [anon_sym___cold] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1145), - [anon_sym___declspec] = ACTIONS(41), - [anon_sym___based] = ACTIONS(1835), - [anon_sym_signed] = ACTIONS(49), - [anon_sym_unsigned] = ACTIONS(49), - [anon_sym_long] = ACTIONS(49), - [anon_sym_short] = ACTIONS(49), - [anon_sym_static] = ACTIONS(51), - [anon_sym_auto] = ACTIONS(51), - [anon_sym_register] = ACTIONS(51), - [anon_sym_inline] = ACTIONS(51), - [anon_sym___inline] = ACTIONS(51), - [anon_sym___inline__] = ACTIONS(51), - [anon_sym___forceinline] = ACTIONS(51), - [anon_sym_thread_local] = ACTIONS(51), - [anon_sym___thread] = ACTIONS(51), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [sym_comment] = ACTIONS(3), + [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), + [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), + [sym_comment] = ACTIONS(5), }, [488] = { - [sym_preproc_def] = STATE(487), - [sym_preproc_function_def] = STATE(487), - [sym_preproc_call] = STATE(487), - [sym_preproc_if_in_field_declaration_list] = STATE(487), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(487), - [sym_preproc_else_in_field_declaration_list] = STATE(2304), - [sym_preproc_elif_in_field_declaration_list] = STATE(2304), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(2304), - [sym__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1264), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(805), - [sym_ms_declspec_modifier] = STATE(805), - [sym_ms_based_modifier] = STATE(2174), - [sym__declarator] = STATE(1666), - [sym_parenthesized_declarator] = STATE(1569), - [sym_attributed_declarator] = STATE(1569), - [sym_pointer_declarator] = STATE(1569), - [sym_function_declarator] = STATE(1569), - [sym_array_declarator] = STATE(1569), - [sym_storage_class_specifier] = STATE(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(807), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [sym__field_declaration_list_item] = STATE(487), - [sym_macro_invocation] = STATE(487), - [sym_field_declaration] = STATE(487), - [sym_macro_type_specifier] = STATE(873), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(487), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), - [sym_identifier] = ACTIONS(1813), - [aux_sym_preproc_def_token1] = ACTIONS(1815), - [aux_sym_preproc_if_token1] = ACTIONS(1817), - [aux_sym_preproc_if_token2] = ACTIONS(1863), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1821), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1821), - [aux_sym_preproc_else_token1] = ACTIONS(1823), - [aux_sym_preproc_elif_token1] = ACTIONS(1825), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1827), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1827), - [sym_preproc_directive] = ACTIONS(1829), - [anon_sym_LPAREN2] = ACTIONS(1831), - [anon_sym_STAR] = ACTIONS(1833), - [anon_sym___extension__] = ACTIONS(53), - [anon_sym_extern] = ACTIONS(51), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym___read_mostly] = ACTIONS(37), - [anon_sym___must_hold] = ACTIONS(33), - [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___noreturn] = ACTIONS(37), - [anon_sym___cold] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1145), - [anon_sym___declspec] = ACTIONS(41), - [anon_sym___based] = ACTIONS(1835), - [anon_sym_signed] = ACTIONS(49), - [anon_sym_unsigned] = ACTIONS(49), - [anon_sym_long] = ACTIONS(49), - [anon_sym_short] = ACTIONS(49), - [anon_sym_static] = ACTIONS(51), - [anon_sym_auto] = ACTIONS(51), - [anon_sym_register] = ACTIONS(51), - [anon_sym_inline] = ACTIONS(51), - [anon_sym___inline] = ACTIONS(51), - [anon_sym___inline__] = ACTIONS(51), - [anon_sym___forceinline] = ACTIONS(51), - [anon_sym_thread_local] = ACTIONS(51), - [anon_sym___thread] = ACTIONS(51), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [sym_comment] = ACTIONS(3), + [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), }, [489] = { - [sym_type_qualifier] = STATE(1135), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(1220), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [sym_expression] = STATE(1205), - [sym__string] = STATE(758), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_type_descriptor] = STATE(2054), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [sym_macro_type_specifier] = STATE(873), - [aux_sym__type_definition_type_repeat1] = STATE(1135), - [aux_sym_sized_type_specifier_repeat1] = STATE(1246), - [sym_identifier] = ACTIONS(1795), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym___extension__] = ACTIONS(53), - [anon_sym_signed] = ACTIONS(1797), - [anon_sym_unsigned] = ACTIONS(1797), - [anon_sym_long] = ACTIONS(1797), - [anon_sym_short] = ACTIONS(1797), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(1799), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [490] = { - [sym_preproc_def] = STATE(474), - [sym_preproc_function_def] = STATE(474), - [sym_preproc_call] = STATE(474), - [sym_preproc_if_in_field_declaration_list] = STATE(474), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(474), - [sym_preproc_else_in_field_declaration_list] = STATE(2112), - [sym_preproc_elif_in_field_declaration_list] = STATE(2112), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(2112), - [sym__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1264), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(805), - [sym_ms_declspec_modifier] = STATE(805), - [sym_ms_based_modifier] = STATE(2174), - [sym__declarator] = STATE(1666), - [sym_parenthesized_declarator] = STATE(1569), - [sym_attributed_declarator] = STATE(1569), - [sym_pointer_declarator] = STATE(1569), - [sym_function_declarator] = STATE(1569), - [sym_array_declarator] = STATE(1569), - [sym_storage_class_specifier] = STATE(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(807), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [sym__field_declaration_list_item] = STATE(474), - [sym_macro_invocation] = STATE(474), - [sym_field_declaration] = STATE(474), - [sym_macro_type_specifier] = STATE(873), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(474), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), - [sym_identifier] = ACTIONS(1813), - [aux_sym_preproc_def_token1] = ACTIONS(1815), - [aux_sym_preproc_if_token1] = ACTIONS(1817), - [aux_sym_preproc_if_token2] = ACTIONS(1865), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1821), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1821), - [aux_sym_preproc_else_token1] = ACTIONS(1823), - [aux_sym_preproc_elif_token1] = ACTIONS(1825), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1827), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1827), - [sym_preproc_directive] = ACTIONS(1829), - [anon_sym_LPAREN2] = ACTIONS(1831), - [anon_sym_STAR] = ACTIONS(1833), - [anon_sym___extension__] = ACTIONS(53), - [anon_sym_extern] = ACTIONS(51), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym___read_mostly] = ACTIONS(37), - [anon_sym___must_hold] = ACTIONS(33), - [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___noreturn] = ACTIONS(37), - [anon_sym___cold] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1145), - [anon_sym___declspec] = ACTIONS(41), - [anon_sym___based] = ACTIONS(1835), - [anon_sym_signed] = ACTIONS(49), - [anon_sym_unsigned] = ACTIONS(49), - [anon_sym_long] = ACTIONS(49), - [anon_sym_short] = ACTIONS(49), - [anon_sym_static] = ACTIONS(51), - [anon_sym_auto] = ACTIONS(51), - [anon_sym_register] = ACTIONS(51), - [anon_sym_inline] = ACTIONS(51), - [anon_sym___inline] = ACTIONS(51), - [anon_sym___inline__] = ACTIONS(51), - [anon_sym___forceinline] = ACTIONS(51), - [anon_sym_thread_local] = ACTIONS(51), - [anon_sym___thread] = ACTIONS(51), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [sym_comment] = ACTIONS(3), + [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), }, [491] = { - [sym__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1343), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(805), - [sym_ms_declspec_modifier] = STATE(805), - [sym_ms_based_modifier] = STATE(2174), - [sym_macro_modifier] = STATE(1391), - [sym_ms_call_modifier] = STATE(1282), - [sym__declarator] = STATE(1630), - [sym__abstract_declarator] = STATE(1727), - [sym_parenthesized_declarator] = STATE(1569), - [sym_abstract_parenthesized_declarator] = STATE(1717), - [sym_attributed_declarator] = STATE(1569), - [sym_pointer_declarator] = STATE(1569), - [sym_abstract_pointer_declarator] = STATE(1717), - [sym_function_declarator] = STATE(1569), - [sym_abstract_function_declarator] = STATE(1717), - [sym_array_declarator] = STATE(1569), - [sym_abstract_array_declarator] = STATE(1717), - [sym_storage_class_specifier] = STATE(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(807), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [sym_variadic_parameter] = STATE(1832), - [sym_parameter_list] = STATE(1691), - [sym_parameter_declaration] = STATE(1832), - [sym_macro_type_specifier] = STATE(873), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), - [sym_identifier] = ACTIONS(1867), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1869), - [anon_sym_RPAREN] = ACTIONS(1871), - [anon_sym_LPAREN2] = ACTIONS(1873), - [anon_sym_STAR] = ACTIONS(1875), - [anon_sym___extension__] = ACTIONS(53), - [anon_sym_extern] = ACTIONS(51), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym___read_mostly] = ACTIONS(37), - [anon_sym___must_hold] = ACTIONS(33), - [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___noreturn] = ACTIONS(37), - [anon_sym___cold] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1145), - [anon_sym___declspec] = ACTIONS(41), - [anon_sym___based] = ACTIONS(1835), - [anon_sym___init] = ACTIONS(43), - [anon_sym___exit] = ACTIONS(43), - [anon_sym___cdecl] = ACTIONS(45), - [anon_sym___clrcall] = ACTIONS(45), - [anon_sym___stdcall] = ACTIONS(45), - [anon_sym___fastcall] = ACTIONS(45), - [anon_sym___thiscall] = ACTIONS(45), - [anon_sym___vectorcall] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(49), - [anon_sym_unsigned] = ACTIONS(49), - [anon_sym_long] = ACTIONS(49), - [anon_sym_short] = ACTIONS(49), - [anon_sym_LBRACK] = ACTIONS(1877), - [anon_sym_static] = ACTIONS(51), - [anon_sym_auto] = ACTIONS(51), - [anon_sym_register] = ACTIONS(51), - [anon_sym_inline] = ACTIONS(51), - [anon_sym___inline] = ACTIONS(51), - [anon_sym___inline__] = ACTIONS(51), - [anon_sym___forceinline] = ACTIONS(51), - [anon_sym_thread_local] = ACTIONS(51), - [anon_sym___thread] = ACTIONS(51), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [sym_comment] = ACTIONS(3), + [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), }, [492] = { - [sym_preproc_def] = STATE(492), - [sym_preproc_function_def] = STATE(492), - [sym_preproc_call] = STATE(492), - [sym_preproc_if_in_field_declaration_list] = STATE(492), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(492), - [sym__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1264), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(805), - [sym_ms_declspec_modifier] = STATE(805), - [sym_ms_based_modifier] = STATE(2174), - [sym__declarator] = STATE(1666), - [sym_parenthesized_declarator] = STATE(1569), - [sym_attributed_declarator] = STATE(1569), - [sym_pointer_declarator] = STATE(1569), - [sym_function_declarator] = STATE(1569), - [sym_array_declarator] = STATE(1569), - [sym_storage_class_specifier] = STATE(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(807), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [sym__field_declaration_list_item] = STATE(492), - [sym_macro_invocation] = STATE(492), - [sym_field_declaration] = STATE(492), - [sym_macro_type_specifier] = STATE(873), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(492), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), - [sym_identifier] = ACTIONS(1879), - [aux_sym_preproc_def_token1] = ACTIONS(1882), - [aux_sym_preproc_if_token1] = ACTIONS(1885), - [aux_sym_preproc_if_token2] = ACTIONS(1888), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1890), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1890), - [aux_sym_preproc_else_token1] = ACTIONS(1888), - [aux_sym_preproc_elif_token1] = ACTIONS(1888), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1888), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1888), - [sym_preproc_directive] = ACTIONS(1893), - [anon_sym_LPAREN2] = ACTIONS(1896), - [anon_sym_STAR] = ACTIONS(1899), - [anon_sym___extension__] = ACTIONS(1902), - [anon_sym_extern] = ACTIONS(1905), - [anon_sym___attribute__] = ACTIONS(1908), - [anon_sym___scanf] = ACTIONS(1911), - [anon_sym___printf] = ACTIONS(1911), - [anon_sym___read_mostly] = ACTIONS(1914), - [anon_sym___must_hold] = ACTIONS(1908), - [anon_sym___ro_after_init] = ACTIONS(1914), - [anon_sym___noreturn] = ACTIONS(1914), - [anon_sym___cold] = ACTIONS(1914), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1917), - [anon_sym___declspec] = ACTIONS(1920), - [anon_sym___based] = ACTIONS(1923), - [anon_sym_signed] = ACTIONS(1926), - [anon_sym_unsigned] = ACTIONS(1926), - [anon_sym_long] = ACTIONS(1926), - [anon_sym_short] = ACTIONS(1926), - [anon_sym_static] = ACTIONS(1905), - [anon_sym_auto] = ACTIONS(1905), - [anon_sym_register] = ACTIONS(1905), - [anon_sym_inline] = ACTIONS(1905), - [anon_sym___inline] = ACTIONS(1905), - [anon_sym___inline__] = ACTIONS(1905), - [anon_sym___forceinline] = ACTIONS(1905), - [anon_sym_thread_local] = ACTIONS(1905), - [anon_sym___thread] = ACTIONS(1905), - [anon_sym_const] = ACTIONS(1902), - [anon_sym_constexpr] = ACTIONS(1902), - [anon_sym_volatile] = ACTIONS(1902), - [anon_sym_restrict] = ACTIONS(1902), - [anon_sym___restrict__] = ACTIONS(1902), - [anon_sym__Atomic] = ACTIONS(1902), - [anon_sym__Noreturn] = ACTIONS(1902), - [anon_sym_noreturn] = ACTIONS(1902), - [anon_sym_alignas] = ACTIONS(1929), - [anon_sym__Alignas] = ACTIONS(1929), - [sym_primitive_type] = ACTIONS(1932), - [anon_sym_enum] = ACTIONS(1935), - [anon_sym_struct] = ACTIONS(1938), - [anon_sym_union] = ACTIONS(1941), - [sym_comment] = ACTIONS(3), + [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), + [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), + [sym_comment] = ACTIONS(5), }, [493] = { - [sym_expression] = STATE(771), - [sym__string] = STATE(758), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(997), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(997), - [sym_call_expression] = STATE(997), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(997), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(997), - [sym_initializer_list] = STATE(760), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(940), - [sym_null] = STATE(758), - [sym_identifier] = ACTIONS(1437), - [anon_sym_COMMA] = ACTIONS(1431), - [aux_sym_preproc_if_token2] = ACTIONS(1431), - [aux_sym_preproc_else_token1] = ACTIONS(1431), - [aux_sym_preproc_elif_token1] = ACTIONS(1437), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1431), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1431), - [anon_sym_LPAREN2] = ACTIONS(1431), - [anon_sym_BANG] = ACTIONS(1944), - [anon_sym_TILDE] = ACTIONS(1946), - [anon_sym_DASH] = ACTIONS(1437), - [anon_sym_PLUS] = ACTIONS(1437), - [anon_sym_STAR] = ACTIONS(1431), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1431), - [anon_sym_PIPE_PIPE] = ACTIONS(1431), - [anon_sym_AMP_AMP] = ACTIONS(1431), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_CARET] = ACTIONS(1431), - [anon_sym_AMP] = ACTIONS(1437), - [anon_sym_EQ_EQ] = ACTIONS(1431), - [anon_sym_BANG_EQ] = ACTIONS(1431), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_GT_EQ] = ACTIONS(1431), - [anon_sym_LT_EQ] = ACTIONS(1431), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_LT_LT] = ACTIONS(1431), - [anon_sym_GT_GT] = ACTIONS(1431), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_LBRACK] = ACTIONS(1431), - [anon_sym_QMARK] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1431), - [anon_sym_PLUS_PLUS] = ACTIONS(1431), - [anon_sym_sizeof] = ACTIONS(1948), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(1437), - [anon_sym_DASH_GT] = ACTIONS(1431), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [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), + [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), + [sym_comment] = ACTIONS(5), }, [494] = { - [sym_preproc_def] = STATE(495), - [sym_preproc_function_def] = STATE(495), - [sym_preproc_call] = STATE(495), - [sym_preproc_if_in_field_declaration_list] = STATE(495), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(495), - [sym__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1268), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(805), - [sym_ms_declspec_modifier] = STATE(805), - [sym_ms_based_modifier] = STATE(2174), - [sym__declarator] = STATE(1668), - [sym_parenthesized_declarator] = STATE(1569), - [sym_attributed_declarator] = STATE(1569), - [sym_pointer_declarator] = STATE(1569), - [sym_function_declarator] = STATE(1569), - [sym_array_declarator] = STATE(1569), - [sym_storage_class_specifier] = STATE(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(807), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [sym__field_declaration_list_item] = STATE(495), - [sym_macro_invocation] = STATE(495), - [sym_field_declaration] = STATE(495), - [sym_macro_type_specifier] = STATE(873), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(495), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), - [sym_identifier] = ACTIONS(1813), - [aux_sym_preproc_def_token1] = ACTIONS(1950), - [aux_sym_preproc_if_token1] = ACTIONS(1952), - [aux_sym_preproc_if_token2] = ACTIONS(1954), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1956), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1956), - [sym_preproc_directive] = ACTIONS(1958), - [anon_sym_LPAREN2] = ACTIONS(1831), - [anon_sym_STAR] = ACTIONS(1833), - [anon_sym___extension__] = ACTIONS(53), - [anon_sym_extern] = ACTIONS(51), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym___read_mostly] = ACTIONS(37), - [anon_sym___must_hold] = ACTIONS(33), - [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___noreturn] = ACTIONS(37), - [anon_sym___cold] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1145), - [anon_sym___declspec] = ACTIONS(41), - [anon_sym___based] = ACTIONS(1835), - [anon_sym_signed] = ACTIONS(49), - [anon_sym_unsigned] = ACTIONS(49), - [anon_sym_long] = ACTIONS(49), - [anon_sym_short] = ACTIONS(49), - [anon_sym_static] = ACTIONS(51), - [anon_sym_auto] = ACTIONS(51), - [anon_sym_register] = ACTIONS(51), - [anon_sym_inline] = ACTIONS(51), - [anon_sym___inline] = ACTIONS(51), - [anon_sym___inline__] = ACTIONS(51), - [anon_sym___forceinline] = ACTIONS(51), - [anon_sym_thread_local] = ACTIONS(51), - [anon_sym___thread] = ACTIONS(51), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1350), + [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), + [sym_comment] = ACTIONS(5), }, [495] = { - [sym_preproc_def] = STATE(495), - [sym_preproc_function_def] = STATE(495), - [sym_preproc_call] = STATE(495), - [sym_preproc_if_in_field_declaration_list] = STATE(495), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(495), - [sym__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1268), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(805), - [sym_ms_declspec_modifier] = STATE(805), - [sym_ms_based_modifier] = STATE(2174), - [sym__declarator] = STATE(1668), - [sym_parenthesized_declarator] = STATE(1569), - [sym_attributed_declarator] = STATE(1569), - [sym_pointer_declarator] = STATE(1569), - [sym_function_declarator] = STATE(1569), - [sym_array_declarator] = STATE(1569), - [sym_storage_class_specifier] = STATE(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(807), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [sym__field_declaration_list_item] = STATE(495), - [sym_macro_invocation] = STATE(495), - [sym_field_declaration] = STATE(495), - [sym_macro_type_specifier] = STATE(873), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(495), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), - [sym_identifier] = ACTIONS(1879), - [aux_sym_preproc_def_token1] = ACTIONS(1960), - [aux_sym_preproc_if_token1] = ACTIONS(1963), - [aux_sym_preproc_if_token2] = ACTIONS(1888), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1966), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1966), - [sym_preproc_directive] = ACTIONS(1969), - [anon_sym_LPAREN2] = ACTIONS(1896), - [anon_sym_STAR] = ACTIONS(1899), - [anon_sym___extension__] = ACTIONS(1902), - [anon_sym_extern] = ACTIONS(1905), - [anon_sym___attribute__] = ACTIONS(1908), - [anon_sym___scanf] = ACTIONS(1911), - [anon_sym___printf] = ACTIONS(1911), - [anon_sym___read_mostly] = ACTIONS(1914), - [anon_sym___must_hold] = ACTIONS(1908), - [anon_sym___ro_after_init] = ACTIONS(1914), - [anon_sym___noreturn] = ACTIONS(1914), - [anon_sym___cold] = ACTIONS(1914), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1917), - [anon_sym___declspec] = ACTIONS(1920), - [anon_sym___based] = ACTIONS(1923), - [anon_sym_signed] = ACTIONS(1926), - [anon_sym_unsigned] = ACTIONS(1926), - [anon_sym_long] = ACTIONS(1926), - [anon_sym_short] = ACTIONS(1926), - [anon_sym_static] = ACTIONS(1905), - [anon_sym_auto] = ACTIONS(1905), - [anon_sym_register] = ACTIONS(1905), - [anon_sym_inline] = ACTIONS(1905), - [anon_sym___inline] = ACTIONS(1905), - [anon_sym___inline__] = ACTIONS(1905), - [anon_sym___forceinline] = ACTIONS(1905), - [anon_sym_thread_local] = ACTIONS(1905), - [anon_sym___thread] = ACTIONS(1905), - [anon_sym_const] = ACTIONS(1902), - [anon_sym_constexpr] = ACTIONS(1902), - [anon_sym_volatile] = ACTIONS(1902), - [anon_sym_restrict] = ACTIONS(1902), - [anon_sym___restrict__] = ACTIONS(1902), - [anon_sym__Atomic] = ACTIONS(1902), - [anon_sym__Noreturn] = ACTIONS(1902), - [anon_sym_noreturn] = ACTIONS(1902), - [anon_sym_alignas] = ACTIONS(1929), - [anon_sym__Alignas] = ACTIONS(1929), - [sym_primitive_type] = ACTIONS(1932), - [anon_sym_enum] = ACTIONS(1935), - [anon_sym_struct] = ACTIONS(1938), - [anon_sym_union] = ACTIONS(1941), - [sym_comment] = ACTIONS(3), + [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), }, [496] = { - [sym_preproc_def] = STATE(496), - [sym_preproc_function_def] = STATE(496), - [sym_preproc_call] = STATE(496), - [sym_preproc_if_in_field_declaration_list] = STATE(496), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(496), - [sym__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1261), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(805), - [sym_ms_declspec_modifier] = STATE(805), - [sym_ms_based_modifier] = STATE(2174), - [sym__declarator] = STATE(1660), - [sym_parenthesized_declarator] = STATE(1569), - [sym_attributed_declarator] = STATE(1569), - [sym_pointer_declarator] = STATE(1569), - [sym_function_declarator] = STATE(1569), - [sym_array_declarator] = STATE(1569), - [sym_storage_class_specifier] = STATE(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(807), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [sym__field_declaration_list_item] = STATE(496), - [sym_macro_invocation] = STATE(496), - [sym_field_declaration] = STATE(496), - [sym_macro_type_specifier] = STATE(873), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(496), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), - [sym_identifier] = ACTIONS(1879), - [aux_sym_preproc_def_token1] = ACTIONS(1972), - [aux_sym_preproc_if_token1] = ACTIONS(1975), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1978), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1978), - [sym_preproc_directive] = ACTIONS(1981), - [anon_sym_LPAREN2] = ACTIONS(1896), - [anon_sym_STAR] = ACTIONS(1899), - [anon_sym___extension__] = ACTIONS(1902), - [anon_sym_extern] = ACTIONS(1905), - [anon_sym___attribute__] = ACTIONS(1908), - [anon_sym___scanf] = ACTIONS(1911), - [anon_sym___printf] = ACTIONS(1911), - [anon_sym___read_mostly] = ACTIONS(1914), - [anon_sym___must_hold] = ACTIONS(1908), - [anon_sym___ro_after_init] = ACTIONS(1914), - [anon_sym___noreturn] = ACTIONS(1914), - [anon_sym___cold] = ACTIONS(1914), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1917), - [anon_sym___declspec] = ACTIONS(1920), - [anon_sym___based] = ACTIONS(1923), - [anon_sym_RBRACE] = ACTIONS(1984), - [anon_sym_signed] = ACTIONS(1926), - [anon_sym_unsigned] = ACTIONS(1926), - [anon_sym_long] = ACTIONS(1926), - [anon_sym_short] = ACTIONS(1926), - [anon_sym_static] = ACTIONS(1905), - [anon_sym_auto] = ACTIONS(1905), - [anon_sym_register] = ACTIONS(1905), - [anon_sym_inline] = ACTIONS(1905), - [anon_sym___inline] = ACTIONS(1905), - [anon_sym___inline__] = ACTIONS(1905), - [anon_sym___forceinline] = ACTIONS(1905), - [anon_sym_thread_local] = ACTIONS(1905), - [anon_sym___thread] = ACTIONS(1905), - [anon_sym_const] = ACTIONS(1902), - [anon_sym_constexpr] = ACTIONS(1902), - [anon_sym_volatile] = ACTIONS(1902), - [anon_sym_restrict] = ACTIONS(1902), - [anon_sym___restrict__] = ACTIONS(1902), - [anon_sym__Atomic] = ACTIONS(1902), - [anon_sym__Noreturn] = ACTIONS(1902), - [anon_sym_noreturn] = ACTIONS(1902), - [anon_sym_alignas] = ACTIONS(1929), - [anon_sym__Alignas] = ACTIONS(1929), - [sym_primitive_type] = ACTIONS(1932), - [anon_sym_enum] = ACTIONS(1935), - [anon_sym_struct] = ACTIONS(1938), - [anon_sym_union] = ACTIONS(1941), - [sym_comment] = ACTIONS(3), + [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), + [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), + [sym_comment] = ACTIONS(5), }, [497] = { - [sym_preproc_def] = STATE(494), - [sym_preproc_function_def] = STATE(494), - [sym_preproc_call] = STATE(494), - [sym_preproc_if_in_field_declaration_list] = STATE(494), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(494), - [sym__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1268), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(805), - [sym_ms_declspec_modifier] = STATE(805), - [sym_ms_based_modifier] = STATE(2174), - [sym__declarator] = STATE(1668), - [sym_parenthesized_declarator] = STATE(1569), - [sym_attributed_declarator] = STATE(1569), - [sym_pointer_declarator] = STATE(1569), - [sym_function_declarator] = STATE(1569), - [sym_array_declarator] = STATE(1569), - [sym_storage_class_specifier] = STATE(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(807), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [sym__field_declaration_list_item] = STATE(494), - [sym_macro_invocation] = STATE(494), - [sym_field_declaration] = STATE(494), - [sym_macro_type_specifier] = STATE(873), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(494), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), - [sym_identifier] = ACTIONS(1813), - [aux_sym_preproc_def_token1] = ACTIONS(1950), - [aux_sym_preproc_if_token1] = ACTIONS(1952), - [aux_sym_preproc_if_token2] = ACTIONS(1986), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1956), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1956), - [sym_preproc_directive] = ACTIONS(1958), - [anon_sym_LPAREN2] = ACTIONS(1831), - [anon_sym_STAR] = ACTIONS(1833), - [anon_sym___extension__] = ACTIONS(53), - [anon_sym_extern] = ACTIONS(51), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym___read_mostly] = ACTIONS(37), - [anon_sym___must_hold] = ACTIONS(33), - [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___noreturn] = ACTIONS(37), - [anon_sym___cold] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1145), - [anon_sym___declspec] = ACTIONS(41), - [anon_sym___based] = ACTIONS(1835), - [anon_sym_signed] = ACTIONS(49), - [anon_sym_unsigned] = ACTIONS(49), - [anon_sym_long] = ACTIONS(49), - [anon_sym_short] = ACTIONS(49), - [anon_sym_static] = ACTIONS(51), - [anon_sym_auto] = ACTIONS(51), - [anon_sym_register] = ACTIONS(51), - [anon_sym_inline] = ACTIONS(51), - [anon_sym___inline] = ACTIONS(51), - [anon_sym___inline__] = ACTIONS(51), - [anon_sym___forceinline] = ACTIONS(51), - [anon_sym_thread_local] = ACTIONS(51), - [anon_sym___thread] = ACTIONS(51), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [sym_comment] = ACTIONS(3), + [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), + [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), + [sym_comment] = ACTIONS(5), }, [498] = { - [sym_preproc_def] = STATE(496), - [sym_preproc_function_def] = STATE(496), - [sym_preproc_call] = STATE(496), - [sym_preproc_if_in_field_declaration_list] = STATE(496), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(496), - [sym__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1261), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(805), - [sym_ms_declspec_modifier] = STATE(805), - [sym_ms_based_modifier] = STATE(2174), - [sym__declarator] = STATE(1660), - [sym_parenthesized_declarator] = STATE(1569), - [sym_attributed_declarator] = STATE(1569), - [sym_pointer_declarator] = STATE(1569), - [sym_function_declarator] = STATE(1569), - [sym_array_declarator] = STATE(1569), - [sym_storage_class_specifier] = STATE(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(807), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [sym__field_declaration_list_item] = STATE(496), - [sym_macro_invocation] = STATE(496), - [sym_field_declaration] = STATE(496), - [sym_macro_type_specifier] = STATE(873), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(496), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), - [sym_identifier] = ACTIONS(1813), - [aux_sym_preproc_def_token1] = ACTIONS(1988), - [aux_sym_preproc_if_token1] = ACTIONS(1990), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1992), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1992), - [sym_preproc_directive] = ACTIONS(1994), - [anon_sym_LPAREN2] = ACTIONS(1831), - [anon_sym_STAR] = ACTIONS(1833), - [anon_sym___extension__] = ACTIONS(53), - [anon_sym_extern] = ACTIONS(51), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym___read_mostly] = ACTIONS(37), - [anon_sym___must_hold] = ACTIONS(33), - [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___noreturn] = ACTIONS(37), - [anon_sym___cold] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1145), - [anon_sym___declspec] = ACTIONS(41), - [anon_sym___based] = ACTIONS(1835), - [anon_sym_RBRACE] = ACTIONS(1996), - [anon_sym_signed] = ACTIONS(49), - [anon_sym_unsigned] = ACTIONS(49), - [anon_sym_long] = ACTIONS(49), - [anon_sym_short] = ACTIONS(49), - [anon_sym_static] = ACTIONS(51), - [anon_sym_auto] = ACTIONS(51), - [anon_sym_register] = ACTIONS(51), - [anon_sym_inline] = ACTIONS(51), - [anon_sym___inline] = ACTIONS(51), - [anon_sym___inline__] = ACTIONS(51), - [anon_sym___forceinline] = ACTIONS(51), - [anon_sym_thread_local] = ACTIONS(51), - [anon_sym___thread] = ACTIONS(51), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [499] = { - [sym_preproc_def] = STATE(498), - [sym_preproc_function_def] = STATE(498), - [sym_preproc_call] = STATE(498), - [sym_preproc_if_in_field_declaration_list] = STATE(498), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(498), - [sym__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1261), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(805), - [sym_ms_declspec_modifier] = STATE(805), - [sym_ms_based_modifier] = STATE(2174), - [sym__declarator] = STATE(1660), - [sym_parenthesized_declarator] = STATE(1569), - [sym_attributed_declarator] = STATE(1569), - [sym_pointer_declarator] = STATE(1569), - [sym_function_declarator] = STATE(1569), - [sym_array_declarator] = STATE(1569), - [sym_storage_class_specifier] = STATE(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(807), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [sym__field_declaration_list_item] = STATE(498), - [sym_macro_invocation] = STATE(498), - [sym_field_declaration] = STATE(498), - [sym_macro_type_specifier] = STATE(873), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(498), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), - [sym_identifier] = ACTIONS(1813), - [aux_sym_preproc_def_token1] = ACTIONS(1988), - [aux_sym_preproc_if_token1] = ACTIONS(1990), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1992), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1992), - [sym_preproc_directive] = ACTIONS(1994), - [anon_sym_LPAREN2] = ACTIONS(1831), - [anon_sym_STAR] = ACTIONS(1833), - [anon_sym___extension__] = ACTIONS(53), - [anon_sym_extern] = ACTIONS(51), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym___read_mostly] = ACTIONS(37), - [anon_sym___must_hold] = ACTIONS(33), - [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___noreturn] = ACTIONS(37), - [anon_sym___cold] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1145), - [anon_sym___declspec] = ACTIONS(41), - [anon_sym___based] = ACTIONS(1835), - [anon_sym_RBRACE] = ACTIONS(1998), - [anon_sym_signed] = ACTIONS(49), - [anon_sym_unsigned] = ACTIONS(49), - [anon_sym_long] = ACTIONS(49), - [anon_sym_short] = ACTIONS(49), - [anon_sym_static] = ACTIONS(51), - [anon_sym_auto] = ACTIONS(51), - [anon_sym_register] = ACTIONS(51), - [anon_sym_inline] = ACTIONS(51), - [anon_sym___inline] = ACTIONS(51), - [anon_sym___inline__] = ACTIONS(51), - [anon_sym___forceinline] = ACTIONS(51), - [anon_sym_thread_local] = ACTIONS(51), - [anon_sym___thread] = ACTIONS(51), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [sym_comment] = ACTIONS(3), + [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), }, [500] = { - [sym_expression] = STATE(1057), - [sym__string] = STATE(758), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(1066), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(1066), - [sym_call_expression] = STATE(1066), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(1066), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(1066), - [sym_initializer_list] = STATE(760), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [sym_identifier] = ACTIONS(2000), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1431), - [anon_sym_LPAREN2] = ACTIONS(1431), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_TILDE] = ACTIONS(2004), - [anon_sym_DASH] = ACTIONS(1437), - [anon_sym_PLUS] = ACTIONS(1437), - [anon_sym_STAR] = ACTIONS(1431), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1431), - [anon_sym_PIPE_PIPE] = ACTIONS(1431), - [anon_sym_AMP_AMP] = ACTIONS(1431), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_CARET] = ACTIONS(1431), - [anon_sym_AMP] = ACTIONS(1437), - [anon_sym_EQ_EQ] = ACTIONS(1431), - [anon_sym_BANG_EQ] = ACTIONS(1431), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_GT_EQ] = ACTIONS(1431), - [anon_sym_LT_EQ] = ACTIONS(1431), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_LT_LT] = ACTIONS(1431), - [anon_sym_GT_GT] = ACTIONS(1431), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_LBRACK] = ACTIONS(1431), - [anon_sym_RBRACK] = ACTIONS(1431), - [anon_sym_QMARK] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1431), - [anon_sym_PLUS_PLUS] = ACTIONS(1431), - [anon_sym_sizeof] = ACTIONS(2006), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(1437), - [anon_sym_DASH_GT] = ACTIONS(1431), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [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__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1343), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(805), - [sym_ms_declspec_modifier] = STATE(805), - [sym_macro_modifier] = STATE(1587), - [sym_ms_call_modifier] = STATE(1500), - [sym__abstract_declarator] = STATE(1727), - [sym_abstract_parenthesized_declarator] = STATE(1717), - [sym_abstract_pointer_declarator] = STATE(1717), - [sym_abstract_function_declarator] = STATE(1717), - [sym_abstract_array_declarator] = STATE(1717), - [sym_storage_class_specifier] = STATE(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(807), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [sym_variadic_parameter] = STATE(1832), - [sym_parameter_list] = STATE(1691), - [sym_parameter_declaration] = STATE(1832), - [sym_macro_type_specifier] = STATE(873), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), - [sym_identifier] = ACTIONS(2008), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1869), - [anon_sym_RPAREN] = ACTIONS(1871), - [anon_sym_LPAREN2] = ACTIONS(2010), - [anon_sym_STAR] = ACTIONS(2012), - [anon_sym___extension__] = ACTIONS(53), - [anon_sym_extern] = ACTIONS(51), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym___read_mostly] = ACTIONS(37), - [anon_sym___must_hold] = ACTIONS(33), - [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___noreturn] = ACTIONS(37), - [anon_sym___cold] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1145), - [anon_sym___declspec] = ACTIONS(41), - [anon_sym___init] = ACTIONS(43), - [anon_sym___exit] = ACTIONS(43), - [anon_sym___cdecl] = ACTIONS(45), - [anon_sym___clrcall] = ACTIONS(45), - [anon_sym___stdcall] = ACTIONS(45), - [anon_sym___fastcall] = ACTIONS(45), - [anon_sym___thiscall] = ACTIONS(45), - [anon_sym___vectorcall] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(49), - [anon_sym_unsigned] = ACTIONS(49), - [anon_sym_long] = ACTIONS(49), - [anon_sym_short] = ACTIONS(49), - [anon_sym_LBRACK] = ACTIONS(1877), - [anon_sym_static] = ACTIONS(51), - [anon_sym_auto] = ACTIONS(51), - [anon_sym_register] = ACTIONS(51), - [anon_sym_inline] = ACTIONS(51), - [anon_sym___inline] = ACTIONS(51), - [anon_sym___inline__] = ACTIONS(51), - [anon_sym___forceinline] = ACTIONS(51), - [anon_sym_thread_local] = ACTIONS(51), - [anon_sym___thread] = ACTIONS(51), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [sym_comment] = ACTIONS(3), + [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_type_qualifier] = STATE(511), - [sym_alignas_qualifier] = STATE(965), - [sym_expression] = STATE(1206), - [sym__string] = STATE(758), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(1066), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(1066), - [sym_call_expression] = STATE(1066), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(1066), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(1066), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [aux_sym_array_declarator_repeat1] = STATE(511), - [sym_identifier] = ACTIONS(2000), - [anon_sym_LPAREN2] = ACTIONS(2014), - [anon_sym_BANG] = ACTIONS(2004), - [anon_sym_TILDE] = ACTIONS(2004), - [anon_sym_DASH] = ACTIONS(2002), - [anon_sym_PLUS] = ACTIONS(2002), - [anon_sym_STAR] = ACTIONS(2016), - [anon_sym_AMP] = ACTIONS(2018), - [anon_sym___extension__] = ACTIONS(2020), - [anon_sym_static] = ACTIONS(2022), - [anon_sym_RBRACK] = ACTIONS(2024), - [anon_sym_const] = ACTIONS(2020), - [anon_sym_constexpr] = ACTIONS(2020), - [anon_sym_volatile] = ACTIONS(2020), - [anon_sym_restrict] = ACTIONS(2020), - [anon_sym___restrict__] = ACTIONS(2020), - [anon_sym__Atomic] = ACTIONS(2020), - [anon_sym__Noreturn] = ACTIONS(2020), - [anon_sym_noreturn] = ACTIONS(2020), - [anon_sym_alignas] = ACTIONS(2026), - [anon_sym__Alignas] = ACTIONS(2026), - [anon_sym_DASH_DASH] = ACTIONS(2028), - [anon_sym_PLUS_PLUS] = ACTIONS(2028), - [anon_sym_sizeof] = ACTIONS(2006), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [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_type_qualifier] = STATE(505), - [sym_alignas_qualifier] = STATE(965), - [sym_expression] = STATE(1219), - [sym__string] = STATE(758), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(1066), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(1066), - [sym_call_expression] = STATE(1066), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(1066), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(1066), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [aux_sym_array_declarator_repeat1] = STATE(505), - [sym_identifier] = ACTIONS(2000), - [anon_sym_LPAREN2] = ACTIONS(2014), - [anon_sym_BANG] = ACTIONS(2004), - [anon_sym_TILDE] = ACTIONS(2004), - [anon_sym_DASH] = ACTIONS(2002), - [anon_sym_PLUS] = ACTIONS(2002), - [anon_sym_STAR] = ACTIONS(2030), - [anon_sym_AMP] = ACTIONS(2018), - [anon_sym___extension__] = ACTIONS(2020), - [anon_sym_static] = ACTIONS(2032), - [anon_sym_RBRACK] = ACTIONS(2034), - [anon_sym_const] = ACTIONS(2020), - [anon_sym_constexpr] = ACTIONS(2020), - [anon_sym_volatile] = ACTIONS(2020), - [anon_sym_restrict] = ACTIONS(2020), - [anon_sym___restrict__] = ACTIONS(2020), - [anon_sym__Atomic] = ACTIONS(2020), - [anon_sym__Noreturn] = ACTIONS(2020), - [anon_sym_noreturn] = ACTIONS(2020), - [anon_sym_alignas] = ACTIONS(2026), - [anon_sym__Alignas] = ACTIONS(2026), - [anon_sym_DASH_DASH] = ACTIONS(2028), - [anon_sym_PLUS_PLUS] = ACTIONS(2028), - [anon_sym_sizeof] = ACTIONS(2006), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [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_type_qualifier] = STATE(906), - [sym_alignas_qualifier] = STATE(965), - [sym_expression] = STATE(1209), - [sym__string] = STATE(758), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(1066), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(1066), - [sym_call_expression] = STATE(1066), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(1066), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(1066), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [aux_sym_array_declarator_repeat1] = STATE(906), - [sym_identifier] = ACTIONS(2000), - [anon_sym_LPAREN2] = ACTIONS(2014), - [anon_sym_BANG] = ACTIONS(2004), - [anon_sym_TILDE] = ACTIONS(2004), - [anon_sym_DASH] = ACTIONS(2002), - [anon_sym_PLUS] = ACTIONS(2002), - [anon_sym_STAR] = ACTIONS(2036), - [anon_sym_AMP] = ACTIONS(2018), - [anon_sym___extension__] = ACTIONS(2020), - [anon_sym_static] = ACTIONS(2038), - [anon_sym_RBRACK] = ACTIONS(2040), - [anon_sym_const] = ACTIONS(2020), - [anon_sym_constexpr] = ACTIONS(2020), - [anon_sym_volatile] = ACTIONS(2020), - [anon_sym_restrict] = ACTIONS(2020), - [anon_sym___restrict__] = ACTIONS(2020), - [anon_sym__Atomic] = ACTIONS(2020), - [anon_sym__Noreturn] = ACTIONS(2020), - [anon_sym_noreturn] = ACTIONS(2020), - [anon_sym_alignas] = ACTIONS(2026), - [anon_sym__Alignas] = ACTIONS(2026), - [anon_sym_DASH_DASH] = ACTIONS(2028), - [anon_sym_PLUS_PLUS] = ACTIONS(2028), - [anon_sym_sizeof] = ACTIONS(2006), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [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(906), - [sym_alignas_qualifier] = STATE(965), - [sym_expression] = STATE(1202), - [sym__string] = STATE(758), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(1066), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(1066), - [sym_call_expression] = STATE(1066), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(1066), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(1066), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [aux_sym_array_declarator_repeat1] = STATE(906), - [sym_identifier] = ACTIONS(2000), - [anon_sym_LPAREN2] = ACTIONS(2014), - [anon_sym_BANG] = ACTIONS(2004), - [anon_sym_TILDE] = ACTIONS(2004), - [anon_sym_DASH] = ACTIONS(2002), - [anon_sym_PLUS] = ACTIONS(2002), - [anon_sym_STAR] = ACTIONS(2042), - [anon_sym_AMP] = ACTIONS(2018), - [anon_sym___extension__] = ACTIONS(2020), - [anon_sym_static] = ACTIONS(2038), - [anon_sym_RBRACK] = ACTIONS(2044), - [anon_sym_const] = ACTIONS(2020), - [anon_sym_constexpr] = ACTIONS(2020), - [anon_sym_volatile] = ACTIONS(2020), - [anon_sym_restrict] = ACTIONS(2020), - [anon_sym___restrict__] = ACTIONS(2020), - [anon_sym__Atomic] = ACTIONS(2020), - [anon_sym__Noreturn] = ACTIONS(2020), - [anon_sym_noreturn] = ACTIONS(2020), - [anon_sym_alignas] = ACTIONS(2026), - [anon_sym__Alignas] = ACTIONS(2026), - [anon_sym_DASH_DASH] = ACTIONS(2028), - [anon_sym_PLUS_PLUS] = ACTIONS(2028), - [anon_sym_sizeof] = ACTIONS(2006), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [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), + [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), + [sym_comment] = ACTIONS(5), }, [506] = { - [sym_type_qualifier] = STATE(906), - [sym_alignas_qualifier] = STATE(965), - [sym_expression] = STATE(1215), - [sym__string] = STATE(758), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(1066), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(1066), - [sym_call_expression] = STATE(1066), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(1066), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(1066), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [aux_sym_array_declarator_repeat1] = STATE(906), - [sym_identifier] = ACTIONS(2000), - [anon_sym_LPAREN2] = ACTIONS(2014), - [anon_sym_BANG] = ACTIONS(2004), - [anon_sym_TILDE] = ACTIONS(2004), - [anon_sym_DASH] = ACTIONS(2002), - [anon_sym_PLUS] = ACTIONS(2002), - [anon_sym_STAR] = ACTIONS(2046), - [anon_sym_AMP] = ACTIONS(2018), - [anon_sym___extension__] = ACTIONS(2020), - [anon_sym_static] = ACTIONS(2038), - [anon_sym_RBRACK] = ACTIONS(2048), - [anon_sym_const] = ACTIONS(2020), - [anon_sym_constexpr] = ACTIONS(2020), - [anon_sym_volatile] = ACTIONS(2020), - [anon_sym_restrict] = ACTIONS(2020), - [anon_sym___restrict__] = ACTIONS(2020), - [anon_sym__Atomic] = ACTIONS(2020), - [anon_sym__Noreturn] = ACTIONS(2020), - [anon_sym_noreturn] = ACTIONS(2020), - [anon_sym_alignas] = ACTIONS(2026), - [anon_sym__Alignas] = ACTIONS(2026), - [anon_sym_DASH_DASH] = ACTIONS(2028), - [anon_sym_PLUS_PLUS] = ACTIONS(2028), - [anon_sym_sizeof] = ACTIONS(2006), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [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_type_qualifier] = STATE(504), - [sym_alignas_qualifier] = STATE(965), - [sym_expression] = STATE(1204), - [sym__string] = STATE(758), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(1066), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(1066), - [sym_call_expression] = STATE(1066), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(1066), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(1066), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [aux_sym_array_declarator_repeat1] = STATE(504), - [sym_identifier] = ACTIONS(2000), - [anon_sym_LPAREN2] = ACTIONS(2014), - [anon_sym_BANG] = ACTIONS(2004), - [anon_sym_TILDE] = ACTIONS(2004), - [anon_sym_DASH] = ACTIONS(2002), - [anon_sym_PLUS] = ACTIONS(2002), - [anon_sym_STAR] = ACTIONS(2050), - [anon_sym_AMP] = ACTIONS(2018), - [anon_sym___extension__] = ACTIONS(2020), - [anon_sym_static] = ACTIONS(2052), - [anon_sym_RBRACK] = ACTIONS(2054), - [anon_sym_const] = ACTIONS(2020), - [anon_sym_constexpr] = ACTIONS(2020), - [anon_sym_volatile] = ACTIONS(2020), - [anon_sym_restrict] = ACTIONS(2020), - [anon_sym___restrict__] = ACTIONS(2020), - [anon_sym__Atomic] = ACTIONS(2020), - [anon_sym__Noreturn] = ACTIONS(2020), - [anon_sym_noreturn] = ACTIONS(2020), - [anon_sym_alignas] = ACTIONS(2026), - [anon_sym__Alignas] = ACTIONS(2026), - [anon_sym_DASH_DASH] = ACTIONS(2028), - [anon_sym_PLUS_PLUS] = ACTIONS(2028), - [anon_sym_sizeof] = ACTIONS(2006), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [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_type_qualifier] = STATE(510), - [sym_alignas_qualifier] = STATE(965), - [sym_expression] = STATE(1198), - [sym__string] = STATE(758), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(1066), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(1066), - [sym_call_expression] = STATE(1066), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(1066), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(1066), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [aux_sym_array_declarator_repeat1] = STATE(510), - [sym_identifier] = ACTIONS(2000), - [anon_sym_LPAREN2] = ACTIONS(2014), - [anon_sym_BANG] = ACTIONS(2004), - [anon_sym_TILDE] = ACTIONS(2004), - [anon_sym_DASH] = ACTIONS(2002), - [anon_sym_PLUS] = ACTIONS(2002), - [anon_sym_STAR] = ACTIONS(2056), - [anon_sym_AMP] = ACTIONS(2018), - [anon_sym___extension__] = ACTIONS(2020), - [anon_sym_static] = ACTIONS(2058), - [anon_sym_RBRACK] = ACTIONS(2060), - [anon_sym_const] = ACTIONS(2020), - [anon_sym_constexpr] = ACTIONS(2020), - [anon_sym_volatile] = ACTIONS(2020), - [anon_sym_restrict] = ACTIONS(2020), - [anon_sym___restrict__] = ACTIONS(2020), - [anon_sym__Atomic] = ACTIONS(2020), - [anon_sym__Noreturn] = ACTIONS(2020), - [anon_sym_noreturn] = ACTIONS(2020), - [anon_sym_alignas] = ACTIONS(2026), - [anon_sym__Alignas] = ACTIONS(2026), - [anon_sym_DASH_DASH] = ACTIONS(2028), - [anon_sym_PLUS_PLUS] = ACTIONS(2028), - [anon_sym_sizeof] = ACTIONS(2006), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [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), }, [509] = { - [sym_type_qualifier] = STATE(506), - [sym_alignas_qualifier] = STATE(965), - [sym_expression] = STATE(1216), - [sym__string] = STATE(758), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(1066), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(1066), - [sym_call_expression] = STATE(1066), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(1066), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(1066), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [aux_sym_array_declarator_repeat1] = STATE(506), - [sym_identifier] = ACTIONS(2000), - [anon_sym_LPAREN2] = ACTIONS(2014), - [anon_sym_BANG] = ACTIONS(2004), - [anon_sym_TILDE] = ACTIONS(2004), - [anon_sym_DASH] = ACTIONS(2002), - [anon_sym_PLUS] = ACTIONS(2002), - [anon_sym_STAR] = ACTIONS(2062), - [anon_sym_AMP] = ACTIONS(2018), - [anon_sym___extension__] = ACTIONS(2020), - [anon_sym_static] = ACTIONS(2064), - [anon_sym_RBRACK] = ACTIONS(2066), - [anon_sym_const] = ACTIONS(2020), - [anon_sym_constexpr] = ACTIONS(2020), - [anon_sym_volatile] = ACTIONS(2020), - [anon_sym_restrict] = ACTIONS(2020), - [anon_sym___restrict__] = ACTIONS(2020), - [anon_sym__Atomic] = ACTIONS(2020), - [anon_sym__Noreturn] = ACTIONS(2020), - [anon_sym_noreturn] = ACTIONS(2020), - [anon_sym_alignas] = ACTIONS(2026), - [anon_sym__Alignas] = ACTIONS(2026), - [anon_sym_DASH_DASH] = ACTIONS(2028), - [anon_sym_PLUS_PLUS] = ACTIONS(2028), - [anon_sym_sizeof] = ACTIONS(2006), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [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), + [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), + [sym_comment] = ACTIONS(5), }, [510] = { - [sym_type_qualifier] = STATE(906), - [sym_alignas_qualifier] = STATE(965), - [sym_expression] = STATE(1200), - [sym__string] = STATE(758), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(1066), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(1066), - [sym_call_expression] = STATE(1066), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(1066), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(1066), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [aux_sym_array_declarator_repeat1] = STATE(906), - [sym_identifier] = ACTIONS(2000), - [anon_sym_LPAREN2] = ACTIONS(2014), - [anon_sym_BANG] = ACTIONS(2004), - [anon_sym_TILDE] = ACTIONS(2004), - [anon_sym_DASH] = ACTIONS(2002), - [anon_sym_PLUS] = ACTIONS(2002), - [anon_sym_STAR] = ACTIONS(2068), - [anon_sym_AMP] = ACTIONS(2018), - [anon_sym___extension__] = ACTIONS(2020), - [anon_sym_static] = ACTIONS(2038), - [anon_sym_RBRACK] = ACTIONS(2070), - [anon_sym_const] = ACTIONS(2020), - [anon_sym_constexpr] = ACTIONS(2020), - [anon_sym_volatile] = ACTIONS(2020), - [anon_sym_restrict] = ACTIONS(2020), - [anon_sym___restrict__] = ACTIONS(2020), - [anon_sym__Atomic] = ACTIONS(2020), - [anon_sym__Noreturn] = ACTIONS(2020), - [anon_sym_noreturn] = ACTIONS(2020), - [anon_sym_alignas] = ACTIONS(2026), - [anon_sym__Alignas] = ACTIONS(2026), - [anon_sym_DASH_DASH] = ACTIONS(2028), - [anon_sym_PLUS_PLUS] = ACTIONS(2028), - [anon_sym_sizeof] = ACTIONS(2006), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [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), }, [511] = { - [sym_type_qualifier] = STATE(906), - [sym_alignas_qualifier] = STATE(965), - [sym_expression] = STATE(1203), - [sym__string] = STATE(758), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(1066), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(1066), - [sym_call_expression] = STATE(1066), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(1066), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(1066), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [aux_sym_array_declarator_repeat1] = STATE(906), - [sym_identifier] = ACTIONS(2000), - [anon_sym_LPAREN2] = ACTIONS(2014), - [anon_sym_BANG] = ACTIONS(2004), - [anon_sym_TILDE] = ACTIONS(2004), - [anon_sym_DASH] = ACTIONS(2002), - [anon_sym_PLUS] = ACTIONS(2002), - [anon_sym_STAR] = ACTIONS(2072), - [anon_sym_AMP] = ACTIONS(2018), - [anon_sym___extension__] = ACTIONS(2020), - [anon_sym_static] = ACTIONS(2038), - [anon_sym_RBRACK] = ACTIONS(2074), - [anon_sym_const] = ACTIONS(2020), - [anon_sym_constexpr] = ACTIONS(2020), - [anon_sym_volatile] = ACTIONS(2020), - [anon_sym_restrict] = ACTIONS(2020), - [anon_sym___restrict__] = ACTIONS(2020), - [anon_sym__Atomic] = ACTIONS(2020), - [anon_sym__Noreturn] = ACTIONS(2020), - [anon_sym_noreturn] = ACTIONS(2020), - [anon_sym_alignas] = ACTIONS(2026), - [anon_sym__Alignas] = ACTIONS(2026), - [anon_sym_DASH_DASH] = ACTIONS(2028), - [anon_sym_PLUS_PLUS] = ACTIONS(2028), - [anon_sym_sizeof] = ACTIONS(2006), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [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), }, [512] = { - [sym_expression] = STATE(1148), - [sym__string] = STATE(758), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_initializer_list] = STATE(1873), - [sym_initializer_pair] = STATE(1873), - [sym_subscript_designator] = STATE(1627), - [sym_subscript_range_designator] = STATE(1627), - [sym_field_designator] = STATE(1627), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [aux_sym_initializer_pair_repeat1] = STATE(1627), - [sym_identifier] = ACTIONS(2076), - [anon_sym_COMMA] = ACTIONS(2078), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_RBRACE] = ACTIONS(2080), - [anon_sym_LBRACK] = ACTIONS(2082), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(2084), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [513] = { - [sym_expression] = STATE(1182), - [sym__string] = STATE(758), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_initializer_list] = STATE(1980), - [sym_initializer_pair] = STATE(1980), - [sym_subscript_designator] = STATE(1627), - [sym_subscript_range_designator] = STATE(1627), - [sym_field_designator] = STATE(1627), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [aux_sym_initializer_pair_repeat1] = STATE(1627), - [sym_identifier] = ACTIONS(2076), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_RBRACE] = ACTIONS(2086), - [anon_sym_LBRACK] = ACTIONS(2082), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(2084), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [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), + [sym_comment] = ACTIONS(5), }, [514] = { - [sym_expression] = STATE(1182), - [sym__string] = STATE(758), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_initializer_list] = STATE(1980), - [sym_initializer_pair] = STATE(1980), - [sym_subscript_designator] = STATE(1627), - [sym_subscript_range_designator] = STATE(1627), - [sym_field_designator] = STATE(1627), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [aux_sym_initializer_pair_repeat1] = STATE(1627), - [sym_identifier] = ACTIONS(2076), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_LBRACK] = ACTIONS(2082), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(2084), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [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), }, [515] = { - [sym_function_definition] = STATE(339), - [sym_declaration] = STATE(339), - [sym__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1250), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(805), - [sym_ms_declspec_modifier] = STATE(805), - [sym_ms_call_modifier] = STATE(773), - [sym_declaration_list] = STATE(339), - [sym_storage_class_specifier] = STATE(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(807), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [sym_macro_type_specifier] = STATE(873), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), - [sym_identifier] = ACTIONS(2008), - [anon_sym___extension__] = ACTIONS(53), - [anon_sym_extern] = ACTIONS(51), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym___read_mostly] = ACTIONS(37), - [anon_sym___must_hold] = ACTIONS(33), - [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___noreturn] = ACTIONS(37), - [anon_sym___cold] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1145), - [anon_sym___declspec] = ACTIONS(41), - [anon_sym___cdecl] = ACTIONS(45), - [anon_sym___clrcall] = ACTIONS(45), - [anon_sym___stdcall] = ACTIONS(45), - [anon_sym___fastcall] = ACTIONS(45), - [anon_sym___thiscall] = ACTIONS(45), - [anon_sym___vectorcall] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(2090), - [anon_sym_signed] = ACTIONS(49), - [anon_sym_unsigned] = ACTIONS(49), - [anon_sym_long] = ACTIONS(49), - [anon_sym_short] = ACTIONS(49), - [anon_sym_static] = ACTIONS(51), - [anon_sym_auto] = ACTIONS(51), - [anon_sym_register] = ACTIONS(51), - [anon_sym_inline] = ACTIONS(51), - [anon_sym___inline] = ACTIONS(51), - [anon_sym___inline__] = ACTIONS(51), - [anon_sym___forceinline] = ACTIONS(51), - [anon_sym_thread_local] = ACTIONS(51), - [anon_sym___thread] = ACTIONS(51), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [sym_comment] = ACTIONS(3), + [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), + [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), + [sym_comment] = ACTIONS(5), }, [516] = { - [sym_function_definition] = STATE(129), - [sym_declaration] = STATE(129), - [sym__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1245), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(805), - [sym_ms_declspec_modifier] = STATE(805), - [sym_ms_call_modifier] = STATE(784), - [sym_declaration_list] = STATE(129), - [sym_storage_class_specifier] = STATE(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(807), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [sym_macro_type_specifier] = STATE(873), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), - [sym_identifier] = ACTIONS(2008), - [anon_sym___extension__] = ACTIONS(53), - [anon_sym_extern] = ACTIONS(51), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym___read_mostly] = ACTIONS(37), - [anon_sym___must_hold] = ACTIONS(33), - [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___noreturn] = ACTIONS(37), - [anon_sym___cold] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1145), - [anon_sym___declspec] = ACTIONS(41), - [anon_sym___cdecl] = ACTIONS(45), - [anon_sym___clrcall] = ACTIONS(45), - [anon_sym___stdcall] = ACTIONS(45), - [anon_sym___fastcall] = ACTIONS(45), - [anon_sym___thiscall] = ACTIONS(45), - [anon_sym___vectorcall] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(2092), - [anon_sym_signed] = ACTIONS(49), - [anon_sym_unsigned] = ACTIONS(49), - [anon_sym_long] = ACTIONS(49), - [anon_sym_short] = ACTIONS(49), - [anon_sym_static] = ACTIONS(51), - [anon_sym_auto] = ACTIONS(51), - [anon_sym_register] = ACTIONS(51), - [anon_sym_inline] = ACTIONS(51), - [anon_sym___inline] = ACTIONS(51), - [anon_sym___inline__] = ACTIONS(51), - [anon_sym___forceinline] = ACTIONS(51), - [anon_sym_thread_local] = ACTIONS(51), - [anon_sym___thread] = ACTIONS(51), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [sym_comment] = ACTIONS(3), + [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), + [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), + [sym_comment] = ACTIONS(5), }, [517] = { - [sym_function_definition] = STATE(338), - [sym_declaration] = STATE(338), - [sym__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1251), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(805), - [sym_ms_declspec_modifier] = STATE(805), - [sym_ms_call_modifier] = STATE(802), - [sym_declaration_list] = STATE(338), - [sym_storage_class_specifier] = STATE(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(807), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [sym_macro_type_specifier] = STATE(873), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), - [sym_identifier] = ACTIONS(2008), - [anon_sym___extension__] = ACTIONS(53), - [anon_sym_extern] = ACTIONS(51), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym___read_mostly] = ACTIONS(37), - [anon_sym___must_hold] = ACTIONS(33), - [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___noreturn] = ACTIONS(37), - [anon_sym___cold] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1145), - [anon_sym___declspec] = ACTIONS(41), - [anon_sym___cdecl] = ACTIONS(45), - [anon_sym___clrcall] = ACTIONS(45), - [anon_sym___stdcall] = ACTIONS(45), - [anon_sym___fastcall] = ACTIONS(45), - [anon_sym___thiscall] = ACTIONS(45), - [anon_sym___vectorcall] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(2094), - [anon_sym_signed] = ACTIONS(49), - [anon_sym_unsigned] = ACTIONS(49), - [anon_sym_long] = ACTIONS(49), - [anon_sym_short] = ACTIONS(49), - [anon_sym_static] = ACTIONS(51), - [anon_sym_auto] = ACTIONS(51), - [anon_sym_register] = ACTIONS(51), - [anon_sym_inline] = ACTIONS(51), - [anon_sym___inline] = ACTIONS(51), - [anon_sym___inline__] = ACTIONS(51), - [anon_sym___forceinline] = ACTIONS(51), - [anon_sym_thread_local] = ACTIONS(51), - [anon_sym___thread] = ACTIONS(51), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [sym_comment] = ACTIONS(3), + [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_expression] = STATE(1182), - [sym__string] = STATE(758), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(944), - [sym_unary_expression] = STATE(758), - [sym_binary_expression] = STATE(758), - [sym_update_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_alignof_expression] = STATE(758), - [sym_offsetof_expression] = STATE(758), - [sym_generic_expression] = STATE(758), - [sym_subscript_expression] = STATE(944), - [sym_call_expression] = STATE(944), - [sym_gnu_asm_expression] = STATE(758), - [sym_field_expression] = STATE(944), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(944), - [sym_initializer_list] = STATE(1980), - [sym_initializer_pair] = STATE(1980), - [sym_subscript_designator] = STATE(1627), - [sym_subscript_range_designator] = STATE(1627), - [sym_field_designator] = STATE(1627), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(671), - [sym_null] = STATE(758), - [aux_sym_initializer_pair_repeat1] = STATE(1627), - [sym_identifier] = ACTIONS(2076), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_LBRACK] = ACTIONS(2082), - [anon_sym_DASH_DASH] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_sizeof] = ACTIONS(89), - [anon_sym___alignof__] = ACTIONS(91), - [anon_sym___alignof] = ACTIONS(91), - [anon_sym__alignof] = ACTIONS(91), - [anon_sym_alignof] = ACTIONS(91), - [anon_sym__Alignof] = ACTIONS(91), - [anon_sym_offsetof] = ACTIONS(93), - [anon_sym__Generic] = ACTIONS(95), - [anon_sym_asm] = ACTIONS(97), - [anon_sym___asm__] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(2084), - [sym_number_literal] = ACTIONS(165), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [anon_sym_NULL] = ACTIONS(107), - [anon_sym_nullptr] = ACTIONS(107), - [sym_comment] = ACTIONS(3), + [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_function_definition] = STATE(392), - [sym_declaration] = STATE(392), - [sym__declaration_modifiers] = STATE(805), - [sym__declaration_specifiers] = STATE(1252), - [sym_attribute_specifier] = STATE(805), - [sym_attribute_declaration] = STATE(805), - [sym_ms_declspec_modifier] = STATE(805), - [sym_ms_call_modifier] = STATE(790), - [sym_declaration_list] = STATE(392), - [sym_storage_class_specifier] = STATE(805), - [sym_type_qualifier] = STATE(805), - [sym_alignas_qualifier] = STATE(799), - [sym_type_specifier] = STATE(807), - [sym_sized_type_specifier] = STATE(873), - [sym_enum_specifier] = STATE(873), - [sym_struct_specifier] = STATE(873), - [sym_union_specifier] = STATE(873), - [sym_macro_type_specifier] = STATE(873), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [aux_sym_sized_type_specifier_repeat1] = STATE(890), - [sym_identifier] = ACTIONS(2008), - [anon_sym___extension__] = ACTIONS(53), - [anon_sym_extern] = ACTIONS(51), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym___read_mostly] = ACTIONS(37), - [anon_sym___must_hold] = ACTIONS(33), - [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___noreturn] = ACTIONS(37), - [anon_sym___cold] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1145), - [anon_sym___declspec] = ACTIONS(41), - [anon_sym___cdecl] = ACTIONS(45), - [anon_sym___clrcall] = ACTIONS(45), - [anon_sym___stdcall] = ACTIONS(45), - [anon_sym___fastcall] = ACTIONS(45), - [anon_sym___thiscall] = ACTIONS(45), - [anon_sym___vectorcall] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(2096), - [anon_sym_signed] = ACTIONS(49), - [anon_sym_unsigned] = ACTIONS(49), - [anon_sym_long] = ACTIONS(49), - [anon_sym_short] = ACTIONS(49), - [anon_sym_static] = ACTIONS(51), - [anon_sym_auto] = ACTIONS(51), - [anon_sym_register] = ACTIONS(51), - [anon_sym_inline] = ACTIONS(51), - [anon_sym___inline] = ACTIONS(51), - [anon_sym___inline__] = ACTIONS(51), - [anon_sym___forceinline] = ACTIONS(51), - [anon_sym_thread_local] = ACTIONS(51), - [anon_sym___thread] = ACTIONS(51), - [anon_sym_const] = ACTIONS(53), - [anon_sym_constexpr] = ACTIONS(53), - [anon_sym_volatile] = ACTIONS(53), - [anon_sym_restrict] = ACTIONS(53), - [anon_sym___restrict__] = ACTIONS(53), - [anon_sym__Atomic] = ACTIONS(53), - [anon_sym__Noreturn] = ACTIONS(53), - [anon_sym_noreturn] = ACTIONS(53), - [anon_sym_alignas] = ACTIONS(55), - [anon_sym__Alignas] = ACTIONS(55), - [sym_primitive_type] = ACTIONS(57), - [anon_sym_enum] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_union] = ACTIONS(63), - [sym_comment] = ACTIONS(3), + [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_string_literal] = STATE(521), - [aux_sym_concatenated_string_repeat1] = STATE(521), - [sym_identifier] = ACTIONS(2098), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2100), - [anon_sym_COMMA] = ACTIONS(2100), - [anon_sym_RPAREN] = ACTIONS(2100), - [aux_sym_preproc_if_token2] = ACTIONS(2100), - [aux_sym_preproc_else_token1] = ACTIONS(2100), - [aux_sym_preproc_elif_token1] = ACTIONS(2102), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2100), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2100), - [anon_sym_LPAREN2] = ACTIONS(2100), - [anon_sym_DASH] = ACTIONS(2102), - [anon_sym_PLUS] = ACTIONS(2102), - [anon_sym_STAR] = ACTIONS(2102), - [anon_sym_SLASH] = ACTIONS(2102), - [anon_sym_PERCENT] = ACTIONS(2102), - [anon_sym_PIPE_PIPE] = ACTIONS(2100), - [anon_sym_AMP_AMP] = ACTIONS(2100), - [anon_sym_PIPE] = ACTIONS(2102), - [anon_sym_CARET] = ACTIONS(2102), - [anon_sym_AMP] = ACTIONS(2102), - [anon_sym_EQ_EQ] = ACTIONS(2100), - [anon_sym_BANG_EQ] = ACTIONS(2100), - [anon_sym_GT] = ACTIONS(2102), - [anon_sym_GT_EQ] = ACTIONS(2100), - [anon_sym_LT_EQ] = ACTIONS(2100), - [anon_sym_LT] = ACTIONS(2102), - [anon_sym_LT_LT] = ACTIONS(2102), - [anon_sym_GT_GT] = ACTIONS(2102), - [anon_sym_SEMI] = ACTIONS(2100), - [anon_sym___attribute__] = ACTIONS(2102), - [anon_sym___scanf] = ACTIONS(2102), - [anon_sym___printf] = ACTIONS(2102), - [anon_sym___read_mostly] = ACTIONS(2102), - [anon_sym___must_hold] = ACTIONS(2102), - [anon_sym___ro_after_init] = ACTIONS(2102), - [anon_sym___noreturn] = ACTIONS(2102), - [anon_sym___cold] = ACTIONS(2102), - [anon_sym_RBRACE] = ACTIONS(2100), - [anon_sym_LBRACK] = ACTIONS(2100), - [anon_sym_RBRACK] = ACTIONS(2100), - [anon_sym_EQ] = ACTIONS(2102), - [anon_sym_COLON] = ACTIONS(2100), - [anon_sym_QMARK] = ACTIONS(2100), - [anon_sym_STAR_EQ] = ACTIONS(2100), - [anon_sym_SLASH_EQ] = ACTIONS(2100), - [anon_sym_PERCENT_EQ] = ACTIONS(2100), - [anon_sym_PLUS_EQ] = ACTIONS(2100), - [anon_sym_DASH_EQ] = ACTIONS(2100), - [anon_sym_LT_LT_EQ] = ACTIONS(2100), - [anon_sym_GT_GT_EQ] = ACTIONS(2100), - [anon_sym_AMP_EQ] = ACTIONS(2100), - [anon_sym_CARET_EQ] = ACTIONS(2100), - [anon_sym_PIPE_EQ] = ACTIONS(2100), - [anon_sym_DASH_DASH] = ACTIONS(2100), - [anon_sym_PLUS_PLUS] = ACTIONS(2100), - [anon_sym_DOT] = ACTIONS(2102), - [anon_sym_DASH_GT] = ACTIONS(2100), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1246), + [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), + [sym_comment] = ACTIONS(5), }, [521] = { - [sym_string_literal] = STATE(522), - [aux_sym_concatenated_string_repeat1] = STATE(522), - [sym_identifier] = ACTIONS(2104), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2106), - [anon_sym_COMMA] = ACTIONS(2106), - [anon_sym_RPAREN] = ACTIONS(2106), - [aux_sym_preproc_if_token2] = ACTIONS(2106), - [aux_sym_preproc_else_token1] = ACTIONS(2106), - [aux_sym_preproc_elif_token1] = ACTIONS(2108), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2106), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2106), - [anon_sym_LPAREN2] = ACTIONS(2106), - [anon_sym_DASH] = ACTIONS(2108), - [anon_sym_PLUS] = ACTIONS(2108), - [anon_sym_STAR] = ACTIONS(2108), - [anon_sym_SLASH] = ACTIONS(2108), - [anon_sym_PERCENT] = ACTIONS(2108), - [anon_sym_PIPE_PIPE] = ACTIONS(2106), - [anon_sym_AMP_AMP] = ACTIONS(2106), - [anon_sym_PIPE] = ACTIONS(2108), - [anon_sym_CARET] = ACTIONS(2108), - [anon_sym_AMP] = ACTIONS(2108), - [anon_sym_EQ_EQ] = ACTIONS(2106), - [anon_sym_BANG_EQ] = ACTIONS(2106), - [anon_sym_GT] = ACTIONS(2108), - [anon_sym_GT_EQ] = ACTIONS(2106), - [anon_sym_LT_EQ] = ACTIONS(2106), - [anon_sym_LT] = ACTIONS(2108), - [anon_sym_LT_LT] = ACTIONS(2108), - [anon_sym_GT_GT] = ACTIONS(2108), - [anon_sym_SEMI] = ACTIONS(2106), - [anon_sym___attribute__] = ACTIONS(2108), - [anon_sym___scanf] = ACTIONS(2108), - [anon_sym___printf] = ACTIONS(2108), - [anon_sym___read_mostly] = ACTIONS(2108), - [anon_sym___must_hold] = ACTIONS(2108), - [anon_sym___ro_after_init] = ACTIONS(2108), - [anon_sym___noreturn] = ACTIONS(2108), - [anon_sym___cold] = ACTIONS(2108), - [anon_sym_RBRACE] = ACTIONS(2106), - [anon_sym_LBRACK] = ACTIONS(2106), - [anon_sym_RBRACK] = ACTIONS(2106), - [anon_sym_EQ] = ACTIONS(2108), - [anon_sym_COLON] = ACTIONS(2106), - [anon_sym_QMARK] = ACTIONS(2106), - [anon_sym_STAR_EQ] = ACTIONS(2106), - [anon_sym_SLASH_EQ] = ACTIONS(2106), - [anon_sym_PERCENT_EQ] = ACTIONS(2106), - [anon_sym_PLUS_EQ] = ACTIONS(2106), - [anon_sym_DASH_EQ] = ACTIONS(2106), - [anon_sym_LT_LT_EQ] = ACTIONS(2106), - [anon_sym_GT_GT_EQ] = ACTIONS(2106), - [anon_sym_AMP_EQ] = ACTIONS(2106), - [anon_sym_CARET_EQ] = ACTIONS(2106), - [anon_sym_PIPE_EQ] = ACTIONS(2106), - [anon_sym_DASH_DASH] = ACTIONS(2106), - [anon_sym_PLUS_PLUS] = ACTIONS(2106), - [anon_sym_DOT] = ACTIONS(2108), - [anon_sym_DASH_GT] = ACTIONS(2106), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_comment] = ACTIONS(3), + [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), }, [522] = { - [sym_string_literal] = STATE(522), - [aux_sym_concatenated_string_repeat1] = STATE(522), - [sym_identifier] = ACTIONS(2110), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2113), - [anon_sym_COMMA] = ACTIONS(2113), - [anon_sym_RPAREN] = ACTIONS(2113), - [aux_sym_preproc_if_token2] = ACTIONS(2113), - [aux_sym_preproc_else_token1] = ACTIONS(2113), - [aux_sym_preproc_elif_token1] = ACTIONS(2115), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2113), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2113), - [anon_sym_LPAREN2] = ACTIONS(2113), - [anon_sym_DASH] = ACTIONS(2115), - [anon_sym_PLUS] = ACTIONS(2115), - [anon_sym_STAR] = ACTIONS(2115), - [anon_sym_SLASH] = ACTIONS(2115), - [anon_sym_PERCENT] = ACTIONS(2115), - [anon_sym_PIPE_PIPE] = ACTIONS(2113), - [anon_sym_AMP_AMP] = ACTIONS(2113), - [anon_sym_PIPE] = ACTIONS(2115), - [anon_sym_CARET] = ACTIONS(2115), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_EQ_EQ] = ACTIONS(2113), - [anon_sym_BANG_EQ] = ACTIONS(2113), - [anon_sym_GT] = ACTIONS(2115), - [anon_sym_GT_EQ] = ACTIONS(2113), - [anon_sym_LT_EQ] = ACTIONS(2113), - [anon_sym_LT] = ACTIONS(2115), - [anon_sym_LT_LT] = ACTIONS(2115), - [anon_sym_GT_GT] = ACTIONS(2115), - [anon_sym_SEMI] = ACTIONS(2113), - [anon_sym___attribute__] = ACTIONS(2115), - [anon_sym___scanf] = ACTIONS(2115), - [anon_sym___printf] = ACTIONS(2115), - [anon_sym___read_mostly] = ACTIONS(2115), - [anon_sym___must_hold] = ACTIONS(2115), - [anon_sym___ro_after_init] = ACTIONS(2115), - [anon_sym___noreturn] = ACTIONS(2115), - [anon_sym___cold] = ACTIONS(2115), - [anon_sym_RBRACE] = ACTIONS(2113), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_RBRACK] = ACTIONS(2113), - [anon_sym_EQ] = ACTIONS(2115), - [anon_sym_COLON] = ACTIONS(2113), - [anon_sym_QMARK] = ACTIONS(2113), - [anon_sym_STAR_EQ] = ACTIONS(2113), - [anon_sym_SLASH_EQ] = ACTIONS(2113), - [anon_sym_PERCENT_EQ] = ACTIONS(2113), - [anon_sym_PLUS_EQ] = ACTIONS(2113), - [anon_sym_DASH_EQ] = ACTIONS(2113), - [anon_sym_LT_LT_EQ] = ACTIONS(2113), - [anon_sym_GT_GT_EQ] = ACTIONS(2113), - [anon_sym_AMP_EQ] = ACTIONS(2113), - [anon_sym_CARET_EQ] = ACTIONS(2113), - [anon_sym_PIPE_EQ] = ACTIONS(2113), - [anon_sym_DASH_DASH] = ACTIONS(2113), - [anon_sym_PLUS_PLUS] = ACTIONS(2113), - [anon_sym_DOT] = ACTIONS(2115), - [anon_sym_DASH_GT] = ACTIONS(2113), - [anon_sym_L_DQUOTE] = ACTIONS(2117), - [anon_sym_u_DQUOTE] = ACTIONS(2117), - [anon_sym_U_DQUOTE] = ACTIONS(2117), - [anon_sym_u8_DQUOTE] = ACTIONS(2117), - [anon_sym_DQUOTE] = ACTIONS(2117), - [sym_comment] = ACTIONS(3), + [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), + }, + [523] = { + [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), + }, + [524] = { + [sym_identifier] = ACTIONS(1310), + [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), + [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), + [sym_comment] = ACTIONS(5), + }, + [526] = { + [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), + }, + [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), + [sym_comment] = ACTIONS(5), + }, + [528] = { + [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), + }, + [529] = { + [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), + }, + [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), + [sym_comment] = ACTIONS(5), + }, + [531] = { + [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), + }, + [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), + [sym_comment] = ACTIONS(5), + }, + [534] = { + [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), + }, + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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_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(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), + }, + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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(2380), + [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), + [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), + [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(2384), + [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), + [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), + [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(2386), + [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), + [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), + [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(2388), + [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), + [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), + [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), + [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), + [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), + [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(2396), + [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), + [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), + [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___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_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), + }, + [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), + [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___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_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), + }, + [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), + [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___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_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), + }, + [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), + [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), + [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___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_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] = 5, + [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, + 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(2474), 1, + anon_sym_SEMI, + STATE(944), 1, + sym_string_literal, + STATE(1573), 1, + sym_expression, + STATE(3088), 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, + [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, + 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(1806), 1, + anon_sym_LBRACE, + ACTIONS(1952), 1, + anon_sym_sizeof, + ACTIONS(2476), 1, + anon_sym_LPAREN2, + STATE(944), 1, + sym_string_literal, + STATE(1252), 1, + sym_initializer_list, + STATE(1353), 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, + [3363] = 24, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1518), 1, + anon_sym_LBRACE, + ACTIONS(1524), 1, + anon_sym_offsetof, + ACTIONS(1526), 1, + anon_sym__Generic, + ACTIONS(1530), 1, + sym_number_literal, + ACTIONS(2093), 1, + sym_identifier, + ACTIONS(2099), 1, + anon_sym_sizeof, + ACTIONS(2480), 1, + anon_sym_LPAREN2, + STATE(915), 1, + sym_string_literal, + STATE(1011), 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, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2482), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2484), 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, + 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, + [3474] = 24, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1544), 1, + anon_sym_LBRACE, + 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(1136), 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, + 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, + 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, + [3585] = 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(1608), 1, + sym_expression, + STATE(2923), 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, + [3696] = 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(363), 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(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, + 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, + [3809] = 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(1602), 1, + sym_expression, + STATE(2928), 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, + [3920] = 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(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, + 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(2494), 1, + anon_sym_SEMI, + STATE(944), 1, + sym_string_literal, + STATE(1619), 1, + sym_expression, + STATE(3362), 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, + [4142] = 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(2496), 1, + anon_sym_COLON, + STATE(944), 1, + sym_string_literal, + STATE(1585), 1, + sym_expression, + STATE(3442), 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, + [4253] = 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, + 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(401), 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(657), 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, + [4479] = 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(337), 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(617), 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, + [4592] = 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(404), 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, + [4705] = 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(360), 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, + [4818] = 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(331), 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(690), 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, + [4931] = 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(1806), 1, + anon_sym_LBRACE, + ACTIONS(2268), 1, + sym_identifier, + ACTIONS(2274), 1, + anon_sym_sizeof, + ACTIONS(2286), 1, + anon_sym_LPAREN2, + STATE(944), 1, + sym_string_literal, + STATE(1252), 1, + sym_initializer_list, + STATE(1353), 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, + 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, + [5042] = 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(2500), 1, + anon_sym_COLON, + STATE(944), 1, + sym_string_literal, + STATE(1577), 1, + sym_expression, + STATE(2999), 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, + [5153] = 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(373), 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, + [5266] = 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(129), 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, + [5379] = 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(2502), 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(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, + 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, + [5492] = 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(2504), 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(2741), 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, + [5605] = 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(137), 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, + [5718] = 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(316), 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(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, + 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, + [5831] = 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(2105), 1, + anon_sym_RPAREN, + 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(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(2506), 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, + [5944] = 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(2506), 1, + anon_sym_SEMI, + STATE(944), 1, + sym_string_literal, + STATE(1595), 1, + sym_expression, + STATE(3269), 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, + [6055] = 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(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(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(356), 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, + [6281] = 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(395), 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, + [6394] = 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(362), 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, + [6507] = 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(153), 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(683), 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, + [6620] = 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(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, + sym_string_literal, + STATE(1609), 1, + sym_expression, + STATE(3140), 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, + [6842] = 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(2512), 1, + anon_sym_COLON, + STATE(944), 1, + sym_string_literal, + STATE(1583), 1, + sym_expression, + STATE(3052), 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, + [6953] = 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(2514), 1, + anon_sym_RPAREN, + STATE(944), 1, + sym_string_literal, + STATE(1584), 1, + sym_expression, + STATE(2986), 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, + [7064] = 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(2516), 1, + anon_sym_RPAREN, + STATE(944), 1, + sym_string_literal, + STATE(1576), 1, + sym_expression, + STATE(2993), 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, + [7175] = 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(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, + 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(2520), 1, + anon_sym_SEMI, + STATE(944), 1, + sym_string_literal, + STATE(1614), 1, + sym_expression, + STATE(3169), 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, + [7397] = 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(133), 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(658), 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, + [7510] = 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(2522), 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(2469), 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, + [7625] = 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(2524), 1, + anon_sym_COLON, + STATE(944), 1, + sym_string_literal, + STATE(1591), 1, + sym_expression, + STATE(3338), 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, + [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(2188), 1, + sym_identifier, + ACTIONS(2526), 1, + anon_sym_COLON, + STATE(944), 1, + sym_string_literal, + STATE(1617), 1, + sym_expression, + STATE(3129), 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, + [7847] = 24, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1508), 1, + sym_identifier, + ACTIONS(1518), 1, + anon_sym_LBRACE, + 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(1011), 1, + sym_expression, + STATE(1071), 1, + sym_initializer_list, + 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, + 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, + 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, + [7958] = 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(1800), 1, + sym_identifier, + ACTIONS(1806), 1, + anon_sym_LBRACE, + ACTIONS(1808), 1, + anon_sym_sizeof, + ACTIONS(2532), 1, + anon_sym_LPAREN2, + STATE(944), 1, + sym_string_literal, + STATE(1252), 1, + sym_initializer_list, + STATE(1270), 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, + 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, + 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, + [8069] = 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(136), 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, + [8182] = 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(333), 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, + [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, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(1977), 2, + anon_sym_RPAREN, + anon_sym_LBRACK, + ACTIONS(2540), 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, + 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(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(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(2542), 1, + anon_sym_RPAREN, + STATE(944), 1, + sym_string_literal, + STATE(1563), 1, + sym_expression, + STATE(3089), 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, + [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, + 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, + [8608] = 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(334), 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(668), 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, + [8721] = 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(329), 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, + [8834] = 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(326), 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, + [8947] = 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(320), 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(624), 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, + [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, + 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(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, + 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(1566), 1, + sym_expression, + STATE(3144), 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, + [9384] = 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(2550), 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, + [9492] = 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(1210), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2398), 1, + sym_identifier, + STATE(879), 1, + sym_macro_modifier, + STATE(939), 1, + sym_type_specifier, + STATE(942), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1036), 1, + sym_alignas_qualifier, + STATE(1745), 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(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, + [9602] = 24, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2552), 1, + sym_identifier, + ACTIONS(2570), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2573), 1, + anon_sym___declspec, + ACTIONS(2576), 1, + anon_sym_LBRACE, + ACTIONS(2584), 1, + sym_primitive_type, + ACTIONS(2587), 1, + anon_sym_enum, + ACTIONS(2590), 1, + anon_sym_struct, + ACTIONS(2593), 1, + anon_sym_union, + 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(2561), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(2564), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(2581), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(697), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, + ACTIONS(2567), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(2578), 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(2555), 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(2558), 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, + [9712] = 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(2188), 1, + sym_identifier, + STATE(944), 1, + sym_string_literal, + STATE(1558), 1, + sym_expression, + STATE(3398), 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, + [9820] = 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(1210), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2398), 1, + sym_identifier, + STATE(890), 1, + sym_macro_modifier, + STATE(939), 1, + sym_type_specifier, + STATE(942), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1036), 1, + sym_alignas_qualifier, + STATE(1735), 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(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, + [9930] = 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(2596), 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, + [10038] = 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(2188), 1, + sym_identifier, + STATE(944), 1, + sym_string_literal, + STATE(1528), 1, + sym_expression, + STATE(2509), 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, + [10146] = 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, + 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, + 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(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, + 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, + [10256] = 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(2598), 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, + [10364] = 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(2600), 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, + [10472] = 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(2602), 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, + [10580] = 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(2604), 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, + [10688] = 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(2606), 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, + [10796] = 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(2608), 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, + [10904] = 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(2610), 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, + [11012] = 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(2612), 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, + [11120] = 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(2614), 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, + [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, + 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(887), 1, + sym_macro_modifier, + STATE(939), 1, + sym_type_specifier, + STATE(942), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1036), 1, + sym_alignas_qualifier, + STATE(1736), 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(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, + [11450] = 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(1210), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2398), 1, + sym_identifier, + STATE(888), 1, + sym_macro_modifier, + STATE(939), 1, + sym_type_specifier, + STATE(942), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1036), 1, + sym_alignas_qualifier, + STATE(1738), 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(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, + [11560] = 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(2618), 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, + [11668] = 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(1599), 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, + [11773] = 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(1542), 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, + [11878] = 22, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1524), 1, + anon_sym_offsetof, + ACTIONS(1526), 1, + anon_sym__Generic, + ACTIONS(1530), 1, + sym_number_literal, + ACTIONS(2093), 1, + sym_identifier, + ACTIONS(2099), 1, + anon_sym_sizeof, + ACTIONS(2480), 1, + anon_sym_LPAREN2, + STATE(915), 1, + sym_string_literal, + STATE(1412), 1, + sym_expression, + 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, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2482), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2484), 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, + 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, + [11983] = 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(1038), 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, + 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, + 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, + [12088] = 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(2620), 1, + anon_sym_LPAREN2, + STATE(944), 1, + sym_string_literal, + STATE(1356), 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, + 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, + [12193] = 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(1586), 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, + [12298] = 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(1359), 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, + 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, + [12403] = 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(1358), 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, + [12508] = 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(1031), 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, + 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, + 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, + [12613] = 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(1364), 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, + [12718] = 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(1365), 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, + [12823] = 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(1366), 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, + [12928] = 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(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(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, + [13033] = 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(1368), 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, + [13138] = 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(1369), 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, + [13243] = 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(1374), 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, + [13348] = 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(1637), 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, + [13453] = 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(1370), 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, + [13558] = 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(1632), 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, + [13663] = 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(1460), 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, + 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, + [13768] = 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(1372), 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, + [13873] = 22, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1524), 1, + anon_sym_offsetof, + ACTIONS(1526), 1, + anon_sym__Generic, + ACTIONS(1530), 1, + sym_number_literal, + ACTIONS(2093), 1, + sym_identifier, + ACTIONS(2099), 1, + anon_sym_sizeof, + ACTIONS(2480), 1, + anon_sym_LPAREN2, + STATE(915), 1, + sym_string_literal, + STATE(1007), 1, + sym_expression, + 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, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2482), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2484), 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, + 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, + [13978] = 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(1538), 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, + [14083] = 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(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, + [14188] = 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(1453), 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, + 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, + [14293] = 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(1395), 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, + 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, + [14398] = 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(1459), 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, + 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, + [14503] = 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(1278), 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, + [14608] = 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(1662), 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, + 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, + [14713] = 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(1395), 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, + [14818] = 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(1030), 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, + 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, + 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, + [14923] = 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(1808), 1, + anon_sym_sizeof, + ACTIONS(2532), 1, + anon_sym_LPAREN2, + STATE(944), 1, + sym_string_literal, + STATE(1281), 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, + 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, + 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, + [15028] = 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(1028), 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, + 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, + 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, + [15133] = 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(1634), 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, + [15238] = 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(1491), 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, + [15343] = 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(1600), 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, + 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, + [15448] = 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(1808), 1, + anon_sym_sizeof, + ACTIONS(2532), 1, + anon_sym_LPAREN2, + STATE(944), 1, + sym_string_literal, + STATE(1257), 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, + 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, + 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, + [15553] = 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(1007), 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, + 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, + 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, + [15658] = 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(1808), 1, + anon_sym_sizeof, + ACTIONS(2532), 1, + anon_sym_LPAREN2, + STATE(944), 1, + sym_string_literal, + STATE(1273), 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, + 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, + 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, + [15763] = 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(1808), 1, + anon_sym_sizeof, + ACTIONS(2532), 1, + anon_sym_LPAREN2, + STATE(944), 1, + sym_string_literal, + STATE(1275), 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, + 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, + 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, + [15868] = 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(1013), 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, + 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, + 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, + [15973] = 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(1554), 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, + [16078] = 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(1808), 1, + anon_sym_sizeof, + ACTIONS(2532), 1, + anon_sym_LPAREN2, + STATE(944), 1, + sym_string_literal, + STATE(1259), 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, + 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, + 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, + [16183] = 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(2622), 1, + anon_sym_LPAREN2, + STATE(915), 1, + sym_string_literal, + STATE(1014), 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, + 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, + 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, + [16288] = 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(1654), 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, + [16393] = 22, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1524), 1, + anon_sym_offsetof, + ACTIONS(1526), 1, + anon_sym__Generic, + ACTIONS(1530), 1, + sym_number_literal, + ACTIONS(2093), 1, + sym_identifier, + ACTIONS(2099), 1, + anon_sym_sizeof, + ACTIONS(2480), 1, + anon_sym_LPAREN2, + STATE(915), 1, + sym_string_literal, + STATE(1413), 1, + sym_expression, + 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, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2482), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2484), 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, + 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, + [16498] = 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(1808), 1, + anon_sym_sizeof, + ACTIONS(2532), 1, + anon_sym_LPAREN2, + STATE(944), 1, + sym_string_literal, + STATE(1260), 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, + 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, + 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, + [16603] = 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(1808), 1, + anon_sym_sizeof, + ACTIONS(2532), 1, + anon_sym_LPAREN2, + STATE(944), 1, + sym_string_literal, + STATE(1261), 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, + 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, + 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, + [16708] = 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(1808), 1, + anon_sym_sizeof, + ACTIONS(2532), 1, + anon_sym_LPAREN2, + STATE(944), 1, + sym_string_literal, + STATE(1262), 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, + 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, + 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, + [16813] = 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(1808), 1, + anon_sym_sizeof, + ACTIONS(2532), 1, + anon_sym_LPAREN2, + STATE(944), 1, + sym_string_literal, + STATE(1263), 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, + 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, + 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, + [16918] = 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(1569), 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, + 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, + [17023] = 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(1808), 1, + anon_sym_sizeof, + ACTIONS(2532), 1, + anon_sym_LPAREN2, + STATE(944), 1, + sym_string_literal, + STATE(1264), 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, + 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, + 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, + [17128] = 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(1001), 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, + 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, + 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, + [17233] = 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(1808), 1, + anon_sym_sizeof, + ACTIONS(2532), 1, + anon_sym_LPAREN2, + STATE(944), 1, + sym_string_literal, + STATE(1265), 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, + 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, + 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, + [17338] = 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(1808), 1, + anon_sym_sizeof, + ACTIONS(2532), 1, + anon_sym_LPAREN2, + STATE(944), 1, + sym_string_literal, + STATE(1266), 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, + 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, + 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, + [17443] = 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(1547), 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, + [17548] = 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(1273), 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, + [17653] = 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(1490), 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, + [17758] = 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(1452), 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, + 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, + [17863] = 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(1489), 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, + [17968] = 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(1488), 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, + [18073] = 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(1486), 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, + [18178] = 22, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1524), 1, + anon_sym_offsetof, + ACTIONS(1526), 1, + anon_sym__Generic, + ACTIONS(1530), 1, + sym_number_literal, + ACTIONS(2093), 1, + sym_identifier, + ACTIONS(2099), 1, + anon_sym_sizeof, + ACTIONS(2624), 1, + anon_sym_LPAREN2, + STATE(915), 1, + sym_string_literal, + STATE(1014), 1, + sym_expression, + 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, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2482), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2484), 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, + 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, + [18283] = 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(1484), 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, + [18388] = 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(1483), 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, + [18493] = 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(1458), 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, + 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, + 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, + [18703] = 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(1449), 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, + 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, + [18808] = 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(1478), 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, + [18913] = 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(1630), 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, + 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, + [19018] = 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(1357), 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, + [19123] = 22, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1524), 1, + anon_sym_offsetof, + ACTIONS(1526), 1, + anon_sym__Generic, + ACTIONS(1530), 1, + sym_number_literal, + ACTIONS(2093), 1, + sym_identifier, + ACTIONS(2099), 1, + anon_sym_sizeof, + ACTIONS(2480), 1, + anon_sym_LPAREN2, + STATE(915), 1, + sym_string_literal, + STATE(1013), 1, + sym_expression, + 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, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2482), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2484), 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, + 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, + 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, + 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, + [19333] = 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(1638), 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, + [19438] = 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(1541), 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, + [19543] = 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(1129), 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, + 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, + [19648] = 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(1153), 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, + 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, + [19753] = 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(1469), 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, + 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, + [19858] = 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(1633), 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, + [19963] = 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(1470), 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, + 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, + 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, + 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, + 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, + [20173] = 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(1635), 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, + [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, + 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, + [20383] = 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(1032), 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, + 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, + 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, + 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, + [20593] = 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(1018), 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, + 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, + 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, + [20698] = 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(1653), 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, + 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, + [20803] = 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(1002), 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, + 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, + 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, + [20908] = 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(1160), 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, + 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, + [21013] = 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(1580), 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, + 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, + [21118] = 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(1581), 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, + 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, + [21223] = 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(1582), 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, + 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, + [21328] = 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(1607), 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, + 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, + 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, + [21538] = 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(1021), 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, + 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, + 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, + [21643] = 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(1589), 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, + 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, + [21748] = 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(1463), 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, + 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, + [21853] = 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(1570), 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, + 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, + [21958] = 22, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1524), 1, + anon_sym_offsetof, + ACTIONS(1526), 1, + anon_sym__Generic, + ACTIONS(1530), 1, + sym_number_literal, + ACTIONS(2093), 1, + sym_identifier, + ACTIONS(2099), 1, + anon_sym_sizeof, + ACTIONS(2480), 1, + anon_sym_LPAREN2, + STATE(915), 1, + sym_string_literal, + STATE(1434), 1, + sym_expression, + 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, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2482), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2484), 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, + 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, + [22063] = 22, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + 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(2626), 1, + anon_sym_LPAREN2, + STATE(944), 1, + sym_string_literal, + STATE(1282), 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, + [22168] = 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(1284), 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, + [22273] = 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(1462), 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, + 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, + [22378] = 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(1027), 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, + 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, + 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, + [22483] = 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(1808), 1, + anon_sym_sizeof, + ACTIONS(2532), 1, + anon_sym_LPAREN2, + STATE(944), 1, + sym_string_literal, + STATE(1274), 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, + 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, + 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, + [22588] = 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(1579), 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, + 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, + [22693] = 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(1620), 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, + [22798] = 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(1361), 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, + 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, + [22903] = 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(2628), 1, + anon_sym_LPAREN2, + STATE(987), 1, + sym_string_literal, + STATE(1144), 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, + 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, + [23008] = 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(2630), 1, + anon_sym_LPAREN2, + STATE(944), 1, + sym_string_literal, + STATE(1356), 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, + [23113] = 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(1808), 1, + anon_sym_sizeof, + ACTIONS(2632), 1, + anon_sym_LPAREN2, + STATE(944), 1, + sym_string_literal, + STATE(1282), 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, + 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, + 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, + [23218] = 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(1808), 1, + anon_sym_sizeof, + ACTIONS(2532), 1, + anon_sym_LPAREN2, + STATE(944), 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(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, + 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, + [23323] = 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(1479), 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, + [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, + 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, + [23533] = 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(1457), 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, + 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, + [23638] = 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(1447), 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, + 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, + [23743] = 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(1587), 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, + 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, + [23848] = 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(1006), 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, + 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, + 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, + [23953] = 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(1562), 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, + 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, + [24058] = 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(1659), 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, + [24163] = 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(1808), 1, + anon_sym_sizeof, + ACTIONS(2532), 1, + anon_sym_LPAREN2, + STATE(944), 1, + sym_string_literal, + STATE(1278), 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, + 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, + 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, + [24268] = 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(1501), 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, + [24373] = 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(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__, + 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, + [24478] = 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(1655), 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, + 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, + [24583] = 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(1456), 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, + 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, + [24688] = 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(1182), 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, + 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, + [24793] = 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(1171), 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, + 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, + [24898] = 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(1647), 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, + [25003] = 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(1129), 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, + 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, + [25108] = 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(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__, + 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, + [25213] = 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(1361), 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, + [25318] = 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(1159), 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, + 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, + [25423] = 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(1152), 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, + 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, + [25528] = 22, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1524), 1, + anon_sym_offsetof, + ACTIONS(1526), 1, + anon_sym__Generic, + ACTIONS(1530), 1, + sym_number_literal, + ACTIONS(2093), 1, + sym_identifier, + ACTIONS(2099), 1, + anon_sym_sizeof, + ACTIONS(2480), 1, + anon_sym_LPAREN2, + STATE(915), 1, + sym_string_literal, + STATE(1418), 1, + sym_expression, + 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, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2482), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2484), 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, + 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, + [25633] = 22, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1524), 1, + anon_sym_offsetof, + ACTIONS(1526), 1, + anon_sym__Generic, + ACTIONS(1530), 1, + sym_number_literal, + ACTIONS(2093), 1, + sym_identifier, + ACTIONS(2099), 1, + anon_sym_sizeof, + ACTIONS(2480), 1, + anon_sym_LPAREN2, + STATE(915), 1, + sym_string_literal, + STATE(1411), 1, + sym_expression, + 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, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2482), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2484), 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, + 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, + [25738] = 22, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1524), 1, + anon_sym_offsetof, + ACTIONS(1526), 1, + anon_sym__Generic, + ACTIONS(1530), 1, + sym_number_literal, + ACTIONS(2093), 1, + sym_identifier, + ACTIONS(2099), 1, + anon_sym_sizeof, + ACTIONS(2480), 1, + anon_sym_LPAREN2, + STATE(915), 1, + sym_string_literal, + STATE(1428), 1, + sym_expression, + 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, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2482), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2484), 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, + 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, + [25843] = 22, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1524), 1, + anon_sym_offsetof, + ACTIONS(1526), 1, + anon_sym__Generic, + ACTIONS(1530), 1, + sym_number_literal, + ACTIONS(2093), 1, + sym_identifier, + ACTIONS(2099), 1, + anon_sym_sizeof, + ACTIONS(2480), 1, + anon_sym_LPAREN2, + STATE(915), 1, + sym_string_literal, + STATE(1429), 1, + sym_expression, + 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, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2482), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2484), 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, + 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, + [25948] = 22, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1524), 1, + anon_sym_offsetof, + ACTIONS(1526), 1, + anon_sym__Generic, + ACTIONS(1530), 1, + sym_number_literal, + ACTIONS(2093), 1, + sym_identifier, + ACTIONS(2099), 1, + anon_sym_sizeof, + ACTIONS(2480), 1, + anon_sym_LPAREN2, + STATE(915), 1, + sym_string_literal, + STATE(1433), 1, + sym_expression, + 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, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2482), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2484), 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, + 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, + [26053] = 22, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1524), 1, + anon_sym_offsetof, + ACTIONS(1526), 1, + anon_sym__Generic, + ACTIONS(1530), 1, + sym_number_literal, + ACTIONS(2093), 1, + sym_identifier, + ACTIONS(2099), 1, + anon_sym_sizeof, + ACTIONS(2480), 1, + anon_sym_LPAREN2, + STATE(915), 1, + sym_string_literal, + STATE(1438), 1, + sym_expression, + 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, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2482), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2484), 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, + 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, + [26158] = 22, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1524), 1, + anon_sym_offsetof, + ACTIONS(1526), 1, + anon_sym__Generic, + ACTIONS(1530), 1, + sym_number_literal, + ACTIONS(2093), 1, + sym_identifier, + ACTIONS(2099), 1, + anon_sym_sizeof, + ACTIONS(2480), 1, + anon_sym_LPAREN2, + STATE(915), 1, + sym_string_literal, + STATE(1441), 1, + sym_expression, + 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, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2482), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2484), 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, + 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, + [26263] = 22, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1524), 1, + anon_sym_offsetof, + ACTIONS(1526), 1, + anon_sym__Generic, + ACTIONS(1530), 1, + sym_number_literal, + ACTIONS(2093), 1, + sym_identifier, + ACTIONS(2099), 1, + anon_sym_sizeof, + ACTIONS(2480), 1, + anon_sym_LPAREN2, + STATE(915), 1, + sym_string_literal, + STATE(1440), 1, + sym_expression, + 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, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2482), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2484), 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, + 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, + [26368] = 22, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1524), 1, + anon_sym_offsetof, + ACTIONS(1526), 1, + anon_sym__Generic, + ACTIONS(1530), 1, + sym_number_literal, + ACTIONS(2093), 1, + sym_identifier, + ACTIONS(2099), 1, + anon_sym_sizeof, + ACTIONS(2480), 1, + anon_sym_LPAREN2, + STATE(915), 1, + sym_string_literal, + STATE(1018), 1, + sym_expression, + 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, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2482), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2484), 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, + 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, + [26473] = 22, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1524), 1, + anon_sym_offsetof, + ACTIONS(1526), 1, + anon_sym__Generic, + ACTIONS(1530), 1, + sym_number_literal, + ACTIONS(2093), 1, + sym_identifier, + ACTIONS(2099), 1, + anon_sym_sizeof, + ACTIONS(2480), 1, + anon_sym_LPAREN2, + STATE(915), 1, + sym_string_literal, + STATE(1435), 1, + sym_expression, + 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, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2482), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2484), 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, + 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, + [26578] = 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(2634), 1, + anon_sym_LPAREN2, + STATE(987), 1, + sym_string_literal, + STATE(1144), 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, + 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, + [26683] = 22, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1524), 1, + anon_sym_offsetof, + ACTIONS(1526), 1, + anon_sym__Generic, + ACTIONS(1530), 1, + sym_number_literal, + ACTIONS(2093), 1, + sym_identifier, + ACTIONS(2099), 1, + anon_sym_sizeof, + ACTIONS(2480), 1, + anon_sym_LPAREN2, + STATE(915), 1, + sym_string_literal, + STATE(1436), 1, + sym_expression, + 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, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2482), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2484), 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, + 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, + [26788] = 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(1184), 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, + 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, + [26893] = 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(1567), 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, + 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, + [26998] = 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(1183), 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, + 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, + [27103] = 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(1181), 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, + 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, + [27208] = 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(1180), 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, + 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, + [27313] = 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(1179), 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, + 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, + [27418] = 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(1550), 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, + [27523] = 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(1178), 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, + 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, + [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, + 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, + [27733] = 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(1165), 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, + 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, + 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, + [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, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2646), 1, + sym_identifier, + STATE(889), 2, + sym_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(105), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2650), 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(2648), 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, + [28380] = 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(2122), 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, + [28483] = 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(2124), 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, + [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, + 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(2132), 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, + [28756] = 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(2119), 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, + [28859] = 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), 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, + [28926] = 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(1754), 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, + [29029] = 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(1757), 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, + [29132] = 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), 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, + 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, + [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__, + 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, + [29284] = 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(1791), 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, + [29387] = 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(2121), 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, + [29490] = 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(2123), 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, + [29593] = 7, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2664), 1, + sym_identifier, + STATE(872), 2, + sym_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(105), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2668), 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(2666), 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, + [29666] = 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(2130), 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, + [29769] = 21, + 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(1035), 1, + sym_type_specifier, + STATE(1036), 1, + sym_alignas_qualifier, + STATE(1090), 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(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(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_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, + [29869] = 14, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2689), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2692), 1, + anon_sym___declspec, + STATE(1036), 1, + sym_alignas_qualifier, + ACTIONS(2680), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(2683), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(2695), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2686), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(2672), 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(2674), 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(2677), 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(2670), 11, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [29955] = 21, + 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(932), 1, + sym_type_specifier, + STATE(942), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1036), 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(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(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_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, + [30055] = 7, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2698), 1, + sym_identifier, + STATE(896), 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(2650), 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(2648), 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, + [30126] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2700), 16, + 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, + sym_identifier, + ACTIONS(2702), 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, + 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, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [30191] = 7, + 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, + 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(2666), 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, + [30262] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2706), 16, + 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, + sym_identifier, + ACTIONS(2708), 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, + 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, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [30327] = 7, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2710), 1, + sym_identifier, + STATE(898), 2, + sym_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(2713), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2641), 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(2639), 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, + [30398] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1364), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK_LBRACK, + ACTIONS(1362), 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, + [30462] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2718), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK_LBRACK, + ACTIONS(2716), 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, + [30526] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2722), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK_LBRACK, + ACTIONS(2720), 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, + [30590] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2726), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK_LBRACK, + ACTIONS(2724), 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, + [30654] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2730), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK_LBRACK, + ACTIONS(2728), 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, + [30718] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2734), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK_LBRACK, + ACTIONS(2732), 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, + [30782] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2738), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK_LBRACK, + ACTIONS(2736), 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, + [30846] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1442), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK_LBRACK, + ACTIONS(1440), 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, + [30910] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1470), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK_LBRACK, + ACTIONS(1468), 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, + [30974] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1478), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK_LBRACK, + ACTIONS(1476), 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, + [31038] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1426), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK_LBRACK, + ACTIONS(1424), 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, + [31102] = 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), 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, + [31166] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2742), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK_LBRACK, + ACTIONS(2740), 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, + [31230] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2746), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK_LBRACK, + ACTIONS(2744), 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, + [31294] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2750), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK_LBRACK, + ACTIONS(2748), 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, + [31358] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2754), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK_LBRACK, + ACTIONS(2752), 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, + [31422] = 7, + 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, + 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(2758), 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, + [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, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2774), 1, + anon_sym_SEMI, + ACTIONS(2786), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2788), 1, + anon_sym___declspec, + STATE(1202), 1, + sym_alignas_qualifier, + ACTIONS(2772), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + 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(2784), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + STATE(938), 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(2770), 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(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, + [31705] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2662), 4, + anon_sym_LPAREN2, + 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___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, + [31768] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2654), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + 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, + 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, + [31831] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2706), 22, + 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, + sym_identifier, + ACTIONS(2708), 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, + [31894] = 6, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + 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(1962), 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(1956), 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, + [31961] = 15, + 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, + ACTIONS(2792), 1, + anon_sym_SEMI, + STATE(1202), 1, + sym_alignas_qualifier, + ACTIONS(2772), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + 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(2784), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + STATE(938), 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(2770), 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(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, + [32046] = 15, + 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, + ACTIONS(2794), 1, + anon_sym_SEMI, + STATE(1202), 1, + sym_alignas_qualifier, + ACTIONS(2772), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + 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(2784), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + STATE(938), 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(2770), 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(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, + [32131] = 15, + 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, + ACTIONS(2796), 1, + anon_sym_SEMI, + STATE(1202), 1, + sym_alignas_qualifier, + ACTIONS(2772), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + 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(2784), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + STATE(938), 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(2770), 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(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, + [32216] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2700), 22, + 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, + 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, + 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, + [32342] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2658), 4, + 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, + 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, + [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__, + 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, + [32468] = 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), 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_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, + 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, + 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(2804), 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(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(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(2802), 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, + [32684] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2011), 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(2009), 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, + [32746] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2808), 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(2806), 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, + [32808] = 9, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2817), 1, + anon_sym_static, + STATE(995), 1, + sym_alignas_qualifier, + ACTIONS(2820), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(935), 2, + sym_type_qualifier, + aux_sym_array_declarator_repeat1, + ACTIONS(2814), 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(2810), 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(2812), 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, + [32880] = 14, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2838), 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, + 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(2853), 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(2851), 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, + [33126] = 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(2772), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + 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(2784), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + STATE(938), 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(2770), 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(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, + [33208] = 4, + 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, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2857), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(2859), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2855), 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, + 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_primitive_type, + sym_identifier, + [33335] = 8, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2862), 1, + sym_identifier, + ACTIONS(2871), 1, + sym_primitive_type, + STATE(943), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2865), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(2869), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2867), 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_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, + [33404] = 7, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2855), 1, + sym_primitive_type, + STATE(941), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2859), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2876), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(2873), 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, + [33471] = 7, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - STATE(520), 1, + ACTIONS(2879), 1, + sym_identifier, + STATE(875), 1, sym_string_literal, - ACTIONS(103), 5, + ACTIONS(105), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1756), 24, - aux_sym_preproc_elif_token1, + ACTIONS(2760), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -72045,6 +112260,56 @@ 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(2758), 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, + [33538] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2734), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK_LBRACK, + ACTIONS(2732), 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, @@ -72053,17 +112318,67 @@ 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_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, + [33598] = 5, + 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(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, - sym_identifier, - ACTIONS(1750), 33, + ACTIONS(1956), 29, 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, @@ -72090,45 +112405,439 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [75] = 13, + [33660] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2139), 1, + ACTIONS(2746), 4, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_LBRACK_LBRACK, - ACTIONS(2142), 1, + anon_sym_RBRACE, + ACTIONS(2744), 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, - STATE(799), 1, - sym_alignas_qualifier, - ACTIONS(2130), 2, + 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, + [33720] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1470), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK_LBRACK, + ACTIONS(1468), 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, + [33780] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2730), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK_LBRACK, + ACTIONS(2728), 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, + [33840] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2750), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2748), 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, + [33900] = 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), 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, + [33960] = 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), 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, + [34020] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2726), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + 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, + 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, + [34080] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2742), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + 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, + anon_sym___extension__, + anon_sym_extern, anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(2133), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(2145), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(2136), 4, anon_sym___read_mostly, + anon_sym___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(2122), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - STATE(524), 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(2124), 9, - anon_sym___extension__, + 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, @@ -72137,8 +112846,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(2127), 10, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [34140] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1478), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK_LBRACK, + ACTIONS(1476), 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, @@ -72148,7 +112894,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - ACTIONS(2120), 19, + 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, + [34200] = 6, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + STATE(941), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2883), 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, @@ -72158,33 +112947,100 @@ static const uint16_t ts_small_parse_table[] = { 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, + 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, sym_identifier, - [166] = 3, + [34324] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2148), 24, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(2726), 4, + 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_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2724), 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, @@ -72193,243 +113049,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - anon_sym_EQ, - anon_sym_DOT, + 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, - ACTIONS(2150), 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, - 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, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [236] = 25, + [34384] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(19), 1, + ACTIONS(2734), 4, anon_sym_LPAREN2, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(89), 1, - anon_sym_sizeof, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1773), 1, - sym_identifier, - ACTIONS(2152), 1, - anon_sym_RPAREN, - ACTIONS(2154), 1, - anon_sym___extension__, - STATE(671), 1, - sym_string_literal, - STATE(1147), 1, - sym_expression, - STATE(1893), 1, - sym_compound_statement, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, anon_sym_STAR, - anon_sym_AMP, - ACTIONS(87), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(944), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [350] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(89), 1, - anon_sym_sizeof, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1773), 1, - sym_identifier, - ACTIONS(2156), 1, - anon_sym_RPAREN, - ACTIONS(2158), 1, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2732), 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__, - STATE(671), 1, - sym_string_literal, - STATE(1150), 1, - sym_expression, - STATE(1841), 1, - sym_compound_statement, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(87), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(944), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [464] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2160), 24, - 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_extern, anon_sym___attribute__, anon_sym___scanf, anon_sym___printf, @@ -72438,62 +113105,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - anon_sym_EQ, - anon_sym_DOT, + 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, - ACTIONS(2162), 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, - 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, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [534] = 3, + [34444] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2166), 9, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2718), 4, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(2164), 52, + anon_sym_RBRACE, + ACTIONS(2716), 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__, @@ -72501,24 +113158,15 @@ static const uint16_t ts_small_parse_table[] = { 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___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, @@ -72541,25 +113189,24 @@ static const uint16_t ts_small_parse_table[] = { sym_primitive_type, anon_sym_enum, anon_sym_struct, - anon_sym___aligned, anon_sym_union, - anon_sym_asm, - anon_sym___asm__, sym_identifier, - [603] = 3, + [34504] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2170), 9, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1426), 3, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(2168), 52, + ACTIONS(1424), 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__, @@ -72572,19 +113219,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_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -72607,25 +113245,24 @@ static const uint16_t ts_small_parse_table[] = { sym_primitive_type, anon_sym_enum, anon_sym_struct, - anon_sym___aligned, anon_sym_union, - anon_sym_asm, - anon_sym___asm__, sym_identifier, - [672] = 3, + [34564] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2174), 9, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2722), 3, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(2172), 52, + 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, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -72638,19 +113275,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_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -72673,25 +113301,24 @@ static const uint16_t ts_small_parse_table[] = { sym_primitive_type, anon_sym_enum, anon_sym_struct, - anon_sym___aligned, anon_sym_union, - anon_sym_asm, - anon_sym___asm__, sym_identifier, - [741] = 3, + [34624] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2178), 9, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1470), 4, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(2176), 52, + anon_sym_RBRACE, + ACTIONS(1468), 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__, @@ -72704,19 +113331,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_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -72739,445 +113357,26 @@ static const uint16_t ts_small_parse_table[] = { sym_primitive_type, anon_sym_enum, anon_sym_struct, - anon_sym___aligned, anon_sym_union, - anon_sym_asm, - anon_sym___asm__, sym_identifier, - [810] = 3, + [34684] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2180), 27, - 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___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_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DOT, - sym_identifier, - ACTIONS(2182), 34, - 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, + ACTIONS(1442), 4, 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, - anon_sym_LBRACE, - anon_sym_RBRACE, - 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, - [879] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2184), 27, - 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___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_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DOT, - sym_identifier, - ACTIONS(2186), 34, - 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_LBRACK_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, - 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, - [948] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(89), 1, - anon_sym_sizeof, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1773), 1, - sym_identifier, - ACTIONS(2188), 1, + ACTIONS(1440), 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__, - STATE(671), 1, - sym_string_literal, - STATE(1194), 1, - sym_expression, - STATE(2028), 1, - sym_compound_statement, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(87), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(944), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [1059] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2190), 27, - 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___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_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DOT, - sym_identifier, - ACTIONS(2192), 34, - 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_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - 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, - [1128] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2194), 27, - 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___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_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DOT, - sym_identifier, - ACTIONS(2196), 34, - 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_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - 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, - [1197] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2198), 27, - 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___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_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DOT, - sym_identifier, - ACTIONS(2200), 34, - 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_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - 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, - [1266] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2202), 27, - 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_extern, anon_sym___attribute__, anon_sym___scanf, anon_sym___printf, @@ -73186,64 +113385,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DOT, + 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, - ACTIONS(2204), 34, - 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_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - 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, - [1335] = 3, + [34744] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2206), 27, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(2722), 4, + 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_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2720), 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, @@ -73252,64 +113441,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DOT, + 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, - ACTIONS(2208), 34, - 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_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - 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, - [1404] = 3, + [34804] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2210), 27, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(2754), 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_LBRACK_LBRACK, + ACTIONS(2752), 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, @@ -73318,64 +113497,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DOT, + 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, - ACTIONS(2212), 34, - 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_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - 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, - [1473] = 3, + [34864] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2214), 27, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(1364), 4, + 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_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(1362), 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, @@ -73384,64 +113553,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DOT, + 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, - ACTIONS(2216), 34, - 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_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - 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, - [1542] = 3, + [34924] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2218), 27, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(2746), 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_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, + anon_sym___extension__, + anon_sym_extern, anon_sym___attribute__, anon_sym___scanf, anon_sym___printf, @@ -73450,177 +113609,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DOT, + 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, - ACTIONS(2220), 34, - 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_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - 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, - [1611] = 23, + [34984] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(19), 1, + ACTIONS(1450), 4, anon_sym_LPAREN2, - ACTIONS(89), 1, - anon_sym_sizeof, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1773), 1, - sym_identifier, - ACTIONS(2222), 1, - anon_sym_COLON, - STATE(671), 1, - sym_string_literal, - STATE(1154), 1, - sym_expression, - STATE(2253), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(87), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(944), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [1719] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2224), 1, - sym_identifier, - ACTIONS(2230), 1, anon_sym_STAR, - ACTIONS(2232), 1, - anon_sym_LBRACK, - STATE(1271), 1, - sym_gnu_asm_expression, - ACTIONS(33), 2, + 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, + anon_sym___extension__, + anon_sym_extern, anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(2228), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(1259), 3, - sym_preproc_call_expression, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(37), 4, anon_sym___read_mostly, + anon_sym___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(2226), 41, + 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, + [35044] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1364), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK_LBRACK, + ACTIONS(1362), 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, - 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, @@ -73650,37 +113750,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, anon_sym_struct, anon_sym_union, - [1805] = 14, + sym_identifier, + [35104] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1748), 1, - anon_sym_const, - ACTIONS(1752), 1, + ACTIONS(1426), 4, anon_sym_LPAREN2, - ACTIONS(1758), 1, anon_sym_STAR, - ACTIONS(1765), 1, - anon_sym_EQ, - STATE(520), 1, - sym_string_literal, - STATE(885), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(1781), 2, - anon_sym_RPAREN, - anon_sym_LBRACK, - ACTIONS(2234), 4, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(1424), 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, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1761), 10, - anon_sym___extension__, + 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, @@ -73690,110 +113802,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(1769), 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(1756), 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(1750), 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, - [1895] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(41), 1, - anon_sym___declspec, - ACTIONS(57), 1, sym_primitive_type, - ACTIONS(59), 1, anon_sym_enum, - ACTIONS(61), 1, anon_sym_struct, - ACTIONS(63), 1, anon_sym_union, - ACTIONS(1145), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1869), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2236), 1, sym_identifier, - ACTIONS(2238), 1, - anon_sym_RPAREN, - STATE(799), 1, - sym_alignas_qualifier, - STATE(807), 1, - sym_type_specifier, - STATE(890), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1343), 1, - sym__declaration_specifiers, - STATE(1738), 1, - sym_variadic_parameter, - STATE(1832), 1, - sym_parameter_declaration, - ACTIONS(33), 2, + [35164] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2718), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK_LBRACK, + ACTIONS(2716), 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___must_hold, - ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(55), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(37), 4, anon_sym___read_mostly, + anon_sym___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(49), 4, + anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(873), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(805), 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(53), 9, - anon_sym___extension__, + 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, @@ -73802,8 +113856,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(51), 10, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [35224] = 6, + 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(2889), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(2887), 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, @@ -73813,73 +113910,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [2007] = 24, + 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, + [35288] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(41), 1, - anon_sym___declspec, - ACTIONS(57), 1, - sym_primitive_type, - ACTIONS(59), 1, - anon_sym_enum, - ACTIONS(61), 1, - anon_sym_struct, - ACTIONS(63), 1, - anon_sym_union, - ACTIONS(391), 1, - anon_sym_LBRACE, - ACTIONS(1145), 1, + ACTIONS(2768), 4, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_LBRACK_LBRACK, - ACTIONS(2008), 1, - sym_identifier, - STATE(309), 1, - sym_compound_statement, - STATE(799), 1, - sym_alignas_qualifier, - STATE(807), 1, - sym_type_specifier, - STATE(890), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1248), 1, - sym__declaration_specifiers, - ACTIONS(33), 2, + anon_sym_RBRACE, + ACTIONS(2766), 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___must_hold, - ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(55), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(581), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(37), 4, anon_sym___read_mostly, + anon_sym___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(49), 4, + anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(873), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(805), 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(53), 9, - anon_sym___extension__, + 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, @@ -73888,8 +113970,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(51), 10, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [35348] = 6, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + STATE(979), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2893), 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___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, @@ -73899,158 +114024,176 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [2117] = 23, + 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, + [35412] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(19), 1, + ACTIONS(2764), 4, anon_sym_LPAREN2, - ACTIONS(89), 1, - anon_sym_sizeof, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1773), 1, - sym_identifier, - ACTIONS(2240), 1, - anon_sym_COLON, - STATE(671), 1, - sym_string_literal, - STATE(1169), 1, - sym_expression, - STATE(2186), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, anon_sym_STAR, - anon_sym_AMP, - ACTIONS(87), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(944), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [2225] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(41), 1, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2762), 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, - ACTIONS(57), 1, + 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, - ACTIONS(59), 1, anon_sym_enum, - ACTIONS(61), 1, anon_sym_struct, - ACTIONS(63), 1, anon_sym_union, - ACTIONS(1145), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1869), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2008), 1, sym_identifier, - ACTIONS(2242), 1, - anon_sym_RPAREN, - STATE(799), 1, - sym_alignas_qualifier, - STATE(807), 1, - sym_type_specifier, - STATE(890), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1343), 1, - sym__declaration_specifiers, - ACTIONS(33), 2, + [35472] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1442), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK_LBRACK, + ACTIONS(1440), 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___must_hold, - ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(55), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1890), 2, - sym_variadic_parameter, - sym_parameter_declaration, - ACTIONS(37), 4, anon_sym___read_mostly, + anon_sym___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(49), 4, + anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(873), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(805), 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(53), 9, + 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, + [35532] = 6, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + STATE(956), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2899), 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___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, @@ -74059,8 +114202,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(51), 10, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + [35596] = 6, + 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, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(2903), 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, @@ -74070,83 +114252,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [2335] = 24, + 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, + [35660] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(41), 1, - anon_sym___declspec, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - sym_primitive_type, - ACTIONS(59), 1, - anon_sym_enum, - ACTIONS(61), 1, - anon_sym_struct, - ACTIONS(63), 1, - anon_sym_union, - ACTIONS(1145), 1, + ACTIONS(2738), 4, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_LBRACK_LBRACK, - ACTIONS(2008), 1, - sym_identifier, - STATE(380), 1, - sym_compound_statement, - STATE(799), 1, - sym_alignas_qualifier, - STATE(807), 1, - sym_type_specifier, - STATE(890), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1248), 1, - sym__declaration_specifiers, - ACTIONS(33), 2, + anon_sym_RBRACE, + ACTIONS(2736), 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___must_hold, - ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(55), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(605), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(37), 4, anon_sym___read_mostly, + anon_sym___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(49), 4, + anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(873), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(805), 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(53), 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(51), 10, - anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -74156,83 +114304,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [2445] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(41), 1, - anon_sym___declspec, - ACTIONS(57), 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, - ACTIONS(59), 1, anon_sym_enum, - ACTIONS(61), 1, anon_sym_struct, - ACTIONS(63), 1, anon_sym_union, - ACTIONS(137), 1, - anon_sym_LBRACE, - ACTIONS(1145), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2008), 1, sym_identifier, - STATE(131), 1, - sym_compound_statement, - STATE(799), 1, - sym_alignas_qualifier, - STATE(807), 1, - sym_type_specifier, - STATE(890), 1, + [35720] = 6, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + STATE(973), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1248), 1, - sym__declaration_specifiers, - ACTIONS(33), 2, + ACTIONS(2909), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(2911), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2907), 40, + anon_sym___extension__, + anon_sym_extern, anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(55), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(556), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(37), 4, anon_sym___read_mostly, + anon_sym___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(49), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(873), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(805), 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(53), 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(51), 10, - 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, @@ -74242,83 +114366,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [2555] = 24, + 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, + [35784] = 8, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(41), 1, - anon_sym___declspec, - ACTIONS(57), 1, - sym_primitive_type, - ACTIONS(59), 1, - anon_sym_enum, - ACTIONS(61), 1, - anon_sym_struct, - ACTIONS(63), 1, - anon_sym_union, - ACTIONS(137), 1, - anon_sym_LBRACE, - ACTIONS(1145), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2008), 1, + 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, - STATE(158), 1, - sym_compound_statement, - STATE(799), 1, - sym_alignas_qualifier, - STATE(807), 1, - sym_type_specifier, - STATE(890), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1248), 1, - sym__declaration_specifiers, - ACTIONS(33), 2, + 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, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2754), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2752), 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___must_hold, - ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(55), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(613), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(37), 4, anon_sym___read_mostly, + anon_sym___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(49), 4, + anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(873), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(805), 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(53), 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(51), 10, - anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -74328,83 +114478,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [2665] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(41), 1, - anon_sym___declspec, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(57), 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, - ACTIONS(59), 1, anon_sym_enum, - ACTIONS(61), 1, anon_sym_struct, - ACTIONS(63), 1, anon_sym_union, - ACTIONS(1145), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2008), 1, sym_identifier, - STATE(375), 1, - sym_compound_statement, - STATE(799), 1, - sym_alignas_qualifier, - STATE(807), 1, - sym_type_specifier, - STATE(890), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1248), 1, - sym__declaration_specifiers, - ACTIONS(33), 2, + [35912] = 6, + 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, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK_LBRACK, + ACTIONS(2740), 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___must_hold, - ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(55), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(602), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(37), 4, anon_sym___read_mostly, + anon_sym___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(49), 4, + anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(873), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(805), 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(53), 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(51), 10, - anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -74414,168 +114592,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [2775] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1429), 1, - sym_identifier, - ACTIONS(1439), 1, - anon_sym_LBRACE, - ACTIONS(1779), 1, - anon_sym_sizeof, - ACTIONS(2244), 1, - anon_sym_LPAREN2, - STATE(671), 1, - sym_string_literal, - STATE(760), 1, - sym_initializer_list, - STATE(1057), 1, - sym_expression, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(1775), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1777), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2018), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2246), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(762), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [2883] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(41), 1, - anon_sym___declspec, - ACTIONS(57), 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, - ACTIONS(59), 1, anon_sym_enum, - ACTIONS(61), 1, anon_sym_struct, - ACTIONS(63), 1, anon_sym_union, - ACTIONS(137), 1, - anon_sym_LBRACE, - ACTIONS(1145), 1, + sym_identifier, + [36036] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1478), 4, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_LBRACK_LBRACK, - ACTIONS(2008), 1, - sym_identifier, - STATE(153), 1, - sym_compound_statement, - STATE(799), 1, - sym_alignas_qualifier, - STATE(807), 1, - sym_type_specifier, - STATE(890), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1248), 1, - sym__declaration_specifiers, - ACTIONS(33), 2, + anon_sym_RBRACE, + ACTIONS(1476), 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___must_hold, - ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(55), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(613), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(37), 4, anon_sym___read_mostly, + anon_sym___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(49), 4, + anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(873), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(805), 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(53), 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(51), 10, - anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -74585,73 +114648,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [2993] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(41), 1, - anon_sym___declspec, - ACTIONS(57), 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, - ACTIONS(59), 1, anon_sym_enum, - ACTIONS(61), 1, anon_sym_struct, - ACTIONS(63), 1, anon_sym_union, - ACTIONS(137), 1, - anon_sym_LBRACE, - ACTIONS(1145), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2008), 1, sym_identifier, - STATE(122), 1, - sym_compound_statement, - STATE(799), 1, - sym_alignas_qualifier, - STATE(807), 1, - sym_type_specifier, - STATE(890), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1248), 1, - sym__declaration_specifiers, - ACTIONS(33), 2, + [36096] = 6, + 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(2760), 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(2758), 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, + [36160] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2750), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK_LBRACK, + ACTIONS(2748), 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___must_hold, - ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(55), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(613), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(37), 4, anon_sym___read_mostly, + anon_sym___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(49), 4, + anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(873), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(805), 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(53), 9, - anon_sym___extension__, + 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, @@ -74660,8 +114770,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(51), 10, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [36220] = 6, + 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, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(2917), 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, @@ -74671,83 +114824,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [3103] = 24, + 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, + [36284] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(41), 1, - anon_sym___declspec, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - sym_primitive_type, - ACTIONS(59), 1, - anon_sym_enum, - ACTIONS(61), 1, - anon_sym_struct, - ACTIONS(63), 1, - anon_sym_union, - ACTIONS(1145), 1, + ACTIONS(2738), 3, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_LBRACK_LBRACK, - ACTIONS(2008), 1, - sym_identifier, - STATE(394), 1, - sym_compound_statement, - STATE(799), 1, - sym_alignas_qualifier, - STATE(807), 1, - sym_type_specifier, - STATE(890), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1248), 1, - sym__declaration_specifiers, - ACTIONS(33), 2, + ACTIONS(2736), 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___must_hold, - ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(55), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(559), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(37), 4, anon_sym___read_mostly, + anon_sym___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(49), 4, + anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(873), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(805), 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(53), 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(51), 10, - anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -74757,83 +114876,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [3213] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(41), 1, - anon_sym___declspec, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(57), 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, - ACTIONS(59), 1, anon_sym_enum, - ACTIONS(61), 1, anon_sym_struct, - ACTIONS(63), 1, anon_sym_union, - ACTIONS(1145), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2008), 1, sym_identifier, - STATE(378), 1, - sym_compound_statement, - STATE(799), 1, - sym_alignas_qualifier, - STATE(807), 1, - sym_type_specifier, - STATE(890), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1248), 1, - sym__declaration_specifiers, - ACTIONS(33), 2, + [36344] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2730), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2728), 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___must_hold, - ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(55), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(613), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(37), 4, anon_sym___read_mostly, + anon_sym___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(49), 4, + anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(873), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(805), 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(53), 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(51), 10, - anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -74843,168 +114932,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [3323] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(89), 1, - anon_sym_sizeof, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1773), 1, - sym_identifier, - ACTIONS(2248), 1, - anon_sym_COLON, - STATE(671), 1, - sym_string_literal, - STATE(1155), 1, - sym_expression, - STATE(2166), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(87), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(944), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [3431] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(41), 1, - anon_sym___declspec, - ACTIONS(57), 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, - ACTIONS(59), 1, anon_sym_enum, - ACTIONS(61), 1, anon_sym_struct, - ACTIONS(63), 1, anon_sym_union, - ACTIONS(137), 1, - anon_sym_LBRACE, - ACTIONS(1145), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2008), 1, sym_identifier, - STATE(123), 1, - sym_compound_statement, - STATE(799), 1, - sym_alignas_qualifier, - STATE(807), 1, - sym_type_specifier, - STATE(890), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1248), 1, - sym__declaration_specifiers, - ACTIONS(33), 2, + [36404] = 7, + 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, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_EQ, + ACTIONS(2921), 9, anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(55), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(613), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(37), 4, anon_sym___read_mostly, + anon_sym___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(49), 4, + 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, - STATE(873), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(805), 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(53), 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(51), 10, - anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -75014,73 +114991,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [3541] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(41), 1, - anon_sym___declspec, - ACTIONS(57), 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, - ACTIONS(59), 1, anon_sym_enum, - ACTIONS(61), 1, anon_sym_struct, - ACTIONS(63), 1, anon_sym_union, - ACTIONS(137), 1, + [36469] = 11, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2942), 1, anon_sym_LBRACE, - ACTIONS(1145), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2008), 1, - sym_identifier, - STATE(139), 1, - sym_compound_statement, - STATE(799), 1, - sym_alignas_qualifier, - STATE(807), 1, - sym_type_specifier, - STATE(890), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1248), 1, - sym__declaration_specifiers, - ACTIONS(33), 2, + 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(35), 2, + ACTIONS(2936), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(55), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(553), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(37), 4, + 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(49), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(873), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(805), 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(53), 9, + 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, @@ -75089,8 +115064,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(51), 10, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + [36542] = 11, + 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, + 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, + 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, @@ -75100,413 +115118,295 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [3651] = 23, + 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(19), 1, + ACTIONS(2962), 19, anon_sym_LPAREN2, - ACTIONS(89), 1, - anon_sym_sizeof, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1773), 1, - sym_identifier, - ACTIONS(2250), 1, - anon_sym_COLON, - STATE(671), 1, - sym_string_literal, - STATE(1163), 1, - sym_expression, - STATE(2222), 1, - sym_comma_expression, - ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(87), 2, + anon_sym_RBRACK, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, + sym_number_literal, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(944), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [3759] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(89), 1, - anon_sym_sizeof, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1773), 1, - sym_identifier, - ACTIONS(2252), 1, - anon_sym_RPAREN, - STATE(671), 1, - sym_string_literal, - STATE(1190), 1, - sym_expression, - STATE(2056), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(2960), 29, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(87), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(91), 5, + 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, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(944), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [3867] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(89), 1, - anon_sym_sizeof, - ACTIONS(93), 1, anon_sym_offsetof, - ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1773), 1, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, sym_identifier, - ACTIONS(2254), 1, - anon_sym_RPAREN, - STATE(671), 1, - sym_string_literal, - STATE(1191), 1, - sym_expression, - STATE(2055), 1, - sym_comma_expression, - ACTIONS(21), 2, + [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, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(87), 2, + anon_sym_RBRACK, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, + sym_number_literal, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(944), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [3975] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(89), 1, - anon_sym_sizeof, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1773), 1, - sym_identifier, - ACTIONS(2256), 1, - anon_sym_SEMI, - STATE(671), 1, - sym_string_literal, - STATE(1192), 1, - sym_expression, - STATE(2049), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(2964), 29, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(87), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(91), 5, + 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, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(944), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [4083] = 24, + 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(41), 1, - anon_sym___declspec, - ACTIONS(57), 1, - sym_primitive_type, - ACTIONS(59), 1, - anon_sym_enum, - ACTIONS(61), 1, - anon_sym_struct, - ACTIONS(63), 1, - anon_sym_union, - ACTIONS(137), 1, + ACTIONS(2956), 1, anon_sym_LBRACE, - ACTIONS(1145), 1, + 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___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(2008), 1, + 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_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, - STATE(138), 1, - sym_compound_statement, - STATE(799), 1, - sym_alignas_qualifier, - STATE(807), 1, - sym_type_specifier, - STATE(890), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1248), 1, - sym__declaration_specifiers, - ACTIONS(33), 2, + [36806] = 11, + 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(35), 2, + ACTIONS(2952), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(55), 2, + ACTIONS(2954), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(2976), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(2974), 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, - STATE(561), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(37), 4, + 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, anon_sym___read_mostly, + anon_sym___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(49), 4, + sym_identifier, + ACTIONS(2983), 30, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(873), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(805), 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(53), 9, - anon_sym___extension__, + 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, @@ -75515,8 +115415,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(51), 10, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + [36944] = 7, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2988), 1, + 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___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, @@ -75526,158 +115468,186 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [4193] = 23, + 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, + [37009] = 19, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1439), 1, - anon_sym_LBRACE, - ACTIONS(2000), 1, - sym_identifier, - ACTIONS(2006), 1, - anon_sym_sizeof, - ACTIONS(2014), 1, + ACTIONS(2993), 1, anon_sym_LPAREN2, - STATE(671), 1, - sym_string_literal, - STATE(760), 1, - sym_initializer_list, - STATE(1057), 1, - sym_expression, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(2002), 2, + 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(2004), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2018), 2, + 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_AMP, - ACTIONS(2028), 2, + 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(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(1066), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [4301] = 24, + 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, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(41), 1, - anon_sym___declspec, - ACTIONS(57), 1, - sym_primitive_type, - ACTIONS(59), 1, - anon_sym_enum, - ACTIONS(61), 1, - anon_sym_struct, - ACTIONS(63), 1, - anon_sym_union, - ACTIONS(391), 1, - anon_sym_LBRACE, - ACTIONS(1145), 1, + ACTIONS(2011), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2008), 1, - sym_identifier, - STATE(363), 1, - sym_compound_statement, - STATE(799), 1, - sym_alignas_qualifier, - STATE(807), 1, - sym_type_specifier, - STATE(890), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1248), 1, - sym__declaration_specifiers, - ACTIONS(33), 2, + ACTIONS(2009), 41, + anon_sym___extension__, + anon_sym_extern, anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(55), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(613), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(37), 4, anon_sym___read_mostly, + anon_sym___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(49), 4, + anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(873), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(805), 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(53), 9, - anon_sym___extension__, + 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, @@ -75686,8 +115656,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(51), 10, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [37227] = 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, + anon_sym_LBRACK_LBRACK, + ACTIONS(3023), 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, @@ -75697,158 +115702,234 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [4411] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(89), 1, - anon_sym_sizeof, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1773), 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, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - ACTIONS(2258), 1, - anon_sym_COLON, - STATE(671), 1, + [37285] = 7, + ACTIONS(1971), 1, + anon_sym_EQ, + STATE(875), 1, sym_string_literal, - STATE(1178), 1, - sym_expression, - STATE(2162), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + 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, - ACTIONS(25), 2, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(87), 2, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1956), 18, + 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_COLON, + anon_sym_QMARK, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(944), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [4519] = 24, + anon_sym_DOT, + anon_sym_DASH_GT, + [37349] = 9, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(41), 1, - anon_sym___declspec, - ACTIONS(57), 1, - sym_primitive_type, - ACTIONS(59), 1, - anon_sym_enum, - ACTIONS(61), 1, - anon_sym_struct, - ACTIONS(63), 1, - anon_sym_union, - ACTIONS(1145), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1869), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1871), 1, - anon_sym_RPAREN, - ACTIONS(2008), 1, - sym_identifier, - STATE(799), 1, - sym_alignas_qualifier, - STATE(807), 1, - sym_type_specifier, - STATE(890), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1343), 1, - sym__declaration_specifiers, - ACTIONS(33), 2, + 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, anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, anon_sym___must_hold, - ACTIONS(35), 2, + 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(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, + 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, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [37483] = 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, + anon_sym_LBRACK_LBRACK, + ACTIONS(3035), 41, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, anon_sym___scanf, anon_sym___printf, - ACTIONS(55), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1832), 2, - sym_variadic_parameter, - sym_parameter_declaration, - ACTIONS(37), 4, anon_sym___read_mostly, + anon_sym___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(49), 4, + anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(873), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(805), 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(53), 9, - anon_sym___extension__, + 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, @@ -75857,8 +115938,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(51), 10, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [37541] = 10, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3043), 1, + anon_sym_LBRACE, + STATE(1083), 1, + sym_field_declaration_list, + STATE(1132), 1, + sym_attribute_specifier, + ACTIONS(2780), 2, + 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___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(3041), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3039), 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, @@ -75868,253 +115994,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [4629] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(89), 1, - anon_sym_sizeof, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1773), 1, - sym_identifier, - ACTIONS(2260), 1, - anon_sym_RPAREN, - STATE(671), 1, - sym_string_literal, - STATE(1153), 1, - sym_expression, - STATE(2315), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(87), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(944), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [4737] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1429), 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_identifier, - ACTIONS(1439), 1, - anon_sym_LBRACE, - ACTIONS(1441), 1, - anon_sym_sizeof, - ACTIONS(2262), 1, - anon_sym_LPAREN2, - STATE(671), 1, - sym_string_literal, - STATE(760), 1, - sym_initializer_list, - STATE(771), 1, - sym_expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(1433), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1435), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2264), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(762), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [4845] = 24, + [37611] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(41), 1, - anon_sym___declspec, - ACTIONS(57), 1, - sym_primitive_type, - ACTIONS(59), 1, - anon_sym_enum, - ACTIONS(61), 1, - anon_sym_struct, - ACTIONS(63), 1, - anon_sym_union, - ACTIONS(137), 1, - anon_sym_LBRACE, - ACTIONS(1145), 1, + ACTIONS(2708), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2008), 1, - sym_identifier, - STATE(150), 1, - sym_compound_statement, - STATE(799), 1, - sym_alignas_qualifier, - STATE(807), 1, - sym_type_specifier, - STATE(890), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1248), 1, - sym__declaration_specifiers, - ACTIONS(33), 2, + anon_sym_LBRACE, + ACTIONS(2706), 45, + anon_sym___extension__, + anon_sym_extern, anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(55), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(557), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(37), 4, anon_sym___read_mostly, + anon_sym___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(49), 4, + anon_sym___declspec, + 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, - STATE(873), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(805), 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(53), 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(51), 10, - anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -76124,150 +116044,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [4955] = 23, + 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, + [37669] = 9, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(19), 1, + ACTIONS(2993), 1, anon_sym_LPAREN2, - ACTIONS(89), 1, - anon_sym_sizeof, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1773), 1, - sym_identifier, - ACTIONS(2266), 1, - anon_sym_SEMI, - STATE(671), 1, - sym_string_literal, - STATE(1177), 1, - sym_expression, - STATE(2170), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + 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(3047), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(87), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(944), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [5063] = 25, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(3045), 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, + [37737] = 14, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(41), 1, + ACTIONS(43), 1, anon_sym___declspec, - ACTIONS(57), 1, - sym_primitive_type, - ACTIONS(59), 1, - anon_sym_enum, - ACTIONS(61), 1, - anon_sym_struct, - ACTIONS(63), 1, - anon_sym_union, - ACTIONS(1145), 1, + ACTIONS(1210), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1869), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2236), 1, - sym_identifier, - ACTIONS(2268), 1, - anon_sym_RPAREN, - STATE(799), 1, + STATE(1036), 1, sym_alignas_qualifier, - STATE(807), 1, - sym_type_specifier, - STATE(890), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1343), 1, - sym__declaration_specifiers, - STATE(1726), 1, - sym_variadic_parameter, - STATE(1832), 1, - sym_parameter_declaration, - ACTIONS(33), 2, + ACTIONS(35), 2, anon_sym___attribute__, anon_sym___must_hold, - ACTIONS(35), 2, + ACTIONS(37), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(55), 2, + ACTIONS(57), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(37), 4, + ACTIONS(2770), 3, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + ACTIONS(39), 4, anon_sym___read_mostly, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(49), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(873), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(805), 7, + 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, @@ -76275,7 +116161,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(53), 9, + ACTIONS(55), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -76285,7 +116171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(51), 10, + ACTIONS(53), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -76296,168 +116182,164 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [5175] = 23, + [37815] = 9, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(19), 1, + ACTIONS(2993), 1, anon_sym_LPAREN2, - ACTIONS(89), 1, - anon_sym_sizeof, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1773), 1, - sym_identifier, - ACTIONS(2270), 1, - anon_sym_SEMI, - STATE(671), 1, - sym_string_literal, - STATE(1156), 1, - sym_expression, - STATE(2221), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + 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(3051), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(87), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(944), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [5283] = 24, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(3049), 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, + [37883] = 9, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(41), 1, - anon_sym___declspec, - ACTIONS(57), 1, - sym_primitive_type, - ACTIONS(59), 1, - anon_sym_enum, - ACTIONS(61), 1, - anon_sym_struct, - ACTIONS(63), 1, - anon_sym_union, - ACTIONS(391), 1, + 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(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), 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, + [37951] = 10, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2942), 1, anon_sym_LBRACE, - ACTIONS(1145), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2008), 1, - sym_identifier, - STATE(351), 1, - sym_compound_statement, - STATE(799), 1, - sym_alignas_qualifier, - STATE(807), 1, - sym_type_specifier, - STATE(890), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1248), 1, - sym__declaration_specifiers, - ACTIONS(33), 2, + STATE(1089), 1, + sym_enumerator_list, + STATE(1163), 1, + sym_attribute_specifier, + ACTIONS(3061), 2, anon_sym___attribute__, anon_sym___must_hold, - ACTIONS(35), 2, + ACTIONS(3064), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(55), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(569), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(37), 4, + 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___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(49), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(873), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(805), 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(53), 9, + ACTIONS(3057), 32, 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(51), 10, 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, @@ -76467,64 +116349,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [5393] = 24, + 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, + [38021] = 14, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(41), 1, + ACTIONS(43), 1, anon_sym___declspec, - ACTIONS(57), 1, - sym_primitive_type, - ACTIONS(59), 1, - anon_sym_enum, - ACTIONS(61), 1, - anon_sym_struct, - ACTIONS(63), 1, - anon_sym_union, - ACTIONS(391), 1, - anon_sym_LBRACE, - ACTIONS(1145), 1, + ACTIONS(1210), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2008), 1, - sym_identifier, - STATE(349), 1, - sym_compound_statement, - STATE(799), 1, + STATE(1036), 1, sym_alignas_qualifier, - STATE(807), 1, - sym_type_specifier, - STATE(890), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1248), 1, - sym__declaration_specifiers, - ACTIONS(33), 2, + ACTIONS(35), 2, anon_sym___attribute__, anon_sym___must_hold, - ACTIONS(35), 2, + ACTIONS(37), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(55), 2, + ACTIONS(57), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(613), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(37), 4, + ACTIONS(2847), 3, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + ACTIONS(39), 4, anon_sym___read_mostly, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(49), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(873), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(805), 7, + 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, @@ -76532,7 +116403,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(53), 9, + ACTIONS(55), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -76542,7 +116413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(51), 10, + ACTIONS(53), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -76553,64 +116424,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [5503] = 24, + [38099] = 14, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(41), 1, + ACTIONS(43), 1, anon_sym___declspec, - ACTIONS(57), 1, - sym_primitive_type, - ACTIONS(59), 1, - anon_sym_enum, - ACTIONS(61), 1, - anon_sym_struct, - ACTIONS(63), 1, - anon_sym_union, - ACTIONS(391), 1, - anon_sym_LBRACE, - ACTIONS(1145), 1, + ACTIONS(1210), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2008), 1, - sym_identifier, - STATE(344), 1, - sym_compound_statement, - STATE(799), 1, + STATE(1036), 1, sym_alignas_qualifier, - STATE(807), 1, - sym_type_specifier, - STATE(890), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1248), 1, - sym__declaration_specifiers, - ACTIONS(33), 2, + ACTIONS(35), 2, anon_sym___attribute__, anon_sym___must_hold, - ACTIONS(35), 2, + ACTIONS(37), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(55), 2, + ACTIONS(57), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(613), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(37), 4, + ACTIONS(2851), 3, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + ACTIONS(39), 4, anon_sym___read_mostly, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(49), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(873), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(805), 7, + ACTIONS(2853), 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, @@ -76618,7 +116467,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(53), 9, + ACTIONS(55), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -76628,7 +116477,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(51), 10, + ACTIONS(53), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -76639,83 +116488,166 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [5613] = 24, + [38177] = 9, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(41), 1, - anon_sym___declspec, - ACTIONS(57), 1, - sym_primitive_type, - ACTIONS(59), 1, - anon_sym_enum, - ACTIONS(61), 1, - anon_sym_struct, - ACTIONS(63), 1, - anon_sym_union, - ACTIONS(391), 1, - anon_sym_LBRACE, - ACTIONS(1145), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2008), 1, - sym_identifier, - STATE(362), 1, - sym_compound_statement, - STATE(799), 1, - sym_alignas_qualifier, - STATE(807), 1, - sym_type_specifier, - STATE(890), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1248), 1, - sym__declaration_specifiers, - ACTIONS(33), 2, + 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(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), 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, - ACTIONS(35), 2, + 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, + [38245] = 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(3074), 1, + anon_sym_EQ, + ACTIONS(3076), 1, + anon_sym_QMARK, + 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(3070), 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, + [38337] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2702), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(2700), 45, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, anon_sym___scanf, anon_sym___printf, - ACTIONS(55), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(613), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(37), 4, anon_sym___read_mostly, + anon_sym___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(49), 4, + anon_sym___declspec, + 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, - STATE(873), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(805), 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(53), 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(51), 10, - anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -76725,168 +116657,193 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [5723] = 23, + 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, + [38395] = 21, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(19), 1, + ACTIONS(2993), 1, anon_sym_LPAREN2, - ACTIONS(89), 1, - anon_sym_sizeof, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1439), 1, - anon_sym_LBRACE, - ACTIONS(1773), 1, - sym_identifier, - STATE(671), 1, - sym_string_literal, - STATE(760), 1, - sym_initializer_list, - STATE(771), 1, - sym_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + 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(3080), 1, + anon_sym_EQ, + STATE(1039), 1, + sym_argument_list, + ACTIONS(2995), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + 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(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(87), 2, + 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(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(944), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [5831] = 24, + 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_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, + [38579] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(41), 1, - anon_sym___declspec, - ACTIONS(57), 1, - sym_primitive_type, - ACTIONS(59), 1, - anon_sym_enum, - ACTIONS(61), 1, - anon_sym_struct, - ACTIONS(63), 1, - anon_sym_union, - ACTIONS(455), 1, - anon_sym_LBRACE, - ACTIONS(1145), 1, + ACTIONS(3088), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2008), 1, - sym_identifier, - STATE(297), 1, - sym_compound_statement, - STATE(799), 1, - sym_alignas_qualifier, - STATE(807), 1, - sym_type_specifier, - STATE(890), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1248), 1, - sym__declaration_specifiers, - ACTIONS(33), 2, + ACTIONS(3086), 41, + anon_sym___extension__, + anon_sym_extern, anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(55), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(613), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(37), 4, anon_sym___read_mostly, + anon_sym___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(49), 4, + anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(873), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(805), 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(53), 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(51), 10, - anon_sym_extern, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -76896,83 +116853,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [5941] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(41), 1, - anon_sym___declspec, - ACTIONS(57), 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, - ACTIONS(59), 1, anon_sym_enum, - ACTIONS(61), 1, anon_sym_struct, - ACTIONS(63), 1, anon_sym_union, - ACTIONS(391), 1, - anon_sym_LBRACE, - ACTIONS(1145), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2008), 1, sym_identifier, - STATE(365), 1, - sym_compound_statement, - STATE(799), 1, - sym_alignas_qualifier, - STATE(807), 1, - sym_type_specifier, - STATE(890), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1248), 1, - sym__declaration_specifiers, - ACTIONS(33), 2, + [38637] = 10, + 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, anon_sym___attribute__, anon_sym___must_hold, - ACTIONS(35), 2, + ACTIONS(2782), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(55), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(580), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(37), 4, + ACTIONS(2784), 4, anon_sym___read_mostly, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(49), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(873), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(805), 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(53), 9, + ACTIONS(3092), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3090), 32, 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(51), 10, 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, @@ -76982,83 +116917,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [6051] = 24, + 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, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(41), 1, - anon_sym___declspec, - ACTIONS(57), 1, - sym_primitive_type, - ACTIONS(59), 1, - anon_sym_enum, - ACTIONS(61), 1, - anon_sym_struct, - ACTIONS(63), 1, - anon_sym_union, - ACTIONS(455), 1, - anon_sym_LBRACE, - ACTIONS(1145), 1, + ACTIONS(3096), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2008), 1, - sym_identifier, - STATE(294), 1, - sym_compound_statement, - STATE(799), 1, - sym_alignas_qualifier, - STATE(807), 1, - sym_type_specifier, - STATE(890), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1248), 1, - sym__declaration_specifiers, - ACTIONS(33), 2, + ACTIONS(3094), 41, + anon_sym___extension__, + anon_sym_extern, anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(55), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(583), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(37), 4, anon_sym___read_mostly, + anon_sym___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(49), 4, + anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(873), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(805), 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(53), 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(51), 10, - anon_sym_extern, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -77068,83 +116967,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [6161] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(41), 1, - anon_sym___declspec, - ACTIONS(57), 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, - ACTIONS(59), 1, anon_sym_enum, - ACTIONS(61), 1, anon_sym_struct, - ACTIONS(63), 1, anon_sym_union, - ACTIONS(391), 1, - anon_sym_LBRACE, - ACTIONS(1145), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2008), 1, sym_identifier, - STATE(335), 1, - sym_compound_statement, - STATE(799), 1, - sym_alignas_qualifier, - STATE(807), 1, - sym_type_specifier, - STATE(890), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1248), 1, - sym__declaration_specifiers, - ACTIONS(33), 2, + [38765] = 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, + anon_sym_LBRACK_LBRACK, + ACTIONS(3098), 41, + anon_sym___extension__, + anon_sym_extern, anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(55), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(579), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(37), 4, anon_sym___read_mostly, + anon_sym___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(49), 4, + anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(873), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(805), 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(53), 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(51), 10, - anon_sym_extern, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -77154,254 +117021,179 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [6271] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(41), 1, - anon_sym___declspec, - ACTIONS(57), 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, - ACTIONS(59), 1, anon_sym_enum, - ACTIONS(61), 1, anon_sym_struct, - ACTIONS(63), 1, anon_sym_union, - ACTIONS(455), 1, - anon_sym_LBRACE, - ACTIONS(1145), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2008), 1, sym_identifier, - STATE(307), 1, - sym_compound_statement, - STATE(799), 1, - sym_alignas_qualifier, - STATE(807), 1, - sym_type_specifier, - STATE(890), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1248), 1, - sym__declaration_specifiers, - ACTIONS(33), 2, + [38823] = 10, + 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(2997), 3, + 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, + 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___must_hold, - ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(55), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(613), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(37), 4, anon_sym___read_mostly, + anon_sym___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(49), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(873), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(805), 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(53), 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(51), 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, - [6381] = 23, + 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, + [38893] = 18, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1439), 1, - anon_sym_LBRACE, - ACTIONS(1948), 1, - anon_sym_sizeof, - ACTIONS(2272), 1, - sym_identifier, - ACTIONS(2274), 1, + ACTIONS(2993), 1, anon_sym_LPAREN2, - STATE(760), 1, - sym_initializer_list, - STATE(771), 1, - sym_expression, - STATE(940), 1, - sym_string_literal, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(1944), 2, + 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(1946), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2276), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2278), 2, + 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(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(997), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [6489] = 24, + 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, + 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, + [38979] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(41), 1, - anon_sym___declspec, - ACTIONS(57), 1, - sym_primitive_type, - ACTIONS(59), 1, - anon_sym_enum, - ACTIONS(61), 1, - anon_sym_struct, - ACTIONS(63), 1, - anon_sym_union, - ACTIONS(455), 1, - anon_sym_LBRACE, - ACTIONS(1145), 1, + ACTIONS(2966), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2008), 1, - sym_identifier, - STATE(300), 1, - sym_compound_statement, - STATE(799), 1, - sym_alignas_qualifier, - STATE(807), 1, - sym_type_specifier, - STATE(890), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1248), 1, - sym__declaration_specifiers, - ACTIONS(33), 2, + ACTIONS(2964), 41, + anon_sym___extension__, + anon_sym_extern, anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(55), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(613), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(37), 4, anon_sym___read_mostly, + anon_sym___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(49), 4, + anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(873), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(805), 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(53), 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(51), 10, - anon_sym_extern, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -77411,405 +117203,371 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [6599] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(41), 1, - anon_sym___declspec, - ACTIONS(57), 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, - ACTIONS(59), 1, anon_sym_enum, - ACTIONS(61), 1, anon_sym_struct, - ACTIONS(63), 1, anon_sym_union, - ACTIONS(455), 1, - anon_sym_LBRACE, - ACTIONS(1145), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2008), 1, sym_identifier, - STATE(317), 1, - sym_compound_statement, - STATE(799), 1, - sym_alignas_qualifier, - STATE(807), 1, - sym_type_specifier, - STATE(890), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1248), 1, - sym__declaration_specifiers, - ACTIONS(33), 2, + [39037] = 17, + 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, + 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, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(55), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(587), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(37), 4, anon_sym___read_mostly, + anon_sym___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(49), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(873), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(805), 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(53), 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(51), 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, - [6709] = 23, + 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(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(19), 1, + ACTIONS(2993), 1, anon_sym_LPAREN2, - ACTIONS(89), 1, - anon_sym_sizeof, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1439), 1, - anon_sym_LBRACE, - ACTIONS(1773), 1, - sym_identifier, - STATE(671), 1, - sym_string_literal, - STATE(1180), 1, - sym_expression, - STATE(1982), 1, - sym_initializer_list, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(3015), 1, + anon_sym_LBRACK, + STATE(1039), 1, + sym_argument_list, + ACTIONS(2995), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(87), 2, + ACTIONS(3013), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3019), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(944), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [6817] = 23, + ACTIONS(3021), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2997), 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), 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, + [39195] = 16, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(19), 1, + ACTIONS(2993), 1, anon_sym_LPAREN2, - ACTIONS(89), 1, - anon_sym_sizeof, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1439), 1, - anon_sym_LBRACE, - ACTIONS(1773), 1, - sym_identifier, - STATE(671), 1, - sym_string_literal, - STATE(1183), 1, - sym_expression, - STATE(1964), 1, - sym_initializer_list, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(3005), 1, + anon_sym_AMP, + ACTIONS(3015), 1, + anon_sym_LBRACK, + STATE(1039), 1, + sym_argument_list, + ACTIONS(2995), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(87), 2, + 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(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(944), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [6925] = 23, + ACTIONS(3021), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2997), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3017), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ, + ACTIONS(2991), 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, + [39277] = 15, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(19), 1, + ACTIONS(2993), 1, anon_sym_LPAREN2, - ACTIONS(89), 1, - anon_sym_sizeof, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1773), 1, - sym_identifier, - ACTIONS(2280), 1, - anon_sym_COLON, - STATE(671), 1, - sym_string_literal, - STATE(1195), 1, - sym_expression, - STATE(2288), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(3015), 1, + anon_sym_LBRACK, + STATE(1039), 1, + sym_argument_list, + ACTIONS(2995), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(87), 2, + 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(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(944), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [7033] = 24, + ACTIONS(3021), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2997), 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), 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, + [39357] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(41), 1, + 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, - ACTIONS(57), 1, + 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, - ACTIONS(59), 1, anon_sym_enum, - ACTIONS(61), 1, anon_sym_struct, - ACTIONS(63), 1, anon_sym_union, - ACTIONS(455), 1, - anon_sym_LBRACE, - ACTIONS(1145), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2008), 1, sym_identifier, - STATE(319), 1, - sym_compound_statement, - STATE(799), 1, + [39415] = 14, + 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, + STATE(1036), 1, sym_alignas_qualifier, - STATE(807), 1, - sym_type_specifier, - STATE(890), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1248), 1, - sym__declaration_specifiers, - ACTIONS(33), 2, + ACTIONS(35), 2, anon_sym___attribute__, anon_sym___must_hold, - ACTIONS(35), 2, + ACTIONS(37), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(55), 2, + ACTIONS(57), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(589), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(37), 4, + ACTIONS(2802), 3, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + ACTIONS(39), 4, anon_sym___read_mostly, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(49), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(873), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(805), 7, + ACTIONS(2804), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + STATE(1016), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -77817,7 +117575,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(53), 9, + ACTIONS(55), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -77827,7 +117585,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(51), 10, + ACTIONS(53), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -77838,243 +117596,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [7143] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(89), 1, - anon_sym_sizeof, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1773), 1, - sym_identifier, - ACTIONS(2282), 1, - anon_sym_SEMI, - STATE(671), 1, - sym_string_literal, - STATE(1173), 1, - sym_expression, - STATE(2184), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(87), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(944), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [7251] = 23, + [39493] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1429), 1, - sym_identifier, - ACTIONS(1439), 1, - anon_sym_LBRACE, - ACTIONS(1461), 1, - anon_sym_sizeof, - ACTIONS(2284), 1, + ACTIONS(2962), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - STATE(760), 1, - sym_initializer_list, - STATE(771), 1, - sym_expression, - STATE(940), 1, - sym_string_literal, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(1457), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1459), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2276), 2, anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2286), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(762), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [7359] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(41), 1, - anon_sym___declspec, - ACTIONS(57), 1, - sym_primitive_type, - ACTIONS(59), 1, - anon_sym_enum, - ACTIONS(61), 1, - anon_sym_struct, - ACTIONS(63), 1, - anon_sym_union, - ACTIONS(455), 1, - anon_sym_LBRACE, - ACTIONS(1145), 1, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2008), 1, - sym_identifier, - STATE(320), 1, - sym_compound_statement, - STATE(799), 1, - sym_alignas_qualifier, - STATE(807), 1, - sym_type_specifier, - STATE(890), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1248), 1, - sym__declaration_specifiers, - ACTIONS(33), 2, + ACTIONS(2960), 41, + anon_sym___extension__, + anon_sym_extern, anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(55), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(613), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(37), 4, anon_sym___read_mostly, + anon_sym___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(49), 4, + anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(873), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(805), 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(53), 9, - anon_sym___extension__, + 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, @@ -78083,8 +117643,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(51), 10, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [39551] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2015), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(2013), 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, @@ -78094,83 +117689,169 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [7469] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(41), 1, - anon_sym___declspec, - ACTIONS(57), 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, - ACTIONS(59), 1, anon_sym_enum, - ACTIONS(61), 1, anon_sym_struct, - ACTIONS(63), 1, anon_sym_union, - ACTIONS(455), 1, - anon_sym_LBRACE, - ACTIONS(1145), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2008), 1, sym_identifier, - STATE(328), 1, - sym_compound_statement, - STATE(799), 1, - sym_alignas_qualifier, - STATE(807), 1, - sym_type_specifier, - STATE(890), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1248), 1, - sym__declaration_specifiers, - ACTIONS(33), 2, + [39609] = 14, + 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(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(3017), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + ACTIONS(2991), 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, + anon_sym___printf, + anon_sym___read_mostly, anon_sym___must_hold, - ACTIONS(35), 2, + 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, + [39687] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3108), 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(3106), 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, + [39744] = 6, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3096), 1, + 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, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, anon_sym___scanf, anon_sym___printf, - ACTIONS(55), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(597), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(37), 4, anon_sym___read_mostly, + anon_sym___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(49), 4, + anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(873), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(805), 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(53), 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(51), 10, - anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -78180,83 +117861,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [7579] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(41), 1, - anon_sym___declspec, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(57), 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, - ACTIONS(59), 1, anon_sym_enum, - ACTIONS(61), 1, anon_sym_struct, - ACTIONS(63), 1, anon_sym_union, - ACTIONS(1145), 1, + sym_identifier, + [39805] = 4, + 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, + 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, + [39862] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3118), 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(3116), 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, + [39919] = 6, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3096), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2008), 1, - sym_identifier, - STATE(368), 1, - sym_compound_statement, - STATE(799), 1, - sym_alignas_qualifier, - STATE(807), 1, - sym_type_specifier, - STATE(890), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1248), 1, - sym__declaration_specifiers, - ACTIONS(33), 2, + 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, + anon_sym___extension__, + anon_sym_extern, anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(55), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(613), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(37), 4, anon_sym___read_mostly, + anon_sym___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(49), 4, + anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(873), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(805), 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(53), 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(51), 10, - anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -78266,510 +118022,372 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [7689] = 23, + 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, + [39980] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(89), 1, - anon_sym_sizeof, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1773), 1, - sym_identifier, - ACTIONS(2288), 1, - anon_sym_SEMI, - STATE(671), 1, - sym_string_literal, - STATE(1196), 1, - sym_expression, - STATE(2063), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(3122), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(87), 2, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(3120), 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, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(944), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [7797] = 23, + anon_sym_DOT, + anon_sym_DASH_GT, + [40037] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(89), 1, - anon_sym_sizeof, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1773), 1, - sym_identifier, - ACTIONS(2290), 1, - anon_sym_SEMI, - STATE(671), 1, - sym_string_literal, - STATE(1159), 1, - sym_expression, - STATE(2299), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(3126), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(87), 2, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(3124), 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, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(944), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [7905] = 24, + anon_sym_DOT, + anon_sym_DASH_GT, + [40094] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(41), 1, - anon_sym___declspec, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - sym_primitive_type, - ACTIONS(59), 1, - anon_sym_enum, - ACTIONS(61), 1, - anon_sym_struct, - ACTIONS(63), 1, - anon_sym_union, - ACTIONS(1145), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2008), 1, - sym_identifier, - STATE(383), 1, - sym_compound_statement, - STATE(799), 1, - sym_alignas_qualifier, - STATE(807), 1, - sym_type_specifier, - STATE(890), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1248), 1, - sym__declaration_specifiers, - ACTIONS(33), 2, + ACTIONS(3130), 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(3128), 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___must_hold, - ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(55), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(613), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(37), 4, anon_sym___read_mostly, + anon_sym___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(49), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(873), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(805), 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(53), 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(51), 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, - [8015] = 24, + 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, + [40151] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(41), 1, - anon_sym___declspec, - ACTIONS(57), 1, - sym_primitive_type, - ACTIONS(59), 1, - anon_sym_enum, - ACTIONS(61), 1, - anon_sym_struct, - ACTIONS(63), 1, - anon_sym_union, - ACTIONS(1145), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1869), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2008), 1, - sym_identifier, - ACTIONS(2292), 1, - anon_sym_RPAREN, - STATE(799), 1, - sym_alignas_qualifier, - STATE(807), 1, - sym_type_specifier, - STATE(890), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1343), 1, - sym__declaration_specifiers, - ACTIONS(33), 2, + ACTIONS(3134), 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(3132), 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___must_hold, - ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(55), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1816), 2, - sym_variadic_parameter, - sym_parameter_declaration, - ACTIONS(37), 4, anon_sym___read_mostly, + anon_sym___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(49), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(873), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(805), 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(53), 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(51), 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, - [8125] = 23, + 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, + [40208] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(19), 1, + ACTIONS(1962), 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(1956), 33, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(89), 1, - anon_sym_sizeof, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1773), 1, - sym_identifier, - ACTIONS(2294), 1, + 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, - STATE(671), 1, - sym_string_literal, - STATE(1176), 1, - sym_expression, - STATE(2298), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 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_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, + [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, - ACTIONS(25), 2, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(87), 2, + 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, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, + 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, - STATE(944), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [8233] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(41), 1, - anon_sym___declspec, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - sym_primitive_type, - ACTIONS(59), 1, - anon_sym_enum, - ACTIONS(61), 1, - anon_sym_struct, - ACTIONS(63), 1, - anon_sym_union, - ACTIONS(1145), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2008), 1, - sym_identifier, - STATE(369), 1, - sym_compound_statement, - STATE(799), 1, - sym_alignas_qualifier, - STATE(807), 1, - sym_type_specifier, - STATE(890), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1248), 1, - sym__declaration_specifiers, - ACTIONS(33), 2, + ACTIONS(3094), 39, + anon_sym___extension__, + anon_sym_extern, anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(55), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(613), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(37), 4, anon_sym___read_mostly, + anon_sym___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(49), 4, + anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(873), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(805), 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(53), 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(51), 10, - anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -78779,83 +118397,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [8343] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(41), 1, - anon_sym___declspec, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(57), 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, - ACTIONS(59), 1, anon_sym_enum, - ACTIONS(61), 1, anon_sym_struct, - ACTIONS(63), 1, anon_sym_union, - ACTIONS(1145), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2008), 1, sym_identifier, - STATE(388), 1, - sym_compound_statement, - STATE(799), 1, - sym_alignas_qualifier, - STATE(807), 1, - sym_type_specifier, - STATE(890), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1248), 1, - sym__declaration_specifiers, - ACTIONS(33), 2, + [40387] = 9, + 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(35), 2, + ACTIONS(2952), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(55), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(599), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(37), 4, + ACTIONS(2954), 4, anon_sym___read_mostly, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(49), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(873), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(805), 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(53), 9, + ACTIONS(3138), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3136), 32, 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(51), 10, 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, @@ -78865,412 +118459,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [8453] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(89), 1, - anon_sym_sizeof, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1439), 1, - anon_sym_LBRACE, - ACTIONS(1773), 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_identifier, - STATE(671), 1, - sym_string_literal, - STATE(1162), 1, - sym_expression, - STATE(2003), 1, - sym_initializer_list, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(87), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(944), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [8561] = 23, + [40454] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(89), 1, - anon_sym_sizeof, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1773), 1, - sym_identifier, - ACTIONS(2296), 1, - anon_sym_RPAREN, - STATE(671), 1, - sym_string_literal, - STATE(1185), 1, - sym_expression, - STATE(2140), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(3144), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(87), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(944), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [8669] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(3142), 33, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(89), 1, - anon_sym_sizeof, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1773), 1, - sym_identifier, - ACTIONS(2298), 1, - anon_sym_RPAREN, - STATE(671), 1, - sym_string_literal, - STATE(1186), 1, - sym_expression, - STATE(2139), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(87), 2, + 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, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(944), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [8777] = 23, + anon_sym_DOT, + anon_sym_DASH_GT, + [40511] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(89), 1, - anon_sym_sizeof, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1773), 1, - sym_identifier, - ACTIONS(2300), 1, - anon_sym_RPAREN, - STATE(671), 1, - sym_string_literal, - STATE(1187), 1, - sym_expression, - STATE(2138), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(3148), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, anon_sym_STAR, - anon_sym_AMP, - ACTIONS(87), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(944), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [8885] = 24, + 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(3146), 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, + [40568] = 9, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(41), 1, - anon_sym___declspec, - ACTIONS(57), 1, - sym_primitive_type, - ACTIONS(59), 1, - anon_sym_enum, - ACTIONS(61), 1, - anon_sym_struct, - ACTIONS(63), 1, - anon_sym_union, - ACTIONS(1145), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1869), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2302), 1, - sym_identifier, - STATE(799), 1, - sym_alignas_qualifier, - STATE(807), 1, - sym_type_specifier, - STATE(890), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1343), 1, - sym__declaration_specifiers, - STATE(1958), 1, - sym_variadic_parameter, - STATE(2006), 1, - sym_parameter_declaration, - ACTIONS(33), 2, + ACTIONS(3154), 1, + anon_sym___aligned, + STATE(1088), 1, + sym_attribute_specifier, + ACTIONS(2950), 2, anon_sym___attribute__, anon_sym___must_hold, - ACTIONS(35), 2, + ACTIONS(2952), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(55), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(37), 4, + ACTIONS(2954), 4, anon_sym___read_mostly, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(49), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(873), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(805), 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(53), 9, + 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, @@ -79279,8 +118631,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(51), 10, + 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, @@ -79290,164 +118681,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [8994] = 22, + 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, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1429), 1, - sym_identifier, - ACTIONS(1779), 1, - anon_sym_sizeof, - ACTIONS(2244), 1, - anon_sym_LPAREN2, - ACTIONS(2304), 1, - anon_sym_RBRACK, - STATE(671), 1, - sym_string_literal, - STATE(1037), 1, - sym_expression, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(1775), 2, + ACTIONS(3164), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1777), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2018), 2, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(2246), 2, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(3162), 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, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, + 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, - STATE(762), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [9099] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2306), 1, - sym_identifier, - ACTIONS(2324), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2327), 1, - anon_sym___declspec, - ACTIONS(2330), 1, - anon_sym_LBRACE, - ACTIONS(2338), 1, - sym_primitive_type, - ACTIONS(2341), 1, - anon_sym_enum, - ACTIONS(2344), 1, - anon_sym_struct, - ACTIONS(2347), 1, - anon_sym_union, - STATE(799), 1, - sym_alignas_qualifier, - STATE(807), 1, - sym_type_specifier, - STATE(890), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1248), 1, - sym__declaration_specifiers, - ACTIONS(2315), 2, + ACTIONS(3094), 39, + anon_sym___extension__, + anon_sym_extern, anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(2318), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(2335), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(613), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(2321), 4, anon_sym___read_mostly, + anon_sym___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(2332), 4, + anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(873), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(805), 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(2309), 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(2312), 10, - anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -79457,580 +118785,483 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [9206] = 22, + 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, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1429), 1, - sym_identifier, - ACTIONS(1779), 1, - anon_sym_sizeof, - ACTIONS(2244), 1, + ACTIONS(2806), 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(2808), 33, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(2350), 1, - anon_sym_RBRACK, - STATE(671), 1, - sym_string_literal, - STATE(1037), 1, - sym_expression, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(1775), 2, + 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, + [40877] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3168), 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(3166), 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, + [40934] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3172), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1777), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2018), 2, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(2246), 2, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(3170), 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, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(762), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [9311] = 23, + anon_sym_DOT, + anon_sym_DASH_GT, + [40991] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(41), 1, - anon_sym___declspec, - ACTIONS(57), 1, - sym_primitive_type, - ACTIONS(59), 1, - anon_sym_enum, - ACTIONS(61), 1, - anon_sym_struct, - ACTIONS(63), 1, - anon_sym_union, - ACTIONS(1145), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2008), 1, - sym_identifier, - STATE(772), 1, - sym_macro_modifier, - STATE(799), 1, - sym_alignas_qualifier, - STATE(807), 1, - sym_type_specifier, - STATE(890), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1267), 1, - sym__declaration_specifiers, - ACTIONS(33), 2, + ACTIONS(3176), 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(3174), 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___must_hold, - ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(43), 2, - anon_sym___init, - anon_sym___exit, - ACTIONS(55), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(37), 4, anon_sym___read_mostly, + anon_sym___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(49), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(873), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(805), 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(53), 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(51), 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, - [9418] = 22, + 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, + [41048] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1429), 1, - sym_identifier, - ACTIONS(1779), 1, - anon_sym_sizeof, - ACTIONS(2244), 1, - anon_sym_LPAREN2, - ACTIONS(2352), 1, - anon_sym_RBRACK, - STATE(671), 1, - sym_string_literal, - STATE(1037), 1, - sym_expression, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(1775), 2, + ACTIONS(3180), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1777), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2018), 2, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(2246), 2, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(3178), 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, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(762), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [9523] = 22, + anon_sym_DOT, + anon_sym_DASH_GT, + [41105] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1429), 1, - sym_identifier, - ACTIONS(1779), 1, - anon_sym_sizeof, - ACTIONS(2244), 1, - anon_sym_LPAREN2, - ACTIONS(2354), 1, - anon_sym_RBRACK, - STATE(671), 1, - sym_string_literal, - STATE(1037), 1, - sym_expression, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(1775), 2, + ACTIONS(3184), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1777), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2018), 2, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(2246), 2, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(3182), 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, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(762), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [9628] = 22, + anon_sym_DOT, + anon_sym_DASH_GT, + [41162] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(89), 1, - anon_sym_sizeof, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1773), 1, - sym_identifier, - STATE(671), 1, - sym_string_literal, - STATE(1138), 1, - sym_expression, - STATE(1823), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(3188), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(87), 2, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(3186), 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, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(944), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [9733] = 22, + anon_sym_DOT, + anon_sym_DASH_GT, + [41219] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1429), 1, - sym_identifier, - ACTIONS(1779), 1, - anon_sym_sizeof, - ACTIONS(2244), 1, - anon_sym_LPAREN2, - ACTIONS(2356), 1, - anon_sym_RBRACK, - STATE(671), 1, - sym_string_literal, - STATE(1037), 1, - sym_expression, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(1775), 2, + ACTIONS(3192), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1777), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2018), 2, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(2246), 2, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(3190), 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, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(762), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [9838] = 23, + anon_sym_DOT, + anon_sym_DASH_GT, + [41276] = 9, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(41), 1, - anon_sym___declspec, - ACTIONS(57), 1, - sym_primitive_type, - ACTIONS(59), 1, - anon_sym_enum, - ACTIONS(61), 1, - anon_sym_struct, - ACTIONS(63), 1, - anon_sym_union, - ACTIONS(1145), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2008), 1, - sym_identifier, - STATE(798), 1, - sym_macro_modifier, - STATE(799), 1, - sym_alignas_qualifier, - STATE(807), 1, - sym_type_specifier, - STATE(890), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1265), 1, - sym__declaration_specifiers, - ACTIONS(33), 2, + ACTIONS(3198), 1, + anon_sym___aligned, + STATE(1110), 1, + sym_attribute_specifier, + ACTIONS(2950), 2, anon_sym___attribute__, anon_sym___must_hold, - ACTIONS(35), 2, + ACTIONS(2952), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(43), 2, - anon_sym___init, - anon_sym___exit, - ACTIONS(55), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(37), 4, + ACTIONS(2954), 4, anon_sym___read_mostly, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(49), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(873), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(805), 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(53), 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(51), 10, + 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, @@ -80040,580 +119271,479 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [9945] = 22, + 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(19), 1, - anon_sym_LPAREN2, - ACTIONS(89), 1, - anon_sym_sizeof, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1773), 1, - sym_identifier, - STATE(671), 1, - sym_string_literal, - STATE(1171), 1, - sym_expression, - STATE(2260), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(3202), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(87), 2, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(3200), 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, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(944), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [10050] = 23, + anon_sym_DOT, + anon_sym_DASH_GT, + [41400] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(41), 1, - anon_sym___declspec, - ACTIONS(57), 1, - sym_primitive_type, - ACTIONS(59), 1, - anon_sym_enum, - ACTIONS(61), 1, - anon_sym_struct, - ACTIONS(63), 1, - anon_sym_union, - ACTIONS(1145), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2008), 1, - sym_identifier, - STATE(786), 1, - sym_macro_modifier, - STATE(799), 1, - sym_alignas_qualifier, - STATE(807), 1, - sym_type_specifier, - STATE(890), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1260), 1, - sym__declaration_specifiers, - ACTIONS(33), 2, + ACTIONS(3206), 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(3204), 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___must_hold, - ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(43), 2, - anon_sym___init, - anon_sym___exit, - ACTIONS(55), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(37), 4, anon_sym___read_mostly, + anon_sym___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(49), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(873), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(805), 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(53), 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(51), 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, - [10157] = 22, + 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, + [41457] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1429), 1, - sym_identifier, - ACTIONS(1779), 1, - anon_sym_sizeof, - ACTIONS(2244), 1, - anon_sym_LPAREN2, - ACTIONS(2358), 1, - anon_sym_RBRACK, - STATE(671), 1, - sym_string_literal, - STATE(1037), 1, - sym_expression, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(1775), 2, + ACTIONS(3210), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1777), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2018), 2, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(2246), 2, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(3208), 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, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(762), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [10262] = 22, + anon_sym_DOT, + anon_sym_DASH_GT, + [41514] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1429), 1, - sym_identifier, - ACTIONS(1779), 1, - anon_sym_sizeof, - ACTIONS(2244), 1, + ACTIONS(3214), 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(3212), 33, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(2360), 1, - anon_sym_RBRACK, - STATE(671), 1, - sym_string_literal, - STATE(1037), 1, - sym_expression, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(1775), 2, + 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, + [41571] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3218), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1777), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2018), 2, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(2246), 2, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(3216), 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, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(762), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [10367] = 22, + anon_sym_DOT, + anon_sym_DASH_GT, + [41628] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1429), 1, - sym_identifier, - ACTIONS(1779), 1, - anon_sym_sizeof, - ACTIONS(2244), 1, + ACTIONS(3222), 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(3220), 33, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(2362), 1, - anon_sym_RBRACK, - STATE(671), 1, - sym_string_literal, - STATE(1037), 1, - sym_expression, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(1775), 2, + 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, + [41685] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1962), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1777), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2018), 2, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(2246), 2, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(1956), 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, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(762), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [10472] = 22, + anon_sym_DOT, + anon_sym_DASH_GT, + [41742] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1429), 1, - sym_identifier, - ACTIONS(1779), 1, - anon_sym_sizeof, - ACTIONS(2244), 1, - anon_sym_LPAREN2, - ACTIONS(2364), 1, - anon_sym_RBRACK, - STATE(671), 1, - sym_string_literal, - STATE(1037), 1, - sym_expression, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(1775), 2, + ACTIONS(3226), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1777), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2018), 2, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(2246), 2, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(3224), 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, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(762), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [10577] = 23, + anon_sym_DOT, + anon_sym_DASH_GT, + [41799] = 9, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(41), 1, - anon_sym___declspec, - ACTIONS(57), 1, - sym_primitive_type, - ACTIONS(59), 1, - anon_sym_enum, - ACTIONS(61), 1, - anon_sym_struct, - ACTIONS(63), 1, - anon_sym_union, - ACTIONS(1145), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2008), 1, - sym_identifier, - STATE(785), 1, - sym_macro_modifier, - STATE(799), 1, - sym_alignas_qualifier, - STATE(807), 1, - sym_type_specifier, - STATE(890), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1269), 1, - sym__declaration_specifiers, - ACTIONS(33), 2, + ACTIONS(3232), 1, + anon_sym___aligned, + STATE(1106), 1, + sym_attribute_specifier, + ACTIONS(2950), 2, anon_sym___attribute__, anon_sym___must_hold, - ACTIONS(35), 2, + ACTIONS(2952), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(43), 2, - anon_sym___init, - anon_sym___exit, - ACTIONS(55), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(37), 4, + ACTIONS(2954), 4, anon_sym___read_mostly, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(49), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(873), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(805), 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(53), 9, + ACTIONS(3230), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3228), 32, 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(51), 10, 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, @@ -80623,164 +119753,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [10684] = 22, + 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, + [41866] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1429), 1, - sym_identifier, - ACTIONS(1779), 1, - anon_sym_sizeof, - ACTIONS(2244), 1, - anon_sym_LPAREN2, - ACTIONS(2366), 1, - anon_sym_RBRACK, - STATE(671), 1, - sym_string_literal, - STATE(1037), 1, - sym_expression, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(1775), 2, + ACTIONS(3236), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1777), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2018), 2, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(2246), 2, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(3234), 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, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(762), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [10789] = 23, + anon_sym_DOT, + anon_sym_DASH_GT, + [41923] = 9, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(41), 1, - anon_sym___declspec, - ACTIONS(57), 1, - sym_primitive_type, - ACTIONS(59), 1, - anon_sym_enum, - ACTIONS(61), 1, - anon_sym_struct, - ACTIONS(63), 1, - anon_sym_union, - ACTIONS(1145), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1869), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2008), 1, - sym_identifier, - STATE(799), 1, - sym_alignas_qualifier, - STATE(807), 1, - sym_type_specifier, - STATE(890), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1343), 1, - sym__declaration_specifiers, - ACTIONS(33), 2, + ACTIONS(3242), 1, + anon_sym___aligned, + STATE(1107), 1, + sym_attribute_specifier, + ACTIONS(2950), 2, anon_sym___attribute__, anon_sym___must_hold, - ACTIONS(35), 2, + ACTIONS(2952), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(55), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2006), 2, - sym_variadic_parameter, - sym_parameter_declaration, - ACTIONS(37), 4, + ACTIONS(2954), 4, anon_sym___read_mostly, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(49), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(873), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(805), 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(53), 9, + ACTIONS(3240), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3238), 32, 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(51), 10, 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, @@ -80790,676 +119864,837 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [10896] = 22, + 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, + [41990] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(89), 1, - anon_sym_sizeof, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1773), 1, - sym_identifier, - STATE(671), 1, - sym_string_literal, - STATE(1181), 1, - sym_expression, - STATE(2145), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(3246), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(87), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(944), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [11001] = 21, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(3244), 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, + [42047] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1429), 1, - sym_identifier, - ACTIONS(1779), 1, - anon_sym_sizeof, - ACTIONS(2244), 1, - anon_sym_LPAREN2, - STATE(671), 1, - sym_string_literal, - STATE(1038), 1, - sym_expression, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(1775), 2, + ACTIONS(3250), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1777), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2018), 2, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(2246), 2, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(3248), 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, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(762), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [11103] = 21, + anon_sym_DOT, + anon_sym_DASH_GT, + [42104] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1429), 1, - sym_identifier, - ACTIONS(1779), 1, - anon_sym_sizeof, - ACTIONS(2244), 1, - anon_sym_LPAREN2, - STATE(671), 1, - sym_string_literal, - STATE(1047), 1, - sym_expression, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(1775), 2, + ACTIONS(3254), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1777), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2018), 2, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(2246), 2, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(3252), 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, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(762), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [11205] = 21, + anon_sym_DOT, + anon_sym_DASH_GT, + [42161] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1429), 1, - sym_identifier, - ACTIONS(1779), 1, - anon_sym_sizeof, - ACTIONS(2244), 1, - anon_sym_LPAREN2, - STATE(671), 1, - sym_string_literal, - STATE(1044), 1, - sym_expression, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(1775), 2, + ACTIONS(3258), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1777), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2018), 2, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(2246), 2, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(3256), 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, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(762), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [11307] = 21, + anon_sym_DOT, + anon_sym_DASH_GT, + [42218] = 5, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(19), 1, + ACTIONS(3264), 1, + anon_sym___aligned, + ACTIONS(3262), 4, anon_sym_LPAREN2, - ACTIONS(89), 1, - anon_sym_sizeof, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1773), 1, - sym_identifier, - STATE(671), 1, - sym_string_literal, - STATE(1218), 1, - sym_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, anon_sym_STAR, - anon_sym_AMP, - ACTIONS(87), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(944), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [11409] = 21, + 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, + 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, + [42276] = 8, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1429), 1, + STATE(1166), 1, + sym_attribute_specifier, + ACTIONS(2780), 2, + 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___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(3268), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3266), 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, - ACTIONS(1461), 1, - anon_sym_sizeof, - ACTIONS(2284), 1, + [42340] = 5, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3274), 1, + anon_sym___aligned, + ACTIONS(3272), 4, anon_sym_LPAREN2, - STATE(940), 1, - sym_string_literal, - STATE(989), 1, - sym_expression, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(1457), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1459), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2276), 2, anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2286), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, + 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, + 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, + [42398] = 8, + ACTIONS(1971), 1, + anon_sym_EQ, + ACTIONS(3276), 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, - STATE(762), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [11511] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(2000), 1, - sym_identifier, - ACTIONS(2006), 1, - anon_sym_sizeof, - ACTIONS(2014), 1, - anon_sym_LPAREN2, - STATE(671), 1, - sym_string_literal, - STATE(1049), 1, - sym_expression, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(2002), 2, + 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, - ACTIONS(2004), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2018), 2, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(2028), 2, + 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_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(1066), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [11613] = 21, + anon_sym_DOT, + anon_sym_DASH_GT, + [42462] = 6, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1429), 1, + 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, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(2855), 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, + 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, sym_identifier, - ACTIONS(1779), 1, - anon_sym_sizeof, - ACTIONS(2244), 1, + [42522] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3283), 4, anon_sym_LPAREN2, - STATE(671), 1, - sym_string_literal, - STATE(1034), 1, - sym_expression, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(1775), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1777), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2018), 2, anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2246), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(762), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [11715] = 3, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3281), 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, + 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, + [42578] = 5, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3289), 1, + anon_sym___aligned, + ACTIONS(3287), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3285), 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, + [42636] = 8, + 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, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3301), 4, + anon_sym___read_mostly, + 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, + 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, + [42700] = 8, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2370), 10, + ACTIONS(3304), 1, + sym_identifier, + ACTIONS(3309), 1, + sym_primitive_type, + STATE(1102), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(3307), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2865), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(2368), 48, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + ACTIONS(2867), 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_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, + [42764] = 8, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + STATE(1124), 1, + sym_attribute_specifier, + ACTIONS(2780), 2, + 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___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, + 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, + [42828] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3104), 4, + 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___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, + [42884] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3317), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3315), 41, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -81472,11 +120707,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_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, @@ -81496,1881 +120734,1125 @@ 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, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, - [11781] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1429), 1, - sym_identifier, - ACTIONS(1461), 1, - anon_sym_sizeof, - ACTIONS(2284), 1, - anon_sym_LPAREN2, - STATE(940), 1, - sym_string_literal, - STATE(993), 1, - sym_expression, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(1457), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1459), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2276), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2286), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(762), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [11883] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(89), 1, - anon_sym_sizeof, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1773), 1, - sym_identifier, - ACTIONS(2372), 1, - anon_sym_LPAREN2, - STATE(671), 1, - sym_string_literal, - STATE(782), 1, - sym_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(87), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(944), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [11985] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(89), 1, - anon_sym_sizeof, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1773), 1, + anon_sym___aligned, sym_identifier, - STATE(671), 1, - sym_string_literal, - STATE(783), 1, - sym_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(87), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(944), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [12087] = 21, + [42940] = 8, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1429), 1, - sym_identifier, - ACTIONS(1461), 1, - anon_sym_sizeof, - ACTIONS(2284), 1, + STATE(1146), 1, + sym_attribute_specifier, + ACTIONS(3323), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(3326), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(3321), 4, anon_sym_LPAREN2, - STATE(940), 1, - sym_string_literal, - STATE(986), 1, - sym_expression, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(1457), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1459), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2276), 2, anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2286), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(762), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [12189] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(2000), 1, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3329), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(3319), 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, - ACTIONS(2006), 1, - anon_sym_sizeof, - ACTIONS(2014), 1, - anon_sym_LPAREN2, - STATE(671), 1, - sym_string_literal, - STATE(1050), 1, - sym_expression, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(2002), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2004), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2018), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2028), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(1066), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [12291] = 21, + [43004] = 8, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1429), 1, - sym_identifier, - ACTIONS(1779), 1, - anon_sym_sizeof, - ACTIONS(2244), 1, + STATE(1130), 1, + sym_attribute_specifier, + ACTIONS(2780), 2, + 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___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(3334), 4, anon_sym_LPAREN2, - STATE(671), 1, - sym_string_literal, - STATE(1043), 1, - sym_expression, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(1775), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1777), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2018), 2, anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2246), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(762), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [12393] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(89), 1, - anon_sym_sizeof, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1773), 1, + 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, - STATE(671), 1, - sym_string_literal, - STATE(1146), 1, - sym_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(87), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, + [43068] = 8, + ACTIONS(1971), 1, + anon_sym_EQ, + ACTIONS(1982), 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, - STATE(944), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [12495] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1429), 1, - sym_identifier, - ACTIONS(1461), 1, - anon_sym_sizeof, - ACTIONS(2284), 1, - anon_sym_LPAREN2, - STATE(940), 1, - sym_string_literal, - STATE(985), 1, - sym_expression, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(1457), 2, + 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, - ACTIONS(1459), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2276), 2, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(2286), 2, + 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, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, + anon_sym_DOT, + anon_sym_DASH_GT, + [43132] = 8, + ACTIONS(1971), 1, + anon_sym_EQ, + ACTIONS(1980), 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, - STATE(762), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [12597] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1948), 1, - anon_sym_sizeof, - ACTIONS(2272), 1, - sym_identifier, - ACTIONS(2274), 1, - anon_sym_LPAREN2, - STATE(940), 1, - sym_string_literal, - STATE(1104), 1, - sym_expression, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(1944), 2, + 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, - ACTIONS(1946), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2276), 2, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(2278), 2, + 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, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(997), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [12699] = 21, + anon_sym_DOT, + anon_sym_DASH_GT, + [43196] = 5, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1429), 1, - sym_identifier, - ACTIONS(1461), 1, - anon_sym_sizeof, - ACTIONS(2284), 1, + ACTIONS(3340), 1, + anon_sym___aligned, + ACTIONS(3338), 4, anon_sym_LPAREN2, - STATE(940), 1, - sym_string_literal, - STATE(988), 1, - sym_expression, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(1457), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1459), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2276), 2, anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2286), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3336), 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, + [43254] = 8, + ACTIONS(1971), 1, + anon_sym_EQ, + ACTIONS(1973), 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, - STATE(762), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [12801] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(2000), 1, - sym_identifier, - ACTIONS(2006), 1, - anon_sym_sizeof, - ACTIONS(2014), 1, - anon_sym_LPAREN2, - STATE(671), 1, - sym_string_literal, - STATE(1197), 1, - sym_expression, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(2002), 2, + 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, - ACTIONS(2004), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2018), 2, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(2028), 2, + 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, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(1066), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [12903] = 21, + anon_sym_DOT, + anon_sym_DASH_GT, + [43318] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1948), 1, - anon_sym_sizeof, - ACTIONS(2272), 1, + ACTIONS(3025), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3023), 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, + 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, - ACTIONS(2274), 1, + [43374] = 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, - STATE(940), 1, - sym_string_literal, - STATE(1105), 1, - sym_expression, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(1944), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1946), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2276), 2, anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2278), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(997), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [13005] = 21, + 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, + sym_identifier, + [43438] = 7, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(19), 1, + ACTIONS(2855), 1, + sym_primitive_type, + 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(2876), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(89), 1, - anon_sym_sizeof, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1773), 1, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(2873), 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, - STATE(671), 1, + [43500] = 8, + ACTIONS(1971), 1, + anon_sym_EQ, + ACTIONS(1984), 1, + anon_sym_COLON, + STATE(875), 1, sym_string_literal, - STATE(1055), 1, - sym_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(87), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, + 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, - STATE(944), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [13107] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1429), 1, - sym_identifier, - ACTIONS(1779), 1, - anon_sym_sizeof, - ACTIONS(2244), 1, - anon_sym_LPAREN2, - STATE(671), 1, - sym_string_literal, - STATE(1035), 1, - sym_expression, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(1775), 2, + 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, - ACTIONS(1777), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2018), 2, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(2246), 2, + 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, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(762), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [13209] = 21, + anon_sym_DOT, + anon_sym_DASH_GT, + [43564] = 8, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1948), 1, - anon_sym_sizeof, - ACTIONS(2272), 1, - sym_identifier, - ACTIONS(2274), 1, + STATE(1151), 1, + sym_attribute_specifier, + ACTIONS(2780), 2, + 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___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(3357), 4, anon_sym_LPAREN2, - STATE(940), 1, - sym_string_literal, - STATE(1098), 1, - sym_expression, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(1944), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1946), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2276), 2, anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2278), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(997), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [13311] = 21, + 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, + 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, + [43628] = 8, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1948), 1, - anon_sym_sizeof, - ACTIONS(2272), 1, - sym_identifier, - ACTIONS(2274), 1, + ACTIONS(2658), 1, anon_sym_LPAREN2, - STATE(940), 1, - sym_string_literal, - STATE(1111), 1, - sym_expression, - ACTIONS(97), 2, + 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(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(1944), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1946), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2276), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2278), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(997), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [13413] = 21, + ACTIONS(2980), 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(2983), 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, + [43692] = 5, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1948), 1, - anon_sym_sizeof, - ACTIONS(2272), 1, - sym_identifier, - ACTIONS(2274), 1, + ACTIONS(3365), 1, + anon_sym___aligned, + ACTIONS(3363), 4, anon_sym_LPAREN2, - STATE(940), 1, - sym_string_literal, - STATE(1112), 1, - sym_expression, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(1944), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1946), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2276), 2, anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2278), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(997), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [13515] = 21, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3361), 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, + [43750] = 5, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1429), 1, - sym_identifier, - ACTIONS(1779), 1, - anon_sym_sizeof, - ACTIONS(2244), 1, + ACTIONS(3371), 1, + anon_sym___aligned, + ACTIONS(3369), 4, anon_sym_LPAREN2, - STATE(671), 1, - sym_string_literal, - STATE(1036), 1, - sym_expression, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(1775), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1777), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2018), 2, anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2246), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(762), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [13617] = 21, + 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, + 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, + [43808] = 5, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1948), 1, - anon_sym_sizeof, - ACTIONS(2272), 1, - sym_identifier, - ACTIONS(2274), 1, + ACTIONS(3377), 1, + anon_sym___aligned, + ACTIONS(3375), 4, anon_sym_LPAREN2, - STATE(940), 1, - sym_string_literal, - STATE(1113), 1, - sym_expression, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(1944), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1946), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2276), 2, anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2278), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(997), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [13719] = 21, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3373), 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, + [43866] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1948), 1, - anon_sym_sizeof, - ACTIONS(2272), 1, - sym_identifier, - ACTIONS(2274), 1, + ACTIONS(3037), 4, anon_sym_LPAREN2, - STATE(940), 1, - sym_string_literal, - STATE(1114), 1, - sym_expression, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(1944), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1946), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2276), 2, anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2278), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(997), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [13821] = 21, + 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, + 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, + anon_sym___aligned, + sym_identifier, + [43922] = 5, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1948), 1, - anon_sym_sizeof, - ACTIONS(2272), 1, - sym_identifier, - ACTIONS(2274), 1, + ACTIONS(3383), 1, + anon_sym___aligned, + ACTIONS(3381), 4, anon_sym_LPAREN2, - STATE(940), 1, - sym_string_literal, - STATE(1115), 1, - sym_expression, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(1944), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1946), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2276), 2, anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2278), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(997), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [13923] = 21, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3379), 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, + [43980] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1948), 1, - anon_sym_sizeof, - ACTIONS(2272), 1, + ACTIONS(3100), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + 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, + 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, + anon_sym___aligned, sym_identifier, - ACTIONS(2274), 1, + [44036] = 5, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3389), 1, + anon_sym___aligned, + ACTIONS(3387), 4, anon_sym_LPAREN2, - STATE(801), 1, - sym_expression, - STATE(940), 1, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3385), 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, + [44094] = 8, + ACTIONS(1971), 1, + anon_sym_EQ, + ACTIONS(3391), 1, + anon_sym_COLON, + STATE(875), 1, sym_string_literal, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(1944), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1946), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2276), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2278), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, + 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, - STATE(997), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [14025] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1948), 1, - anon_sym_sizeof, - ACTIONS(2272), 1, - sym_identifier, - ACTIONS(2274), 1, - anon_sym_LPAREN2, - STATE(940), 1, - sym_string_literal, - STATE(1117), 1, - sym_expression, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(1944), 2, + 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, - ACTIONS(1946), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2276), 2, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(2278), 2, + 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, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, + anon_sym_DOT, + anon_sym_DASH_GT, + [44158] = 8, + ACTIONS(1971), 1, + anon_sym_EQ, + ACTIONS(1986), 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, - STATE(997), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [14127] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2374), 24, - aux_sym_preproc_elif_token1, + 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, @@ -83383,6 +121865,38 @@ static const uint16_t ts_small_parse_table[] = { 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, + [44222] = 8, + 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, @@ -83391,31 +121905,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - anon_sym_EQ, - anon_sym_DOT, sym_identifier, - ACTIONS(2376), 34, - anon_sym_DOT_DOT_DOT, + 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, - 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_STAR, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, + 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_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, + 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, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3397), 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, + [44400] = 7, + ACTIONS(3401), 1, + anon_sym_EQ, + 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(3403), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -83426,671 +122066,564 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + ACTIONS(1962), 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(1956), 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, - [14193] = 21, + [44461] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1429), 1, + 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, + 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(1779), 1, - anon_sym_sizeof, - ACTIONS(2244), 1, + [44516] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3411), 4, anon_sym_LPAREN2, - STATE(671), 1, - sym_string_literal, - STATE(1040), 1, - sym_expression, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(1775), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1777), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2018), 2, anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2246), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(762), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [14295] = 21, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3409), 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, + [44571] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3415), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3413), 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, + [44626] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(2000), 1, - sym_identifier, - ACTIONS(2006), 1, - anon_sym_sizeof, - ACTIONS(2014), 1, + ACTIONS(2909), 4, anon_sym_LPAREN2, - STATE(671), 1, - sym_string_literal, - STATE(1160), 1, - sym_expression, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(2002), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2004), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2018), 2, anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2028), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(1066), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [14397] = 21, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(2907), 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, + [44681] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(19), 1, + ACTIONS(3419), 4, anon_sym_LPAREN2, - ACTIONS(89), 1, - anon_sym_sizeof, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1773), 1, - sym_identifier, - STATE(671), 1, - sym_string_literal, - STATE(1214), 1, - sym_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, anon_sym_STAR, - anon_sym_AMP, - ACTIONS(87), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(944), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [14499] = 21, + 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, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1429), 1, - sym_identifier, - ACTIONS(1779), 1, - anon_sym_sizeof, - ACTIONS(2378), 1, + ACTIONS(3423), 4, anon_sym_LPAREN2, - STATE(671), 1, - sym_string_literal, - STATE(1056), 1, - sym_expression, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(1775), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1777), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2018), 2, anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2246), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(762), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [14601] = 21, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3421), 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, + [44791] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(2000), 1, - sym_identifier, - ACTIONS(2006), 1, - anon_sym_sizeof, - ACTIONS(2014), 1, + ACTIONS(3283), 4, anon_sym_LPAREN2, - STATE(671), 1, - sym_string_literal, - STATE(1161), 1, - sym_expression, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(2002), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2004), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2018), 2, anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2028), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(1066), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [14703] = 21, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3281), 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, + [44846] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(19), 1, + ACTIONS(3427), 4, anon_sym_LPAREN2, - ACTIONS(89), 1, - anon_sym_sizeof, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1773), 1, - sym_identifier, - STATE(671), 1, - sym_string_literal, - STATE(1184), 1, - sym_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, anon_sym_STAR, - anon_sym_AMP, - ACTIONS(87), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(944), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [14805] = 21, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3425), 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, + [44901] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1948), 1, - anon_sym_sizeof, - ACTIONS(2272), 1, - sym_identifier, - ACTIONS(2274), 1, + ACTIONS(3104), 4, anon_sym_LPAREN2, - STATE(940), 1, - sym_string_literal, - STATE(1103), 1, - sym_expression, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(1944), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1946), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2276), 2, anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2278), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(997), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [14907] = 21, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3102), 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, + [44956] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1429), 1, - sym_identifier, - ACTIONS(1461), 1, - anon_sym_sizeof, - ACTIONS(2284), 1, + ACTIONS(3431), 4, anon_sym_LPAREN2, - STATE(940), 1, - sym_string_literal, - STATE(984), 1, - sym_expression, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(1457), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1459), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2276), 2, anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2286), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(762), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [15009] = 6, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3429), 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, + [45011] = 9, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2380), 1, - sym_identifier, - STATE(520), 1, - sym_string_literal, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2384), 22, + 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, @@ -84103,32 +122636,20 @@ 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, - ACTIONS(2382), 29, - anon_sym_DOT_DOT_DOT, + sym_identifier, + ACTIONS(2991), 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, @@ -84140,1730 +122661,1398 @@ 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, - [15081] = 21, + [45076] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1429), 1, - sym_identifier, - ACTIONS(1779), 1, - anon_sym_sizeof, - ACTIONS(2244), 1, + ACTIONS(3443), 4, anon_sym_LPAREN2, - STATE(671), 1, - sym_string_literal, - STATE(1050), 1, - sym_expression, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(1775), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1777), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2018), 2, anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2246), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(762), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [15183] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(89), 1, - anon_sym_sizeof, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1773), 1, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3441), 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, - STATE(671), 1, - sym_string_literal, - STATE(1217), 1, - sym_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(87), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(944), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [15285] = 21, + [45131] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1429), 1, - sym_identifier, - ACTIONS(1461), 1, - anon_sym_sizeof, - ACTIONS(2284), 1, + ACTIONS(3447), 4, anon_sym_LPAREN2, - STATE(940), 1, - sym_string_literal, - STATE(983), 1, - sym_expression, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(1457), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1459), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2276), 2, anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2286), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(762), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [15387] = 21, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3445), 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, + [45186] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1429), 1, - sym_identifier, - ACTIONS(1461), 1, - anon_sym_sizeof, - ACTIONS(2284), 1, + ACTIONS(3451), 4, anon_sym_LPAREN2, - STATE(940), 1, - sym_string_literal, - STATE(995), 1, - sym_expression, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(1457), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1459), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2276), 2, anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2286), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(762), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [15489] = 21, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3449), 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, + [45241] = 10, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1948), 1, - anon_sym_sizeof, - ACTIONS(2272), 1, - sym_identifier, - ACTIONS(2274), 1, + ACTIONS(3453), 1, + anon_sym_COMMA, + ACTIONS(3456), 1, + anon_sym_RPAREN, + ACTIONS(3459), 1, anon_sym_LPAREN2, - STATE(940), 1, - sym_string_literal, - STATE(1107), 1, - sym_expression, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(1944), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1946), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2276), 2, + STATE(1156), 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_AMP, - ACTIONS(2278), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(997), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [15591] = 21, + anon_sym_LBRACK_LBRACK, + 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, + [45308] = 6, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(19), 1, + 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, anon_sym_LPAREN2, - ACTIONS(89), 1, - anon_sym_sizeof, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1773), 1, - sym_identifier, - STATE(671), 1, - sym_string_literal, - STATE(1053), 1, - sym_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, anon_sym_STAR, - anon_sym_AMP, - ACTIONS(87), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(944), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [15693] = 21, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(2903), 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, + [45367] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(19), 1, + ACTIONS(3466), 4, anon_sym_LPAREN2, - ACTIONS(89), 1, - anon_sym_sizeof, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1773), 1, - sym_identifier, - STATE(671), 1, - sym_string_literal, - STATE(801), 1, - sym_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, anon_sym_STAR, - anon_sym_AMP, - ACTIONS(87), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(944), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [15795] = 21, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3464), 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, + [45422] = 9, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1429), 1, - sym_identifier, - ACTIONS(1441), 1, - anon_sym_sizeof, - ACTIONS(2262), 1, + ACTIONS(3433), 1, anon_sym_LPAREN2, - STATE(671), 1, - sym_string_literal, - STATE(801), 1, - sym_expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(1433), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1435), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2264), 2, + ACTIONS(3435), 1, + anon_sym_LBRACK, + STATE(1225), 1, + sym_argument_list, + ACTIONS(3437), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(762), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [15897] = 21, + ACTIONS(3439), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3047), 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(3045), 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, + [45487] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1429), 1, - sym_identifier, - ACTIONS(1441), 1, - anon_sym_sizeof, - ACTIONS(2262), 1, + ACTIONS(3470), 4, anon_sym_LPAREN2, - STATE(671), 1, - sym_string_literal, - STATE(914), 1, - sym_expression, - ACTIONS(25), 2, anon_sym_STAR, - anon_sym_AMP, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(1433), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1435), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2264), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(762), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [15999] = 21, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3468), 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, + [45542] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(19), 1, + ACTIONS(3037), 4, anon_sym_LPAREN2, - ACTIONS(89), 1, - anon_sym_sizeof, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1773), 1, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3035), 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, - STATE(671), 1, - sym_string_literal, - STATE(1032), 1, - sym_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + [45597] = 3, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(2806), 14, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(87), 2, + 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, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(944), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [16101] = 21, + anon_sym_DASH_GT, + [45650] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1429), 1, + ACTIONS(3474), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3472), 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(1779), 1, - anon_sym_sizeof, - ACTIONS(2244), 1, + [45705] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3478), 4, anon_sym_LPAREN2, - STATE(671), 1, - sym_string_literal, - STATE(1037), 1, - sym_expression, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(1775), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1777), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2018), 2, anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2246), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(762), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [16203] = 21, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3476), 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, + [45760] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(19), 1, + ACTIONS(3482), 4, anon_sym_LPAREN2, - ACTIONS(89), 1, - anon_sym_sizeof, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1773), 1, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3480), 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, - STATE(671), 1, - sym_string_literal, - STATE(1029), 1, - sym_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, + [45815] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3486), 4, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_AMP, - ACTIONS(87), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(944), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [16305] = 21, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3484), 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, + [45870] = 9, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(19), 1, + ACTIONS(3433), 1, anon_sym_LPAREN2, - ACTIONS(89), 1, - anon_sym_sizeof, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1773), 1, - sym_identifier, - STATE(671), 1, - sym_string_literal, - STATE(1039), 1, - sym_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + 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, - ACTIONS(25), 2, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(87), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(944), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [16407] = 21, + 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, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1429), 1, - sym_identifier, - ACTIONS(1441), 1, - anon_sym_sizeof, - ACTIONS(2386), 1, + ACTIONS(3490), 4, anon_sym_LPAREN2, - STATE(671), 1, - sym_string_literal, - STATE(782), 1, - sym_expression, - ACTIONS(25), 2, anon_sym_STAR, - anon_sym_AMP, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(1433), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1435), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2264), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(762), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [16509] = 21, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3488), 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, + [45990] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1429), 1, - sym_identifier, - ACTIONS(1441), 1, - anon_sym_sizeof, - ACTIONS(2262), 1, + ACTIONS(3494), 4, anon_sym_LPAREN2, - STATE(671), 1, - sym_string_literal, - STATE(919), 1, - sym_expression, - ACTIONS(25), 2, anon_sym_STAR, - anon_sym_AMP, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(1433), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1435), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2264), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(762), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [16611] = 21, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3492), 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, + [46045] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(19), 1, + ACTIONS(3498), 4, anon_sym_LPAREN2, - ACTIONS(89), 1, - anon_sym_sizeof, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1773), 1, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3496), 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, - STATE(671), 1, - sym_string_literal, - STATE(1033), 1, - sym_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, + [46100] = 7, + 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(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_AMP, - ACTIONS(87), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(944), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [16713] = 21, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + 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, + [46161] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1429), 1, + ACTIONS(3502), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3500), 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(1441), 1, - anon_sym_sizeof, - ACTIONS(2262), 1, + [46216] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3506), 4, anon_sym_LPAREN2, - STATE(671), 1, - sym_string_literal, - STATE(783), 1, - sym_expression, - ACTIONS(25), 2, anon_sym_STAR, - anon_sym_AMP, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(1433), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1435), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2264), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(762), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [16815] = 21, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3504), 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, + [46271] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(19), 1, + ACTIONS(3510), 4, anon_sym_LPAREN2, - ACTIONS(89), 1, - anon_sym_sizeof, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1773), 1, - sym_identifier, - STATE(671), 1, - sym_string_literal, - STATE(1042), 1, - sym_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, anon_sym_STAR, - anon_sym_AMP, - ACTIONS(87), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(944), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [16917] = 21, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3508), 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, + [46326] = 9, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1429), 1, - sym_identifier, - ACTIONS(1779), 1, - anon_sym_sizeof, - ACTIONS(2244), 1, + ACTIONS(3433), 1, anon_sym_LPAREN2, - STATE(671), 1, - sym_string_literal, - STATE(1028), 1, - sym_expression, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(1775), 2, + 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(3051), 15, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1777), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2018), 2, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(2246), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(762), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [17019] = 21, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + sym_identifier, + ACTIONS(3049), 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, + [46391] = 21, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(19), 1, + ACTIONS(3433), 1, anon_sym_LPAREN2, - ACTIONS(89), 1, - anon_sym_sizeof, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1773), 1, - sym_identifier, - STATE(671), 1, - sym_string_literal, - STATE(1213), 1, - sym_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, + 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(87), 2, + ACTIONS(3534), 1, + anon_sym_QMARK, + STATE(1225), 1, + sym_argument_list, + ACTIONS(3437), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(944), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [17121] = 21, + 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, - ACTIONS(19), 1, + 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, anon_sym_LPAREN2, - ACTIONS(89), 1, - anon_sym_sizeof, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1773), 1, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(2897), 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, - STATE(671), 1, - sym_string_literal, - STATE(1041), 1, - sym_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, + [46539] = 6, + 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, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_AMP, - ACTIONS(87), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(944), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [17223] = 3, + 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, - ACTIONS(2390), 10, + 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(2919), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(2388), 48, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + ACTIONS(2917), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -85876,10 +124065,59 @@ static const uint16_t ts_small_parse_table[] = { 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, + [46657] = 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(2889), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(2887), 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, @@ -85900,1410 +124138,1049 @@ 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, - anon_sym_asm, - anon_sym___asm__, sym_identifier, - [17289] = 21, + [46716] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(19), 1, + ACTIONS(3317), 4, anon_sym_LPAREN2, - ACTIONS(89), 1, - anon_sym_sizeof, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1773), 1, - sym_identifier, - STATE(671), 1, - sym_string_literal, - STATE(1045), 1, - sym_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, anon_sym_STAR, - anon_sym_AMP, - ACTIONS(87), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(944), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [17391] = 21, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3315), 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, + [46771] = 10, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(2000), 1, - sym_identifier, - ACTIONS(2006), 1, - anon_sym_sizeof, - ACTIONS(2392), 1, + ACTIONS(3433), 1, anon_sym_LPAREN2, - STATE(671), 1, - sym_string_literal, - STATE(1056), 1, - sym_expression, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(2002), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2004), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2018), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2028), 2, + ACTIONS(3435), 1, + anon_sym_LBRACK, + STATE(1225), 1, + sym_argument_list, + ACTIONS(3437), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(1066), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [17493] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1429), 1, - sym_identifier, - ACTIONS(1461), 1, - anon_sym_sizeof, - ACTIONS(2284), 1, - anon_sym_LPAREN2, - STATE(781), 1, - sym_expression, - STATE(940), 1, - sym_string_literal, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(1457), 2, + 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, - ACTIONS(1459), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2276), 2, - anon_sym_STAR, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(2286), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(762), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [17595] = 21, + 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(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1429), 1, - sym_identifier, - ACTIONS(1441), 1, - anon_sym_sizeof, - ACTIONS(2262), 1, + ACTIONS(3433), 1, anon_sym_LPAREN2, - STATE(671), 1, - sym_string_literal, - STATE(789), 1, - sym_expression, - ACTIONS(25), 2, - anon_sym_STAR, + 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(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(1433), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1435), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2264), 2, + ACTIONS(3534), 1, + anon_sym_QMARK, + STATE(1225), 1, + sym_argument_list, + ACTIONS(3437), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(762), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [17697] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(2000), 1, - sym_identifier, - ACTIONS(2006), 1, - anon_sym_sizeof, - ACTIONS(2014), 1, - anon_sym_LPAREN2, - STATE(671), 1, - sym_string_literal, - STATE(1212), 1, - sym_expression, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(2002), 2, + ACTIONS(3439), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3512), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2004), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2018), 2, + 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, + sym_identifier, + ACTIONS(3514), 3, anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2028), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(1066), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [17799] = 21, + 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, + 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, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(2907), 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, + [46986] = 21, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(19), 1, + ACTIONS(3433), 1, anon_sym_LPAREN2, - ACTIONS(89), 1, - anon_sym_sizeof, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1773), 1, - sym_identifier, - STATE(671), 1, - sym_string_literal, - STATE(1207), 1, - sym_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, + 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(87), 2, + ACTIONS(3534), 1, + anon_sym_QMARK, + STATE(1225), 1, + sym_argument_list, + ACTIONS(3437), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(944), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [17901] = 21, + 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, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(19), 1, + ACTIONS(3544), 4, anon_sym_LPAREN2, - ACTIONS(89), 1, - anon_sym_sizeof, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1773), 1, - sym_identifier, - STATE(671), 1, - sym_string_literal, - STATE(1051), 1, - sym_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, anon_sym_STAR, - anon_sym_AMP, - ACTIONS(87), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(944), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [18003] = 21, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3542), 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, + [47130] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(19), 1, + ACTIONS(3548), 4, anon_sym_LPAREN2, - ACTIONS(89), 1, - anon_sym_sizeof, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1773), 1, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3546), 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, - STATE(671), 1, - sym_string_literal, - STATE(1052), 1, - sym_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + [47185] = 11, + 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(3512), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + 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, - ACTIONS(87), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(944), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [18105] = 21, + 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, + [47254] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(2000), 1, + ACTIONS(3552), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3550), 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(2006), 1, - anon_sym_sizeof, - ACTIONS(2014), 1, + [47309] = 12, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3433), 1, anon_sym_LPAREN2, - STATE(671), 1, - sym_string_literal, - STATE(1199), 1, - sym_expression, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(2002), 2, + 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(2004), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2018), 2, + 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, - ACTIONS(2028), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(1066), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [18207] = 21, + anon_sym_GT, + anon_sym_LT, + 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, + [47380] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1948), 1, - anon_sym_sizeof, - ACTIONS(2272), 1, - sym_identifier, - ACTIONS(2274), 1, + ACTIONS(3556), 4, anon_sym_LPAREN2, - STATE(940), 1, - sym_string_literal, - STATE(1108), 1, - sym_expression, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(1944), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1946), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2276), 2, anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2278), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(997), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [18309] = 21, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3554), 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, + [47435] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1429), 1, - sym_identifier, - ACTIONS(1441), 1, - anon_sym_sizeof, - ACTIONS(2262), 1, + ACTIONS(3100), 4, anon_sym_LPAREN2, - STATE(671), 1, - sym_string_literal, - STATE(908), 1, - sym_expression, - ACTIONS(25), 2, anon_sym_STAR, - anon_sym_AMP, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(1433), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1435), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2264), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(762), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [18411] = 21, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3098), 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, + [47490] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1429), 1, - sym_identifier, - ACTIONS(1441), 1, - anon_sym_sizeof, - ACTIONS(2262), 1, + ACTIONS(3025), 4, anon_sym_LPAREN2, - STATE(671), 1, - sym_string_literal, - STATE(918), 1, - sym_expression, - ACTIONS(25), 2, anon_sym_STAR, - anon_sym_AMP, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(1433), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1435), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2264), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(762), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [18513] = 21, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3023), 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, + [47545] = 9, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(19), 1, + ACTIONS(3433), 1, anon_sym_LPAREN2, - ACTIONS(89), 1, - anon_sym_sizeof, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1773), 1, - sym_identifier, - STATE(671), 1, - sym_string_literal, - STATE(1201), 1, - sym_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + 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(3029), 15, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(87), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(944), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [18615] = 21, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + sym_identifier, + ACTIONS(3027), 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, + [47610] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1429), 1, + ACTIONS(3560), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3558), 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(1441), 1, - anon_sym_sizeof, - ACTIONS(2262), 1, + [47665] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3564), 4, anon_sym_LPAREN2, - STATE(671), 1, - sym_string_literal, - STATE(917), 1, - sym_expression, - ACTIONS(25), 2, anon_sym_STAR, - anon_sym_AMP, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(1433), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1435), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2264), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(762), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [18717] = 21, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3562), 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, + [47720] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(19), 1, + ACTIONS(3568), 4, anon_sym_LPAREN2, - ACTIONS(89), 1, - anon_sym_sizeof, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1773), 1, - sym_identifier, - STATE(671), 1, - sym_string_literal, - STATE(1144), 1, - sym_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, anon_sym_STAR, - anon_sym_AMP, - ACTIONS(87), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(944), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [18819] = 21, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3566), 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, + [47775] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1429), 1, - sym_identifier, - ACTIONS(1461), 1, - anon_sym_sizeof, - ACTIONS(2284), 1, + ACTIONS(3572), 4, anon_sym_LPAREN2, - STATE(801), 1, - sym_expression, - STATE(940), 1, - sym_string_literal, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(1457), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1459), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2276), 2, anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2286), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(762), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [18921] = 21, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3570), 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, + [47830] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(19), 1, + ACTIONS(3576), 4, anon_sym_LPAREN2, - ACTIONS(89), 1, - anon_sym_sizeof, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1773), 1, - sym_identifier, - STATE(671), 1, - sym_string_literal, - STATE(1086), 1, - sym_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, anon_sym_STAR, - anon_sym_AMP, - ACTIONS(87), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(944), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [19023] = 3, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3574), 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, + [47885] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2396), 10, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3580), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(2394), 48, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + ACTIONS(3578), 40, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -87316,11 +125193,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_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, @@ -87340,3205 +125220,2765 @@ 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, - anon_sym_asm, - anon_sym___asm__, sym_identifier, - [19089] = 21, + [47940] = 14, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(19), 1, + ACTIONS(3433), 1, anon_sym_LPAREN2, - ACTIONS(89), 1, - anon_sym_sizeof, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1773), 1, - sym_identifier, - STATE(671), 1, - sym_string_literal, - STATE(789), 1, - sym_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + 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(25), 2, + 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(3514), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3017), 6, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(87), 2, + anon_sym_EQ, + sym_identifier, + ACTIONS(2991), 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_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, + 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, + [48015] = 15, + 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(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(944), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [19191] = 21, + 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(3514), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3017), 6, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + sym_identifier, + ACTIONS(2991), 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_PIPE_PIPE, + anon_sym_AMP_AMP, + 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, + [48092] = 16, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1429), 1, - sym_identifier, - ACTIONS(1461), 1, - anon_sym_sizeof, - ACTIONS(2284), 1, + ACTIONS(3433), 1, anon_sym_LPAREN2, - STATE(940), 1, - sym_string_literal, - STATE(996), 1, - sym_expression, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(1457), 2, + ACTIONS(3435), 1, + anon_sym_LBRACK, + ACTIONS(3524), 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(3512), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1459), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2276), 2, + 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(3514), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3017), 5, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ, + sym_identifier, + ACTIONS(2991), 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_PIPE_PIPE, + anon_sym_AMP_AMP, + 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, + [48171] = 17, + 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(3522), 1, + anon_sym_CARET, + ACTIONS(3524), 1, anon_sym_AMP, - ACTIONS(2286), 2, + STATE(1225), 1, + sym_argument_list, + ACTIONS(3437), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(762), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [19293] = 21, + 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(3514), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3017), 4, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_EQ, + sym_identifier, + ACTIONS(2991), 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_PIPE_PIPE, + anon_sym_AMP_AMP, + 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, + [48252] = 8, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(19), 1, + ACTIONS(3433), 1, anon_sym_LPAREN2, - ACTIONS(89), 1, - anon_sym_sizeof, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1773), 1, - sym_identifier, - STATE(671), 1, - sym_string_literal, - STATE(1208), 1, - sym_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(3435), 1, + anon_sym_LBRACK, + STATE(1225), 1, + sym_argument_list, + ACTIONS(3439), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3033), 15, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(87), 2, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + sym_identifier, + ACTIONS(3031), 24, + 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, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(944), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [19395] = 21, + [48315] = 18, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1429), 1, - sym_identifier, - ACTIONS(1779), 1, - anon_sym_sizeof, - ACTIONS(2244), 1, + ACTIONS(3433), 1, anon_sym_LPAREN2, - STATE(671), 1, - sym_string_literal, - STATE(1030), 1, - sym_expression, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(1775), 2, + ACTIONS(3435), 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, + 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(1777), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2018), 2, + 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(3017), 3, + aux_sym_preproc_elif_token1, + anon_sym_EQ, + sym_identifier, + ACTIONS(3514), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2991), 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_PIPE_PIPE, + anon_sym_AMP_AMP, + 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, + [48398] = 19, + 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(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(2246), 2, + STATE(1225), 1, + sym_argument_list, + ACTIONS(3437), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(762), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [19497] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1429), 1, + 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(3017), 3, + aux_sym_preproc_elif_token1, + anon_sym_EQ, sym_identifier, - ACTIONS(1441), 1, - anon_sym_sizeof, - ACTIONS(2262), 1, - anon_sym_LPAREN2, - STATE(671), 1, - sym_string_literal, - STATE(781), 1, - sym_expression, - ACTIONS(25), 2, + ACTIONS(3514), 3, anon_sym_STAR, - anon_sym_AMP, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(1433), 2, + 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, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1435), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2264), 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_EQ, + sym_identifier, + ACTIONS(3208), 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, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(762), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [19599] = 21, + anon_sym_DOT, + anon_sym_DASH_GT, + [48537] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1948), 1, - anon_sym_sizeof, - ACTIONS(2272), 1, + ACTIONS(3188), 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(2274), 1, + ACTIONS(3186), 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, - STATE(789), 1, - sym_expression, - STATE(940), 1, - sym_string_literal, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(1944), 2, + 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, + [48591] = 3, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3206), 14, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1946), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2276), 2, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(2278), 2, + 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, + 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, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(997), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [19701] = 21, + anon_sym_DASH_GT, + [48643] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1948), 1, - anon_sym_sizeof, - ACTIONS(2272), 1, - sym_identifier, - ACTIONS(2274), 1, - anon_sym_LPAREN2, - STATE(940), 1, - sym_string_literal, - STATE(1099), 1, - sym_expression, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(1944), 2, + ACTIONS(3172), 15, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1946), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2276), 2, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(2278), 2, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + sym_identifier, + ACTIONS(3170), 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, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(997), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [19803] = 21, - ACTIONS(3), 1, + anon_sym_DOT, + anon_sym_DASH_GT, + [48697] = 3, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1429), 1, - sym_identifier, - ACTIONS(1461), 1, - anon_sym_sizeof, - ACTIONS(2284), 1, - anon_sym_LPAREN2, - STATE(789), 1, - sym_expression, - STATE(940), 1, - sym_string_literal, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(1457), 2, + ACTIONS(3176), 14, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1459), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2276), 2, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(2286), 2, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + ACTIONS(3174), 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, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(762), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [19905] = 21, + anon_sym_DASH_GT, + [48749] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1429), 1, - sym_identifier, - ACTIONS(1441), 1, - anon_sym_sizeof, - ACTIONS(2262), 1, - anon_sym_LPAREN2, - STATE(671), 1, - sym_string_literal, - STATE(910), 1, - sym_expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(1433), 2, + ACTIONS(3180), 15, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1435), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2264), 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_EQ, + sym_identifier, + ACTIONS(3178), 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, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(762), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [20007] = 21, - ACTIONS(3), 1, + anon_sym_DOT, + anon_sym_DASH_GT, + [48803] = 3, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(89), 1, - anon_sym_sizeof, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1773), 1, - sym_identifier, - STATE(671), 1, - sym_string_literal, - STATE(1143), 1, - sym_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(3214), 14, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(87), 2, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + ACTIONS(3212), 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, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(944), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [20109] = 21, + anon_sym_DASH_GT, + [48855] = 11, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1948), 1, - anon_sym_sizeof, - ACTIONS(2272), 1, + 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, + 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(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_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(2274), 1, - anon_sym_LPAREN2, - STATE(783), 1, - sym_expression, - STATE(940), 1, - sym_string_literal, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(1944), 2, + [48923] = 3, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3148), 14, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1946), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2276), 2, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(2278), 2, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + ACTIONS(3146), 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, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(997), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [20211] = 21, - ACTIONS(3), 1, + anon_sym_DASH_GT, + [48975] = 3, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(89), 1, - anon_sym_sizeof, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1773), 1, - sym_identifier, - STATE(671), 1, - sym_string_literal, - STATE(1031), 1, - sym_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(3210), 14, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(87), 2, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + ACTIONS(3208), 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, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(944), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [20313] = 21, + anon_sym_DASH_GT, + [49027] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1429), 1, - sym_identifier, - ACTIONS(1441), 1, - anon_sym_sizeof, - ACTIONS(2262), 1, - anon_sym_LPAREN2, - STATE(671), 1, - sym_string_literal, - STATE(915), 1, - sym_expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(1433), 2, + ACTIONS(3226), 15, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1435), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2264), 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_EQ, + sym_identifier, + ACTIONS(3224), 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, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(762), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [20415] = 21, - ACTIONS(3), 1, + anon_sym_DOT, + anon_sym_DASH_GT, + [49081] = 3, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1948), 1, - anon_sym_sizeof, - ACTIONS(2272), 1, - sym_identifier, - ACTIONS(2398), 1, - anon_sym_LPAREN2, - STATE(782), 1, - sym_expression, - STATE(940), 1, - sym_string_literal, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(1944), 2, + ACTIONS(3168), 14, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1946), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2276), 2, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(2278), 2, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + ACTIONS(3166), 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, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(997), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [20517] = 21, + anon_sym_DASH_GT, + [49133] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1429), 1, - sym_identifier, - ACTIONS(1461), 1, - anon_sym_sizeof, - ACTIONS(2284), 1, - anon_sym_LPAREN2, - STATE(783), 1, - sym_expression, - STATE(940), 1, - sym_string_literal, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(1457), 2, + ACTIONS(3130), 15, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1459), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2276), 2, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(2286), 2, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + sym_identifier, + ACTIONS(3128), 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, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(762), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [20619] = 21, + anon_sym_DOT, + anon_sym_DASH_GT, + [49187] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(2000), 1, + ACTIONS(3222), 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(2006), 1, - anon_sym_sizeof, - ACTIONS(2014), 1, + ACTIONS(3220), 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, - STATE(671), 1, - sym_string_literal, - STATE(1164), 1, - sym_expression, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(2002), 2, + 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, + [49241] = 3, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(1962), 14, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2004), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2018), 2, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(2028), 2, + 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, + 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, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(1066), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [20721] = 21, + anon_sym_DASH_GT, + [49293] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1429), 1, - sym_identifier, - ACTIONS(1779), 1, - anon_sym_sizeof, - ACTIONS(2244), 1, - anon_sym_LPAREN2, - STATE(671), 1, - sym_string_literal, - STATE(1049), 1, - sym_expression, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(1775), 2, + ACTIONS(1962), 15, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1777), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2018), 2, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(2246), 2, + 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, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(762), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [20823] = 21, + anon_sym_DOT, + anon_sym_DASH_GT, + [49347] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(2000), 1, - sym_identifier, - ACTIONS(2006), 1, - anon_sym_sizeof, - ACTIONS(2014), 1, - anon_sym_LPAREN2, - STATE(671), 1, - sym_string_literal, - STATE(1165), 1, - sym_expression, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(2002), 2, + ACTIONS(3148), 15, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2004), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2018), 2, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(2028), 2, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + sym_identifier, + ACTIONS(3146), 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, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(1066), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [20925] = 21, + anon_sym_DOT, + anon_sym_DASH_GT, + [49401] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1429), 1, - sym_identifier, - ACTIONS(1441), 1, - anon_sym_sizeof, - ACTIONS(2262), 1, + ACTIONS(2962), 3, anon_sym_LPAREN2, - STATE(671), 1, - sym_string_literal, - STATE(912), 1, - sym_expression, - ACTIONS(25), 2, anon_sym_STAR, - anon_sym_AMP, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(1433), 2, + 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, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3114), 15, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1435), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2264), 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_EQ, + sym_identifier, + ACTIONS(3112), 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, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(762), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [21027] = 21, + anon_sym_DOT, + anon_sym_DASH_GT, + [49509] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(2000), 1, - sym_identifier, - ACTIONS(2006), 1, - anon_sym_sizeof, - ACTIONS(2014), 1, - anon_sym_LPAREN2, - STATE(671), 1, - sym_string_literal, - STATE(1166), 1, - sym_expression, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(2002), 2, + ACTIONS(3126), 15, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2004), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2018), 2, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(2028), 2, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + sym_identifier, + ACTIONS(3124), 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, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(1066), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [21129] = 21, + anon_sym_DOT, + anon_sym_DASH_GT, + [49563] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + 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, + [49617] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(2000), 1, + ACTIONS(3258), 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(2006), 1, - anon_sym_sizeof, - ACTIONS(2014), 1, + ACTIONS(3256), 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, - STATE(671), 1, - sym_string_literal, - STATE(1152), 1, - sym_expression, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(2002), 2, + 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, + [49671] = 3, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3192), 14, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2004), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2018), 2, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(2028), 2, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + ACTIONS(3190), 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, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(1066), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [21231] = 21, - ACTIONS(3), 1, + anon_sym_DASH_GT, + [49723] = 3, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(89), 1, - anon_sym_sizeof, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1773), 1, - sym_identifier, - STATE(671), 1, - sym_string_literal, - STATE(1188), 1, - sym_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(3250), 14, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(87), 2, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + ACTIONS(3248), 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, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(944), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [21333] = 21, + anon_sym_DASH_GT, + [49775] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(2000), 1, - sym_identifier, - ACTIONS(2006), 1, - anon_sym_sizeof, - ACTIONS(2014), 1, - anon_sym_LPAREN2, - STATE(671), 1, - sym_string_literal, - STATE(1168), 1, - sym_expression, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(2002), 2, + ACTIONS(3214), 15, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2004), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2018), 2, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(2028), 2, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + sym_identifier, + ACTIONS(3212), 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, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(1066), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [21435] = 21, + anon_sym_DOT, + anon_sym_DASH_GT, + [49829] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(2000), 1, - sym_identifier, - ACTIONS(2006), 1, - anon_sym_sizeof, - ACTIONS(2014), 1, - anon_sym_LPAREN2, - STATE(671), 1, - sym_string_literal, - STATE(1151), 1, - sym_expression, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(2002), 2, + ACTIONS(3206), 15, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2004), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2018), 2, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(2028), 2, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + sym_identifier, + ACTIONS(3204), 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, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(1066), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [21537] = 21, + anon_sym_DOT, + anon_sym_DASH_GT, + [49883] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(2000), 1, - sym_identifier, - ACTIONS(2006), 1, - anon_sym_sizeof, - ACTIONS(2014), 1, - anon_sym_LPAREN2, - STATE(671), 1, - sym_string_literal, - STATE(1170), 1, - sym_expression, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(2002), 2, + ACTIONS(3134), 15, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2004), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2018), 2, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(2028), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(1066), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [21639] = 21, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + sym_identifier, + ACTIONS(3132), 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, + [49937] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(2000), 1, - sym_identifier, - ACTIONS(2006), 1, - anon_sym_sizeof, - ACTIONS(2014), 1, - anon_sym_LPAREN2, - STATE(671), 1, - sym_string_literal, - STATE(1172), 1, - sym_expression, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(2002), 2, + ACTIONS(3236), 15, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2004), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2018), 2, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(2028), 2, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + 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, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(1066), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [21741] = 21, + anon_sym_DOT, + anon_sym_DASH_GT, + [49991] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(2000), 1, - sym_identifier, - ACTIONS(2006), 1, - anon_sym_sizeof, - ACTIONS(2014), 1, - anon_sym_LPAREN2, - STATE(671), 1, - sym_string_literal, - STATE(1030), 1, - sym_expression, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(2002), 2, + ACTIONS(3192), 15, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2004), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2018), 2, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(2028), 2, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + sym_identifier, + ACTIONS(3190), 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, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(1066), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [21843] = 21, - ACTIONS(3), 1, + anon_sym_DOT, + anon_sym_DASH_GT, + [50045] = 3, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(2000), 1, - sym_identifier, - ACTIONS(2006), 1, - anon_sym_sizeof, - ACTIONS(2014), 1, - anon_sym_LPAREN2, - STATE(671), 1, - sym_string_literal, - STATE(1174), 1, - sym_expression, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(2002), 2, + ACTIONS(3184), 14, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2004), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2018), 2, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(2028), 2, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + ACTIONS(3182), 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, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(1066), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [21945] = 21, - ACTIONS(3), 1, + anon_sym_DASH_GT, + [50097] = 3, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(2000), 1, - sym_identifier, - ACTIONS(2006), 1, - anon_sym_sizeof, - ACTIONS(2014), 1, - anon_sym_LPAREN2, - STATE(671), 1, - sym_string_literal, - STATE(1175), 1, - sym_expression, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(2002), 2, + ACTIONS(3236), 14, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2004), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2018), 2, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(2028), 2, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + ACTIONS(3234), 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, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(1066), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [22047] = 21, + anon_sym_DASH_GT, + [50149] = 8, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1429), 1, - sym_identifier, - ACTIONS(1461), 1, - anon_sym_sizeof, - ACTIONS(2400), 1, + ACTIONS(3459), 1, anon_sym_LPAREN2, - STATE(782), 1, - sym_expression, - STATE(940), 1, - sym_string_literal, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(1457), 2, + 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, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3246), 15, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1459), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2276), 2, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(2286), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(762), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [22149] = 21, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + sym_identifier, + ACTIONS(3244), 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, + [50265] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1429), 1, - sym_identifier, - ACTIONS(1779), 1, - anon_sym_sizeof, - ACTIONS(2244), 1, - anon_sym_LPAREN2, - STATE(671), 1, - sym_string_literal, - STATE(1046), 1, - sym_expression, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(1775), 2, + ACTIONS(3176), 15, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1777), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2018), 2, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(2246), 2, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + sym_identifier, + ACTIONS(3174), 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, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(762), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [22251] = 21, - ACTIONS(3), 1, + anon_sym_DOT, + anon_sym_DASH_GT, + [50319] = 3, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(89), 1, - anon_sym_sizeof, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1773), 1, - sym_identifier, - STATE(671), 1, - sym_string_literal, - STATE(1158), 1, - sym_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(3202), 14, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(87), 2, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + ACTIONS(3200), 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, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(944), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [22353] = 21, - ACTIONS(3), 1, + anon_sym_DASH_GT, + [50371] = 3, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1429), 1, - sym_identifier, - ACTIONS(1461), 1, - anon_sym_sizeof, - ACTIONS(2284), 1, - anon_sym_LPAREN2, - STATE(940), 1, - sym_string_literal, - STATE(991), 1, - sym_expression, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(1457), 2, + ACTIONS(3164), 14, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1459), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2276), 2, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(2286), 2, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + ACTIONS(3162), 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, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(762), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [22455] = 21, - ACTIONS(3), 1, + anon_sym_DASH_GT, + [50423] = 3, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(89), 1, - anon_sym_sizeof, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1773), 1, - sym_identifier, - STATE(671), 1, - sym_string_literal, - STATE(1211), 1, - sym_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(3122), 14, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(87), 2, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + ACTIONS(3120), 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, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(944), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [22557] = 21, + anon_sym_DASH_GT, + [50475] = 6, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1429), 1, - sym_identifier, - ACTIONS(1441), 1, - anon_sym_sizeof, - ACTIONS(2262), 1, - anon_sym_LPAREN2, - STATE(671), 1, - sym_string_literal, - STATE(911), 1, - sym_expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(1433), 2, + 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, - ACTIONS(1435), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2264), 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, + 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, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(762), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [22659] = 21, + anon_sym_DOT, + anon_sym_DASH_GT, + [50533] = 3, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3188), 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(3186), 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, + [50585] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1429), 1, - sym_identifier, - ACTIONS(1441), 1, - anon_sym_sizeof, - ACTIONS(2262), 1, - anon_sym_LPAREN2, - STATE(671), 1, - sym_string_literal, - STATE(909), 1, - sym_expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(1433), 2, + ACTIONS(3164), 15, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1435), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2264), 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_EQ, + sym_identifier, + ACTIONS(3162), 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, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(762), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [22761] = 21, + anon_sym_DOT, + anon_sym_DASH_GT, + [50639] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1429), 1, + ACTIONS(3108), 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(1461), 1, - anon_sym_sizeof, - ACTIONS(2284), 1, + ACTIONS(3106), 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, - STATE(940), 1, - sym_string_literal, - STATE(990), 1, - sym_expression, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(1457), 2, + 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, + [50693] = 3, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3126), 14, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1459), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2276), 2, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(2286), 2, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + ACTIONS(3124), 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, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(762), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [22863] = 21, + anon_sym_DASH_GT, + [50745] = 9, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1429), 1, - sym_identifier, - ACTIONS(1441), 1, - anon_sym_sizeof, - ACTIONS(2262), 1, + ACTIONS(3598), 1, anon_sym_LPAREN2, - STATE(671), 1, - sym_string_literal, - STATE(920), 1, - sym_expression, - ACTIONS(25), 2, + ACTIONS(3602), 1, + anon_sym_LBRACK, + STATE(1156), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(1967), 2, + anon_sym_COMMA, anon_sym_STAR, - anon_sym_AMP, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(1433), 2, + 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, + 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, + [50809] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3202), 15, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1435), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2264), 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_EQ, + sym_identifier, + ACTIONS(3200), 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, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(762), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [22965] = 21, + anon_sym_DOT, + anon_sym_DASH_GT, + [50863] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_offsetof, - ACTIONS(95), 1, - anon_sym__Generic, - ACTIONS(165), 1, - sym_number_literal, - ACTIONS(1429), 1, + ACTIONS(3168), 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(1779), 1, - anon_sym_sizeof, - ACTIONS(2244), 1, + ACTIONS(3166), 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, - STATE(671), 1, - sym_string_literal, - STATE(1054), 1, - sym_expression, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(107), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(167), 2, - sym_true, - sym_false, - ACTIONS(1775), 2, + 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, + [50917] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3184), 15, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1777), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2018), 2, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(2246), 2, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + sym_identifier, + ACTIONS(3182), 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, - ACTIONS(91), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(101), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(762), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(758), 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, - [23067] = 10, + anon_sym_DOT, + anon_sym_DASH_GT, + [50971] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2406), 1, - anon_sym_LBRACE, - ACTIONS(2408), 1, - anon_sym___aligned, - STATE(817), 1, - sym_field_declaration_list, - STATE(830), 1, - sym_attribute_specifier, - ACTIONS(33), 2, + ACTIONS(2015), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK_LBRACK, + ACTIONS(2013), 40, + anon_sym___extension__, + anon_sym_extern, anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(37), 4, anon_sym___read_mostly, + anon_sym___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(2404), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2402), 38, - anon_sym___extension__, - anon_sym_extern, anon_sym___declspec, anon_sym___based, anon_sym___init, @@ -90549,11 +127989,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -90573,12 +128008,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, sym_identifier, - [23146] = 3, + [51025] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2410), 24, + ACTIONS(3250), 15, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -90592,21 +128028,10 @@ 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(2412), 33, - anon_sym_DOT_DOT_DOT, + ACTIONS(3248), 28, anon_sym_COMMA, - anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, @@ -90618,11 +128043,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, @@ -90636,12 +128057,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, - [23211] = 3, - ACTIONS(3), 1, + [51079] = 3, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(2414), 24, - aux_sym_preproc_elif_token1, + ACTIONS(3222), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -90654,25 +128076,12 @@ 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(2416), 33, + ACTIONS(3220), 29, 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, @@ -90699,10 +128108,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [23276] = 3, + [51131] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2418), 24, + ACTIONS(3218), 15, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -90716,21 +128127,10 @@ 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(2420), 33, - anon_sym_DOT_DOT_DOT, + ACTIONS(3216), 28, anon_sym_COMMA, - anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, @@ -90742,11 +128142,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, @@ -90760,12 +128156,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, - [23341] = 3, - ACTIONS(3), 1, + [51185] = 3, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(2422), 24, - aux_sym_preproc_elif_token1, + ACTIONS(3130), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -90778,25 +128175,12 @@ 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(2424), 33, + ACTIONS(3128), 29, 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, @@ -90823,11 +128207,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [23406] = 3, - ACTIONS(3), 1, + [51237] = 3, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(2426), 24, - aux_sym_preproc_elif_token1, + ACTIONS(3144), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -90840,25 +128224,12 @@ 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(2428), 33, + ACTIONS(3142), 29, 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, @@ -90885,11 +128256,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [23471] = 3, + [51289] = 11, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2430), 24, - aux_sym_preproc_elif_token1, + 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, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(2929), 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, + [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___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, + 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, + [51425] = 3, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3258), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -90902,25 +128387,12 @@ 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(2432), 33, + ACTIONS(3256), 29, 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, @@ -90947,10 +128419,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [23536] = 3, + [51477] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1756), 24, + ACTIONS(3144), 15, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -90964,21 +128438,10 @@ 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(1750), 33, - anon_sym_DOT_DOT_DOT, + ACTIONS(3142), 28, anon_sym_COMMA, - anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, @@ -90990,11 +128453,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, @@ -91008,11 +128467,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, - [23601] = 3, + [51531] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2434), 24, + ACTIONS(3118), 15, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -91026,21 +128488,10 @@ 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(2436), 33, - anon_sym_DOT_DOT_DOT, + ACTIONS(3116), 28, anon_sym_COMMA, - anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, @@ -91052,11 +128503,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, @@ -91070,12 +128517,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, - [23666] = 3, + [51585] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2438), 24, - aux_sym_preproc_elif_token1, + 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, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3226), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -91088,25 +128586,12 @@ 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(2440), 33, + ACTIONS(3224), 29, 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, @@ -91133,11 +128618,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [23731] = 3, - ACTIONS(3), 1, + [51691] = 3, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(2442), 24, - aux_sym_preproc_elif_token1, + ACTIONS(3118), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -91150,25 +128635,12 @@ 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(2444), 33, + ACTIONS(3116), 29, 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, @@ -91195,11 +128667,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [23796] = 3, - ACTIONS(3), 1, + [51743] = 3, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(1756), 24, - aux_sym_preproc_elif_token1, + ACTIONS(3108), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -91212,25 +128684,12 @@ 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(1750), 33, + ACTIONS(3106), 29, 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, @@ -91257,80 +128716,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [23861] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2406), 1, - anon_sym_LBRACE, - ACTIONS(2450), 1, - anon_sym___aligned, - STATE(814), 1, - sym_field_declaration_list, - STATE(823), 1, - sym_attribute_specifier, - ACTIONS(33), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(35), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(37), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - ACTIONS(2448), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2446), 38, - 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_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, - sym_identifier, - [23940] = 3, - ACTIONS(3), 1, + [51795] = 3, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(2452), 24, - aux_sym_preproc_elif_token1, + ACTIONS(3254), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -91343,25 +128733,12 @@ 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(2454), 33, + ACTIONS(3252), 29, 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, @@ -91388,10 +128765,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [24005] = 3, + [51847] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2456), 24, + ACTIONS(3122), 15, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -91405,21 +128784,10 @@ 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(2458), 33, - anon_sym_DOT_DOT_DOT, + ACTIONS(3120), 28, anon_sym_COMMA, - anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, @@ -91431,11 +128799,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, @@ -91449,40 +128813,78 @@ 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, - [24070] = 10, + [51901] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2406), 1, - anon_sym_LBRACE, - ACTIONS(2464), 1, - anon_sym___aligned, - STATE(803), 1, - sym_field_declaration_list, - STATE(833), 1, - sym_attribute_specifier, - ACTIONS(33), 2, + ACTIONS(3096), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK_LBRACK, + ACTIONS(3094), 40, + anon_sym___extension__, + anon_sym_extern, anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(37), 4, anon_sym___read_mostly, + anon_sym___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(2462), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + 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, + [51955] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2966), 3, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2460), 38, + ACTIONS(2964), 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, @@ -91493,11 +128895,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -91517,13 +128914,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, sym_identifier, - [24149] = 3, - ACTIONS(3), 1, + [52009] = 3, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(2466), 24, - aux_sym_preproc_elif_token1, + ACTIONS(1962), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -91536,25 +128932,12 @@ 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(2468), 33, + ACTIONS(1956), 29, 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, @@ -91581,11 +128964,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [24214] = 3, + [52061] = 11, 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(2470), 24, - aux_sym_preproc_elif_token1, + ACTIONS(3218), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -91598,25 +129038,12 @@ 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(2472), 33, + ACTIONS(3216), 29, 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, @@ -91643,11 +129070,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [24279] = 3, - ACTIONS(3), 1, + [52181] = 3, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(2474), 24, - aux_sym_preproc_elif_token1, + ACTIONS(3180), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -91660,25 +129087,12 @@ 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(2476), 33, + ACTIONS(3178), 29, 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, @@ -91705,10 +129119,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [24344] = 3, + [52233] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2478), 24, + ACTIONS(3254), 15, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -91722,21 +129138,10 @@ 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(2480), 33, - anon_sym_DOT_DOT_DOT, + ACTIONS(3252), 28, anon_sym_COMMA, - anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, @@ -91748,11 +129153,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, @@ -91766,23 +129167,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, - [24409] = 8, + [52287] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2486), 1, - anon_sym_LPAREN2, - ACTIONS(2488), 1, - anon_sym_LBRACK, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2482), 23, + ACTIONS(2806), 15, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -91796,32 +129188,22 @@ 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, sym_identifier, - ACTIONS(2484), 26, + ACTIONS(2808), 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_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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -91833,307 +129215,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [24483] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(41), 1, - anon_sym___declspec, - ACTIONS(57), 1, - sym_primitive_type, - ACTIONS(59), 1, - anon_sym_enum, - ACTIONS(61), 1, - anon_sym_struct, - ACTIONS(63), 1, - anon_sym_union, - ACTIONS(1145), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2008), 1, - sym_identifier, - STATE(799), 1, - sym_alignas_qualifier, - STATE(807), 1, - sym_type_specifier, - STATE(890), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1496), 1, - sym__declaration_specifiers, - ACTIONS(33), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(35), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(55), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(37), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - ACTIONS(49), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(873), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(805), 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(53), 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(51), 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, - [24583] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(41), 1, - anon_sym___declspec, - ACTIONS(57), 1, - sym_primitive_type, - ACTIONS(59), 1, - anon_sym_enum, - ACTIONS(61), 1, - anon_sym_struct, - ACTIONS(63), 1, - anon_sym_union, - ACTIONS(1145), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2008), 1, - sym_identifier, - STATE(799), 1, - sym_alignas_qualifier, - STATE(807), 1, - sym_type_specifier, - STATE(890), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1283), 1, - sym__declaration_specifiers, - ACTIONS(33), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(35), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(55), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(37), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - ACTIONS(49), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(873), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(805), 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(53), 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(51), 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, - [24683] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2224), 1, - sym_identifier, - ACTIONS(2230), 1, - anon_sym_STAR, - ACTIONS(2232), 1, - anon_sym_LBRACK, - STATE(1271), 1, - sym_gnu_asm_expression, - ACTIONS(33), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(35), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(2228), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(1259), 3, - sym_preproc_call_expression, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(37), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - ACTIONS(2226), 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, - 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, - [24765] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2370), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK_LBRACK, - ACTIONS(2368), 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, - [24829] = 3, + anon_sym_DASH_DASH, + 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(2496), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2011), 3, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2494), 49, + ACTIONS(2009), 40, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -92154,11 +129249,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -92178,174 +129268,66 @@ 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, - [24893] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(41), 1, - anon_sym___declspec, - ACTIONS(57), 1, - sym_primitive_type, - ACTIONS(59), 1, - anon_sym_enum, - ACTIONS(61), 1, - anon_sym_struct, - ACTIONS(63), 1, - anon_sym_union, - ACTIONS(1145), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2008), 1, sym_identifier, - STATE(799), 1, - sym_alignas_qualifier, - STATE(807), 1, - sym_type_specifier, - STATE(890), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1494), 1, - sym__declaration_specifiers, - ACTIONS(33), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(35), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(55), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(37), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - ACTIONS(49), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(873), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(805), 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(53), 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(51), 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, - [24993] = 21, - ACTIONS(3), 1, + [52395] = 9, + 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(41), 1, - anon_sym___declspec, - ACTIONS(57), 1, - sym_primitive_type, - ACTIONS(59), 1, - anon_sym_enum, - ACTIONS(61), 1, - anon_sym_struct, - ACTIONS(63), 1, - anon_sym_union, - ACTIONS(1145), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2008), 1, - sym_identifier, - STATE(799), 1, - sym_alignas_qualifier, - STATE(807), 1, - sym_type_specifier, - STATE(890), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1501), 1, - sym__declaration_specifiers, - ACTIONS(33), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(35), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(55), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(37), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - ACTIONS(49), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(873), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(805), 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(53), 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(51), 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, - [25093] = 3, - ACTIONS(3), 1, + ACTIONS(3628), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3630), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3624), 3, + 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, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2991), 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, + [52458] = 3, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(2498), 23, - aux_sym_preproc_elif_token1, + ACTIONS(3134), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -92358,23 +129340,10 @@ 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, - sym_identifier, - ACTIONS(2500), 33, + ACTIONS(3132), 29, 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, @@ -92402,119 +129371,238 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [25157] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2390), 3, + [52509] = 18, + ACTIONS(3017), 1, + anon_sym_EQ, + ACTIONS(3622), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK_LBRACK, - ACTIONS(2388), 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, + ACTIONS(3626), 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_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, - [25221] = 8, - ACTIONS(3), 1, + 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, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(2486), 1, + 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), 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(2488), 1, + ACTIONS(3626), 1, anon_sym_LBRACK, - STATE(765), 1, + 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(2490), 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3628), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, + ACTIONS(3630), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2502), 23, - aux_sym_preproc_elif_token1, + 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, - anon_sym_PIPE, + ACTIONS(2991), 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, + 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, + [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, + 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, - 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, - sym_identifier, - ACTIONS(2504), 26, + ACTIONS(3624), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2991), 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_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, + 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, + [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, + 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(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, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COLON, @@ -92529,52 +129617,159 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [25295] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2486), 1, + [52821] = 14, + ACTIONS(3622), 1, anon_sym_LPAREN2, - ACTIONS(2488), 1, + ACTIONS(3626), 1, anon_sym_LBRACK, - STATE(765), 1, + STATE(1245), 1, sym_argument_list, - ACTIONS(2490), 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3628), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, + ACTIONS(3630), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2506), 23, - aux_sym_preproc_elif_token1, + 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(3017), 4, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, + anon_sym_EQ, + ACTIONS(2991), 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, + 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, + [52894] = 13, + 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, + 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, 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, + 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_EQ, - sym_identifier, - ACTIONS(2508), 26, + ACTIONS(2991), 20, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_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, + [52965] = 11, + 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, + 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_EQ, + ACTIONS(2991), 22, 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_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -92595,28 +129790,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [25369] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2486), 1, + [53032] = 10, + ACTIONS(3622), 1, anon_sym_LPAREN2, - ACTIONS(2488), 1, + ACTIONS(3626), 1, anon_sym_LBRACK, - STATE(765), 1, + STATE(1245), 1, sym_argument_list, - ACTIONS(2490), 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3628), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, + ACTIONS(3630), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2510), 23, - aux_sym_preproc_elif_token1, + ACTIONS(3632), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(3624), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3017), 8, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -92624,23 +129821,10 @@ 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, - sym_identifier, - ACTIONS(2512), 26, + ACTIONS(2991), 22, 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_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -92661,223 +129845,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [25443] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(41), 1, - anon_sym___declspec, - ACTIONS(57), 1, - sym_primitive_type, - ACTIONS(59), 1, - anon_sym_enum, - ACTIONS(61), 1, - anon_sym_struct, - ACTIONS(63), 1, - anon_sym_union, - ACTIONS(1145), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2008), 1, - sym_identifier, - STATE(799), 1, - sym_alignas_qualifier, - STATE(807), 1, - sym_type_specifier, - STATE(890), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1274), 1, - sym__declaration_specifiers, - ACTIONS(33), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(35), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(55), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(37), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - ACTIONS(49), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(873), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(805), 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(53), 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(51), 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, - [25543] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(41), 1, - anon_sym___declspec, - ACTIONS(57), 1, - sym_primitive_type, - ACTIONS(59), 1, - anon_sym_enum, - ACTIONS(61), 1, - anon_sym_struct, - ACTIONS(63), 1, - anon_sym_union, - ACTIONS(1145), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2008), 1, - sym_identifier, - STATE(799), 1, - sym_alignas_qualifier, - STATE(807), 1, - sym_type_specifier, - STATE(890), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1499), 1, - sym__declaration_specifiers, - ACTIONS(33), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(35), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(55), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(37), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - ACTIONS(49), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(873), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(805), 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(53), 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(51), 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, - [25643] = 21, + [53097] = 22, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(41), 1, - anon_sym___declspec, - ACTIONS(57), 1, - sym_primitive_type, - ACTIONS(59), 1, - anon_sym_enum, - ACTIONS(61), 1, - anon_sym_struct, - ACTIONS(63), 1, - anon_sym_union, - ACTIONS(1145), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2008), 1, + ACTIONS(2051), 1, + anon_sym___based, + ACTIONS(2107), 1, + anon_sym_LPAREN2, + ACTIONS(2109), 1, + anon_sym_STAR, + ACTIONS(3650), 1, sym_identifier, - STATE(799), 1, + ACTIONS(3658), 1, + anon_sym_LBRACK, + STATE(1597), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1671), 1, sym_alignas_qualifier, - STATE(807), 1, - sym_type_specifier, - STATE(890), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1498), 1, - sym__declaration_specifiers, - ACTIONS(33), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(35), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(55), 2, + STATE(2110), 1, + sym__declarator, + STATE(2318), 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(37), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - ACTIONS(49), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(873), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(805), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, + ACTIONS(3652), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(3656), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1443), 2, sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(53), 9, + aux_sym__type_definition_type_repeat1, + STATE(1482), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_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, @@ -92887,63 +129912,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(51), 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, - [25743] = 9, + [53186] = 3, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3172), 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(3170), 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, + 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, + [53237] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2406), 1, - anon_sym_LBRACE, - STATE(822), 1, - sym_field_declaration_list, - STATE(840), 1, - sym_attribute_specifier, - ACTIONS(33), 2, + ACTIONS(3662), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3660), 41, + anon_sym___extension__, + anon_sym_extern, anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(37), 4, anon_sym___read_mostly, + anon_sym___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(2516), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2514), 38, - 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_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -92964,100 +130005,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, - sym_identifier, - [25819] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(41), 1, - anon_sym___declspec, - ACTIONS(57), 1, - sym_primitive_type, - ACTIONS(59), 1, anon_sym_enum, - ACTIONS(61), 1, anon_sym_struct, - ACTIONS(63), 1, anon_sym_union, - ACTIONS(1145), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2008), 1, sym_identifier, - STATE(799), 1, - sym_alignas_qualifier, - STATE(807), 1, - sym_type_specifier, - STATE(890), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1495), 1, - sym__declaration_specifiers, - ACTIONS(33), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(35), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(55), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(37), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - ACTIONS(49), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(873), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(805), 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(53), 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(51), 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, - [25919] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2486), 1, + [53290] = 8, + ACTIONS(3622), 1, anon_sym_LPAREN2, - ACTIONS(2488), 1, + ACTIONS(3626), 1, anon_sym_LBRACK, - STATE(765), 1, + STATE(1245), 1, sym_argument_list, - ACTIONS(2492), 2, + 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(2518), 23, - aux_sym_preproc_elif_token1, + ACTIONS(3047), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -93070,23 +130038,10 @@ 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, - sym_identifier, - ACTIONS(2520), 28, + ACTIONS(3045), 22, 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_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -93107,99 +130062,28 @@ 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, - [25991] = 21, + [53351] = 9, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(41), 1, - anon_sym___declspec, - ACTIONS(57), 1, - sym_primitive_type, - ACTIONS(59), 1, - anon_sym_enum, - ACTIONS(61), 1, - anon_sym_struct, - ACTIONS(63), 1, - anon_sym_union, - ACTIONS(1145), 1, + ACTIONS(3595), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2008), 1, - sym_identifier, - STATE(799), 1, - sym_alignas_qualifier, - STATE(807), 1, - sym_type_specifier, - STATE(890), 1, + ACTIONS(3598), 1, + anon_sym_LPAREN2, + ACTIONS(3664), 1, + anon_sym_LBRACK, + STATE(1156), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1294), 1, - sym__declaration_specifiers, - ACTIONS(33), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(35), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(55), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(37), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - ACTIONS(49), 4, + ACTIONS(1967), 2, + anon_sym_STAR, + anon_sym_SEMI, + ACTIONS(3462), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(873), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(805), 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(53), 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(51), 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, - [26091] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2524), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(2522), 49, + ACTIONS(1954), 32, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -93212,19 +130096,6 @@ 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_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -93242,18 +130113,374 @@ 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, - sym_identifier, - [26155] = 3, - ACTIONS(3), 1, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + [53414] = 3, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3246), 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(3244), 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, + 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, + [53465] = 8, + 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(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), 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, + [53526] = 20, + ACTIONS(3084), 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, + ACTIONS(3666), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3668), 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(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(3082), 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, + [53611] = 8, + 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(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), 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, + [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, + 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, + ACTIONS(3666), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3668), 1, + anon_sym_QMARK, + STATE(1245), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(2526), 23, - aux_sym_preproc_elif_token1, + 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(3070), 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, + [53846] = 7, + 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(3630), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3033), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -93266,24 +130493,10 @@ 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, - sym_identifier, - ACTIONS(2528), 33, + ACTIONS(3031), 24, 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, @@ -93291,9 +130504,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, @@ -93308,53 +130519,40 @@ 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, - [26219] = 9, + [53905] = 10, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2406), 1, + ACTIONS(3672), 1, anon_sym_LBRACE, - STATE(826), 1, + STATE(1341), 1, sym_field_declaration_list, - STATE(856), 1, + STATE(1381), 1, sym_attribute_specifier, - ACTIONS(33), 2, + ACTIONS(35), 2, anon_sym___attribute__, anon_sym___must_hold, - ACTIONS(35), 2, + ACTIONS(37), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(37), 4, + ACTIONS(39), 4, anon_sym___read_mostly, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(2532), 7, + ACTIONS(3041), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2530), 38, + ACTIONS(3039), 25, 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_LBRACK, anon_sym_static, anon_sym_auto, @@ -93375,78 +130573,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, sym_identifier, - [26295] = 21, + [53970] = 10, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(41), 1, - anon_sym___declspec, - ACTIONS(57), 1, - sym_primitive_type, - ACTIONS(59), 1, - anon_sym_enum, - ACTIONS(61), 1, - anon_sym_struct, - ACTIONS(63), 1, - anon_sym_union, - ACTIONS(1145), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2008), 1, - sym_identifier, - STATE(799), 1, - sym_alignas_qualifier, - STATE(807), 1, - sym_type_specifier, - STATE(890), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1493), 1, - sym__declaration_specifiers, - ACTIONS(33), 2, + 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(35), 2, + ACTIONS(3677), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(55), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(37), 4, + ACTIONS(3680), 4, anon_sym___read_mostly, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(49), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(873), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(805), 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(53), 9, + ACTIONS(3059), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3057), 25, 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(51), 10, anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -93456,53 +130618,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [26395] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2534), 23, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + 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_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, + ACTIONS(3666), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3668), 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(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, - 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, - sym_identifier, - ACTIONS(2536), 33, + ACTIONS(3624), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3078), 15, 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_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, @@ -93513,76 +130694,23 @@ 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, + 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, - [26459] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2396), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK_LBRACK, - ACTIONS(2394), 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, - [26523] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2538), 23, - aux_sym_preproc_elif_token1, + ACTIONS(3055), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -93595,24 +130723,10 @@ 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, - sym_identifier, - ACTIONS(2540), 33, + ACTIONS(3053), 22, 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, @@ -93620,9 +130734,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, @@ -93635,125 +130747,40 @@ 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, - [26587] = 21, + [54181] = 10, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(41), 1, - anon_sym___declspec, - ACTIONS(57), 1, - sym_primitive_type, - ACTIONS(59), 1, - anon_sym_enum, - ACTIONS(61), 1, - anon_sym_struct, - ACTIONS(63), 1, - anon_sym_union, - ACTIONS(1145), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2008), 1, - sym_identifier, - STATE(799), 1, - sym_alignas_qualifier, - STATE(807), 1, - sym_type_specifier, - STATE(890), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1497), 1, - sym__declaration_specifiers, - ACTIONS(33), 2, + 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(35), 2, + ACTIONS(37), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(55), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(37), 4, + ACTIONS(39), 4, anon_sym___read_mostly, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(49), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(873), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(805), 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(53), 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(51), 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, - [26687] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2544), 7, + ACTIONS(3092), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2542), 49, + ACTIONS(3090), 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___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_LBRACK, anon_sym_static, anon_sym_auto, @@ -93774,98 +130801,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, - [26751] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2224), 1, - sym_identifier, - ACTIONS(2232), 1, - anon_sym_LBRACK, - STATE(1271), 1, - sym_gnu_asm_expression, - ACTIONS(33), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(35), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(2228), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(2230), 2, - anon_sym_STAR, - anon_sym_RBRACE, - STATE(1259), 3, - sym_preproc_call_expression, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(37), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - ACTIONS(2226), 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, - [26833] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2486), 1, + [54246] = 8, + ACTIONS(3622), 1, anon_sym_LPAREN2, - ACTIONS(2488), 1, + ACTIONS(3626), 1, anon_sym_LBRACK, - STATE(765), 1, + STATE(1245), 1, sym_argument_list, - ACTIONS(2490), 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3628), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, + ACTIONS(3630), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2546), 23, - aux_sym_preproc_elif_token1, + ACTIONS(3051), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -93878,23 +130831,10 @@ 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, - sym_identifier, - ACTIONS(2548), 26, + ACTIONS(3049), 22, 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_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -93915,76 +130855,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [26907] = 21, + [54307] = 3, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + 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), 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, + 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, + [54358] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(41), 1, - anon_sym___declspec, - ACTIONS(57), 1, - sym_primitive_type, - ACTIONS(59), 1, - anon_sym_enum, - ACTIONS(61), 1, - anon_sym_struct, - ACTIONS(63), 1, - anon_sym_union, - ACTIONS(1145), 1, + ACTIONS(1236), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2008), 1, - sym_identifier, - STATE(799), 1, - sym_alignas_qualifier, - STATE(807), 1, - sym_type_specifier, - STATE(890), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1280), 1, - sym__declaration_specifiers, - ACTIONS(33), 2, + anon_sym_LBRACE, + ACTIONS(1234), 39, + anon_sym___extension__, + anon_sym_extern, anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(55), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(37), 4, anon_sym___read_mostly, + anon_sym___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(49), 4, + anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(873), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(805), 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(53), 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(51), 10, - anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -93994,50 +130936,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [27007] = 8, + 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(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2554), 1, - anon_sym___aligned, - STATE(818), 1, - sym_attribute_specifier, - ACTIONS(33), 2, + ACTIONS(2962), 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___must_hold, - ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(37), 4, anon_sym___read_mostly, + anon_sym___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(2552), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2550), 38, - 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_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -94058,51 +130996,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [27080] = 8, + [54464] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2560), 1, - anon_sym___aligned, - STATE(832), 1, - sym_attribute_specifier, - ACTIONS(33), 2, + ACTIONS(1236), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(1234), 39, + anon_sym___extension__, + anon_sym_extern, anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(37), 4, anon_sym___read_mostly, + anon_sym___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(2558), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2556), 38, - 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_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -94123,75 +131044,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, - sym_identifier, - [27153] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(41), 1, - anon_sym___declspec, - ACTIONS(57), 1, - sym_primitive_type, - ACTIONS(59), 1, anon_sym_enum, - ACTIONS(61), 1, anon_sym_struct, - ACTIONS(63), 1, anon_sym_union, - ACTIONS(1145), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2008), 1, sym_identifier, - STATE(799), 1, - sym_alignas_qualifier, - STATE(816), 1, - sym_type_specifier, - STATE(890), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(33), 2, + [54516] = 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, + anon_sym___extension__, + anon_sym_extern, anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(55), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(37), 4, anon_sym___read_mostly, + anon_sym___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(49), 4, + anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(873), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(524), 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(53), 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(51), 10, - anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -94201,17 +131081,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [27250] = 3, + 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(1715), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(1252), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1713), 49, + anon_sym_LBRACE, + ACTIONS(1250), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -94223,20 +131116,10 @@ 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_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -94261,55 +131144,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [27313] = 13, + [54620] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(41), 1, - anon_sym___declspec, - ACTIONS(1145), 1, + ACTIONS(1252), 2, anon_sym_LBRACK_LBRACK, - STATE(799), 1, - sym_alignas_qualifier, - ACTIONS(33), 2, + anon_sym_LBRACE, + ACTIONS(1250), 39, + anon_sym___extension__, + anon_sym_extern, anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(55), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(37), 4, anon_sym___read_mostly, + anon_sym___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(2564), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - STATE(810), 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(53), 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(51), 10, - 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, @@ -94319,61 +131177,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - ACTIONS(2562), 11, - 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_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, - [27396] = 8, + [54672] = 5, + ACTIONS(1971), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + 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), 18, + 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_COLON, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [54726] = 9, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2570), 1, + ACTIONS(3685), 1, anon_sym___aligned, - STATE(828), 1, + STATE(1342), 1, sym_attribute_specifier, - ACTIONS(33), 2, + ACTIONS(3582), 2, anon_sym___attribute__, anon_sym___must_hold, - ACTIONS(35), 2, + ACTIONS(3584), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(37), 4, + ACTIONS(3586), 4, anon_sym___read_mostly, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(2568), 7, + ACTIONS(3152), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2566), 38, + ACTIONS(3150), 25, 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_LBRACK, anon_sym_static, anon_sym_auto, @@ -94394,57 +131293,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, sym_identifier, - [27469] = 13, + [54788] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(41), 1, - anon_sym___declspec, - ACTIONS(1145), 1, + ACTIONS(3689), 2, anon_sym_LBRACK_LBRACK, - STATE(799), 1, - sym_alignas_qualifier, - ACTIONS(33), 2, + anon_sym_LBRACE, + ACTIONS(3687), 39, + anon_sym___extension__, + anon_sym_extern, anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(55), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(37), 4, anon_sym___read_mostly, + anon_sym___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(2574), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - STATE(524), 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(53), 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(51), 10, - 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, @@ -94454,57 +131327,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - ACTIONS(2572), 11, - 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_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, - [27552] = 13, + [54840] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(41), 1, - anon_sym___declspec, - ACTIONS(1145), 1, + ACTIONS(1296), 2, anon_sym_LBRACK_LBRACK, - STATE(799), 1, - sym_alignas_qualifier, - ACTIONS(33), 2, + anon_sym_LBRACE, + ACTIONS(1294), 39, + anon_sym___extension__, + anon_sym_extern, anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(55), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(37), 4, anon_sym___read_mostly, + anon_sym___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(2578), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - STATE(524), 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(53), 9, - anon_sym___extension__, + 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, @@ -94513,8 +131383,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(51), 10, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [54892] = 4, + 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, + 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, @@ -94524,66 +131423,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - ACTIONS(2576), 11, - 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_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, - [27635] = 7, + [54944] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1765), 1, - anon_sym_EQ, - STATE(520), 1, - sym_string_literal, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1769), 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(1756), 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(1750), 26, - 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, + ACTIONS(1296), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(1294), 39, + anon_sym___extension__, + anon_sym_extern, anon_sym___attribute__, anon_sym___scanf, anon_sym___printf, @@ -94592,58 +131457,59 @@ static const uint16_t ts_small_parse_table[] = { 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [27706] = 8, + 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, + [54996] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2584), 1, - anon_sym___aligned, - STATE(824), 1, - sym_attribute_specifier, - ACTIONS(33), 2, + ACTIONS(1296), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(1294), 39, + anon_sym___extension__, + anon_sym_extern, anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(37), 4, anon_sym___read_mostly, + anon_sym___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(2582), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2580), 38, - 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_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -94664,18 +131530,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [27779] = 3, + [55048] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2588), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(1276), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2586), 49, + anon_sym_LBRACE, + ACTIONS(1274), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -94687,20 +131554,10 @@ 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_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -94725,49 +131582,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [27842] = 8, + [55100] = 9, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2594), 1, + ACTIONS(3691), 1, anon_sym___aligned, - STATE(827), 1, + STATE(1337), 1, sym_attribute_specifier, - ACTIONS(33), 2, + ACTIONS(3582), 2, anon_sym___attribute__, anon_sym___must_hold, - ACTIONS(35), 2, + ACTIONS(3584), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(37), 4, + ACTIONS(3586), 4, anon_sym___read_mostly, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(2592), 7, + ACTIONS(3138), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2590), 38, + ACTIONS(3136), 25, 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_LBRACK, anon_sym_static, anon_sym_auto, @@ -94788,19 +131634,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, sym_identifier, - [27915] = 3, + [55162] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1746), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(1276), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1744), 49, + anon_sym_LBRACE, + ACTIONS(1274), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -94812,20 +131655,10 @@ 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_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -94850,45 +131683,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [27978] = 13, + [55214] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(41), 1, - anon_sym___declspec, - ACTIONS(1145), 1, + ACTIONS(1244), 2, anon_sym_LBRACK_LBRACK, - STATE(799), 1, - sym_alignas_qualifier, - ACTIONS(33), 2, + anon_sym_LBRACE, + ACTIONS(1242), 39, + anon_sym___extension__, + anon_sym_extern, anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(55), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(37), 4, anon_sym___read_mostly, + anon_sym___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(2598), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - STATE(809), 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(53), 9, - anon_sym___extension__, + 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, @@ -94897,8 +131724,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(51), 10, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [55266] = 5, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2962), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3693), 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, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -94908,62 +131765,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - ACTIONS(2596), 11, - 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_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, - [28061] = 8, + [55320] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2604), 1, - anon_sym___aligned, - STATE(820), 1, - sym_attribute_specifier, - ACTIONS(33), 2, + ACTIONS(1248), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(1246), 39, + anon_sym___extension__, + anon_sym_extern, anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(37), 4, anon_sym___read_mostly, + anon_sym___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(2602), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2600), 38, - 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_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -94984,21 +131824,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [28134] = 4, + [55372] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2610), 1, - anon_sym___aligned, - ACTIONS(2608), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(1244), 2, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2606), 46, + anon_sym_LBRACE, + ACTIONS(1242), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -95010,20 +131848,10 @@ 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_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -95044,26 +131872,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [28198] = 5, + [55424] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - STATE(819), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2616), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2614), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(1244), 2, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2612), 42, + anon_sym_LBRACE, + ACTIONS(1242), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -95075,16 +131896,10 @@ 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_LBRACK, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -95105,21 +131920,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [28264] = 4, + [55476] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2623), 1, - anon_sym___aligned, - ACTIONS(2621), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(1256), 2, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2619), 46, + anon_sym_LBRACE, + ACTIONS(1254), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -95131,20 +131944,10 @@ 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_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -95165,19 +131968,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [28328] = 3, + [55528] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2627), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(1228), 2, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2625), 47, + anon_sym_LBRACE, + ACTIONS(1226), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -95189,20 +131992,10 @@ 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_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -95223,49 +132016,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, - anon_sym___aligned, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [28390] = 7, + [55580] = 9, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - STATE(842), 1, + ACTIONS(3695), 1, + anon_sym___aligned, + STATE(1332), 1, sym_attribute_specifier, - ACTIONS(33), 2, + ACTIONS(3582), 2, anon_sym___attribute__, anon_sym___must_hold, - ACTIONS(35), 2, + ACTIONS(3584), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(37), 4, + ACTIONS(3586), 4, anon_sym___read_mostly, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(2631), 7, + ACTIONS(3230), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2629), 38, + ACTIONS(3228), 25, 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_LBRACK, anon_sym_static, anon_sym_auto, @@ -95286,22 +132072,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, sym_identifier, - [28460] = 4, + [55642] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2637), 1, - anon_sym___aligned, - ACTIONS(2635), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(3699), 2, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2633), 46, + anon_sym_LBRACE, + ACTIONS(3697), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -95313,20 +132093,10 @@ 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_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -95347,21 +132117,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [28524] = 4, + [55694] = 5, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2643), 1, - anon_sym___aligned, - ACTIONS(2641), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2962), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2639), 46, + ACTIONS(3701), 1, + anon_sym_typedef, + ACTIONS(2960), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -95373,20 +132142,10 @@ 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_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -95407,49 +132166,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [28588] = 7, + [55748] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - STATE(862), 1, - sym_attribute_specifier, - ACTIONS(33), 2, + ACTIONS(1228), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(1226), 39, + anon_sym___extension__, + anon_sym_extern, anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(37), 4, anon_sym___read_mostly, + anon_sym___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(2647), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2645), 38, - 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_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -95470,48 +132214,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [28658] = 7, + [55800] = 9, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - STATE(836), 1, + ACTIONS(3703), 1, + anon_sym___aligned, + STATE(1335), 1, sym_attribute_specifier, - ACTIONS(33), 2, + ACTIONS(3582), 2, anon_sym___attribute__, anon_sym___must_hold, - ACTIONS(35), 2, + ACTIONS(3584), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(37), 4, + ACTIONS(3586), 4, anon_sym___read_mostly, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(2651), 7, + ACTIONS(3196), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2649), 38, + ACTIONS(3194), 25, 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_LBRACK, anon_sym_static, anon_sym_auto, @@ -95532,46 +132270,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, sym_identifier, - [28728] = 4, + [55862] = 9, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2657), 1, + ACTIONS(3705), 1, anon_sym___aligned, - ACTIONS(2655), 7, + 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_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2653), 46, + ACTIONS(3238), 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___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_LBRACK, anon_sym_static, anon_sym_auto, @@ -95592,22 +132323,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, sym_identifier, - [28792] = 4, + [55924] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2663), 1, - anon_sym___aligned, - ACTIONS(2661), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(3359), 2, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2659), 46, + anon_sym_LBRACE, + ACTIONS(2983), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -95619,20 +132344,10 @@ 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_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -95653,48 +132368,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [28856] = 7, + [55976] = 9, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - STATE(855), 1, + ACTIONS(3707), 1, + anon_sym___aligned, + STATE(1339), 1, sym_attribute_specifier, - ACTIONS(33), 2, + ACTIONS(3582), 2, anon_sym___attribute__, anon_sym___must_hold, - ACTIONS(35), 2, + ACTIONS(3584), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(37), 4, + ACTIONS(3586), 4, anon_sym___read_mostly, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(2667), 7, + ACTIONS(3158), 6, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2665), 38, - 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_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_static, anon_sym_auto, @@ -95715,22 +132424,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, sym_identifier, - [28926] = 4, + [56038] = 5, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2673), 1, - anon_sym___aligned, - ACTIONS(2671), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2962), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2669), 46, + ACTIONS(3709), 1, + anon_sym_typedef, + ACTIONS(2960), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -95742,20 +132446,10 @@ 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_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -95776,19 +132470,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [28990] = 3, + [56092] = 5, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2677), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2962), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2675), 47, + ACTIONS(3711), 1, + anon_sym_typedef, + ACTIONS(2960), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -95800,20 +132495,10 @@ 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_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -95834,22 +132519,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, - anon_sym___aligned, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [29052] = 4, + [56146] = 5, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2683), 1, + ACTIONS(3713), 1, anon_sym___aligned, - ACTIONS(2681), 7, + ACTIONS(3375), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2679), 46, + ACTIONS(3373), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -95862,18 +132550,6 @@ 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_LBRACK, anon_sym_static, anon_sym_auto, @@ -95894,46 +132570,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, sym_identifier, - [29116] = 4, + [56199] = 8, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2689), 1, - anon_sym___aligned, - ACTIONS(2687), 7, + STATE(1382), 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(3313), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2685), 46, + ACTIONS(3311), 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___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_LBRACK, anon_sym_static, anon_sym_auto, @@ -95954,20 +132621,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, sym_identifier, - [29180] = 3, + [56258] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2693), 7, + ACTIONS(3100), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2691), 46, + ACTIONS(3098), 34, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -95980,18 +132647,6 @@ 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_LBRACK, anon_sym_static, anon_sym_auto, @@ -96012,20 +132667,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + anon_sym___aligned, sym_identifier, - [29241] = 3, + [56309] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2697), 7, + ACTIONS(3037), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2695), 46, + ACTIONS(3035), 34, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -96038,18 +132694,6 @@ 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_LBRACK, anon_sym_static, anon_sym_auto, @@ -96070,20 +132714,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + anon_sym___aligned, sym_identifier, - [29302] = 3, + [56360] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2701), 7, + ACTIONS(3104), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2699), 46, + ACTIONS(3102), 34, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -96096,18 +132741,6 @@ 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_LBRACK, anon_sym_static, anon_sym_auto, @@ -96128,20 +132761,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + anon_sym___aligned, sym_identifier, - [29363] = 3, + [56411] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2705), 7, + ACTIONS(3025), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2703), 46, + ACTIONS(3023), 34, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -96154,18 +132788,6 @@ 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_LBRACK, anon_sym_static, anon_sym_auto, @@ -96186,27 +132808,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + anon_sym___aligned, sym_identifier, - [29424] = 5, + [56462] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - STATE(819), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2711), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2709), 7, + ACTIONS(3283), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2707), 41, + ACTIONS(3281), 34, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -96219,14 +132835,6 @@ 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, @@ -96247,26 +132855,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, + anon_sym___aligned, sym_identifier, - [29489] = 5, + [56513] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - STATE(819), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2711), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2715), 7, + ACTIONS(3317), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2713), 41, + ACTIONS(3315), 34, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -96279,14 +132882,6 @@ 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, @@ -96307,19 +132902,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, + anon_sym___aligned, sym_identifier, - [29554] = 3, + [56564] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2719), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(3717), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2717), 46, + ACTIONS(3715), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -96331,20 +132923,10 @@ 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_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -96365,19 +132947,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [29615] = 3, + [56615] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2723), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(3662), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2721), 46, + ACTIONS(3660), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -96389,20 +132970,10 @@ 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_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -96423,43 +132994,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [29676] = 3, + [56666] = 8, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2727), 7, + STATE(1393), 1, + sym_attribute_specifier, + ACTIONS(3719), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(3722), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(3725), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(3321), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2725), 46, + ACTIONS(3319), 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, + [56725] = 8, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + STATE(1388), 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___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, + ACTIONS(3357), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3355), 25, + 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_LBRACK, anon_sym_static, anon_sym_auto, @@ -96480,26 +133099,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, sym_identifier, - [29737] = 3, + [56784] = 5, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2731), 3, + ACTIONS(3728), 1, + anon_sym___aligned, + ACTIONS(3338), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2729), 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, + ACTIONS(3336), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -96512,10 +133127,7 @@ 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_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -96535,29 +133147,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, - [29798] = 3, + [56837] = 5, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1367), 3, + ACTIONS(3730), 1, + anon_sym___aligned, + ACTIONS(3363), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(1365), 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, + ACTIONS(3361), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -96570,10 +133175,7 @@ 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_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -96593,47 +133195,37 @@ 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, - [29859] = 3, + [56890] = 8, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2735), 7, + STATE(1378), 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, - anon_sym_COLON, - ACTIONS(2733), 46, + 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___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_LBRACK, anon_sym_static, anon_sym_auto, @@ -96654,20 +133246,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, sym_identifier, - [29920] = 3, + [56949] = 5, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2739), 7, + ACTIONS(3732), 1, + anon_sym___aligned, + ACTIONS(3272), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2737), 46, + ACTIONS(3270), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -96680,18 +133274,6 @@ 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_LBRACK, anon_sym_static, anon_sym_auto, @@ -96712,20 +133294,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, sym_identifier, - [29981] = 3, + [57002] = 5, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2743), 7, + ACTIONS(3734), 1, + anon_sym___aligned, + ACTIONS(3381), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2741), 46, + ACTIONS(3379), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -96738,18 +133322,6 @@ 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_LBRACK, anon_sym_static, anon_sym_auto, @@ -96770,20 +133342,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, sym_identifier, - [30042] = 3, + [57055] = 5, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2747), 7, + ACTIONS(3736), 1, + anon_sym___aligned, + ACTIONS(3369), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2745), 46, + ACTIONS(3367), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -96796,18 +133370,6 @@ 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_LBRACK, anon_sym_static, anon_sym_auto, @@ -96828,20 +133390,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, sym_identifier, - [30103] = 3, + [57108] = 5, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2751), 7, + ACTIONS(3738), 1, + anon_sym___aligned, + ACTIONS(3262), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2749), 46, + ACTIONS(3260), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -96854,18 +133418,6 @@ 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_LBRACK, anon_sym_static, anon_sym_auto, @@ -96886,42 +133438,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, sym_identifier, - [30164] = 3, + [57161] = 8, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2755), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK_LBRACK, - ACTIONS(2753), 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, + 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___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, + ACTIONS(3344), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3342), 25, + 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, @@ -96941,29 +133489,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, - [30225] = 3, + [57220] = 5, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1315), 3, + ACTIONS(3749), 1, + anon_sym___aligned, + ACTIONS(3387), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(1313), 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, + ACTIONS(3385), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -96976,10 +133517,7 @@ 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_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -96999,50 +133537,37 @@ 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, - [30286] = 5, + [57273] = 8, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - STATE(819), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2711), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2759), 7, + 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, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2757), 41, + ACTIONS(3291), 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___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, @@ -97064,42 +133589,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [30351] = 3, + [57332] = 8, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2763), 7, + 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, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2761), 46, + ACTIONS(3266), 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___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_LBRACK, anon_sym_static, anon_sym_auto, @@ -97120,20 +133639,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, sym_identifier, - [30412] = 3, + [57391] = 5, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2767), 7, + ACTIONS(3760), 1, + anon_sym___aligned, + ACTIONS(3287), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2765), 46, + ACTIONS(3285), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -97146,18 +133667,6 @@ 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_LBRACK, anon_sym_static, anon_sym_auto, @@ -97178,20 +133687,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, sym_identifier, - [30473] = 3, + [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, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3628), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + 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), 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, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2771), 7, + ACTIONS(3419), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2769), 46, + ACTIONS(3417), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -97204,18 +133764,6 @@ 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_LBRACK, anon_sym_static, anon_sym_auto, @@ -97236,20 +133784,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, sym_identifier, - [30534] = 3, + [57554] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2775), 7, + ACTIONS(3548), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2773), 46, + ACTIONS(3546), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -97262,18 +133810,6 @@ 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_LBRACK, anon_sym_static, anon_sym_auto, @@ -97294,20 +133830,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, sym_identifier, - [30595] = 3, + [57604] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2779), 7, + ACTIONS(3502), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2777), 46, + ACTIONS(3500), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -97320,18 +133856,6 @@ 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_LBRACK, anon_sym_static, anon_sym_auto, @@ -97352,20 +133876,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, sym_identifier, - [30656] = 3, + [57654] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2783), 7, + ACTIONS(3470), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2781), 46, + ACTIONS(3468), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -97378,18 +133902,6 @@ 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_LBRACK, anon_sym_static, anon_sym_auto, @@ -97410,26 +133922,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, sym_identifier, - [30717] = 3, + [57704] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2787), 3, + ACTIONS(3431), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2785), 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, + ACTIONS(3429), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -97442,10 +133948,7 @@ 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_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -97465,23 +133968,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, - [30778] = 3, + [57754] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2791), 7, + ACTIONS(3556), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2789), 46, + ACTIONS(3554), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -97494,18 +133994,6 @@ 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_LBRACK, anon_sym_static, anon_sym_auto, @@ -97526,26 +134014,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, sym_identifier, - [30839] = 3, + [57804] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2795), 3, + ACTIONS(3478), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2793), 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, + ACTIONS(3476), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -97558,10 +134040,7 @@ 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_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -97581,23 +134060,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, - [30900] = 3, + [57854] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2799), 7, + ACTIONS(3283), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2797), 46, + ACTIONS(3281), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -97610,18 +134086,6 @@ 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_LBRACK, anon_sym_static, anon_sym_auto, @@ -97642,26 +134106,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, sym_identifier, - [30961] = 3, + [57904] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2803), 3, + ACTIONS(3317), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2801), 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, + ACTIONS(3315), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -97674,10 +134132,7 @@ 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_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -97697,29 +134152,71 @@ 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, - [31022] = 3, + [57954] = 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(3047), 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(3045), 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, + [58014] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2807), 3, + ACTIONS(3474), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2805), 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, + ACTIONS(3472), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -97732,10 +134229,7 @@ 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_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -97755,23 +134249,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, - [31083] = 3, + [58064] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2811), 7, + ACTIONS(3466), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2809), 46, + ACTIONS(3464), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -97784,18 +134275,6 @@ 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_LBRACK, anon_sym_static, anon_sym_auto, @@ -97816,26 +134295,248 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, sym_identifier, - [31144] = 3, + [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, + 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(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, + 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_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, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1371), 3, + ACTIONS(3552), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(1369), 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, + ACTIONS(3550), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -97848,10 +134549,7 @@ 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_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -97868,26 +134566,74 @@ 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_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_identifier, - [31205] = 3, + [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, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2815), 7, + ACTIONS(3544), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2813), 46, + ACTIONS(3542), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -97900,18 +134646,6 @@ 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_LBRACK, anon_sym_static, anon_sym_auto, @@ -97932,20 +134666,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, sym_identifier, - [31266] = 3, + [58562] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2819), 7, + ACTIONS(3399), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2817), 46, + ACTIONS(3397), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -97958,18 +134692,6 @@ 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_LBRACK, anon_sym_static, anon_sym_auto, @@ -97990,20 +134712,418 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, sym_identifier, - [31327] = 3, + [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, + 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(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, + 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_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_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(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, + 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, + 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, + [59034] = 19, + 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(3772), 1, + anon_sym_AMP_AMP, + ACTIONS(3774), 1, + 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), 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, + [59114] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2823), 7, + ACTIONS(2909), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2821), 46, + ACTIONS(2907), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -98016,18 +135136,6 @@ 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_LBRACK, anon_sym_static, anon_sym_auto, @@ -98048,28 +135156,195 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, sym_identifier, - [31388] = 6, - ACTIONS(3), 1, + [59164] = 10, + 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(3768), 3, + 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, + 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, + [59226] = 21, + ACTIONS(3074), 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, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(2825), 1, + 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(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, - STATE(885), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(1763), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(1761), 6, + ACTIONS(3764), 1, + anon_sym_DOT, + ACTIONS(3774), 1, + 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_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, + [59388] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3490), 6, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(1748), 41, + ACTIONS(3488), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -98082,14 +135357,6 @@ 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, @@ -98111,18 +135378,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [31455] = 3, + [59438] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2830), 7, + ACTIONS(3427), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2828), 46, + ACTIONS(3425), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -98135,18 +135403,6 @@ 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_LBRACK, anon_sym_static, anon_sym_auto, @@ -98167,26 +135423,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, sym_identifier, - [31516] = 3, + [59488] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2834), 3, + ACTIONS(3506), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2832), 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, + ACTIONS(3504), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -98199,10 +135449,7 @@ 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_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -98222,23 +135469,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, - [31577] = 3, + [59538] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2838), 7, + ACTIONS(3443), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2836), 46, + ACTIONS(3441), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -98251,18 +135495,6 @@ 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_LBRACK, anon_sym_static, anon_sym_auto, @@ -98283,27 +135515,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, sym_identifier, - [31638] = 5, + [59588] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - STATE(839), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2840), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2838), 7, + ACTIONS(3560), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2836), 41, + ACTIONS(3558), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -98316,14 +135541,6 @@ 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, @@ -98345,18 +135562,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [31703] = 3, + [59638] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2844), 7, + ACTIONS(3576), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2842), 46, + ACTIONS(3574), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -98369,18 +135587,6 @@ 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_LBRACK, anon_sym_static, anon_sym_auto, @@ -98401,20 +135607,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, sym_identifier, - [31764] = 3, + [59688] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2848), 7, + ACTIONS(3451), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2846), 46, + ACTIONS(3449), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -98427,18 +135633,6 @@ 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_LBRACK, anon_sym_static, anon_sym_auto, @@ -98459,20 +135653,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, sym_identifier, - [31825] = 3, + [59738] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2852), 7, + ACTIONS(3423), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2850), 46, + ACTIONS(3421), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -98485,18 +135679,6 @@ 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_LBRACK, anon_sym_static, anon_sym_auto, @@ -98517,20 +135699,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, sym_identifier, - [31886] = 3, + [59788] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2856), 7, + ACTIONS(3447), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2854), 46, + ACTIONS(3445), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -98543,18 +135725,6 @@ 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_LBRACK, anon_sym_static, anon_sym_auto, @@ -98575,27 +135745,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, sym_identifier, - [31947] = 5, + [59838] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - STATE(838), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2862), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2860), 7, + ACTIONS(3482), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2858), 41, + ACTIONS(3480), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -98608,14 +135771,6 @@ 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, @@ -98637,24 +135792,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [32012] = 3, + [59888] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2866), 3, + ACTIONS(3486), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2864), 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, + ACTIONS(3484), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -98667,10 +135817,7 @@ 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_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -98690,29 +135837,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, - [32073] = 3, + [59938] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1307), 3, + ACTIONS(3572), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(1305), 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, + ACTIONS(3570), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -98725,10 +135863,7 @@ 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_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -98748,30 +135883,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, - [32134] = 5, + [59988] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - STATE(852), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2872), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2870), 7, + ACTIONS(3568), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2868), 41, + ACTIONS(3566), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -98784,14 +135909,6 @@ 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, @@ -98813,26 +135930,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [32199] = 6, + [60038] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2612), 1, - sym_primitive_type, - STATE(819), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2616), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2877), 6, + ACTIONS(3510), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2874), 41, + ACTIONS(3508), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -98845,14 +135955,6 @@ 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, @@ -98874,18 +135976,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [32266] = 3, + [60088] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2882), 7, + ACTIONS(3498), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2880), 46, + ACTIONS(3496), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -98898,18 +136001,6 @@ 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_LBRACK, anon_sym_static, anon_sym_auto, @@ -98930,27 +136021,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, sym_identifier, - [32327] = 5, + [60138] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - STATE(819), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2711), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2886), 7, + ACTIONS(3407), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2884), 41, + ACTIONS(3405), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -98963,14 +136047,6 @@ 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, @@ -98992,24 +136068,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [32392] = 3, + [60188] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2890), 3, + ACTIONS(3411), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2888), 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, + ACTIONS(3409), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -99022,10 +136093,7 @@ 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_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -99045,29 +136113,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, - [32453] = 3, + [60238] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2894), 3, + ACTIONS(3580), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2892), 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, + ACTIONS(3578), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -99080,10 +136139,7 @@ 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_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -99103,29 +136159,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, - [32514] = 3, + [60288] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1335), 3, + ACTIONS(3494), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(1333), 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, + ACTIONS(3492), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -99138,10 +136185,7 @@ 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_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -99161,29 +136205,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, - [32575] = 3, + [60338] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2898), 3, + ACTIONS(3564), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2896), 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, + ACTIONS(3562), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -99196,10 +136231,7 @@ 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_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -99219,33 +136251,70 @@ 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, - [32636] = 7, + [60388] = 8, + 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(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), 21, + 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, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [60446] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2900), 1, - sym_identifier, - ACTIONS(2909), 1, - sym_primitive_type, - STATE(883), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2907), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2903), 6, + ACTIONS(3415), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2905), 40, + ACTIONS(3413), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -99258,14 +136327,6 @@ 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, @@ -99286,52 +136347,191 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - [32705] = 3, + sym_identifier, + [60496] = 3, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3134), 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(3132), 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, + [60543] = 3, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3246), 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(3244), 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, + [60590] = 3, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3172), 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(3170), 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, + [60637] = 19, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2913), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2051), 1, + anon_sym___based, + ACTIONS(3790), 1, + sym_identifier, + ACTIONS(3792), 1, anon_sym_LPAREN2, + ACTIONS(3794), 1, anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2911), 46, - 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, + ACTIONS(3798), 1, + sym_primitive_type, + STATE(1597), 1, + sym_ms_unaligned_ptr_modifier, + 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, + ACTIONS(3656), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1482), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1520), 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, + ACTIONS(3796), 4, 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(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, @@ -99340,53 +136540,58 @@ 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, - [32766] = 3, + [60716] = 19, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1395), 3, + ACTIONS(2051), 1, + anon_sym___based, + ACTIONS(3800), 1, + sym_identifier, + ACTIONS(3802), 1, anon_sym_LPAREN2, + ACTIONS(3804), 1, anon_sym_STAR, - anon_sym_LBRACK_LBRACK, - ACTIONS(1393), 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, + ACTIONS(3808), 1, + sym_primitive_type, + STATE(1597), 1, + sym_ms_unaligned_ptr_modifier, + 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, + ACTIONS(3656), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1482), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1524), 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, + ACTIONS(3806), 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(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, @@ -99395,59 +136600,58 @@ 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, - sym_identifier, - [32827] = 3, + [60795] = 19, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2917), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2051), 1, + anon_sym___based, + ACTIONS(3790), 1, + sym_identifier, + ACTIONS(3792), 1, anon_sym_LPAREN2, + ACTIONS(3794), 1, anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2915), 46, - 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, + ACTIONS(3798), 1, + sym_primitive_type, + STATE(1597), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1671), 1, + sym_alignas_qualifier, + STATE(2271), 1, + sym__type_declarator, + STATE(2971), 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(1530), 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, + ACTIONS(3796), 4, 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(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, @@ -99456,53 +136660,102 @@ 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, - [32888] = 3, + [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, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2921), 3, + ACTIONS(2051), 1, + anon_sym___based, + ACTIONS(3800), 1, + sym_identifier, + ACTIONS(3802), 1, anon_sym_LPAREN2, + ACTIONS(3804), 1, anon_sym_STAR, - anon_sym_LBRACK_LBRACK, - ACTIONS(2919), 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, + ACTIONS(3808), 1, + sym_primitive_type, + STATE(1597), 1, + sym_ms_unaligned_ptr_modifier, + 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, + ACTIONS(3656), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1401), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1529), 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, + ACTIONS(3806), 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(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, @@ -99511,108 +136764,57 @@ 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, - sym_identifier, - [32949] = 3, + [61000] = 19, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2925), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2051), 1, + anon_sym___based, + ACTIONS(3790), 1, + sym_identifier, + ACTIONS(3792), 1, anon_sym_LPAREN2, + ACTIONS(3794), 1, anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2923), 46, - 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_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, + ACTIONS(3798), 1, sym_primitive_type, - sym_identifier, - [33010] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(41), 1, - anon_sym___declspec, - ACTIONS(1145), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2927), 1, - anon_sym_SEMI, - STATE(799), 1, + STATE(1597), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1671), 1, sym_alignas_qualifier, - ACTIONS(33), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(35), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(55), 2, + STATE(2296), 1, + sym__type_declarator, + STATE(2971), 1, + sym_ms_based_modifier, + ACTIONS(1999), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2564), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(37), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - STATE(810), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, + ACTIONS(3656), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1402), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1515), 2, sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(53), 9, + aux_sym__type_definition_type_repeat1, + ACTIONS(3654), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_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, + ACTIONS(1995), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -99622,68 +136824,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(51), 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(2562), 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, - [33092] = 3, + [61079] = 5, + ACTIONS(3401), 1, + anon_sym_EQ, + 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, + 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(1956), 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, + [61130] = 19, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2390), 3, + ACTIONS(2051), 1, + anon_sym___based, + ACTIONS(3800), 1, + sym_identifier, + ACTIONS(3802), 1, anon_sym_LPAREN2, + ACTIONS(3804), 1, anon_sym_STAR, - anon_sym_LBRACK_LBRACK, - ACTIONS(2388), 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, + ACTIONS(3808), 1, + sym_primitive_type, + STATE(1597), 1, + sym_ms_unaligned_ptr_modifier, + 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, + ACTIONS(3656), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1482), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1529), 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, + ACTIONS(3806), 4, 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(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, @@ -99692,55 +136930,58 @@ 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__, - sym_identifier, - [33152] = 3, + [61209] = 19, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2396), 3, + ACTIONS(2051), 1, + anon_sym___based, + ACTIONS(3790), 1, + sym_identifier, + ACTIONS(3792), 1, anon_sym_LPAREN2, + ACTIONS(3794), 1, anon_sym_STAR, - anon_sym_LBRACK_LBRACK, - ACTIONS(2394), 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, + ACTIONS(3798), 1, + sym_primitive_type, + STATE(1597), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1671), 1, + sym_alignas_qualifier, + STATE(2271), 1, + sym__type_declarator, + STATE(2971), 1, + sym_ms_based_modifier, + ACTIONS(1999), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(3656), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1400), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1530), 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, + ACTIONS(3796), 4, 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(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, @@ -99749,52 +136990,57 @@ 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__, - sym_identifier, - [33212] = 14, + [61288] = 19, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(41), 1, - anon_sym___declspec, - ACTIONS(1145), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2929), 1, - anon_sym_SEMI, - STATE(799), 1, + 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(1597), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1671), 1, sym_alignas_qualifier, - ACTIONS(33), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(35), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(55), 2, + STATE(2030), 1, + sym__type_declarator, + STATE(3321), 1, + sym_ms_based_modifier, + ACTIONS(1999), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2564), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(37), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - STATE(810), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, + ACTIONS(3656), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1407), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1525), 2, sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(53), 9, + aux_sym__type_definition_type_repeat1, + ACTIONS(3654), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_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, + ACTIONS(1995), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -99804,44 +137050,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(51), 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(2562), 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, - [33294] = 3, + [61367] = 6, + ACTIONS(1971), 1, + anon_sym_EQ, + ACTIONS(3810), 1, + anon_sym_SEMI, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + 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), 13, + 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, + [61419] = 13, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2370), 3, + 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_LBRACK_LBRACK, - ACTIONS(2368), 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_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, @@ -99850,187 +137147,380 @@ 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, - [33354] = 14, + anon_sym_QMARK, + [61484] = 21, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(41), 1, - anon_sym___declspec, - ACTIONS(1145), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2931), 1, + 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(3820), 10, + anon_sym_COMMA, anon_sym_SEMI, - STATE(799), 1, - sym_alignas_qualifier, - ACTIONS(33), 2, anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(55), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(2564), 2, + 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, - ACTIONS(37), 4, + 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, + anon_sym___printf, anon_sym___read_mostly, + anon_sym___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - STATE(810), 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(53), 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(51), 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(2562), 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, + [61646] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1250), 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(1252), 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, + [61693] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1250), 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(1252), 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, + [61740] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1234), 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(1236), 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, + [61787] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1234), 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, - [33436] = 14, + ACTIONS(1236), 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, + [61834] = 12, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(41), 1, - anon_sym___declspec, - ACTIONS(1145), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2933), 1, + 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, - STATE(799), 1, - sym_alignas_qualifier, - ACTIONS(33), 2, anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(55), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(2564), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(37), 4, anon_sym___read_mostly, + anon_sym___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - STATE(810), 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(53), 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(51), 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(2562), 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, - [33518] = 3, + anon_sym_QMARK, + [61897] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2376), 21, + ACTIONS(1242), 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(1244), 19, 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, @@ -100044,22 +137534,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2374), 30, + [61944] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1234), 17, 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, @@ -100075,18 +137557,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - [33577] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1746), 21, + ACTIONS(1236), 19, 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, @@ -100100,22 +137577,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1744), 30, + [61991] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1226), 17, 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, @@ -100131,93 +137600,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - [33636] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2948), 1, - anon_sym_LBRACE, - ACTIONS(2950), 1, - anon_sym_COLON, - STATE(841), 1, - sym_attribute_specifier, - STATE(964), 1, - sym_enumerator_list, - ACTIONS(2939), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(2942), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(2945), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - ACTIONS(2937), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1228), 19, anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, anon_sym_STAR, + anon_sym_AMP, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(2935), 33, - 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_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, - [33709] = 8, + 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, + [62038] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2959), 1, - anon_sym_static, - STATE(965), 1, - sym_alignas_qualifier, - ACTIONS(2962), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(906), 2, - sym_type_qualifier, - aux_sym_array_declarator_repeat1, - ACTIONS(2956), 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(2952), 17, + ACTIONS(1226), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_sizeof, @@ -100235,13 +137643,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(2954), 19, + ACTIONS(1228), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP, - anon_sym_RBRACK, + anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, sym_number_literal, @@ -100255,18 +137663,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [33778] = 3, + [62085] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1715), 21, + ACTIONS(1242), 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(1244), 19, 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, @@ -100280,22 +137706,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1713), 30, + [62132] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1294), 17, 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, @@ -100311,250 +137729,199 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - [33837] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2486), 1, + ACTIONS(1296), 19, anon_sym_LPAREN2, - ACTIONS(2488), 1, - anon_sym_LBRACK, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2965), 3, + anon_sym_BANG, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2546), 10, - 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, - ACTIONS(2548), 30, - 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___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_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, - [33907] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2486), 1, - anon_sym_LPAREN2, - ACTIONS(2488), 1, - anon_sym_LBRACK, - ACTIONS(2969), 1, - anon_sym_AMP, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2967), 2, + 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, + [62179] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1274), 17, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2971), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2973), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2975), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2977), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2546), 3, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_EQ, - ACTIONS(2965), 3, + 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(1276), 19, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2548), 26, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_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_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, - [33989] = 20, + 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, + [62226] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2486), 1, + ACTIONS(1274), 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(1276), 19, anon_sym_LPAREN2, - ACTIONS(2488), 1, - anon_sym_LBRACK, - ACTIONS(2969), 1, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP, - ACTIONS(2981), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2983), 1, - anon_sym_AMP_AMP, - ACTIONS(2985), 1, - anon_sym_PIPE, - ACTIONS(2987), 1, - anon_sym_CARET, - ACTIONS(2989), 1, - anon_sym_EQ, - ACTIONS(2991), 1, - anon_sym_QMARK, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, + anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2967), 2, + 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, + [62273] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1294), 17, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2971), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2973), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2975), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2977), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2965), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2979), 23, - anon_sym_COMMA, - anon_sym_RPAREN, - 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_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, - [34081] = 14, + 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(1296), 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, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2486), 1, + ACTIONS(2993), 1, anon_sym_LPAREN2, - ACTIONS(2488), 1, + ACTIONS(3015), 1, anon_sym_LBRACK, - STATE(765), 1, + ACTIONS(3816), 1, + anon_sym_SLASH, + STATE(1039), 1, sym_argument_list, - ACTIONS(2490), 2, + ACTIONS(3017), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3019), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, + ACTIONS(3021), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2967), 2, + ACTIONS(3812), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2971), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2973), 2, + ACTIONS(3814), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3818), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3834), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2975), 2, + ACTIONS(3836), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2977), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2965), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2546), 4, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - ACTIONS(2548), 26, + ACTIONS(2991), 16, 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___attribute__, anon_sym___scanf, @@ -100564,62 +137931,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - 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, - [34161] = 13, + [62389] = 16, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2486), 1, + ACTIONS(2993), 1, anon_sym_LPAREN2, - ACTIONS(2488), 1, + ACTIONS(3015), 1, anon_sym_LBRACK, - STATE(765), 1, + ACTIONS(3816), 1, + anon_sym_SLASH, + STATE(1039), 1, sym_argument_list, - ACTIONS(2490), 2, + ACTIONS(3017), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3019), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, + ACTIONS(3021), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2967), 2, + ACTIONS(3812), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2973), 2, + 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(2975), 2, + ACTIONS(3836), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2977), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2965), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2546), 4, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - ACTIONS(2548), 28, + ACTIONS(2991), 14, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_CARET, anon_sym_SEMI, anon_sym___attribute__, anon_sym___scanf, @@ -100629,70 +137986,182 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - 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, - [34239] = 20, + [62460] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2486), 1, + 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, anon_sym_LPAREN2, - ACTIONS(2488), 1, - anon_sym_LBRACK, - ACTIONS(2969), 1, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP, - ACTIONS(2981), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2983), 1, - anon_sym_AMP_AMP, - ACTIONS(2985), 1, + 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, + [62507] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1246), 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(1248), 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, + [62554] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1274), 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(1276), 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, + [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(2987), 1, - anon_sym_CARET, - ACTIONS(2991), 1, - anon_sym_QMARK, - ACTIONS(2995), 1, - anon_sym_EQ, - STATE(765), 1, + ACTIONS(3816), 1, + anon_sym_SLASH, + ACTIONS(3830), 1, + anon_sym_AMP, + STATE(1039), 1, sym_argument_list, - ACTIONS(2490), 2, + ACTIONS(3019), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, + ACTIONS(3021), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2967), 2, + ACTIONS(3812), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2971), 2, + 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(2973), 2, + ACTIONS(3834), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2975), 2, + ACTIONS(3836), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2977), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2965), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2993), 23, + ACTIONS(2991), 14, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_SEMI, anon_sym___attribute__, anon_sym___scanf, @@ -100702,69 +138171,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - 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, - [34331] = 20, + anon_sym_QMARK, + [62674] = 21, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2486), 1, + ACTIONS(2993), 1, anon_sym_LPAREN2, - ACTIONS(2488), 1, + ACTIONS(3015), 1, anon_sym_LBRACK, - ACTIONS(2969), 1, - anon_sym_AMP, - ACTIONS(2981), 1, + ACTIONS(3816), 1, + anon_sym_SLASH, + ACTIONS(3822), 1, anon_sym_PIPE_PIPE, - ACTIONS(2983), 1, + ACTIONS(3824), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(3826), 1, anon_sym_PIPE, - ACTIONS(2987), 1, + ACTIONS(3828), 1, anon_sym_CARET, - ACTIONS(2991), 1, + ACTIONS(3830), 1, + anon_sym_AMP, + ACTIONS(3838), 1, anon_sym_QMARK, - ACTIONS(2999), 1, - anon_sym_EQ, - STATE(765), 1, + STATE(1039), 1, sym_argument_list, - ACTIONS(2490), 2, + ACTIONS(3019), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, + ACTIONS(3021), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2967), 2, + ACTIONS(3812), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2971), 2, + 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(2973), 2, + ACTIONS(3834), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2975), 2, + ACTIONS(3836), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2977), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2965), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2997), 23, + ACTIONS(3082), 10, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, anon_sym___scanf, @@ -100774,59 +138232,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - 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, - [34423] = 11, + [62755] = 11, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2486), 1, + ACTIONS(2993), 1, anon_sym_LPAREN2, - ACTIONS(2488), 1, + ACTIONS(3015), 1, anon_sym_LBRACK, - STATE(765), 1, + ACTIONS(3816), 1, + anon_sym_SLASH, + STATE(1039), 1, sym_argument_list, - ACTIONS(2490), 2, + ACTIONS(3019), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, + ACTIONS(3021), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2967), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2977), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2965), 3, + ACTIONS(3814), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2546), 6, + ACTIONS(3017), 6, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - anon_sym_EQ, - ACTIONS(2548), 30, + ACTIONS(2991), 20, 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___attribute__, anon_sym___scanf, @@ -100836,127 +138281,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - 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, - [34497] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2948), 1, - anon_sym_LBRACE, - STATE(869), 1, - sym_attribute_specifier, - STATE(966), 1, - sym_enumerator_list, - ACTIONS(3005), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(3008), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(3011), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - ACTIONS(3003), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(3001), 33, - 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_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, - [34567] = 17, + [62816] = 21, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2486), 1, + ACTIONS(2993), 1, anon_sym_LPAREN2, - ACTIONS(2488), 1, + ACTIONS(3015), 1, anon_sym_LBRACK, - ACTIONS(2546), 1, - anon_sym_EQ, - ACTIONS(2969), 1, - anon_sym_AMP, - ACTIONS(2985), 1, + 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(2987), 1, + ACTIONS(3828), 1, anon_sym_CARET, - STATE(765), 1, + ACTIONS(3830), 1, + anon_sym_AMP, + ACTIONS(3838), 1, + anon_sym_QMARK, + STATE(1039), 1, sym_argument_list, - ACTIONS(2490), 2, + ACTIONS(3019), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, + ACTIONS(3021), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2967), 2, + ACTIONS(3812), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2971), 2, + 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(2973), 2, + ACTIONS(3834), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2975), 2, + ACTIONS(3836), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2977), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2965), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2548), 26, + ACTIONS(3070), 10, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, anon_sym___scanf, @@ -100966,67 +138342,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - 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, - [34653] = 18, + [62897] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2486), 1, + ACTIONS(1294), 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(1296), 19, anon_sym_LPAREN2, - ACTIONS(2488), 1, - anon_sym_LBRACK, - ACTIONS(2546), 1, - anon_sym_EQ, - ACTIONS(2969), 1, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP, - ACTIONS(2983), 1, - anon_sym_AMP_AMP, - ACTIONS(2985), 1, + 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, + [62944] = 18, + 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(2987), 1, + ACTIONS(3816), 1, + anon_sym_SLASH, + ACTIONS(3828), 1, anon_sym_CARET, - STATE(765), 1, + ACTIONS(3830), 1, + anon_sym_AMP, + STATE(1039), 1, sym_argument_list, - ACTIONS(2490), 2, + ACTIONS(3019), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, + ACTIONS(3021), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2967), 2, + ACTIONS(3812), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2971), 2, + 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(2973), 2, + ACTIONS(3834), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2975), 2, + ACTIONS(3836), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2977), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2965), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2548), 25, + ACTIONS(2991), 13, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, anon_sym___scanf, @@ -101036,59 +138441,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - 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, - [34741] = 10, + [63019] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2486), 1, + ACTIONS(1242), 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(1244), 19, anon_sym_LPAREN2, - ACTIONS(2488), 1, + 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, + [63066] = 19, + 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(765), 1, + 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(2490), 2, + ACTIONS(3019), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, + ACTIONS(3021), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2967), 2, + ACTIONS(3812), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2965), 3, + ACTIONS(3814), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2546), 8, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, + ACTIONS(3818), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2548), 30, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + 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, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, anon_sym_SEMI, anon_sym___attribute__, anon_sym___scanf, @@ -101098,63 +138542,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - 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, - [34813] = 16, + [63143] = 18, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2486), 1, + ACTIONS(2993), 1, anon_sym_LPAREN2, - ACTIONS(2488), 1, + ACTIONS(3015), 1, anon_sym_LBRACK, - ACTIONS(2969), 1, - anon_sym_AMP, - ACTIONS(2987), 1, + ACTIONS(3816), 1, + anon_sym_SLASH, + ACTIONS(3826), 1, + anon_sym_PIPE, + ACTIONS(3828), 1, anon_sym_CARET, - STATE(765), 1, + ACTIONS(3830), 1, + anon_sym_AMP, + STATE(1039), 1, sym_argument_list, - ACTIONS(2490), 2, + ACTIONS(3019), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, + ACTIONS(3021), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2546), 2, - anon_sym_PIPE, - anon_sym_EQ, - ACTIONS(2967), 2, + ACTIONS(3812), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2971), 2, + 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(2973), 2, + ACTIONS(3834), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2975), 2, + ACTIONS(3836), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2977), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2965), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2548), 26, + ACTIONS(2991), 13, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_SEMI, @@ -101166,58 +138599,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - 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, - [34897] = 3, + [63218] = 18, + ACTIONS(2278), 1, + anon_sym_LPAREN2, + ACTIONS(2280), 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, + sym_ms_unaligned_ptr_modifier, + STATE(1990), 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(3844), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(3846), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3850), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1674), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(1690), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_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, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [63291] = 18, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2834), 4, + ACTIONS(2051), 1, + anon_sym___based, + ACTIONS(2107), 1, anon_sym_LPAREN2, + ACTIONS(2109), 1, anon_sym_STAR, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2832), 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(3650), 1, + sym_identifier, + ACTIONS(3658), 1, + anon_sym_LBRACK, + STATE(1671), 1, + sym_alignas_qualifier, + STATE(2085), 1, + sym__declarator, + STATE(2339), 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(3852), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(1549), 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, 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, @@ -101226,52 +138710,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + [63364] = 18, + ACTIONS(2278), 1, + anon_sym_LPAREN2, + ACTIONS(2280), 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, + sym_ms_unaligned_ptr_modifier, + STATE(1990), 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, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(3846), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3850), 2, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [34954] = 3, + STATE(1442), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1682), 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, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [63437] = 18, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2795), 3, + ACTIONS(2051), 1, + anon_sym___based, + ACTIONS(2107), 1, anon_sym_LPAREN2, + ACTIONS(2109), 1, anon_sym_STAR, - anon_sym_LBRACK_LBRACK, - ACTIONS(2793), 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(3650), 1, + sym_identifier, + ACTIONS(3658), 1, + anon_sym_LBRACK, + STATE(1671), 1, + sym_alignas_qualifier, + STATE(2110), 1, + sym__declarator, + STATE(2318), 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(3652), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(1549), 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, 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, @@ -101280,52 +138820,51 @@ 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, - sym_identifier, - [35011] = 3, + [63510] = 17, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2803), 3, + ACTIONS(2047), 1, anon_sym_LPAREN2, + ACTIONS(2049), 1, anon_sym_STAR, - anon_sym_LBRACK_LBRACK, - ACTIONS(2801), 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, + ACTIONS(2051), 1, 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, + ACTIONS(3650), 1, + sym_identifier, + STATE(1597), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1671), 1, + sym_alignas_qualifier, + STATE(2085), 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(1692), 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, @@ -101334,52 +138873,107 @@ 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, + [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, - [35068] = 3, + 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, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2866), 4, + ACTIONS(2051), 1, + anon_sym___based, + ACTIONS(3876), 1, + sym_identifier, + ACTIONS(3878), 1, anon_sym_LPAREN2, + ACTIONS(3880), 1, anon_sym_STAR, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2864), 45, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + 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(1482), 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_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, @@ -101388,52 +138982,102 @@ 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, + [63726] = 15, + 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, + 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(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), 4, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_AMP, sym_identifier, - [35125] = 3, + ACTIONS(2991), 11, + 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, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1315), 4, + ACTIONS(2051), 1, + anon_sym___based, + ACTIONS(3882), 1, + sym_identifier, + ACTIONS(3884), 1, anon_sym_LPAREN2, + ACTIONS(3886), 1, anon_sym_STAR, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1313), 45, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + STATE(1597), 1, + sym_ms_unaligned_ptr_modifier, + 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, + ACTIONS(3656), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1482), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1704), 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, 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, @@ -101442,52 +139086,51 @@ 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, - sym_identifier, - [35182] = 3, + [63862] = 17, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2890), 4, + ACTIONS(2047), 1, anon_sym_LPAREN2, + ACTIONS(2049), 1, anon_sym_STAR, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2888), 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, + ACTIONS(2051), 1, 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, + ACTIONS(3650), 1, + sym_identifier, + STATE(1597), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1671), 1, + sym_alignas_qualifier, + STATE(2081), 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(1461), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1699), 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, @@ -101496,52 +139139,157 @@ 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, + [63932] = 12, + 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, + 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(3017), 6, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, sym_identifier, - [35239] = 3, + ACTIONS(2991), 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_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, + [63992] = 22, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1395), 4, + 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, + ACTIONS(3888), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3890), 1, + anon_sym_QMARK, + STATE(1225), 1, + sym_argument_list, + ACTIONS(3084), 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_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1393), 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_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(3082), 5, + 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, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2051), 1, 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, + ACTIONS(3876), 1, + sym_identifier, + ACTIONS(3878), 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, @@ -101550,52 +139298,51 @@ 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, - sym_identifier, - [35296] = 3, + [64142] = 17, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2834), 3, + ACTIONS(2051), 1, + anon_sym___based, + ACTIONS(3876), 1, + sym_identifier, + ACTIONS(3878), 1, anon_sym_LPAREN2, + ACTIONS(3880), 1, anon_sym_STAR, - anon_sym_LBRACK_LBRACK, - ACTIONS(2832), 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, + 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_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, @@ -101604,164 +139351,321 @@ 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, - sym_identifier, - [35353] = 7, + [64212] = 22, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3014), 1, - anon_sym_EQ, - STATE(520), 1, - sym_string_literal, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(3016), 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(1756), 14, + 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, + ACTIONS(3888), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3890), 1, + anon_sym_QMARK, + STATE(1225), 1, + sym_argument_list, + ACTIONS(3074), 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_SLASH, 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(3070), 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, + 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, + ACTIONS(3888), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3890), 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(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(3892), 2, + aux_sym_preproc_elif_token1, sym_identifier, - ACTIONS(1750), 18, + ACTIONS(3894), 5, 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, + 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, + 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(3874), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3017), 6, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + sym_identifier, + ACTIONS(2991), 13, + 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_GT_EQ, anon_sym_LT_EQ, - anon_sym_LBRACK, anon_sym_QMARK, + [64434] = 11, + 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, + 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, - [35418] = 3, + ACTIONS(3856), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3017), 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, + 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_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, + [64492] = 22, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2866), 3, + 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, + ACTIONS(3888), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3890), 1, + anon_sym_QMARK, + STATE(1225), 1, + sym_argument_list, + ACTIONS(3080), 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_LBRACK_LBRACK, - ACTIONS(2864), 46, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, + 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(3078), 5, + anon_sym_COMMA, 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, - [35475] = 3, + 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(2890), 3, + ACTIONS(2047), 1, anon_sym_LPAREN2, + ACTIONS(2049), 1, anon_sym_STAR, - anon_sym_LBRACK_LBRACK, - ACTIONS(2888), 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, + ACTIONS(2051), 1, 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, + 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, @@ -101770,52 +139674,160 @@ 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, + [64642] = 19, + 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(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, - [35532] = 3, + 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), 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, + [64716] = 18, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2898), 3, + ACTIONS(3433), 1, anon_sym_LPAREN2, + ACTIONS(3435), 1, + anon_sym_LBRACK, + ACTIONS(3858), 1, + anon_sym_SLASH, + ACTIONS(3864), 1, + anon_sym_CARET, + 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_LBRACK_LBRACK, - ACTIONS(2896), 46, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, + 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), 8, + anon_sym_COMMA, 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, + 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, + [64788] = 17, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2051), 1, 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, + ACTIONS(3882), 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, + sym_alignas_qualifier, + STATE(2294), 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(1468), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1697), 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, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -101824,52 +139836,51 @@ 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, - sym_identifier, - [35589] = 3, + [64858] = 17, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2898), 4, + ACTIONS(2051), 1, + anon_sym___based, + ACTIONS(3882), 1, + sym_identifier, + ACTIONS(3884), 1, anon_sym_LPAREN2, + ACTIONS(3886), 1, anon_sym_STAR, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2896), 45, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + 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, 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, @@ -101878,52 +139889,51 @@ 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, - sym_identifier, - [35646] = 3, + [64928] = 17, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1307), 4, + ACTIONS(2051), 1, + anon_sym___based, + ACTIONS(3876), 1, + sym_identifier, + ACTIONS(3878), 1, anon_sym_LPAREN2, + ACTIONS(3880), 1, anon_sym_STAR, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1305), 45, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + 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, 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, @@ -101932,52 +139942,51 @@ 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, - sym_identifier, - [35703] = 3, + [64998] = 17, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2755), 3, + ACTIONS(2047), 1, anon_sym_LPAREN2, + ACTIONS(2049), 1, anon_sym_STAR, - anon_sym_LBRACK_LBRACK, - ACTIONS(2753), 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, + ACTIONS(2051), 1, 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, + 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(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, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -101986,52 +139995,51 @@ 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, - sym_identifier, - [35760] = 3, + [65068] = 17, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2807), 3, + ACTIONS(2051), 1, + anon_sym___based, + ACTIONS(3882), 1, + sym_identifier, + ACTIONS(3884), 1, anon_sym_LPAREN2, + ACTIONS(3886), 1, anon_sym_STAR, - anon_sym_LBRACK_LBRACK, - ACTIONS(2805), 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, + 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(1482), 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, 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, @@ -102040,106 +140048,145 @@ 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, + [65138] = 17, + 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(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, - [35817] = 3, + 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, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_QMARK, + [65208] = 16, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2807), 4, + 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, + 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_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2805), 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, + 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), 4, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_AMP, sym_identifier, - [35874] = 3, + 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, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_QMARK, + [65276] = 11, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2731), 4, + 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, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2729), 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, + 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___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - anon_sym___declspec, + ACTIONS(2946), 18, + anon_sym___extension__, 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, @@ -102151,49 +140198,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [35931] = 3, + [65333] = 11, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2894), 4, + 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, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2892), 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, + 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___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - anon_sym___declspec, + ACTIONS(2968), 18, + anon_sym___extension__, 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, @@ -102205,105 +140244,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [35988] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(520), 1, - sym_string_literal, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2384), 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(2382), 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, - [36049] = 3, + [65390] = 11, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2803), 4, + 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, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2801), 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, + 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___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - anon_sym___declspec, + ACTIONS(2974), 18, + anon_sym___extension__, 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, @@ -102315,49 +140290,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [36106] = 3, + [65447] = 11, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2921), 3, + 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, - anon_sym_LBRACK_LBRACK, - ACTIONS(2919), 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, + 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___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - anon_sym___declspec, + ACTIONS(2929), 18, + anon_sym___extension__, 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, @@ -102369,49 +140336,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, + sym_identifier, + [65504] = 16, + 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, sym_identifier, - [36163] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2921), 4, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2919), 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, + STATE(1671), 1, + sym_alignas_qualifier, + STATE(1678), 1, + sym_type_specifier, + STATE(1712), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3374), 1, + sym_type_descriptor, + ACTIONS(1999), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1517), 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, - 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(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, @@ -102420,162 +140387,243 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, + [65570] = 16, + 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, sym_identifier, - [36220] = 5, - ACTIONS(3), 1, + STATE(1671), 1, + sym_alignas_qualifier, + STATE(1678), 1, + sym_type_specifier, + STATE(1712), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3316), 1, + sym_type_descriptor, + ACTIONS(1999), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1517), 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, + [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(1765), 1, - anon_sym_EQ, - ACTIONS(1769), 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(1756), 12, + 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_SLASH, anon_sym_PERCENT, + ACTIONS(3928), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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, - ACTIONS(1750), 26, + ACTIONS(2991), 13, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, 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_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, + 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(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, + 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, - [36281] = 3, + 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(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2731), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK_LBRACK, - ACTIONS(2729), 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, + 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, - sym_identifier, - [36338] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1335), 4, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1333), 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, + STATE(1671), 1, + sym_alignas_qualifier, + STATE(1724), 1, + sym_type_specifier, + STATE(1790), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1975), 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, - 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(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, @@ -102584,52 +140632,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, + [65890] = 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, - sym_identifier, - [36395] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2894), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK_LBRACK, - ACTIONS(2892), 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, + STATE(1671), 1, + sym_alignas_qualifier, + STATE(1724), 1, + sym_type_specifier, + STATE(1790), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1974), 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, - 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_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, @@ -102638,52 +140682,36 @@ 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, - sym_identifier, - [36452] = 3, + [65956] = 8, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2755), 4, + STATE(1597), 1, + sym_ms_unaligned_ptr_modifier, + ACTIONS(3967), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1482), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3964), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(3962), 5, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_LBRACK_LBRACK, - 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_LBRACK, + ACTIONS(3960), 18, 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, @@ -102695,49 +140723,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [36509] = 3, - ACTIONS(3), 1, + [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(2787), 3, + 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_LBRACK_LBRACK, - ACTIONS(2785), 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_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, + 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(2002), 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, - 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(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, @@ -102746,52 +140871,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, + [66198] = 16, + ACTIONS(3017), 1, + anon_sym_PIPE, + ACTIONS(3622), 1, + anon_sym_LPAREN2, + ACTIONS(3626), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_SLASH, + 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), 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, + [66264] = 16, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2001), 1, sym_primitive_type, - anon_sym_enum, + ACTIONS(2005), 1, anon_sym_struct, + ACTIONS(2007), 1, anon_sym_union, + ACTIONS(3920), 1, sym_identifier, - [36566] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1335), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK_LBRACK, - ACTIONS(1333), 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, + 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(3083), 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, - 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(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, @@ -102800,52 +140971,246 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, + [66330] = 17, + ACTIONS(3017), 1, + anon_sym_PIPE, + ACTIONS(3622), 1, + anon_sym_LPAREN2, + ACTIONS(3626), 1, + anon_sym_LBRACK, + ACTIONS(3926), 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, + anon_sym_PIPE_PIPE, + 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, + 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, + 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, + 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, + 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, + 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, - anon_sym_enum, + ACTIONS(2005), 1, anon_sym_struct, + ACTIONS(2007), 1, anon_sym_union, + ACTIONS(3920), 1, sym_identifier, - [36623] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1395), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK_LBRACK, - ACTIONS(1393), 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, + 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, - 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(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, @@ -102854,52 +141219,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, + [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, - sym_identifier, - [36680] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2787), 4, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2785), 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, + 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, - 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(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, @@ -102908,52 +141269,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, + [66722] = 16, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2001), 1, sym_primitive_type, - anon_sym_enum, + ACTIONS(2005), 1, anon_sym_struct, + ACTIONS(2007), 1, anon_sym_union, + ACTIONS(3920), 1, sym_identifier, - [36737] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1371), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK_LBRACK, - ACTIONS(1369), 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, + 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(3295), 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, - 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(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, @@ -102962,52 +141319,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, + [66788] = 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, - sym_identifier, - [36794] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2795), 4, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2793), 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, + STATE(1671), 1, + sym_alignas_qualifier, + STATE(1724), 1, + sym_type_specifier, + STATE(1790), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1993), 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, - 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(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, @@ -103016,52 +141369,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, + [66854] = 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, - sym_identifier, - [36851] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1367), 4, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1365), 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, + STATE(1671), 1, + sym_alignas_qualifier, + STATE(1724), 1, + sym_type_specifier, + STATE(1790), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1977), 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, - 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(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, @@ -103070,52 +141419,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, + [66920] = 16, + 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, sym_identifier, - [36908] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1371), 4, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1369), 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, + STATE(1671), 1, + sym_alignas_qualifier, + STATE(1678), 1, + sym_type_specifier, + STATE(1712), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3262), 1, + sym_type_descriptor, + ACTIONS(1999), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1517), 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, - 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(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, @@ -103124,52 +141469,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, + [66986] = 16, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2001), 1, sym_primitive_type, - anon_sym_enum, + ACTIONS(2005), 1, anon_sym_struct, + ACTIONS(2007), 1, anon_sym_union, + ACTIONS(3920), 1, sym_identifier, - [36965] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1307), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK_LBRACK, - ACTIONS(1305), 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, + 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(3350), 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, - 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(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, @@ -103178,52 +141519,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, + [67052] = 16, + 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, sym_identifier, - [37022] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1367), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK_LBRACK, - ACTIONS(1365), 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, + STATE(1671), 1, + sym_alignas_qualifier, + STATE(1678), 1, + sym_type_specifier, + STATE(1712), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3260), 1, + sym_type_descriptor, + ACTIONS(1999), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1517), 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, - 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(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, @@ -103232,52 +141569,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, + [67118] = 16, + 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, sym_identifier, - [37079] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1315), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK_LBRACK, - ACTIONS(1313), 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, + STATE(1671), 1, + sym_alignas_qualifier, + STATE(1678), 1, + sym_type_specifier, + STATE(1712), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2994), 1, + sym_type_descriptor, + ACTIONS(1999), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1517), 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, - 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(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, @@ -103286,59 +141619,156 @@ 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, - sym_identifier, - [37136] = 7, - ACTIONS(3), 1, + [67184] = 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, + STATE(1245), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - STATE(837), 1, - sym_attribute_specifier, - ACTIONS(3022), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(3025), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(3028), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - ACTIONS(3020), 6, + 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(3070), 5, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + [67258] = 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, + 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(3082), 5, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(3018), 33, - 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_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_RBRACE, + anon_sym_COLON, + [67332] = 16, + 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, + sym_identifier, + STATE(1671), 1, + sym_alignas_qualifier, + STATE(1678), 1, + sym_type_specifier, + STATE(1712), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3336), 1, + sym_type_descriptor, + ACTIONS(1999), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1517), 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, @@ -103347,51 +141777,38 @@ 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, - [37200] = 6, + [67398] = 10, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3036), 2, - anon_sym_LBRACK_LBRACK, + ACTIONS(3972), 1, anon_sym_LBRACE, - ACTIONS(2368), 3, - anon_sym_LBRACK, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(2370), 4, - anon_sym_COMMA, + STATE(1546), 1, + sym_field_declaration_list, + STATE(1819), 1, + sym_attribute_specifier, + ACTIONS(3092), 2, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_EQ, - ACTIONS(3031), 9, + 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___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - sym_identifier, - ACTIONS(3034), 30, + ACTIONS(3090), 18, 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, @@ -103403,37 +141820,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, + sym_identifier, + [67452] = 16, + 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, - [37262] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2496), 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(2494), 29, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(3920), 1, + sym_identifier, + STATE(1671), 1, + sym_alignas_qualifier, + STATE(1678), 1, + sym_type_specifier, + STATE(1712), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2995), 1, + sym_type_descriptor, + ACTIONS(1999), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1517), 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_static, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -103442,65 +141871,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + [67518] = 16, + 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, + sym_identifier, + STATE(1671), 1, + sym_alignas_qualifier, + STATE(1678), 1, + sym_type_specifier, + STATE(1712), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3263), 1, + sym_type_descriptor, + ACTIONS(1999), 2, 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, - [37318] = 6, + STATE(1517), 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, + [67584] = 10, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3044), 2, - anon_sym_LBRACK_LBRACK, + ACTIONS(3916), 1, anon_sym_LBRACE, - ACTIONS(2388), 3, - anon_sym_LBRACK, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(2390), 4, - anon_sym_COMMA, + STATE(1556), 1, + sym_enumerator_list, + STATE(1864), 1, + sym_attribute_specifier, + ACTIONS(3059), 2, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_EQ, - ACTIONS(3039), 9, + 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___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - sym_identifier, - ACTIONS(3042), 30, + ACTIONS(3057), 18, 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, @@ -103512,55 +141964,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, + sym_identifier, + [67638] = 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, - [37380] = 7, - ACTIONS(3), 1, - sym_comment, - STATE(865), 1, - sym_attribute_specifier, - ACTIONS(3051), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(3054), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(3057), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - ACTIONS(3049), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(3047), 33, + STATE(1671), 1, + sym_alignas_qualifier, + STATE(1724), 1, + sym_type_specifier, + STATE(1790), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2003), 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_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_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, @@ -103569,37 +142015,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_identifier, - [37444] = 3, + [67704] = 16, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2544), 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(2542), 29, - anon_sym_DASH, - anon_sym_PLUS, + 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(1972), 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_static, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -103608,69 +142065,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + [67770] = 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(1986), 1, + sym__type_definition_type, + ACTIONS(1999), 2, 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, - [37500] = 7, + 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, + [67836] = 10, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - STATE(876), 1, + ACTIONS(3972), 1, + anon_sym_LBRACE, + STATE(1531), 1, + sym_field_declaration_list, + STATE(1841), 1, sym_attribute_specifier, - ACTIONS(3064), 2, + ACTIONS(3041), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(3910), 2, anon_sym___attribute__, anon_sym___must_hold, - ACTIONS(3067), 2, + ACTIONS(3912), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(3070), 4, + ACTIONS(3914), 4, anon_sym___read_mostly, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(3062), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(3060), 33, + ACTIONS(3039), 18, 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_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_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -103681,44 +142157,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, + sym_primitive_type, sym_identifier, - [37564] = 3, + [67890] = 16, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2162), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(2160), 45, - 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___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + 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, + sym_identifier, + STATE(1671), 1, + sym_alignas_qualifier, + STATE(1678), 1, + sym_type_specifier, + STATE(1712), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3072), 1, + sym_type_descriptor, + ACTIONS(1999), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1517), 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, - 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(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, @@ -103727,50 +142209,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, + [67956] = 16, + 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, sym_identifier, - [37619] = 3, + STATE(1671), 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, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1517), 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, + [68022] = 16, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2150), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(2148), 45, + 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(1979), 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_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___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [68088] = 15, + 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(1671), 1, + sym_alignas_qualifier, + STATE(2271), 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, - 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(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, @@ -103779,51 +142357,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, + [68151] = 15, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2001), 1, sym_primitive_type, - anon_sym_enum, + ACTIONS(2005), 1, anon_sym_struct, + ACTIONS(2007), 1, anon_sym_union, + ACTIONS(3920), 1, sym_identifier, - [37674] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2588), 1, - anon_sym_LBRACK_LBRACK, - STATE(517), 1, - sym_string_literal, - ACTIONS(3073), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2586), 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(3970), 1, + anon_sym_enum, + STATE(1671), 1, + sym_alignas_qualifier, + STATE(1681), 1, + sym_type_specifier, + STATE(1712), 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(1997), 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(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, @@ -103832,51 +142405,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, + [68214] = 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, sym_identifier, - [37732] = 5, + STATE(1671), 1, + sym_alignas_qualifier, + STATE(1681), 1, + sym_type_specifier, + STATE(1712), 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(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, + [68277] = 9, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2588), 1, - anon_sym_LBRACK_LBRACK, - STATE(519), 1, - sym_string_literal, - ACTIONS(3073), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2586), 39, - anon_sym___extension__, - anon_sym_extern, + ACTIONS(3974), 1, + anon_sym___aligned, + STATE(1777), 1, + sym_attribute_specifier, + ACTIONS(3230), 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___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - anon_sym___declspec, + ACTIONS(3228), 18, + anon_sym___extension__, + 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, @@ -103888,48 +142494,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [37790] = 5, + [68328] = 9, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2588), 1, - anon_sym_LBRACK_LBRACK, - STATE(515), 1, - sym_string_literal, - ACTIONS(3073), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2586), 39, - anon_sym___extension__, - anon_sym_extern, + ACTIONS(3976), 1, + anon_sym___aligned, + STATE(1758), 1, + sym_attribute_specifier, + ACTIONS(3240), 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___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - anon_sym___declspec, + ACTIONS(3238), 18, + anon_sym___extension__, + 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, @@ -103941,48 +142536,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [37848] = 5, + [68379] = 15, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2588), 1, - anon_sym_LBRACK_LBRACK, - STATE(516), 1, - sym_string_literal, - ACTIONS(3073), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2586), 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(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(1671), 1, + sym_alignas_qualifier, + STATE(2283), 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, - 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(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, @@ -103991,49 +142585,36 @@ 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, - sym_identifier, - [37906] = 3, + [68442] = 9, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3077), 3, + ACTIONS(3978), 1, + anon_sym___aligned, + STATE(1786), 1, + sym_attribute_specifier, + ACTIONS(3158), 2, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_LBRACK_LBRACK, - ACTIONS(3075), 43, - anon_sym___extension__, - anon_sym_extern, + 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___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - anon_sym___declspec, + ACTIONS(3156), 18, + anon_sym___extension__, anon_sym___based, - anon_sym___init, - anon_sym___exit, 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, @@ -104045,379 +142626,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [37960] = 7, + [68493] = 9, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2390), 1, + ACTIONS(3980), 1, + anon_sym___aligned, + STATE(1783), 1, + sym_attribute_specifier, + ACTIONS(3138), 2, anon_sym_LPAREN2, - ACTIONS(3044), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3079), 1, - anon_sym_LBRACE, - ACTIONS(2388), 3, - anon_sym_LBRACK, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(3039), 9, + 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___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - sym_identifier, - ACTIONS(3042), 30, + ACTIONS(3136), 18, 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, - [38021] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1765), 1, - anon_sym_EQ, - ACTIONS(1771), 1, - anon_sym_COLON, - STATE(520), 1, - sym_string_literal, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1769), 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(1756), 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(1750), 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, - [38084] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1765), 1, - anon_sym_EQ, - ACTIONS(1767), 1, - anon_sym_COLON, - STATE(520), 1, - sym_string_literal, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1769), 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(1756), 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(1750), 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, - [38147] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1765), 1, - anon_sym_EQ, - ACTIONS(3081), 1, - anon_sym_COLON, - STATE(520), 1, - sym_string_literal, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1769), 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(1756), 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(1750), 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_RBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [38210] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1765), 1, - anon_sym_EQ, - ACTIONS(1788), 1, - anon_sym_COLON, - STATE(520), 1, - sym_string_literal, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1769), 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(1756), 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(1750), 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, - [38273] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1765), 1, - anon_sym_EQ, - ACTIONS(1786), 1, - anon_sym_COLON, - STATE(520), 1, - sym_string_literal, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1769), 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(1756), 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(1750), 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, - [38336] = 7, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [68544] = 9, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2370), 1, + ACTIONS(3982), 1, + anon_sym___aligned, + STATE(1775), 1, + sym_attribute_specifier, + ACTIONS(3196), 2, anon_sym_LPAREN2, - ACTIONS(3036), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3083), 1, - anon_sym_LBRACE, - ACTIONS(2368), 3, - anon_sym_LBRACK, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(3031), 9, + 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___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - sym_identifier, - ACTIONS(3034), 30, + ACTIONS(3194), 18, 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, @@ -104429,403 +142710,416 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - [38397] = 8, + sym_identifier, + [68595] = 15, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1765), 1, - anon_sym_EQ, - ACTIONS(1784), 1, - anon_sym_COLON, - STATE(520), 1, - sym_string_literal, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1769), 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(1756), 12, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(2051), 1, + anon_sym___based, + ACTIONS(3800), 1, + sym_identifier, + ACTIONS(3802), 1, + anon_sym_LPAREN2, + ACTIONS(3804), 1, 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(1750), 15, - anon_sym_COMMA, + 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_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [68658] = 15, + 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, - 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, - [38460] = 20, + ACTIONS(3804), 1, + 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, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2486), 1, + ACTIONS(3984), 1, + anon_sym___aligned, + STATE(1780), 1, + sym_attribute_specifier, + ACTIONS(3152), 2, anon_sym_LPAREN2, - ACTIONS(2488), 1, - anon_sym_LBRACK, - ACTIONS(3089), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3091), 1, - anon_sym_AMP_AMP, - ACTIONS(3093), 1, - anon_sym_PIPE, - ACTIONS(3095), 1, - anon_sym_CARET, - ACTIONS(3097), 1, - anon_sym_AMP, - ACTIONS(3107), 1, - anon_sym_QMARK, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2995), 2, - aux_sym_preproc_elif_token1, - anon_sym_EQ, - ACTIONS(3085), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3099), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3101), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3103), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3105), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3087), 3, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2993), 16, - 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, + 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(3150), 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, - [38546] = 20, + [68772] = 15, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2486), 1, + 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, anon_sym_LPAREN2, - ACTIONS(2488), 1, + ACTIONS(3626), 1, anon_sym_LBRACK, - ACTIONS(3089), 1, + ACTIONS(3926), 1, + anon_sym_SLASH, + ACTIONS(3930), 1, anon_sym_PIPE_PIPE, - ACTIONS(3091), 1, + ACTIONS(3932), 1, anon_sym_AMP_AMP, - ACTIONS(3093), 1, + ACTIONS(3934), 1, anon_sym_PIPE, - ACTIONS(3095), 1, + ACTIONS(3936), 1, anon_sym_CARET, - ACTIONS(3097), 1, + ACTIONS(3938), 1, anon_sym_AMP, - ACTIONS(3107), 1, + ACTIONS(3946), 1, anon_sym_QMARK, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2989), 2, - aux_sym_preproc_elif_token1, - anon_sym_EQ, - ACTIONS(3085), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3099), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3101), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3103), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3105), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3087), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2979), 16, + ACTIONS(3986), 1, 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, - sym_identifier, - [38632] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2486), 1, - anon_sym_LPAREN2, - ACTIONS(2488), 1, - anon_sym_LBRACK, - STATE(765), 1, + STATE(1245), 1, sym_argument_list, - ACTIONS(2490), 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3628), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, + ACTIONS(3630), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3085), 2, + ACTIONS(3922), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3087), 3, + ACTIONS(3924), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2546), 9, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, + ACTIONS(3928), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2548), 23, - 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, + 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, - 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, - sym_identifier, - [38698] = 11, + ACTIONS(3988), 3, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + [68910] = 15, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2486), 1, + ACTIONS(2051), 1, + anon_sym___based, + ACTIONS(3800), 1, + sym_identifier, + ACTIONS(3802), 1, anon_sym_LPAREN2, - ACTIONS(2488), 1, - anon_sym_LBRACK, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3085), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3105), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3087), 3, + ACTIONS(3804), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2546), 7, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_EQ, - ACTIONS(2548), 23, - 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, - sym_identifier, - [38766] = 13, + 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_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [68973] = 15, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2486), 1, + ACTIONS(2051), 1, + anon_sym___based, + ACTIONS(3790), 1, + sym_identifier, + ACTIONS(3792), 1, anon_sym_LPAREN2, - ACTIONS(2488), 1, - anon_sym_LBRACK, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3085), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3101), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3103), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3105), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3087), 3, + ACTIONS(3794), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2546), 5, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - ACTIONS(2548), 21, - 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, - 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, - sym_identifier, - [38838] = 3, + 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, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3111), 3, + STATE(1855), 1, + sym_attribute_specifier, + ACTIONS(3268), 2, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_LBRACK_LBRACK, - ACTIONS(3109), 41, + 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(3266), 18, anon_sym___extension__, - anon_sym_extern, + 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, + [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___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, + ACTIONS(2970), 16, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym___extension__, 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, @@ -104835,623 +143129,568 @@ 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, - [38890] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2486), 1, + anon_sym_COLON, + [69138] = 22, + ACTIONS(3622), 1, anon_sym_LPAREN2, - ACTIONS(2488), 1, + ACTIONS(3626), 1, anon_sym_LBRACK, - ACTIONS(3089), 1, + ACTIONS(3926), 1, + anon_sym_SLASH, + ACTIONS(3930), 1, anon_sym_PIPE_PIPE, - ACTIONS(3091), 1, + ACTIONS(3932), 1, anon_sym_AMP_AMP, - ACTIONS(3093), 1, + ACTIONS(3934), 1, anon_sym_PIPE, - ACTIONS(3095), 1, + ACTIONS(3936), 1, anon_sym_CARET, - ACTIONS(3097), 1, + ACTIONS(3938), 1, anon_sym_AMP, - ACTIONS(3107), 1, + ACTIONS(3946), 1, anon_sym_QMARK, - STATE(765), 1, + ACTIONS(4000), 1, + anon_sym_COMMA, + ACTIONS(4002), 1, + anon_sym_RPAREN, + STATE(1245), 1, sym_argument_list, - ACTIONS(2490), 2, + STATE(2703), 1, + aux_sym_argument_list_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3628), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, + ACTIONS(3630), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2999), 2, - aux_sym_preproc_elif_token1, - anon_sym_EQ, - ACTIONS(3085), 2, + ACTIONS(3922), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3099), 2, + 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(3101), 2, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3103), 2, + ACTIONS(3944), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3105), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3087), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2997), 16, - 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, - sym_identifier, - [38976] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2486), 1, + [69214] = 22, + ACTIONS(3622), 1, anon_sym_LPAREN2, - ACTIONS(2488), 1, + ACTIONS(3626), 1, anon_sym_LBRACK, - ACTIONS(3095), 1, + 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(3097), 1, + ACTIONS(3938), 1, anon_sym_AMP, - STATE(765), 1, + ACTIONS(3946), 1, + anon_sym_QMARK, + ACTIONS(4000), 1, + anon_sym_COMMA, + ACTIONS(4004), 1, + anon_sym_RPAREN, + STATE(1245), 1, sym_argument_list, - ACTIONS(2490), 2, + STATE(2717), 1, + aux_sym_argument_list_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3628), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, + ACTIONS(3630), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3085), 2, + ACTIONS(3922), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3099), 2, + 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(3101), 2, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3103), 2, + ACTIONS(3944), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3105), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2546), 3, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_EQ, - ACTIONS(3087), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2548), 19, + [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, - 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, - 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_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(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3283), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(3281), 27, + 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, + anon_sym___aligned, sym_identifier, - [39054] = 17, + [69384] = 8, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2486), 1, + STATE(1830), 1, + sym_attribute_specifier, + ACTIONS(3357), 2, anon_sym_LPAREN2, - ACTIONS(2488), 1, + 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_LPAREN2, + ACTIONS(3626), 1, anon_sym_LBRACK, - ACTIONS(3093), 1, + 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(3095), 1, + ACTIONS(3936), 1, anon_sym_CARET, - ACTIONS(3097), 1, + ACTIONS(3938), 1, anon_sym_AMP, - STATE(765), 1, + ACTIONS(3946), 1, + anon_sym_QMARK, + ACTIONS(4008), 1, + anon_sym_COMMA, + ACTIONS(4010), 1, + anon_sym_RPAREN, + STATE(1245), 1, sym_argument_list, - ACTIONS(2490), 2, + STATE(2492), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3628), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, + ACTIONS(3630), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2546), 2, - aux_sym_preproc_elif_token1, - anon_sym_EQ, - ACTIONS(3085), 2, + ACTIONS(3922), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3099), 2, + 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(3101), 2, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3103), 2, + ACTIONS(3944), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3105), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3087), 3, - anon_sym_STAR, + [69508] = 22, + ACTIONS(3622), 1, + anon_sym_LPAREN2, + ACTIONS(3626), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2548), 19, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + ACTIONS(3930), 1, anon_sym_PIPE_PIPE, + ACTIONS(3932), 1, anon_sym_AMP_AMP, - 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, - sym_identifier, - [39134] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2486), 1, - anon_sym_LPAREN2, - ACTIONS(2488), 1, - anon_sym_LBRACK, - ACTIONS(3097), 1, + ACTIONS(3934), 1, + anon_sym_PIPE, + ACTIONS(3936), 1, + anon_sym_CARET, + ACTIONS(3938), 1, anon_sym_AMP, - STATE(765), 1, + ACTIONS(3946), 1, + anon_sym_QMARK, + ACTIONS(4012), 1, + anon_sym_COMMA, + ACTIONS(4014), 1, + anon_sym_RBRACE, + STATE(1245), 1, sym_argument_list, - ACTIONS(2490), 2, + STATE(2570), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3628), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, + ACTIONS(3630), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3085), 2, + ACTIONS(3922), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3099), 2, + 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(3101), 2, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3103), 2, + ACTIONS(3944), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3105), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3087), 3, - anon_sym_STAR, + [69584] = 22, + ACTIONS(3622), 1, + anon_sym_LPAREN2, + ACTIONS(3626), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2546), 4, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_EQ, - ACTIONS(2548), 19, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + ACTIONS(3930), 1, anon_sym_PIPE_PIPE, + ACTIONS(3932), 1, anon_sym_AMP_AMP, - 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, - sym_identifier, - [39210] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3113), 1, - anon_sym_EQ, - STATE(520), 1, - sym_string_literal, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(3115), 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(1756), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3934), 1, anon_sym_PIPE, + ACTIONS(3936), 1, anon_sym_CARET, + ACTIONS(3938), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(1750), 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, + ACTIONS(3946), 1, anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [39270] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2486), 1, - anon_sym_LPAREN2, - ACTIONS(2488), 1, - anon_sym_LBRACK, - STATE(765), 1, + ACTIONS(4000), 1, + anon_sym_COMMA, + ACTIONS(4016), 1, + anon_sym_RPAREN, + STATE(1245), 1, sym_argument_list, - ACTIONS(2490), 2, + STATE(2549), 1, + aux_sym_argument_list_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3628), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, + ACTIONS(3630), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3085), 2, + ACTIONS(3922), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3099), 2, + 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(3101), 2, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3103), 2, + ACTIONS(3944), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3105), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3087), 3, - anon_sym_STAR, + [69660] = 22, + ACTIONS(3622), 1, + anon_sym_LPAREN2, + ACTIONS(3626), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2546), 5, - aux_sym_preproc_elif_token1, + 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, - anon_sym_EQ, - ACTIONS(2548), 19, - 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, + ACTIONS(3946), 1, 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, - sym_identifier, - [39344] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2825), 1, - anon_sym_LPAREN2, - ACTIONS(3117), 1, + ACTIONS(4008), 1, anon_sym_COMMA, - ACTIONS(3120), 1, + ACTIONS(4018), 1, anon_sym_RPAREN, - STATE(885), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1770), 1, - aux_sym__old_style_parameter_list_repeat1, - ACTIONS(1761), 2, - anon_sym_STAR, - anon_sym_LBRACK_LBRACK, - ACTIONS(1763), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(1748), 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, - [39408] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2486), 1, - anon_sym_LPAREN2, - ACTIONS(2488), 1, - anon_sym_LBRACK, - STATE(765), 1, + STATE(1245), 1, sym_argument_list, - ACTIONS(2490), 2, + STATE(2735), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3628), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, + ACTIONS(3630), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3087), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2546), 11, - aux_sym_preproc_elif_token1, + ACTIONS(3922), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, + ACTIONS(3924), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3928), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2548), 23, - 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, + 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, - 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, - sym_identifier, - [39472] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2486), 1, + [69736] = 22, + ACTIONS(3622), 1, anon_sym_LPAREN2, - ACTIONS(2488), 1, + ACTIONS(3626), 1, anon_sym_LBRACK, - ACTIONS(3091), 1, + ACTIONS(3926), 1, + anon_sym_SLASH, + ACTIONS(3930), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3932), 1, anon_sym_AMP_AMP, - ACTIONS(3093), 1, + ACTIONS(3934), 1, anon_sym_PIPE, - ACTIONS(3095), 1, + ACTIONS(3936), 1, anon_sym_CARET, - ACTIONS(3097), 1, + ACTIONS(3938), 1, anon_sym_AMP, - STATE(765), 1, + ACTIONS(3946), 1, + anon_sym_QMARK, + ACTIONS(4000), 1, + anon_sym_COMMA, + ACTIONS(4020), 1, + anon_sym_RPAREN, + STATE(1245), 1, sym_argument_list, - ACTIONS(2490), 2, + STATE(2636), 1, + aux_sym_argument_list_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3628), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, + ACTIONS(3630), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2546), 2, - aux_sym_preproc_elif_token1, - anon_sym_EQ, - ACTIONS(3085), 2, + ACTIONS(3922), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3099), 2, + 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(3101), 2, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3103), 2, + ACTIONS(3944), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3105), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3087), 3, - anon_sym_STAR, + [69812] = 22, + ACTIONS(3622), 1, + anon_sym_LPAREN2, + ACTIONS(3626), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2548), 18, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + 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, - 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, - sym_identifier, - [39554] = 5, - ACTIONS(3), 1, + ACTIONS(4000), 1, + anon_sym_COMMA, + ACTIONS(4022), 1, + anon_sym_RPAREN, + STATE(1245), 1, + sym_argument_list, + STATE(2531), 1, + aux_sym_argument_list_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(3014), 1, - anon_sym_EQ, - ACTIONS(3016), 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(1756), 13, - aux_sym_preproc_elif_token1, + 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_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, + ACTIONS(3928), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1750), 19, - 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, + 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, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - sym_identifier, - [39609] = 8, + [69888] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3126), 1, + ACTIONS(3317), 2, anon_sym_LPAREN2, - ACTIONS(3130), 1, - anon_sym_LBRACK, - STATE(885), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(1761), 2, - anon_sym_COMMA, anon_sym_STAR, - ACTIONS(3123), 2, - anon_sym_RPAREN, - anon_sym_LBRACK_LBRACK, - ACTIONS(1763), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(1748), 32, + ACTIONS(3315), 27, anon_sym___extension__, - anon_sym_extern, anon_sym___attribute__, anon_sym___scanf, anon_sym___printf, @@ -105460,17 +143699,11 @@ 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_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_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -105481,48 +143714,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, + sym_primitive_type, + anon_sym___aligned, sym_identifier, - [39670] = 7, + [69928] = 8, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2825), 1, + STATE(1799), 1, + sym_attribute_specifier, + ACTIONS(3321), 2, anon_sym_LPAREN2, - STATE(885), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(1761), 2, anon_sym_STAR, - anon_sym_LBRACK_LBRACK, - ACTIONS(3133), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1763), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(1748), 33, - anon_sym___extension__, - anon_sym_extern, + 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___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - anon_sym___declspec, + ACTIONS(3319), 18, + anon_sym___extension__, 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_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -105533,113 +143755,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, + sym_primitive_type, sym_identifier, - [39729] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1835), 1, - anon_sym___based, - ACTIONS(1873), 1, - anon_sym_LPAREN2, - ACTIONS(1875), 1, - anon_sym_STAR, - ACTIONS(3136), 1, - sym_identifier, - ACTIONS(3144), 1, - anon_sym_LBRACK, - STATE(799), 1, - sym_alignas_qualifier, - STATE(1149), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1465), 1, - sym__declarator, - STATE(1657), 1, - sym__abstract_declarator, - STATE(1691), 1, - sym_parameter_list, - STATE(2174), 1, - sym_ms_based_modifier, - ACTIONS(55), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(3138), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(3142), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1094), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(1121), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(3140), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1717), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1569), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(53), 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, - [39815] = 8, + [69976] = 8, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3123), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3126), 1, + STATE(1843), 1, + sym_attribute_specifier, + ACTIONS(3313), 2, anon_sym_LPAREN2, - ACTIONS(3146), 1, - anon_sym_LBRACK, - STATE(885), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(1761), 2, anon_sym_STAR, - anon_sym_SEMI, - ACTIONS(1763), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(1748), 32, - anon_sym___extension__, - anon_sym_extern, + 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___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - anon_sym___declspec, + ACTIONS(3311), 18, + anon_sym___extension__, 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_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -105650,63 +143795,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, + sym_primitive_type, sym_identifier, - [39875] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1835), 1, - anon_sym___based, - ACTIONS(1873), 1, + [70024] = 22, + ACTIONS(3622), 1, anon_sym_LPAREN2, - ACTIONS(1875), 1, + 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(4000), 1, + anon_sym_COMMA, + ACTIONS(4024), 1, + anon_sym_RPAREN, + STATE(1245), 1, + sym_argument_list, + STATE(2518), 1, + aux_sym_argument_list_repeat1, + 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, - ACTIONS(3136), 1, - sym_identifier, - ACTIONS(3144), 1, + 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, + [70100] = 22, + ACTIONS(3622), 1, + anon_sym_LPAREN2, + ACTIONS(3626), 1, anon_sym_LBRACK, - STATE(799), 1, + 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(4000), 1, + anon_sym_COMMA, + ACTIONS(4026), 1, + anon_sym_RPAREN, + STATE(1245), 1, + sym_argument_list, + STATE(2610), 1, + aux_sym_argument_list_repeat1, + 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, + [70176] = 8, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + STATE(1671), 1, sym_alignas_qualifier, - STATE(1149), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1464), 1, - sym__declarator, - STATE(1638), 1, - sym__abstract_declarator, - STATE(1691), 1, - sym_parameter_list, - STATE(2174), 1, - sym_ms_based_modifier, - ACTIONS(55), 2, + ACTIONS(4035), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(3142), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(3148), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1000), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1093), 2, + STATE(1549), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3140), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1717), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1569), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(53), 9, + ACTIONS(4030), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK, + ACTIONS(4032), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -105716,37 +143934,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [39961] = 3, + 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, + 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(4000), 1, + anon_sym_COMMA, + ACTIONS(4038), 1, + anon_sym_RPAREN, + STATE(1245), 1, + sym_argument_list, + STATE(2553), 1, + aux_sym_argument_list_repeat1, + 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, + [70300] = 8, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1167), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(1165), 39, - anon_sym___extension__, - anon_sym_extern, + STATE(1836), 1, + sym_attribute_specifier, + ACTIONS(3334), 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___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - anon_sym___declspec, + ACTIONS(3332), 18, + anon_sym___extension__, + 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, @@ -105758,41 +144038,240 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [40010] = 3, + [70348] = 11, + ACTIONS(3), 1, + 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, + 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_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(4042), 1, + anon_sym_COMMA, + ACTIONS(4044), 1, + anon_sym_RBRACE, + STATE(1245), 1, + sym_argument_list, + STATE(2638), 1, + aux_sym_initializer_list_repeat1, + 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, + [70478] = 22, + 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(4008), 1, + anon_sym_COMMA, + ACTIONS(4046), 1, + anon_sym_RPAREN, + STATE(1245), 1, + sym_argument_list, + STATE(2665), 1, + aux_sym_generic_expression_repeat1, + 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, + [70554] = 22, + 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(4048), 1, + anon_sym_COMMA, + ACTIONS(4050), 1, + anon_sym_RBRACE, + STATE(1245), 1, + sym_argument_list, + STATE(2517), 1, + aux_sym_initializer_list_repeat1, + 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, + [70630] = 8, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1163), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(1161), 39, - anon_sym___extension__, - anon_sym_extern, + STATE(1858), 1, + sym_attribute_specifier, + ACTIONS(3293), 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___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - anon_sym___declspec, + ACTIONS(3291), 18, + anon_sym___extension__, + 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, @@ -105804,42 +144283,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [40059] = 4, + [70678] = 8, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2544), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3150), 1, - anon_sym_typedef, - ACTIONS(2542), 39, - anon_sym___extension__, - anon_sym_extern, + STATE(1856), 1, + sym_attribute_specifier, + ACTIONS(3344), 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___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - anon_sym___declspec, + ACTIONS(3342), 18, + anon_sym___extension__, + 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, @@ -105851,42 +144323,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [40110] = 3, + [70726] = 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(4052), 1, + anon_sym_RPAREN, + 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, + [70799] = 10, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1195), 2, - anon_sym_LBRACK_LBRACK, + ACTIONS(3039), 1, + anon_sym_const, + ACTIONS(4060), 1, anon_sym_LBRACE, - ACTIONS(1193), 39, - anon_sym___extension__, - anon_sym_extern, + 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___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, + 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, @@ -105896,20 +144416,226 @@ 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, - [40159] = 3, + anon_sym_COLON, + [70850] = 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(4062), 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, + [70923] = 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(4064), 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, + [70996] = 22, + 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(4066), 1, + anon_sym_DOT_DOT_DOT, + 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(4092), 1, + anon_sym_RBRACK, + 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(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, + [71071] = 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(4096), 1, + anon_sym_RPAREN, + 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, + [71144] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1195), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(1193), 39, + ACTIONS(3482), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(3480), 26, anon_sym___extension__, - anon_sym_extern, anon_sym___attribute__, anon_sym___scanf, anon_sym___printf, @@ -105918,20 +144644,11 @@ 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_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, @@ -105943,19 +144660,378 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [40208] = 3, + [71183] = 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(4098), 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, + [71256] = 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(4100), 1, + anon_sym_RPAREN, + 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, + [71329] = 21, + 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(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(3070), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_RBRACK, + 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, + [71402] = 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(4102), 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, + [71475] = 21, + 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(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(3082), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_RBRACK, + 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, + [71548] = 18, + 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(4078), 1, + anon_sym_PIPE, + ACTIONS(4080), 1, + anon_sym_CARET, + 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), 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, + 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(4104), 1, + anon_sym_RPAREN, + 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, + [71688] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1167), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(1165), 39, + ACTIONS(3317), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(3315), 26, anon_sym___extension__, - anon_sym_extern, anon_sym___attribute__, anon_sym___scanf, anon_sym___printf, @@ -105964,20 +145040,11 @@ 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_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, @@ -105989,411 +145056,1082 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [40257] = 3, - ACTIONS(3), 1, + [71727] = 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(4106), 1, + anon_sym_SEMI, + STATE(1245), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(1163), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(1161), 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, - [40306] = 3, - ACTIONS(3), 1, + 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, + [71800] = 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(4108), 1, + anon_sym_RPAREN, + STATE(1245), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(3154), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(3152), 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, - [40355] = 4, - ACTIONS(3), 1, + 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, + [71873] = 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(4110), 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, + [71946] = 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(4112), 1, + anon_sym_RPAREN, + 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, + [72019] = 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(4114), 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, + [72092] = 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(4116), 1, + anon_sym_RPAREN, + 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, + [72165] = 19, + 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(4076), 1, + anon_sym_AMP_AMP, + ACTIONS(4078), 1, + anon_sym_PIPE, + ACTIONS(4080), 1, + anon_sym_CARET, + 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), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_QMARK, + [72234] = 12, + 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(3017), 4, + anon_sym_PIPE, + anon_sym_AMP, + 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, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK, + 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, + 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, + 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, + 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, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4070), 2, + anon_sym_STAR, + anon_sym_PERCENT, + 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), 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, + 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(4118), 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, + [72480] = 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(4120), 1, + anon_sym_RPAREN, + 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, + [72553] = 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(4122), 1, + anon_sym_COLON, + STATE(1245), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(2544), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3156), 1, - anon_sym_typedef, - ACTIONS(2542), 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, - [40406] = 3, - ACTIONS(3), 1, + 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, + [72626] = 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, + STATE(1245), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(3083), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(3034), 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, - [40455] = 3, - ACTIONS(3), 1, + 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(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(1227), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(1225), 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, - [40504] = 3, - ACTIONS(3), 1, + 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, + 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, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + [72750] = 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(4126), 1, + anon_sym_SEMI, + STATE(1245), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(1167), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(1165), 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, - [40553] = 3, - ACTIONS(3), 1, + 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, + [72823] = 18, + 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(4080), 1, + anon_sym_CARET, + ACTIONS(4082), 1, + anon_sym_AMP, + STATE(1245), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(1227), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(1225), 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, - [40602] = 3, - ACTIONS(3), 1, + 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), 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, + 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(4128), 1, + anon_sym_COLON, + STATE(1245), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(1199), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(1197), 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, - [40651] = 4, + 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, + [72963] = 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(4130), 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, + [73036] = 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(4132), 1, + anon_sym_RPAREN, + 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, + [73109] = 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, + 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(4134), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [73180] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2544), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3158), 1, - anon_sym_typedef, - ACTIONS(2542), 39, + ACTIONS(4138), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK, + ACTIONS(4136), 23, 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, + 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_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, @@ -106405,20 +146143,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [40702] = 4, + [73219] = 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(4140), 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, + [73292] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2544), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3160), 1, - anon_sym_typedef, - ACTIONS(2542), 39, + ACTIONS(3283), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(3281), 26, anon_sym___extension__, - anon_sym_extern, anon_sym___attribute__, anon_sym___scanf, anon_sym___printf, @@ -106427,20 +146214,11 @@ 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_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, @@ -106452,41 +146230,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [40753] = 3, + [73331] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1199), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(1197), 39, + ACTIONS(4144), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK, + ACTIONS(4142), 23, 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, + 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_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, @@ -106498,19 +146265,631 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [40802] = 3, + [73370] = 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(4146), 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, + [73443] = 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, + 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(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, + anon_sym_LPAREN2, + ACTIONS(3764), 1, + anon_sym_DOT, + 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(3078), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_RBRACK, + 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, + [73587] = 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(4150), 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, + [73660] = 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, + 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(4152), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [73731] = 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(4154), 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, + [73804] = 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, + 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(4156), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [73875] = 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, + 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(4158), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [73946] = 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(4160), 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, + [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, + 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, + [74082] = 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, + 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(4162), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [74153] = 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(4164), 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, + [74226] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1163), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(1161), 39, + ACTIONS(3399), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(3397), 26, anon_sym___extension__, - anon_sym_extern, anon_sym___attribute__, anon_sym___scanf, anon_sym___printf, @@ -106519,20 +146898,11 @@ 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_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, @@ -106544,19 +146914,221 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [40851] = 3, + [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, + 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(4168), 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, + [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, + 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, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3164), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(3162), 39, + ACTIONS(3498), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(3496), 26, anon_sym___extension__, - anon_sym_extern, anon_sym___attribute__, anon_sym___scanf, anon_sym___printf, @@ -106565,20 +147137,11 @@ 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_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, @@ -106590,42 +147153,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [40900] = 3, + [74588] = 11, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1155), 2, - anon_sym_LBRACK_LBRACK, + ACTIONS(2929), 1, + anon_sym_const, + ACTIONS(4172), 1, anon_sym_LBRACE, - ACTIONS(1153), 39, - anon_sym___extension__, - anon_sym_extern, + ACTIONS(4174), 1, + anon_sym_COLON, + STATE(1680), 1, + sym_enumerator_list, + STATE(1967), 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___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, + ACTIONS(2931), 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, @@ -106635,43 +147196,89 @@ 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, - [40949] = 3, + [74641] = 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(4176), 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, + [74714] = 10, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1255), 2, - anon_sym_LBRACK_LBRACK, + ACTIONS(3057), 1, + anon_sym_const, + ACTIONS(4172), 1, anon_sym_LBRACE, - ACTIONS(1253), 39, - anon_sym___extension__, - anon_sym_extern, + 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___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, + ACTIONS(3059), 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, @@ -106681,43 +147288,141 @@ 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, - [40998] = 3, + anon_sym_COLON, + [74765] = 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(4178), 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, + [74838] = 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, + 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(3894), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + 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, + [74909] = 10, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1155), 2, - anon_sym_LBRACK_LBRACK, + ACTIONS(3090), 1, + anon_sym_const, + ACTIONS(4060), 1, anon_sym_LBRACE, - ACTIONS(1153), 39, - anon_sym___extension__, - anon_sym_extern, + STATE(1664), 1, + sym_field_declaration_list, + STATE(1981), 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___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, + ACTIONS(3092), 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, @@ -106727,43 +147432,190 @@ 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, - [41047] = 3, + anon_sym_COLON, + [74960] = 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(4180), 1, + anon_sym_RPAREN, + 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, + [75033] = 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(4182), 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, + [75106] = 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(4184), 1, + anon_sym_RPAREN, + 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, + [75176] = 9, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1155), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(1153), 39, - anon_sym___extension__, - anon_sym_extern, + ACTIONS(3156), 1, + anon_sym_const, + ACTIONS(4186), 1, + anon_sym___aligned, + STATE(1963), 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___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, + ACTIONS(3158), 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, @@ -106773,43 +147625,86 @@ 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, - [41096] = 3, + anon_sym_COLON, + [75224] = 20, + ACTIONS(2610), 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, + [75294] = 9, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1275), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(1273), 39, - anon_sym___extension__, - anon_sym_extern, + 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___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, + 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, @@ -106819,43 +147714,86 @@ 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, - [41145] = 3, + anon_sym_COLON, + [75342] = 20, + ACTIONS(2548), 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, + [75412] = 9, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1199), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(1197), 39, - anon_sym___extension__, - anon_sym_extern, + ACTIONS(3136), 1, + anon_sym_const, + ACTIONS(4190), 1, + anon_sym___aligned, + STATE(1952), 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___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, + ACTIONS(3138), 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, @@ -106865,1334 +147803,1911 @@ 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, - [41194] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2488), 1, + anon_sym_COLON, + [75460] = 20, + ACTIONS(3626), 1, anon_sym_LBRACK, - ACTIONS(2492), 1, - anon_sym_DASH_GT, - ACTIONS(2989), 1, - anon_sym_EQ, - ACTIONS(3166), 1, + ACTIONS(3762), 1, anon_sym_LPAREN2, - ACTIONS(3172), 1, + ACTIONS(4072), 1, + anon_sym_SLASH, + ACTIONS(4074), 1, anon_sym_PIPE_PIPE, - ACTIONS(3174), 1, + ACTIONS(4076), 1, anon_sym_AMP_AMP, - ACTIONS(3176), 1, + ACTIONS(4078), 1, anon_sym_PIPE, - ACTIONS(3178), 1, + ACTIONS(4080), 1, anon_sym_CARET, - ACTIONS(3180), 1, + ACTIONS(4082), 1, anon_sym_AMP, - ACTIONS(3190), 1, + ACTIONS(4094), 1, anon_sym_QMARK, - ACTIONS(3192), 1, - anon_sym_DOT, - STATE(765), 1, + ACTIONS(4192), 1, + anon_sym_RBRACK, + STATE(1245), 1, sym_argument_list, - ACTIONS(2490), 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3628), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3168), 2, + ACTIONS(3630), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4068), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3182), 2, + ACTIONS(4070), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(4084), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3184), 2, + ACTIONS(4086), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3186), 2, + ACTIONS(4088), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3188), 2, + ACTIONS(4090), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3170), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2979), 12, - anon_sym_DOT_DOT_DOT, + [75530] = 20, + ACTIONS(2618), 1, 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, - [41277] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2486), 1, - anon_sym_LPAREN2, - ACTIONS(2488), 1, + ACTIONS(3626), 1, anon_sym_LBRACK, - ACTIONS(3198), 1, + ACTIONS(3762), 1, + anon_sym_LPAREN2, + ACTIONS(4072), 1, anon_sym_SLASH, - ACTIONS(3200), 1, + ACTIONS(4074), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4076), 1, anon_sym_AMP_AMP, - ACTIONS(3202), 1, + ACTIONS(4078), 1, anon_sym_PIPE, - ACTIONS(3204), 1, + ACTIONS(4080), 1, anon_sym_CARET, - ACTIONS(3206), 1, + ACTIONS(4082), 1, anon_sym_AMP, - STATE(765), 1, + ACTIONS(4094), 1, + anon_sym_QMARK, + STATE(1245), 1, sym_argument_list, - ACTIONS(2490), 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3628), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, + ACTIONS(3630), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3194), 2, + ACTIONS(4068), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3196), 2, + ACTIONS(4070), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3208), 2, + ACTIONS(4084), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3210), 2, + ACTIONS(4086), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3212), 2, + ACTIONS(4088), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3214), 2, + ACTIONS(4090), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2548), 15, - anon_sym_COMMA, - anon_sym_RPAREN, + [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, - 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_COLON, + 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, - [41354] = 9, - ACTIONS(3), 1, + ACTIONS(4194), 1, + anon_sym_COLON, + STATE(1245), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(2488), 1, - anon_sym_LBRACK, - ACTIONS(2492), 1, + ACTIONS(3628), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3630), 2, + anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3166), 1, + 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(3192), 1, - anon_sym_DOT, - STATE(765), 1, + 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(2490), 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3628), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2546), 13, + 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_SLASH, 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, - anon_sym_GT, - anon_sym_LT, + 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, - anon_sym_EQ, - ACTIONS(2548), 19, - anon_sym_DOT_DOT_DOT, + 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, + 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(4200), 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, + [75880] = 20, + ACTIONS(2614), 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, - 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, - [41413] = 20, - ACTIONS(3), 1, + STATE(1245), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(2486), 1, + 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, + [75950] = 20, + ACTIONS(3622), 1, anon_sym_LPAREN2, - ACTIONS(2488), 1, + ACTIONS(3626), 1, anon_sym_LBRACK, - ACTIONS(3198), 1, + ACTIONS(3926), 1, anon_sym_SLASH, - ACTIONS(3200), 1, + ACTIONS(3930), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3932), 1, anon_sym_AMP_AMP, - ACTIONS(3202), 1, + ACTIONS(3934), 1, anon_sym_PIPE, - ACTIONS(3204), 1, + ACTIONS(3936), 1, anon_sym_CARET, - ACTIONS(3206), 1, + ACTIONS(3938), 1, anon_sym_AMP, - ACTIONS(3216), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3218), 1, + ACTIONS(3946), 1, anon_sym_QMARK, - STATE(765), 1, + ACTIONS(4202), 1, + anon_sym_COMMA, + STATE(1245), 1, sym_argument_list, - ACTIONS(2490), 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3628), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, + ACTIONS(3630), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3194), 2, + ACTIONS(3922), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3196), 2, + ACTIONS(3924), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3208), 2, + ACTIONS(3928), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3940), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3210), 2, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3212), 2, + ACTIONS(3944), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3214), 2, + [76020] = 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(4204), 1, + anon_sym_RPAREN, + 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(2997), 13, - anon_sym_COMMA, + 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, + [76090] = 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(4206), 1, anon_sym_RPAREN, - 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_COLON, - [41494] = 20, - ACTIONS(3), 1, + STATE(1245), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(2486), 1, + 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, + [76160] = 20, + ACTIONS(3622), 1, anon_sym_LPAREN2, - ACTIONS(2488), 1, + 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(4208), 1, + anon_sym_RPAREN, + 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, + [76230] = 20, + ACTIONS(2596), 1, + anon_sym_RBRACK, + ACTIONS(3626), 1, anon_sym_LBRACK, - ACTIONS(3198), 1, + ACTIONS(3762), 1, + anon_sym_LPAREN2, + ACTIONS(4072), 1, anon_sym_SLASH, - ACTIONS(3200), 1, + ACTIONS(4074), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4076), 1, anon_sym_AMP_AMP, - ACTIONS(3202), 1, + ACTIONS(4078), 1, anon_sym_PIPE, - ACTIONS(3204), 1, + ACTIONS(4080), 1, anon_sym_CARET, - ACTIONS(3206), 1, + ACTIONS(4082), 1, anon_sym_AMP, - ACTIONS(3216), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3218), 1, + ACTIONS(4094), 1, anon_sym_QMARK, - STATE(765), 1, + STATE(1245), 1, sym_argument_list, - ACTIONS(2490), 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3628), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, + ACTIONS(3630), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3194), 2, + ACTIONS(4068), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3196), 2, + ACTIONS(4070), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3208), 2, + ACTIONS(4084), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3210), 2, + ACTIONS(4086), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3212), 2, + ACTIONS(4088), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3214), 2, + ACTIONS(4090), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2979), 13, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, + [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___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - anon_sym_RBRACE, + 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, - [41575] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2486), 1, + [76348] = 20, + ACTIONS(3622), 1, anon_sym_LPAREN2, - ACTIONS(2488), 1, + ACTIONS(3626), 1, anon_sym_LBRACK, - ACTIONS(2546), 1, - anon_sym_PIPE, - ACTIONS(3198), 1, + ACTIONS(3926), 1, anon_sym_SLASH, - ACTIONS(3204), 1, + 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(3206), 1, + ACTIONS(3938), 1, anon_sym_AMP, - STATE(765), 1, + ACTIONS(3946), 1, + anon_sym_QMARK, + ACTIONS(4212), 1, + anon_sym_RPAREN, + STATE(1245), 1, sym_argument_list, - ACTIONS(2490), 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3628), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, + ACTIONS(3630), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3194), 2, + ACTIONS(3922), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3196), 2, + ACTIONS(3924), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3208), 2, + ACTIONS(3928), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3940), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3210), 2, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3212), 2, + ACTIONS(3944), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3214), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2548), 16, - anon_sym_COMMA, - anon_sym_RPAREN, + [76418] = 20, + ACTIONS(2612), 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, - 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_COLON, + ACTIONS(4078), 1, + anon_sym_PIPE, + ACTIONS(4080), 1, + anon_sym_CARET, + ACTIONS(4082), 1, + anon_sym_AMP, + ACTIONS(4094), 1, anon_sym_QMARK, - [41650] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2488), 1, - anon_sym_LBRACK, - ACTIONS(2492), 1, - anon_sym_DASH_GT, - ACTIONS(3166), 1, - anon_sym_LPAREN2, - ACTIONS(3192), 1, - anon_sym_DOT, - STATE(765), 1, + STATE(1245), 1, sym_argument_list, - ACTIONS(2490), 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3628), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3168), 2, + ACTIONS(3630), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4068), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3182), 2, + ACTIONS(4070), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(4084), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3184), 2, + ACTIONS(4086), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3186), 2, + ACTIONS(4088), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3188), 2, + ACTIONS(4090), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3170), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2546), 4, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - ACTIONS(2548), 15, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + [76488] = 20, + ACTIONS(2546), 1, 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, - [41721] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2488), 1, + ACTIONS(3626), 1, anon_sym_LBRACK, - ACTIONS(2492), 1, - anon_sym_DASH_GT, - ACTIONS(2546), 1, - anon_sym_EQ, - ACTIONS(3166), 1, + ACTIONS(3762), 1, anon_sym_LPAREN2, - ACTIONS(3176), 1, + 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(3178), 1, + ACTIONS(4080), 1, anon_sym_CARET, - ACTIONS(3180), 1, + ACTIONS(4082), 1, anon_sym_AMP, - ACTIONS(3192), 1, - anon_sym_DOT, - STATE(765), 1, + ACTIONS(4094), 1, + anon_sym_QMARK, + STATE(1245), 1, sym_argument_list, - ACTIONS(2490), 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3628), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3168), 2, + ACTIONS(3630), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4068), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3182), 2, + ACTIONS(4070), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(4084), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3184), 2, + ACTIONS(4086), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3186), 2, + ACTIONS(4088), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3188), 2, + ACTIONS(4090), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3170), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2548), 15, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + [76558] = 20, + ACTIONS(2550), 1, 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, - [41798] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2488), 1, + ACTIONS(3626), 1, anon_sym_LBRACK, - ACTIONS(2492), 1, - anon_sym_DASH_GT, - ACTIONS(2546), 1, - anon_sym_EQ, - ACTIONS(3166), 1, + ACTIONS(3762), 1, anon_sym_LPAREN2, - ACTIONS(3174), 1, + ACTIONS(4072), 1, + anon_sym_SLASH, + ACTIONS(4074), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4076), 1, anon_sym_AMP_AMP, - ACTIONS(3176), 1, + ACTIONS(4078), 1, anon_sym_PIPE, - ACTIONS(3178), 1, + ACTIONS(4080), 1, anon_sym_CARET, - ACTIONS(3180), 1, + ACTIONS(4082), 1, anon_sym_AMP, - ACTIONS(3192), 1, - anon_sym_DOT, - STATE(765), 1, + ACTIONS(4094), 1, + anon_sym_QMARK, + STATE(1245), 1, sym_argument_list, - ACTIONS(2490), 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3628), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3168), 2, + ACTIONS(3630), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4068), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3182), 2, + ACTIONS(4070), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(4084), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3184), 2, + ACTIONS(4086), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3186), 2, + ACTIONS(4088), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3188), 2, + ACTIONS(4090), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3170), 3, - anon_sym_STAR, + [76628] = 20, + ACTIONS(3622), 1, + anon_sym_LPAREN2, + ACTIONS(3626), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2548), 14, - anon_sym_DOT_DOT_DOT, + ACTIONS(3930), 1, anon_sym_PIPE_PIPE, - anon_sym_RBRACK, + 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, - 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, - [41877] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2488), 1, - anon_sym_LBRACK, - ACTIONS(2492), 1, - anon_sym_DASH_GT, - ACTIONS(3166), 1, - anon_sym_LPAREN2, - ACTIONS(3192), 1, - anon_sym_DOT, - STATE(765), 1, + ACTIONS(4214), 1, + anon_sym_COLON, + STATE(1245), 1, sym_argument_list, - ACTIONS(2490), 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3628), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2502), 13, + 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_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, + ACTIONS(3928), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2504), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + 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, + [76698] = 20, + ACTIONS(2606), 1, 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, - [41936] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2488), 1, + ACTIONS(3626), 1, anon_sym_LBRACK, - ACTIONS(2492), 1, - anon_sym_DASH_GT, - ACTIONS(3166), 1, + ACTIONS(3762), 1, anon_sym_LPAREN2, - ACTIONS(3180), 1, + 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(3192), 1, - anon_sym_DOT, - STATE(765), 1, + ACTIONS(4094), 1, + anon_sym_QMARK, + STATE(1245), 1, sym_argument_list, - ACTIONS(2490), 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3628), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3168), 2, + ACTIONS(3630), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4068), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3182), 2, + ACTIONS(4070), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(4084), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3184), 2, + ACTIONS(4086), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3186), 2, + ACTIONS(4088), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3188), 2, + ACTIONS(4090), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2546), 3, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_EQ, - ACTIONS(3170), 3, + [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_SLASH, - anon_sym_PERCENT, - ACTIONS(2548), 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, - [42009] = 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, + [76816] = 9, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2486), 1, + 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, - ACTIONS(2488), 1, + anon_sym_STAR, + anon_sym___extension__, anon_sym_LBRACK, - ACTIONS(3198), 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, + [76864] = 20, + ACTIONS(2602), 1, + anon_sym_RBRACK, + ACTIONS(3626), 1, + anon_sym_LBRACK, + ACTIONS(3762), 1, + anon_sym_LPAREN2, + ACTIONS(4072), 1, anon_sym_SLASH, - ACTIONS(3202), 1, + ACTIONS(4074), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4076), 1, + anon_sym_AMP_AMP, + ACTIONS(4078), 1, anon_sym_PIPE, - ACTIONS(3204), 1, + ACTIONS(4080), 1, anon_sym_CARET, - ACTIONS(3206), 1, + ACTIONS(4082), 1, anon_sym_AMP, - STATE(765), 1, + ACTIONS(4094), 1, + anon_sym_QMARK, + STATE(1245), 1, sym_argument_list, - ACTIONS(2490), 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3628), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, + ACTIONS(3630), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3194), 2, + ACTIONS(4068), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3196), 2, + ACTIONS(4070), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3208), 2, + ACTIONS(4084), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3210), 2, + ACTIONS(4086), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3212), 2, + ACTIONS(4088), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3214), 2, + ACTIONS(4090), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2548), 16, - anon_sym_COMMA, - anon_sym_RPAREN, + [76934] = 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, - 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_COLON, + ACTIONS(3934), 1, + anon_sym_PIPE, + ACTIONS(3936), 1, + anon_sym_CARET, + ACTIONS(3938), 1, + anon_sym_AMP, + ACTIONS(3946), 1, anon_sym_QMARK, - [42084] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2488), 1, - anon_sym_LBRACK, - ACTIONS(2492), 1, - anon_sym_DASH_GT, - ACTIONS(3166), 1, - anon_sym_LPAREN2, - ACTIONS(3192), 1, - anon_sym_DOT, - STATE(765), 1, + ACTIONS(4220), 1, + anon_sym_RPAREN, + STATE(1245), 1, sym_argument_list, - ACTIONS(2490), 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3628), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3170), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2546), 10, + ACTIONS(3630), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3922), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, + ACTIONS(3924), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3928), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2548), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + 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, - 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, - [42145] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2486), 1, - anon_sym_LPAREN2, - ACTIONS(2488), 1, + [77004] = 20, + ACTIONS(3626), 1, anon_sym_LBRACK, - ACTIONS(3198), 1, + ACTIONS(3762), 1, + anon_sym_LPAREN2, + ACTIONS(4072), 1, anon_sym_SLASH, - STATE(765), 1, + 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(4222), 1, + anon_sym_RBRACK, + STATE(1245), 1, sym_argument_list, - ACTIONS(2490), 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3628), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, + ACTIONS(3630), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2546), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3194), 2, + ACTIONS(4068), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3196), 2, + ACTIONS(4070), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3208), 2, + ACTIONS(4084), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3210), 2, + ACTIONS(4086), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3212), 2, + ACTIONS(4088), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3214), 2, + ACTIONS(4090), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2548), 17, - anon_sym_COMMA, - anon_sym_RPAREN, - 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_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [42216] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2486), 1, + [77074] = 20, + ACTIONS(3622), 1, anon_sym_LPAREN2, - ACTIONS(2488), 1, + ACTIONS(3626), 1, anon_sym_LBRACK, - ACTIONS(2546), 1, - anon_sym_PIPE, - ACTIONS(3198), 1, + ACTIONS(3926), 1, anon_sym_SLASH, - ACTIONS(3206), 1, + 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, - STATE(765), 1, + ACTIONS(3946), 1, + anon_sym_QMARK, + ACTIONS(4224), 1, + anon_sym_COLON, + STATE(1245), 1, sym_argument_list, - ACTIONS(2490), 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3628), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, + ACTIONS(3630), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3194), 2, + ACTIONS(3922), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3196), 2, + ACTIONS(3924), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3208), 2, + ACTIONS(3928), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3940), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3210), 2, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3212), 2, + ACTIONS(3944), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3214), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2548), 17, - anon_sym_COMMA, - anon_sym_RPAREN, + [77144] = 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, - 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_COLON, + ACTIONS(4082), 1, + anon_sym_AMP, + ACTIONS(4094), 1, anon_sym_QMARK, - [42289] = 17, - ACTIONS(3), 1, + ACTIONS(4226), 1, + anon_sym_RBRACK, + STATE(1245), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(2488), 1, - anon_sym_LBRACK, - ACTIONS(2492), 1, + ACTIONS(3628), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3630), 2, + anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3166), 1, + 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, + [77214] = 20, + ACTIONS(3622), 1, anon_sym_LPAREN2, - ACTIONS(3178), 1, + 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(3180), 1, + ACTIONS(3938), 1, anon_sym_AMP, - ACTIONS(3192), 1, - anon_sym_DOT, - STATE(765), 1, + ACTIONS(3946), 1, + anon_sym_QMARK, + ACTIONS(4228), 1, + anon_sym_RPAREN, + STATE(1245), 1, sym_argument_list, - ACTIONS(2490), 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3628), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2546), 2, - anon_sym_PIPE, - anon_sym_EQ, - ACTIONS(3168), 2, + ACTIONS(3630), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3922), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3182), 2, + 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(3184), 2, + ACTIONS(3942), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3186), 2, + ACTIONS(3944), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3188), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3170), 3, - anon_sym_STAR, + [77284] = 20, + ACTIONS(2608), 1, + anon_sym_RBRACK, + ACTIONS(3626), 1, + anon_sym_LBRACK, + ACTIONS(3762), 1, + anon_sym_LPAREN2, + ACTIONS(4072), 1, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2548), 15, - anon_sym_DOT_DOT_DOT, + ACTIONS(4074), 1, anon_sym_PIPE_PIPE, + ACTIONS(4076), 1, anon_sym_AMP_AMP, - anon_sym_RBRACK, + ACTIONS(4078), 1, + anon_sym_PIPE, + ACTIONS(4080), 1, + anon_sym_CARET, + ACTIONS(4082), 1, + anon_sym_AMP, + ACTIONS(4094), 1, 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, - [42364] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2488), 1, - anon_sym_LBRACK, - ACTIONS(2492), 1, - anon_sym_DASH_GT, - ACTIONS(3166), 1, - anon_sym_LPAREN2, - ACTIONS(3192), 1, - anon_sym_DOT, - STATE(765), 1, + STATE(1245), 1, sym_argument_list, - ACTIONS(2490), 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3628), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3168), 2, + ACTIONS(3630), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4068), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3184), 2, + 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(3186), 2, + ACTIONS(4088), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3188), 2, + ACTIONS(4090), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3170), 3, - anon_sym_STAR, + [77354] = 20, + ACTIONS(2600), 1, + anon_sym_RBRACK, + ACTIONS(3626), 1, + anon_sym_LBRACK, + ACTIONS(3762), 1, + anon_sym_LPAREN2, + ACTIONS(4072), 1, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2546), 4, + 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, - anon_sym_EQ, - ACTIONS(2548), 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, + ACTIONS(4094), 1, 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, - [42433] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2486), 1, - anon_sym_LPAREN2, - ACTIONS(2488), 1, - anon_sym_LBRACK, - ACTIONS(3198), 1, - anon_sym_SLASH, - STATE(765), 1, + STATE(1245), 1, sym_argument_list, - ACTIONS(2490), 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3628), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, + ACTIONS(3630), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2546), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3194), 2, + ACTIONS(4068), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3196), 2, + ACTIONS(4070), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3210), 2, + ACTIONS(4084), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4086), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3212), 2, + ACTIONS(4088), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3214), 2, + ACTIONS(4090), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2548), 19, - anon_sym_COMMA, - anon_sym_RPAREN, + [77424] = 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, - anon_sym_EQ_EQ, - anon_sym_BANG_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_COLON, + ACTIONS(3938), 1, + anon_sym_AMP, + ACTIONS(3946), 1, anon_sym_QMARK, - [42502] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2488), 1, - anon_sym_LBRACK, - ACTIONS(2492), 1, - anon_sym_DASH_GT, - ACTIONS(3166), 1, - anon_sym_LPAREN2, - ACTIONS(3192), 1, - anon_sym_DOT, - STATE(765), 1, + ACTIONS(4230), 1, + anon_sym_COMMA, + STATE(1245), 1, sym_argument_list, - ACTIONS(2490), 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3628), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3168), 2, + ACTIONS(3630), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3922), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3170), 3, + ACTIONS(3924), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2546), 8, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, + ACTIONS(3928), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2548), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + 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, + [77494] = 20, + ACTIONS(2604), 1, 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, - [42565] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2488), 1, + ACTIONS(3626), 1, anon_sym_LBRACK, - ACTIONS(2492), 1, - anon_sym_DASH_GT, - ACTIONS(3166), 1, + ACTIONS(3762), 1, anon_sym_LPAREN2, - ACTIONS(3192), 1, - anon_sym_DOT, - STATE(765), 1, + 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(2490), 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3628), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3168), 2, + ACTIONS(3630), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4068), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3188), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3170), 3, + ACTIONS(4070), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2546), 6, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_EQ, - ACTIONS(2548), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + 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, + [77564] = 20, + ACTIONS(2598), 1, 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, - [42630] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2488), 1, + ACTIONS(3626), 1, anon_sym_LBRACK, - ACTIONS(2492), 1, - anon_sym_DASH_GT, - ACTIONS(2995), 1, - anon_sym_EQ, - ACTIONS(3166), 1, + ACTIONS(3762), 1, anon_sym_LPAREN2, - ACTIONS(3172), 1, + ACTIONS(4072), 1, + anon_sym_SLASH, + ACTIONS(4074), 1, anon_sym_PIPE_PIPE, - ACTIONS(3174), 1, + ACTIONS(4076), 1, anon_sym_AMP_AMP, - ACTIONS(3176), 1, + ACTIONS(4078), 1, anon_sym_PIPE, - ACTIONS(3178), 1, + ACTIONS(4080), 1, anon_sym_CARET, - ACTIONS(3180), 1, + ACTIONS(4082), 1, anon_sym_AMP, - ACTIONS(3190), 1, + ACTIONS(4094), 1, anon_sym_QMARK, - ACTIONS(3192), 1, - anon_sym_DOT, - STATE(765), 1, + STATE(1245), 1, sym_argument_list, - ACTIONS(2490), 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3628), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3168), 2, + ACTIONS(3630), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4068), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3182), 2, + ACTIONS(4070), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(4084), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3184), 2, + ACTIONS(4086), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3186), 2, + ACTIONS(4088), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3188), 2, + ACTIONS(4090), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3170), 3, - anon_sym_STAR, + [77634] = 20, + ACTIONS(3626), 1, + anon_sym_LBRACK, + ACTIONS(3762), 1, + anon_sym_LPAREN2, + ACTIONS(4072), 1, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2993), 12, - anon_sym_DOT_DOT_DOT, + 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(4232), 1, 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, - [42713] = 8, - ACTIONS(3), 1, + STATE(1245), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(2488), 1, - anon_sym_LBRACK, - ACTIONS(2492), 1, - anon_sym_DASH_GT, - ACTIONS(3166), 1, - anon_sym_LPAREN2, - ACTIONS(3192), 1, + ACTIONS(3628), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3630), 2, anon_sym_DOT, - STATE(765), 1, - sym_argument_list, - ACTIONS(2518), 13, + anon_sym_DASH_GT, + ACTIONS(4068), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(4070), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + 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, - anon_sym_EQ, - ACTIONS(2520), 21, - anon_sym_DOT_DOT_DOT, + [77704] = 19, + 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, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_RBRACK, + ACTIONS(3934), 1, + anon_sym_PIPE, + ACTIONS(3936), 1, + anon_sym_CARET, + ACTIONS(3938), 1, + anon_sym_AMP, + ACTIONS(3946), 1, 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, - [42770] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2488), 1, - anon_sym_LBRACK, - ACTIONS(2492), 1, - anon_sym_DASH_GT, - ACTIONS(3166), 1, - anon_sym_LPAREN2, - ACTIONS(3192), 1, - anon_sym_DOT, - STATE(765), 1, + STATE(1245), 1, sym_argument_list, - ACTIONS(2490), 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3628), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2510), 13, + 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_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, + ACTIONS(3928), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2512), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + 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, - 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, - [42829] = 12, + [77771] = 8, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2486), 1, + 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, - ACTIONS(2488), 1, + anon_sym_STAR, + anon_sym___extension__, anon_sym_LBRACK, - ACTIONS(3198), 1, - anon_sym_SLASH, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3194), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3196), 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, + anon_sym_COLON, + [77816] = 8, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3319), 1, + anon_sym_const, + STATE(2007), 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(3321), 16, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3214), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2546), 4, + 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, + [77861] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3281), 1, + anon_sym_const, + ACTIONS(3283), 25, + 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, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_COLON, + anon_sym___aligned, + [77898] = 8, + ACTIONS(3), 1, + 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, + 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, + [77943] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2966), 5, + 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_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, + [77980] = 15, + 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(1932), 1, + sym_ms_call_modifier, + STATE(2032), 1, + sym_macro_modifier, + STATE(2280), 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, + ACTIONS(2113), 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, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(1962), 7, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2548), 21, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1956), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, @@ -108200,110 +149715,258 @@ 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_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, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2962), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK, + ACTIONS(2960), 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, + 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, + [78113] = 11, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2929), 1, + anon_sym_const, + ACTIONS(4172), 1, + anon_sym_LBRACE, + ACTIONS(4234), 1, + anon_sym_COLON, + STATE(1680), 1, + sym_enumerator_list, + STATE(1967), 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___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [42894] = 11, + ACTIONS(2931), 13, + 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, + [78164] = 8, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2486), 1, + ACTIONS(3355), 1, + anon_sym_const, + STATE(2012), 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(3357), 16, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2488), 1, + anon_sym_STAR, + anon_sym___extension__, anon_sym_LBRACK, - ACTIONS(3198), 1, - anon_sym_SLASH, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3194), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3196), 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, + anon_sym_COLON, + [78209] = 13, + ACTIONS(2278), 1, + anon_sym_LPAREN2, + ACTIONS(2280), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2546), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2548), 23, + ACTIONS(3658), 1, + anon_sym_LBRACK, + ACTIONS(3848), 1, + anon_sym_const, + STATE(1990), 1, + sym_alignas_qualifier, + STATE(2339), 1, + sym__abstract_declarator, + STATE(2375), 1, + sym_parameter_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3850), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1865), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3852), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, + 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___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [78264] = 8, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3291), 1, + anon_sym_const, + STATE(1983), 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___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [42957] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2486), 1, + ACTIONS(3293), 16, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2488), 1, + anon_sym_STAR, + anon_sym___extension__, anon_sym_LBRACK, - ACTIONS(3198), 1, - anon_sym_SLASH, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3196), 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, + anon_sym_COLON, + [78309] = 13, + ACTIONS(2278), 1, + anon_sym_LPAREN2, + ACTIONS(2280), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2546), 6, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2548), 23, + ACTIONS(3658), 1, + anon_sym_LBRACK, + ACTIONS(3848), 1, + anon_sym_const, + STATE(1990), 1, + sym_alignas_qualifier, + STATE(2325), 1, + sym__abstract_declarator, + STATE(2375), 1, + sym_parameter_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3850), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1865), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(4237), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, + 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___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [78364] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3315), 1, + anon_sym_const, + ACTIONS(3317), 25, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym___extension__, anon_sym___attribute__, anon_sym___scanf, anon_sym___printf, @@ -108312,283 +149975,294 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [43018] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(2492), 1, - anon_sym_DASH_GT, - ACTIONS(2999), 1, - anon_sym_EQ, - ACTIONS(3166), 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, + anon_sym___aligned, + [78401] = 13, + ACTIONS(2278), 1, anon_sym_LPAREN2, - ACTIONS(3172), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3174), 1, - anon_sym_AMP_AMP, - ACTIONS(3176), 1, - anon_sym_PIPE, - ACTIONS(3178), 1, - anon_sym_CARET, - ACTIONS(3180), 1, - anon_sym_AMP, - ACTIONS(3190), 1, - anon_sym_QMARK, - ACTIONS(3192), 1, - anon_sym_DOT, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3168), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3182), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3184), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3186), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3188), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3170), 3, + ACTIONS(2280), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2997), 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, - [43101] = 20, - ACTIONS(3), 1, + ACTIONS(3658), 1, + anon_sym_LBRACK, + ACTIONS(3848), 1, + anon_sym_const, + STATE(1990), 1, + sym_alignas_qualifier, + STATE(2314), 1, + sym__abstract_declarator, + STATE(2375), 1, + sym_parameter_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(2486), 1, + ACTIONS(3850), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1679), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(4239), 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, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [78456] = 13, + ACTIONS(2278), 1, anon_sym_LPAREN2, - ACTIONS(2488), 1, - anon_sym_LBRACK, - ACTIONS(3198), 1, - anon_sym_SLASH, - ACTIONS(3200), 1, - anon_sym_AMP_AMP, - ACTIONS(3202), 1, - anon_sym_PIPE, - ACTIONS(3204), 1, - anon_sym_CARET, - ACTIONS(3206), 1, - anon_sym_AMP, - ACTIONS(3216), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3218), 1, - anon_sym_QMARK, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3194), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3196), 2, + ACTIONS(2280), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3208), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3210), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3212), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3214), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2993), 13, + ACTIONS(3658), 1, + 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_alignas, + anon_sym__Alignas, + STATE(1865), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(4241), 3, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_SEMI, + 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___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [78511] = 8, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3342), 1, + anon_sym_const, + STATE(2005), 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___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - anon_sym_RBRACE, - anon_sym_COLON, - [43182] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2488), 1, + ACTIONS(3344), 16, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym___extension__, anon_sym_LBRACK, - ACTIONS(2492), 1, - anon_sym_DASH_GT, - ACTIONS(3166), 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, + [78556] = 13, + ACTIONS(2278), 1, anon_sym_LPAREN2, - ACTIONS(3192), 1, - anon_sym_DOT, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2506), 13, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(2280), 1, 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(2508), 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, - [43241] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2488), 1, + ACTIONS(3658), 1, anon_sym_LBRACK, - ACTIONS(2492), 1, - anon_sym_DASH_GT, - ACTIONS(3166), 1, + ACTIONS(3848), 1, + anon_sym_const, + STATE(1990), 1, + sym_alignas_qualifier, + STATE(2355), 1, + sym__abstract_declarator, + STATE(2375), 1, + sym_parameter_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3850), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1676), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(4243), 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, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [78611] = 13, + ACTIONS(2278), 1, anon_sym_LPAREN2, - ACTIONS(3192), 1, - anon_sym_DOT, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2482), 13, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(2280), 1, 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(2484), 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, - [43300] = 18, + ACTIONS(3658), 1, + anon_sym_LBRACK, + ACTIONS(3848), 1, + anon_sym_const, + STATE(1990), 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, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1865), 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, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [78666] = 15, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1835), 1, + ACTIONS(2051), 1, anon_sym___based, - ACTIONS(3220), 1, + ACTIONS(3790), 1, sym_identifier, - ACTIONS(3222), 1, + ACTIONS(3792), 1, anon_sym_LPAREN2, - ACTIONS(3224), 1, + ACTIONS(3794), 1, anon_sym_STAR, - ACTIONS(3228), 1, + ACTIONS(3798), 1, sym_primitive_type, - STATE(799), 1, - sym_alignas_qualifier, - STATE(1149), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1412), 1, + STATE(1905), 1, + sym_ms_call_modifier, + STATE(2028), 1, + sym_macro_modifier, + STATE(2278), 1, sym__type_declarator, - STATE(2043), 1, + STATE(2971), 1, sym_ms_based_modifier, - ACTIONS(55), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(3142), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1060), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1137), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3140), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(3226), 4, + 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(1443), 5, + STATE(2451), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - ACTIONS(53), 9, - anon_sym___extension__, + 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, + anon_sym___extension__, + anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -108596,98 +150270,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [43376] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2498), 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(2500), 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, - [43422] = 18, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_COLON, + [78770] = 13, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1835), 1, + ACTIONS(2051), 1, anon_sym___based, - ACTIONS(3220), 1, + ACTIONS(3876), 1, sym_identifier, - ACTIONS(3222), 1, + ACTIONS(3878), 1, anon_sym_LPAREN2, - ACTIONS(3224), 1, + ACTIONS(3880), 1, anon_sym_STAR, - ACTIONS(3228), 1, - sym_primitive_type, - STATE(799), 1, + STATE(1671), 1, sym_alignas_qualifier, - STATE(1149), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1403), 1, - sym__type_declarator, - STATE(2043), 1, + STATE(1996), 1, + sym__field_declarator, + STATE(3201), 1, sym_ms_based_modifier, - ACTIONS(55), 2, + ACTIONS(1999), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(3142), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1121), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1142), 2, + STATE(1549), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3140), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(3226), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1443), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(53), 9, + 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, @@ -108697,55 +150314,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [43498] = 18, + [78824] = 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(651), 1, + sym__old_style_function_declarator, + STATE(2016), 1, + sym_ms_call_modifier, + STATE(2105), 1, + sym_macro_modifier, + STATE(2201), 1, + sym__declarator, + STATE(2209), 1, + sym_function_declarator, + STATE(2299), 1, + sym__declaration_declarator, + STATE(2467), 1, + sym__function_declaration_declarator, + STATE(2654), 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, + [78888] = 13, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1835), 1, + ACTIONS(2051), 1, anon_sym___based, - ACTIONS(3220), 1, + ACTIONS(3882), 1, sym_identifier, - ACTIONS(3222), 1, + ACTIONS(3884), 1, anon_sym_LPAREN2, - ACTIONS(3224), 1, + ACTIONS(3886), 1, anon_sym_STAR, - ACTIONS(3228), 1, - sym_primitive_type, - STATE(799), 1, + STATE(1671), 1, sym_alignas_qualifier, - STATE(1149), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1403), 1, - sym__type_declarator, - STATE(2043), 1, + STATE(2276), 1, + sym__field_declarator, + STATE(3061), 1, sym_ms_based_modifier, - ACTIONS(55), 2, + ACTIONS(1999), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(3142), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1062), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1142), 2, + STATE(1549), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3140), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(3226), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1443), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(53), 9, + 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, @@ -108755,55 +150401,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [43574] = 18, + [78942] = 13, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1835), 1, + ACTIONS(2051), 1, anon_sym___based, - ACTIONS(3220), 1, + ACTIONS(3876), 1, sym_identifier, - ACTIONS(3222), 1, + ACTIONS(3878), 1, anon_sym_LPAREN2, - ACTIONS(3224), 1, + ACTIONS(3880), 1, anon_sym_STAR, - ACTIONS(3228), 1, - sym_primitive_type, - STATE(799), 1, + STATE(1671), 1, sym_alignas_qualifier, - STATE(1149), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1399), 1, - sym__type_declarator, - STATE(2043), 1, + STATE(2008), 1, + sym__field_declarator, + STATE(3201), 1, sym_ms_based_modifier, - ACTIONS(55), 2, + ACTIONS(1999), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(3142), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1121), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1140), 2, + STATE(1549), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3140), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(3226), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1443), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(53), 9, + 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, @@ -108813,189 +150442,261 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [43650] = 3, + [78996] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2526), 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(2528), 24, - anon_sym_DOT_DOT_DOT, + ACTIONS(3496), 1, + anon_sym_const, + ACTIONS(3498), 24, + 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_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_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, - [43696] = 3, - ACTIONS(3), 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, + [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, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(2534), 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(2536), 24, - anon_sym_DOT_DOT_DOT, + 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, + 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_STAR, + anon_sym___extension__, 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, - [43742] = 3, + 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, + [79076] = 18, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2538), 14, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(2047), 1, + anon_sym_LPAREN2, + ACTIONS(2049), 1, 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(2540), 24, - anon_sym_DOT_DOT_DOT, + 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, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2047), 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_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, - [43788] = 5, + ACTIONS(2049), 1, + anon_sym_STAR, + ACTIONS(2051), 1, + anon_sym___based, + ACTIONS(3650), 1, + sym_identifier, + STATE(1671), 1, + sym_alignas_qualifier, + STATE(2075), 1, + sym__declarator, + STATE(3337), 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, + 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, + [79194] = 13, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3113), 1, - anon_sym_EQ, - ACTIONS(3115), 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(1756), 13, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(2051), 1, + anon_sym___based, + ACTIONS(3876), 1, + sym_identifier, + ACTIONS(3878), 1, + anon_sym_LPAREN2, + ACTIONS(3880), 1, 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(1750), 14, - anon_sym_DOT_DOT_DOT, + STATE(1671), 1, + sym_alignas_qualifier, + STATE(2009), 1, + sym__field_declarator, + STATE(3201), 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(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, + [79248] = 18, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2047), 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_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [43838] = 3, + ACTIONS(2049), 1, + anon_sym_STAR, + ACTIONS(2051), 1, + anon_sym___based, + ACTIONS(4245), 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, + 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, + 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, + [79312] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3230), 18, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, + ACTIONS(3281), 1, + anon_sym_const, + ACTIONS(3283), 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, @@ -109005,39 +150706,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___noreturn, anon_sym___cold, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, - ACTIONS(3232), 19, + 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, + [79348] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3315), 1, + anon_sym_const, + ACTIONS(3317), 24, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - 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, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - [43883] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3234), 18, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, + anon_sym___extension__, anon_sym___attribute__, anon_sym___scanf, anon_sym___printf, @@ -109047,84 +150738,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___noreturn, anon_sym___cold, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, + 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, + [79384] = 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(3236), 19, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3884), 1, anon_sym_LPAREN2, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(3886), 1, 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_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - [43928] = 6, + 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, + 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(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1765), 1, - anon_sym_EQ, - ACTIONS(3238), 1, - anon_sym_SEMI, - ACTIONS(1769), 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(1756), 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(1750), 13, + ACTIONS(3480), 1, + anon_sym_const, + ACTIONS(3482), 24, + 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_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [43979] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3240), 18, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, + anon_sym_STAR, + anon_sym___extension__, anon_sym___attribute__, anon_sym___scanf, anon_sym___printf, @@ -109134,39 +150811,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___noreturn, anon_sym___cold, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, + 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, + [79474] = 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, - ACTIONS(3242), 19, - anon_sym_COMMA, - anon_sym_RPAREN, + 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, + STATE(1549), 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, + 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, + [79528] = 18, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2047), 1, anon_sym_LPAREN2, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(2049), 1, 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_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - [44024] = 3, + ACTIONS(2051), 1, + anon_sym___based, + ACTIONS(4245), 1, + sym_identifier, + STATE(625), 1, + sym__old_style_function_declarator, + STATE(2021), 1, + sym_ms_call_modifier, + STATE(2112), 1, + sym_macro_modifier, + STATE(2209), 1, + sym_function_declarator, + STATE(2212), 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, + [79592] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3244), 18, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, + ACTIONS(3397), 1, + anon_sym_const, + ACTIONS(3399), 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, @@ -109176,856 +150930,1086 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___noreturn, anon_sym___cold, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, + 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(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, - ACTIONS(3246), 19, + STATE(1671), 1, + sym_alignas_qualifier, + STATE(2085), 1, + sym__declarator, + STATE(3337), 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, + 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(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + STATE(1703), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(4256), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2857), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - 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, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - [44069] = 3, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(2855), 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, + [79722] = 13, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1225), 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, + ACTIONS(2051), 1, + anon_sym___based, + ACTIONS(3882), 1, sym_identifier, - ACTIONS(1227), 19, + ACTIONS(3884), 1, anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, + ACTIONS(3886), 1, 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, - [44113] = 3, + 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, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1161), 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(1163), 19, + ACTIONS(2047), 1, anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, + ACTIONS(2049), 1, 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, - [44157] = 3, + ACTIONS(2051), 1, + anon_sym___based, + ACTIONS(4245), 1, + sym_identifier, + STATE(2015), 1, + sym_ms_call_modifier, + STATE(2097), 1, + sym_macro_modifier, + STATE(2209), 1, + sym_function_declarator, + STATE(2227), 1, + sym__declarator, + STATE(2366), 1, + sym__declaration_declarator, + STATE(2467), 1, + sym__function_declaration_declarator, + STATE(2482), 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, + [79837] = 17, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1161), 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(1163), 19, + ACTIONS(2047), 1, anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, + ACTIONS(2049), 1, 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, - [44201] = 3, + ACTIONS(2051), 1, + anon_sym___based, + ACTIONS(4245), 1, + sym_identifier, + STATE(2037), 1, + sym_ms_call_modifier, + STATE(2106), 1, + sym_macro_modifier, + STATE(2209), 1, + sym_function_declarator, + STATE(2281), 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, + 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, + [79898] = 7, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1197), 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, + STATE(1703), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2855), 2, + sym_primitive_type, sym_identifier, - ACTIONS(1199), 19, + ACTIONS(4256), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2876), 6, + anon_sym_COMMA, + anon_sym_RPAREN, 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, - [44245] = 3, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(2873), 11, + 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, + anon_sym_alignas, + anon_sym__Alignas, + [79939] = 17, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1193), 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(1195), 19, + ACTIONS(2047), 1, anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, + ACTIONS(2049), 1, 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, - [44289] = 3, + ACTIONS(2051), 1, + anon_sym___based, + ACTIONS(4245), 1, + sym_identifier, + STATE(2017), 1, + sym_ms_call_modifier, + STATE(2098), 1, + sym_macro_modifier, + STATE(2209), 1, + sym_function_declarator, + STATE(2281), 1, + sym__declarator, + STATE(2366), 1, + sym__declaration_declarator, + STATE(2467), 1, + sym__function_declaration_declarator, + STATE(2482), 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, + [80000] = 17, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1197), 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(1199), 19, + ACTIONS(2047), 1, anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, + ACTIONS(2049), 1, 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, - [44333] = 3, + ACTIONS(2051), 1, + anon_sym___based, + ACTIONS(4245), 1, + sym_identifier, + STATE(2016), 1, + sym_ms_call_modifier, + STATE(2105), 1, + sym_macro_modifier, + STATE(2209), 1, + sym_function_declarator, + STATE(2220), 1, + sym__declarator, + STATE(2299), 1, + sym__declaration_declarator, + STATE(2467), 1, + sym__function_declaration_declarator, + STATE(2654), 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, + [80061] = 17, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1165), 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(1167), 19, + ACTIONS(2047), 1, anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, + ACTIONS(2049), 1, 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, - [44377] = 3, + ACTIONS(2051), 1, + anon_sym___based, + ACTIONS(4245), 1, + sym_identifier, + STATE(2033), 1, + sym_ms_call_modifier, + STATE(2107), 1, + sym_macro_modifier, + STATE(2209), 1, + sym_function_declarator, + STATE(2281), 1, + sym__declarator, + STATE(2299), 1, + sym__declaration_declarator, + STATE(2467), 1, + sym__function_declaration_declarator, + STATE(2654), 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, + [80122] = 17, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1153), 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(1155), 19, + ACTIONS(2047), 1, anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, + ACTIONS(2049), 1, 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, - [44421] = 3, + ACTIONS(2051), 1, + anon_sym___based, + ACTIONS(4245), 1, + 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(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1253), 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, + ACTIONS(4259), 1, sym_identifier, - ACTIONS(1255), 19, + ACTIONS(4263), 1, + sym_primitive_type, + STATE(1707), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(4261), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2865), 6, + anon_sym_COMMA, + anon_sym_RPAREN, 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, - [44465] = 3, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(2867), 11, + 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, + anon_sym_alignas, + anon_sym__Alignas, + [80226] = 17, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1153), 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, + ACTIONS(2047), 1, + anon_sym_LPAREN2, + ACTIONS(2049), 1, + anon_sym_STAR, + ACTIONS(2051), 1, + anon_sym___based, + ACTIONS(4245), 1, sym_identifier, - ACTIONS(1155), 19, + STATE(2021), 1, + sym_ms_call_modifier, + STATE(2112), 1, + sym_macro_modifier, + STATE(2209), 1, + sym_function_declarator, + STATE(2216), 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, + [80287] = 17, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2047), 1, anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, + ACTIONS(2049), 1, 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, - [44509] = 3, + ACTIONS(2051), 1, + anon_sym___based, + ACTIONS(4245), 1, + sym_identifier, + STATE(2027), 1, + sym_ms_call_modifier, + STATE(2088), 1, + sym_macro_modifier, + STATE(2209), 1, + sym_function_declarator, + STATE(2281), 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, + 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, + [80348] = 17, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1153), 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, + ACTIONS(2047), 1, + anon_sym_LPAREN2, + ACTIONS(2049), 1, + anon_sym_STAR, + ACTIONS(2051), 1, + anon_sym___based, + ACTIONS(4245), 1, sym_identifier, - ACTIONS(1155), 19, + 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, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2047), 1, anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, + ACTIONS(2049), 1, 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, - [44553] = 3, + ACTIONS(2051), 1, + anon_sym___based, + ACTIONS(4245), 1, + sym_identifier, + STATE(2014), 1, + sym_ms_call_modifier, + STATE(2104), 1, + sym_macro_modifier, + STATE(2209), 1, + sym_function_declarator, + STATE(2281), 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, + 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, + [80470] = 17, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1165), 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(1167), 19, + ACTIONS(2047), 1, anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, + ACTIONS(2049), 1, 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, - [44597] = 3, + ACTIONS(2051), 1, + anon_sym___based, + ACTIONS(4245), 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(1273), 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(1275), 19, + ACTIONS(2047), 1, anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, + ACTIONS(2049), 1, 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, - [44641] = 3, + 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, + 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, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1225), 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(1227), 19, + STATE(1671), 1, + sym_alignas_qualifier, + ACTIONS(1999), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(4267), 2, 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, - [44685] = 20, + 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, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [80634] = 14, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2486), 1, - anon_sym_LPAREN2, - ACTIONS(2488), 1, + ACTIONS(2428), 1, + sym_identifier, + ACTIONS(2442), 1, anon_sym_LBRACK, - ACTIONS(3198), 1, - anon_sym_SLASH, - ACTIONS(3200), 1, - anon_sym_AMP_AMP, - ACTIONS(3202), 1, - anon_sym_PIPE, - ACTIONS(3204), 1, - anon_sym_CARET, - ACTIONS(3206), 1, - anon_sym_AMP, - ACTIONS(3216), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3218), 1, - anon_sym_QMARK, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3194), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3196), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3208), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3210), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3212), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3214), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3248), 10, - anon_sym_COMMA, - anon_sym_SEMI, + STATE(1749), 1, + sym_gnu_asm_expression, + STATE(1956), 1, + sym_attribute_specifier, + STATE(2044), 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(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___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - [44763] = 3, + [80688] = 11, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1161), 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, + ACTIONS(2428), 1, + sym_identifier, + ACTIONS(2442), 1, + 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__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - ACTIONS(1163), 19, + 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(2432), 7, + anon_sym_COMMA, + anon_sym_RPAREN, 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, - [44807] = 3, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + [80736] = 8, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1165), 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, + STATE(1671), 1, + sym_alignas_qualifier, + ACTIONS(1999), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(4273), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + STATE(1719), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(4271), 7, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, sym_identifier, - ACTIONS(1167), 19, + 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, + [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_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, - [44851] = 3, + STATE(1549), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(4275), 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, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [80820] = 8, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1197), 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, + STATE(1671), 1, + sym_alignas_qualifier, + ACTIONS(1999), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(4281), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + STATE(1723), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(4279), 7, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, sym_identifier, - ACTIONS(1199), 19, + 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, + [80862] = 3, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(4136), 2, + sym_ms_restrict_modifier, + anon_sym_const, + ACTIONS(4138), 20, + anon_sym_COMMA, + anon_sym_RPAREN, 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, - [44895] = 3, + 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, + [80893] = 5, + ACTIONS(2917), 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_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2919), 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, + [80928] = 9, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1193), 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, + 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(4287), 3, + anon_sym_LBRACK, anon_sym_asm, anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - ACTIONS(1195), 19, + 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(4285), 7, + anon_sym_COMMA, + anon_sym_RPAREN, 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, - [44939] = 10, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + [80971] = 15, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2948), 1, - anon_sym_LBRACE, - ACTIONS(3250), 1, - anon_sym_COLON, - STATE(841), 1, + ACTIONS(2051), 1, + anon_sym___based, + ACTIONS(3876), 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, - STATE(1106), 1, - sym_enumerator_list, - ACTIONS(33), 2, + ACTIONS(4291), 2, anon_sym___attribute__, anon_sym___must_hold, - ACTIONS(35), 2, + ACTIONS(4293), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(37), 4, + ACTIONS(4295), 4, anon_sym___read_mostly, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(2937), 5, - anon_sym_COMMA, - anon_sym_RPAREN, + 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(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3104), 3, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_LBRACK, - ACTIONS(2935), 18, + anon_sym_LBRACE, + ACTIONS(3102), 19, anon_sym___extension__, + anon_sym___declspec, anon_sym___based, anon_sym_signed, anon_sym_unsigned, @@ -110043,41 +152027,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [44996] = 9, + [81059] = 9, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2948), 1, - anon_sym_LBRACE, - STATE(869), 1, - sym_attribute_specifier, - STATE(1116), 1, - sym_enumerator_list, - ACTIONS(33), 2, + ACTIONS(4297), 1, + sym_identifier, + ACTIONS(4302), 2, anon_sym___attribute__, anon_sym___must_hold, - ACTIONS(35), 2, + ACTIONS(4305), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(37), 4, + 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(3003), 6, + 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, + 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_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2889), 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, - ACTIONS(3001), 18, - anon_sym___extension__, - anon_sym___based, + [81137] = 5, + ACTIONS(2855), 1, + anon_sym_const, + STATE(1732), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(4313), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_const, + ACTIONS(2857), 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, @@ -110087,161 +152120,173 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [45051] = 17, + anon_sym_COLON, + [81172] = 5, + ACTIONS(4318), 1, + anon_sym_LPAREN2, + STATE(1848), 1, + sym_preproc_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(4320), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4316), 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, + [81207] = 15, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1835), 1, + ACTIONS(2051), 1, anon_sym___based, - ACTIONS(1873), 1, + ACTIONS(3876), 1, + sym_identifier, + ACTIONS(3878), 1, anon_sym_LPAREN2, - ACTIONS(1875), 1, + ACTIONS(3880), 1, anon_sym_STAR, - ACTIONS(3136), 1, + 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(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, - ACTIONS(3144), 1, - anon_sym_LBRACK, - STATE(799), 1, - sym_alignas_qualifier, - STATE(1465), 1, + 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(1657), 1, - sym__abstract_declarator, - STATE(1691), 1, - sym_parameter_list, - STATE(2174), 1, + STATE(3337), 1, sym_ms_based_modifier, - ACTIONS(55), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(3138), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1141), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(1717), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1569), 5, + 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(53), 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, - [45121] = 17, + ACTIONS(2113), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [81315] = 14, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1835), 1, - anon_sym___based, - ACTIONS(1873), 1, + ACTIONS(2047), 1, anon_sym_LPAREN2, - ACTIONS(1875), 1, + ACTIONS(2049), 1, anon_sym_STAR, - ACTIONS(3136), 1, + ACTIONS(2051), 1, + anon_sym___based, + ACTIONS(3650), 1, sym_identifier, - ACTIONS(3144), 1, - anon_sym_LBRACK, - STATE(799), 1, - sym_alignas_qualifier, - STATE(1473), 1, + STATE(628), 1, + sym__old_style_function_declarator, + STATE(2058), 1, + sym_ms_call_modifier, + STATE(2183), 1, + sym_macro_modifier, + STATE(2225), 1, sym__declarator, - STATE(1672), 1, - sym__abstract_declarator, - STATE(1691), 1, - sym_parameter_list, - STATE(2174), 1, + STATE(3337), 1, sym_ms_based_modifier, - ACTIONS(55), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(3252), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1141), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(1717), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1569), 5, + 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(53), 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, - [45191] = 18, + ACTIONS(2113), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [81368] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_const, - ACTIONS(2010), 1, + ACTIONS(3037), 3, anon_sym_LPAREN2, - ACTIONS(2012), 1, anon_sym_STAR, - ACTIONS(3140), 1, - sym_ms_restrict_modifier, - ACTIONS(3144), 1, - anon_sym_LBRACK, - STATE(799), 1, - sym_alignas_qualifier, - STATE(1149), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1638), 1, - sym__abstract_declarator, - STATE(1691), 1, - sym_parameter_list, - ACTIONS(3256), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(3258), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(3260), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1096), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1229), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3148), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - STATE(1717), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - ACTIONS(3254), 8, + anon_sym_LBRACE, + ACTIONS(3035), 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, @@ -110249,53 +152294,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [45263] = 18, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [81401] = 14, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_const, - ACTIONS(2010), 1, + ACTIONS(2047), 1, anon_sym_LPAREN2, - ACTIONS(2012), 1, + ACTIONS(2049), 1, anon_sym_STAR, - ACTIONS(3140), 1, - sym_ms_restrict_modifier, - ACTIONS(3144), 1, - anon_sym_LBRACK, - STATE(799), 1, - sym_alignas_qualifier, - STATE(1149), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1657), 1, - sym__abstract_declarator, - STATE(1691), 1, - sym_parameter_list, - ACTIONS(3256), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(3258), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(3260), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1121), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1228), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3138), 3, + ACTIONS(2051), 1, + anon_sym___based, + ACTIONS(3650), 1, + sym_identifier, + STATE(639), 1, + sym__old_style_function_declarator, + STATE(2061), 1, + sym_ms_call_modifier, + STATE(2177), 1, + sym_macro_modifier, + STATE(2223), 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, + [81454] = 5, + ACTIONS(2907), 1, + anon_sym_const, + STATE(1731), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(4324), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2909), 16, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_COLON, - STATE(1717), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - ACTIONS(3254), 8, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym___extension__, + anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -110303,49 +152364,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [45335] = 16, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_COLON, + [81489] = 15, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1835), 1, + ACTIONS(2051), 1, anon_sym___based, - ACTIONS(3262), 1, + ACTIONS(3876), 1, sym_identifier, - ACTIONS(3264), 1, + ACTIONS(3878), 1, anon_sym_LPAREN2, - ACTIONS(3266), 1, + ACTIONS(3880), 1, anon_sym_STAR, - STATE(799), 1, - sym_alignas_qualifier, - STATE(1149), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1396), 1, + ACTIONS(4326), 1, + anon_sym_SEMI, + STATE(1914), 1, sym__field_declarator, - STATE(2274), 1, + STATE(2198), 1, + sym__field_declaration_declarator, + STATE(2998), 1, + sym_attribute_specifier, + STATE(3201), 1, sym_ms_based_modifier, - ACTIONS(55), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(3142), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1118), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1239), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3140), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1438), 5, + 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, - ACTIONS(53), 9, + [81544] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3025), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACE, + ACTIONS(3023), 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, @@ -110354,155 +152432,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [45402] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2486), 1, - anon_sym_LPAREN2, - ACTIONS(2488), 1, - anon_sym_LBRACK, - ACTIONS(3272), 1, - anon_sym_SLASH, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3268), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3270), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3274), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3276), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3278), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2546), 3, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(2548), 12, - 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, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, sym_identifier, - [45465] = 21, + [81577] = 9, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2486), 1, - anon_sym_LPAREN2, - ACTIONS(2488), 1, + 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, - ACTIONS(2999), 1, - aux_sym_preproc_elif_token1, - ACTIONS(3272), 1, - anon_sym_SLASH, - ACTIONS(3280), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3282), 1, - anon_sym_AMP_AMP, - ACTIONS(3284), 1, - anon_sym_PIPE, - ACTIONS(3286), 1, - anon_sym_CARET, - ACTIONS(3288), 1, - anon_sym_AMP, - ACTIONS(3292), 1, - anon_sym_QMARK, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3268), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3270), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3274), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3276), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3278), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3290), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2997), 6, + 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, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_identifier, - [45542] = 16, - ACTIONS(3), 1, + 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, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(1831), 1, + ACTIONS(4332), 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, - ACTIONS(1833), 1, anon_sym_STAR, - ACTIONS(1835), 1, - anon_sym___based, - ACTIONS(3136), 1, - sym_identifier, - STATE(799), 1, - sym_alignas_qualifier, - STATE(1149), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1464), 1, - sym__declarator, - STATE(2174), 1, - sym_ms_based_modifier, - ACTIONS(55), 2, + 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, - ACTIONS(3142), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1101), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1236), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3140), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1569), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(53), 9, - anon_sym___extension__, + anon_sym_COLON, + [81655] = 5, + ACTIONS(2881), 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_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, + anon_sym___extension__, + anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -110510,50 +152527,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [45609] = 16, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_COLON, + [81690] = 14, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1831), 1, + ACTIONS(2047), 1, anon_sym_LPAREN2, - ACTIONS(1833), 1, + ACTIONS(2049), 1, anon_sym_STAR, - ACTIONS(1835), 1, + ACTIONS(2051), 1, anon_sym___based, - ACTIONS(3136), 1, + ACTIONS(3650), 1, sym_identifier, - STATE(799), 1, - sym_alignas_qualifier, - STATE(1149), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1465), 1, + STATE(665), 1, + sym__old_style_function_declarator, + STATE(2052), 1, + sym_ms_call_modifier, + STATE(2158), 1, + sym_macro_modifier, + STATE(2215), 1, sym__declarator, - STATE(2174), 1, + STATE(3337), 1, sym_ms_based_modifier, - ACTIONS(55), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(3142), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1121), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1230), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3140), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1569), 5, + 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(53), 9, - anon_sym___extension__, + ACTIONS(2113), 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, @@ -110561,31 +152596,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [45676] = 7, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_COLON, + [81778] = 9, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - STATE(837), 1, - sym_attribute_specifier, - ACTIONS(33), 2, + ACTIONS(2428), 1, + sym_identifier, + ACTIONS(2436), 2, anon_sym___attribute__, anon_sym___must_hold, - ACTIONS(35), 2, + ACTIONS(2438), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(37), 4, + 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(3020), 6, + 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, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3100), 3, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(3018), 18, + anon_sym_LBRACE, + ACTIONS(3098), 19, anon_sym___extension__, + anon_sym___declspec, anon_sym___based, anon_sym_signed, anon_sym_unsigned, @@ -110603,186 +152662,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [45725] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2486), 1, - anon_sym_LPAREN2, - ACTIONS(2488), 1, - anon_sym_LBRACK, - ACTIONS(2995), 1, - aux_sym_preproc_elif_token1, - ACTIONS(3272), 1, - anon_sym_SLASH, - ACTIONS(3280), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3282), 1, - anon_sym_AMP_AMP, - ACTIONS(3284), 1, - anon_sym_PIPE, - ACTIONS(3286), 1, - anon_sym_CARET, - ACTIONS(3288), 1, - anon_sym_AMP, - ACTIONS(3292), 1, - anon_sym_QMARK, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3268), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3270), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3274), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3276), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3278), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3290), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2993), 6, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_identifier, - [45802] = 11, + [81854] = 13, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2486), 1, - anon_sym_LPAREN2, - ACTIONS(2488), 1, - anon_sym_LBRACK, - ACTIONS(3272), 1, - anon_sym_SLASH, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3268), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3270), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2546), 5, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2548), 16, - 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_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_QMARK, + ACTIONS(2428), 1, sym_identifier, - [45859] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2486), 1, - anon_sym_LPAREN2, - ACTIONS(2488), 1, + ACTIONS(4330), 1, anon_sym_LBRACK, - ACTIONS(3272), 1, - anon_sym_SLASH, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3268), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3270), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3278), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2546), 5, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2548), 14, - 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_GT_EQ, - anon_sym_LT_EQ, - anon_sym_QMARK, - sym_identifier, - [45918] = 7, - ACTIONS(3), 1, - sym_comment, - STATE(865), 1, + STATE(1956), 1, sym_attribute_specifier, - ACTIONS(33), 2, + STATE(2056), 1, + aux_sym_type_definition_repeat1, + ACTIONS(2436), 2, anon_sym___attribute__, anon_sym___must_hold, - ACTIONS(35), 2, + ACTIONS(2438), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(37), 4, + 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(3049), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4328), 4, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(3047), 18, - anon_sym___extension__, - anon_sym___based, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + [81905] = 6, + ACTIONS(1954), 1, + anon_sym_const, + ACTIONS(4340), 1, + 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_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_const, + ACTIONS(1967), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym___extension__, + anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -110792,164 +152730,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [45967] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2486), 1, - anon_sym_LPAREN2, - ACTIONS(2488), 1, - anon_sym_LBRACK, - ACTIONS(2989), 1, - aux_sym_preproc_elif_token1, - ACTIONS(3272), 1, - anon_sym_SLASH, - ACTIONS(3280), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3282), 1, - anon_sym_AMP_AMP, - ACTIONS(3284), 1, - anon_sym_PIPE, - ACTIONS(3286), 1, - anon_sym_CARET, - ACTIONS(3288), 1, - anon_sym_AMP, - ACTIONS(3292), 1, - anon_sym_QMARK, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3268), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3270), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3274), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3276), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3278), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3290), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2979), 6, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_identifier, - [46044] = 21, - ACTIONS(3), 1, + anon_sym_COLON, + [81942] = 3, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(2486), 1, - anon_sym_LPAREN2, - ACTIONS(2488), 1, - anon_sym_LBRACK, - ACTIONS(3272), 1, - anon_sym_SLASH, - ACTIONS(3280), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3282), 1, - anon_sym_AMP_AMP, - ACTIONS(3284), 1, - anon_sym_PIPE, - ACTIONS(3286), 1, - anon_sym_CARET, - ACTIONS(3288), 1, - anon_sym_AMP, - ACTIONS(3292), 1, - anon_sym_QMARK, - ACTIONS(3296), 1, - aux_sym_preproc_elif_token1, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3268), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3270), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3274), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3276), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3278), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3290), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3294), 6, + ACTIONS(4142), 2, + sym_ms_restrict_modifier, + anon_sym_const, + ACTIONS(4144), 20, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_identifier, - [46121] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1831), 1, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(1833), 1, anon_sym_STAR, - ACTIONS(1835), 1, - anon_sym___based, - ACTIONS(3136), 1, - sym_identifier, - STATE(799), 1, - sym_alignas_qualifier, - STATE(1149), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1473), 1, - sym__declarator, - STATE(2174), 1, - sym_ms_based_modifier, - ACTIONS(55), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(3142), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1121), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1233), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3140), 3, - sym_ms_restrict_modifier, + anon_sym___extension__, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1569), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(53), 9, - anon_sym___extension__, - anon_sym_const, + anon_sym__unaligned, + anon_sym___unaligned, + anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -110957,50 +152756,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46188] = 16, - ACTIONS(3), 1, + 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(1835), 1, - anon_sym___based, - ACTIONS(3262), 1, - sym_identifier, - ACTIONS(3264), 1, + ACTIONS(4283), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2905), 16, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(3266), 1, anon_sym_STAR, - STATE(799), 1, - sym_alignas_qualifier, - STATE(1149), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1392), 1, - sym__field_declarator, - STATE(2274), 1, - sym_ms_based_modifier, - ACTIONS(55), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(3142), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1121), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1232), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3140), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1438), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - ACTIONS(53), 9, anon_sym___extension__, - anon_sym_const, + anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -111008,290 +152786,193 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46255] = 15, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_COLON, + [82008] = 11, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2486), 1, - anon_sym_LPAREN2, - ACTIONS(2488), 1, - anon_sym_LBRACK, - ACTIONS(3272), 1, - anon_sym_SLASH, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3268), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3270), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3274), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3276), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3278), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3290), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2546), 3, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(2548), 10, - 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, + ACTIONS(4343), 1, sym_identifier, - [46320] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2486), 1, + ACTIONS(4345), 1, + anon_sym_RPAREN, + ACTIONS(4347), 1, anon_sym_LPAREN2, - ACTIONS(2488), 1, - anon_sym_LBRACK, - ACTIONS(3272), 1, - anon_sym_SLASH, - ACTIONS(3288), 1, - anon_sym_AMP, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2546), 2, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - ACTIONS(3268), 2, + 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(3270), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3274), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3276), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3278), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3290), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2548), 10, - 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, - sym_identifier, - [46387] = 17, + 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, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2486), 1, + ACTIONS(2047), 1, anon_sym_LPAREN2, - ACTIONS(2488), 1, - anon_sym_LBRACK, - ACTIONS(3272), 1, - anon_sym_SLASH, - ACTIONS(3286), 1, - anon_sym_CARET, - ACTIONS(3288), 1, - anon_sym_AMP, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2546), 2, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - ACTIONS(3268), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3270), 2, + ACTIONS(2049), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3274), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3276), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3278), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3290), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2548), 9, - 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, + ACTIONS(2051), 1, + anon_sym___based, + ACTIONS(3650), 1, sym_identifier, - [46456] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2486), 1, + STATE(2052), 1, + sym_ms_call_modifier, + STATE(2158), 1, + sym_macro_modifier, + STATE(2258), 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, + [82104] = 5, + ACTIONS(4316), 1, + anon_sym_LF, + ACTIONS(4359), 1, anon_sym_LPAREN2, - ACTIONS(2488), 1, - anon_sym_LBRACK, - ACTIONS(2546), 1, - aux_sym_preproc_elif_token1, - ACTIONS(3272), 1, - anon_sym_SLASH, - ACTIONS(3284), 1, - anon_sym_PIPE, - ACTIONS(3286), 1, - anon_sym_CARET, - ACTIONS(3288), 1, - anon_sym_AMP, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3268), 2, + 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, - ACTIONS(3270), 2, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3274), 2, + 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_LT, - ACTIONS(3276), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3278), 2, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3290), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2548), 9, - 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, - sym_identifier, - [46527] = 19, + [82138] = 11, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2486), 1, + ACTIONS(4343), 1, + sym_identifier, + ACTIONS(4347), 1, anon_sym_LPAREN2, - ACTIONS(2488), 1, - anon_sym_LBRACK, - ACTIONS(2546), 1, - aux_sym_preproc_elif_token1, - ACTIONS(3272), 1, - anon_sym_SLASH, - ACTIONS(3282), 1, - anon_sym_AMP_AMP, - ACTIONS(3284), 1, - anon_sym_PIPE, - ACTIONS(3286), 1, - anon_sym_CARET, - ACTIONS(3288), 1, - anon_sym_AMP, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3268), 2, + 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(3270), 2, + 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, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2047), 1, + anon_sym_LPAREN2, + ACTIONS(2049), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3274), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3276), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3278), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3290), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2548), 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_QMARK, + ACTIONS(2051), 1, + anon_sym___based, + ACTIONS(3650), 1, sym_identifier, - [46600] = 7, + 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, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - STATE(876), 1, - sym_attribute_specifier, - ACTIONS(33), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(35), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(37), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - ACTIONS(3062), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4365), 1, + anon_sym___aligned, + ACTIONS(3369), 2, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(3060), 18, + ACTIONS(3367), 18, anon_sym___extension__, anon_sym___based, anon_sym_signed, @@ -111310,94 +152991,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [46649] = 10, + [82268] = 15, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2486), 1, + ACTIONS(2051), 1, + anon_sym___based, + ACTIONS(2107), 1, anon_sym_LPAREN2, - ACTIONS(2488), 1, - anon_sym_LBRACK, - ACTIONS(3272), 1, - anon_sym_SLASH, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3270), 2, + ACTIONS(2109), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2546), 7, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2548), 16, - 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_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_QMARK, + ACTIONS(3650), 1, sym_identifier, - [46704] = 16, + ACTIONS(3658), 1, + anon_sym_LBRACK, + STATE(1946), 1, + sym_macro_modifier, + STATE(2277), 1, + sym__declarator, + STATE(2375), 1, + sym_parameter_list, + STATE(2439), 1, + sym__abstract_declarator, + STATE(3337), 1, + sym_ms_based_modifier, + ACTIONS(2111), 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, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [82322] = 6, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1835), 1, - anon_sym___based, - ACTIONS(3262), 1, - sym_identifier, - ACTIONS(3264), 1, + STATE(1703), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2889), 2, anon_sym_LPAREN2, - ACTIONS(3266), 1, anon_sym_STAR, - STATE(799), 1, - sym_alignas_qualifier, - STATE(1149), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1393), 1, - sym__field_declarator, - STATE(2274), 1, - sym_ms_based_modifier, - ACTIONS(55), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(3142), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1121), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1237), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3140), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1438), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - ACTIONS(53), 9, + ACTIONS(4367), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2887), 14, anon_sym___extension__, + anon_sym___based, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -111406,49 +153056,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46771] = 16, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [82358] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1835), 1, - anon_sym___based, - ACTIONS(3262), 1, - sym_identifier, - ACTIONS(3264), 1, + ACTIONS(3025), 2, anon_sym_LPAREN2, - ACTIONS(3266), 1, anon_sym_STAR, - STATE(799), 1, - sym_alignas_qualifier, - STATE(1149), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1393), 1, - sym__field_declarator, - STATE(2274), 1, - sym_ms_based_modifier, - ACTIONS(55), 2, + 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, - ACTIONS(3142), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1110), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1237), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3140), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1438), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - ACTIONS(53), 9, + sym_primitive_type, + anon_sym___aligned, + sym_identifier, + [82390] = 6, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + STATE(1772), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2893), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(4370), 4, + 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, @@ -111457,86 +153114,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46838] = 16, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [82426] = 13, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1831), 1, + ACTIONS(2047), 1, anon_sym_LPAREN2, - ACTIONS(1833), 1, + ACTIONS(2049), 1, anon_sym_STAR, - ACTIONS(1835), 1, + ACTIONS(2051), 1, anon_sym___based, - ACTIONS(3136), 1, + ACTIONS(3650), 1, sym_identifier, - STATE(799), 1, - sym_alignas_qualifier, - STATE(1149), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1465), 1, + STATE(2061), 1, + sym_ms_call_modifier, + STATE(2177), 1, + sym_macro_modifier, + STATE(2268), 1, sym__declarator, - STATE(2174), 1, + STATE(3337), 1, sym_ms_based_modifier, - ACTIONS(55), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(3142), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1109), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1230), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3140), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1569), 5, + 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(53), 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, - [46905] = 7, + ACTIONS(2113), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [82476] = 6, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - STATE(1149), 1, - sym_ms_unaligned_ptr_modifier, - ACTIONS(3305), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1121), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(3302), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(3300), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(1703), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2883), 2, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(3298), 18, - anon_sym___extension__, - anon_sym___based, + ACTIONS(4373), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + ACTIONS(2881), 14, + anon_sym___extension__, + anon_sym___based, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -111549,46 +153185,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [46953] = 15, + [82512] = 6, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(61), 1, - anon_sym_struct, - ACTIONS(63), 1, - anon_sym_union, - ACTIONS(1799), 1, - anon_sym_enum, - ACTIONS(3308), 1, - sym_identifier, - ACTIONS(3312), 1, - sym_primitive_type, - STATE(799), 1, - sym_alignas_qualifier, - STATE(1256), 1, - sym_type_specifier, - STATE(1287), 1, + STATE(1764), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1406), 1, - sym__type_definition_type, - ACTIONS(55), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1136), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3310), 4, + ACTIONS(2899), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(4376), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(873), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(53), 9, + ACTIONS(2897), 14, anon_sym___extension__, + anon_sym___based, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -111597,46 +153211,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [47016] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, - ACTIONS(61), 1, - anon_sym_struct, - ACTIONS(63), 1, - anon_sym_union, - ACTIONS(1799), 1, - anon_sym_enum, - ACTIONS(2008), 1, sym_identifier, - STATE(799), 1, - sym_alignas_qualifier, - STATE(1220), 1, - sym_type_specifier, - STATE(1246), 1, + [82548] = 6, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + STATE(1703), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2089), 1, - sym_type_descriptor, - ACTIONS(55), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1135), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1797), 4, + ACTIONS(2876), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(4379), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(873), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(53), 9, + ACTIONS(2873), 14, anon_sym___extension__, + anon_sym___based, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -111645,46 +153241,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [47079] = 15, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [82584] = 11, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(57), 1, - sym_primitive_type, - ACTIONS(61), 1, - anon_sym_struct, - ACTIONS(63), 1, - anon_sym_union, - ACTIONS(2008), 1, + ACTIONS(4343), 1, sym_identifier, - ACTIONS(3314), 1, - anon_sym_enum, - STATE(799), 1, - sym_alignas_qualifier, - STATE(1220), 1, - sym_type_specifier, - STATE(1246), 1, - aux_sym_sized_type_specifier_repeat1, + ACTIONS(4347), 1, + anon_sym_LPAREN2, + ACTIONS(4349), 1, + anon_sym_defined, + ACTIONS(4383), 1, + anon_sym_RPAREN, + ACTIONS(4385), 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(1774), 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, + [82630] = 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(2067), 1, + sym_ms_call_modifier, + STATE(2139), 1, + sym_macro_modifier, + STATE(2285), 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, + [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_type_descriptor, - ACTIONS(55), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1139), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1797), 4, + 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, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [82730] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3100), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(3098), 19, + anon_sym___extension__, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(873), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(53), 9, - anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -111693,46 +153377,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [47142] = 15, + anon_sym_alignas, + anon_sym__Alignas, + 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, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(61), 1, - anon_sym_struct, - ACTIONS(63), 1, - anon_sym_union, - ACTIONS(1799), 1, - anon_sym_enum, - ACTIONS(3308), 1, - sym_identifier, - ACTIONS(3312), 1, - sym_primitive_type, - STATE(799), 1, - sym_alignas_qualifier, - STATE(1256), 1, - sym_type_specifier, - STATE(1287), 1, + STATE(1703), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1405), 1, - sym__type_definition_type, - ACTIONS(55), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1136), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3310), 4, + ACTIONS(2905), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(4415), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(873), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(53), 9, + ACTIONS(2903), 14, anon_sym___extension__, + anon_sym___based, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -111741,46 +153448,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [47205] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, - ACTIONS(61), 1, - anon_sym_struct, - ACTIONS(63), 1, - anon_sym_union, - ACTIONS(2008), 1, sym_identifier, - ACTIONS(3314), 1, - anon_sym_enum, - STATE(799), 1, - sym_alignas_qualifier, - STATE(1220), 1, - sym_type_specifier, - STATE(1246), 1, + [82854] = 6, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + STATE(1760), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2264), 1, - sym_type_descriptor, - ACTIONS(55), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1139), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1797), 4, + ACTIONS(2909), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(4418), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(873), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(53), 9, + ACTIONS(2907), 14, anon_sym___extension__, + anon_sym___based, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -111789,46 +153478,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [47268] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(61), 1, - anon_sym_struct, - ACTIONS(63), 1, - anon_sym_union, - ACTIONS(1799), 1, - anon_sym_enum, - ACTIONS(3308), 1, - sym_identifier, - ACTIONS(3312), 1, - sym_primitive_type, - STATE(799), 1, - sym_alignas_qualifier, - STATE(1256), 1, - sym_type_specifier, - STATE(1287), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1400), 1, - sym__type_definition_type, - ACTIONS(55), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1136), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3310), 4, + sym_primitive_type, + sym_identifier, + [82890] = 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(4421), 1, + anon_sym_RPAREN, + STATE(2611), 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, + [82946] = 5, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4423), 1, + anon_sym___aligned, + ACTIONS(3381), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(3379), 18, + anon_sym___extension__, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(873), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(53), 9, - anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -111837,46 +153547,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [47331] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - sym_primitive_type, - ACTIONS(61), 1, - anon_sym_struct, - ACTIONS(63), 1, - anon_sym_union, - ACTIONS(1799), 1, - anon_sym_enum, - ACTIONS(2008), 1, - sym_identifier, - STATE(799), 1, - sym_alignas_qualifier, - STATE(1220), 1, - sym_type_specifier, - STATE(1246), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2088), 1, - sym_type_descriptor, - ACTIONS(55), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1135), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1797), 4, + sym_primitive_type, + 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, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4427), 1, + anon_sym___aligned, + ACTIONS(3363), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(3361), 18, + anon_sym___extension__, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(873), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(53), 9, - anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -111885,46 +153616,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [47394] = 15, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [83070] = 7, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(61), 1, - anon_sym_struct, - ACTIONS(63), 1, - anon_sym_union, - ACTIONS(1799), 1, - anon_sym_enum, - ACTIONS(3308), 1, - sym_identifier, - ACTIONS(3312), 1, - sym_primitive_type, - STATE(799), 1, - sym_alignas_qualifier, - STATE(1256), 1, - sym_type_specifier, - STATE(1287), 1, + ACTIONS(1967), 1, + anon_sym_STAR, + ACTIONS(4429), 1, + anon_sym_LPAREN2, + STATE(1787), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1401), 1, - sym__type_definition_type, - ACTIONS(55), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1136), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3310), 4, + ACTIONS(4432), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(873), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(53), 9, + ACTIONS(1954), 14, anon_sym___extension__, + anon_sym___based, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -111933,46 +153647,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [47457] = 15, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [83108] = 11, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(61), 1, - anon_sym_struct, - ACTIONS(63), 1, - anon_sym_union, - ACTIONS(1799), 1, - anon_sym_enum, - ACTIONS(3308), 1, + ACTIONS(4343), 1, sym_identifier, - ACTIONS(3312), 1, - sym_primitive_type, - STATE(799), 1, - sym_alignas_qualifier, - STATE(1256), 1, - sym_type_specifier, - STATE(1287), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1402), 1, - sym__type_definition_type, - ACTIONS(55), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1136), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3310), 4, + ACTIONS(4347), 1, + anon_sym_LPAREN2, + ACTIONS(4349), 1, + anon_sym_defined, + ACTIONS(4435), 1, + anon_sym_RPAREN, + ACTIONS(4437), 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(1771), 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, + [83154] = 5, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4439), 1, + anon_sym___aligned, + ACTIONS(3287), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(3285), 18, + anon_sym___extension__, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(873), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(53), 9, - anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -111981,46 +153711,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [47520] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(61), 1, - anon_sym_struct, - ACTIONS(63), 1, - anon_sym_union, - ACTIONS(1799), 1, - anon_sym_enum, - ACTIONS(3308), 1, - sym_identifier, - ACTIONS(3312), 1, - sym_primitive_type, - STATE(799), 1, - sym_alignas_qualifier, - STATE(1256), 1, - sym_type_specifier, - STATE(1287), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1411), 1, - sym__type_definition_type, - ACTIONS(55), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1136), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3310), 4, + sym_primitive_type, + sym_identifier, + [83188] = 5, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4441), 1, + anon_sym___aligned, + ACTIONS(3338), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(3336), 18, + anon_sym___extension__, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(873), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(53), 9, - anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -112029,46 +153740,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [47583] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - sym_primitive_type, - ACTIONS(61), 1, - anon_sym_struct, - ACTIONS(63), 1, - anon_sym_union, - ACTIONS(1799), 1, - anon_sym_enum, - ACTIONS(2008), 1, - sym_identifier, - STATE(799), 1, - sym_alignas_qualifier, - STATE(1220), 1, - sym_type_specifier, - STATE(1246), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2093), 1, - sym_type_descriptor, - ACTIONS(55), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1135), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1797), 4, + sym_primitive_type, + sym_identifier, + [83222] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3037), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(3035), 19, + anon_sym___extension__, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(873), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(53), 9, - anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -112077,46 +153767,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [47646] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(61), 1, - anon_sym_struct, - ACTIONS(63), 1, - anon_sym_union, - ACTIONS(1799), 1, - anon_sym_enum, - ACTIONS(3308), 1, - sym_identifier, - ACTIONS(3312), 1, - sym_primitive_type, - STATE(799), 1, - sym_alignas_qualifier, - STATE(1256), 1, - sym_type_specifier, - STATE(1287), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1408), 1, - sym__type_definition_type, - ACTIONS(55), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1136), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3310), 4, + sym_primitive_type, + anon_sym___aligned, + sym_identifier, + [83254] = 5, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4443), 1, + anon_sym___aligned, + ACTIONS(3262), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(3260), 18, + anon_sym___extension__, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(873), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(53), 9, - anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -112125,46 +153797,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [47709] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(61), 1, - anon_sym_struct, - ACTIONS(63), 1, - anon_sym_union, - ACTIONS(1799), 1, - anon_sym_enum, - ACTIONS(3308), 1, - sym_identifier, - ACTIONS(3312), 1, - sym_primitive_type, - STATE(799), 1, - sym_alignas_qualifier, - STATE(1256), 1, - sym_type_specifier, - STATE(1287), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1407), 1, - sym__type_definition_type, - ACTIONS(55), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1136), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3310), 4, + 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, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4447), 1, + anon_sym___aligned, + ACTIONS(3375), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(3373), 18, + anon_sym___extension__, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(873), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(53), 9, - anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -112173,44 +153866,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [47772] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - sym_primitive_type, - ACTIONS(61), 1, - anon_sym_struct, - ACTIONS(63), 1, - anon_sym_union, - ACTIONS(1799), 1, - anon_sym_enum, - ACTIONS(2008), 1, - sym_identifier, - STATE(799), 1, - sym_alignas_qualifier, - STATE(1226), 1, - sym_type_specifier, - STATE(1246), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(55), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1141), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1797), 4, + sym_primitive_type, + sym_identifier, + [83378] = 5, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4449), 1, + anon_sym___aligned, + ACTIONS(3387), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(3385), 18, + anon_sym___extension__, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(873), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(53), 9, - anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -112219,44 +153895,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [47832] = 14, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [83412] = 6, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(61), 1, - anon_sym_struct, - ACTIONS(63), 1, - anon_sym_union, - ACTIONS(1799), 1, - anon_sym_enum, - ACTIONS(3308), 1, - sym_identifier, - ACTIONS(3312), 1, - sym_primitive_type, - STATE(799), 1, - sym_alignas_qualifier, - STATE(1254), 1, - sym_type_specifier, - STATE(1287), 1, + STATE(1703), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(55), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1141), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3310), 4, + ACTIONS(2919), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(4451), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(873), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(53), 9, + ACTIONS(2917), 14, anon_sym___extension__, + anon_sym___based, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -112265,44 +153925,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [47892] = 14, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [83448] = 5, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1835), 1, - anon_sym___based, - ACTIONS(3220), 1, - sym_identifier, - ACTIONS(3222), 1, + ACTIONS(4454), 1, + anon_sym___aligned, + ACTIONS(3272), 2, anon_sym_LPAREN2, - ACTIONS(3224), 1, anon_sym_STAR, - ACTIONS(3228), 1, - sym_primitive_type, - STATE(799), 1, - sym_alignas_qualifier, - STATE(1403), 1, - sym__type_declarator, - STATE(2043), 1, - sym_ms_based_modifier, - ACTIONS(55), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1141), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3226), 4, + ACTIONS(3270), 18, + anon_sym___extension__, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1443), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(53), 9, - anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -112311,97 +153954,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [47952] = 21, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [83482] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2486), 1, + ACTIONS(3104), 2, anon_sym_LPAREN2, - ACTIONS(2488), 1, - anon_sym_LBRACK, - ACTIONS(3198), 1, - anon_sym_SLASH, - ACTIONS(3200), 1, - anon_sym_AMP_AMP, - ACTIONS(3202), 1, - anon_sym_PIPE, - ACTIONS(3204), 1, - anon_sym_CARET, - ACTIONS(3206), 1, - anon_sym_AMP, - ACTIONS(3216), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3218), 1, - anon_sym_QMARK, - ACTIONS(3316), 1, - anon_sym_COMMA, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3194), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3196), 2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3208), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3210), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3212), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3214), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3318), 3, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, - [48026] = 14, + 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, + sym_identifier, + [83514] = 8, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(57), 1, - sym_primitive_type, - ACTIONS(61), 1, - anon_sym_struct, - ACTIONS(63), 1, - anon_sym_union, - ACTIONS(2008), 1, + ACTIONS(4456), 1, sym_identifier, - ACTIONS(3314), 1, - anon_sym_enum, - STATE(799), 1, - sym_alignas_qualifier, - STATE(1226), 1, - sym_type_specifier, - STATE(1246), 1, + ACTIONS(4462), 1, + sym_primitive_type, + STATE(1766), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(55), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1141), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1797), 4, + ACTIONS(2865), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(4459), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(873), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(53), 9, + ACTIONS(2867), 12, anon_sym___extension__, + anon_sym___based, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -112410,44 +154016,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [48086] = 14, + 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(1835), 1, + ACTIONS(2051), 1, anon_sym___based, - ACTIONS(3220), 1, + ACTIONS(3882), 1, sym_identifier, - ACTIONS(3222), 1, + ACTIONS(3884), 1, anon_sym_LPAREN2, - ACTIONS(3224), 1, + ACTIONS(3886), 1, anon_sym_STAR, - ACTIONS(3228), 1, - sym_primitive_type, - STATE(799), 1, - sym_alignas_qualifier, - STATE(1410), 1, - sym__type_declarator, - STATE(2043), 1, + 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(55), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1141), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3226), 4, + 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, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3478), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(3476), 18, + anon_sym___extension__, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1443), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(53), 9, - anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -112456,26 +154115,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [48146] = 7, - ACTIONS(3), 1, - sym_comment, - STATE(799), 1, - sym_alignas_qualifier, - ACTIONS(3327), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1141), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3322), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + sym_primitive_type, + sym_identifier, + [83685] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3572), 2, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(3324), 9, + ACTIONS(3570), 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, @@ -112484,55 +154142,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(3320), 10, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [48192] = 14, + [83716] = 10, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1835), 1, - anon_sym___based, - ACTIONS(3220), 1, + ACTIONS(4465), 1, + sym_identifier, + ACTIONS(4467), 1, + anon_sym_LPAREN2, + ACTIONS(4469), 1, + anon_sym_defined, + ACTIONS(4475), 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(1908), 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, + [83759] = 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(4479), 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(1857), 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, + [83802] = 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(4481), 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(1867), 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, + [83845] = 10, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4343), 1, sym_identifier, - ACTIONS(3222), 1, + ACTIONS(4347), 1, + anon_sym_LPAREN2, + ACTIONS(4349), 1, + anon_sym_defined, + ACTIONS(4483), 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(1868), 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, + [83888] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3494), 2, anon_sym_LPAREN2, - ACTIONS(3224), 1, anon_sym_STAR, - ACTIONS(3228), 1, - sym_primitive_type, - STATE(799), 1, - sym_alignas_qualifier, - STATE(1399), 1, - sym__type_declarator, - STATE(2043), 1, - sym_ms_based_modifier, - ACTIONS(55), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1141), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3226), 4, + ACTIONS(3492), 18, + anon_sym___extension__, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1443), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(53), 9, - anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -112541,130 +154301,414 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [48252] = 22, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [83919] = 10, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2486), 1, + ACTIONS(4465), 1, + sym_identifier, + ACTIONS(4467), 1, anon_sym_LPAREN2, - ACTIONS(2488), 1, + ACTIONS(4469), 1, + anon_sym_defined, + ACTIONS(4485), 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(1886), 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, + [83962] = 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(4487), 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(1926), 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, + [84005] = 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(4489), 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(1869), 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, + [84048] = 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(4491), 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(1892), 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, + [84091] = 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(4493), 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(1918), 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, + [84134] = 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(4495), 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(1871), 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, + [84177] = 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(4497), 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(1925), 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, + [84220] = 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(4499), 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(1891), 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, + [84263] = 14, + 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, - ACTIONS(3198), 1, - anon_sym_SLASH, - ACTIONS(3200), 1, - anon_sym_AMP_AMP, - ACTIONS(3202), 1, - anon_sym_PIPE, - ACTIONS(3204), 1, - anon_sym_CARET, - ACTIONS(3206), 1, - anon_sym_AMP, - ACTIONS(3216), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3218), 1, - anon_sym_QMARK, - ACTIONS(3330), 1, + 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, - ACTIONS(3332), 1, anon_sym_RPAREN, - STATE(765), 1, - sym_argument_list, - STATE(1817), 1, - aux_sym_generic_expression_repeat1, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3194), 2, + 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(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(4503), 1, + sym_number_literal, + ACTIONS(4471), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(4473), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3196), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3208), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3210), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3212), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3214), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [48327] = 22, + ACTIONS(4477), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1931), 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, + [84357] = 10, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2486), 1, + ACTIONS(4343), 1, + sym_identifier, + ACTIONS(4347), 1, anon_sym_LPAREN2, - ACTIONS(2488), 1, - anon_sym_LBRACK, - ACTIONS(3198), 1, + ACTIONS(4349), 1, + anon_sym_defined, + ACTIONS(4505), 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(1872), 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, + [84400] = 3, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(4509), 5, anon_sym_SLASH, - ACTIONS(3200), 1, - anon_sym_AMP_AMP, - ACTIONS(3202), 1, anon_sym_PIPE, - ACTIONS(3204), 1, - anon_sym_CARET, - ACTIONS(3206), 1, anon_sym_AMP, - ACTIONS(3216), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3218), 1, - anon_sym_QMARK, - ACTIONS(3334), 1, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4507), 15, anon_sym_COMMA, - ACTIONS(3336), 1, anon_sym_RPAREN, - STATE(765), 1, - sym_argument_list, - STATE(1777), 1, - aux_sym_argument_list_repeat1, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3196), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3208), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3210), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3212), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3214), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [48402] = 3, + [84429] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(3340), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3490), 2, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(3338), 23, + ACTIONS(3488), 18, 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, @@ -112681,183 +154725,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [48439] = 22, + [84460] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2486), 1, + ACTIONS(3466), 2, anon_sym_LPAREN2, - ACTIONS(2488), 1, - anon_sym_LBRACK, - ACTIONS(3198), 1, - anon_sym_SLASH, - ACTIONS(3200), 1, - anon_sym_AMP_AMP, - ACTIONS(3202), 1, - anon_sym_PIPE, - ACTIONS(3204), 1, - anon_sym_CARET, - ACTIONS(3206), 1, - anon_sym_AMP, - ACTIONS(3216), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3218), 1, - anon_sym_QMARK, - ACTIONS(3334), 1, - anon_sym_COMMA, - ACTIONS(3342), 1, - anon_sym_RPAREN, - STATE(765), 1, - sym_argument_list, - STATE(1769), 1, - aux_sym_argument_list_repeat1, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3194), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3196), 2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3208), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3210), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3212), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3214), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [48514] = 22, - ACTIONS(3), 1, + 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(2486), 1, - anon_sym_LPAREN2, - ACTIONS(2488), 1, - anon_sym_LBRACK, - ACTIONS(3198), 1, + ACTIONS(4513), 5, anon_sym_SLASH, - ACTIONS(3200), 1, - anon_sym_AMP_AMP, - ACTIONS(3202), 1, anon_sym_PIPE, - ACTIONS(3204), 1, - anon_sym_CARET, - ACTIONS(3206), 1, anon_sym_AMP, - ACTIONS(3216), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3218), 1, - anon_sym_QMARK, - ACTIONS(3334), 1, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4511), 15, anon_sym_COMMA, - ACTIONS(3344), 1, anon_sym_RPAREN, - STATE(765), 1, - sym_argument_list, - STATE(1837), 1, - aux_sym_argument_list_repeat1, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3196), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3208), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3210), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3212), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3214), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [48589] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2486), 1, - anon_sym_LPAREN2, - ACTIONS(2488), 1, - anon_sym_LBRACK, - ACTIONS(3198), 1, - anon_sym_SLASH, - ACTIONS(3200), 1, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(3202), 1, - anon_sym_PIPE, - ACTIONS(3204), 1, anon_sym_CARET, - ACTIONS(3206), 1, - anon_sym_AMP, - ACTIONS(3216), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3218), 1, - anon_sym_QMARK, - ACTIONS(3346), 1, - anon_sym_COMMA, - ACTIONS(3348), 1, - anon_sym_RBRACE, - STATE(765), 1, - sym_argument_list, - STATE(1880), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3194), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3196), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3208), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3210), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3212), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3214), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [48664] = 3, + [84520] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3352), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3474), 2, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(3350), 23, + ACTIONS(3472), 18, 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, @@ -112874,743 +154805,521 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [48701] = 22, + [84551] = 10, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2486), 1, + ACTIONS(4465), 1, + sym_identifier, + ACTIONS(4467), 1, anon_sym_LPAREN2, - ACTIONS(2488), 1, - anon_sym_LBRACK, - ACTIONS(3198), 1, - anon_sym_SLASH, - ACTIONS(3200), 1, - anon_sym_AMP_AMP, - ACTIONS(3202), 1, - anon_sym_PIPE, - ACTIONS(3204), 1, - anon_sym_CARET, - ACTIONS(3206), 1, - anon_sym_AMP, - ACTIONS(3216), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3218), 1, - anon_sym_QMARK, - ACTIONS(3334), 1, - anon_sym_COMMA, - ACTIONS(3354), 1, - anon_sym_RPAREN, - STATE(765), 1, - sym_argument_list, - STATE(1764), 1, - aux_sym_argument_list_repeat1, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3194), 2, + ACTIONS(4469), 1, + anon_sym_defined, + ACTIONS(4515), 1, + sym_number_literal, + ACTIONS(4471), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(4473), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3196), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3208), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3210), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3212), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3214), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [48776] = 18, + ACTIONS(4477), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1935), 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, + [84594] = 10, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2488), 1, - anon_sym_LBRACK, - ACTIONS(2492), 1, - anon_sym_DASH_GT, - ACTIONS(2546), 1, - anon_sym_PIPE, - ACTIONS(3166), 1, + ACTIONS(4465), 1, + sym_identifier, + ACTIONS(4467), 1, anon_sym_LPAREN2, - ACTIONS(3192), 1, - anon_sym_DOT, - ACTIONS(3360), 1, - anon_sym_SLASH, - ACTIONS(3362), 1, - anon_sym_CARET, - ACTIONS(3364), 1, - anon_sym_AMP, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3356), 2, + ACTIONS(4469), 1, + anon_sym_defined, + ACTIONS(4517), 1, + sym_number_literal, + ACTIONS(4471), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(4473), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3358), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3366), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3368), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3370), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3372), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2548), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RBRACK, - anon_sym_QMARK, - [48842] = 16, + ACTIONS(4477), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1924), 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, + [84637] = 10, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2488), 1, - anon_sym_LBRACK, - ACTIONS(2492), 1, - anon_sym_DASH_GT, - ACTIONS(3166), 1, + ACTIONS(4343), 1, + sym_identifier, + ACTIONS(4347), 1, anon_sym_LPAREN2, - ACTIONS(3192), 1, - anon_sym_DOT, - ACTIONS(3360), 1, - anon_sym_SLASH, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2546), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3356), 2, + ACTIONS(4349), 1, + anon_sym_defined, + ACTIONS(4519), 1, + sym_number_literal, + ACTIONS(4351), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(4353), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3358), 2, + ACTIONS(4357), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1913), 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, + [84680] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3506), 2, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3366), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3368), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3370), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3372), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2548), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_RBRACK, - anon_sym_QMARK, - [48904] = 21, + ACTIONS(3504), 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, + [84711] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2486), 1, + ACTIONS(3502), 2, anon_sym_LPAREN2, - ACTIONS(2488), 1, - anon_sym_LBRACK, - ACTIONS(3198), 1, - anon_sym_SLASH, - ACTIONS(3200), 1, - anon_sym_AMP_AMP, - ACTIONS(3202), 1, - anon_sym_PIPE, - ACTIONS(3204), 1, - anon_sym_CARET, - ACTIONS(3206), 1, - anon_sym_AMP, - ACTIONS(3216), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3218), 1, - anon_sym_QMARK, - ACTIONS(3316), 1, - anon_sym_COMMA, - ACTIONS(3374), 1, - anon_sym_RPAREN, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3194), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3196), 2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3208), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3210), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3212), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3214), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [48976] = 21, + ACTIONS(3500), 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, + [84742] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2486), 1, + ACTIONS(3548), 2, anon_sym_LPAREN2, - ACTIONS(2488), 1, - anon_sym_LBRACK, - ACTIONS(3198), 1, - anon_sym_SLASH, - ACTIONS(3200), 1, - anon_sym_AMP_AMP, - ACTIONS(3202), 1, - anon_sym_PIPE, - ACTIONS(3204), 1, - anon_sym_CARET, - ACTIONS(3206), 1, - anon_sym_AMP, - ACTIONS(3216), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3218), 1, - anon_sym_QMARK, - ACTIONS(3316), 1, - anon_sym_COMMA, - ACTIONS(3376), 1, - anon_sym_COLON, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3194), 2, + anon_sym_STAR, + ACTIONS(3546), 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, + [84773] = 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(4521), 1, + sym_number_literal, + ACTIONS(4471), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(4473), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3196), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3208), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3210), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3212), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3214), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [49048] = 21, + 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, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2486), 1, + ACTIONS(4465), 1, + sym_identifier, + ACTIONS(4467), 1, anon_sym_LPAREN2, - ACTIONS(2488), 1, - anon_sym_LBRACK, - ACTIONS(3198), 1, - anon_sym_SLASH, - ACTIONS(3200), 1, - anon_sym_AMP_AMP, - ACTIONS(3202), 1, - anon_sym_PIPE, - ACTIONS(3204), 1, - anon_sym_CARET, - ACTIONS(3206), 1, - anon_sym_AMP, - ACTIONS(3216), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3218), 1, - anon_sym_QMARK, - ACTIONS(3316), 1, - anon_sym_COMMA, - ACTIONS(3378), 1, - anon_sym_COLON, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3194), 2, + ACTIONS(4469), 1, + anon_sym_defined, + ACTIONS(4523), 1, + sym_number_literal, + ACTIONS(4471), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(4473), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3196), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3208), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3210), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3212), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3214), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [49120] = 21, + ACTIONS(4477), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1897), 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, + [84859] = 10, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2486), 1, + ACTIONS(4465), 1, + sym_identifier, + ACTIONS(4467), 1, anon_sym_LPAREN2, - ACTIONS(2488), 1, - anon_sym_LBRACK, - ACTIONS(3198), 1, - anon_sym_SLASH, - ACTIONS(3200), 1, - anon_sym_AMP_AMP, - ACTIONS(3202), 1, - anon_sym_PIPE, - ACTIONS(3204), 1, - anon_sym_CARET, - ACTIONS(3206), 1, - anon_sym_AMP, - ACTIONS(3216), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3218), 1, - anon_sym_QMARK, - ACTIONS(3316), 1, - anon_sym_COMMA, - ACTIONS(3380), 1, - anon_sym_SEMI, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3194), 2, + ACTIONS(4469), 1, + anon_sym_defined, + ACTIONS(4525), 1, + sym_number_literal, + ACTIONS(4471), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(4473), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3196), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3208), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3210), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3212), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3214), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [49192] = 21, + ACTIONS(4477), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1942), 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, + [84902] = 10, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2486), 1, + ACTIONS(4343), 1, + sym_identifier, + ACTIONS(4347), 1, anon_sym_LPAREN2, - ACTIONS(2488), 1, - anon_sym_LBRACK, - ACTIONS(3198), 1, - anon_sym_SLASH, - ACTIONS(3200), 1, - anon_sym_AMP_AMP, - ACTIONS(3202), 1, - anon_sym_PIPE, - ACTIONS(3204), 1, - anon_sym_CARET, - ACTIONS(3206), 1, - anon_sym_AMP, - ACTIONS(3216), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3218), 1, - anon_sym_QMARK, - ACTIONS(3316), 1, - anon_sym_COMMA, - ACTIONS(3382), 1, - anon_sym_SEMI, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3194), 2, + ACTIONS(4349), 1, + anon_sym_defined, + ACTIONS(4527), 1, + sym_number_literal, + ACTIONS(4351), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(4353), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3196), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3208), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3210), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3212), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3214), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [49264] = 20, + ACTIONS(4357), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1834), 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, + [84945] = 10, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2486), 1, + ACTIONS(4465), 1, + sym_identifier, + ACTIONS(4467), 1, anon_sym_LPAREN2, - ACTIONS(2488), 1, - anon_sym_LBRACK, - ACTIONS(3198), 1, - anon_sym_SLASH, - ACTIONS(3200), 1, - anon_sym_AMP_AMP, - ACTIONS(3202), 1, - anon_sym_PIPE, - ACTIONS(3204), 1, - anon_sym_CARET, - ACTIONS(3206), 1, - anon_sym_AMP, - ACTIONS(3216), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3218), 1, - anon_sym_QMARK, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3194), 2, + ACTIONS(4469), 1, + anon_sym_defined, + ACTIONS(4529), 1, + sym_number_literal, + ACTIONS(4471), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(4473), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3196), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3208), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3210), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3212), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3214), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3384), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [49334] = 21, + ACTIONS(4477), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1941), 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, + [84988] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2486), 1, + ACTIONS(3427), 2, anon_sym_LPAREN2, - ACTIONS(2488), 1, - anon_sym_LBRACK, - ACTIONS(3198), 1, - anon_sym_SLASH, - ACTIONS(3200), 1, - anon_sym_AMP_AMP, - ACTIONS(3202), 1, - anon_sym_PIPE, - ACTIONS(3204), 1, - anon_sym_CARET, - ACTIONS(3206), 1, - anon_sym_AMP, - ACTIONS(3216), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3218), 1, - anon_sym_QMARK, - ACTIONS(3316), 1, - anon_sym_COMMA, - ACTIONS(3386), 1, - anon_sym_SEMI, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3194), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3196), 2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3208), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3210), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3212), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3214), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [49406] = 21, + 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, + sym_identifier, + [85019] = 10, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2488), 1, - anon_sym_LBRACK, - ACTIONS(2492), 1, - anon_sym_DASH_GT, - ACTIONS(3166), 1, + ACTIONS(4465), 1, + sym_identifier, + ACTIONS(4467), 1, anon_sym_LPAREN2, - ACTIONS(3192), 1, - anon_sym_DOT, - ACTIONS(3360), 1, - anon_sym_SLASH, - ACTIONS(3362), 1, - anon_sym_CARET, - ACTIONS(3364), 1, - anon_sym_AMP, - ACTIONS(3388), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3390), 1, - anon_sym_AMP_AMP, - ACTIONS(3392), 1, - anon_sym_PIPE, - ACTIONS(3394), 1, - anon_sym_QMARK, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2997), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_RBRACK, - ACTIONS(3356), 2, + 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(3358), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3366), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3368), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3370), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3372), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [49478] = 21, + 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(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2488), 1, - anon_sym_LBRACK, - ACTIONS(2492), 1, - anon_sym_DASH_GT, - ACTIONS(3166), 1, + ACTIONS(4465), 1, + sym_identifier, + ACTIONS(4467), 1, anon_sym_LPAREN2, - ACTIONS(3192), 1, - anon_sym_DOT, - ACTIONS(3360), 1, - anon_sym_SLASH, - ACTIONS(3362), 1, - anon_sym_CARET, - ACTIONS(3364), 1, - anon_sym_AMP, - ACTIONS(3388), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3390), 1, - anon_sym_AMP_AMP, - ACTIONS(3392), 1, - anon_sym_PIPE, - ACTIONS(3394), 1, - anon_sym_QMARK, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2979), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_RBRACK, - ACTIONS(3356), 2, + ACTIONS(4469), 1, + anon_sym_defined, + ACTIONS(4533), 1, + sym_number_literal, + ACTIONS(4471), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(4473), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3358), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3366), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3368), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3370), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3372), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [49550] = 20, + ACTIONS(4477), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1944), 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, + [85105] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2486), 1, + ACTIONS(3510), 2, anon_sym_LPAREN2, - ACTIONS(2488), 1, - anon_sym_LBRACK, - ACTIONS(3198), 1, - anon_sym_SLASH, - ACTIONS(3200), 1, - anon_sym_AMP_AMP, - ACTIONS(3202), 1, - anon_sym_PIPE, - ACTIONS(3204), 1, - anon_sym_CARET, - ACTIONS(3206), 1, - anon_sym_AMP, - ACTIONS(3216), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3218), 1, - anon_sym_QMARK, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3194), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3196), 2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3208), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3210), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3212), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3214), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3396), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [49620] = 21, + 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, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2486), 1, + ACTIONS(4465), 1, + sym_identifier, + ACTIONS(4467), 1, anon_sym_LPAREN2, - ACTIONS(2488), 1, - anon_sym_LBRACK, - ACTIONS(3198), 1, + ACTIONS(4469), 1, + anon_sym_defined, + ACTIONS(4535), 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(1938), 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, + [85179] = 3, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3254), 5, anon_sym_SLASH, - ACTIONS(3200), 1, - anon_sym_AMP_AMP, - ACTIONS(3202), 1, anon_sym_PIPE, - ACTIONS(3204), 1, - anon_sym_CARET, - ACTIONS(3206), 1, anon_sym_AMP, - ACTIONS(3216), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3218), 1, - anon_sym_QMARK, - ACTIONS(3316), 1, - anon_sym_COMMA, - ACTIONS(3398), 1, - anon_sym_COLON, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3194), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3196), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3208), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3210), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3212), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3214), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [49692] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2488), 1, - anon_sym_LBRACK, - ACTIONS(2492), 1, - anon_sym_DASH_GT, - ACTIONS(3166), 1, - anon_sym_LPAREN2, - ACTIONS(3192), 1, - anon_sym_DOT, - ACTIONS(3360), 1, - anon_sym_SLASH, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3356), 2, + ACTIONS(3252), 15, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3358), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2546), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2548), 12, - anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, @@ -113620,42 +155329,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - [49746] = 13, + [85208] = 10, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2488), 1, - anon_sym_LBRACK, - ACTIONS(2492), 1, - anon_sym_DASH_GT, - ACTIONS(3166), 1, + ACTIONS(4343), 1, + sym_identifier, + ACTIONS(4347), 1, anon_sym_LPAREN2, - ACTIONS(3192), 1, - anon_sym_DOT, - ACTIONS(3360), 1, - anon_sym_SLASH, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3356), 2, + ACTIONS(4349), 1, + anon_sym_defined, + ACTIONS(4537), 1, + sym_number_literal, + ACTIONS(4351), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(4353), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3358), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3372), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2546), 4, + ACTIONS(4357), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1849), 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, + [85251] = 3, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(4541), 5, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2548), 10, - anon_sym_DOT_DOT_DOT, + ACTIONS(4539), 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, @@ -113663,431 +155386,409 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_RBRACK, - anon_sym_QMARK, - [49802] = 15, + anon_sym_LT_LT, + anon_sym_GT_GT, + [85280] = 10, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2488), 1, - anon_sym_LBRACK, - ACTIONS(2492), 1, - anon_sym_DASH_GT, - ACTIONS(3166), 1, + ACTIONS(4343), 1, + sym_identifier, + ACTIONS(4347), 1, anon_sym_LPAREN2, - ACTIONS(3192), 1, - anon_sym_DOT, - ACTIONS(3360), 1, - anon_sym_SLASH, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2546), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3356), 2, + 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(3358), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3368), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3370), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3372), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2548), 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, - [49862] = 21, + 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(2486), 1, + ACTIONS(3443), 2, anon_sym_LPAREN2, - ACTIONS(2488), 1, - anon_sym_LBRACK, - ACTIONS(3198), 1, - anon_sym_SLASH, - ACTIONS(3200), 1, - anon_sym_AMP_AMP, - ACTIONS(3202), 1, - anon_sym_PIPE, - ACTIONS(3204), 1, - anon_sym_CARET, - ACTIONS(3206), 1, - anon_sym_AMP, - ACTIONS(3216), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3218), 1, - anon_sym_QMARK, - ACTIONS(3316), 1, - anon_sym_COMMA, - ACTIONS(3400), 1, - anon_sym_SEMI, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3194), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3196), 2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3208), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3210), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3212), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3214), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [49934] = 17, + 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(2488), 1, - anon_sym_LBRACK, - ACTIONS(2492), 1, - anon_sym_DASH_GT, - ACTIONS(2546), 1, - anon_sym_PIPE, - ACTIONS(3166), 1, + ACTIONS(4343), 1, + sym_identifier, + ACTIONS(4347), 1, anon_sym_LPAREN2, - ACTIONS(3192), 1, - anon_sym_DOT, - ACTIONS(3360), 1, + 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, anon_sym_SLASH, - ACTIONS(3364), 1, - anon_sym_AMP, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3356), 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(4391), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3358), 2, + ACTIONS(4393), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3366), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3368), 2, + ACTIONS(4549), 4, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3370), 2, + ACTIONS(4547), 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, - ACTIONS(3372), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2548), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_RBRACK, - anon_sym_QMARK, - [49998] = 21, - ACTIONS(3), 1, + [85432] = 3, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(2486), 1, - anon_sym_LPAREN2, - ACTIONS(2488), 1, - anon_sym_LBRACK, - ACTIONS(3198), 1, + ACTIONS(4553), 5, anon_sym_SLASH, - ACTIONS(3200), 1, - anon_sym_AMP_AMP, - ACTIONS(3202), 1, anon_sym_PIPE, - ACTIONS(3204), 1, - anon_sym_CARET, - ACTIONS(3206), 1, anon_sym_AMP, - ACTIONS(3216), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3218), 1, - anon_sym_QMARK, - ACTIONS(3316), 1, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4551), 15, anon_sym_COMMA, - ACTIONS(3402), 1, - anon_sym_COLON, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3194), 2, + anon_sym_RPAREN, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3196), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3208), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3210), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3212), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3214), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [50070] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2488), 1, - anon_sym_LBRACK, - ACTIONS(2492), 1, - anon_sym_DASH_GT, - ACTIONS(3166), 1, - anon_sym_LPAREN2, - ACTIONS(3192), 1, - anon_sym_DOT, - ACTIONS(3360), 1, + [85461] = 7, + ACTIONS(4395), 1, anon_sym_SLASH, - ACTIONS(3362), 1, - anon_sym_CARET, - ACTIONS(3364), 1, - anon_sym_AMP, - ACTIONS(3392), 1, - anon_sym_PIPE, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3356), 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(4391), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3358), 2, + ACTIONS(4393), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3366), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3368), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3370), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3372), 2, + ACTIONS(4413), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2548), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RBRACK, - anon_sym_QMARK, - [50136] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2486), 1, - anon_sym_LPAREN2, - ACTIONS(2488), 1, - anon_sym_LBRACK, - ACTIONS(3198), 1, - anon_sym_SLASH, - ACTIONS(3200), 1, - anon_sym_AMP_AMP, - ACTIONS(3202), 1, + ACTIONS(4549), 4, anon_sym_PIPE, - ACTIONS(3204), 1, - anon_sym_CARET, - ACTIONS(3206), 1, anon_sym_AMP, - ACTIONS(3216), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3218), 1, - anon_sym_QMARK, - ACTIONS(3316), 1, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4547), 9, anon_sym_COMMA, - ACTIONS(3404), 1, anon_sym_RPAREN, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3194), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3196), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3208), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3210), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3212), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3214), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [50208] = 19, + [85498] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2488), 1, - anon_sym_LBRACK, - ACTIONS(2492), 1, - anon_sym_DASH_GT, - ACTIONS(3166), 1, + ACTIONS(3451), 2, anon_sym_LPAREN2, - ACTIONS(3192), 1, - anon_sym_DOT, - ACTIONS(3360), 1, + 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, anon_sym_SLASH, - ACTIONS(3362), 1, - anon_sym_CARET, - ACTIONS(3364), 1, - anon_sym_AMP, - ACTIONS(3390), 1, - anon_sym_AMP_AMP, - ACTIONS(3392), 1, - anon_sym_PIPE, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3356), 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(4391), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3358), 2, + ACTIONS(4393), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3366), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3368), 2, + ACTIONS(4409), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3370), 2, + ACTIONS(4411), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3372), 2, + ACTIONS(4413), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2548), 4, - anon_sym_DOT_DOT_DOT, + ACTIONS(4549), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(4547), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_QMARK, - [50276] = 21, + anon_sym_AMP_AMP, + 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(2486), 1, + ACTIONS(3423), 2, anon_sym_LPAREN2, - ACTIONS(2488), 1, - anon_sym_LBRACK, - ACTIONS(3198), 1, - anon_sym_SLASH, - ACTIONS(3200), 1, - anon_sym_AMP_AMP, - ACTIONS(3202), 1, - anon_sym_PIPE, - ACTIONS(3204), 1, - anon_sym_CARET, - ACTIONS(3206), 1, - anon_sym_AMP, - ACTIONS(3216), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3218), 1, - anon_sym_QMARK, - ACTIONS(3316), 1, - anon_sym_COMMA, - ACTIONS(3406), 1, - anon_sym_SEMI, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3194), 2, + 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(3196), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3208), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3210), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3212), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3214), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [50348] = 11, + 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(2488), 1, - anon_sym_LBRACK, - ACTIONS(2492), 1, - anon_sym_DASH_GT, - ACTIONS(3166), 1, + ACTIONS(3576), 2, anon_sym_LPAREN2, - ACTIONS(3192), 1, - anon_sym_DOT, - ACTIONS(3360), 1, - anon_sym_SLASH, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3358), 2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2546), 6, + 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(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(4561), 5, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2548), 12, - anon_sym_DOT_DOT_DOT, + ACTIONS(4559), 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, @@ -114097,2288 +155798,3324 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - [50400] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2488), 1, - anon_sym_LBRACK, - ACTIONS(2492), 1, - anon_sym_DASH_GT, - ACTIONS(3166), 1, - anon_sym_LPAREN2, - ACTIONS(3192), 1, - anon_sym_DOT, - ACTIONS(3360), 1, + [85778] = 10, + ACTIONS(4395), 1, anon_sym_SLASH, - ACTIONS(3362), 1, - anon_sym_CARET, - ACTIONS(3364), 1, - anon_sym_AMP, - ACTIONS(3388), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3390), 1, - anon_sym_AMP_AMP, - ACTIONS(3392), 1, - anon_sym_PIPE, - ACTIONS(3394), 1, - anon_sym_QMARK, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2993), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_RBRACK, - ACTIONS(3356), 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(4391), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3358), 2, + ACTIONS(4393), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3366), 2, + ACTIONS(4407), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3368), 2, + ACTIONS(4409), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3370), 2, + ACTIONS(4411), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3372), 2, + ACTIONS(4413), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [50472] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2486), 1, - anon_sym_LPAREN2, - ACTIONS(2488), 1, - anon_sym_LBRACK, - ACTIONS(3198), 1, - anon_sym_SLASH, - ACTIONS(3200), 1, - anon_sym_AMP_AMP, - ACTIONS(3202), 1, + ACTIONS(4549), 2, anon_sym_PIPE, - ACTIONS(3204), 1, - anon_sym_CARET, - ACTIONS(3206), 1, anon_sym_AMP, - ACTIONS(3216), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3218), 1, - anon_sym_QMARK, - ACTIONS(3316), 1, + ACTIONS(4547), 5, anon_sym_COMMA, - ACTIONS(3408), 1, - anon_sym_SEMI, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3194), 2, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + [85821] = 11, + ACTIONS(4395), 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, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3196), 2, + ACTIONS(4393), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3208), 2, + ACTIONS(4407), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3210), 2, + ACTIONS(4409), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3212), 2, + ACTIONS(4411), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3214), 2, + ACTIONS(4413), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [50544] = 21, + ACTIONS(4547), 5, + 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(2486), 1, + ACTIONS(3568), 2, anon_sym_LPAREN2, - ACTIONS(2488), 1, - anon_sym_LBRACK, - ACTIONS(3198), 1, - anon_sym_SLASH, - ACTIONS(3200), 1, - anon_sym_AMP_AMP, - ACTIONS(3202), 1, - anon_sym_PIPE, - ACTIONS(3204), 1, - anon_sym_CARET, - ACTIONS(3206), 1, - anon_sym_AMP, - ACTIONS(3216), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3218), 1, - anon_sym_QMARK, - ACTIONS(3316), 1, + 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, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2909), 2, + anon_sym_LPAREN2, + 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_COMMA, - ACTIONS(3410), 1, + anon_sym_RPAREN, anon_sym_SEMI, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3194), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3196), 2, + 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, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3552), 2, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3208), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3210), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3212), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3214), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [50616] = 21, + 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, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2486), 1, + ACTIONS(3486), 2, anon_sym_LPAREN2, - ACTIONS(2488), 1, - anon_sym_LBRACK, - ACTIONS(3198), 1, + anon_sym_STAR, + ACTIONS(3484), 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, + [86056] = 12, + ACTIONS(4395), 1, anon_sym_SLASH, - ACTIONS(3200), 1, - anon_sym_AMP_AMP, - ACTIONS(3202), 1, - anon_sym_PIPE, - ACTIONS(3204), 1, + ACTIONS(4403), 1, anon_sym_CARET, - ACTIONS(3206), 1, + ACTIONS(4405), 1, anon_sym_AMP, - ACTIONS(3216), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3218), 1, - anon_sym_QMARK, - ACTIONS(3316), 1, - anon_sym_COMMA, - ACTIONS(3412), 1, - anon_sym_COLON, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3194), 2, + 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(3196), 2, + ACTIONS(4393), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3208), 2, + ACTIONS(4407), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3210), 2, + ACTIONS(4409), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3212), 2, + ACTIONS(4411), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3214), 2, + ACTIONS(4413), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [50688] = 21, + ACTIONS(4547), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [86103] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2486), 1, + ACTIONS(3556), 2, anon_sym_LPAREN2, - ACTIONS(2488), 1, - anon_sym_LBRACK, - ACTIONS(3198), 1, - anon_sym_SLASH, - ACTIONS(3200), 1, - anon_sym_AMP_AMP, - ACTIONS(3202), 1, - anon_sym_PIPE, - ACTIONS(3204), 1, - anon_sym_CARET, - ACTIONS(3206), 1, - anon_sym_AMP, - ACTIONS(3216), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3218), 1, - anon_sym_QMARK, - ACTIONS(3316), 1, - anon_sym_COMMA, - ACTIONS(3414), 1, - anon_sym_SEMI, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3194), 2, + anon_sym_STAR, + ACTIONS(3554), 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, + [86134] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3564), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(3562), 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, + [86165] = 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(4569), 1, + sym_number_literal, + ACTIONS(4471), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(4473), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3196), 2, + ACTIONS(4477), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1900), 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, + [86208] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3560), 2, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3208), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3210), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3212), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3214), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [50760] = 20, + 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, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2486), 1, + ACTIONS(4465), 1, + sym_identifier, + ACTIONS(4467), 1, anon_sym_LPAREN2, - ACTIONS(2488), 1, - anon_sym_LBRACK, - ACTIONS(3198), 1, - anon_sym_SLASH, - ACTIONS(3200), 1, - anon_sym_AMP_AMP, - ACTIONS(3202), 1, - anon_sym_PIPE, - ACTIONS(3204), 1, - anon_sym_CARET, - ACTIONS(3206), 1, - anon_sym_AMP, - ACTIONS(3216), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3218), 1, - anon_sym_QMARK, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3194), 2, + ACTIONS(4469), 1, + anon_sym_defined, + ACTIONS(4571), 1, + sym_number_literal, + ACTIONS(4471), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(4473), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3196), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3208), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3210), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3212), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3214), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3416), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [50830] = 21, + ACTIONS(4477), 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, + [86282] = 10, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2486), 1, + ACTIONS(4465), 1, + sym_identifier, + ACTIONS(4467), 1, anon_sym_LPAREN2, - ACTIONS(2488), 1, - anon_sym_LBRACK, - ACTIONS(3198), 1, - anon_sym_SLASH, - ACTIONS(3200), 1, - anon_sym_AMP_AMP, - ACTIONS(3202), 1, - anon_sym_PIPE, - ACTIONS(3204), 1, - anon_sym_CARET, - ACTIONS(3206), 1, - anon_sym_AMP, - ACTIONS(3216), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3218), 1, - anon_sym_QMARK, - ACTIONS(3316), 1, - anon_sym_COMMA, - ACTIONS(3418), 1, - anon_sym_RPAREN, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3194), 2, + ACTIONS(4469), 1, + anon_sym_defined, + ACTIONS(4573), 1, + sym_number_literal, + ACTIONS(4471), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(4473), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3196), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3208), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3210), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3212), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3214), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [50902] = 20, + ACTIONS(4477), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1894), 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, + [86325] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2486), 1, + ACTIONS(3544), 2, anon_sym_LPAREN2, - ACTIONS(2488), 1, + 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, + 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, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(3198), 1, + 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, - ACTIONS(3200), 1, - anon_sym_AMP_AMP, - ACTIONS(3202), 1, anon_sym_PIPE, - ACTIONS(3204), 1, - anon_sym_CARET, - ACTIONS(3206), 1, anon_sym_AMP, - ACTIONS(3216), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3218), 1, - anon_sym_QMARK, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3194), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4584), 15, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3196), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3208), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3210), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3212), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3214), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3420), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [50972] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2486), 1, - anon_sym_LPAREN2, - ACTIONS(2488), 1, - anon_sym_LBRACK, - ACTIONS(3198), 1, + [86422] = 12, + ACTIONS(4395), 1, anon_sym_SLASH, - ACTIONS(3200), 1, - anon_sym_AMP_AMP, - ACTIONS(3202), 1, + ACTIONS(4401), 1, anon_sym_PIPE, - ACTIONS(3204), 1, + ACTIONS(4403), 1, anon_sym_CARET, - ACTIONS(3206), 1, + ACTIONS(4405), 1, anon_sym_AMP, - ACTIONS(3216), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3218), 1, - anon_sym_QMARK, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3194), 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(4391), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3196), 2, + ACTIONS(4393), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3208), 2, + ACTIONS(4407), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3210), 2, + ACTIONS(4409), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3212), 2, + ACTIONS(4411), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3214), 2, + ACTIONS(4413), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3422), 2, + ACTIONS(4547), 4, anon_sym_COMMA, - anon_sym_RBRACE, - [51042] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2486), 1, - anon_sym_LPAREN2, - ACTIONS(2488), 1, - anon_sym_LBRACK, - ACTIONS(3198), 1, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [86469] = 13, + ACTIONS(4395), 1, anon_sym_SLASH, - ACTIONS(3200), 1, + ACTIONS(4399), 1, anon_sym_AMP_AMP, - ACTIONS(3202), 1, + ACTIONS(4401), 1, anon_sym_PIPE, - ACTIONS(3204), 1, + ACTIONS(4403), 1, anon_sym_CARET, - ACTIONS(3206), 1, + ACTIONS(4405), 1, anon_sym_AMP, - ACTIONS(3216), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3218), 1, - anon_sym_QMARK, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3194), 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(4391), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3196), 2, + ACTIONS(4393), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3208), 2, + ACTIONS(4407), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3210), 2, + ACTIONS(4409), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3212), 2, + ACTIONS(4411), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3214), 2, + ACTIONS(4413), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3424), 2, + ACTIONS(4547), 3, anon_sym_COMMA, anon_sym_RPAREN, - [51112] = 21, - ACTIONS(3), 1, + anon_sym_PIPE_PIPE, + [86518] = 3, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(2486), 1, - anon_sym_LPAREN2, - ACTIONS(2488), 1, - anon_sym_LBRACK, - ACTIONS(3198), 1, + ACTIONS(4549), 5, anon_sym_SLASH, - ACTIONS(3200), 1, - anon_sym_AMP_AMP, - ACTIONS(3202), 1, anon_sym_PIPE, - ACTIONS(3204), 1, - anon_sym_CARET, - ACTIONS(3206), 1, anon_sym_AMP, - ACTIONS(3216), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3218), 1, - anon_sym_QMARK, - ACTIONS(3316), 1, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4547), 15, anon_sym_COMMA, - ACTIONS(3426), 1, anon_sym_RPAREN, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3196), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3208), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3210), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3212), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3214), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [51184] = 21, + [86547] = 10, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2486), 1, + ACTIONS(4465), 1, + sym_identifier, + ACTIONS(4467), 1, anon_sym_LPAREN2, - ACTIONS(2488), 1, - anon_sym_LBRACK, - ACTIONS(3198), 1, + ACTIONS(4469), 1, + anon_sym_defined, + ACTIONS(4588), 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(1930), 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, + [86590] = 5, + ACTIONS(4395), 1, anon_sym_SLASH, - ACTIONS(3200), 1, - anon_sym_AMP_AMP, - ACTIONS(3202), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(4393), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(4549), 4, anon_sym_PIPE, - ACTIONS(3204), 1, - anon_sym_CARET, - ACTIONS(3206), 1, anon_sym_AMP, - ACTIONS(3216), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3218), 1, - anon_sym_QMARK, - ACTIONS(3316), 1, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4547), 13, anon_sym_COMMA, - ACTIONS(3428), 1, anon_sym_RPAREN, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3196), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3208), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3210), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3212), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3214), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [51256] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2486), 1, - anon_sym_LPAREN2, - ACTIONS(2488), 1, - anon_sym_LBRACK, - ACTIONS(3198), 1, + [86623] = 14, + ACTIONS(4395), 1, anon_sym_SLASH, - ACTIONS(3200), 1, + ACTIONS(4397), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4399), 1, anon_sym_AMP_AMP, - ACTIONS(3202), 1, + ACTIONS(4401), 1, anon_sym_PIPE, - ACTIONS(3204), 1, + ACTIONS(4403), 1, anon_sym_CARET, - ACTIONS(3206), 1, + ACTIONS(4405), 1, anon_sym_AMP, - ACTIONS(3216), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3218), 1, - anon_sym_QMARK, - ACTIONS(3316), 1, - anon_sym_COMMA, - ACTIONS(3430), 1, - anon_sym_RPAREN, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3194), 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(4391), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3196), 2, + ACTIONS(4393), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3208), 2, + ACTIONS(4407), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3210), 2, + ACTIONS(4409), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3212), 2, + ACTIONS(4411), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3214), 2, + ACTIONS(4413), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [51328] = 20, + ACTIONS(4590), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [86674] = 10, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2486), 1, + ACTIONS(4465), 1, + sym_identifier, + ACTIONS(4467), 1, anon_sym_LPAREN2, - ACTIONS(2488), 1, - anon_sym_LBRACK, - ACTIONS(3198), 1, - anon_sym_SLASH, - ACTIONS(3200), 1, - anon_sym_AMP_AMP, - ACTIONS(3202), 1, - anon_sym_PIPE, - ACTIONS(3204), 1, - anon_sym_CARET, - ACTIONS(3206), 1, - anon_sym_AMP, - ACTIONS(3216), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3218), 1, - anon_sym_QMARK, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3194), 2, + ACTIONS(4469), 1, + anon_sym_defined, + ACTIONS(4592), 1, + sym_number_literal, + ACTIONS(4471), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(4473), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3196), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3208), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3210), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3212), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3214), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3294), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [51398] = 21, + ACTIONS(4477), 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, + [86717] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2486), 1, + ACTIONS(3447), 2, anon_sym_LPAREN2, - ACTIONS(2488), 1, - anon_sym_LBRACK, - ACTIONS(3198), 1, + 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, - ACTIONS(3200), 1, - anon_sym_AMP_AMP, - ACTIONS(3202), 1, anon_sym_PIPE, - ACTIONS(3204), 1, - anon_sym_CARET, - ACTIONS(3206), 1, anon_sym_AMP, - ACTIONS(3216), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3218), 1, - anon_sym_QMARK, - ACTIONS(3316), 1, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4594), 15, anon_sym_COMMA, - ACTIONS(3432), 1, - anon_sym_SEMI, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3194), 2, + anon_sym_RPAREN, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3196), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3208), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3210), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3212), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3214), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [51470] = 21, - ACTIONS(3), 1, + [86777] = 3, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(2486), 1, - anon_sym_LPAREN2, - ACTIONS(2488), 1, - anon_sym_LBRACK, - ACTIONS(3198), 1, + ACTIONS(4600), 5, anon_sym_SLASH, - ACTIONS(3200), 1, - anon_sym_AMP_AMP, - ACTIONS(3202), 1, anon_sym_PIPE, - ACTIONS(3204), 1, - anon_sym_CARET, - ACTIONS(3206), 1, anon_sym_AMP, - ACTIONS(3216), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3218), 1, - anon_sym_QMARK, - ACTIONS(3316), 1, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4598), 15, anon_sym_COMMA, - ACTIONS(3434), 1, anon_sym_RPAREN, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3196), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3208), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3210), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3212), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3214), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [51542] = 21, + [86806] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2486), 1, + ACTIONS(3419), 2, anon_sym_LPAREN2, - ACTIONS(2488), 1, - anon_sym_LBRACK, - ACTIONS(3198), 1, + anon_sym_STAR, + ACTIONS(3417), 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, + [86837] = 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(4602), 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(1838), 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, + [86880] = 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(4604), 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(1896), 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, + [86923] = 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(4606), 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(1917), 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, + [86966] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3415), 2, + 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, + sym_identifier, + [86997] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3411), 2, + anon_sym_LPAREN2, + 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_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, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3470), 2, + anon_sym_LPAREN2, + 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_LF, + ACTIONS(3), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(4549), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3200), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(3202), 1, anon_sym_PIPE, - ACTIONS(3204), 1, anon_sym_CARET, - ACTIONS(3206), 1, anon_sym_AMP, - ACTIONS(3216), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3218), 1, - anon_sym_QMARK, - ACTIONS(3316), 1, - anon_sym_COMMA, - ACTIONS(3436), 1, - anon_sym_RPAREN, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3194), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3196), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3208), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3210), 2, anon_sym_GT, - anon_sym_LT, - ACTIONS(3212), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3214), 2, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [51614] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2486), 1, - anon_sym_LPAREN2, - ACTIONS(2488), 1, - anon_sym_LBRACK, - ACTIONS(3198), 1, - anon_sym_SLASH, - ACTIONS(3200), 1, + [87161] = 12, + ACTIONS(4610), 1, + anon_sym_LF, + ACTIONS(4616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4618), 1, anon_sym_AMP_AMP, - ACTIONS(3202), 1, + ACTIONS(4620), 1, anon_sym_PIPE, - ACTIONS(3204), 1, + ACTIONS(4622), 1, anon_sym_CARET, - ACTIONS(3206), 1, + ACTIONS(4624), 1, anon_sym_AMP, - ACTIONS(3216), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3218), 1, - anon_sym_QMARK, - ACTIONS(3316), 1, - anon_sym_COMMA, - ACTIONS(3438), 1, - anon_sym_SEMI, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3194), 2, + ACTIONS(3), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(4612), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3196), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3208), 2, + ACTIONS(4626), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3210), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3212), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3214), 2, + ACTIONS(4630), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [51686] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2486), 1, - anon_sym_LPAREN2, - ACTIONS(2488), 1, - anon_sym_LBRACK, - ACTIONS(3198), 1, + ACTIONS(4614), 3, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3200), 1, + anon_sym_PERCENT, + ACTIONS(4628), 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(3202), 1, + ACTIONS(4620), 1, anon_sym_PIPE, - ACTIONS(3204), 1, + ACTIONS(4622), 1, anon_sym_CARET, - ACTIONS(3206), 1, + ACTIONS(4624), 1, anon_sym_AMP, - ACTIONS(3216), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3218), 1, - anon_sym_QMARK, - ACTIONS(3316), 1, - anon_sym_COMMA, - ACTIONS(3440), 1, - anon_sym_SEMI, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3194), 2, + ACTIONS(4632), 1, + anon_sym_LF, + ACTIONS(3), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(4612), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3196), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3208), 2, + ACTIONS(4626), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3210), 2, + 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_LT, - ACTIONS(3212), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3214), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [51758] = 20, + anon_sym_LT, + [87253] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2486), 1, + ACTIONS(3116), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2488), 1, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + ACTIONS(3118), 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, - ACTIONS(3198), 1, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + [87283] = 3, + ACTIONS(4511), 1, + anon_sym_LF, + ACTIONS(3), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(4513), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3200), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(3202), 1, anon_sym_PIPE, - ACTIONS(3204), 1, anon_sym_CARET, - ACTIONS(3206), 1, anon_sym_AMP, - ACTIONS(3216), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3218), 1, - anon_sym_QMARK, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3194), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3196), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3208), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3210), 2, anon_sym_GT, - anon_sym_LT, - ACTIONS(3212), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3214), 2, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3442), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [51828] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2486), 1, - anon_sym_LPAREN2, - ACTIONS(2488), 1, - anon_sym_LBRACK, - ACTIONS(3198), 1, - anon_sym_SLASH, - ACTIONS(3200), 1, + [87311] = 12, + ACTIONS(4616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4618), 1, anon_sym_AMP_AMP, - ACTIONS(3202), 1, + ACTIONS(4620), 1, anon_sym_PIPE, - ACTIONS(3204), 1, + ACTIONS(4622), 1, anon_sym_CARET, - ACTIONS(3206), 1, + ACTIONS(4624), 1, anon_sym_AMP, - ACTIONS(3216), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3218), 1, - anon_sym_QMARK, - ACTIONS(3316), 1, - anon_sym_COMMA, - ACTIONS(3444), 1, - anon_sym_COLON, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3194), 2, + ACTIONS(4634), 1, + anon_sym_LF, + ACTIONS(3), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(4612), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3196), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3208), 2, + ACTIONS(4626), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3210), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3212), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3214), 2, + ACTIONS(4630), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [51900] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2486), 1, - anon_sym_LPAREN2, - ACTIONS(2488), 1, - anon_sym_LBRACK, - ACTIONS(3198), 1, + ACTIONS(4614), 3, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3200), 1, + anon_sym_PERCENT, + ACTIONS(4628), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [87357] = 12, + ACTIONS(4616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4618), 1, anon_sym_AMP_AMP, - ACTIONS(3202), 1, + ACTIONS(4620), 1, anon_sym_PIPE, - ACTIONS(3204), 1, + ACTIONS(4622), 1, anon_sym_CARET, - ACTIONS(3206), 1, + ACTIONS(4624), 1, anon_sym_AMP, - ACTIONS(3216), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3218), 1, - anon_sym_QMARK, - ACTIONS(3316), 1, - anon_sym_COMMA, - ACTIONS(3446), 1, - anon_sym_SEMI, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3194), 2, + ACTIONS(4636), 1, + anon_sym_LF, + ACTIONS(3), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(4612), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3196), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3208), 2, + ACTIONS(4626), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3210), 2, + 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_LT, - ACTIONS(3212), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3214), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [51972] = 22, - ACTIONS(3), 1, + anon_sym_LT, + [87403] = 3, + ACTIONS(4507), 1, + anon_sym_LF, + ACTIONS(3), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(2488), 1, - anon_sym_LBRACK, - ACTIONS(2492), 1, - anon_sym_DASH_GT, - ACTIONS(3166), 1, - anon_sym_LPAREN2, - ACTIONS(3192), 1, - anon_sym_DOT, - ACTIONS(3360), 1, - anon_sym_SLASH, - ACTIONS(3362), 1, - anon_sym_CARET, - ACTIONS(3364), 1, - anon_sym_AMP, - ACTIONS(3388), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3390), 1, - anon_sym_AMP_AMP, - ACTIONS(3392), 1, - anon_sym_PIPE, - ACTIONS(3394), 1, - anon_sym_QMARK, - ACTIONS(3448), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(3450), 1, - anon_sym_RBRACK, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3356), 2, + ACTIONS(4509), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3358), 2, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3366), 2, + 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(3368), 2, anon_sym_GT, - anon_sym_LT, - ACTIONS(3370), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3372), 2, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [52046] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2366), 1, - anon_sym_RBRACK, - ACTIONS(2488), 1, - anon_sym_LBRACK, - ACTIONS(3166), 1, - anon_sym_LPAREN2, - ACTIONS(3360), 1, - anon_sym_SLASH, - ACTIONS(3362), 1, - anon_sym_CARET, - ACTIONS(3364), 1, - anon_sym_AMP, - ACTIONS(3388), 1, + [87431] = 12, + ACTIONS(4616), 1, anon_sym_PIPE_PIPE, - ACTIONS(3390), 1, + ACTIONS(4618), 1, anon_sym_AMP_AMP, - ACTIONS(3392), 1, + ACTIONS(4620), 1, anon_sym_PIPE, - ACTIONS(3394), 1, - anon_sym_QMARK, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3356), 2, + ACTIONS(4622), 1, + anon_sym_CARET, + ACTIONS(4624), 1, + anon_sym_AMP, + ACTIONS(4638), 1, + anon_sym_LF, + ACTIONS(3), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(4612), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3358), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3366), 2, + ACTIONS(4626), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3368), 2, + 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_LT, - ACTIONS(3370), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3372), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [52115] = 20, - ACTIONS(3), 1, + anon_sym_LT, + [87477] = 3, + ACTIONS(4584), 1, + anon_sym_LF, + ACTIONS(3), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(2488), 1, - anon_sym_LBRACK, - ACTIONS(3166), 1, - anon_sym_LPAREN2, - ACTIONS(3360), 1, + ACTIONS(4586), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3362), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_CARET, - ACTIONS(3364), 1, anon_sym_AMP, - ACTIONS(3388), 1, + 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, + [87505] = 12, + ACTIONS(4616), 1, anon_sym_PIPE_PIPE, - ACTIONS(3390), 1, + ACTIONS(4618), 1, anon_sym_AMP_AMP, - ACTIONS(3392), 1, + ACTIONS(4620), 1, anon_sym_PIPE, - ACTIONS(3394), 1, - anon_sym_QMARK, - ACTIONS(3452), 1, - anon_sym_RBRACK, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3356), 2, + ACTIONS(4622), 1, + anon_sym_CARET, + ACTIONS(4624), 1, + anon_sym_AMP, + ACTIONS(4640), 1, + anon_sym_LF, + ACTIONS(3), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(4612), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3358), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3366), 2, + ACTIONS(4626), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3368), 2, + 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_LT, - ACTIONS(3370), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3372), 2, + anon_sym_LT, + [87551] = 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(4642), 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, - [52184] = 20, + 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, + [87597] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2352), 1, - anon_sym_RBRACK, - ACTIONS(2488), 1, + 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, - ACTIONS(3166), 1, + 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, - ACTIONS(3360), 1, - anon_sym_SLASH, - ACTIONS(3362), 1, - anon_sym_CARET, - ACTIONS(3364), 1, - anon_sym_AMP, - ACTIONS(3388), 1, + 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, anon_sym_PIPE_PIPE, - ACTIONS(3390), 1, + ACTIONS(4618), 1, anon_sym_AMP_AMP, - ACTIONS(3392), 1, + ACTIONS(4620), 1, anon_sym_PIPE, - ACTIONS(3394), 1, - anon_sym_QMARK, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3356), 2, + ACTIONS(4622), 1, + anon_sym_CARET, + ACTIONS(4624), 1, + anon_sym_AMP, + ACTIONS(4644), 1, + anon_sym_LF, + ACTIONS(3), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(4612), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3358), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3366), 2, + ACTIONS(4626), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3368), 2, + 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_LT, - ACTIONS(3370), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3372), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [52253] = 20, + anon_sym_LT, + [87703] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2486), 1, + ACTIONS(4584), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2488), 1, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + ACTIONS(4586), 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, - ACTIONS(3198), 1, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + [87733] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3200), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + ACTIONS(3202), 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, + [87763] = 14, + ACTIONS(4395), 1, anon_sym_SLASH, - ACTIONS(3200), 1, + ACTIONS(4397), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4399), 1, anon_sym_AMP_AMP, - ACTIONS(3202), 1, + ACTIONS(4401), 1, anon_sym_PIPE, - ACTIONS(3204), 1, + ACTIONS(4403), 1, anon_sym_CARET, - ACTIONS(3206), 1, + ACTIONS(4405), 1, anon_sym_AMP, - ACTIONS(3216), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3218), 1, - anon_sym_QMARK, - ACTIONS(3454), 1, - anon_sym_COLON, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3194), 2, + ACTIONS(4646), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(4391), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3196), 2, + ACTIONS(4393), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3208), 2, + ACTIONS(4407), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3210), 2, + ACTIONS(4409), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3212), 2, + ACTIONS(4411), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3214), 2, + ACTIONS(4413), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [52322] = 20, - ACTIONS(3), 1, + [87813] = 3, + ACTIONS(4594), 1, + anon_sym_LF, + ACTIONS(3), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(2362), 1, - anon_sym_RBRACK, - ACTIONS(2488), 1, - anon_sym_LBRACK, - ACTIONS(3166), 1, - anon_sym_LPAREN2, - ACTIONS(3360), 1, - anon_sym_SLASH, - ACTIONS(3362), 1, - anon_sym_CARET, - ACTIONS(3364), 1, - anon_sym_AMP, - ACTIONS(3388), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3390), 1, - anon_sym_AMP_AMP, - ACTIONS(3392), 1, - anon_sym_PIPE, - ACTIONS(3394), 1, - anon_sym_QMARK, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3356), 2, + ACTIONS(4596), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3358), 2, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3366), 2, + 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(3368), 2, anon_sym_GT, - anon_sym_LT, - ACTIONS(3370), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3372), 2, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [52391] = 20, + [87841] = 13, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2350), 1, - anon_sym_RBRACK, - ACTIONS(2488), 1, + 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, - ACTIONS(3166), 1, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + [87919] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3104), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(3360), 1, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + ACTIONS(3102), 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, + [87949] = 4, + ACTIONS(4547), 1, + anon_sym_LF, + ACTIONS(3), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(4614), 3, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3362), 1, - anon_sym_CARET, - ACTIONS(3364), 1, - anon_sym_AMP, - ACTIONS(3388), 1, + anon_sym_PERCENT, + ACTIONS(4549), 15, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE_PIPE, - ACTIONS(3390), 1, anon_sym_AMP_AMP, - ACTIONS(3392), 1, anon_sym_PIPE, - ACTIONS(3394), 1, - anon_sym_QMARK, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3356), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3358), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3366), 2, + anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3368), 2, anon_sym_GT, - anon_sym_LT, - ACTIONS(3370), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3372), 2, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [52460] = 20, + [87979] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2360), 1, - anon_sym_RBRACK, - ACTIONS(2488), 1, + 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, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3204), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + ACTIONS(3206), 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, + [88039] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3037), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + ACTIONS(3035), 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, - ACTIONS(3166), 1, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + [88069] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3100), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(3360), 1, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + ACTIONS(3098), 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, + [88099] = 14, + ACTIONS(4395), 1, anon_sym_SLASH, - ACTIONS(3362), 1, - anon_sym_CARET, - ACTIONS(3364), 1, - anon_sym_AMP, - ACTIONS(3388), 1, + ACTIONS(4397), 1, anon_sym_PIPE_PIPE, - ACTIONS(3390), 1, + ACTIONS(4399), 1, anon_sym_AMP_AMP, - ACTIONS(3392), 1, + ACTIONS(4401), 1, anon_sym_PIPE, - ACTIONS(3394), 1, - anon_sym_QMARK, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3356), 2, + 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(3358), 2, + ACTIONS(4393), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3366), 2, + ACTIONS(4407), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3368), 2, + ACTIONS(4409), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3370), 2, + ACTIONS(4411), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3372), 2, + ACTIONS(4413), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [52529] = 20, + [88149] = 12, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2486), 1, + ACTIONS(4650), 1, + anon_sym_COMMA, + ACTIONS(4652), 1, anon_sym_LPAREN2, - ACTIONS(2488), 1, + ACTIONS(4656), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4658), 1, anon_sym_LBRACK, - ACTIONS(3198), 1, - anon_sym_SLASH, - ACTIONS(3200), 1, - anon_sym_AMP_AMP, - ACTIONS(3202), 1, - anon_sym_PIPE, - ACTIONS(3204), 1, - anon_sym_CARET, - ACTIONS(3206), 1, - anon_sym_AMP, - ACTIONS(3216), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3218), 1, - anon_sym_QMARK, - ACTIONS(3456), 1, + 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(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2658), 7, + anon_sym_COMMA, anon_sym_RPAREN, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3194), 2, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + ACTIONS(2656), 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, + [88225] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3142), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + ACTIONS(3144), 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, + [88255] = 3, + ACTIONS(4539), 1, + anon_sym_LF, + ACTIONS(3), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(4541), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3196), 2, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3208), 2, + 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(3210), 2, anon_sym_GT, - anon_sym_LT, - ACTIONS(3212), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3214), 2, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [52598] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2358), 1, - anon_sym_RBRACK, - ACTIONS(2488), 1, - anon_sym_LBRACK, - ACTIONS(3166), 1, - anon_sym_LPAREN2, - ACTIONS(3360), 1, - anon_sym_SLASH, - ACTIONS(3362), 1, + [88283] = 11, + ACTIONS(4547), 1, + anon_sym_LF, + ACTIONS(4620), 1, + anon_sym_PIPE, + ACTIONS(4622), 1, anon_sym_CARET, - ACTIONS(3364), 1, + ACTIONS(4624), 1, anon_sym_AMP, - ACTIONS(3388), 1, + ACTIONS(3), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(4549), 2, anon_sym_PIPE_PIPE, - ACTIONS(3390), 1, anon_sym_AMP_AMP, - ACTIONS(3392), 1, - anon_sym_PIPE, - ACTIONS(3394), 1, - anon_sym_QMARK, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3356), 2, + ACTIONS(4612), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3358), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3366), 2, + ACTIONS(4626), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3368), 2, + 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_LT, - ACTIONS(3370), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3372), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [52667] = 20, + anon_sym_LT, + [88327] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2486), 1, + ACTIONS(3162), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2488), 1, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + ACTIONS(3164), 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, - ACTIONS(3198), 1, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + [88357] = 3, + ACTIONS(4551), 1, + anon_sym_LF, + ACTIONS(3), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(4553), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3200), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(3202), 1, anon_sym_PIPE, - ACTIONS(3204), 1, anon_sym_CARET, - ACTIONS(3206), 1, anon_sym_AMP, - ACTIONS(3216), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3218), 1, - anon_sym_QMARK, - ACTIONS(3458), 1, - anon_sym_COLON, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3194), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3196), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3208), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3210), 2, anon_sym_GT, - anon_sym_LT, - ACTIONS(3212), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3214), 2, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [52736] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2486), 1, - anon_sym_LPAREN2, - ACTIONS(2488), 1, - anon_sym_LBRACK, - ACTIONS(3198), 1, - anon_sym_SLASH, - ACTIONS(3200), 1, + [88385] = 12, + ACTIONS(4616), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4618), 1, anon_sym_AMP_AMP, - ACTIONS(3202), 1, + ACTIONS(4620), 1, anon_sym_PIPE, - ACTIONS(3204), 1, + ACTIONS(4622), 1, anon_sym_CARET, - ACTIONS(3206), 1, + ACTIONS(4624), 1, anon_sym_AMP, - ACTIONS(3216), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3218), 1, - anon_sym_QMARK, - ACTIONS(3460), 1, - anon_sym_COLON, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3194), 2, + 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(3196), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3208), 2, + ACTIONS(4626), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3210), 2, + 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_LT, - ACTIONS(3212), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3214), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [52805] = 20, + anon_sym_LT, + [88431] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2364), 1, - anon_sym_RBRACK, - ACTIONS(2488), 1, + 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, - ACTIONS(3166), 1, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + [88461] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3182), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(3360), 1, - anon_sym_SLASH, - ACTIONS(3362), 1, - anon_sym_CARET, - ACTIONS(3364), 1, - anon_sym_AMP, - ACTIONS(3388), 1, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + ACTIONS(3184), 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, + [88491] = 12, + ACTIONS(4616), 1, anon_sym_PIPE_PIPE, - ACTIONS(3390), 1, + ACTIONS(4618), 1, anon_sym_AMP_AMP, - ACTIONS(3392), 1, + ACTIONS(4620), 1, anon_sym_PIPE, - ACTIONS(3394), 1, - anon_sym_QMARK, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3356), 2, + ACTIONS(4622), 1, + anon_sym_CARET, + ACTIONS(4624), 1, + anon_sym_AMP, + ACTIONS(4664), 1, + anon_sym_LF, + ACTIONS(3), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(4612), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3358), 2, + 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(3366), 2, + ACTIONS(4628), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [88537] = 10, + ACTIONS(4547), 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, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4626), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3368), 2, + ACTIONS(4630), 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, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4628), 4, anon_sym_GT, - anon_sym_LT, - ACTIONS(3370), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3372), 2, + anon_sym_LT, + [88579] = 12, + ACTIONS(4547), 1, + anon_sym_LF, + ACTIONS(4549), 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(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, - [52874] = 20, + 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, + [88625] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2486), 1, + ACTIONS(4551), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2488), 1, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + ACTIONS(4553), 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, - ACTIONS(3198), 1, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + [88655] = 3, + ACTIONS(3252), 1, + anon_sym_LF, + ACTIONS(3), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3254), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3200), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(3202), 1, anon_sym_PIPE, - ACTIONS(3204), 1, anon_sym_CARET, - ACTIONS(3206), 1, anon_sym_AMP, - ACTIONS(3216), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3218), 1, - anon_sym_QMARK, - ACTIONS(3462), 1, - anon_sym_RPAREN, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3194), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3196), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3208), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3210), 2, anon_sym_GT, - anon_sym_LT, - ACTIONS(3212), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3214), 2, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [52943] = 20, + [88683] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2486), 1, + ACTIONS(3120), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2488), 1, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + ACTIONS(3122), 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, - ACTIONS(3198), 1, - anon_sym_SLASH, - ACTIONS(3200), 1, + 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(3202), 1, + ACTIONS(4620), 1, anon_sym_PIPE, - ACTIONS(3204), 1, + ACTIONS(4622), 1, anon_sym_CARET, - ACTIONS(3206), 1, + ACTIONS(4624), 1, anon_sym_AMP, - ACTIONS(3216), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3218), 1, - anon_sym_QMARK, - ACTIONS(3464), 1, - anon_sym_RPAREN, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3194), 2, + ACTIONS(4666), 1, + anon_sym_LF, + ACTIONS(3), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(4612), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3196), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3208), 2, + ACTIONS(4626), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3210), 2, + 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_LT, - ACTIONS(3212), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3214), 2, + anon_sym_LT, + [88759] = 9, + ACTIONS(4547), 1, + anon_sym_LF, + ACTIONS(4624), 1, + anon_sym_AMP, + 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, - [53012] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2488), 1, - anon_sym_LBRACK, - ACTIONS(3166), 1, - anon_sym_LPAREN2, - ACTIONS(3360), 1, + ACTIONS(4614), 3, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3362), 1, - anon_sym_CARET, - ACTIONS(3364), 1, - anon_sym_AMP, - ACTIONS(3388), 1, + anon_sym_PERCENT, + ACTIONS(4549), 4, anon_sym_PIPE_PIPE, - ACTIONS(3390), 1, anon_sym_AMP_AMP, - ACTIONS(3392), 1, anon_sym_PIPE, - ACTIONS(3394), 1, - anon_sym_QMARK, - ACTIONS(3466), 1, - anon_sym_RBRACK, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3356), 2, + anon_sym_CARET, + ACTIONS(4628), 4, + 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_LF, + ACTIONS(3), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(4561), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3358), 2, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3366), 2, + 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(3368), 2, anon_sym_GT, - anon_sym_LT, - ACTIONS(3370), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3372), 2, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [53081] = 20, + [88875] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2486), 1, + ACTIONS(3128), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2488), 1, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + ACTIONS(3130), 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, - ACTIONS(3198), 1, - anon_sym_SLASH, - ACTIONS(3200), 1, + 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(3202), 1, + ACTIONS(4620), 1, anon_sym_PIPE, - ACTIONS(3204), 1, + ACTIONS(4622), 1, anon_sym_CARET, - ACTIONS(3206), 1, + ACTIONS(4624), 1, anon_sym_AMP, - ACTIONS(3216), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3218), 1, - anon_sym_QMARK, - ACTIONS(3468), 1, - anon_sym_COMMA, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3194), 2, + 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(3196), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3208), 2, + ACTIONS(4626), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3210), 2, + 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_LT, - ACTIONS(3212), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3214), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [53150] = 20, + anon_sym_LT, + [88951] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2486), 1, + ACTIONS(3220), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2488), 1, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + ACTIONS(3222), 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, - ACTIONS(3198), 1, + 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, - ACTIONS(3200), 1, + anon_sym_PERCENT, + ACTIONS(4549), 13, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(3202), 1, anon_sym_PIPE, - ACTIONS(3204), 1, anon_sym_CARET, - ACTIONS(3206), 1, anon_sym_AMP, - ACTIONS(3216), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3218), 1, - anon_sym_QMARK, - ACTIONS(3470), 1, - anon_sym_COLON, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3194), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3196), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3208), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3210), 2, anon_sym_GT, - anon_sym_LT, - ACTIONS(3212), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3214), 2, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [53219] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2304), 1, - anon_sym_RBRACK, - ACTIONS(2488), 1, - anon_sym_LBRACK, - ACTIONS(3166), 1, - anon_sym_LPAREN2, - ACTIONS(3360), 1, - anon_sym_SLASH, - ACTIONS(3362), 1, - anon_sym_CARET, - ACTIONS(3364), 1, - anon_sym_AMP, - ACTIONS(3388), 1, + [89013] = 12, + ACTIONS(4616), 1, anon_sym_PIPE_PIPE, - ACTIONS(3390), 1, + ACTIONS(4618), 1, anon_sym_AMP_AMP, - ACTIONS(3392), 1, + ACTIONS(4620), 1, anon_sym_PIPE, - ACTIONS(3394), 1, - anon_sym_QMARK, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3356), 2, + ACTIONS(4622), 1, + anon_sym_CARET, + ACTIONS(4624), 1, + anon_sym_AMP, + ACTIONS(4670), 1, + anon_sym_LF, + ACTIONS(3), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(4612), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3358), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3366), 2, + ACTIONS(4626), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3368), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3370), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3372), 2, + ACTIONS(4630), 2, anon_sym_LT_LT, - anon_sym_GT_GT, - [53288] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2354), 1, - anon_sym_RBRACK, - ACTIONS(2488), 1, - anon_sym_LBRACK, - ACTIONS(3166), 1, - anon_sym_LPAREN2, - ACTIONS(3360), 1, + anon_sym_GT_GT, + ACTIONS(4614), 3, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3362), 1, - anon_sym_CARET, - ACTIONS(3364), 1, - anon_sym_AMP, - ACTIONS(3388), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3390), 1, - anon_sym_AMP_AMP, - ACTIONS(3392), 1, - anon_sym_PIPE, - ACTIONS(3394), 1, - anon_sym_QMARK, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3356), 2, + 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, + anon_sym_LF, + ACTIONS(3), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(4600), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3358), 2, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3366), 2, + 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(3368), 2, anon_sym_GT, - anon_sym_LT, - ACTIONS(3370), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3372), 2, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [53357] = 20, + [89087] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2486), 1, + ACTIONS(4559), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2488), 1, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + ACTIONS(4561), 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, - ACTIONS(3198), 1, + 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, - ACTIONS(3200), 1, + anon_sym_PERCENT, + ACTIONS(4549), 11, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(3202), 1, anon_sym_PIPE, - ACTIONS(3204), 1, anon_sym_CARET, - ACTIONS(3206), 1, anon_sym_AMP, - ACTIONS(3216), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3218), 1, - anon_sym_QMARK, - ACTIONS(3472), 1, - anon_sym_COLON, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3194), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3196), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3208), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3210), 2, anon_sym_GT, - anon_sym_LT, - ACTIONS(3212), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3214), 2, + 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, - [53426] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2486), 1, - anon_sym_LPAREN2, - ACTIONS(2488), 1, - anon_sym_LBRACK, - ACTIONS(3198), 1, + ACTIONS(4614), 3, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3200), 1, + 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, - ACTIONS(3202), 1, anon_sym_PIPE, - ACTIONS(3204), 1, anon_sym_CARET, - ACTIONS(3206), 1, anon_sym_AMP, - ACTIONS(3216), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3218), 1, - anon_sym_QMARK, - ACTIONS(3474), 1, - anon_sym_RPAREN, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3194), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [89187] = 8, + 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(3196), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3208), 2, + ACTIONS(4626), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3210), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3212), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3214), 2, + ACTIONS(4630), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [53495] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2356), 1, - anon_sym_RBRACK, - ACTIONS(2488), 1, - anon_sym_LBRACK, - ACTIONS(3166), 1, - anon_sym_LPAREN2, - ACTIONS(3360), 1, + ACTIONS(4614), 3, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3362), 1, + 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, - ACTIONS(3364), 1, anon_sym_AMP, - ACTIONS(3388), 1, + [89225] = 12, + ACTIONS(4616), 1, anon_sym_PIPE_PIPE, - ACTIONS(3390), 1, + ACTIONS(4618), 1, anon_sym_AMP_AMP, - ACTIONS(3392), 1, + ACTIONS(4620), 1, anon_sym_PIPE, - ACTIONS(3394), 1, - anon_sym_QMARK, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3356), 2, + ACTIONS(4622), 1, + anon_sym_CARET, + ACTIONS(4624), 1, + anon_sym_AMP, + ACTIONS(4672), 1, + anon_sym_LF, + ACTIONS(3), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(4612), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3358), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3366), 2, + ACTIONS(4626), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3368), 2, + 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_LT, - ACTIONS(3370), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3372), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [53564] = 13, + anon_sym_LT, + [89271] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(53), 1, + ACTIONS(3098), 1, anon_sym_const, - ACTIONS(2010), 1, + ACTIONS(3100), 17, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2012), 1, anon_sym_STAR, - ACTIONS(3144), 1, + anon_sym___extension__, anon_sym_LBRACK, - STATE(799), 1, - sym_alignas_qualifier, - STATE(1658), 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, + anon_sym___aligned, + [89300] = 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(2273), 1, + sym__declarator, + STATE(2375), 1, + sym_parameter_list, + STATE(2409), 1, sym__abstract_declarator, - STATE(1691), 1, + 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, + [89347] = 5, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3361), 1, + anon_sym_const, + ACTIONS(4674), 1, + anon_sym___aligned, + ACTIONS(3363), 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, + [89378] = 10, + 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, + anon_sym_LBRACK, + ACTIONS(4660), 1, + anon_sym_COLON, + STATE(2049), 1, sym_parameter_list, - ACTIONS(3260), 2, + STATE(2196), 1, + sym_bitfield_clause, + STATE(2024), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(4676), 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, + [89419] = 3, + ACTIONS(3035), 1, + anon_sym_const, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3037), 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, + 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(1224), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3476), 3, + anon_sym_COLON, + [89446] = 5, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3285), 1, + anon_sym_const, + ACTIONS(4678), 1, + anon_sym___aligned, + ACTIONS(3287), 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, + [89477] = 5, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3379), 1, + anon_sym_const, + ACTIONS(4680), 1, + anon_sym___aligned, + ACTIONS(3381), 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, + [89508] = 5, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3260), 1, + anon_sym_const, + ACTIONS(4682), 1, + anon_sym___aligned, + ACTIONS(3262), 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, + [89539] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3102), 1, + anon_sym_const, + ACTIONS(3104), 17, + 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, + anon_sym___aligned, + [89568] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3035), 1, + anon_sym_const, + ACTIONS(3037), 17, + 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, + anon_sym___aligned, + [89597] = 3, + ACTIONS(3098), 1, + anon_sym_const, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3100), 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, + 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, + [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, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3336), 1, + anon_sym_const, + ACTIONS(4691), 1, + anon_sym___aligned, + ACTIONS(3338), 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, + [89690] = 3, + ACTIONS(3102), 1, + anon_sym_const, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3104), 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, + 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, + [89717] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3023), 1, + anon_sym_const, + ACTIONS(3025), 17, + 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, + anon_sym___aligned, + [89746] = 5, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3270), 1, + anon_sym_const, + ACTIONS(4693), 1, + anon_sym___aligned, + ACTIONS(3272), 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, + [89777] = 5, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3367), 1, + anon_sym_const, + ACTIONS(4695), 1, + anon_sym___aligned, + ACTIONS(3369), 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, + [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, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3385), 1, + anon_sym_const, + ACTIONS(4697), 1, + anon_sym___aligned, + ACTIONS(3387), 16, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_COLON, - STATE(1717), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - ACTIONS(3254), 8, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym___extension__, + anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -116386,31 +159123,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [53618] = 10, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_COLON, + [89886] = 5, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2935), 1, + ACTIONS(3373), 1, anon_sym_const, - ACTIONS(2948), 1, - anon_sym_LBRACE, - ACTIONS(3484), 1, - anon_sym_COLON, - STATE(841), 1, - sym_attribute_specifier, - STATE(1106), 1, - sym_enumerator_list, - ACTIONS(3478), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(3480), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(3482), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - ACTIONS(2937), 13, + ACTIONS(4699), 1, + anon_sym___aligned, + ACTIONS(3375), 16, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym___extension__, @@ -116424,40 +159151,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - [53666] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, + anon_sym_COLON, + [89917] = 3, + ACTIONS(3023), 1, anon_sym_const, - ACTIONS(2010), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3025), 17, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2012), 1, anon_sym_STAR, - ACTIONS(3144), 1, + anon_sym_SEMI, + anon_sym___extension__, anon_sym_LBRACK, - STATE(799), 1, - sym_alignas_qualifier, - STATE(1649), 1, - sym__abstract_declarator, - STATE(1691), 1, - sym_parameter_list, - ACTIONS(3260), 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(1141), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3487), 3, + anon_sym_COLON, + [89944] = 3, + ACTIONS(3546), 1, + anon_sym_const, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3548), 16, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_COLON, - STATE(1717), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - ACTIONS(3254), 8, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym___extension__, + anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -116465,72 +159196,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [53720] = 4, - ACTIONS(3), 1, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_COLON, + [89970] = 3, + ACTIONS(3488), 1, + anon_sym_const, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(3238), 1, - anon_sym_SEMI, - ACTIONS(1756), 7, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1750), 18, + ACTIONS(3490), 16, + anon_sym_COMMA, + anon_sym_RPAREN, 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___extension__, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [53756] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 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, + [89996] = 3, + ACTIONS(3562), 1, anon_sym_const, - ACTIONS(2010), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3564), 16, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2012), 1, anon_sym_STAR, - ACTIONS(3144), 1, + anon_sym___extension__, anon_sym_LBRACK, - STATE(799), 1, - sym_alignas_qualifier, - STATE(1683), 1, - sym__abstract_declarator, - STATE(1691), 1, - sym_parameter_list, - ACTIONS(3260), 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(1141), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3489), 3, + anon_sym_COLON, + [90022] = 3, + ACTIONS(3449), 1, + anon_sym_const, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3451), 16, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_COLON, - STATE(1717), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - ACTIONS(3254), 8, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym___extension__, + anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -116538,87 +159265,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [53810] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2486), 1, - anon_sym_LPAREN2, - ACTIONS(2488), 1, - anon_sym_LBRACK, - ACTIONS(3198), 1, - anon_sym_SLASH, - ACTIONS(3200), 1, - anon_sym_AMP_AMP, - ACTIONS(3202), 1, - anon_sym_PIPE, - ACTIONS(3204), 1, - anon_sym_CARET, - ACTIONS(3206), 1, - anon_sym_AMP, - ACTIONS(3216), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3218), 1, - anon_sym_QMARK, - STATE(765), 1, - sym_argument_list, - ACTIONS(2490), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2492), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3194), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3196), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3208), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3210), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3212), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3214), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [53876] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_COLON, + [90048] = 3, + ACTIONS(3558), 1, anon_sym_const, - ACTIONS(2010), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3560), 16, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2012), 1, anon_sym_STAR, - ACTIONS(3144), 1, + anon_sym___extension__, anon_sym_LBRACK, - STATE(799), 1, - sym_alignas_qualifier, - STATE(1682), 1, - sym__abstract_declarator, - STATE(1691), 1, - sym_parameter_list, - ACTIONS(3260), 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(1222), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3491), 3, + anon_sym_COLON, + [90074] = 3, + ACTIONS(3425), 1, + anon_sym_const, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3427), 16, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_COLON, - STATE(1717), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - ACTIONS(3254), 8, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym___extension__, + anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -116626,82 +159311,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [53930] = 14, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_COLON, + [90100] = 12, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1835), 1, + ACTIONS(2051), 1, anon_sym___based, - ACTIONS(3220), 1, + ACTIONS(3800), 1, sym_identifier, - ACTIONS(3222), 1, + ACTIONS(3802), 1, anon_sym_LPAREN2, - ACTIONS(3224), 1, + ACTIONS(3804), 1, anon_sym_STAR, - ACTIONS(3228), 1, + ACTIONS(3808), 1, sym_primitive_type, - STATE(1382), 1, - sym_ms_call_modifier, - STATE(1421), 1, - sym_macro_modifier, - STATE(1626), 1, + STATE(1999), 1, sym__type_declarator, - STATE(2043), 1, + STATE(2188), 1, + sym__type_definition_declarators, + STATE(3321), 1, sym_ms_based_modifier, - ACTIONS(43), 2, - anon_sym___init, - anon_sym___exit, - ACTIONS(3226), 4, + ACTIONS(3806), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1443), 5, + STATE(2089), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - ACTIONS(45), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [53986] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, + [90144] = 3, + ACTIONS(3566), 1, anon_sym_const, - ACTIONS(2010), 1, - anon_sym_LPAREN2, - ACTIONS(2012), 1, - anon_sym_STAR, - ACTIONS(3144), 1, - anon_sym_LBRACK, - STATE(799), 1, - sym_alignas_qualifier, - STATE(1672), 1, - sym__abstract_declarator, - STATE(1691), 1, - sym_parameter_list, - ACTIONS(3260), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1141), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3252), 3, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3568), 16, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_COLON, - STATE(1717), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - ACTIONS(3254), 8, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym___extension__, + anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -116709,201 +159366,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [54040] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym_const, - ACTIONS(2010), 1, - anon_sym_LPAREN2, - ACTIONS(2012), 1, - anon_sym_STAR, - ACTIONS(3144), 1, - anon_sym_LBRACK, - STATE(799), 1, - sym_alignas_qualifier, - STATE(1657), 1, - sym__abstract_declarator, - STATE(1691), 1, - sym_parameter_list, - ACTIONS(3260), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1141), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3138), 3, - anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_COLON, - STATE(1717), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - ACTIONS(3254), 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, - [54094] = 12, + [90170] = 12, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1831), 1, - anon_sym_LPAREN2, - ACTIONS(1833), 1, - anon_sym_STAR, - ACTIONS(1835), 1, + ACTIONS(2051), 1, anon_sym___based, - ACTIONS(3136), 1, + ACTIONS(3800), 1, sym_identifier, - STATE(799), 1, - sym_alignas_qualifier, - STATE(1473), 1, - sym__declarator, - STATE(2174), 1, - sym_ms_based_modifier, - ACTIONS(55), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1141), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(1569), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(53), 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, - [54145] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1831), 1, + ACTIONS(3802), 1, anon_sym_LPAREN2, - ACTIONS(1833), 1, + ACTIONS(3804), 1, anon_sym_STAR, - ACTIONS(1835), 1, - anon_sym___based, - ACTIONS(3493), 1, - sym_identifier, - STATE(558), 1, - sym__old_style_function_declarator, - STATE(1414), 1, - sym_ms_call_modifier, - STATE(1472), 1, - sym_macro_modifier, - STATE(1568), 1, - sym__declarator, - STATE(1569), 1, - sym_function_declarator, - STATE(1647), 1, - sym__declaration_declarator, - STATE(1739), 1, - sym__function_declaration_declarator, - STATE(1879), 1, - sym_init_declarator, - STATE(2174), 1, + 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(43), 2, - anon_sym___init, - anon_sym___exit, - STATE(1581), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - ACTIONS(45), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [54206] = 12, + 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(1835), 1, + ACTIONS(2051), 1, anon_sym___based, - ACTIONS(3262), 1, + ACTIONS(3800), 1, sym_identifier, - ACTIONS(3264), 1, + ACTIONS(3802), 1, anon_sym_LPAREN2, - ACTIONS(3266), 1, + ACTIONS(3804), 1, anon_sym_STAR, - STATE(799), 1, - sym_alignas_qualifier, - STATE(1397), 1, - sym__field_declarator, - STATE(2274), 1, + 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(55), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1141), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(1438), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - ACTIONS(53), 9, - anon_sym___extension__, + 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, anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [54257] = 12, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(1831), 1, + ACTIONS(3470), 16, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(1833), 1, anon_sym_STAR, - ACTIONS(1835), 1, - anon_sym___based, - ACTIONS(3136), 1, - sym_identifier, - STATE(799), 1, - sym_alignas_qualifier, - STATE(1476), 1, - sym__declarator, - STATE(2174), 1, - sym_ms_based_modifier, - ACTIONS(55), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1141), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(1569), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(53), 9, anon_sym___extension__, - anon_sym_const, + anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -116911,126 +159453,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [54308] = 17, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_COLON, + [90284] = 12, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1831), 1, - anon_sym_LPAREN2, - ACTIONS(1833), 1, - anon_sym_STAR, - ACTIONS(1835), 1, + ACTIONS(2051), 1, anon_sym___based, - ACTIONS(3493), 1, + ACTIONS(3800), 1, sym_identifier, - STATE(548), 1, - sym__old_style_function_declarator, - STATE(1415), 1, - sym_ms_call_modifier, - STATE(1479), 1, - sym_macro_modifier, - STATE(1555), 1, - sym__declarator, - STATE(1569), 1, - sym_function_declarator, - STATE(1637), 1, - sym__declaration_declarator, - STATE(1739), 1, - sym__function_declaration_declarator, - STATE(1874), 1, - sym_init_declarator, - STATE(2174), 1, + 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(2159), 1, + sym__type_definition_declarators, + STATE(3321), 1, sym_ms_based_modifier, - ACTIONS(43), 2, - anon_sym___init, - anon_sym___exit, - STATE(1581), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - ACTIONS(45), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [54369] = 17, + 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, + [90328] = 12, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1831), 1, - anon_sym_LPAREN2, - ACTIONS(1833), 1, - anon_sym_STAR, - ACTIONS(1835), 1, + ACTIONS(2051), 1, anon_sym___based, - ACTIONS(3493), 1, + ACTIONS(3800), 1, sym_identifier, - STATE(598), 1, - sym__old_style_function_declarator, - STATE(1416), 1, - sym_ms_call_modifier, - STATE(1475), 1, - sym_macro_modifier, - STATE(1561), 1, - sym__declarator, - STATE(1569), 1, - sym_function_declarator, - STATE(1679), 1, - sym__declaration_declarator, - STATE(1739), 1, - sym__function_declaration_declarator, - STATE(1875), 1, - sym_init_declarator, - STATE(2174), 1, + 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(2173), 1, + sym__type_definition_declarators, + STATE(3321), 1, sym_ms_based_modifier, - ACTIONS(43), 2, - anon_sym___init, - anon_sym___exit, - STATE(1581), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - ACTIONS(45), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [54430] = 12, + 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, + [90372] = 12, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1831), 1, - anon_sym_LPAREN2, - ACTIONS(1833), 1, - anon_sym_STAR, - ACTIONS(1835), 1, + ACTIONS(2051), 1, anon_sym___based, - ACTIONS(3136), 1, + ACTIONS(3800), 1, sym_identifier, - STATE(799), 1, - sym_alignas_qualifier, - STATE(1465), 1, - sym__declarator, - STATE(2174), 1, + 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(55), 2, + 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, + anon_sym_const, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3572), 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, - STATE(1141), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(1569), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(53), 9, + anon_sym_COLON, + [90442] = 3, + ACTIONS(3504), 1, + anon_sym_const, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3506), 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, @@ -117038,38 +159595,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [54481] = 12, - ACTIONS(3), 1, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_COLON, + [90468] = 3, + ACTIONS(3429), 1, + anon_sym_const, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(1835), 1, - anon_sym___based, - ACTIONS(3262), 1, - sym_identifier, - ACTIONS(3264), 1, + ACTIONS(3431), 16, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(3266), 1, anon_sym_STAR, - STATE(799), 1, - sym_alignas_qualifier, - STATE(1392), 1, - sym__field_declarator, - STATE(2274), 1, - sym_ms_based_modifier, - ACTIONS(55), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1141), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(1438), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - ACTIONS(53), 9, anon_sym___extension__, - anon_sym_const, + anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -117077,82 +159618,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [54532] = 17, - ACTIONS(3), 1, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_COLON, + [90494] = 3, + ACTIONS(3554), 1, + anon_sym_const, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(1831), 1, + ACTIONS(3556), 16, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(1833), 1, anon_sym_STAR, - ACTIONS(1835), 1, - anon_sym___based, - ACTIONS(3493), 1, - sym_identifier, - STATE(562), 1, - sym__old_style_function_declarator, - STATE(1422), 1, - sym_ms_call_modifier, - STATE(1483), 1, - sym_macro_modifier, - STATE(1556), 1, - sym__declarator, - STATE(1569), 1, - sym_function_declarator, - STATE(1681), 1, - sym__declaration_declarator, - STATE(1739), 1, - sym__function_declaration_declarator, - STATE(1843), 1, - sym_init_declarator, - STATE(2174), 1, - sym_ms_based_modifier, - ACTIONS(43), 2, - anon_sym___init, - anon_sym___exit, - STATE(1581), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - ACTIONS(45), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [54593] = 12, - ACTIONS(3), 1, + 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, + [90520] = 3, + ACTIONS(2907), 1, + anon_sym_const, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(1835), 1, - anon_sym___based, - ACTIONS(3262), 1, - sym_identifier, - ACTIONS(3264), 1, + ACTIONS(2909), 16, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(3266), 1, anon_sym_STAR, - STATE(799), 1, - sym_alignas_qualifier, - STATE(1393), 1, - sym__field_declarator, - STATE(2274), 1, - sym_ms_based_modifier, - ACTIONS(55), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1141), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(1438), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - ACTIONS(53), 9, anon_sym___extension__, - anon_sym_const, + anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -117160,155 +159664,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [54644] = 16, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_COLON, + [90546] = 8, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1831), 1, + ACTIONS(4652), 1, anon_sym_LPAREN2, - ACTIONS(1833), 1, - anon_sym_STAR, - ACTIONS(1835), 1, - anon_sym___based, - ACTIONS(3493), 1, - sym_identifier, - STATE(1426), 1, - sym_ms_call_modifier, - STATE(1482), 1, - sym_macro_modifier, - STATE(1569), 1, - sym_function_declarator, - STATE(1631), 1, - sym__declarator, - STATE(1694), 1, - sym__declaration_declarator, - STATE(1739), 1, - sym__function_declaration_declarator, - STATE(1989), 1, - sym_init_declarator, - STATE(2174), 1, - sym_ms_based_modifier, - ACTIONS(43), 2, - anon_sym___init, - anon_sym___exit, - STATE(1581), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - ACTIONS(45), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [54702] = 16, + ACTIONS(4656), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4658), 1, + anon_sym_LBRACK, + STATE(2049), 1, + sym_parameter_list, + STATE(2024), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(4701), 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, + [90582] = 12, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1831), 1, - anon_sym_LPAREN2, - ACTIONS(1833), 1, - anon_sym_STAR, - ACTIONS(1835), 1, + ACTIONS(2051), 1, anon_sym___based, - ACTIONS(3493), 1, + ACTIONS(3800), 1, sym_identifier, - STATE(1419), 1, - sym_ms_call_modifier, - STATE(1470), 1, - sym_macro_modifier, - STATE(1569), 1, - sym_function_declarator, - STATE(1631), 1, - sym__declarator, - STATE(1679), 1, - sym__declaration_declarator, - STATE(1739), 1, - sym__function_declaration_declarator, - STATE(1875), 1, - sym_init_declarator, - STATE(2174), 1, - sym_ms_based_modifier, - ACTIONS(43), 2, - anon_sym___init, - anon_sym___exit, - STATE(1581), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - ACTIONS(45), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [54760] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1831), 1, + ACTIONS(3802), 1, anon_sym_LPAREN2, - ACTIONS(1833), 1, + ACTIONS(3804), 1, anon_sym_STAR, - ACTIONS(1835), 1, - anon_sym___based, - ACTIONS(3493), 1, - sym_identifier, - STATE(1423), 1, - sym_ms_call_modifier, - STATE(1467), 1, - sym_macro_modifier, - STATE(1569), 1, - sym_function_declarator, - STATE(1631), 1, - sym__declarator, - STATE(1637), 1, - sym__declaration_declarator, - STATE(1739), 1, - sym__function_declaration_declarator, - STATE(1874), 1, - sym_init_declarator, - STATE(2174), 1, - sym_ms_based_modifier, - ACTIONS(43), 2, - anon_sym___init, - anon_sym___exit, - STATE(1581), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - ACTIONS(45), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [54818] = 6, - ACTIONS(3), 1, - sym_comment, - STATE(819), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2612), 2, + ACTIONS(3808), 1, sym_primitive_type, - sym_identifier, - ACTIONS(2616), 4, + 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, - ACTIONS(2877), 6, + 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, + anon_sym_const, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3576), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(2874), 11, anon_sym___extension__, - anon_sym_const, + anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -117318,114 +159749,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - [54856] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1831), 1, - anon_sym_LPAREN2, - ACTIONS(1833), 1, - anon_sym_STAR, - ACTIONS(1835), 1, - anon_sym___based, - ACTIONS(3493), 1, - sym_identifier, - STATE(1413), 1, - sym_ms_call_modifier, - STATE(1484), 1, - sym_macro_modifier, - STATE(1569), 1, - sym_function_declarator, - STATE(1631), 1, - sym__declarator, - STATE(1647), 1, - sym__declaration_declarator, - STATE(1739), 1, - sym__function_declaration_declarator, - STATE(1879), 1, - sym_init_declarator, - STATE(2174), 1, - sym_ms_based_modifier, - ACTIONS(43), 2, - anon_sym___init, - anon_sym___exit, - STATE(1581), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - ACTIONS(45), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [54914] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1831), 1, - anon_sym_LPAREN2, - ACTIONS(1833), 1, - anon_sym_STAR, - ACTIONS(1835), 1, - anon_sym___based, - ACTIONS(3493), 1, - sym_identifier, - STATE(1422), 1, - sym_ms_call_modifier, - STATE(1483), 1, - sym_macro_modifier, - STATE(1569), 1, - sym_function_declarator, - STATE(1585), 1, - sym__declarator, - STATE(1681), 1, - sym__declaration_declarator, - STATE(1739), 1, - sym__function_declaration_declarator, - STATE(1843), 1, - sym_init_declarator, - STATE(2174), 1, - sym_ms_based_modifier, - ACTIONS(43), 2, - anon_sym___init, - anon_sym___exit, - STATE(1581), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - ACTIONS(45), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [54972] = 7, - ACTIONS(3), 1, + anon_sym_COLON, + [90652] = 3, + ACTIONS(3445), 1, + anon_sym_const, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(2909), 1, - sym_primitive_type, - ACTIONS(3495), 1, - sym_identifier, - STATE(1243), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(3497), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2903), 6, + ACTIONS(3447), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(2905), 11, anon_sym___extension__, - anon_sym_const, + anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -117435,283 +159772,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - [55012] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1831), 1, - anon_sym_LPAREN2, - ACTIONS(1833), 1, - anon_sym_STAR, - ACTIONS(1835), 1, - anon_sym___based, - ACTIONS(3493), 1, - sym_identifier, - STATE(1424), 1, - sym_ms_call_modifier, - STATE(1481), 1, - sym_macro_modifier, - STATE(1569), 1, - sym_function_declarator, - STATE(1631), 1, - sym__declarator, - STATE(1667), 1, - sym__declaration_declarator, - STATE(1739), 1, - sym__function_declaration_declarator, - STATE(1840), 1, - sym_init_declarator, - STATE(2174), 1, - sym_ms_based_modifier, - ACTIONS(43), 2, - anon_sym___init, - anon_sym___exit, - STATE(1581), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - ACTIONS(45), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [55070] = 16, - ACTIONS(3), 1, + anon_sym_COLON, + [90678] = 3, + ACTIONS(3578), 1, + anon_sym_const, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(1831), 1, + ACTIONS(3580), 16, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(1833), 1, anon_sym_STAR, - ACTIONS(1835), 1, - anon_sym___based, - ACTIONS(3493), 1, - sym_identifier, - STATE(1417), 1, - sym_ms_call_modifier, - STATE(1466), 1, - sym_macro_modifier, - STATE(1569), 1, - sym_function_declarator, - STATE(1631), 1, - sym__declarator, - STATE(1652), 1, - sym__declaration_declarator, - STATE(1739), 1, - sym__function_declaration_declarator, - STATE(1825), 1, - sym_init_declarator, - STATE(2174), 1, - sym_ms_based_modifier, - ACTIONS(43), 2, - anon_sym___init, - anon_sym___exit, - STATE(1581), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - ACTIONS(45), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [55128] = 16, - ACTIONS(3), 1, + 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, + [90704] = 3, + ACTIONS(2960), 1, + anon_sym_const, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(1831), 1, + ACTIONS(2962), 16, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(1833), 1, anon_sym_STAR, - ACTIONS(1835), 1, - anon_sym___based, - ACTIONS(3493), 1, - sym_identifier, - STATE(1428), 1, - sym_ms_call_modifier, - STATE(1487), 1, - sym_macro_modifier, - STATE(1569), 1, - sym_function_declarator, - STATE(1631), 1, - sym__declarator, - STATE(1681), 1, - sym__declaration_declarator, - STATE(1739), 1, - sym__function_declaration_declarator, - STATE(1843), 1, - sym_init_declarator, - STATE(2174), 1, - sym_ms_based_modifier, - ACTIONS(43), 2, - anon_sym___init, - anon_sym___exit, - STATE(1581), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - ACTIONS(45), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [55186] = 16, - ACTIONS(3), 1, + 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, + [90730] = 3, + ACTIONS(2964), 1, + anon_sym_const, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(1831), 1, + ACTIONS(2966), 16, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(1833), 1, anon_sym_STAR, - ACTIONS(1835), 1, - anon_sym___based, - ACTIONS(3493), 1, - sym_identifier, - STATE(1416), 1, - sym_ms_call_modifier, - STATE(1475), 1, - sym_macro_modifier, - STATE(1569), 1, - sym_function_declarator, - STATE(1578), 1, - sym__declarator, - STATE(1679), 1, - sym__declaration_declarator, - STATE(1739), 1, - sym__function_declaration_declarator, - STATE(1875), 1, - sym_init_declarator, - STATE(2174), 1, - sym_ms_based_modifier, - ACTIONS(43), 2, - anon_sym___init, - anon_sym___exit, - STATE(1581), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - ACTIONS(45), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [55244] = 16, - ACTIONS(3), 1, + 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, + [90756] = 3, + ACTIONS(3464), 1, + anon_sym_const, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(1831), 1, + ACTIONS(3466), 16, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(1833), 1, anon_sym_STAR, - ACTIONS(1835), 1, - anon_sym___based, - ACTIONS(3493), 1, - sym_identifier, - STATE(1415), 1, - sym_ms_call_modifier, - STATE(1479), 1, - sym_macro_modifier, - STATE(1569), 1, - sym_function_declarator, - STATE(1579), 1, - sym__declarator, - STATE(1637), 1, - sym__declaration_declarator, - STATE(1739), 1, - sym__function_declaration_declarator, - STATE(1874), 1, - sym_init_declarator, - STATE(2174), 1, - sym_ms_based_modifier, - ACTIONS(43), 2, - anon_sym___init, - anon_sym___exit, - STATE(1581), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - ACTIONS(45), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [55302] = 16, + 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, + [90782] = 12, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1831), 1, - anon_sym_LPAREN2, - ACTIONS(1833), 1, - anon_sym_STAR, - ACTIONS(1835), 1, + ACTIONS(2051), 1, anon_sym___based, - ACTIONS(3493), 1, + ACTIONS(3800), 1, sym_identifier, - STATE(1414), 1, - sym_ms_call_modifier, - STATE(1472), 1, - sym_macro_modifier, - STATE(1569), 1, - sym_function_declarator, - STATE(1580), 1, - sym__declarator, - STATE(1647), 1, - sym__declaration_declarator, - STATE(1739), 1, - sym__function_declaration_declarator, - STATE(1879), 1, - sym_init_declarator, - STATE(2174), 1, - sym_ms_based_modifier, - ACTIONS(43), 2, - anon_sym___init, - anon_sym___exit, - STATE(1581), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - ACTIONS(45), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [55360] = 7, - ACTIONS(3), 1, - sym_comment, - STATE(799), 1, - sym_alignas_qualifier, - ACTIONS(55), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(3501), 2, + ACTIONS(3802), 1, anon_sym_LPAREN2, + ACTIONS(3804), 1, anon_sym_STAR, - STATE(1141), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3499), 7, - anon_sym___based, + 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, - sym_primitive_type, - sym_identifier, - ACTIONS(53), 9, - anon_sym___extension__, + 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, @@ -117719,31 +159917,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [55399] = 7, - ACTIONS(3), 1, - sym_comment, - STATE(799), 1, - sym_alignas_qualifier, - ACTIONS(55), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(3505), 2, + anon_sym_COLON, + [90852] = 3, + ACTIONS(3405), 1, + anon_sym_const, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3407), 16, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, - STATE(1258), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3503), 7, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - sym_identifier, - ACTIONS(53), 9, anon_sym___extension__, - anon_sym_const, + anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -117751,66 +159940,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [55438] = 10, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_COLON, + [90878] = 8, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2224), 1, - sym_identifier, - ACTIONS(2232), 1, + ACTIONS(4652), 1, + anon_sym_LPAREN2, + ACTIONS(4656), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4658), 1, anon_sym_LBRACK, - STATE(1271), 1, - sym_gnu_asm_expression, - ACTIONS(33), 2, + STATE(2049), 1, + sym_parameter_list, + STATE(2024), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(4703), 11, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(1259), 3, - sym_preproc_call_expression, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(37), 4, anon_sym___read_mostly, + anon_sym___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(2228), 7, + anon_sym_COLON, + [90914] = 3, + ACTIONS(3417), 1, + anon_sym_const, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3419), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - [55483] = 7, - ACTIONS(3), 1, - sym_comment, - STATE(799), 1, - sym_alignas_qualifier, - ACTIONS(55), 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, - ACTIONS(3509), 2, + anon_sym_COLON, + [90940] = 3, + ACTIONS(3476), 1, + anon_sym_const, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3478), 16, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, - STATE(1253), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3507), 7, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - sym_identifier, - ACTIONS(53), 9, anon_sym___extension__, - anon_sym_const, + anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -117818,69 +160014,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [55522] = 13, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_COLON, + [90966] = 10, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2224), 1, - sym_identifier, - ACTIONS(2232), 1, + ACTIONS(4652), 1, + anon_sym_LPAREN2, + ACTIONS(4656), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4705), 1, + anon_sym_COMMA, + ACTIONS(4709), 1, anon_sym_LBRACK, - STATE(1266), 1, - sym_gnu_asm_expression, - STATE(1395), 1, - sym_attribute_specifier, - STATE(1446), 1, - aux_sym_type_definition_repeat1, - ACTIONS(33), 2, + 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___must_hold, - ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(97), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(3511), 2, - anon_sym_COMMA, - anon_sym_SEMI, - STATE(1259), 2, - sym_preproc_call_expression, - aux_sym_function_declarator_repeat1, - ACTIONS(37), 4, anon_sym___read_mostly, + anon_sym___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(2228), 4, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - [55573] = 7, - ACTIONS(3), 1, + [91006] = 3, + ACTIONS(3542), 1, + anon_sym_const, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - STATE(799), 1, - sym_alignas_qualifier, - ACTIONS(55), 2, + ACTIONS(3544), 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, - ACTIONS(3515), 2, + anon_sym_COLON, + [91032] = 3, + ACTIONS(3500), 1, + anon_sym_const, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3502), 16, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, - STATE(1141), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3513), 7, + 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, + [91058] = 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(2169), 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, - sym_primitive_type, + STATE(2089), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [91102] = 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(53), 9, - anon_sym___extension__, + 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(2160), 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, + [91146] = 3, + ACTIONS(3421), 1, anon_sym_const, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3423), 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, @@ -117888,474 +160177,555 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [55612] = 8, - ACTIONS(3), 1, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_COLON, + [91172] = 3, + ACTIONS(3484), 1, + anon_sym_const, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(2224), 1, - sym_identifier, - ACTIONS(33), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(35), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(3519), 3, + ACTIONS(3486), 16, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym___extension__, anon_sym_LBRACK, - anon_sym_asm, - anon_sym___asm__, - STATE(1263), 3, - sym_preproc_call_expression, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(37), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - ACTIONS(3517), 7, + 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, + [91198] = 3, + ACTIONS(3413), 1, + anon_sym_const, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3415), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - [55652] = 13, - ACTIONS(3), 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, + [91224] = 3, + ACTIONS(3492), 1, + anon_sym_const, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(1831), 1, + ACTIONS(3494), 16, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(1833), 1, anon_sym_STAR, - ACTIONS(1835), 1, - anon_sym___based, - ACTIONS(3136), 1, - sym_identifier, - STATE(590), 1, - sym__old_style_function_declarator, - STATE(1453), 1, - sym_ms_call_modifier, - STATE(1513), 1, - sym_macro_modifier, - STATE(1582), 1, - sym__declarator, - STATE(2174), 1, - sym_ms_based_modifier, - ACTIONS(43), 2, - anon_sym___init, - anon_sym___exit, - STATE(1569), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(45), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [55702] = 14, + 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, + [91250] = 8, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1835), 1, - anon_sym___based, - ACTIONS(3262), 1, - sym_identifier, - ACTIONS(3264), 1, + ACTIONS(4652), 1, anon_sym_LPAREN2, - ACTIONS(3266), 1, - anon_sym_STAR, - ACTIONS(3521), 1, + ACTIONS(4656), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4658), 1, + 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, - STATE(1386), 1, - sym__field_declarator, - STATE(1562), 1, - sym__field_declaration_declarator, - STATE(2273), 1, - sym_attribute_specifier, - STATE(2274), 1, - sym_ms_based_modifier, - ACTIONS(33), 2, anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(37), 4, anon_sym___read_mostly, + anon_sym___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - STATE(1438), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [55754] = 8, + anon_sym_COLON, + [91286] = 8, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2224), 1, - sym_identifier, - ACTIONS(33), 2, + ACTIONS(4652), 1, + anon_sym_LPAREN2, + ACTIONS(4656), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4658), 1, + 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_COMMA, + anon_sym_SEMI, anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(3525), 3, - anon_sym_LBRACK, - anon_sym_asm, - anon_sym___asm__, - STATE(1263), 3, - sym_preproc_call_expression, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(37), 4, anon_sym___read_mostly, + anon_sym___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(3523), 7, + anon_sym_COLON, + [91322] = 3, + ACTIONS(3409), 1, + anon_sym_const, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3411), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - [55794] = 8, - ACTIONS(3), 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, + [91348] = 3, + ACTIONS(3550), 1, + anon_sym_const, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(3527), 1, - sym_identifier, - ACTIONS(3532), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(3535), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(3541), 3, + ACTIONS(3552), 16, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym___extension__, anon_sym_LBRACK, - anon_sym_asm, - anon_sym___asm__, - STATE(1263), 3, - sym_preproc_call_expression, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(3538), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - ACTIONS(3530), 7, + 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, + [91374] = 3, + ACTIONS(3508), 1, + anon_sym_const, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3510), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - [55834] = 14, + 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, + [91400] = 3, + ACTIONS(3441), 1, + anon_sym_const, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3443), 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, + [91426] = 14, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1835), 1, + ACTIONS(2047), 1, + anon_sym_LPAREN2, + ACTIONS(2049), 1, + anon_sym_STAR, + ACTIONS(2051), 1, anon_sym___based, - ACTIONS(3262), 1, + ACTIONS(4245), 1, sym_identifier, - ACTIONS(3264), 1, + 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, + 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(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2047), 1, anon_sym_LPAREN2, - ACTIONS(3266), 1, + ACTIONS(2049), 1, anon_sym_STAR, - ACTIONS(3543), 1, - anon_sym_SEMI, - STATE(1386), 1, - sym__field_declarator, - STATE(1566), 1, - sym__field_declaration_declarator, - STATE(2248), 1, - sym_attribute_specifier, - STATE(2274), 1, + ACTIONS(2051), 1, + anon_sym___based, + ACTIONS(4245), 1, + sym_identifier, + STATE(2115), 1, + sym_macro_modifier, + STATE(2209), 1, + sym_function_declarator, + STATE(2265), 1, + sym__declarator, + STATE(2368), 1, + sym__declaration_declarator, + STATE(2467), 1, + sym__function_declaration_declarator, + STATE(3337), 1, sym_ms_based_modifier, - ACTIONS(33), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(35), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(37), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - STATE(1438), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [55886] = 13, + ACTIONS(2111), 2, + anon_sym___init, + anon_sym___exit, + STATE(2213), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + [91520] = 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(2086), 1, + sym_macro_modifier, + STATE(2209), 1, + sym_function_declarator, + STATE(2242), 1, + sym__declarator, + STATE(2345), 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, + [91567] = 14, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1831), 1, + ACTIONS(2047), 1, anon_sym_LPAREN2, - ACTIONS(1833), 1, + ACTIONS(2049), 1, anon_sym_STAR, - ACTIONS(1835), 1, + ACTIONS(2051), 1, anon_sym___based, - ACTIONS(3136), 1, + ACTIONS(4245), 1, sym_identifier, - STATE(551), 1, - sym__old_style_function_declarator, - STATE(1461), 1, - sym_ms_call_modifier, - STATE(1509), 1, + STATE(2079), 1, sym_macro_modifier, - STATE(1588), 1, + STATE(2209), 1, + sym_function_declarator, + STATE(2331), 1, sym__declarator, - STATE(2174), 1, + STATE(2368), 1, + sym__declaration_declarator, + STATE(2467), 1, + sym__function_declaration_declarator, + STATE(3337), 1, sym_ms_based_modifier, - ACTIONS(43), 2, + ACTIONS(2111), 2, anon_sym___init, anon_sym___exit, - STATE(1569), 5, + STATE(2213), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, - sym_function_declarator, sym_array_declarator, - ACTIONS(45), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [55936] = 12, + [91614] = 11, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2224), 1, + ACTIONS(2051), 1, + anon_sym___based, + ACTIONS(3800), 1, sym_identifier, - ACTIONS(3519), 1, - anon_sym_LBRACK, - STATE(1395), 1, - sym_attribute_specifier, - STATE(1456), 1, - aux_sym_type_definition_repeat1, - ACTIONS(33), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(35), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(3545), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3547), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(1262), 2, - sym_preproc_call_expression, - aux_sym_function_declarator_repeat1, - ACTIONS(37), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - ACTIONS(3517), 4, + ACTIONS(3802), 1, anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - [55984] = 13, + 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, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1831), 1, + ACTIONS(2047), 1, anon_sym_LPAREN2, - ACTIONS(1833), 1, + ACTIONS(2049), 1, anon_sym_STAR, - ACTIONS(1835), 1, + ACTIONS(2051), 1, anon_sym___based, - ACTIONS(3136), 1, + ACTIONS(4245), 1, sym_identifier, - STATE(574), 1, - sym__old_style_function_declarator, - STATE(1457), 1, - sym_ms_call_modifier, - STATE(1540), 1, + STATE(2117), 1, sym_macro_modifier, - STATE(1576), 1, + STATE(2209), 1, + sym_function_declarator, + STATE(2322), 1, + sym__declaration_declarator, + STATE(2331), 1, sym__declarator, - STATE(2174), 1, + STATE(2467), 1, + sym__function_declaration_declarator, + STATE(3337), 1, sym_ms_based_modifier, - ACTIONS(43), 2, + ACTIONS(2111), 2, anon_sym___init, anon_sym___exit, - STATE(1569), 5, + STATE(2213), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, - sym_function_declarator, sym_array_declarator, - ACTIONS(45), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [56034] = 14, + [91702] = 11, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1835), 1, + ACTIONS(2051), 1, anon_sym___based, - ACTIONS(3262), 1, + ACTIONS(3790), 1, sym_identifier, - ACTIONS(3264), 1, + ACTIONS(3792), 1, anon_sym_LPAREN2, - ACTIONS(3266), 1, + ACTIONS(3794), 1, anon_sym_STAR, - ACTIONS(3549), 1, - anon_sym_SEMI, - STATE(1386), 1, - sym__field_declarator, - STATE(1553), 1, - sym__field_declaration_declarator, - STATE(2029), 1, - sym_attribute_specifier, - STATE(2274), 1, + ACTIONS(3798), 1, + sym_primitive_type, + STATE(2290), 1, + sym__type_declarator, + STATE(2971), 1, sym_ms_based_modifier, - ACTIONS(33), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(35), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(37), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - STATE(1438), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [56086] = 13, + 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, + [91743] = 14, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1831), 1, + ACTIONS(2047), 1, anon_sym_LPAREN2, - ACTIONS(1833), 1, + ACTIONS(2049), 1, anon_sym_STAR, - ACTIONS(1835), 1, + ACTIONS(2051), 1, anon_sym___based, - ACTIONS(3136), 1, + ACTIONS(4245), 1, sym_identifier, - STATE(586), 1, - sym__old_style_function_declarator, - STATE(1462), 1, - sym_ms_call_modifier, - STATE(1507), 1, + STATE(2094), 1, sym_macro_modifier, - STATE(1586), 1, + STATE(2209), 1, + sym_function_declarator, + STATE(2249), 1, sym__declarator, - STATE(2174), 1, + STATE(2322), 1, + sym__declaration_declarator, + STATE(2467), 1, + sym__function_declaration_declarator, + STATE(3337), 1, sym_ms_based_modifier, - ACTIONS(43), 2, + ACTIONS(2111), 2, anon_sym___init, anon_sym___exit, - STATE(1569), 5, + STATE(2213), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, - sym_function_declarator, sym_array_declarator, - ACTIONS(45), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [56136] = 5, + [91790] = 8, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3553), 1, + ACTIONS(4652), 1, anon_sym_LPAREN2, - STATE(1067), 1, - sym_preproc_argument_list, - ACTIONS(3555), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3551), 15, + 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_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, - [56170] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2224), 1, - sym_identifier, - ACTIONS(33), 2, + anon_sym_SEMI, anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(3519), 3, - anon_sym_LBRACK, - anon_sym_asm, - anon_sym___asm__, - STATE(1262), 3, - sym_preproc_call_expression, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(37), 4, anon_sym___read_mostly, + anon_sym___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - ACTIONS(3517), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + [91825] = 11, + 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, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - [56210] = 5, + ACTIONS(3794), 1, + anon_sym_STAR, + ACTIONS(3798), 1, + sym_primitive_type, + STATE(2292), 1, + sym__type_declarator, + STATE(2971), 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, + [91866] = 6, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3559), 1, + ACTIONS(4656), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3562), 1, + ACTIONS(4719), 1, anon_sym_LBRACK, - STATE(1272), 2, + STATE(2035), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3557), 17, + ACTIONS(4717), 12, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, @@ -118366,1925 +160736,1691 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - anon_sym_LBRACE, - anon_sym_EQ, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - [56243] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1295), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2838), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(3564), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2836), 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, - [56276] = 12, + [91897] = 14, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1831), 1, + ACTIONS(2047), 1, anon_sym_LPAREN2, - ACTIONS(1833), 1, + ACTIONS(2049), 1, anon_sym_STAR, - ACTIONS(1835), 1, + ACTIONS(2051), 1, anon_sym___based, - ACTIONS(3136), 1, + ACTIONS(4245), 1, sym_identifier, - STATE(1457), 1, - sym_ms_call_modifier, - STATE(1540), 1, + STATE(2116), 1, sym_macro_modifier, - STATE(1592), 1, + STATE(2209), 1, + sym_function_declarator, + STATE(2267), 1, sym__declarator, - STATE(2174), 1, + STATE(2365), 1, + sym__declaration_declarator, + STATE(2467), 1, + sym__function_declaration_declarator, + STATE(3337), 1, sym_ms_based_modifier, - ACTIONS(43), 2, + ACTIONS(2111), 2, anon_sym___init, anon_sym___exit, - STATE(1569), 5, + STATE(2213), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, - sym_function_declarator, sym_array_declarator, - ACTIONS(45), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [56323] = 10, + [91944] = 8, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3567), 1, - sym_identifier, - ACTIONS(3569), 1, - anon_sym_RPAREN, - ACTIONS(3571), 1, + ACTIONS(4652), 1, anon_sym_LPAREN2, - ACTIONS(3573), 1, - anon_sym_defined, - ACTIONS(3579), 1, - sym_number_literal, - ACTIONS(3575), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3577), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3581), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1276), 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, - [56366] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3583), 1, - anon_sym_COMMA, - ACTIONS(3585), 1, - anon_sym_RPAREN, - ACTIONS(3591), 1, - anon_sym_SLASH, - ACTIONS(3593), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3595), 1, - anon_sym_AMP_AMP, - ACTIONS(3597), 1, - anon_sym_PIPE, - ACTIONS(3599), 1, - anon_sym_CARET, - ACTIONS(3601), 1, - anon_sym_AMP, - STATE(1839), 1, - aux_sym_preproc_argument_list_repeat1, - ACTIONS(3587), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3589), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3603), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3605), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3607), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3609), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [56421] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3583), 1, + 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(4721), 10, anon_sym_COMMA, - ACTIONS(3591), 1, - anon_sym_SLASH, - ACTIONS(3593), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3595), 1, - anon_sym_AMP_AMP, - ACTIONS(3597), 1, - anon_sym_PIPE, - ACTIONS(3599), 1, - anon_sym_CARET, - ACTIONS(3601), 1, - anon_sym_AMP, - ACTIONS(3611), 1, - anon_sym_RPAREN, - STATE(1917), 1, - aux_sym_preproc_argument_list_repeat1, - ACTIONS(3587), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3589), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3603), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3605), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3607), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3609), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [56476] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3567), 1, - sym_identifier, - ACTIONS(3571), 1, - anon_sym_LPAREN2, - ACTIONS(3573), 1, - anon_sym_defined, - ACTIONS(3613), 1, - anon_sym_RPAREN, - ACTIONS(3615), 1, - sym_number_literal, - ACTIONS(3575), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3577), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3581), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1277), 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, - [56519] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(819), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2877), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(3617), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2874), 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, - [56552] = 12, + 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, + [91979] = 14, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1831), 1, + ACTIONS(2047), 1, anon_sym_LPAREN2, - ACTIONS(1833), 1, + ACTIONS(2049), 1, anon_sym_STAR, - ACTIONS(1835), 1, + ACTIONS(2051), 1, anon_sym___based, - ACTIONS(3136), 1, + ACTIONS(4245), 1, sym_identifier, - STATE(1462), 1, - sym_ms_call_modifier, - STATE(1507), 1, + STATE(2082), 1, sym_macro_modifier, - STATE(1601), 1, + STATE(2209), 1, + sym_function_declarator, + STATE(2331), 1, sym__declarator, - STATE(2174), 1, + STATE(2358), 1, + sym__declaration_declarator, + STATE(2467), 1, + sym__function_declaration_declarator, + STATE(3337), 1, sym_ms_based_modifier, - ACTIONS(43), 2, + ACTIONS(2111), 2, anon_sym___init, anon_sym___exit, - STATE(1569), 5, + STATE(2213), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, - sym_function_declarator, sym_array_declarator, - ACTIONS(45), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [56599] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3583), 1, - anon_sym_COMMA, - ACTIONS(3591), 1, - anon_sym_SLASH, - ACTIONS(3593), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3595), 1, - anon_sym_AMP_AMP, - ACTIONS(3597), 1, - anon_sym_PIPE, - ACTIONS(3599), 1, - anon_sym_CARET, - ACTIONS(3601), 1, - anon_sym_AMP, - ACTIONS(3621), 1, - anon_sym_RPAREN, - STATE(1766), 1, - aux_sym_preproc_argument_list_repeat1, - ACTIONS(3587), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3589), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3603), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3605), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3607), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3609), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [56654] = 14, + [92026] = 11, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1835), 1, + ACTIONS(2051), 1, anon_sym___based, - ACTIONS(1873), 1, - anon_sym_LPAREN2, - ACTIONS(1875), 1, - anon_sym_STAR, - ACTIONS(3136), 1, + ACTIONS(3790), 1, sym_identifier, - ACTIONS(3144), 1, - anon_sym_LBRACK, - STATE(1398), 1, - sym_macro_modifier, - STATE(1632), 1, - sym__declarator, - STATE(1691), 1, - sym_parameter_list, - STATE(1722), 1, - sym__abstract_declarator, - STATE(2174), 1, - sym_ms_based_modifier, - ACTIONS(43), 2, - anon_sym___init, - anon_sym___exit, - STATE(1717), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1569), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [56705] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1831), 1, + ACTIONS(3792), 1, anon_sym_LPAREN2, - ACTIONS(1833), 1, + ACTIONS(3794), 1, anon_sym_STAR, - ACTIONS(1835), 1, - anon_sym___based, - ACTIONS(3136), 1, - sym_identifier, - STATE(1453), 1, - sym_ms_call_modifier, - STATE(1513), 1, - sym_macro_modifier, - STATE(1602), 1, - sym__declarator, - STATE(2174), 1, + ACTIONS(3798), 1, + sym_primitive_type, + STATE(2282), 1, + sym__type_declarator, + STATE(2971), 1, sym_ms_based_modifier, - ACTIONS(43), 2, - anon_sym___init, - anon_sym___exit, - STATE(1569), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(45), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [56752] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1761), 1, - anon_sym_STAR, - ACTIONS(2825), 1, - anon_sym_LPAREN2, - STATE(1292), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(3623), 4, + ACTIONS(3796), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(1748), 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, - [56787] = 12, + 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(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1835), 1, - anon_sym___based, - ACTIONS(3262), 1, - sym_identifier, - ACTIONS(3264), 1, + ACTIONS(4652), 1, anon_sym_LPAREN2, - ACTIONS(3266), 1, - anon_sym_STAR, - STATE(1445), 1, - sym_ms_call_modifier, - STATE(1524), 1, - sym_macro_modifier, - STATE(1636), 1, - sym__field_declarator, - STATE(2274), 1, - sym_ms_based_modifier, - ACTIONS(43), 2, - anon_sym___init, - anon_sym___exit, - STATE(1438), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - ACTIONS(45), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [56834] = 12, + 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(4723), 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, + [92102] = 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(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(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1831), 1, + ACTIONS(2047), 1, anon_sym_LPAREN2, - ACTIONS(1833), 1, + ACTIONS(2049), 1, anon_sym_STAR, - ACTIONS(1835), 1, + ACTIONS(2051), 1, anon_sym___based, - ACTIONS(3136), 1, + ACTIONS(4245), 1, sym_identifier, - STATE(1450), 1, - sym_ms_call_modifier, - STATE(1533), 1, + STATE(2077), 1, sym_macro_modifier, - STATE(1630), 1, + STATE(2209), 1, + sym_function_declarator, + STATE(2319), 1, + sym__declaration_declarator, + STATE(2331), 1, sym__declarator, - STATE(2174), 1, + STATE(2467), 1, + sym__function_declaration_declarator, + STATE(3337), 1, sym_ms_based_modifier, - ACTIONS(43), 2, + ACTIONS(2111), 2, anon_sym___init, anon_sym___exit, - STATE(1569), 5, + STATE(2213), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, - sym_function_declarator, sym_array_declarator, - ACTIONS(45), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [56881] = 7, + [92184] = 11, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3626), 1, + ACTIONS(2051), 1, + anon_sym___based, + ACTIONS(3790), 1, sym_identifier, - ACTIONS(3632), 1, - sym_primitive_type, - STATE(1279), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2903), 2, + ACTIONS(3792), 1, anon_sym_LPAREN2, + ACTIONS(3794), 1, anon_sym_STAR, - ACTIONS(3629), 4, + ACTIONS(3798), 1, + sym_primitive_type, + STATE(2288), 1, + sym__type_declarator, + STATE(2971), 1, + sym_ms_based_modifier, + ACTIONS(3796), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2905), 12, - 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, - [56918] = 5, + 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(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - STATE(819), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2759), 2, + ACTIONS(2047), 1, anon_sym_LPAREN2, + ACTIONS(2049), 1, anon_sym_STAR, - ACTIONS(3635), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2757), 14, - anon_sym___extension__, + ACTIONS(2051), 1, 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, + ACTIONS(4245), 1, sym_identifier, - [56951] = 5, + STATE(2099), 1, + sym_macro_modifier, + STATE(2209), 1, + sym_function_declarator, + STATE(2331), 1, + sym__declarator, + STATE(2345), 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, + [92272] = 14, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - STATE(819), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2709), 2, + ACTIONS(2047), 1, anon_sym_LPAREN2, + ACTIONS(2049), 1, anon_sym_STAR, - ACTIONS(3638), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2707), 14, - anon_sym___extension__, + ACTIONS(2051), 1, 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, - [56984] = 5, - ACTIONS(3551), 1, - anon_sym_LF, - ACTIONS(3641), 1, - anon_sym_LPAREN2, - ACTIONS(3643), 1, - sym_comment, - STATE(1380), 1, - sym_preproc_argument_list, - ACTIONS(3555), 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, - [57017] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3567), 1, + ACTIONS(4245), 1, sym_identifier, - ACTIONS(3571), 1, - anon_sym_LPAREN2, - ACTIONS(3573), 1, - anon_sym_defined, - ACTIONS(3645), 1, - anon_sym_RPAREN, - ACTIONS(3647), 1, - sym_number_literal, - ACTIONS(3575), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3577), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3581), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1281), 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, - [57060] = 5, + STATE(2096), 1, + sym_macro_modifier, + STATE(2209), 1, + sym_function_declarator, + STATE(2303), 1, + sym__declaration_declarator, + STATE(2331), 1, + sym__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, + [92319] = 6, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - STATE(819), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2886), 2, + ACTIONS(4729), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4732), 1, + anon_sym_LBRACK, + STATE(2035), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(4727), 12, + anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(3649), 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, - 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, - [57093] = 5, + 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, + [92350] = 8, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - STATE(1289), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2860), 2, + ACTIONS(4652), 1, anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(3652), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2858), 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, - [57126] = 12, + 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(4734), 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, + [92385] = 14, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1831), 1, + ACTIONS(2047), 1, anon_sym_LPAREN2, - ACTIONS(1833), 1, + ACTIONS(2049), 1, anon_sym_STAR, - ACTIONS(1835), 1, + ACTIONS(2051), 1, anon_sym___based, - ACTIONS(3136), 1, + ACTIONS(4245), 1, sym_identifier, - STATE(1461), 1, - sym_ms_call_modifier, - STATE(1509), 1, + STATE(2109), 1, sym_macro_modifier, - STATE(1612), 1, + STATE(2209), 1, + sym_function_declarator, + STATE(2331), 1, sym__declarator, - STATE(2174), 1, + STATE(2365), 1, + sym__declaration_declarator, + STATE(2467), 1, + sym__function_declaration_declarator, + STATE(3337), 1, sym_ms_based_modifier, - ACTIONS(43), 2, + ACTIONS(2111), 2, anon_sym___init, anon_sym___exit, - STATE(1569), 5, + STATE(2213), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, - sym_function_declarator, sym_array_declarator, - ACTIONS(45), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [57173] = 5, + [92432] = 12, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - STATE(819), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2715), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(3655), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2713), 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, + ACTIONS(4736), 1, sym_identifier, - [57206] = 5, + ACTIONS(4738), 1, + aux_sym_preproc_if_token2, + ACTIONS(4740), 1, + aux_sym_preproc_else_token1, + ACTIONS(4742), 1, + aux_sym_preproc_elif_token1, + STATE(2145), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(2182), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(2286), 1, + sym_enumerator, + ACTIONS(4744), 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, + STATE(3190), 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, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - STATE(1288), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2870), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(3658), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2868), 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, + ACTIONS(4736), 1, sym_identifier, - [57239] = 9, + ACTIONS(4740), 1, + aux_sym_preproc_else_token1, + ACTIONS(4742), 1, + aux_sym_preproc_elif_token1, + ACTIONS(4746), 1, + aux_sym_preproc_if_token2, + STATE(2146), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(2172), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(2286), 1, + sym_enumerator, + ACTIONS(4744), 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, + 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, + [92516] = 12, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3661), 1, + ACTIONS(4736), 1, sym_identifier, - ACTIONS(3663), 1, - anon_sym_LPAREN2, - ACTIONS(3665), 1, - anon_sym_defined, - ACTIONS(3671), 1, - sym_number_literal, - ACTIONS(3667), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3669), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3673), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1363), 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, - [57279] = 9, + ACTIONS(4740), 1, + aux_sym_preproc_else_token1, + ACTIONS(4742), 1, + aux_sym_preproc_elif_token1, + ACTIONS(4748), 1, + aux_sym_preproc_if_token2, + STATE(2178), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(2181), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(2286), 1, + sym_enumerator, + ACTIONS(4744), 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, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + [92558] = 12, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3661), 1, + ACTIONS(4736), 1, sym_identifier, - ACTIONS(3663), 1, + ACTIONS(4740), 1, + aux_sym_preproc_else_token1, + ACTIONS(4742), 1, + aux_sym_preproc_elif_token1, + ACTIONS(4750), 1, + aux_sym_preproc_if_token2, + STATE(2186), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(2189), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(2286), 1, + sym_enumerator, + ACTIONS(4744), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(3125), 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, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + [92600] = 6, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4656), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4754), 1, + anon_sym_LBRACK, + STATE(2035), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(4752), 11, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(3665), 1, - anon_sym_defined, - ACTIONS(3675), 1, - sym_number_literal, - ACTIONS(3667), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3669), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3673), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1372), 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, - [57319] = 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, + [92630] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3567), 1, - sym_identifier, - ACTIONS(3571), 1, + ACTIONS(4758), 1, + anon_sym_LBRACK, + ACTIONS(4756), 13, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(3573), 1, - anon_sym_defined, - ACTIONS(3677), 1, - sym_number_literal, - ACTIONS(3575), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3577), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3581), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1350), 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, - [57359] = 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, + 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(3567), 1, + ACTIONS(2051), 1, + anon_sym___based, + ACTIONS(3882), 1, sym_identifier, - ACTIONS(3571), 1, + ACTIONS(3884), 1, anon_sym_LPAREN2, - ACTIONS(3573), 1, - anon_sym_defined, - ACTIONS(3679), 1, - sym_number_literal, - ACTIONS(3575), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3577), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3581), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1351), 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, - [57399] = 9, + 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, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3567), 1, - sym_identifier, - ACTIONS(3571), 1, + ACTIONS(4772), 1, + anon_sym_LBRACK, + ACTIONS(4770), 13, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(3573), 1, - anon_sym_defined, - ACTIONS(3681), 1, - sym_number_literal, - ACTIONS(3575), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3577), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3581), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1352), 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, - [57439] = 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, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [92789] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3567), 1, - sym_identifier, - ACTIONS(3571), 1, + ACTIONS(2013), 1, + anon_sym_LBRACK, + ACTIONS(2015), 13, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(3573), 1, - anon_sym_defined, - ACTIONS(3683), 1, - sym_number_literal, - ACTIONS(3575), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3577), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3581), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1313), 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, - [57479] = 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, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [92814] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3567), 1, - sym_identifier, - ACTIONS(3571), 1, + ACTIONS(4776), 1, + anon_sym_LBRACK, + ACTIONS(4774), 13, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(3573), 1, - anon_sym_defined, - ACTIONS(3685), 1, - sym_number_literal, - ACTIONS(3575), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3577), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3581), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1319), 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, - [57519] = 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, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [92839] = 11, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3567), 1, + ACTIONS(3902), 1, + anon_sym_LBRACE, + ACTIONS(4768), 1, + anon_sym___declspec, + ACTIONS(4778), 1, sym_identifier, - ACTIONS(3571), 1, + 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, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4782), 1, + anon_sym_LBRACK, + ACTIONS(4780), 13, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(3573), 1, - anon_sym_defined, - ACTIONS(3687), 1, - sym_number_literal, - ACTIONS(3575), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3577), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3581), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1336), 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, - [57559] = 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, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [92903] = 11, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3567), 1, - sym_identifier, - ACTIONS(3571), 1, + ACTIONS(2047), 1, anon_sym_LPAREN2, - ACTIONS(3573), 1, - anon_sym_defined, - ACTIONS(3689), 1, - sym_number_literal, - ACTIONS(3575), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3577), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3581), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1331), 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, - [57599] = 9, + 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, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3567), 1, + ACTIONS(2956), 1, + anon_sym_LBRACE, + ACTIONS(4768), 1, + anon_sym___declspec, + ACTIONS(4784), 1, sym_identifier, - ACTIONS(3571), 1, + STATE(1054), 1, + sym_field_declaration_list, + STATE(2398), 1, + sym_attribute_specifier, + STATE(2480), 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, + [92981] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4788), 1, + anon_sym_LBRACK, + ACTIONS(4786), 13, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(3573), 1, - anon_sym_defined, - ACTIONS(3691), 1, - sym_number_literal, - ACTIONS(3575), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3577), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3581), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1329), 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, - [57639] = 3, + 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, + anon_sym_COLON, + [93006] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3695), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3693), 15, + ACTIONS(2656), 1, + anon_sym_LBRACK, + ACTIONS(2658), 13, 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, - [57667] = 3, + 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, + anon_sym_COLON, + [93031] = 7, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3699), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3697), 15, + 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_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, - [57695] = 9, + anon_sym_SEMI, + anon_sym_asm, + anon_sym___asm__, + [93062] = 11, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3661), 1, + ACTIONS(2047), 1, + anon_sym_LPAREN2, + ACTIONS(2049), 1, + anon_sym_STAR, + ACTIONS(2051), 1, + anon_sym___based, + ACTIONS(3650), 1, sym_identifier, - ACTIONS(3663), 1, + STATE(2164), 1, + sym_macro_modifier, + STATE(2261), 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, + [93101] = 11, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2047), 1, anon_sym_LPAREN2, - ACTIONS(3665), 1, - anon_sym_defined, - ACTIONS(3701), 1, - sym_number_literal, - ACTIONS(3667), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3669), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3673), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1367), 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, - [57735] = 9, + ACTIONS(2049), 1, + anon_sym_STAR, + ACTIONS(2051), 1, + anon_sym___based, + ACTIONS(3650), 1, + sym_identifier, + STATE(2135), 1, + sym_macro_modifier, + STATE(2250), 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, + [93140] = 11, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3661), 1, + ACTIONS(3996), 1, + anon_sym_LBRACE, + ACTIONS(4768), 1, + anon_sym___declspec, + ACTIONS(4792), 1, sym_identifier, - ACTIONS(3663), 1, + STATE(1627), 1, + sym_field_declaration_list, + STATE(2387), 1, + sym_attribute_specifier, + STATE(2672), 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, + [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, - ACTIONS(3665), 1, - anon_sym_defined, - ACTIONS(3703), 1, - sym_number_literal, - ACTIONS(3667), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3669), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3673), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1361), 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, - [57775] = 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, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [93204] = 11, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3661), 1, + ACTIONS(2047), 1, + anon_sym_LPAREN2, + ACTIONS(2049), 1, + anon_sym_STAR, + ACTIONS(2051), 1, + anon_sym___based, + ACTIONS(3650), 1, sym_identifier, - ACTIONS(3663), 1, + STATE(2147), 1, + sym_macro_modifier, + STATE(2238), 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, + [93243] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2652), 1, + anon_sym_LBRACK, + ACTIONS(2654), 13, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(3665), 1, - anon_sym_defined, - ACTIONS(3705), 1, - sym_number_literal, - ACTIONS(3667), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3669), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3673), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1356), 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, - [57815] = 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, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [93268] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3661), 1, - sym_identifier, - ACTIONS(3663), 1, + ACTIONS(4796), 1, + anon_sym_LBRACK, + ACTIONS(4794), 13, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(3665), 1, - anon_sym_defined, - ACTIONS(3707), 1, - sym_number_literal, - ACTIONS(3667), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3669), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3673), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1378), 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, - [57855] = 12, + 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, + anon_sym_COLON, + [93293] = 7, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3591), 1, - anon_sym_SLASH, - ACTIONS(3599), 1, - anon_sym_CARET, - ACTIONS(3601), 1, - anon_sym_AMP, - ACTIONS(3711), 1, - anon_sym_PIPE, - ACTIONS(3587), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3589), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3603), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3605), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3607), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3609), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3709), 4, + ACTIONS(4800), 2, + 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_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [57901] = 9, + anon_sym_SEMI, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(4806), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + [93324] = 11, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3661), 1, + ACTIONS(2051), 1, + anon_sym___based, + ACTIONS(3882), 1, sym_identifier, - ACTIONS(3663), 1, + ACTIONS(3884), 1, anon_sym_LPAREN2, - ACTIONS(3665), 1, - anon_sym_defined, - ACTIONS(3713), 1, - sym_number_literal, - ACTIONS(3667), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3669), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3673), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1381), 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, - [57941] = 9, + ACTIONS(3886), 1, + anon_sym_STAR, + STATE(2161), 1, + sym_macro_modifier, + STATE(2293), 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, + [93363] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3661), 1, - sym_identifier, - ACTIONS(3663), 1, + ACTIONS(4811), 1, + anon_sym_LBRACK, + ACTIONS(4809), 13, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(3665), 1, - anon_sym_defined, - ACTIONS(3715), 1, - sym_number_literal, - ACTIONS(3667), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3669), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3673), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1373), 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, - [57981] = 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, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [93388] = 11, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3661), 1, + ACTIONS(2047), 1, + anon_sym_LPAREN2, + ACTIONS(2049), 1, + anon_sym_STAR, + ACTIONS(2051), 1, + anon_sym___based, + ACTIONS(3650), 1, sym_identifier, - ACTIONS(3663), 1, + 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(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4815), 1, + anon_sym_LBRACK, + ACTIONS(4813), 13, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(3665), 1, - anon_sym_defined, - ACTIONS(3717), 1, - sym_number_literal, - ACTIONS(3667), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3669), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3673), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1358), 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, - [58021] = 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, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [93452] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3661), 1, - sym_identifier, - ACTIONS(3663), 1, + ACTIONS(4819), 1, + anon_sym_LBRACK, + ACTIONS(4817), 13, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(3665), 1, - anon_sym_defined, - ACTIONS(3719), 1, - sym_number_literal, - ACTIONS(3667), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3669), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3673), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1365), 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, - [58061] = 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, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [93477] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3661), 1, - sym_identifier, - ACTIONS(3663), 1, + ACTIONS(2660), 1, + anon_sym_LBRACK, + ACTIONS(2662), 13, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(3665), 1, - anon_sym_defined, - ACTIONS(3721), 1, - sym_number_literal, - ACTIONS(3667), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3669), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3673), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1371), 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, - [58101] = 12, + 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, + anon_sym_COLON, + [93502] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3591), 1, - anon_sym_SLASH, - ACTIONS(3597), 1, - anon_sym_PIPE, - ACTIONS(3599), 1, - anon_sym_CARET, - ACTIONS(3601), 1, - anon_sym_AMP, - ACTIONS(3587), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3589), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3603), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3605), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3607), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3609), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3709), 4, + ACTIONS(4823), 1, + anon_sym_LBRACK, + ACTIONS(4821), 13, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [58147] = 9, + 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, + anon_sym_COLON, + [93527] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3567), 1, - sym_identifier, - ACTIONS(3571), 1, + ACTIONS(4827), 1, + anon_sym_LBRACK, + ACTIONS(4825), 12, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(3573), 1, - anon_sym_defined, - ACTIONS(3723), 1, - sym_number_literal, - ACTIONS(3575), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3577), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3581), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1364), 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, - [58187] = 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, + anon_sym_LBRACK_LBRACK, + [93551] = 10, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3661), 1, + ACTIONS(4829), 1, sym_identifier, - ACTIONS(3663), 1, - anon_sym_LPAREN2, - ACTIONS(3665), 1, - anon_sym_defined, - ACTIONS(3725), 1, - sym_number_literal, - ACTIONS(3667), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3669), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3673), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1375), 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, - [58227] = 9, + 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, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3661), 1, + ACTIONS(4829), 1, sym_identifier, - ACTIONS(3663), 1, + 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, anon_sym_LPAREN2, - ACTIONS(3665), 1, - anon_sym_defined, - ACTIONS(3727), 1, - sym_number_literal, - ACTIONS(3667), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3669), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3673), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1368), 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, - [58267] = 9, + 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(4841), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + [93653] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3661), 1, - sym_identifier, - ACTIONS(3663), 1, + ACTIONS(4851), 1, + anon_sym_LBRACK, + ACTIONS(4849), 12, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(3665), 1, - anon_sym_defined, - ACTIONS(3729), 1, - sym_number_literal, - ACTIONS(3667), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3669), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3673), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1354), 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, - [58307] = 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, + anon_sym_LBRACK_LBRACK, + [93677] = 12, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3661), 1, - sym_identifier, - ACTIONS(3663), 1, + ACTIONS(2047), 1, anon_sym_LPAREN2, - ACTIONS(3665), 1, - anon_sym_defined, - ACTIONS(3731), 1, - sym_number_literal, - ACTIONS(3667), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3669), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3673), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1362), 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, - [58347] = 9, + ACTIONS(2049), 1, + anon_sym_STAR, + ACTIONS(2051), 1, + anon_sym___based, + ACTIONS(4245), 1, + sym_identifier, + STATE(2209), 1, + sym_function_declarator, + STATE(2300), 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, + [93717] = 10, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3661), 1, + ACTIONS(4829), 1, sym_identifier, - ACTIONS(3663), 1, + ACTIONS(4831), 1, + aux_sym_preproc_if_token1, + ACTIONS(4835), 1, + sym_preproc_directive, + ACTIONS(4853), 1, + anon_sym_RBRACE, + ACTIONS(4833), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(2746), 2, + sym_preproc_call, + sym_enumerator, + STATE(3000), 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, + [93753] = 12, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2047), 1, anon_sym_LPAREN2, - ACTIONS(3665), 1, - anon_sym_defined, - ACTIONS(3733), 1, - sym_number_literal, - ACTIONS(3667), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3669), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3673), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1384), 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, - [58387] = 9, + ACTIONS(2049), 1, + anon_sym_STAR, + ACTIONS(2051), 1, + anon_sym___based, + ACTIONS(4245), 1, + sym_identifier, + STATE(2209), 1, + sym_function_declarator, + STATE(2305), 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, + [93793] = 12, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3567), 1, + ACTIONS(2047), 1, + anon_sym_LPAREN2, + ACTIONS(2049), 1, + anon_sym_STAR, + ACTIONS(2051), 1, + anon_sym___based, + ACTIONS(4245), 1, sym_identifier, - ACTIONS(3571), 1, + STATE(2209), 1, + sym_function_declarator, + STATE(2264), 1, + sym__declarator, + STATE(2367), 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, + [93833] = 7, + ACTIONS(4843), 1, anon_sym_LPAREN2, - ACTIONS(3573), 1, - anon_sym_defined, - ACTIONS(3735), 1, - sym_number_literal, - ACTIONS(3575), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3577), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3581), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1345), 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, - [58427] = 9, + 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, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3661), 1, - sym_identifier, - ACTIONS(3663), 1, + ACTIONS(2047), 1, anon_sym_LPAREN2, - ACTIONS(3665), 1, - anon_sym_defined, - ACTIONS(3737), 1, - sym_number_literal, - ACTIONS(3667), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3669), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3673), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1369), 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, - [58467] = 3, + ACTIONS(2049), 1, + anon_sym_STAR, + ACTIONS(2051), 1, + anon_sym___based, + ACTIONS(4245), 1, + sym_identifier, + STATE(2209), 1, + sym_function_declarator, + STATE(2331), 1, + sym__declarator, + STATE(2359), 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, + [93903] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3741), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3739), 15, + ACTIONS(4859), 1, + anon_sym_LBRACK, + ACTIONS(4857), 12, 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, - [58495] = 5, + 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(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3591), 1, - anon_sym_SLASH, - ACTIONS(3589), 2, + ACTIONS(2047), 1, + anon_sym_LPAREN2, + ACTIONS(2049), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3711), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3709), 13, + ACTIONS(2051), 1, + anon_sym___based, + ACTIONS(4245), 1, + sym_identifier, + STATE(2209), 1, + sym_function_declarator, + STATE(2315), 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, + [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_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, - [58527] = 9, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + [93997] = 12, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3661), 1, - sym_identifier, - ACTIONS(3663), 1, + ACTIONS(2047), 1, anon_sym_LPAREN2, - ACTIONS(3665), 1, - anon_sym_defined, - ACTIONS(3743), 1, - sym_number_literal, - ACTIONS(3667), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3669), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3673), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1376), 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, - [58567] = 3, + ACTIONS(2049), 1, + anon_sym_STAR, + ACTIONS(2051), 1, + anon_sym___based, + ACTIONS(4245), 1, + sym_identifier, + STATE(2209), 1, + sym_function_declarator, + STATE(2239), 1, + sym__declarator, + STATE(2351), 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, + [94037] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3711), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3709), 15, + ACTIONS(4865), 1, + anon_sym_LBRACK, + ACTIONS(4863), 12, 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, - [58595] = 9, + 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, + [94061] = 12, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3567), 1, - sym_identifier, - ACTIONS(3571), 1, + ACTIONS(2047), 1, anon_sym_LPAREN2, - ACTIONS(3573), 1, - anon_sym_defined, - ACTIONS(3745), 1, - sym_number_literal, - ACTIONS(3575), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3577), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3581), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1389), 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, - [58635] = 9, + ACTIONS(2049), 1, + anon_sym_STAR, + ACTIONS(2051), 1, + anon_sym___based, + ACTIONS(4245), 1, + sym_identifier, + STATE(2209), 1, + sym_function_declarator, + STATE(2331), 1, + sym__declarator, + STATE(2357), 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, + [94101] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3661), 1, - sym_identifier, - ACTIONS(3663), 1, + ACTIONS(4869), 1, + anon_sym_LBRACK, + ACTIONS(4867), 12, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(3665), 1, - anon_sym_defined, - ACTIONS(3747), 1, - sym_number_literal, - ACTIONS(3667), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3669), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3673), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1377), 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, - [58675] = 5, + 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(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3553), 1, - anon_sym_LPAREN2, - STATE(1067), 1, - sym_preproc_argument_list, - ACTIONS(3751), 6, + ACTIONS(4873), 1, + anon_sym_LBRACK, + ACTIONS(4871), 12, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - ACTIONS(3749), 12, anon_sym___attribute__, anon_sym___scanf, anon_sym___printf, @@ -120293,1802 +162429,1995 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - anon_sym_LBRACK, - anon_sym_asm, - anon_sym___asm__, + anon_sym_LBRACK_LBRACK, + [94149] = 10, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4829), 1, sym_identifier, - [58707] = 9, + ACTIONS(4831), 1, + aux_sym_preproc_if_token1, + ACTIONS(4835), 1, + sym_preproc_directive, + ACTIONS(4875), 1, + anon_sym_RBRACE, + ACTIONS(4833), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(2930), 2, + sym_preproc_call, + sym_enumerator, + STATE(3054), 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(3661), 1, + ACTIONS(4829), 1, sym_identifier, - ACTIONS(3663), 1, - anon_sym_LPAREN2, - ACTIONS(3665), 1, - anon_sym_defined, - ACTIONS(3753), 1, - sym_number_literal, - ACTIONS(3667), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3669), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3673), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1387), 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, - [58747] = 13, + 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, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3591), 1, - anon_sym_SLASH, - ACTIONS(3595), 1, - anon_sym_AMP_AMP, - ACTIONS(3597), 1, - anon_sym_PIPE, - ACTIONS(3599), 1, - anon_sym_CARET, - ACTIONS(3601), 1, - anon_sym_AMP, - ACTIONS(3587), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3589), 2, + ACTIONS(2047), 1, + anon_sym_LPAREN2, + ACTIONS(2049), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3603), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3605), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3607), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3609), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3709), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - [58795] = 9, + ACTIONS(2051), 1, + anon_sym___based, + ACTIONS(4245), 1, + sym_identifier, + STATE(2209), 1, + sym_function_declarator, + STATE(2309), 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, + [94261] = 12, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3567), 1, - sym_identifier, - ACTIONS(3571), 1, + ACTIONS(2047), 1, anon_sym_LPAREN2, - ACTIONS(3573), 1, - anon_sym_defined, - ACTIONS(3755), 1, - sym_number_literal, - ACTIONS(3575), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3577), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3581), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1349), 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, - [58835] = 14, + ACTIONS(2049), 1, + anon_sym_STAR, + ACTIONS(2051), 1, + anon_sym___based, + ACTIONS(4245), 1, + sym_identifier, + STATE(2209), 1, + sym_function_declarator, + STATE(2266), 1, + sym__declarator, + STATE(2363), 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, + [94301] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3591), 1, - anon_sym_SLASH, - ACTIONS(3593), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3595), 1, - anon_sym_AMP_AMP, - ACTIONS(3597), 1, - anon_sym_PIPE, - ACTIONS(3599), 1, - anon_sym_CARET, - ACTIONS(3601), 1, - anon_sym_AMP, - ACTIONS(3587), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3589), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3603), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3605), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3607), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3609), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3757), 2, + ACTIONS(4881), 1, + anon_sym_LBRACK, + ACTIONS(4879), 12, anon_sym_COMMA, - anon_sym_RPAREN, - [58885] = 9, + 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, + [94325] = 12, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3567), 1, + ACTIONS(2047), 1, + anon_sym_LPAREN2, + ACTIONS(2049), 1, + anon_sym_STAR, + ACTIONS(2051), 1, + anon_sym___based, + ACTIONS(4245), 1, sym_identifier, - ACTIONS(3571), 1, + 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(3573), 1, - anon_sym_defined, - ACTIONS(3759), 1, - sym_number_literal, - ACTIONS(3575), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3577), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3581), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1338), 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, - [58925] = 9, + 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, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3661), 1, + ACTIONS(2047), 1, + anon_sym_LPAREN2, + ACTIONS(2049), 1, + anon_sym_STAR, + ACTIONS(2051), 1, + anon_sym___based, + ACTIONS(4245), 1, sym_identifier, - ACTIONS(3663), 1, + STATE(2209), 1, + sym_function_declarator, + STATE(2331), 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, + [94445] = 12, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2047), 1, anon_sym_LPAREN2, - ACTIONS(3665), 1, - anon_sym_defined, - ACTIONS(3761), 1, - sym_number_literal, - ACTIONS(3667), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3669), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3673), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1383), 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, - [58965] = 3, + ACTIONS(2049), 1, + anon_sym_STAR, + ACTIONS(2051), 1, + anon_sym___based, + ACTIONS(4245), 1, + sym_identifier, + STATE(2209), 1, + sym_function_declarator, + STATE(2331), 1, + sym__declarator, + STATE(2351), 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, + [94485] = 12, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3765), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3763), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(2047), 1, + anon_sym_LPAREN2, + ACTIONS(2049), 1, 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, - [58993] = 9, + ACTIONS(2051), 1, + anon_sym___based, + ACTIONS(4245), 1, + sym_identifier, + STATE(2209), 1, + sym_function_declarator, + STATE(2321), 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, + [94525] = 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(4883), 1, + anon_sym_RBRACE, + ACTIONS(4833), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(2786), 2, + sym_preproc_call, + sym_enumerator, + STATE(3286), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(2108), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [94561] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3661), 1, - sym_identifier, - ACTIONS(3663), 1, + ACTIONS(4887), 1, + anon_sym_LBRACK, + ACTIONS(4885), 12, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(3665), 1, - anon_sym_defined, - ACTIONS(3767), 1, - sym_number_literal, - ACTIONS(3667), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3669), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3673), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1385), 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, - [59033] = 13, + 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, + [94585] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1835), 1, - anon_sym___based, - ACTIONS(1873), 1, + ACTIONS(4891), 1, + anon_sym_LBRACK, + ACTIONS(4889), 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, + [94609] = 12, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2047), 1, anon_sym_LPAREN2, - ACTIONS(1875), 1, + ACTIONS(2049), 1, anon_sym_STAR, - ACTIONS(3136), 1, + ACTIONS(2051), 1, + anon_sym___based, + ACTIONS(4245), 1, sym_identifier, - ACTIONS(3144), 1, - anon_sym_LBRACK, - STATE(1594), 1, + STATE(2209), 1, + sym_function_declarator, + STATE(2331), 1, sym__declarator, - STATE(1691), 1, - sym_parameter_list, - STATE(1718), 1, - sym__abstract_declarator, - STATE(2174), 1, + STATE(2397), 1, + sym__declaration_declarator, + STATE(2467), 1, + sym__function_declaration_declarator, + STATE(3337), 1, sym_ms_based_modifier, - ACTIONS(3769), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1717), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1569), 5, + STATE(2213), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, - sym_function_declarator, sym_array_declarator, - [59081] = 9, + [94649] = 12, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3661), 1, - sym_identifier, - ACTIONS(3663), 1, + ACTIONS(2047), 1, anon_sym_LPAREN2, - ACTIONS(3665), 1, - anon_sym_defined, - ACTIONS(3771), 1, - sym_number_literal, - ACTIONS(3667), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3669), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3673), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1390), 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, - [59121] = 6, + ACTIONS(2049), 1, + anon_sym_STAR, + ACTIONS(2051), 1, + anon_sym___based, + ACTIONS(4245), 1, + sym_identifier, + STATE(2209), 1, + sym_function_declarator, + STATE(2253), 1, + sym__declarator, + STATE(2340), 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, + [94689] = 12, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3591), 1, - anon_sym_SLASH, - ACTIONS(3587), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3589), 2, + ACTIONS(2047), 1, + anon_sym_LPAREN2, + ACTIONS(2049), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3711), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3709), 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, - [59155] = 9, + ACTIONS(2051), 1, + anon_sym___based, + ACTIONS(4245), 1, + sym_identifier, + STATE(2209), 1, + sym_function_declarator, + STATE(2331), 1, + sym__declarator, + STATE(2367), 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, + [94729] = 12, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3661), 1, - sym_identifier, - ACTIONS(3663), 1, + ACTIONS(2047), 1, anon_sym_LPAREN2, - ACTIONS(3665), 1, - anon_sym_defined, - ACTIONS(3773), 1, - sym_number_literal, - ACTIONS(3667), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3669), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3673), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1374), 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, - [59195] = 9, + ACTIONS(2049), 1, + anon_sym_STAR, + ACTIONS(2051), 1, + anon_sym___based, + ACTIONS(4245), 1, + sym_identifier, + STATE(2209), 1, + sym_function_declarator, + STATE(2331), 1, + sym__declarator, + STATE(2340), 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, + [94769] = 10, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3567), 1, + ACTIONS(4829), 1, sym_identifier, - ACTIONS(3571), 1, - anon_sym_LPAREN2, - ACTIONS(3573), 1, - anon_sym_defined, - ACTIONS(3775), 1, - sym_number_literal, - ACTIONS(3575), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3577), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3581), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1307), 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, - [59235] = 9, + ACTIONS(4831), 1, + aux_sym_preproc_if_token1, + ACTIONS(4835), 1, + sym_preproc_directive, + ACTIONS(4893), 1, + anon_sym_RBRACE, + ACTIONS(4833), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(2842), 2, + sym_preproc_call, + sym_enumerator, + STATE(3176), 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, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3661), 1, + ACTIONS(2047), 1, + anon_sym_LPAREN2, + ACTIONS(2049), 1, + anon_sym_STAR, + ACTIONS(2051), 1, + anon_sym___based, + ACTIONS(4245), 1, sym_identifier, - ACTIONS(3663), 1, + STATE(2209), 1, + sym_function_declarator, + STATE(2316), 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, + [94845] = 7, + ACTIONS(4843), 1, anon_sym_LPAREN2, - ACTIONS(3665), 1, - anon_sym_defined, - ACTIONS(3777), 1, - sym_number_literal, - ACTIONS(3667), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3669), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3673), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1388), 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, - [59275] = 7, - ACTIONS(3), 1, + 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, - ACTIONS(3591), 1, - anon_sym_SLASH, - ACTIONS(3587), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3589), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3609), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3711), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3709), 9, + STATE(2120), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(4895), 7, 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, - [59311] = 9, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + [94875] = 12, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3591), 1, - anon_sym_SLASH, - ACTIONS(3587), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3589), 2, + ACTIONS(2047), 1, + anon_sym_LPAREN2, + ACTIONS(2049), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3605), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3607), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3609), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3711), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3709), 7, - 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, - [59351] = 10, + ACTIONS(2051), 1, + anon_sym___based, + ACTIONS(4245), 1, + sym_identifier, + STATE(2209), 1, + sym_function_declarator, + STATE(2331), 1, + sym__declarator, + STATE(2403), 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, + [94915] = 12, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3591), 1, - anon_sym_SLASH, - ACTIONS(3587), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3589), 2, + ACTIONS(2047), 1, + anon_sym_LPAREN2, + ACTIONS(2049), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3603), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3605), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3607), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3609), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3711), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3709), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [59393] = 11, + ACTIONS(2051), 1, + anon_sym___based, + ACTIONS(4245), 1, + sym_identifier, + STATE(2209), 1, + sym_function_declarator, + STATE(2252), 1, + sym__declarator, + STATE(2321), 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, + [94955] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3591), 1, - anon_sym_SLASH, - ACTIONS(3601), 1, - anon_sym_AMP, - ACTIONS(3711), 1, - anon_sym_PIPE, - ACTIONS(3587), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3589), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3603), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3605), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3607), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3609), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3709), 5, + ACTIONS(4899), 1, + anon_sym_LBRACK, + ACTIONS(4897), 12, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [59437] = 3, + 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, + [94979] = 10, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2430), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2432), 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, - [59465] = 6, - ACTIONS(3643), 1, - sym_comment, - ACTIONS(3709), 1, - anon_sym_LF, - ACTIONS(3779), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3783), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3781), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3711), 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, - [59498] = 3, - ACTIONS(2432), 1, - anon_sym_LF, - ACTIONS(3643), 1, - sym_comment, - ACTIONS(2430), 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, - [59525] = 10, - ACTIONS(3643), 1, - sym_comment, - ACTIONS(3709), 1, - anon_sym_LF, - ACTIONS(3785), 1, - anon_sym_CARET, - ACTIONS(3787), 1, - anon_sym_AMP, - ACTIONS(3779), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3783), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3789), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3711), 3, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - ACTIONS(3781), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3791), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [59566] = 3, - ACTIONS(3246), 1, - anon_sym_LF, - ACTIONS(3643), 1, - sym_comment, - ACTIONS(3244), 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, - [59593] = 9, - ACTIONS(3643), 1, - sym_comment, - ACTIONS(3709), 1, - anon_sym_LF, - ACTIONS(3787), 1, - anon_sym_AMP, - ACTIONS(3779), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3783), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3789), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3781), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3711), 4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(3791), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [59632] = 3, - ACTIONS(3643), 1, - sym_comment, - ACTIONS(3763), 1, - anon_sym_LF, - ACTIONS(3765), 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, - [59659] = 3, - ACTIONS(3242), 1, - anon_sym_LF, - ACTIONS(3643), 1, + ACTIONS(4829), 1, + sym_identifier, + ACTIONS(4831), 1, + aux_sym_preproc_if_token1, + ACTIONS(4835), 1, + sym_preproc_directive, + ACTIONS(4901), 1, + anon_sym_RBRACE, + ACTIONS(4833), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(2750), 2, + sym_preproc_call, + sym_enumerator, + STATE(3452), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(2073), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [95015] = 12, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3240), 18, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(2047), 1, + anon_sym_LPAREN2, + ACTIONS(2049), 1, 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, - [59686] = 11, - ACTIONS(3643), 1, + ACTIONS(2051), 1, + anon_sym___based, + ACTIONS(4245), 1, + sym_identifier, + STATE(2209), 1, + sym_function_declarator, + STATE(2263), 1, + sym__declarator, + STATE(2305), 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, + [95055] = 12, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3709), 1, - anon_sym_LF, - ACTIONS(3785), 1, - anon_sym_CARET, - ACTIONS(3787), 1, - anon_sym_AMP, - ACTIONS(3793), 1, - anon_sym_PIPE, - ACTIONS(3711), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(3779), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3783), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3789), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3781), 3, + ACTIONS(2047), 1, + anon_sym_LPAREN2, + ACTIONS(2049), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3791), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [59729] = 12, - ACTIONS(3643), 1, + ACTIONS(2051), 1, + anon_sym___based, + ACTIONS(4245), 1, + sym_identifier, + STATE(2209), 1, + sym_function_declarator, + STATE(2269), 1, + sym__declarator, + STATE(2316), 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, + [95095] = 12, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3785), 1, - anon_sym_CARET, - ACTIONS(3787), 1, - anon_sym_AMP, - ACTIONS(3793), 1, - anon_sym_PIPE, - ACTIONS(3795), 1, - anon_sym_LF, - ACTIONS(3797), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3799), 1, - anon_sym_AMP_AMP, - ACTIONS(3779), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3783), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3789), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3781), 3, + ACTIONS(2047), 1, + anon_sym_LPAREN2, + ACTIONS(2049), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3791), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [59774] = 12, - ACTIONS(3643), 1, + ACTIONS(2051), 1, + anon_sym___based, + ACTIONS(4245), 1, + sym_identifier, + STATE(2209), 1, + sym_function_declarator, + STATE(2331), 1, + sym__declarator, + STATE(2363), 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, + [95135] = 4, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3785), 1, - anon_sym_CARET, - ACTIONS(3787), 1, - anon_sym_AMP, - ACTIONS(3793), 1, - anon_sym_PIPE, - ACTIONS(3797), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3799), 1, - anon_sym_AMP_AMP, - ACTIONS(3801), 1, - anon_sym_LF, - ACTIONS(3779), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3783), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3789), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3781), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3791), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [59819] = 14, + ACTIONS(4905), 1, + anon_sym_LBRACK, + ACTIONS(4903), 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, + [95159] = 10, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3591), 1, - anon_sym_SLASH, - ACTIONS(3593), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3595), 1, - anon_sym_AMP_AMP, - ACTIONS(3597), 1, - anon_sym_PIPE, - ACTIONS(3599), 1, - anon_sym_CARET, - ACTIONS(3601), 1, - anon_sym_AMP, - ACTIONS(3803), 1, + ACTIONS(2047), 1, + anon_sym_LPAREN2, + ACTIONS(2049), 1, + anon_sym_STAR, + ACTIONS(2051), 1, + anon_sym___based, + ACTIONS(3650), 1, + sym_identifier, + STATE(638), 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, + [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, - ACTIONS(3587), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3589), 2, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + [95219] = 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, - anon_sym_PERCENT, - ACTIONS(3603), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3605), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3607), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3609), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [59868] = 8, - ACTIONS(3643), 1, + ACTIONS(2051), 1, + anon_sym___based, + ACTIONS(3650), 1, + sym_identifier, + STATE(644), 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, + [95254] = 10, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3709), 1, - anon_sym_LF, - ACTIONS(3779), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3783), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3789), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3781), 3, + ACTIONS(2047), 1, + anon_sym_LPAREN2, + ACTIONS(2049), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3791), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(3711), 5, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - [59905] = 3, - ACTIONS(3643), 1, + ACTIONS(2051), 1, + anon_sym___based, + ACTIONS(3650), 1, + sym_identifier, + STATE(691), 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, + [95289] = 10, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3697), 1, - anon_sym_LF, - ACTIONS(3699), 18, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(2047), 1, + anon_sym_LPAREN2, + ACTIONS(2049), 1, 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, - [59932] = 12, - ACTIONS(3643), 1, + ACTIONS(2051), 1, + anon_sym___based, + ACTIONS(3650), 1, + sym_identifier, + STATE(650), 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, + [95324] = 10, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3709), 1, - anon_sym_LF, - ACTIONS(3711), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3785), 1, - anon_sym_CARET, - ACTIONS(3787), 1, - anon_sym_AMP, - ACTIONS(3793), 1, - anon_sym_PIPE, - ACTIONS(3799), 1, - anon_sym_AMP_AMP, - ACTIONS(3779), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3783), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3789), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3781), 3, + ACTIONS(2047), 1, + anon_sym_LPAREN2, + ACTIONS(2049), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3791), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [59977] = 3, - ACTIONS(3643), 1, + ACTIONS(2051), 1, + anon_sym___based, + ACTIONS(3650), 1, + sym_identifier, + STATE(677), 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, + [95359] = 10, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3709), 1, - anon_sym_LF, - ACTIONS(3711), 18, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(2278), 1, + anon_sym_LPAREN2, + ACTIONS(2280), 1, 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, - [60004] = 4, - ACTIONS(3643), 1, + ACTIONS(3658), 1, + anon_sym_LBRACK, + STATE(2234), 1, + sym_macro_modifier, + STATE(2375), 1, + sym_parameter_list, + STATE(2439), 1, + sym__abstract_declarator, + ACTIONS(2282), 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, + [95394] = 5, + ACTIONS(4732), 1, + anon_sym_LBRACK, + ACTIONS(4911), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(3709), 1, - anon_sym_LF, - ACTIONS(3781), 3, + STATE(2126), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(4727), 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__, + [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_SLASH, - anon_sym_PERCENT, - ACTIONS(3711), 15, - 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, - [60033] = 3, - ACTIONS(3643), 1, + 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, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3739), 1, - anon_sym_LF, - ACTIONS(3741), 18, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(3025), 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__, + [95463] = 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, - 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, - [60060] = 7, - ACTIONS(3643), 1, + ACTIONS(2051), 1, + anon_sym___based, + ACTIONS(3650), 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(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3709), 1, - anon_sym_LF, - ACTIONS(3779), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3783), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3781), 3, + ACTIONS(2047), 1, + anon_sym_LPAREN2, + ACTIONS(2049), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3791), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(3711), 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, - [60095] = 5, - ACTIONS(3643), 1, + ACTIONS(2051), 1, + anon_sym___based, + ACTIONS(3650), 1, + sym_identifier, + STATE(688), 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, + [95533] = 3, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3709), 1, - anon_sym_LF, - ACTIONS(3779), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3781), 3, + 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, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2047), 1, + anon_sym_LPAREN2, + ACTIONS(2049), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3711), 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, - [60126] = 12, - ACTIONS(3643), 1, + ACTIONS(2051), 1, + anon_sym___based, + ACTIONS(3650), 1, + sym_identifier, + STATE(626), 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, + [95589] = 3, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3037), 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__, + [95610] = 3, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3100), 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__, + [95631] = 9, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3785), 1, - anon_sym_CARET, - ACTIONS(3787), 1, - anon_sym_AMP, - ACTIONS(3793), 1, - anon_sym_PIPE, - ACTIONS(3797), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3799), 1, - anon_sym_AMP_AMP, - ACTIONS(3805), 1, - anon_sym_LF, - ACTIONS(3779), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3783), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3789), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3781), 3, + ACTIONS(2047), 1, + anon_sym_LPAREN2, + ACTIONS(2049), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3791), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [60171] = 12, - ACTIONS(3643), 1, + ACTIONS(2051), 1, + anon_sym___based, + ACTIONS(3650), 1, + sym_identifier, + STATE(2241), 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, + [95663] = 7, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3785), 1, - anon_sym_CARET, - ACTIONS(3787), 1, - anon_sym_AMP, - ACTIONS(3793), 1, - anon_sym_PIPE, - ACTIONS(3797), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3799), 1, - anon_sym_AMP_AMP, - ACTIONS(3807), 1, - anon_sym_LF, - ACTIONS(3779), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3783), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3789), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3781), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3791), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [60216] = 3, - ACTIONS(3643), 1, + ACTIONS(4914), 1, + anon_sym_SEMI, + ACTIONS(4760), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(4762), 2, + anon_sym___scanf, + anon_sym___printf, + STATE(2165), 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, + [95691] = 7, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3693), 1, - anon_sym_LF, - ACTIONS(3695), 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, - [60243] = 12, - ACTIONS(3643), 1, + ACTIONS(4916), 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, + [95719] = 9, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3785), 1, - anon_sym_CARET, - ACTIONS(3787), 1, - anon_sym_AMP, - ACTIONS(3793), 1, - anon_sym_PIPE, - ACTIONS(3797), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3799), 1, - anon_sym_AMP_AMP, - ACTIONS(3809), 1, - anon_sym_LF, - ACTIONS(3779), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3783), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3789), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3781), 3, + ACTIONS(2047), 1, + anon_sym_LPAREN2, + ACTIONS(2049), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3791), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [60288] = 12, - ACTIONS(3643), 1, + 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(3785), 1, - anon_sym_CARET, - ACTIONS(3787), 1, - anon_sym_AMP, - ACTIONS(3793), 1, - anon_sym_PIPE, - ACTIONS(3797), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3799), 1, - anon_sym_AMP_AMP, - ACTIONS(3811), 1, - anon_sym_LF, - ACTIONS(3779), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3783), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3789), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3781), 3, + ACTIONS(2047), 1, + anon_sym_LPAREN2, + ACTIONS(2049), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3791), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [60333] = 12, - ACTIONS(3643), 1, + 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, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3785), 1, - anon_sym_CARET, - ACTIONS(3787), 1, - anon_sym_AMP, - ACTIONS(3793), 1, - anon_sym_PIPE, - ACTIONS(3797), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3799), 1, - anon_sym_AMP_AMP, - ACTIONS(3813), 1, - anon_sym_LF, - ACTIONS(3779), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3783), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3789), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3781), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3791), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [60378] = 3, - ACTIONS(3236), 1, - anon_sym_LF, - ACTIONS(3643), 1, + ACTIONS(4650), 1, + anon_sym_COMMA, + STATE(2141), 1, + aux_sym__field_declaration_declarator_repeat1, + ACTIONS(4918), 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, + [95807] = 5, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3234), 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, - [60405] = 3, - ACTIONS(3232), 1, - anon_sym_LF, - ACTIONS(3643), 1, + ACTIONS(4920), 1, + anon_sym_COMMA, + STATE(2141), 1, + aux_sym__field_declaration_declarator_repeat1, + ACTIONS(4923), 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, + [95831] = 5, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3230), 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, - [60432] = 12, - ACTIONS(3643), 1, + ACTIONS(4650), 1, + anon_sym_COMMA, + STATE(2140), 1, + aux_sym__field_declaration_declarator_repeat1, + ACTIONS(4925), 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, + [95855] = 5, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3785), 1, - anon_sym_CARET, - ACTIONS(3787), 1, - anon_sym_AMP, - ACTIONS(3793), 1, - anon_sym_PIPE, - ACTIONS(3797), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3799), 1, - anon_sym_AMP_AMP, - ACTIONS(3815), 1, - anon_sym_LF, - ACTIONS(3779), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3783), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3789), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3781), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3791), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [60477] = 12, + ACTIONS(4650), 1, + anon_sym_COMMA, + STATE(2141), 1, + aux_sym__field_declaration_declarator_repeat1, + ACTIONS(4927), 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, + [95879] = 9, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1835), 1, + ACTIONS(2051), 1, anon_sym___based, - ACTIONS(3220), 1, + ACTIONS(3876), 1, sym_identifier, - ACTIONS(3222), 1, + ACTIONS(3878), 1, anon_sym_LPAREN2, - ACTIONS(3224), 1, + ACTIONS(3880), 1, anon_sym_STAR, - ACTIONS(3228), 1, - sym_primitive_type, - STATE(1427), 1, - sym_macro_modifier, - STATE(1624), 1, - sym__type_declarator, - STATE(2043), 1, + STATE(1948), 1, + sym__field_declarator, + STATE(3201), 1, sym_ms_based_modifier, - ACTIONS(43), 2, - anon_sym___init, - anon_sym___exit, - ACTIONS(3226), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1443), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [60522] = 12, - ACTIONS(3643), 1, + 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, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3785), 1, - anon_sym_CARET, - ACTIONS(3787), 1, - anon_sym_AMP, - ACTIONS(3793), 1, - anon_sym_PIPE, - ACTIONS(3797), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3799), 1, - anon_sym_AMP_AMP, - ACTIONS(3817), 1, - anon_sym_LF, - ACTIONS(3779), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3783), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3789), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3781), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3791), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [60567] = 12, - ACTIONS(3643), 1, + ACTIONS(4736), 1, + sym_identifier, + ACTIONS(4929), 1, + aux_sym_preproc_if_token2, + ACTIONS(4931), 1, + aux_sym_preproc_else_token1, + ACTIONS(4933), 1, + aux_sym_preproc_elif_token1, + 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(3287), 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, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3785), 1, - anon_sym_CARET, - ACTIONS(3787), 1, - anon_sym_AMP, - ACTIONS(3793), 1, - anon_sym_PIPE, - ACTIONS(3797), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3799), 1, - anon_sym_AMP_AMP, - ACTIONS(3819), 1, - anon_sym_LF, - ACTIONS(3779), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3783), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3789), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3781), 3, + ACTIONS(4829), 1, + sym_identifier, + ACTIONS(4937), 1, + aux_sym_preproc_if_token2, + ACTIONS(4939), 1, + aux_sym_preproc_else_token1, + ACTIONS(4941), 1, + aux_sym_preproc_elif_token1, + 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(3191), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + [95977] = 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, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3791), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [60612] = 12, - ACTIONS(3643), 1, + ACTIONS(2051), 1, + anon_sym___based, + ACTIONS(3650), 1, + sym_identifier, + STATE(2259), 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, + [96009] = 7, + 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(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(4947), 1, + aux_sym_preproc_if_token2, + ACTIONS(4935), 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, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4949), 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, + [96097] = 7, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4951), 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, + [96125] = 10, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4746), 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(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, + 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(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(4958), 1, + aux_sym_preproc_if_token2, + ACTIONS(4935), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(2145), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(3190), 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, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4960), 1, + 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, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3785), 1, - anon_sym_CARET, - ACTIONS(3787), 1, - anon_sym_AMP, - ACTIONS(3793), 1, - anon_sym_PIPE, - ACTIONS(3797), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3799), 1, - anon_sym_AMP_AMP, - ACTIONS(3821), 1, - anon_sym_LF, - ACTIONS(3779), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3783), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3789), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3781), 3, + ACTIONS(2047), 1, + anon_sym_LPAREN2, + ACTIONS(2049), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3791), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [60657] = 11, + ACTIONS(2051), 1, + anon_sym___based, + ACTIONS(3650), 1, + sym_identifier, + STATE(2247), 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, + [96337] = 7, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(39), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3823), 1, - anon_sym_COMMA, - ACTIONS(3825), 1, - anon_sym_LPAREN2, - ACTIONS(3829), 1, - anon_sym_LBRACK, - ACTIONS(3831), 1, - anon_sym_COLON, - STATE(1430), 1, - sym_parameter_list, - STATE(1528), 1, - sym_bitfield_clause, - STATE(1532), 1, - aux_sym__field_declaration_declarator_repeat1, - STATE(1409), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3827), 9, + ACTIONS(4964), 1, anon_sym_SEMI, + ACTIONS(4760), 2, anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(4762), 2, anon_sym___scanf, anon_sym___printf, + STATE(2191), 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, + [96365] = 7, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4966), 1, + anon_sym_SEMI, + ACTIONS(4760), 2, + anon_sym___attribute__, anon_sym___must_hold, + ACTIONS(4762), 2, + anon_sym___scanf, + anon_sym___printf, + STATE(2150), 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, - [60700] = 12, - ACTIONS(3643), 1, + [96393] = 9, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3785), 1, - anon_sym_CARET, - ACTIONS(3787), 1, - anon_sym_AMP, - ACTIONS(3793), 1, - anon_sym_PIPE, - ACTIONS(3797), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3799), 1, - anon_sym_AMP_AMP, - ACTIONS(3833), 1, - anon_sym_LF, - ACTIONS(3779), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3783), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3789), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3781), 3, + ACTIONS(2051), 1, + anon_sym___based, + ACTIONS(3882), 1, + sym_identifier, + ACTIONS(3884), 1, + anon_sym_LPAREN2, + ACTIONS(3886), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3791), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [60745] = 12, - ACTIONS(3643), 1, + 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, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3785), 1, - anon_sym_CARET, - ACTIONS(3787), 1, - anon_sym_AMP, - ACTIONS(3793), 1, - anon_sym_PIPE, - ACTIONS(3797), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3799), 1, - anon_sym_AMP_AMP, - ACTIONS(3835), 1, - anon_sym_LF, - ACTIONS(3779), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3783), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3789), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3781), 3, + ACTIONS(2047), 1, + anon_sym_LPAREN2, + ACTIONS(2049), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3791), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [60790] = 14, + ACTIONS(2051), 1, + anon_sym___based, + ACTIONS(3650), 1, + sym_identifier, + STATE(2254), 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, + [96457] = 7, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3591), 1, - anon_sym_SLASH, - ACTIONS(3593), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3595), 1, - anon_sym_AMP_AMP, - ACTIONS(3597), 1, - anon_sym_PIPE, - ACTIONS(3599), 1, - anon_sym_CARET, - ACTIONS(3601), 1, - anon_sym_AMP, - ACTIONS(3837), 1, - anon_sym_RPAREN, - ACTIONS(3587), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3589), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3603), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3605), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3607), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3609), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [60839] = 12, - ACTIONS(3643), 1, + ACTIONS(4968), 1, + 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___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + [96485] = 9, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3785), 1, - anon_sym_CARET, - ACTIONS(3787), 1, - anon_sym_AMP, - ACTIONS(3793), 1, - anon_sym_PIPE, - ACTIONS(3797), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3799), 1, - anon_sym_AMP_AMP, - ACTIONS(3839), 1, - anon_sym_LF, - ACTIONS(3779), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3783), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3789), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3781), 3, + ACTIONS(2047), 1, + anon_sym_LPAREN2, + ACTIONS(2049), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3791), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [60884] = 12, + 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(1835), 1, - anon_sym___based, - ACTIONS(1873), 1, + ACTIONS(4970), 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, + [96545] = 9, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2047), 1, anon_sym_LPAREN2, - ACTIONS(1875), 1, + ACTIONS(2049), 1, anon_sym_STAR, - ACTIONS(3136), 1, + ACTIONS(2051), 1, + anon_sym___based, + ACTIONS(3650), 1, sym_identifier, - ACTIONS(3144), 1, - anon_sym_LBRACK, - STATE(1632), 1, + STATE(2273), 1, sym__declarator, - STATE(1691), 1, - sym_parameter_list, - STATE(1722), 1, - sym__abstract_declarator, - STATE(2174), 1, + STATE(3337), 1, sym_ms_based_modifier, - STATE(1717), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1569), 5, + STATE(2209), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [60928] = 7, + [96577] = 7, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(39), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3825), 1, - anon_sym_LPAREN2, - ACTIONS(3829), 1, - anon_sym_LBRACK, - STATE(1430), 1, - sym_parameter_list, - STATE(1409), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3841), 12, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4972), 1, anon_sym_SEMI, + ACTIONS(4760), 2, anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(4762), 2, anon_sym___scanf, anon_sym___printf, + STATE(2190), 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, + [96605] = 7, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4974), 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, - anon_sym_COLON, - [60962] = 7, + [96633] = 7, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(39), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3825), 1, - anon_sym_LPAREN2, - ACTIONS(3829), 1, - anon_sym_LBRACK, - STATE(1430), 1, - sym_parameter_list, - STATE(1409), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3843), 12, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4976), 1, + anon_sym_SEMI, + ACTIONS(4760), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(4762), 2, + anon_sym___scanf, + anon_sym___printf, + STATE(2137), 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, + [96661] = 7, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4978), 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, + [96689] = 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(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(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(4982), 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(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, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4984), 1, + anon_sym_SEMI, + ACTIONS(4760), 2, + anon_sym___attribute__, anon_sym___must_hold, + ACTIONS(4762), 2, + anon_sym___scanf, + anon_sym___printf, + STATE(2148), 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, + [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, - [60996] = 9, + 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(39), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3825), 1, + ACTIONS(2051), 1, + anon_sym___based, + ACTIONS(3882), 1, + sym_identifier, + ACTIONS(3884), 1, anon_sym_LPAREN2, - ACTIONS(3829), 1, - anon_sym_LBRACK, - ACTIONS(3831), 1, - anon_sym_COLON, - STATE(1430), 1, - sym_parameter_list, - STATE(1563), 1, - sym_bitfield_clause, - STATE(1409), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3845), 10, + 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, + 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, anon_sym_SEMI, anon_sym___attribute__, anon_sym___scanf, @@ -122098,251 +164427,422 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - [61034] = 6, + [96867] = 9, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3749), 2, - anon_sym_LBRACK, + ACTIONS(2047), 1, + anon_sym_LPAREN2, + ACTIONS(2049), 1, + anon_sym_STAR, + ACTIONS(2051), 1, + anon_sym___based, + ACTIONS(3650), 1, sym_identifier, - ACTIONS(3847), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3852), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(3751), 4, + 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, + 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(4992), 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(3091), 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, + 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, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - ACTIONS(3849), 8, + 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(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(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, + 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, + sym_identifier, + ACTIONS(4939), 1, + aux_sym_preproc_else_token1, + ACTIONS(4941), 1, + aux_sym_preproc_elif_token1, + ACTIONS(5010), 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(3283), 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, + 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(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(5012), 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, + 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, + 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(5014), 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(3047), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + [97195] = 7, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5016), 1, + anon_sym_SEMI, + ACTIONS(4760), 2, anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(4762), 2, anon_sym___scanf, anon_sym___printf, + STATE(2157), 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, + [97223] = 7, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5018), 1, + anon_sym_SEMI, + ACTIONS(4760), 2, + anon_sym___attribute__, anon_sym___must_hold, + ACTIONS(4762), 2, + anon_sym___scanf, + anon_sym___printf, + STATE(2170), 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, - [61066] = 7, + [97251] = 9, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(39), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3825), 1, - anon_sym_LPAREN2, - ACTIONS(3829), 1, - anon_sym_LBRACK, - STATE(1430), 1, - sym_parameter_list, - STATE(1409), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3854), 12, - anon_sym_COMMA, - anon_sym_RPAREN, + 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, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5022), 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___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - anon_sym_COLON, - [61100] = 7, + [97311] = 7, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(39), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3825), 1, - anon_sym_LPAREN2, - ACTIONS(3829), 1, - anon_sym_LBRACK, - STATE(1430), 1, - sym_parameter_list, - STATE(1409), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3856), 12, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5024), 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___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - anon_sym_COLON, - [61134] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1835), 1, - anon_sym___based, - ACTIONS(1873), 1, - anon_sym_LPAREN2, - ACTIONS(1875), 1, - anon_sym_STAR, - ACTIONS(3136), 1, - sym_identifier, - ACTIONS(3144), 1, + [97339] = 6, + ACTIONS(5028), 1, anon_sym_LBRACK, - STATE(1633), 1, - sym__declarator, - STATE(1691), 1, - sym_parameter_list, - STATE(1719), 1, - sym__abstract_declarator, - STATE(2174), 1, - sym_ms_based_modifier, - STATE(1717), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1569), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [61178] = 7, - ACTIONS(3), 1, + STATE(2421), 1, + sym_gnu_asm_input_operand, + STATE(2976), 1, + sym_string_literal, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(39), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3825), 1, - anon_sym_LPAREN2, - ACTIONS(3860), 1, + 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, anon_sym_LBRACK, - STATE(1451), 1, - sym_parameter_list, - STATE(1418), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3858), 11, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(5032), 9, anon_sym_COMMA, anon_sym_RPAREN, + 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, - [61211] = 11, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + [97383] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1835), 1, - anon_sym___based, - ACTIONS(3220), 1, - sym_identifier, - ACTIONS(3222), 1, + ACTIONS(3717), 3, anon_sym_LPAREN2, - ACTIONS(3224), 1, anon_sym_STAR, - ACTIONS(3228), 1, - sym_primitive_type, - STATE(1404), 1, - sym__type_declarator, - STATE(1527), 1, - sym__type_definition_declarators, - STATE(2043), 1, - sym_ms_based_modifier, - ACTIONS(3226), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1443), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [61252] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1835), 1, + anon_sym_LBRACK, + ACTIONS(3715), 7, anon_sym___based, - ACTIONS(3220), 1, - sym_identifier, - ACTIONS(3222), 1, - anon_sym_LPAREN2, - ACTIONS(3224), 1, - anon_sym_STAR, - ACTIONS(3228), 1, - sym_primitive_type, - STATE(1404), 1, - sym__type_declarator, - STATE(1537), 1, - sym__type_definition_declarators, - STATE(2043), 1, - sym_ms_based_modifier, - ACTIONS(3226), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1443), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [61293] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1835), 1, - anon_sym___based, - ACTIONS(3220), 1, + sym_primitive_type, sym_identifier, - ACTIONS(3222), 1, + [97404] = 3, + ACTIONS(5038), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(5036), 9, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(3224), 1, - anon_sym_STAR, - ACTIONS(3228), 1, - sym_primitive_type, - STATE(1404), 1, - sym__type_declarator, - STATE(1518), 1, - sym__type_definition_declarators, - STATE(2043), 1, - sym_ms_based_modifier, - ACTIONS(3226), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1443), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [61334] = 7, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + [97423] = 3, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(39), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3825), 1, - anon_sym_LPAREN2, - ACTIONS(3860), 1, - anon_sym_LBRACK, - STATE(1451), 1, - sym_parameter_list, - STATE(1418), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3862), 11, + ACTIONS(5040), 10, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, anon_sym___scanf, @@ -122352,14246 +164852,17579 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - [61367] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3825), 1, - anon_sym_LPAREN2, - ACTIONS(3860), 1, + [97442] = 3, + ACTIONS(2013), 1, anon_sym_LBRACK, - ACTIONS(3864), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(2015), 9, anon_sym_COMMA, - STATE(1451), 1, - sym_parameter_list, - STATE(1546), 1, - aux_sym__type_definition_declarators_repeat1, - STATE(1418), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3866), 9, + 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__, + [97461] = 7, + ACTIONS(3), 1, + 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___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - [61404] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1835), 1, - anon_sym___based, - ACTIONS(3220), 1, - sym_identifier, - ACTIONS(3222), 1, - anon_sym_LPAREN2, - ACTIONS(3224), 1, - anon_sym_STAR, - ACTIONS(3228), 1, - sym_primitive_type, - STATE(1404), 1, - sym__type_declarator, - STATE(1543), 1, - sym__type_definition_declarators, - STATE(2043), 1, - sym_ms_based_modifier, - ACTIONS(3226), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1443), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [61445] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1835), 1, - anon_sym___based, - ACTIONS(3220), 1, - sym_identifier, - ACTIONS(3222), 1, - anon_sym_LPAREN2, - ACTIONS(3224), 1, - anon_sym_STAR, - ACTIONS(3228), 1, - sym_primitive_type, - STATE(1404), 1, - sym__type_declarator, - STATE(1517), 1, - sym__type_definition_declarators, - STATE(2043), 1, - sym_ms_based_modifier, - ACTIONS(3226), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1443), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [61486] = 11, - ACTIONS(3), 1, + [97488] = 3, + ACTIONS(5046), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(1835), 1, - anon_sym___based, - ACTIONS(3220), 1, - sym_identifier, - ACTIONS(3222), 1, + ACTIONS(5044), 9, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(3224), 1, - anon_sym_STAR, - ACTIONS(3228), 1, - sym_primitive_type, - STATE(1404), 1, - sym__type_declarator, - STATE(1550), 1, - sym__type_definition_declarators, - STATE(2043), 1, - sym_ms_based_modifier, - ACTIONS(3226), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1443), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [61527] = 11, - ACTIONS(3), 1, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + [97507] = 3, + ACTIONS(5050), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(1835), 1, - anon_sym___based, - ACTIONS(3220), 1, - sym_identifier, - ACTIONS(3222), 1, + ACTIONS(5048), 9, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(3224), 1, - anon_sym_STAR, - ACTIONS(3228), 1, - sym_primitive_type, - STATE(1404), 1, - sym__type_declarator, - STATE(1511), 1, - sym__type_definition_declarators, - STATE(2043), 1, - sym_ms_based_modifier, - ACTIONS(3226), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1443), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [61568] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 1, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + 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(3870), 1, + ACTIONS(4847), 1, anon_sym_LBRACK, - STATE(1272), 2, + 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, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + STATE(2120), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3868), 13, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + [97559] = 7, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5056), 1, anon_sym_SEMI, + STATE(3154), 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___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - anon_sym_COLON, - [61597] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 1, + [97586] = 10, + ACTIONS(49), 1, + anon_sym_LBRACE, + ACTIONS(4845), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3825), 1, - anon_sym_LPAREN2, - ACTIONS(3860), 1, + ACTIONS(4847), 1, anon_sym_LBRACK, - STATE(1451), 1, + 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, - STATE(1418), 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + STATE(2120), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3872), 11, + [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___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, - [61630] = 11, - ACTIONS(3), 1, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + [97638] = 3, + ACTIONS(5064), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(1835), 1, - anon_sym___based, - ACTIONS(3220), 1, - sym_identifier, - ACTIONS(3222), 1, + ACTIONS(5062), 9, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(3224), 1, - anon_sym_STAR, - ACTIONS(3228), 1, - sym_primitive_type, - STATE(1404), 1, - sym__type_declarator, - STATE(1523), 1, - sym__type_definition_declarators, - STATE(2043), 1, - sym_ms_based_modifier, - ACTIONS(3226), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1443), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [61671] = 7, - ACTIONS(3), 1, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + [97657] = 3, + ACTIONS(2009), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(39), 1, + ACTIONS(2011), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3825), 1, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + [97676] = 3, + ACTIONS(5068), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(5066), 9, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(3860), 1, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + [97695] = 10, + ACTIONS(139), 1, + anon_sym_LBRACE, + ACTIONS(4845), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4847), 1, anon_sym_LBRACK, - STATE(1451), 1, + ACTIONS(5052), 1, + anon_sym_LPAREN2, + ACTIONS(5054), 1, + anon_sym_EQ, + STATE(155), 1, + sym_compound_statement, + STATE(1310), 1, + sym__old_style_parameter_list, + STATE(1720), 1, sym_parameter_list, - STATE(1418), 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + STATE(2120), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3874), 11, + [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, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5072), 1, anon_sym_SEMI, + STATE(3120), 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___must_hold, anon_sym___ro_after_init, anon_sym___noreturn, anon_sym___cold, - [61704] = 13, - ACTIONS(3), 1, + [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(1831), 1, + 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, + anon_sym_LBRACE, + ACTIONS(4845), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4847), 1, + anon_sym_LBRACK, + ACTIONS(5052), 1, anon_sym_LPAREN2, - ACTIONS(1833), 1, - anon_sym_STAR, - ACTIONS(1835), 1, - anon_sym___based, - ACTIONS(3493), 1, - sym_identifier, - STATE(1468), 1, - sym_macro_modifier, - STATE(1569), 1, - sym_function_declarator, - STATE(1662), 1, - sym__declarator, - STATE(1688), 1, - sym__declaration_declarator, - STATE(1739), 1, - sym__function_declaration_declarator, - STATE(2174), 1, - sym_ms_based_modifier, - ACTIONS(43), 2, - anon_sym___init, - anon_sym___exit, - STATE(1581), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - [61748] = 13, - ACTIONS(3), 1, + ACTIONS(5054), 1, + anon_sym_EQ, + STATE(308), 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, + [97832] = 4, + ACTIONS(3664), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(1831), 1, + ACTIONS(5070), 4, anon_sym_LPAREN2, - ACTIONS(1833), 1, - anon_sym_STAR, - ACTIONS(1835), 1, - anon_sym___based, - ACTIONS(3493), 1, - sym_identifier, - STATE(1485), 1, - sym_macro_modifier, - STATE(1569), 1, - sym_function_declarator, - STATE(1609), 1, - sym__declarator, - STATE(1688), 1, - sym__declaration_declarator, - STATE(1739), 1, - sym__function_declaration_declarator, - STATE(2174), 1, - sym_ms_based_modifier, - ACTIONS(43), 2, - anon_sym___init, - anon_sym___exit, - STATE(1581), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - [61792] = 13, + 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(1831), 1, - anon_sym_LPAREN2, - ACTIONS(1833), 1, - anon_sym_STAR, - ACTIONS(1835), 1, - anon_sym___based, - ACTIONS(3493), 1, + ACTIONS(4986), 1, sym_identifier, - STATE(1490), 1, - sym_macro_modifier, - STATE(1569), 1, - sym_function_declarator, - STATE(1589), 1, - sym__declarator, - STATE(1673), 1, - sym__declaration_declarator, - STATE(1739), 1, - sym__function_declaration_declarator, - STATE(2174), 1, - sym_ms_based_modifier, - ACTIONS(43), 2, - anon_sym___init, - anon_sym___exit, - STATE(1581), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - [61836] = 13, - ACTIONS(3), 1, + 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, + anon_sym_LBRACE, + ACTIONS(4845), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4847), 1, + anon_sym_LBRACK, + ACTIONS(5052), 1, + anon_sym_LPAREN2, + STATE(132), 1, + sym_compound_statement, + STATE(1310), 1, + sym__old_style_parameter_list, + 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, + [97906] = 9, + ACTIONS(393), 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(308), 1, + sym_compound_statement, + STATE(1720), 1, + sym_parameter_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(1831), 1, + STATE(2120), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [97936] = 9, + ACTIONS(139), 1, + anon_sym_LBRACE, + ACTIONS(4843), 1, anon_sym_LPAREN2, - ACTIONS(1833), 1, - anon_sym_STAR, - ACTIONS(1835), 1, - anon_sym___based, - ACTIONS(3493), 1, - sym_identifier, - STATE(1480), 1, - sym_macro_modifier, - STATE(1569), 1, - sym_function_declarator, - STATE(1611), 1, - sym__declarator, - STATE(1689), 1, - sym__declaration_declarator, - STATE(1739), 1, - sym__function_declaration_declarator, - STATE(2174), 1, - sym_ms_based_modifier, - ACTIONS(43), 2, - anon_sym___init, - anon_sym___exit, - STATE(1581), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - [61880] = 13, - ACTIONS(3), 1, + ACTIONS(4845), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4847), 1, + anon_sym_LBRACK, + ACTIONS(5054), 1, + anon_sym_EQ, + STATE(155), 1, + sym_compound_statement, + STATE(1720), 1, + sym_parameter_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(1831), 1, + STATE(2120), 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, - ACTIONS(1833), 1, - anon_sym_STAR, - ACTIONS(1835), 1, - anon_sym___based, - ACTIONS(3493), 1, - sym_identifier, - STATE(1474), 1, - sym_macro_modifier, - STATE(1569), 1, - sym_function_declarator, - STATE(1662), 1, - sym__declarator, - STATE(1663), 1, - sym__declaration_declarator, - STATE(1739), 1, - sym__function_declaration_declarator, - STATE(2174), 1, - sym_ms_based_modifier, - ACTIONS(43), 2, - anon_sym___init, - anon_sym___exit, - STATE(1581), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - [61924] = 5, + STATE(319), 1, + sym_compound_statement, + STATE(1310), 1, + sym__old_style_parameter_list, + 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, + [97996] = 6, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(39), 1, + ACTIONS(5080), 1, + sym_identifier, + ACTIONS(5084), 1, + sym_system_lib_string, + STATE(3404), 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, + [98020] = 9, + ACTIONS(463), 1, + anon_sym_LBRACE, + ACTIONS(4843), 1, + anon_sym_LPAREN2, + ACTIONS(4845), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3878), 1, + ACTIONS(4847), 1, anon_sym_LBRACK, - STATE(1272), 2, + ACTIONS(5054), 1, + anon_sym_EQ, + STATE(341), 1, + sym_compound_statement, + 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, - ACTIONS(3876), 12, - anon_sym_COMMA, - anon_sym_RPAREN, - 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, - [61952] = 13, + [98050] = 6, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1831), 1, - anon_sym_LPAREN2, - ACTIONS(1833), 1, - anon_sym_STAR, - ACTIONS(1835), 1, - anon_sym___based, - ACTIONS(3493), 1, + ACTIONS(5086), 1, sym_identifier, - STATE(1477), 1, - sym_macro_modifier, - STATE(1569), 1, - sym_function_declarator, - STATE(1662), 1, - sym__declarator, - STATE(1689), 1, - sym__declaration_declarator, - STATE(1739), 1, - sym__function_declaration_declarator, - STATE(2174), 1, - sym_ms_based_modifier, - ACTIONS(43), 2, - anon_sym___init, - anon_sym___exit, - STATE(1581), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - [61996] = 10, + ACTIONS(5088), 1, + sym_system_lib_string, + STATE(3289), 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, + [98074] = 6, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1835), 1, - anon_sym___based, - ACTIONS(3220), 1, + ACTIONS(4986), 1, sym_identifier, - ACTIONS(3222), 1, + STATE(944), 1, + sym_string_literal, + STATE(2726), 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, + [98098] = 9, + 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(3224), 1, - anon_sym_STAR, - ACTIONS(3228), 1, - sym_primitive_type, - STATE(1425), 1, - sym__type_declarator, - STATE(2043), 1, - sym_ms_based_modifier, - ACTIONS(3226), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1443), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [62034] = 10, + STATE(399), 1, + sym_compound_statement, + STATE(1310), 1, + sym__old_style_parameter_list, + 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, + [98128] = 6, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1835), 1, - anon_sym___based, - ACTIONS(3220), 1, + ACTIONS(4986), 1, sym_identifier, - ACTIONS(3222), 1, + 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, + anon_sym_LBRACE, + ACTIONS(4845), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4847), 1, + anon_sym_LBRACK, + ACTIONS(5052), 1, anon_sym_LPAREN2, - ACTIONS(3224), 1, - anon_sym_STAR, - ACTIONS(3228), 1, - sym_primitive_type, - STATE(1624), 1, - sym__type_declarator, - STATE(2043), 1, - sym_ms_based_modifier, - ACTIONS(3226), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1443), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [62072] = 13, + STATE(321), 1, + sym_compound_statement, + STATE(1310), 1, + sym__old_style_parameter_list, + 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, + [98182] = 6, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1831), 1, + ACTIONS(4986), 1, + sym_identifier, + STATE(944), 1, + sym_string_literal, + STATE(2514), 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, + [98206] = 9, + ACTIONS(49), 1, + anon_sym_LBRACE, + ACTIONS(4843), 1, anon_sym_LPAREN2, - ACTIONS(1833), 1, - anon_sym_STAR, - ACTIONS(1835), 1, - anon_sym___based, - ACTIONS(3493), 1, + ACTIONS(4845), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4847), 1, + anon_sym_LBRACK, + ACTIONS(5054), 1, + anon_sym_EQ, + STATE(394), 1, + sym_compound_statement, + 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, + [98236] = 6, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4986), 1, sym_identifier, - STATE(1469), 1, - sym_macro_modifier, - STATE(1569), 1, - sym_function_declarator, - STATE(1622), 1, - sym__declarator, - STATE(1653), 1, - sym__declaration_declarator, - STATE(1739), 1, - sym__function_declaration_declarator, - STATE(2174), 1, - sym_ms_based_modifier, - ACTIONS(43), 2, - anon_sym___init, - anon_sym___exit, - STATE(1581), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - [62116] = 13, + 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, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1831), 1, - anon_sym_LPAREN2, - ACTIONS(1833), 1, - anon_sym_STAR, - ACTIONS(1835), 1, - anon_sym___based, - ACTIONS(3493), 1, + ACTIONS(5090), 1, sym_identifier, - STATE(1488), 1, - sym_macro_modifier, - STATE(1569), 1, - sym_function_declarator, - STATE(1662), 1, - sym__declarator, - STATE(1673), 1, - sym__declaration_declarator, - STATE(1739), 1, - sym__function_declaration_declarator, - STATE(2174), 1, - sym_ms_based_modifier, - ACTIONS(43), 2, - anon_sym___init, - anon_sym___exit, - STATE(1581), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - [62160] = 13, + ACTIONS(5092), 1, + sym_system_lib_string, + STATE(3178), 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, + [98284] = 6, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1831), 1, - anon_sym_LPAREN2, - ACTIONS(1833), 1, - anon_sym_STAR, - ACTIONS(1835), 1, - anon_sym___based, - ACTIONS(3493), 1, + ACTIONS(4986), 1, sym_identifier, - STATE(1486), 1, - sym_macro_modifier, - STATE(1569), 1, - sym_function_declarator, - STATE(1643), 1, - sym__declaration_declarator, - STATE(1662), 1, - sym__declarator, - STATE(1739), 1, - sym__function_declaration_declarator, - STATE(2174), 1, - sym_ms_based_modifier, - ACTIONS(43), 2, - anon_sym___init, - anon_sym___exit, - STATE(1581), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - [62204] = 7, + STATE(944), 1, + sym_string_literal, + STATE(2595), 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, + [98308] = 6, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(39), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3825), 1, + ACTIONS(4986), 1, + sym_identifier, + STATE(944), 1, + sym_string_literal, + STATE(2743), 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, + [98332] = 7, + ACTIONS(2278), 1, anon_sym_LPAREN2, - ACTIONS(3860), 1, + ACTIONS(2280), 1, + anon_sym_STAR, + ACTIONS(3658), 1, anon_sym_LBRACK, - STATE(1451), 1, + STATE(2375), 1, sym_parameter_list, - STATE(1418), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3880), 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, - [62236] = 13, - ACTIONS(3), 1, + STATE(2439), 1, + sym__abstract_declarator, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(1831), 1, - anon_sym_LPAREN2, - ACTIONS(1833), 1, - anon_sym_STAR, - ACTIONS(1835), 1, - anon_sym___based, - ACTIONS(3493), 1, - sym_identifier, - STATE(1478), 1, - sym_macro_modifier, - STATE(1569), 1, - sym_function_declarator, - STATE(1662), 1, - sym__declarator, - STATE(1701), 1, - sym__declaration_declarator, - STATE(1739), 1, - sym__function_declaration_declarator, - STATE(2174), 1, - sym_ms_based_modifier, - ACTIONS(43), 2, - anon_sym___init, - anon_sym___exit, - STATE(1581), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - [62280] = 10, + 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(1835), 1, - anon_sym___based, - ACTIONS(3220), 1, + ACTIONS(5094), 1, sym_identifier, - ACTIONS(3222), 1, + 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, anon_sym_LPAREN2, - ACTIONS(3224), 1, + ACTIONS(2280), 1, anon_sym_STAR, - ACTIONS(3228), 1, - sym_primitive_type, - STATE(1625), 1, - sym__type_declarator, - STATE(2043), 1, - sym_ms_based_modifier, - ACTIONS(3226), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1443), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [62318] = 13, + ACTIONS(3658), 1, + anon_sym_LBRACK, + STATE(2375), 1, + sym_parameter_list, + STATE(2409), 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, + [98408] = 6, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1831), 1, - anon_sym_LPAREN2, - ACTIONS(1833), 1, - anon_sym_STAR, - ACTIONS(1835), 1, - anon_sym___based, - ACTIONS(3493), 1, + ACTIONS(4986), 1, sym_identifier, - STATE(1489), 1, - sym_macro_modifier, - STATE(1569), 1, - sym_function_declarator, - STATE(1653), 1, - sym__declaration_declarator, - STATE(1662), 1, - sym__declarator, - STATE(1739), 1, - sym__function_declaration_declarator, - STATE(2174), 1, - sym_ms_based_modifier, - ACTIONS(43), 2, - anon_sym___init, - anon_sym___exit, - STATE(1581), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - [62362] = 3, + STATE(944), 1, + sym_string_literal, + STATE(2732), 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, + [98432] = 6, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3884), 1, - anon_sym_LBRACK, - ACTIONS(3882), 14, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4986), 1, + sym_identifier, + STATE(944), 1, + sym_string_literal, + STATE(2493), 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, + [98456] = 7, + ACTIONS(4843), 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, + ACTIONS(4845), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [62385] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3888), 1, + ACTIONS(4847), 1, anon_sym_LBRACK, - ACTIONS(3886), 14, + STATE(1721), 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, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [98481] = 8, + ACTIONS(49), 1, + anon_sym_LBRACE, + ACTIONS(4843), 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, + ACTIONS(4845), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [62408] = 3, - ACTIONS(3), 1, + ACTIONS(4847), 1, + anon_sym_LBRACK, + STATE(408), 1, + sym_compound_statement, + STATE(1721), 1, + sym_parameter_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(3892), 1, + STATE(2120), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [98508] = 8, + 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(3890), 14, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(350), 1, + sym_compound_statement, + 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, + [98535] = 8, + ACTIONS(463), 1, + anon_sym_LBRACE, + ACTIONS(4843), 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, + ACTIONS(4845), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [62431] = 3, - ACTIONS(3), 1, + ACTIONS(4847), 1, + anon_sym_LBRACK, + STATE(321), 1, + sym_compound_statement, + STATE(1721), 1, + sym_parameter_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(3896), 1, + STATE(2120), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [98562] = 8, + 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(3894), 14, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(358), 1, + sym_compound_statement, + 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, + [98589] = 8, + ACTIONS(463), 1, + anon_sym_LBRACE, + ACTIONS(4843), 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, + ACTIONS(4845), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [62454] = 11, + ACTIONS(4847), 1, + anon_sym_LBRACK, + STATE(317), 1, + sym_compound_statement, + 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, + [98616] = 5, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3898), 1, + ACTIONS(5104), 1, + anon_sym_EQ, + ACTIONS(5100), 2, + aux_sym_preproc_elif_token1, sym_identifier, - ACTIONS(3900), 1, + ACTIONS(5102), 5, + anon_sym_COMMA, aux_sym_preproc_if_token2, - ACTIONS(3902), 1, aux_sym_preproc_else_token1, - ACTIONS(3904), 1, - aux_sym_preproc_elif_token1, - STATE(1505), 1, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1506), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1629), 1, - sym_enumerator, - ACTIONS(3906), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(2079), 3, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - STATE(2086), 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, - [62493] = 11, - ACTIONS(3), 1, + [98637] = 5, + ACTIONS(5028), 1, + anon_sym_LBRACK, + STATE(2711), 1, + sym_gnu_asm_input_operand, + STATE(2976), 1, + sym_string_literal, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(3898), 1, - sym_identifier, - ACTIONS(3902), 1, - aux_sym_preproc_else_token1, - ACTIONS(3904), 1, - aux_sym_preproc_elif_token1, - ACTIONS(3908), 1, - aux_sym_preproc_if_token2, - STATE(1521), 1, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1522), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1629), 1, - sym_enumerator, - ACTIONS(3906), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(2225), 3, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - STATE(2226), 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, - [62532] = 11, + ACTIONS(5030), 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, + anon_sym_LBRACE, + ACTIONS(4843), 1, + anon_sym_LPAREN2, + ACTIONS(4845), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4847), 1, + anon_sym_LBRACK, + STATE(352), 1, + sym_compound_statement, + 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, + [98685] = 7, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3898), 1, + ACTIONS(5106), 1, sym_identifier, - ACTIONS(3902), 1, - aux_sym_preproc_else_token1, - ACTIONS(3904), 1, + ACTIONS(5111), 1, aux_sym_preproc_elif_token1, - ACTIONS(3910), 1, - aux_sym_preproc_if_token2, - STATE(1502), 1, + STATE(2246), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1551), 1, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1629), 1, + STATE(3046), 1, sym_enumerator, - ACTIONS(3906), 2, + ACTIONS(5109), 4, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(2178), 3, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - STATE(2179), 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, - [62571] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(3912), 14, - anon_sym_COMMA, - anon_sym_RPAREN, + [98710] = 8, + ACTIONS(139), 1, + anon_sym_LBRACE, + ACTIONS(4843), 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, + ACTIONS(4845), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [62594] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3918), 1, + ACTIONS(4847), 1, anon_sym_LBRACK, - ACTIONS(3916), 14, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(154), 1, + sym_compound_statement, + 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, + [98737] = 8, + ACTIONS(139), 1, + anon_sym_LBRACE, + ACTIONS(4843), 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, + ACTIONS(4845), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [62617] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3922), 1, + ACTIONS(4847), 1, anon_sym_LBRACK, - ACTIONS(3920), 14, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(152), 1, + sym_compound_statement, + 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, + [98764] = 8, + ACTIONS(393), 1, + anon_sym_LBRACE, + ACTIONS(4843), 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, + ACTIONS(4845), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [62640] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3926), 1, + ACTIONS(4847), 1, anon_sym_LBRACK, - ACTIONS(3924), 14, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(336), 1, + sym_compound_statement, + 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, + [98791] = 8, + ACTIONS(463), 1, + anon_sym_LBRACE, + ACTIONS(4843), 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, + ACTIONS(4845), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [62663] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3930), 1, + ACTIONS(4847), 1, anon_sym_LBRACK, - ACTIONS(3928), 14, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(357), 1, + sym_compound_statement, + 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, + [98818] = 8, + ACTIONS(393), 1, + anon_sym_LBRACE, + ACTIONS(4843), 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, + ACTIONS(4845), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [62686] = 3, - ACTIONS(3), 1, + ACTIONS(4847), 1, + anon_sym_LBRACK, + STATE(359), 1, + sym_compound_statement, + STATE(1721), 1, + sym_parameter_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(3934), 1, + STATE(2120), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [98845] = 8, + ACTIONS(393), 1, + anon_sym_LBRACE, + ACTIONS(4843), 1, + anon_sym_LPAREN2, + ACTIONS(4845), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4847), 1, anon_sym_LBRACK, - ACTIONS(3932), 14, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(369), 1, + sym_compound_statement, + 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, + [98872] = 8, + ACTIONS(463), 1, + anon_sym_LBRACE, + ACTIONS(4843), 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, + ACTIONS(4845), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [62709] = 11, - ACTIONS(3), 1, + ACTIONS(4847), 1, + anon_sym_LBRACK, + STATE(315), 1, + sym_compound_statement, + STATE(1720), 1, + sym_parameter_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(3898), 1, - sym_identifier, - ACTIONS(3902), 1, - aux_sym_preproc_else_token1, - ACTIONS(3904), 1, - aux_sym_preproc_elif_token1, - ACTIONS(3936), 1, - aux_sym_preproc_if_token2, - STATE(1510), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1512), 1, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1629), 1, - sym_enumerator, - ACTIONS(3906), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(2144), 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(2156), 3, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - [62748] = 3, - ACTIONS(3), 1, + STATE(2120), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [98899] = 8, + ACTIONS(139), 1, + anon_sym_LBRACE, + ACTIONS(4843), 1, + anon_sym_LPAREN2, + ACTIONS(4845), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4847), 1, + anon_sym_LBRACK, + STATE(126), 1, + sym_compound_statement, + STATE(1721), 1, + sym_parameter_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(3940), 1, + STATE(2120), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [98926] = 8, + ACTIONS(393), 1, + anon_sym_LBRACE, + ACTIONS(4843), 1, + anon_sym_LPAREN2, + ACTIONS(4845), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4847), 1, anon_sym_LBRACK, - ACTIONS(3938), 13, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(319), 1, + sym_compound_statement, + 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, + [98953] = 8, + ACTIONS(49), 1, + anon_sym_LBRACE, + ACTIONS(4843), 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, + ACTIONS(4845), 1, anon_sym_LBRACK_LBRACK, - [62770] = 3, - ACTIONS(3), 1, + ACTIONS(4847), 1, + anon_sym_LBRACK, + STATE(390), 1, + sym_compound_statement, + STATE(1721), 1, + sym_parameter_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(3944), 1, + STATE(2120), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [98980] = 5, + ACTIONS(5076), 1, anon_sym_LBRACK, - ACTIONS(3942), 13, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(2688), 1, + sym_gnu_asm_output_operand, + STATE(3080), 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, + [99001] = 8, + ACTIONS(139), 1, + anon_sym_LBRACE, + ACTIONS(4843), 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, + ACTIONS(4845), 1, anon_sym_LBRACK_LBRACK, - [62792] = 10, - ACTIONS(3), 1, + ACTIONS(4847), 1, + anon_sym_LBRACK, + STATE(132), 1, + sym_compound_statement, + STATE(1721), 1, + sym_parameter_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(1835), 1, - anon_sym___based, - ACTIONS(3262), 1, - sym_identifier, - ACTIONS(3264), 1, + STATE(2120), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [99028] = 8, + ACTIONS(49), 1, + anon_sym_LBRACE, + ACTIONS(4843), 1, anon_sym_LPAREN2, - ACTIONS(3266), 1, - anon_sym_STAR, - STATE(1549), 1, - sym_macro_modifier, - STATE(1628), 1, - sym__field_declarator, - STATE(2274), 1, - sym_ms_based_modifier, - ACTIONS(43), 2, - anon_sym___init, - anon_sym___exit, - STATE(1438), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [62828] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3478), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(3480), 2, - anon_sym___scanf, - anon_sym___printf, - STATE(1455), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(3482), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - ACTIONS(3545), 4, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_asm, - anon_sym___asm__, - [62856] = 3, - ACTIONS(3), 1, + ACTIONS(4845), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4847), 1, + anon_sym_LBRACK, + STATE(378), 1, + sym_compound_statement, + STATE(1721), 1, + sym_parameter_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(3948), 1, + STATE(2120), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [99055] = 8, + ACTIONS(49), 1, + anon_sym_LBRACE, + ACTIONS(4843), 1, + anon_sym_LPAREN2, + ACTIONS(4845), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4847), 1, anon_sym_LBRACK, - ACTIONS(3946), 13, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(392), 1, + sym_compound_statement, + 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, + [99082] = 8, + ACTIONS(393), 1, + anon_sym_LBRACE, + ACTIONS(4843), 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, + ACTIONS(4845), 1, anon_sym_LBRACK_LBRACK, - [62878] = 3, - ACTIONS(3), 1, + ACTIONS(4847), 1, + anon_sym_LBRACK, + STATE(328), 1, + sym_compound_statement, + STATE(1721), 1, + sym_parameter_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(3952), 1, + STATE(2120), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [99109] = 8, + ACTIONS(393), 1, + anon_sym_LBRACE, + ACTIONS(4843), 1, + anon_sym_LPAREN2, + ACTIONS(4845), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4847), 1, anon_sym_LBRACK, - ACTIONS(3950), 13, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(327), 1, + sym_compound_statement, + 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, + [99136] = 8, + ACTIONS(49), 1, + anon_sym_LBRACE, + ACTIONS(4843), 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, + ACTIONS(4845), 1, anon_sym_LBRACK_LBRACK, - [62900] = 3, - ACTIONS(3), 1, + ACTIONS(4847), 1, + anon_sym_LBRACK, + STATE(372), 1, + sym_compound_statement, + STATE(1720), 1, + sym_parameter_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(3956), 1, - anon_sym_LBRACK, - ACTIONS(3954), 13, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(2120), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [99163] = 8, + ACTIONS(139), 1, + anon_sym_LBRACE, + ACTIONS(4843), 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, + ACTIONS(4845), 1, anon_sym_LBRACK_LBRACK, - [62922] = 10, - ACTIONS(3), 1, + ACTIONS(4847), 1, + anon_sym_LBRACK, + STATE(144), 1, + sym_compound_statement, + STATE(1720), 1, + sym_parameter_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(1831), 1, + STATE(2120), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [99190] = 8, + ACTIONS(49), 1, + anon_sym_LBRACE, + ACTIONS(4843), 1, anon_sym_LPAREN2, - ACTIONS(1833), 1, - anon_sym_STAR, - ACTIONS(1835), 1, - anon_sym___based, - ACTIONS(3136), 1, - sym_identifier, - STATE(1519), 1, - sym_macro_modifier, - STATE(1632), 1, - sym__declarator, - STATE(2174), 1, - sym_ms_based_modifier, - ACTIONS(43), 2, - anon_sym___init, - anon_sym___exit, - STATE(1569), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [62958] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3960), 1, + ACTIONS(4845), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4847), 1, anon_sym_LBRACK, - ACTIONS(3958), 13, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(397), 1, + sym_compound_statement, + 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, + [99217] = 8, + ACTIONS(393), 1, + anon_sym_LBRACE, + ACTIONS(4843), 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, + ACTIONS(4845), 1, anon_sym_LBRACK_LBRACK, - [62980] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3964), 1, + ACTIONS(4847), 1, anon_sym_LBRACK, - ACTIONS(3962), 13, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(305), 1, + sym_compound_statement, + 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, + [99244] = 8, + ACTIONS(139), 1, + anon_sym_LBRACE, + ACTIONS(4843), 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, + ACTIONS(4845), 1, anon_sym_LBRACK_LBRACK, - [63002] = 10, - ACTIONS(3), 1, + ACTIONS(4847), 1, + anon_sym_LBRACK, + STATE(141), 1, + sym_compound_statement, + STATE(1720), 1, + sym_parameter_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(1831), 1, + STATE(2120), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [99271] = 8, + ACTIONS(49), 1, + anon_sym_LBRACE, + ACTIONS(4843), 1, anon_sym_LPAREN2, - ACTIONS(1833), 1, - anon_sym_STAR, - ACTIONS(1835), 1, - anon_sym___based, - ACTIONS(3136), 1, - sym_identifier, - STATE(1541), 1, - sym_macro_modifier, - STATE(1604), 1, - sym__declarator, - STATE(2174), 1, - sym_ms_based_modifier, - ACTIONS(43), 2, - anon_sym___init, - anon_sym___exit, - STATE(1569), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [63038] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3968), 1, + ACTIONS(4845), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4847), 1, anon_sym_LBRACK, - ACTIONS(3966), 13, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(399), 1, + sym_compound_statement, + 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, + [99298] = 8, + ACTIONS(139), 1, + anon_sym_LBRACE, + ACTIONS(4843), 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, + ACTIONS(4845), 1, anon_sym_LBRACK_LBRACK, - [63060] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3972), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(3975), 2, - anon_sym___scanf, - anon_sym___printf, - STATE(1455), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(3970), 4, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(3978), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - [63088] = 6, - ACTIONS(3), 1, + ACTIONS(4847), 1, + anon_sym_LBRACK, + STATE(134), 1, + sym_compound_statement, + STATE(1720), 1, + sym_parameter_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(3478), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(3480), 2, - anon_sym___scanf, - anon_sym___printf, - STATE(1455), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(3482), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - ACTIONS(3981), 4, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_asm, - anon_sym___asm__, - [63116] = 10, + STATE(2120), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [99325] = 6, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1831), 1, - anon_sym_LPAREN2, - ACTIONS(1833), 1, - anon_sym_STAR, - ACTIONS(1835), 1, - anon_sym___based, - ACTIONS(3136), 1, + ACTIONS(5113), 1, sym_identifier, - STATE(1526), 1, - sym_macro_modifier, - STATE(1595), 1, - sym__declarator, - STATE(2174), 1, - sym_ms_based_modifier, - ACTIONS(43), 2, - anon_sym___init, - anon_sym___exit, - STATE(1569), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [63152] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3985), 1, + 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, + anon_sym_RPAREN, + ACTIONS(4845), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5120), 1, + anon_sym_LPAREN2, + ACTIONS(5122), 1, anon_sym_LBRACK, - ACTIONS(3983), 13, - anon_sym_COMMA, + STATE(2432), 1, + sym_parameter_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + STATE(2320), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [99372] = 7, + ACTIONS(4845), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5120), 1, + anon_sym_LPAREN2, + ACTIONS(5124), 1, anon_sym_RPAREN, + ACTIONS(5126), 1, + anon_sym_LBRACK, + STATE(2408), 1, + sym_parameter_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + STATE(2341), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [99396] = 7, + ACTIONS(4843), 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, + ACTIONS(4845), 1, anon_sym_LBRACK_LBRACK, - [63174] = 10, - ACTIONS(3), 1, + ACTIONS(4847), 1, + anon_sym_LBRACK, + ACTIONS(5128), 1, + anon_sym_RPAREN, + STATE(1721), 1, + sym_parameter_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(41), 1, - anon_sym___declspec, - ACTIONS(2406), 1, - anon_sym_LBRACE, - ACTIONS(3987), 1, - sym_identifier, - STATE(808), 1, - sym_field_declaration_list, - STATE(1707), 1, - sym_attribute_specifier, - STATE(1861), 1, - sym_ms_declspec_modifier, - ACTIONS(33), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(35), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(37), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - [63210] = 3, - ACTIONS(3), 1, + STATE(2120), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [99420] = 7, + ACTIONS(4713), 1, + anon_sym_RPAREN, + ACTIONS(4845), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5120), 1, + anon_sym_LPAREN2, + ACTIONS(5126), 1, + anon_sym_LBRACK, + STATE(2408), 1, + sym_parameter_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(3991), 1, + STATE(2341), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [99444] = 7, + ACTIONS(4845), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5120), 1, + anon_sym_LPAREN2, + ACTIONS(5126), 1, anon_sym_LBRACK, - ACTIONS(3989), 13, - anon_sym_COMMA, + ACTIONS(5130), 1, + anon_sym_RPAREN, + STATE(2408), 1, + sym_parameter_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + STATE(2341), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [99468] = 7, + ACTIONS(4711), 1, anon_sym_RPAREN, + ACTIONS(4845), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5120), 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, + ACTIONS(5126), 1, + anon_sym_LBRACK, + STATE(2408), 1, + sym_parameter_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + STATE(2341), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [99492] = 7, + ACTIONS(4843), 1, + anon_sym_LPAREN2, + ACTIONS(4845), 1, anon_sym_LBRACK_LBRACK, - [63232] = 10, - ACTIONS(3), 1, + ACTIONS(4847), 1, + anon_sym_LBRACK, + ACTIONS(5132), 1, + anon_sym_RPAREN, + STATE(1721), 1, + sym_parameter_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(1831), 1, + STATE(2120), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [99516] = 7, + ACTIONS(4845), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5120), 1, anon_sym_LPAREN2, - ACTIONS(1833), 1, - anon_sym_STAR, - ACTIONS(1835), 1, - anon_sym___based, - ACTIONS(3136), 1, - sym_identifier, - STATE(1504), 1, - sym_macro_modifier, - STATE(1618), 1, - sym__declarator, - STATE(2174), 1, - sym_ms_based_modifier, - ACTIONS(43), 2, - anon_sym___init, - anon_sym___exit, - STATE(1569), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [63268] = 10, - ACTIONS(3), 1, + ACTIONS(5122), 1, + anon_sym_LBRACK, + ACTIONS(5134), 1, + anon_sym_RPAREN, + STATE(2432), 1, + sym_parameter_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(1831), 1, + STATE(2320), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [99540] = 7, + ACTIONS(4845), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4847), 1, + anon_sym_LBRACK, + ACTIONS(5136), 1, anon_sym_LPAREN2, - ACTIONS(1833), 1, - anon_sym_STAR, - ACTIONS(1835), 1, - anon_sym___based, - ACTIONS(3136), 1, - sym_identifier, - STATE(1530), 1, - sym_macro_modifier, - STATE(1607), 1, - sym__declarator, - STATE(2174), 1, - sym_ms_based_modifier, - ACTIONS(43), 2, - anon_sym___init, - anon_sym___exit, - STATE(1569), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [63304] = 3, - ACTIONS(3), 1, + STATE(1310), 1, + sym__old_style_parameter_list, + STATE(1721), 1, + sym_parameter_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(3995), 1, + STATE(2120), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [99564] = 7, + ACTIONS(4845), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5120), 1, + anon_sym_LPAREN2, + ACTIONS(5122), 1, anon_sym_LBRACK, - ACTIONS(3993), 13, - anon_sym_COMMA, + ACTIONS(5138), 1, anon_sym_RPAREN, + STATE(2432), 1, + sym_parameter_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + STATE(2320), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [99588] = 7, + ACTIONS(4843), 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, + ACTIONS(4845), 1, anon_sym_LBRACK_LBRACK, - [63326] = 7, - ACTIONS(3), 1, + ACTIONS(4847), 1, + anon_sym_LBRACK, + ACTIONS(5054), 1, + anon_sym_EQ, + STATE(1720), 1, + sym_parameter_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(39), 1, + STATE(2120), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [99612] = 7, + ACTIONS(4845), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3825), 1, + ACTIONS(5120), 1, anon_sym_LPAREN2, - ACTIONS(3999), 1, + ACTIONS(5122), 1, anon_sym_LBRACK, - STATE(1255), 1, + ACTIONS(5140), 1, + anon_sym_RPAREN, + STATE(2432), 1, sym_parameter_list, - STATE(1492), 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + STATE(2320), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3997), 7, - anon_sym_COMMA, + [99636] = 7, + ACTIONS(4734), 1, anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [63355] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 1, + ACTIONS(4845), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3825), 1, + ACTIONS(5120), 1, anon_sym_LPAREN2, - ACTIONS(3999), 1, + ACTIONS(5122), 1, anon_sym_LBRACK, - STATE(1255), 1, + STATE(2432), 1, sym_parameter_list, - STATE(1492), 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + STATE(2320), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(4001), 7, - anon_sym_COMMA, + [99660] = 7, + ACTIONS(4703), 1, anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [63384] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1831), 1, + ACTIONS(4845), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5120), 1, anon_sym_LPAREN2, - ACTIONS(1833), 1, - anon_sym_STAR, - ACTIONS(1835), 1, - anon_sym___based, - ACTIONS(3493), 1, - sym_identifier, - STATE(1569), 1, - sym_function_declarator, - STATE(1654), 1, - sym__declaration_declarator, - STATE(1662), 1, - sym__declarator, - STATE(1739), 1, - sym__function_declaration_declarator, - STATE(2174), 1, - sym_ms_based_modifier, - STATE(1581), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - [63421] = 11, - ACTIONS(3), 1, + ACTIONS(5126), 1, + anon_sym_LBRACK, + STATE(2408), 1, + sym_parameter_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(1831), 1, + STATE(2341), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [99684] = 7, + ACTIONS(4843), 1, anon_sym_LPAREN2, - ACTIONS(1833), 1, - anon_sym_STAR, - ACTIONS(1835), 1, - anon_sym___based, - ACTIONS(3493), 1, - sym_identifier, - STATE(1569), 1, - sym_function_declarator, - STATE(1662), 1, - sym__declarator, - STATE(1671), 1, - sym__declaration_declarator, - STATE(1739), 1, - sym__function_declaration_declarator, - STATE(2174), 1, - sym_ms_based_modifier, - STATE(1581), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - [63458] = 11, - ACTIONS(3), 1, + ACTIONS(4845), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4847), 1, + anon_sym_LBRACK, + ACTIONS(5142), 1, + anon_sym_RPAREN, + STATE(1721), 1, + sym_parameter_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(1831), 1, - anon_sym_LPAREN2, - ACTIONS(1833), 1, - anon_sym_STAR, - ACTIONS(1835), 1, - anon_sym___based, - ACTIONS(3493), 1, - sym_identifier, - STATE(1569), 1, - sym_function_declarator, - STATE(1655), 1, - sym__declaration_declarator, - STATE(1662), 1, - sym__declarator, - STATE(1739), 1, - sym__function_declaration_declarator, - STATE(2174), 1, - sym_ms_based_modifier, - STATE(1581), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - [63495] = 11, + STATE(2120), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [99708] = 5, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1831), 1, - anon_sym_LPAREN2, - ACTIONS(1833), 1, - anon_sym_STAR, - ACTIONS(1835), 1, - anon_sym___based, - ACTIONS(3493), 1, + ACTIONS(5146), 1, + anon_sym_COMMA, + ACTIONS(5144), 2, + aux_sym_preproc_elif_token1, sym_identifier, - STATE(1569), 1, - sym_function_declarator, - STATE(1606), 1, - sym__declarator, - STATE(1645), 1, - sym__declaration_declarator, - STATE(1739), 1, - sym__function_declaration_declarator, - STATE(2174), 1, - sym_ms_based_modifier, - STATE(1581), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - [63532] = 11, - ACTIONS(3), 1, + 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, + anon_sym_LBRACK_LBRACK, + ACTIONS(5120), 1, + anon_sym_LPAREN2, + ACTIONS(5122), 1, + anon_sym_LBRACK, + STATE(2432), 1, + sym_parameter_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + STATE(2320), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [99752] = 7, + ACTIONS(4845), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5120), 1, + anon_sym_LPAREN2, + ACTIONS(5122), 1, + anon_sym_LBRACK, + ACTIONS(5150), 1, + anon_sym_RPAREN, + STATE(2432), 1, + sym_parameter_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(1831), 1, + STATE(2320), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [99776] = 7, + ACTIONS(4845), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5120), 1, anon_sym_LPAREN2, - ACTIONS(1833), 1, - anon_sym_STAR, - ACTIONS(1835), 1, - anon_sym___based, - ACTIONS(3493), 1, - sym_identifier, - STATE(1569), 1, - sym_function_declarator, - STATE(1662), 1, - sym__declarator, - STATE(1687), 1, - sym__declaration_declarator, - STATE(1739), 1, - sym__function_declaration_declarator, - STATE(2174), 1, - sym_ms_based_modifier, - STATE(1581), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - [63569] = 9, - ACTIONS(3), 1, + ACTIONS(5126), 1, + anon_sym_LBRACK, + ACTIONS(5152), 1, + anon_sym_RPAREN, + STATE(2408), 1, + sym_parameter_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(17), 1, - sym_preproc_directive, - ACTIONS(4003), 1, - sym_identifier, - ACTIONS(4005), 1, - aux_sym_preproc_if_token1, - ACTIONS(4009), 1, - anon_sym_RBRACE, - ACTIONS(4007), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(2015), 2, - sym_preproc_call, - sym_enumerator, - STATE(2272), 2, - sym_preproc_if_in_enumerator_list_no_comma, - sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(1538), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [63602] = 11, - ACTIONS(3), 1, + STATE(2341), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [99800] = 7, + ACTIONS(4845), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5120), 1, + anon_sym_LPAREN2, + ACTIONS(5122), 1, + anon_sym_LBRACK, + ACTIONS(5154), 1, + anon_sym_RPAREN, + STATE(2432), 1, + sym_parameter_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(1831), 1, + STATE(2320), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [99824] = 7, + ACTIONS(4845), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5120), 1, anon_sym_LPAREN2, - ACTIONS(1833), 1, - anon_sym_STAR, - ACTIONS(1835), 1, - anon_sym___based, - ACTIONS(3493), 1, - sym_identifier, - STATE(1569), 1, - sym_function_declarator, - STATE(1599), 1, - sym__declarator, - STATE(1642), 1, - sym__declaration_declarator, - STATE(1739), 1, - sym__function_declaration_declarator, - STATE(2174), 1, - sym_ms_based_modifier, - STATE(1581), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - [63639] = 7, - ACTIONS(3), 1, + ACTIONS(5126), 1, + anon_sym_LBRACK, + ACTIONS(5156), 1, + anon_sym_RPAREN, + STATE(2408), 1, + sym_parameter_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(39), 1, + STATE(2341), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [99848] = 7, + ACTIONS(4845), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3825), 1, + ACTIONS(5120), 1, anon_sym_LPAREN2, - ACTIONS(3999), 1, + ACTIONS(5122), 1, anon_sym_LBRACK, - STATE(1255), 1, + ACTIONS(5158), 1, + anon_sym_RPAREN, + STATE(2432), 1, sym_parameter_list, - STATE(1492), 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + STATE(2320), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(4011), 7, - anon_sym_COMMA, + [99872] = 7, + ACTIONS(4845), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5120), 1, + anon_sym_LPAREN2, + ACTIONS(5126), 1, + anon_sym_LBRACK, + ACTIONS(5160), 1, anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [63668] = 11, - ACTIONS(3), 1, + STATE(2408), 1, + sym_parameter_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(1831), 1, + STATE(2341), 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, anon_sym_LPAREN2, - ACTIONS(1833), 1, - anon_sym_STAR, - ACTIONS(1835), 1, - anon_sym___based, - ACTIONS(3493), 1, - sym_identifier, - STATE(1569), 1, - sym_function_declarator, - STATE(1662), 1, - sym__declarator, - STATE(1664), 1, - sym__declaration_declarator, - STATE(1739), 1, - sym__function_declaration_declarator, - STATE(2174), 1, - sym_ms_based_modifier, - STATE(1581), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - [63705] = 11, - ACTIONS(3), 1, + ACTIONS(5126), 1, + anon_sym_LBRACK, + STATE(2408), 1, + sym_parameter_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(1831), 1, + STATE(2341), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [99920] = 7, + ACTIONS(4845), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5120), 1, anon_sym_LPAREN2, - ACTIONS(1833), 1, - anon_sym_STAR, - ACTIONS(1835), 1, - anon_sym___based, - ACTIONS(3493), 1, - sym_identifier, - STATE(1569), 1, - sym_function_declarator, - STATE(1619), 1, - sym__declarator, - STATE(1687), 1, - sym__declaration_declarator, - STATE(1739), 1, - sym__function_declaration_declarator, - STATE(2174), 1, - sym_ms_based_modifier, - STATE(1581), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - [63742] = 7, - ACTIONS(3), 1, + ACTIONS(5126), 1, + anon_sym_LBRACK, + ACTIONS(5162), 1, + anon_sym_RPAREN, + STATE(2408), 1, + sym_parameter_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(39), 1, + STATE(2341), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [99944] = 7, + ACTIONS(4725), 1, + anon_sym_RPAREN, + ACTIONS(4845), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3825), 1, + ACTIONS(5120), 1, anon_sym_LPAREN2, - ACTIONS(3999), 1, + ACTIONS(5122), 1, anon_sym_LBRACK, - STATE(1255), 1, + STATE(2432), 1, sym_parameter_list, - STATE(1492), 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + STATE(2320), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(4013), 7, + [99968] = 5, + ACTIONS(5164), 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, + anon_sym_LBRACK, + ACTIONS(5172), 1, + anon_sym_EQ, + ACTIONS(5174), 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, + [100008] = 6, + ACTIONS(5176), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5178), 1, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, + STATE(2645), 1, + aux_sym_declaration_repeat1, + STATE(2646), 1, + sym_gnu_asm_expression, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(5180), 2, anon_sym_asm, anon_sym___asm__, - [63771] = 11, - ACTIONS(3), 1, + [100029] = 6, + ACTIONS(5176), 1, + anon_sym_COMMA, + ACTIONS(5182), 1, + anon_sym_SEMI, + STATE(2662), 1, + aux_sym_declaration_repeat1, + STATE(2663), 1, + sym_gnu_asm_expression, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(1831), 1, - anon_sym_LPAREN2, - ACTIONS(1833), 1, - anon_sym_STAR, - ACTIONS(1835), 1, - anon_sym___based, - ACTIONS(3493), 1, - sym_identifier, - STATE(1569), 1, - sym_function_declarator, - STATE(1662), 1, - sym__declarator, - STATE(1678), 1, - sym__declaration_declarator, - STATE(1739), 1, - sym__function_declaration_declarator, - STATE(2174), 1, - sym_ms_based_modifier, - STATE(1581), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - [63808] = 11, - ACTIONS(3), 1, + ACTIONS(5180), 2, + anon_sym_asm, + anon_sym___asm__, + [100050] = 6, + ACTIONS(5176), 1, + anon_sym_COMMA, + ACTIONS(5184), 1, + anon_sym_SEMI, + STATE(2706), 1, + aux_sym_declaration_repeat1, + STATE(2707), 1, + sym_gnu_asm_expression, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(1831), 1, + ACTIONS(5180), 2, + anon_sym_asm, + anon_sym___asm__, + [100071] = 5, + ACTIONS(5120), 1, anon_sym_LPAREN2, - ACTIONS(1833), 1, - anon_sym_STAR, - ACTIONS(1835), 1, - anon_sym___based, - ACTIONS(3493), 1, - sym_identifier, - STATE(1569), 1, - sym_function_declarator, - STATE(1662), 1, - sym__declarator, - STATE(1695), 1, - sym__declaration_declarator, - STATE(1739), 1, - sym__function_declaration_declarator, - STATE(2174), 1, - sym_ms_based_modifier, - STATE(1581), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - [63845] = 11, - ACTIONS(3), 1, + ACTIONS(5188), 1, + anon_sym_LBRACK, + STATE(2371), 1, + sym_parameter_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(1831), 1, - anon_sym_LPAREN2, - ACTIONS(1833), 1, - anon_sym_STAR, - ACTIONS(1835), 1, - anon_sym___based, - ACTIONS(3493), 1, - sym_identifier, - STATE(1569), 1, - sym_function_declarator, - STATE(1616), 1, - sym__declarator, - STATE(1671), 1, - sym__declaration_declarator, - STATE(1739), 1, - sym__function_declaration_declarator, - STATE(2174), 1, - sym_ms_based_modifier, - STATE(1581), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - [63882] = 11, - ACTIONS(3), 1, + ACTIONS(5186), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [100090] = 6, + ACTIONS(5176), 1, + anon_sym_COMMA, + ACTIONS(5190), 1, + anon_sym_SEMI, + STATE(2720), 1, + aux_sym_declaration_repeat1, + STATE(2722), 1, + sym_gnu_asm_expression, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(1831), 1, - anon_sym_LPAREN2, - ACTIONS(1833), 1, - anon_sym_STAR, - ACTIONS(1835), 1, - anon_sym___based, - ACTIONS(3493), 1, - sym_identifier, - STATE(1569), 1, - sym_function_declarator, - STATE(1596), 1, - sym__declarator, - STATE(1678), 1, - sym__declaration_declarator, - STATE(1739), 1, - sym__function_declaration_declarator, - STATE(2174), 1, - sym_ms_based_modifier, - STATE(1581), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - [63919] = 11, + ACTIONS(5180), 2, + anon_sym_asm, + anon_sym___asm__, + [100111] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1831), 1, - anon_sym_LPAREN2, - ACTIONS(1833), 1, - anon_sym_STAR, - ACTIONS(1835), 1, - anon_sym___based, - ACTIONS(3493), 1, + ACTIONS(5006), 1, + anon_sym_RBRACE, + ACTIONS(5192), 5, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, sym_identifier, - STATE(1569), 1, - sym_function_declarator, - STATE(1662), 1, - sym__declarator, - STATE(1685), 1, - sym__declaration_declarator, - STATE(1739), 1, - sym__function_declaration_declarator, - STATE(2174), 1, - sym_ms_based_modifier, - STATE(1581), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - [63956] = 11, - ACTIONS(3), 1, + [100128] = 6, + ACTIONS(5176), 1, + anon_sym_COMMA, + ACTIONS(5194), 1, + anon_sym_SEMI, + STATE(2544), 1, + sym_gnu_asm_expression, + STATE(2546), 1, + aux_sym_declaration_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(1831), 1, - anon_sym_LPAREN2, - ACTIONS(1833), 1, - anon_sym_STAR, - ACTIONS(1835), 1, - anon_sym___based, - ACTIONS(3493), 1, - sym_identifier, - STATE(1569), 1, - sym_function_declarator, - STATE(1662), 1, - sym__declarator, - STATE(1701), 1, - sym__declaration_declarator, - STATE(1739), 1, - sym__function_declaration_declarator, - STATE(2174), 1, - sym_ms_based_modifier, - STATE(1581), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - [63993] = 11, - ACTIONS(3), 1, + ACTIONS(5180), 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(1831), 1, - anon_sym_LPAREN2, - ACTIONS(1833), 1, - anon_sym_STAR, - ACTIONS(1835), 1, - anon_sym___based, - ACTIONS(3493), 1, - sym_identifier, - STATE(1569), 1, - sym_function_declarator, - STATE(1593), 1, - sym__declarator, - STATE(1659), 1, - sym__declaration_declarator, - STATE(1739), 1, - sym__function_declaration_declarator, - STATE(2174), 1, - sym_ms_based_modifier, - STATE(1581), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - [64030] = 11, + ACTIONS(5030), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [100164] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1831), 1, - anon_sym_LPAREN2, - ACTIONS(1833), 1, - anon_sym_STAR, - ACTIONS(1835), 1, - anon_sym___based, - ACTIONS(3493), 1, + 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, - STATE(1569), 1, - sym_function_declarator, - STATE(1642), 1, - sym__declaration_declarator, - STATE(1662), 1, - sym__declarator, - STATE(1739), 1, - sym__function_declaration_declarator, - STATE(2174), 1, - sym_ms_based_modifier, - STATE(1581), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - [64067] = 11, + [100181] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1831), 1, - anon_sym_LPAREN2, - ACTIONS(1833), 1, - anon_sym_STAR, - ACTIONS(1835), 1, - anon_sym___based, - ACTIONS(3493), 1, + ACTIONS(5202), 1, + anon_sym_RBRACE, + ACTIONS(5200), 5, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, sym_identifier, - STATE(1569), 1, - sym_function_declarator, - STATE(1603), 1, - sym__declarator, - STATE(1655), 1, - sym__declaration_declarator, - STATE(1739), 1, - sym__function_declaration_declarator, - STATE(2174), 1, - sym_ms_based_modifier, - STATE(1581), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - [64104] = 11, - ACTIONS(3), 1, + [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(1831), 1, - anon_sym_LPAREN2, - ACTIONS(1833), 1, - anon_sym_STAR, - ACTIONS(1835), 1, - anon_sym___based, - ACTIONS(3493), 1, - sym_identifier, - STATE(1569), 1, - sym_function_declarator, - STATE(1646), 1, - sym__declaration_declarator, - STATE(1662), 1, - sym__declarator, - STATE(1739), 1, - sym__function_declaration_declarator, - STATE(2174), 1, - sym_ms_based_modifier, - STATE(1581), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - [64141] = 11, - ACTIONS(3), 1, + 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, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(1831), 1, + 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, + anon_sym_LBRACK, + ACTIONS(5208), 1, anon_sym_LPAREN2, - ACTIONS(1833), 1, - anon_sym_STAR, - ACTIONS(1835), 1, - anon_sym___based, - ACTIONS(3493), 1, - sym_identifier, - STATE(1569), 1, - sym_function_declarator, - STATE(1659), 1, - sym__declaration_declarator, - STATE(1662), 1, - sym__declarator, - STATE(1739), 1, - sym__function_declaration_declarator, - STATE(2174), 1, - sym_ms_based_modifier, - STATE(1581), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - [64178] = 11, - ACTIONS(3), 1, + STATE(618), 1, + sym_parameter_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(1831), 1, + STATE(2120), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [100276] = 4, + ACTIONS(5210), 1, anon_sym_LPAREN2, - ACTIONS(1833), 1, - anon_sym_STAR, - ACTIONS(1835), 1, - anon_sym___based, - ACTIONS(3493), 1, - sym_identifier, - STATE(1569), 1, - sym_function_declarator, - STATE(1661), 1, - sym__declaration_declarator, - STATE(1662), 1, - sym__declarator, - STATE(1739), 1, - sym__function_declaration_declarator, - STATE(2174), 1, - sym_ms_based_modifier, - STATE(1581), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - [64215] = 11, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(1831), 1, + 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(1833), 1, - anon_sym_STAR, - ACTIONS(1835), 1, - anon_sym___based, - ACTIONS(3493), 1, - sym_identifier, - STATE(1569), 1, - sym_function_declarator, - STATE(1645), 1, - sym__declaration_declarator, - STATE(1662), 1, - sym__declarator, - STATE(1739), 1, - sym__function_declaration_declarator, - STATE(2174), 1, - sym_ms_based_modifier, - STATE(1581), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - [64252] = 11, - ACTIONS(3), 1, + ACTIONS(5188), 1, + anon_sym_LBRACK, + STATE(2371), 1, + sym_parameter_list, + 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, + anon_sym_COMMA, + ACTIONS(5216), 1, + anon_sym_SEMI, + STATE(2674), 1, + aux_sym_declaration_repeat1, + STATE(2675), 1, + sym_gnu_asm_expression, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(5180), 2, + anon_sym_asm, + anon_sym___asm__, + [100333] = 6, + ACTIONS(5176), 1, + anon_sym_COMMA, + ACTIONS(5218), 1, + anon_sym_SEMI, + STATE(2631), 1, + sym_gnu_asm_expression, + STATE(2632), 1, + aux_sym_declaration_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(5180), 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(1831), 1, + ACTIONS(2658), 5, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(1833), 1, - anon_sym_STAR, - ACTIONS(1835), 1, - anon_sym___based, - ACTIONS(3493), 1, - sym_identifier, - STATE(1569), 1, - sym_function_declarator, - STATE(1613), 1, - sym__declarator, - STATE(1661), 1, - sym__declaration_declarator, - STATE(1739), 1, - sym__function_declaration_declarator, - STATE(2174), 1, - sym_ms_based_modifier, - STATE(1581), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - [64289] = 9, - ACTIONS(3), 1, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [100369] = 5, + ACTIONS(5120), 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(17), 1, - sym_preproc_directive, - ACTIONS(4003), 1, - sym_identifier, - ACTIONS(4005), 1, - aux_sym_preproc_if_token1, - ACTIONS(4015), 1, - anon_sym_RBRACE, - ACTIONS(4007), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(1985), 2, - sym_preproc_call, - sym_enumerator, - STATE(2064), 2, - sym_preproc_if_in_enumerator_list_no_comma, - sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(1471), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [64322] = 5, - ACTIONS(3), 1, + ACTIONS(5220), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [100388] = 6, + ACTIONS(5176), 1, + anon_sym_COMMA, + ACTIONS(5222), 1, + anon_sym_SEMI, + STATE(2669), 1, + aux_sym_declaration_repeat1, + STATE(2673), 1, + sym_gnu_asm_expression, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(39), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4019), 1, + ACTIONS(5180), 2, + anon_sym_asm, + anon_sym___asm__, + [100409] = 5, + ACTIONS(4754), 1, anon_sym_LBRACK, - STATE(1272), 2, + 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, - ACTIONS(4017), 8, + [100428] = 6, + ACTIONS(5176), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(5224), 1, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, + STATE(2558), 1, + aux_sym_declaration_repeat1, + STATE(2559), 1, + sym_gnu_asm_expression, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(5180), 2, anon_sym_asm, anon_sym___asm__, - [64346] = 9, - ACTIONS(3), 1, + [100449] = 6, + ACTIONS(5176), 1, + anon_sym_COMMA, + ACTIONS(5226), 1, + anon_sym_SEMI, + STATE(2556), 1, + aux_sym_declaration_repeat1, + STATE(2557), 1, + sym_gnu_asm_expression, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(1831), 1, + ACTIONS(5180), 2, + anon_sym_asm, + anon_sym___asm__, + [100470] = 4, + ACTIONS(5228), 1, anon_sym_LPAREN2, - ACTIONS(1833), 1, - anon_sym_STAR, - ACTIONS(1835), 1, - anon_sym___based, - ACTIONS(3136), 1, - sym_identifier, - STATE(554), 1, - sym__old_style_function_declarator, - STATE(1635), 1, - sym__declarator, - STATE(2174), 1, - sym_ms_based_modifier, - STATE(1569), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [64378] = 9, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(1831), 1, - anon_sym_LPAREN2, - ACTIONS(1833), 1, - anon_sym_STAR, - ACTIONS(1835), 1, - anon_sym___based, - ACTIONS(3136), 1, - sym_identifier, - STATE(552), 1, - sym__old_style_function_declarator, - STATE(1635), 1, - sym__declarator, - STATE(2174), 1, - sym_ms_based_modifier, - STATE(1569), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [64410] = 9, + STATE(2313), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(5212), 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(1831), 1, - anon_sym_LPAREN2, - ACTIONS(1833), 1, - anon_sym_STAR, - ACTIONS(1835), 1, - anon_sym___based, - ACTIONS(3136), 1, + 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, - STATE(584), 1, - sym__old_style_function_declarator, - STATE(1635), 1, - sym__declarator, - STATE(2174), 1, - sym_ms_based_modifier, - STATE(1569), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [64442] = 9, + [100504] = 5, + ACTIONS(5120), 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(5234), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [100523] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1831), 1, - anon_sym_LPAREN2, - ACTIONS(1833), 1, - anon_sym_STAR, - ACTIONS(1835), 1, - anon_sym___based, - ACTIONS(3136), 1, + 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, - STATE(567), 1, - sym__old_style_function_declarator, - STATE(1635), 1, - sym__declarator, - STATE(2174), 1, - sym_ms_based_modifier, - STATE(1569), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [64474] = 9, + [100540] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1831), 1, - anon_sym_LPAREN2, - ACTIONS(1833), 1, - anon_sym_STAR, - ACTIONS(1835), 1, - anon_sym___based, - ACTIONS(3136), 1, + 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, - STATE(606), 1, - sym__old_style_function_declarator, - STATE(1635), 1, - sym__declarator, - STATE(2174), 1, - sym_ms_based_modifier, - STATE(1569), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [64506] = 9, + [100557] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1831), 1, - anon_sym_LPAREN2, - ACTIONS(1833), 1, - anon_sym_STAR, - ACTIONS(1835), 1, - anon_sym___based, - ACTIONS(3136), 1, + 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, - STATE(585), 1, - sym__old_style_function_declarator, - STATE(1635), 1, - sym__declarator, - STATE(2174), 1, - sym_ms_based_modifier, - STATE(1569), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [64538] = 9, + [100574] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1831), 1, - anon_sym_LPAREN2, - ACTIONS(1833), 1, - anon_sym_STAR, - ACTIONS(1835), 1, - anon_sym___based, - ACTIONS(3136), 1, + 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, - STATE(578), 1, - sym__old_style_function_declarator, - STATE(1635), 1, - sym__declarator, - STATE(2174), 1, - sym_ms_based_modifier, - STATE(1569), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [64570] = 9, - ACTIONS(3), 1, + [100591] = 4, + ACTIONS(5248), 1, + anon_sym_LPAREN2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(2010), 1, + 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_LPAREN2, - ACTIONS(2012), 1, - anon_sym_STAR, - ACTIONS(3144), 1, + ACTIONS(4845), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4847), 1, anon_sym_LBRACK, - STATE(1583), 1, - sym_macro_modifier, - STATE(1691), 1, + STATE(1720), 1, sym_parameter_list, - STATE(1722), 1, - sym__abstract_declarator, - ACTIONS(4021), 2, - anon_sym___init, - anon_sym___exit, - STATE(1717), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - [64602] = 9, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(1831), 1, + STATE(2120), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [100629] = 4, + ACTIONS(5250), 1, anon_sym_LPAREN2, - ACTIONS(1833), 1, - anon_sym_STAR, - ACTIONS(1835), 1, - anon_sym___based, - ACTIONS(3136), 1, - sym_identifier, - STATE(594), 1, - sym__old_style_function_declarator, - STATE(1635), 1, - sym__declarator, - STATE(2174), 1, - sym_ms_based_modifier, - STATE(1569), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [64634] = 9, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4003), 1, - sym_identifier, - ACTIONS(4023), 1, - aux_sym_preproc_if_token2, - ACTIONS(4025), 1, - aux_sym_preproc_else_token1, - ACTIONS(4027), 1, - aux_sym_preproc_elif_token1, - STATE(1615), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2109), 1, - sym_enumerator, - ACTIONS(4029), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(2227), 3, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - [64665] = 8, - ACTIONS(3), 1, + 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, + anon_sym_COMMA, + ACTIONS(5252), 1, + anon_sym_SEMI, + STATE(2560), 1, + sym_gnu_asm_expression, + STATE(2561), 1, + aux_sym_declaration_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(1835), 1, - anon_sym___based, - ACTIONS(3262), 1, - sym_identifier, - ACTIONS(3264), 1, + ACTIONS(5180), 2, + anon_sym_asm, + anon_sym___asm__, + [100667] = 4, + ACTIONS(5254), 1, anon_sym_LPAREN2, - ACTIONS(3266), 1, - anon_sym_STAR, - STATE(1394), 1, - sym__field_declarator, - STATE(2274), 1, - sym_ms_based_modifier, - STATE(1438), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [64694] = 8, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(1831), 1, + 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, + [100684] = 4, + ACTIONS(5256), 1, anon_sym_LPAREN2, - ACTIONS(1833), 1, - anon_sym_STAR, - ACTIONS(1835), 1, - anon_sym___based, - ACTIONS(3136), 1, - sym_identifier, - STATE(1620), 1, - sym__declarator, - STATE(2174), 1, - sym_ms_based_modifier, - STATE(1569), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [64723] = 8, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(3898), 1, - sym_identifier, - ACTIONS(4031), 1, - aux_sym_preproc_if_token2, - ACTIONS(4033), 1, - aux_sym_preproc_else_token1, - ACTIONS(4035), 1, - aux_sym_preproc_elif_token1, - ACTIONS(4037), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(1614), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(2177), 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, - [64752] = 9, - ACTIONS(3), 1, + 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, + [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, - ACTIONS(4003), 1, - sym_identifier, - ACTIONS(4025), 1, - aux_sym_preproc_else_token1, - ACTIONS(4027), 1, - aux_sym_preproc_elif_token1, - ACTIONS(4039), 1, - aux_sym_preproc_if_token2, - STATE(1615), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2109), 1, - sym_enumerator, - ACTIONS(4029), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(2173), 3, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - [64783] = 8, - ACTIONS(3), 1, + STATE(2120), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [100722] = 6, + ACTIONS(5176), 1, + anon_sym_COMMA, + ACTIONS(5260), 1, + anon_sym_SEMI, + STATE(2733), 1, + sym_gnu_asm_expression, + STATE(2734), 1, + aux_sym_declaration_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(1831), 1, - anon_sym_LPAREN2, - ACTIONS(1833), 1, - anon_sym_STAR, - ACTIONS(1835), 1, - anon_sym___based, - ACTIONS(3136), 1, - sym_identifier, - STATE(1608), 1, - sym__declarator, - STATE(2174), 1, - sym_ms_based_modifier, - STATE(1569), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [64812] = 6, - ACTIONS(3), 1, + ACTIONS(5180), 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(4041), 1, - sym_identifier, - STATE(671), 1, - sym_string_literal, - ACTIONS(4043), 2, + ACTIONS(2654), 5, + anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, anon_sym_COLON, - STATE(1741), 2, - sym__string, - sym_concatenated_string, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [64837] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1831), 1, + [100758] = 5, + ACTIONS(5120), 1, anon_sym_LPAREN2, - ACTIONS(1833), 1, - anon_sym_STAR, - ACTIONS(1835), 1, - anon_sym___based, - ACTIONS(3136), 1, - sym_identifier, - STATE(1617), 1, - sym__declarator, - STATE(2174), 1, - sym_ms_based_modifier, - STATE(1569), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [64866] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4003), 1, - sym_identifier, - ACTIONS(4025), 1, - aux_sym_preproc_else_token1, - ACTIONS(4027), 1, - aux_sym_preproc_elif_token1, - ACTIONS(4045), 1, - aux_sym_preproc_if_token2, - STATE(1615), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2109), 1, - sym_enumerator, - ACTIONS(4029), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(2105), 3, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - [64897] = 6, - ACTIONS(3), 1, + ACTIONS(5188), 1, + anon_sym_LBRACK, + STATE(2371), 1, + sym_parameter_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4047), 1, + ACTIONS(5262), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [100777] = 6, + ACTIONS(5176), 1, + anon_sym_COMMA, + ACTIONS(5264), 1, anon_sym_SEMI, - ACTIONS(3478), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(3480), 2, - anon_sym___scanf, - anon_sym___printf, - STATE(1552), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(3482), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - [64922] = 8, - ACTIONS(3), 1, + STATE(2639), 1, + aux_sym_declaration_repeat1, + STATE(2641), 1, + sym_gnu_asm_expression, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(3898), 1, - sym_identifier, - ACTIONS(4033), 1, - aux_sym_preproc_else_token1, - ACTIONS(4035), 1, - aux_sym_preproc_elif_token1, - ACTIONS(4049), 1, - aux_sym_preproc_if_token2, - ACTIONS(4037), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(1614), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(2115), 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, - [64951] = 8, - ACTIONS(3), 1, + ACTIONS(5180), 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(1831), 1, + ACTIONS(4717), 2, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(1833), 1, - anon_sym_STAR, - ACTIONS(1835), 1, - anon_sym___based, - ACTIONS(3136), 1, - sym_identifier, - STATE(1621), 1, - sym__declarator, - STATE(2174), 1, - sym_ms_based_modifier, - STATE(1569), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [64980] = 8, - ACTIONS(3), 1, + STATE(2126), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [100817] = 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(3898), 1, - sym_identifier, - ACTIONS(4033), 1, - aux_sym_preproc_else_token1, - ACTIONS(4035), 1, - aux_sym_preproc_elif_token1, - ACTIONS(4051), 1, - aux_sym_preproc_if_token2, - ACTIONS(4037), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(1521), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(2226), 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, - [65009] = 9, + ACTIONS(1308), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_else, + anon_sym_while, + anon_sym___except, + anon_sym___finally, + [100830] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3908), 1, - aux_sym_preproc_if_token2, - ACTIONS(4003), 1, + 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, - ACTIONS(4025), 1, - aux_sym_preproc_else_token1, - ACTIONS(4027), 1, - aux_sym_preproc_elif_token1, - STATE(1522), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2109), 1, - sym_enumerator, - ACTIONS(4029), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(2225), 3, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - [65040] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4053), 1, - anon_sym_SEMI, - ACTIONS(3478), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(3480), 2, - anon_sym___scanf, - anon_sym___printf, - STATE(1455), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(3482), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - [65065] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4055), 1, - anon_sym_SEMI, - ACTIONS(3478), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(3480), 2, - anon_sym___scanf, - anon_sym___printf, - STATE(1520), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(3482), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - [65090] = 6, - ACTIONS(3), 1, + [100847] = 3, + STATE(875), 1, + sym_string_literal, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4057), 1, + ACTIONS(105), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [100862] = 6, + ACTIONS(5176), 1, + anon_sym_COMMA, + ACTIONS(5266), 1, anon_sym_SEMI, - ACTIONS(3478), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(3480), 2, - anon_sym___scanf, - anon_sym___printf, - STATE(1525), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(3482), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - [65115] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1831), 1, - anon_sym_LPAREN2, - ACTIONS(1833), 1, - anon_sym_STAR, - ACTIONS(1835), 1, - anon_sym___based, - ACTIONS(3136), 1, - sym_identifier, - STATE(1633), 1, - sym__declarator, - STATE(2174), 1, - sym_ms_based_modifier, - STATE(1569), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [65144] = 6, - ACTIONS(3), 1, + STATE(2627), 1, + aux_sym_declaration_repeat1, + STATE(2634), 1, + sym_gnu_asm_expression, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4059), 1, - anon_sym_SEMI, - ACTIONS(3478), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(3480), 2, - anon_sym___scanf, - anon_sym___printf, - STATE(1455), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(3482), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - [65169] = 8, + ACTIONS(5180), 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, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3898), 1, + ACTIONS(5270), 1, + anon_sym_RBRACE, + ACTIONS(5268), 5, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, sym_identifier, - ACTIONS(4033), 1, - aux_sym_preproc_else_token1, - ACTIONS(4035), 1, - aux_sym_preproc_elif_token1, - ACTIONS(4061), 1, - aux_sym_preproc_if_token2, - ACTIONS(4037), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(1614), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(2255), 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, - [65198] = 9, + [100913] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(4003), 1, - sym_identifier, - ACTIONS(4025), 1, - aux_sym_preproc_else_token1, - ACTIONS(4027), 1, + ACTIONS(5111), 2, aux_sym_preproc_elif_token1, - ACTIONS(4063), 1, + sym_identifier, + ACTIONS(5109), 4, aux_sym_preproc_if_token2, - STATE(1615), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2109), 1, - sym_enumerator, - ACTIONS(4029), 2, + aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(2254), 3, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - [65229] = 6, + [100930] = 4, ACTIONS(3), 1, + 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, + anon_sym_LPAREN2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4065), 1, + 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, + [100964] = 6, + ACTIONS(5176), 1, + anon_sym_COMMA, + ACTIONS(5278), 1, anon_sym_SEMI, - ACTIONS(3478), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(3480), 2, - anon_sym___scanf, - anon_sym___printf, - STATE(1535), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(3482), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - [65254] = 8, - ACTIONS(3), 1, + STATE(2622), 1, + aux_sym_declaration_repeat1, + STATE(2623), 1, + sym_gnu_asm_expression, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(1835), 1, - anon_sym___based, - ACTIONS(3262), 1, - sym_identifier, - ACTIONS(3264), 1, + ACTIONS(5180), 2, + anon_sym_asm, + anon_sym___asm__, + [100985] = 4, + ACTIONS(5280), 1, anon_sym_LPAREN2, - ACTIONS(3266), 1, - anon_sym_STAR, - STATE(1628), 1, - sym__field_declarator, - STATE(2274), 1, - sym_ms_based_modifier, - STATE(1438), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [65283] = 6, - ACTIONS(3), 1, + 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, + anon_sym_LPAREN2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4067), 1, + STATE(2334), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(5212), 3, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [101019] = 6, + ACTIONS(5176), 1, + anon_sym_COMMA, + ACTIONS(5287), 1, anon_sym_SEMI, - ACTIONS(3478), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(3480), 2, - anon_sym___scanf, - anon_sym___printf, - STATE(1455), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(3482), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - [65308] = 8, - ACTIONS(3), 1, + STATE(2607), 1, + aux_sym_declaration_repeat1, + STATE(2608), 1, + sym_gnu_asm_expression, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(1831), 1, + ACTIONS(5180), 2, + anon_sym_asm, + anon_sym___asm__, + [101040] = 5, + ACTIONS(5120), 1, anon_sym_LPAREN2, - ACTIONS(1833), 1, - anon_sym_STAR, - ACTIONS(1835), 1, - anon_sym___based, - ACTIONS(3136), 1, - sym_identifier, - STATE(1610), 1, - sym__declarator, - STATE(2174), 1, - sym_ms_based_modifier, - STATE(1569), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [65337] = 6, - ACTIONS(3), 1, + ACTIONS(5188), 1, + anon_sym_LBRACK, + STATE(2371), 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, + 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(4069), 1, + ACTIONS(5291), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [101078] = 6, + ACTIONS(5176), 1, + anon_sym_COMMA, + ACTIONS(5293), 1, anon_sym_SEMI, - ACTIONS(3478), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(3480), 2, - anon_sym___scanf, - anon_sym___printf, - STATE(1542), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(3482), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - [65362] = 4, - ACTIONS(3), 1, + STATE(2599), 1, + aux_sym_declaration_repeat1, + STATE(2600), 1, + sym_gnu_asm_expression, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(3823), 1, + ACTIONS(5180), 2, + anon_sym_asm, + anon_sym___asm__, + [101099] = 6, + ACTIONS(5176), 1, anon_sym_COMMA, - STATE(1547), 1, - aux_sym__field_declaration_declarator_repeat1, - ACTIONS(4071), 9, + ACTIONS(5295), 1, 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, - [65383] = 6, - ACTIONS(3), 1, + STATE(2593), 1, + aux_sym_declaration_repeat1, + STATE(2594), 1, + sym_gnu_asm_expression, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4073), 1, + ACTIONS(5180), 2, + anon_sym_asm, + anon_sym___asm__, + [101120] = 6, + ACTIONS(5176), 1, + anon_sym_COMMA, + ACTIONS(5297), 1, anon_sym_SEMI, - ACTIONS(3478), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(3480), 2, - anon_sym___scanf, - anon_sym___printf, - STATE(1455), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(3482), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - [65408] = 8, - ACTIONS(3), 1, + STATE(2586), 1, + aux_sym_declaration_repeat1, + STATE(2587), 1, + sym_gnu_asm_expression, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(5180), 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, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(1831), 1, + 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, anon_sym_LPAREN2, - ACTIONS(1833), 1, - anon_sym_STAR, - ACTIONS(1835), 1, - anon_sym___based, - ACTIONS(3136), 1, - sym_identifier, - STATE(1591), 1, - sym__declarator, - STATE(2174), 1, - sym_ms_based_modifier, - STATE(1569), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [65437] = 6, - ACTIONS(3), 1, + STATE(884), 1, + sym_parameter_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4075), 1, + STATE(2120), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [101183] = 6, + ACTIONS(5176), 1, + anon_sym_COMMA, + ACTIONS(5303), 1, anon_sym_SEMI, - ACTIONS(3478), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(3480), 2, - anon_sym___scanf, - anon_sym___printf, - STATE(1455), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(3482), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - [65462] = 4, - ACTIONS(3), 1, + STATE(2564), 1, + sym_gnu_asm_expression, + STATE(2591), 1, + aux_sym_declaration_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(3823), 1, + ACTIONS(5180), 2, + anon_sym_asm, + anon_sym___asm__, + [101204] = 6, + ACTIONS(5176), 1, anon_sym_COMMA, - STATE(1544), 1, - aux_sym__field_declaration_declarator_repeat1, - ACTIONS(4077), 9, + ACTIONS(5305), 1, 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, - [65483] = 8, + STATE(2520), 1, + aux_sym_declaration_repeat1, + STATE(2521), 1, + sym_gnu_asm_expression, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(5180), 2, + anon_sym_asm, + anon_sym___asm__, + [101225] = 3, + ACTIONS(2660), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(2662), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [101240] = 6, + ACTIONS(5176), 1, + anon_sym_COMMA, + ACTIONS(5307), 1, + anon_sym_SEMI, + STATE(2601), 1, + sym_gnu_asm_expression, + STATE(2602), 1, + aux_sym_declaration_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(5180), 2, + anon_sym_asm, + anon_sym___asm__, + [101261] = 6, + ACTIONS(5176), 1, + anon_sym_COMMA, + ACTIONS(5309), 1, + anon_sym_SEMI, + STATE(2494), 1, + sym_gnu_asm_expression, + STATE(2495), 1, + aux_sym_declaration_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(5180), 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, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(5180), 2, + anon_sym_asm, + anon_sym___asm__, + [101303] = 6, + ACTIONS(5176), 1, + anon_sym_COMMA, + ACTIONS(5313), 1, + anon_sym_SEMI, + STATE(2525), 1, + sym_gnu_asm_expression, + STATE(2527), 1, + aux_sym_declaration_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(5180), 2, + anon_sym_asm, + anon_sym___asm__, + [101324] = 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(5315), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_COLON, + [101336] = 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(5317), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_COLON, + [101348] = 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(5319), 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, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3972), 1, + anon_sym_LBRACE, + ACTIONS(4768), 1, + anon_sym___declspec, + ACTIONS(5329), 1, + sym_identifier, + STATE(1537), 1, + sym_field_declaration_list, + STATE(2508), 1, + sym_ms_declspec_modifier, + [101422] = 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(1831), 1, + ACTIONS(5331), 5, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(1833), 1, - anon_sym_STAR, - ACTIONS(1835), 1, - anon_sym___based, - ACTIONS(3136), 1, + 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(1632), 1, - sym__declarator, - STATE(2174), 1, - sym_ms_based_modifier, - STATE(1569), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [65512] = 9, + 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, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(4003), 1, + ACTIONS(3043), 1, + anon_sym_LBRACE, + ACTIONS(4768), 1, + anon_sym___declspec, + ACTIONS(5337), 1, sym_identifier, - ACTIONS(4025), 1, - aux_sym_preproc_else_token1, - ACTIONS(4027), 1, - aux_sym_preproc_elif_token1, - ACTIONS(4079), 1, - aux_sym_preproc_if_token2, - STATE(1506), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2109), 1, - sym_enumerator, - ACTIONS(4029), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(2079), 3, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - [65543] = 6, + STATE(1104), 1, + sym_field_declaration_list, + STATE(2481), 1, + sym_ms_declspec_modifier, + [101498] = 7, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(4081), 1, - anon_sym_SEMI, - ACTIONS(3478), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(3480), 2, - anon_sym___scanf, - anon_sym___printf, - STATE(1455), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(3482), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - [65568] = 8, + 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(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(5341), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_COLON, + [101532] = 5, + ACTIONS(5120), 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(5098), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [101550] = 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(5343), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_COLON, + [101562] = 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(5345), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_COLON, + [101574] = 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(5347), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_COLON, + [101586] = 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(5349), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_COLON, + [101598] = 7, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3898), 1, + ACTIONS(3902), 1, + anon_sym_LBRACE, + ACTIONS(4768), 1, + anon_sym___declspec, + ACTIONS(5351), 1, sym_identifier, - ACTIONS(4033), 1, - aux_sym_preproc_else_token1, - ACTIONS(4035), 1, - aux_sym_preproc_elif_token1, - ACTIONS(4083), 1, - aux_sym_preproc_if_token2, - ACTIONS(4037), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(1551), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(2179), 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, - [65597] = 6, + STATE(1518), 1, + sym_field_declaration_list, + STATE(2550), 1, + sym_ms_declspec_modifier, + [101620] = 7, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3996), 1, + anon_sym_LBRACE, + ACTIONS(4768), 1, + anon_sym___declspec, + ACTIONS(5353), 1, + sym_identifier, + STATE(1649), 1, + sym_field_declaration_list, + STATE(2605), 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, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(5359), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_COLON, + [101672] = 4, + STATE(2918), 1, + sym_gnu_asm_expression, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4085), 1, + ACTIONS(5180), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(5361), 2, + anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(3478), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(3480), 2, - anon_sym___scanf, - anon_sym___printf, - STATE(1531), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(3482), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - [65622] = 8, + [101688] = 7, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(4087), 1, + ACTIONS(3588), 1, + anon_sym_LBRACE, + ACTIONS(4768), 1, + anon_sym___declspec, + ACTIONS(5363), 1, sym_identifier, - ACTIONS(4090), 1, - aux_sym_preproc_if_token1, - ACTIONS(4096), 1, - sym_preproc_directive, - ACTIONS(4099), 1, - anon_sym_RBRACE, - ACTIONS(4093), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(2120), 2, - sym_preproc_call, - sym_enumerator, - STATE(1538), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [65651] = 9, - ACTIONS(3), 1, + STATE(1309), 1, + sym_field_declaration_list, + STATE(2731), 1, + sym_ms_declspec_modifier, + [101710] = 6, + ACTIONS(5323), 1, + anon_sym_LPAREN, + ACTIONS(5325), 1, + aux_sym_preproc_arg_token1, + ACTIONS(5365), 1, + aux_sym_preproc_include_token2, + STATE(2721), 1, + sym_preproc_params, + STATE(3294), 1, + sym_preproc_arg, + ACTIONS(3), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4003), 1, - sym_identifier, - ACTIONS(4025), 1, - aux_sym_preproc_else_token1, - ACTIONS(4027), 1, - aux_sym_preproc_elif_token1, - ACTIONS(4101), 1, - aux_sym_preproc_if_token2, - STATE(1510), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2109), 1, - sym_enumerator, - ACTIONS(4029), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(2156), 3, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - [65682] = 8, + [101730] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1831), 1, + ACTIONS(3660), 2, + anon_sym___init, + anon_sym___exit, + ACTIONS(3662), 3, anon_sym_LPAREN2, - ACTIONS(1833), 1, anon_sym_STAR, - ACTIONS(1835), 1, - anon_sym___based, - ACTIONS(3136), 1, - sym_identifier, - STATE(1600), 1, - sym__declarator, - STATE(2174), 1, - sym_ms_based_modifier, - STATE(1569), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [65711] = 8, + anon_sym_LBRACK, + [101746] = 7, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1831), 1, - anon_sym_LPAREN2, - ACTIONS(1833), 1, - anon_sym_STAR, - ACTIONS(1835), 1, - anon_sym___based, - ACTIONS(3136), 1, + ACTIONS(4736), 1, sym_identifier, - STATE(1597), 1, - sym__declarator, - STATE(2174), 1, - sym_ms_based_modifier, - STATE(1569), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [65740] = 6, - ACTIONS(3), 1, + 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, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4103), 1, - anon_sym_SEMI, - ACTIONS(3478), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(3480), 2, - anon_sym___scanf, - anon_sym___printf, - STATE(1455), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(3482), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - [65765] = 6, - ACTIONS(3), 1, + [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, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4105), 1, - anon_sym_SEMI, - ACTIONS(3478), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(3480), 2, - anon_sym___scanf, - anon_sym___printf, - STATE(1529), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(3482), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - [65790] = 4, - ACTIONS(3), 1, + [101808] = 4, + STATE(2939), 1, + sym_gnu_asm_expression, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4107), 1, + ACTIONS(5180), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(5373), 2, anon_sym_COMMA, - STATE(1544), 1, - aux_sym__field_declaration_declarator_repeat1, - ACTIONS(4110), 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, - [65811] = 9, + [101824] = 7, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3910), 1, - aux_sym_preproc_if_token2, - ACTIONS(4003), 1, + ACTIONS(2956), 1, + anon_sym_LBRACE, + ACTIONS(4768), 1, + anon_sym___declspec, + ACTIONS(5375), 1, sym_identifier, - ACTIONS(4025), 1, - aux_sym_preproc_else_token1, - ACTIONS(4027), 1, - aux_sym_preproc_elif_token1, - STATE(1502), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2109), 1, - sym_enumerator, - ACTIONS(4029), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(2178), 3, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - [65842] = 4, - ACTIONS(3), 1, + STATE(1075), 1, + sym_field_declaration_list, + STATE(2489), 1, + sym_ms_declspec_modifier, + [101846] = 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(3864), 1, + ACTIONS(5377), 5, anon_sym_COMMA, - STATE(1548), 1, - aux_sym__type_definition_declarators_repeat1, - ACTIONS(4112), 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, - [65863] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_COLON, + [101858] = 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(3823), 1, + ACTIONS(5379), 5, anon_sym_COMMA, - STATE(1544), 1, - aux_sym__field_declaration_declarator_repeat1, - ACTIONS(4114), 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, - [65884] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_COLON, + [101870] = 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4116), 1, + ACTIONS(5381), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_COLON, + [101882] = 6, + ACTIONS(5323), 1, + anon_sym_LPAREN, + ACTIONS(5325), 1, + aux_sym_preproc_arg_token1, + ACTIONS(5383), 1, + aux_sym_preproc_include_token2, + STATE(2653), 1, + sym_preproc_params, + STATE(3035), 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, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(5180), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(5385), 2, anon_sym_COMMA, - STATE(1548), 1, - aux_sym__type_definition_declarators_repeat1, - ACTIONS(4119), 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, - [65905] = 8, + [101918] = 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(5387), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_COLON, + [101930] = 5, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(1835), 1, - anon_sym___based, - ACTIONS(3262), 1, + ACTIONS(4736), 1, sym_identifier, - ACTIONS(3264), 1, + 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, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(5391), 4, anon_sym_LPAREN2, - ACTIONS(3266), 1, - anon_sym_STAR, - STATE(1634), 1, - sym__field_declarator, - STATE(2274), 1, - sym_ms_based_modifier, - STATE(1438), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [65934] = 6, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [101958] = 6, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(4121), 1, - anon_sym_SEMI, - ACTIONS(3478), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(3480), 2, - anon_sym___scanf, - anon_sym___printf, - STATE(1516), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(3482), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - [65959] = 8, + 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, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(4774), 3, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + [101990] = 5, + ACTIONS(5120), 1, + anon_sym_LPAREN2, + ACTIONS(5188), 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, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(4885), 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, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + STATE(513), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [102035] = 5, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3898), 1, + ACTIONS(4736), 1, sym_identifier, - ACTIONS(4033), 1, - aux_sym_preproc_else_token1, - ACTIONS(4035), 1, - aux_sym_preproc_elif_token1, - ACTIONS(4123), 1, + ACTIONS(5401), 1, aux_sym_preproc_if_token2, - ACTIONS(4037), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(1614), 2, + STATE(2270), 2, sym_enumerator, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(2228), 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, - [65988] = 6, - ACTIONS(3), 1, + [102052] = 3, + ACTIONS(4859), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4125), 1, - anon_sym_SEMI, - ACTIONS(3478), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(3480), 2, - anon_sym___scanf, - anon_sym___printf, - STATE(1455), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(3482), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - [66013] = 6, - ACTIONS(3), 1, + ACTIONS(4857), 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, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4127), 1, - anon_sym_SEMI, - STATE(2119), 1, - sym_attribute_specifier, - ACTIONS(3478), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(3480), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(3482), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - [66037] = 3, - ACTIONS(3), 1, + 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(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(5409), 2, + 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, + sym__linux_kernel_annotations, + sym_comment, + [102112] = 4, + ACTIONS(5417), 1, + anon_sym_SQUOTE, + STATE(2428), 1, + aux_sym_char_literal_repeat1, + ACTIONS(3), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(5419), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [102127] = 5, + ACTIONS(5413), 1, + aux_sym_string_literal_token1, + ACTIONS(5415), 1, + sym_escape_sequence, + ACTIONS(5421), 1, + anon_sym_DQUOTE, + STATE(2433), 1, + aux_sym_string_literal_repeat1, + ACTIONS(3), 2, + sym__linux_kernel_annotations, + sym_comment, + [102144] = 4, + ACTIONS(5423), 1, + anon_sym_SQUOTE, + STATE(2428), 1, + aux_sym_char_literal_repeat1, + ACTIONS(3), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4131), 1, + ACTIONS(5419), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [102159] = 3, + ACTIONS(4905), 1, anon_sym_LBRACK, - ACTIONS(4129), 9, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(4903), 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, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(4786), 3, 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__, - [66055] = 10, - ACTIONS(3), 1, + [102200] = 3, + ACTIONS(4899), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(39), 1, + ACTIONS(4897), 3, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - ACTIONS(391), 1, - anon_sym_LBRACE, - ACTIONS(3999), 1, + [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, anon_sym_LBRACK, - ACTIONS(4133), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(4821), 3, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(4135), 1, - anon_sym_EQ, - STATE(305), 1, - sym_compound_statement, - STATE(1021), 1, - sym__old_style_parameter_list, - STATE(1257), 1, - sym_parameter_list, - STATE(1492), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [66087] = 10, - ACTIONS(3), 1, + anon_sym_LBRACK_LBRACK, + [102243] = 3, + ACTIONS(4782), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(39), 1, + ACTIONS(4780), 3, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - ACTIONS(137), 1, - anon_sym_LBRACE, - ACTIONS(3999), 1, + [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, anon_sym_LBRACK, - ACTIONS(4133), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(4756), 3, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(4135), 1, - anon_sym_EQ, - STATE(134), 1, - sym_compound_statement, - STATE(1021), 1, - sym__old_style_parameter_list, - STATE(1257), 1, - sym_parameter_list, - STATE(1492), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [66119] = 6, + anon_sym_LBRACK_LBRACK, + [102299] = 3, + ACTIONS(4815), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(4813), 3, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + [102312] = 4, + ACTIONS(5442), 1, + anon_sym___except, + ACTIONS(5444), 1, + anon_sym___finally, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + STATE(227), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [102327] = 3, + ACTIONS(4851), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(4849), 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, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(4817), 3, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + [102370] = 3, + ACTIONS(4881), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(4879), 3, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + [102383] = 5, + ACTIONS(5454), 1, + anon_sym_DQUOTE, + ACTIONS(5456), 1, + aux_sym_string_literal_token1, + ACTIONS(5458), 1, + sym_escape_sequence, + STATE(2418), 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, + 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(4139), 1, + 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, - STATE(1754), 1, - sym_gnu_asm_input_operand, - STATE(2150), 1, - sym_string_literal, - ACTIONS(4137), 2, + ACTIONS(5464), 1, + anon_sym_RPAREN, + STATE(2371), 1, + sym_parameter_list, + 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, + anon_sym_RPAREN, + STATE(2371), 1, + sym_parameter_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [102468] = 4, + ACTIONS(5468), 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(5471), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [102483] = 5, + ACTIONS(5413), 1, + aux_sym_string_literal_token1, + ACTIONS(5415), 1, + sym_escape_sequence, + ACTIONS(5473), 1, + anon_sym_DQUOTE, + STATE(2433), 1, + aux_sym_string_literal_repeat1, + ACTIONS(3), 2, + sym__linux_kernel_annotations, + sym_comment, + [102500] = 3, + ACTIONS(4827), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(4825), 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, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(5475), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [102528] = 4, + ACTIONS(5477), 1, + anon_sym_COMMA, + STATE(2464), 1, + aux_sym_gnu_asm_clobber_list_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(5479), 2, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, + [102543] = 5, + ACTIONS(5481), 1, anon_sym_DQUOTE, - [66143] = 3, - ACTIONS(3), 1, + ACTIONS(5483), 1, + aux_sym_string_literal_token1, + ACTIONS(5485), 1, + sym_escape_sequence, + STATE(2461), 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, + 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, + anon_sym_SQUOTE, + STATE(2428), 1, + aux_sym_char_literal_repeat1, + ACTIONS(3), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4143), 1, + ACTIONS(5419), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [102590] = 3, + ACTIONS(4796), 1, anon_sym_LBRACK, - ACTIONS(4141), 9, - anon_sym_COMMA, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(4794), 3, 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__, - [66161] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4147), 1, + [102603] = 3, + ACTIONS(4873), 1, anon_sym_LBRACK, - ACTIONS(4145), 9, - anon_sym_COMMA, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(4871), 3, 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__, - [66179] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4151), 1, + [102616] = 3, + ACTIONS(4869), 1, anon_sym_LBRACK, - ACTIONS(4149), 9, - anon_sym_COMMA, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(4867), 3, 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__, - [66197] = 10, - ACTIONS(3), 1, + [102629] = 3, + ACTIONS(4865), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(39), 1, + ACTIONS(4863), 3, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - ACTIONS(455), 1, - anon_sym_LBRACE, - ACTIONS(3999), 1, + [102642] = 3, + ACTIONS(4891), 1, anon_sym_LBRACK, - ACTIONS(4133), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(4889), 3, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(4135), 1, - anon_sym_EQ, - STATE(293), 1, - sym_compound_statement, - STATE(1021), 1, - sym__old_style_parameter_list, - STATE(1257), 1, - sym_parameter_list, - STATE(1492), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [66229] = 6, - ACTIONS(3), 1, + 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, + ACTIONS(3), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4153), 1, - anon_sym_SEMI, - STATE(2095), 1, - sym_attribute_specifier, - ACTIONS(3478), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(3480), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(3482), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - [66253] = 2, - ACTIONS(3), 1, + [102672] = 4, + ACTIONS(5493), 1, + anon_sym___except, + ACTIONS(5495), 1, + anon_sym___finally, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4155), 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, - [66269] = 6, - ACTIONS(3), 1, + 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, - ACTIONS(4159), 1, - anon_sym_LBRACK, - STATE(1753), 1, - sym_gnu_asm_output_operand, - STATE(2041), 1, - sym_string_literal, - ACTIONS(4157), 2, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, + STATE(2756), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [102702] = 5, + ACTIONS(5501), 1, anon_sym_DQUOTE, - [66293] = 3, - ACTIONS(3), 1, + ACTIONS(5503), 1, + aux_sym_string_literal_token1, + ACTIONS(5505), 1, + sym_escape_sequence, + STATE(2442), 1, + aux_sym_string_literal_repeat1, + ACTIONS(3), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4163), 1, + [102719] = 3, + ACTIONS(4811), 1, anon_sym_LBRACK, - ACTIONS(4161), 9, - anon_sym_COMMA, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(4809), 3, 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__, - [66311] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4165), 1, - anon_sym_SEMI, - STATE(2308), 1, - sym_attribute_specifier, - ACTIONS(3478), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(3480), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(3482), 4, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___noreturn, - anon_sym___cold, - [66335] = 3, - ACTIONS(3), 1, + [102732] = 4, + ACTIONS(5507), 1, + anon_sym_SQUOTE, + STATE(2428), 1, + aux_sym_char_literal_repeat1, + ACTIONS(3), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4169), 1, - anon_sym_LBRACK, - ACTIONS(4167), 9, + ACTIONS(5419), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [102747] = 5, + ACTIONS(5509), 1, anon_sym_COMMA, + ACTIONS(5511), 1, 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__, - [66353] = 10, - ACTIONS(3), 1, + 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, - ACTIONS(39), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(3999), 1, - anon_sym_LBRACK, - ACTIONS(4133), 1, + [102764] = 5, + ACTIONS(5413), 1, + aux_sym_string_literal_token1, + ACTIONS(5415), 1, + sym_escape_sequence, + ACTIONS(5513), 1, + anon_sym_DQUOTE, + STATE(2433), 1, + aux_sym_string_literal_repeat1, + ACTIONS(3), 2, + sym__linux_kernel_annotations, + sym_comment, + [102781] = 4, + ACTIONS(3622), 1, anon_sym_LPAREN2, - ACTIONS(4135), 1, - anon_sym_EQ, - STATE(385), 1, - sym_compound_statement, - STATE(1021), 1, - sym__old_style_parameter_list, - STATE(1257), 1, - sym_parameter_list, - STATE(1492), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [66385] = 3, - ACTIONS(3), 1, + STATE(2888), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(3146), 1, - anon_sym_LBRACK, - ACTIONS(4171), 9, + 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, + sym__linux_kernel_annotations, + 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, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(5522), 2, anon_sym_RPAREN, - anon_sym_LPAREN2, + anon_sym_COLON, + [102826] = 5, + ACTIONS(5524), 1, + anon_sym_DQUOTE, + ACTIONS(5526), 1, + aux_sym_string_literal_token1, + ACTIONS(5528), 1, + sym_escape_sequence, + STATE(2416), 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, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(5533), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [102858] = 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(5535), 4, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [66403] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4175), 1, + [102869] = 3, + ACTIONS(4772), 1, anon_sym_LBRACK, - ACTIONS(4173), 9, - anon_sym_COMMA, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(4770), 3, 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__, - [66421] = 5, - ACTIONS(3), 1, + [102882] = 5, + ACTIONS(5509), 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, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4177), 1, - sym_identifier, - ACTIONS(4181), 1, - sym_system_lib_string, - STATE(2246), 2, - sym_preproc_call_expression, - sym_string_literal, - ACTIONS(4179), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [66442] = 5, + [102899] = 4, + ACTIONS(5539), 1, + anon_sym_RPAREN, + ACTIONS(5541), 1, + anon_sym_COLON, + STATE(2628), 1, + sym_gnu_asm_input_operand_list, + 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, + 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, + sym__linux_kernel_annotations, + sym_comment, + [102955] = 5, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(4041), 1, + ACTIONS(2942), 1, + anon_sym_LBRACE, + ACTIONS(5551), 1, sym_identifier, - STATE(671), 1, - sym_string_literal, - STATE(1776), 2, - sym__string, - sym_concatenated_string, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [66463] = 5, + STATE(1094), 1, + sym_enumerator_list, + [102971] = 3, + STATE(2448), 1, + aux_sym_char_literal_repeat1, + ACTIONS(3), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(5553), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [102983] = 4, + ACTIONS(5555), 1, + aux_sym_preproc_include_token2, + ACTIONS(5557), 1, + anon_sym_LPAREN2, + STATE(3319), 1, + sym_preproc_argument_list, + ACTIONS(3), 2, + sym__linux_kernel_annotations, + sym_comment, + [102997] = 5, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(4183), 1, + ACTIONS(3916), 1, + anon_sym_LBRACE, + ACTIONS(5559), 1, sym_identifier, - ACTIONS(4185), 1, - sym_system_lib_string, - STATE(2133), 2, - sym_preproc_call_expression, - sym_string_literal, - ACTIONS(4179), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [66484] = 5, + STATE(1545), 1, + sym_enumerator_list, + [103013] = 4, ACTIONS(3), 1, + 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, - ACTIONS(4041), 1, - sym_identifier, - STATE(671), 1, - sym_string_literal, - STATE(1901), 2, - sym__string, - sym_concatenated_string, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [66505] = 5, + [103027] = 4, + ACTIONS(5565), 1, + anon_sym_COMMA, + ACTIONS(5567), 1, + anon_sym_RBRACK_RBRACK, + STATE(2487), 1, + aux_sym_attribute_declaration_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [103041] = 5, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(4187), 1, + ACTIONS(2956), 1, + anon_sym_LBRACE, + ACTIONS(5375), 1, sym_identifier, - ACTIONS(4189), 1, - sym_system_lib_string, - STATE(2277), 2, - sym_preproc_call_expression, - sym_string_literal, - ACTIONS(4179), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [66526] = 9, + STATE(1075), 1, + sym_field_declaration_list, + [103057] = 5, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(39), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(137), 1, + ACTIONS(3043), 1, anon_sym_LBRACE, - ACTIONS(3999), 1, - anon_sym_LBRACK, - ACTIONS(4133), 1, - anon_sym_LPAREN2, - STATE(130), 1, - sym_compound_statement, - STATE(1021), 1, - sym__old_style_parameter_list, - STATE(1255), 1, - sym_parameter_list, - STATE(1492), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [66555] = 5, + ACTIONS(5569), 1, + sym_identifier, + STATE(1095), 1, + sym_field_declaration_list, + [103073] = 4, + ACTIONS(5176), 1, + anon_sym_COMMA, + ACTIONS(5571), 1, + anon_sym_SEMI, + STATE(2496), 1, + aux_sym_declaration_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [103087] = 5, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(4041), 1, + ACTIONS(5573), 1, sym_identifier, - STATE(671), 1, - sym_string_literal, - STATE(1791), 2, - sym__string, - sym_concatenated_string, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [66576] = 9, + ACTIONS(5575), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5577), 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, + sym__linux_kernel_annotations, + sym_comment, + [103117] = 4, + ACTIONS(5581), 1, + anon_sym_RPAREN, + ACTIONS(5583), 1, + anon_sym_COLON, + STATE(3261), 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, + aux_sym_preproc_include_token2, + STATE(2505), 1, + aux_sym_preproc_arg_repeat1, + ACTIONS(5587), 2, + aux_sym_preproc_arg_token2, sym_comment, - ACTIONS(39), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(455), 1, - anon_sym_LBRACE, - ACTIONS(3825), 1, - anon_sym_LPAREN2, - ACTIONS(3999), 1, - anon_sym_LBRACK, - ACTIONS(4135), 1, + [103145] = 4, + ACTIONS(5565), 1, + anon_sym_COMMA, + ACTIONS(5589), 1, + anon_sym_RBRACK_RBRACK, + STATE(2512), 1, + aux_sym_attribute_declaration_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [103159] = 3, + ACTIONS(5591), 1, anon_sym_EQ, - STATE(293), 1, - sym_compound_statement, - STATE(1257), 1, - sym_parameter_list, - STATE(1492), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [66605] = 9, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(5102), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [103171] = 5, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(39), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(391), 1, + ACTIONS(2956), 1, anon_sym_LBRACE, - ACTIONS(3825), 1, + ACTIONS(5593), 1, + sym_identifier, + STATE(1051), 1, + sym_field_declaration_list, + [103187] = 4, + ACTIONS(5557), 1, anon_sym_LPAREN2, - ACTIONS(3999), 1, - anon_sym_LBRACK, - ACTIONS(4135), 1, - anon_sym_EQ, - STATE(305), 1, - sym_compound_statement, - STATE(1257), 1, - sym_parameter_list, - STATE(1492), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [66634] = 9, + ACTIONS(5595), 1, + aux_sym_preproc_include_token2, + STATE(3319), 1, + sym_preproc_argument_list, + ACTIONS(3), 2, + sym__linux_kernel_annotations, + sym_comment, + [103201] = 3, + STATE(2447), 1, + aux_sym_char_literal_repeat1, + ACTIONS(3), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(5597), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [103213] = 4, + ACTIONS(4008), 1, + anon_sym_COMMA, + ACTIONS(5599), 1, + anon_sym_RPAREN, + STATE(2723), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [103227] = 4, + ACTIONS(5601), 1, + anon_sym_RPAREN, + ACTIONS(5603), 1, + anon_sym_COLON, + STATE(2513), 1, + sym_gnu_asm_output_operand_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [103241] = 4, + ACTIONS(5176), 1, + anon_sym_COMMA, + ACTIONS(5605), 1, + anon_sym_SEMI, + STATE(2529), 1, + aux_sym_declaration_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [103255] = 4, + ACTIONS(5176), 1, + anon_sym_COMMA, + ACTIONS(5607), 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, + anon_sym_COMMA, + ACTIONS(5609), 1, + anon_sym_SEMI, + STATE(2530), 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, + anon_sym_RPAREN, + STATE(2526), 1, + sym_gnu_asm_input_operand_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [103297] = 4, + ACTIONS(4000), 1, + anon_sym_COMMA, + ACTIONS(4022), 1, + anon_sym_RPAREN, + STATE(2531), 1, + aux_sym_argument_list_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [103311] = 4, + ACTIONS(5565), 1, + anon_sym_COMMA, + ACTIONS(5613), 1, + anon_sym_RBRACK_RBRACK, + STATE(2538), 1, + aux_sym_attribute_declaration_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [103325] = 4, + ACTIONS(5543), 1, + anon_sym_COMMA, + ACTIONS(5615), 1, + anon_sym_RPAREN, + STATE(2510), 1, + aux_sym_attribute_specifier_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [103339] = 4, + ACTIONS(5176), 1, + anon_sym_COMMA, + ACTIONS(5617), 1, + anon_sym_SEMI, + STATE(2530), 1, + aux_sym_declaration_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [103353] = 4, + ACTIONS(5619), 1, + anon_sym_COMMA, + ACTIONS(5621), 1, + anon_sym_RPAREN, + STATE(2533), 1, + aux_sym_preproc_params_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [103367] = 4, + ACTIONS(5623), 1, + anon_sym_RPAREN, + ACTIONS(5625), 1, + anon_sym_COLON, + STATE(2485), 1, + sym_gnu_asm_clobber_list, + 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, + 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, - ACTIONS(39), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(47), 1, + [103409] = 4, + ACTIONS(5634), 1, + anon_sym_COMMA, + ACTIONS(5636), 1, + anon_sym_RPAREN, + STATE(2535), 1, + aux_sym_parameter_list_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [103423] = 5, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3902), 1, anon_sym_LBRACE, - ACTIONS(3825), 1, - anon_sym_LPAREN2, - ACTIONS(3999), 1, - anon_sym_LBRACK, - ACTIONS(4135), 1, - anon_sym_EQ, - STATE(385), 1, - sym_compound_statement, - STATE(1257), 1, - sym_parameter_list, - STATE(1492), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [66663] = 4, + ACTIONS(5351), 1, + sym_identifier, + STATE(1518), 1, + sym_field_declaration_list, + [103439] = 5, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3146), 1, - anon_sym_LBRACK, - ACTIONS(4171), 4, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, + ACTIONS(3972), 1, anon_sym_LBRACE, - anon_sym_EQ, - ACTIONS(4191), 4, + ACTIONS(5638), 1, + sym_identifier, + STATE(1551), 1, + sym_field_declaration_list, + [103455] = 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3988), 3, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + [103465] = 4, + ACTIONS(5543), 1, + anon_sym_COMMA, + ACTIONS(5640), 1, + anon_sym_RPAREN, + STATE(2539), 1, + aux_sym_attribute_specifier_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [103479] = 3, + STATE(2419), 1, + aux_sym_char_literal_repeat1, + 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, + anon_sym_COMMA, + ACTIONS(5647), 1, + anon_sym_RBRACK_RBRACK, + STATE(2512), 1, + aux_sym_attribute_declaration_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, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [103519] = 4, + ACTIONS(5603), 1, + anon_sym_COLON, + ACTIONS(5651), 1, + anon_sym_RPAREN, + STATE(2542), 1, + sym_gnu_asm_output_operand_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [103533] = 4, + ACTIONS(5176), 1, + anon_sym_COMMA, + ACTIONS(5653), 1, + anon_sym_SEMI, + STATE(2543), 1, + aux_sym_declaration_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [103547] = 4, + ACTIONS(5176), 1, + anon_sym_COMMA, + ACTIONS(5655), 1, + anon_sym_SEMI, + STATE(2530), 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, + anon_sym_COMMA, + STATE(2656), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [103575] = 4, + ACTIONS(4000), 1, + anon_sym_COMMA, + ACTIONS(5659), 1, + anon_sym_RPAREN, + STATE(2555), 1, + aux_sym_argument_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, + sym__linux_kernel_annotations, + sym_comment, + [103603] = 4, + ACTIONS(5176), 1, anon_sym_COMMA, + ACTIONS(5663), 1, anon_sym_SEMI, - anon_sym_asm, - anon_sym___asm__, - [66682] = 9, - ACTIONS(3), 1, + STATE(2530), 1, + aux_sym_declaration_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(39), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(455), 1, - anon_sym_LBRACE, - ACTIONS(3999), 1, - anon_sym_LBRACK, - ACTIONS(4133), 1, - anon_sym_LPAREN2, - STATE(318), 1, - sym_compound_statement, - STATE(1021), 1, - sym__old_style_parameter_list, - STATE(1255), 1, - sym_parameter_list, - STATE(1492), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [66711] = 7, - ACTIONS(3), 1, + [103617] = 4, + ACTIONS(5176), 1, + anon_sym_COMMA, + ACTIONS(5665), 1, + anon_sym_SEMI, + STATE(2501), 1, + aux_sym_declaration_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(2010), 1, - anon_sym_LPAREN2, - ACTIONS(2012), 1, - anon_sym_STAR, - ACTIONS(3144), 1, - anon_sym_LBRACK, - STATE(1691), 1, - sym_parameter_list, - STATE(1719), 1, - sym__abstract_declarator, - STATE(1717), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - [66736] = 5, - ACTIONS(3), 1, + [103631] = 4, + ACTIONS(5176), 1, + anon_sym_COMMA, + ACTIONS(5667), 1, + anon_sym_SEMI, + STATE(2563), 1, + aux_sym_declaration_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4193), 1, - sym_identifier, - ACTIONS(4195), 1, - sym_system_lib_string, - STATE(2076), 2, - sym_preproc_call_expression, - sym_string_literal, - ACTIONS(4179), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [66757] = 9, - ACTIONS(3), 1, + [103645] = 4, + ACTIONS(5176), 1, + anon_sym_COMMA, + ACTIONS(5669), 1, + anon_sym_SEMI, + STATE(2530), 1, + aux_sym_declaration_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(39), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(137), 1, - anon_sym_LBRACE, - ACTIONS(3825), 1, - anon_sym_LPAREN2, - ACTIONS(3999), 1, - anon_sym_LBRACK, - ACTIONS(4135), 1, - anon_sym_EQ, - STATE(134), 1, - sym_compound_statement, - STATE(1257), 1, - sym_parameter_list, - STATE(1492), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [66786] = 9, - ACTIONS(3), 1, + [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, - ACTIONS(39), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(391), 1, - anon_sym_LBRACE, - ACTIONS(3999), 1, - anon_sym_LBRACK, - ACTIONS(4133), 1, - anon_sym_LPAREN2, - STATE(359), 1, - sym_compound_statement, - STATE(1021), 1, - sym__old_style_parameter_list, - STATE(1255), 1, - sym_parameter_list, - STATE(1492), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [66815] = 7, - ACTIONS(3), 1, + [103673] = 4, + ACTIONS(5176), 1, + anon_sym_COMMA, + ACTIONS(5673), 1, + anon_sym_SEMI, + STATE(2571), 1, + aux_sym_declaration_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(2010), 1, - anon_sym_LPAREN2, - ACTIONS(2012), 1, - anon_sym_STAR, - ACTIONS(3144), 1, - anon_sym_LBRACK, - STATE(1691), 1, - sym_parameter_list, - STATE(1722), 1, - sym__abstract_declarator, - STATE(1717), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - [66840] = 9, - ACTIONS(3), 1, + [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, - ACTIONS(39), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(3999), 1, - anon_sym_LBRACK, - ACTIONS(4133), 1, - anon_sym_LPAREN2, - STATE(370), 1, - sym_compound_statement, - STATE(1021), 1, - sym__old_style_parameter_list, - STATE(1255), 1, - sym_parameter_list, - STATE(1492), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [66869] = 8, - ACTIONS(3), 1, + [103701] = 4, + ACTIONS(5176), 1, + anon_sym_COMMA, + ACTIONS(5677), 1, + anon_sym_SEMI, + STATE(2530), 1, + aux_sym_declaration_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(39), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(391), 1, - anon_sym_LBRACE, - ACTIONS(3825), 1, - anon_sym_LPAREN2, - ACTIONS(3999), 1, - anon_sym_LBRACK, - STATE(357), 1, - sym_compound_statement, - STATE(1257), 1, - sym_parameter_list, - STATE(1492), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [66895] = 5, - ACTIONS(3), 1, + [103715] = 4, + ACTIONS(5325), 1, + aux_sym_preproc_arg_token1, + ACTIONS(5679), 1, + aux_sym_preproc_include_token2, + STATE(3027), 1, + sym_preproc_arg, + ACTIONS(3), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4139), 1, - anon_sym_LBRACK, - STATE(1811), 1, - sym_gnu_asm_input_operand, - STATE(2150), 1, - sym_string_literal, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [66915] = 8, - ACTIONS(3), 1, + [103729] = 4, + ACTIONS(5176), 1, + anon_sym_COMMA, + ACTIONS(5681), 1, + anon_sym_SEMI, + STATE(2530), 1, + aux_sym_declaration_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(39), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(391), 1, - anon_sym_LBRACE, - ACTIONS(3825), 1, - anon_sym_LPAREN2, - ACTIONS(3999), 1, - anon_sym_LBRACK, - STATE(361), 1, - sym_compound_statement, - STATE(1255), 1, - sym_parameter_list, - STATE(1492), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [66941] = 8, - ACTIONS(3), 1, + [103743] = 4, + ACTIONS(5683), 1, + anon_sym_COMMA, + ACTIONS(5686), 1, + anon_sym_SEMI, + STATE(2530), 1, + aux_sym_declaration_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(39), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(137), 1, - anon_sym_LBRACE, - ACTIONS(3825), 1, - anon_sym_LPAREN2, - ACTIONS(3999), 1, - anon_sym_LBRACK, - STATE(130), 1, - sym_compound_statement, - STATE(1255), 1, - sym_parameter_list, - STATE(1492), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [66967] = 8, - ACTIONS(3), 1, + [103757] = 4, + ACTIONS(4000), 1, + anon_sym_COMMA, + ACTIONS(4038), 1, + anon_sym_RPAREN, + STATE(2555), 1, + aux_sym_argument_list_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(39), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(137), 1, - anon_sym_LBRACE, - ACTIONS(3825), 1, - anon_sym_LPAREN2, - ACTIONS(3999), 1, - anon_sym_LBRACK, - STATE(152), 1, - sym_compound_statement, - STATE(1257), 1, - sym_parameter_list, - STATE(1492), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [66993] = 7, - ACTIONS(3), 1, + [103771] = 4, + ACTIONS(4387), 1, + anon_sym_COMMA, + ACTIONS(5688), 1, + anon_sym_RPAREN, + STATE(2565), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(39), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3825), 1, - anon_sym_LPAREN2, - ACTIONS(3999), 1, - anon_sym_LBRACK, - STATE(1255), 1, - sym_parameter_list, - ACTIONS(4197), 2, + [103785] = 4, + ACTIONS(5619), 1, anon_sym_COMMA, + ACTIONS(5690), 1, anon_sym_RPAREN, - STATE(1492), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [67017] = 8, - ACTIONS(3), 1, + STATE(2566), 1, + aux_sym_preproc_params_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(39), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(137), 1, - anon_sym_LBRACE, - ACTIONS(3825), 1, - anon_sym_LPAREN2, - ACTIONS(3999), 1, - anon_sym_LBRACK, - STATE(156), 1, - sym_compound_statement, - STATE(1255), 1, - sym_parameter_list, - STATE(1492), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [67043] = 8, - ACTIONS(3), 1, + [103799] = 3, + STATE(2417), 1, + aux_sym_char_literal_repeat1, + ACTIONS(3), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(39), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(455), 1, - anon_sym_LBRACE, - ACTIONS(3825), 1, - anon_sym_LPAREN2, - ACTIONS(3999), 1, - anon_sym_LBRACK, - STATE(311), 1, - sym_compound_statement, - STATE(1257), 1, - sym_parameter_list, - STATE(1492), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [67069] = 8, - ACTIONS(3), 1, + 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, - ACTIONS(39), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(455), 1, - anon_sym_LBRACE, - ACTIONS(3825), 1, - anon_sym_LPAREN2, - ACTIONS(3999), 1, - anon_sym_LBRACK, - STATE(295), 1, - sym_compound_statement, - STATE(1255), 1, - sym_parameter_list, - STATE(1492), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [67095] = 5, - ACTIONS(3), 1, + [103825] = 4, + ACTIONS(4012), 1, + anon_sym_COMMA, + ACTIONS(4014), 1, + anon_sym_RBRACE, + STATE(2570), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4159), 1, - anon_sym_LBRACK, - STATE(1848), 1, - sym_gnu_asm_output_operand, - STATE(2041), 1, - sym_string_literal, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [67115] = 8, - ACTIONS(3), 1, + [103839] = 4, + ACTIONS(5543), 1, + anon_sym_COMMA, + ACTIONS(5696), 1, + anon_sym_RPAREN, + STATE(2583), 1, + aux_sym_attribute_specifier_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(39), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(3825), 1, - anon_sym_LPAREN2, - ACTIONS(3999), 1, - anon_sym_LBRACK, - STATE(377), 1, - sym_compound_statement, - STATE(1257), 1, - sym_parameter_list, - STATE(1492), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [67141] = 8, - ACTIONS(3), 1, + [103853] = 4, + ACTIONS(5565), 1, + anon_sym_COMMA, + ACTIONS(5698), 1, + anon_sym_RBRACK_RBRACK, + STATE(2512), 1, + aux_sym_attribute_declaration_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(39), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(137), 1, - anon_sym_LBRACE, - ACTIONS(3825), 1, - anon_sym_LPAREN2, - ACTIONS(3999), 1, - anon_sym_LBRACK, - STATE(155), 1, - sym_compound_statement, - STATE(1255), 1, - sym_parameter_list, - STATE(1492), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [67167] = 8, - ACTIONS(3), 1, + [103867] = 4, + ACTIONS(5700), 1, + anon_sym_COMMA, + ACTIONS(5703), 1, + anon_sym_RPAREN, + STATE(2539), 1, + aux_sym_attribute_specifier_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(39), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(391), 1, - anon_sym_LBRACE, - ACTIONS(3825), 1, - anon_sym_LPAREN2, - ACTIONS(3999), 1, - anon_sym_LBRACK, - STATE(359), 1, - sym_compound_statement, - STATE(1255), 1, - sym_parameter_list, - STATE(1492), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [67193] = 8, - ACTIONS(3), 1, + [103881] = 4, + ACTIONS(4048), 1, + anon_sym_COMMA, + ACTIONS(4050), 1, + anon_sym_RBRACE, + STATE(2517), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(39), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(455), 1, - anon_sym_LBRACE, - ACTIONS(3825), 1, - anon_sym_LPAREN2, - ACTIONS(3999), 1, - anon_sym_LBRACK, - STATE(318), 1, - sym_compound_statement, - STATE(1255), 1, - sym_parameter_list, - STATE(1492), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [67219] = 8, - ACTIONS(3), 1, + [103895] = 4, + ACTIONS(5625), 1, + anon_sym_COLON, + ACTIONS(5705), 1, + anon_sym_RPAREN, + STATE(2615), 1, + sym_gnu_asm_clobber_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(39), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(3825), 1, - anon_sym_LPAREN2, - ACTIONS(3999), 1, - anon_sym_LBRACK, - STATE(382), 1, - sym_compound_statement, - STATE(1257), 1, - sym_parameter_list, - STATE(1492), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [67245] = 8, - ACTIONS(3), 1, + [103909] = 4, + ACTIONS(5541), 1, + anon_sym_COLON, + ACTIONS(5707), 1, + anon_sym_RPAREN, + STATE(2637), 1, + sym_gnu_asm_input_operand_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(39), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(455), 1, - anon_sym_LBRACE, - ACTIONS(3825), 1, - anon_sym_LPAREN2, - ACTIONS(3999), 1, - anon_sym_LBRACK, - STATE(296), 1, - sym_compound_statement, - STATE(1255), 1, - sym_parameter_list, - STATE(1492), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [67271] = 4, - ACTIONS(3), 1, + [103923] = 4, + ACTIONS(5176), 1, + anon_sym_COMMA, + ACTIONS(5709), 1, + anon_sym_SEMI, + STATE(2530), 1, + aux_sym_declaration_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4201), 1, - aux_sym_preproc_elif_token1, - ACTIONS(4203), 1, - anon_sym_EQ, - ACTIONS(4199), 6, + [103937] = 4, + ACTIONS(5176), 1, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_identifier, - [67289] = 8, - ACTIONS(3), 1, + ACTIONS(5711), 1, + anon_sym_SEMI, + STATE(2687), 1, + aux_sym_declaration_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(39), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(137), 1, - anon_sym_LBRACE, - ACTIONS(3825), 1, - anon_sym_LPAREN2, - ACTIONS(3999), 1, - anon_sym_LBRACK, - STATE(157), 1, - sym_compound_statement, - STATE(1257), 1, - sym_parameter_list, - STATE(1492), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [67315] = 8, - ACTIONS(3), 1, + [103951] = 4, + ACTIONS(5634), 1, + anon_sym_COMMA, + ACTIONS(5713), 1, + anon_sym_RPAREN, + STATE(2568), 1, + aux_sym_parameter_list_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(39), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(391), 1, - anon_sym_LBRACE, - ACTIONS(3825), 1, - anon_sym_LPAREN2, - ACTIONS(3999), 1, - anon_sym_LBRACK, - STATE(348), 1, - sym_compound_statement, - STATE(1255), 1, - sym_parameter_list, - STATE(1492), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [67341] = 8, - ACTIONS(3), 1, + [103965] = 4, + ACTIONS(5176), 1, + anon_sym_COMMA, + ACTIONS(5715), 1, + anon_sym_SEMI, + STATE(2530), 1, + aux_sym_declaration_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(39), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(391), 1, - anon_sym_LBRACE, - ACTIONS(3825), 1, - anon_sym_LPAREN2, - ACTIONS(3999), 1, - anon_sym_LBRACK, - STATE(345), 1, - sym_compound_statement, - STATE(1255), 1, - sym_parameter_list, - STATE(1492), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [67367] = 8, + [103979] = 5, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(39), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(3825), 1, - anon_sym_LPAREN2, - ACTIONS(3999), 1, - anon_sym_LBRACK, - STATE(374), 1, - sym_compound_statement, - STATE(1257), 1, - sym_parameter_list, - STATE(1492), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [67393] = 8, - ACTIONS(3), 1, + 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, + anon_sym_RPAREN, + STATE(2565), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(39), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(137), 1, - anon_sym_LBRACE, - ACTIONS(3825), 1, - anon_sym_LPAREN2, - ACTIONS(3999), 1, - anon_sym_LBRACK, - STATE(132), 1, - sym_compound_statement, - STATE(1255), 1, - sym_parameter_list, - STATE(1492), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [67419] = 8, - ACTIONS(3), 1, + [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, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(39), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(455), 1, - anon_sym_LBRACE, - ACTIONS(3825), 1, - anon_sym_LPAREN2, - ACTIONS(3999), 1, - anon_sym_LBRACK, - STATE(321), 1, - sym_compound_statement, - STATE(1257), 1, - sym_parameter_list, - STATE(1492), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [67445] = 8, + [104023] = 5, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(39), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(47), 1, + ACTIONS(3902), 1, anon_sym_LBRACE, - ACTIONS(3825), 1, - anon_sym_LPAREN2, - ACTIONS(3999), 1, - anon_sym_LBRACK, - STATE(370), 1, - sym_compound_statement, - STATE(1255), 1, - sym_parameter_list, - STATE(1492), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [67471] = 8, - ACTIONS(3), 1, + ACTIONS(5721), 1, + sym_identifier, + STATE(1522), 1, + sym_field_declaration_list, + [104039] = 4, + ACTIONS(5176), 1, + anon_sym_COMMA, + ACTIONS(5723), 1, + anon_sym_SEMI, + STATE(2530), 1, + aux_sym_declaration_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(39), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(391), 1, - anon_sym_LBRACE, - ACTIONS(3825), 1, - anon_sym_LPAREN2, - ACTIONS(3999), 1, - anon_sym_LBRACK, - STATE(337), 1, - sym_compound_statement, - STATE(1257), 1, - sym_parameter_list, - STATE(1492), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [67497] = 5, - ACTIONS(3), 1, + [104053] = 4, + ACTIONS(5725), 1, + anon_sym_COMMA, + ACTIONS(5727), 1, + anon_sym_RPAREN, + STATE(2650), 1, + aux_sym__old_style_parameter_list_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4205), 1, - sym_identifier, - ACTIONS(4210), 1, - aux_sym_preproc_elif_token1, - STATE(1614), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - ACTIONS(4208), 4, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - [67517] = 6, - ACTIONS(3), 1, + [104067] = 4, + ACTIONS(4000), 1, + anon_sym_COMMA, + ACTIONS(5729), 1, + anon_sym_RPAREN, + STATE(2555), 1, + aux_sym_argument_list_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4212), 1, - sym_identifier, - ACTIONS(4217), 1, - aux_sym_preproc_elif_token1, - STATE(1615), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2109), 1, - sym_enumerator, - ACTIONS(4215), 4, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - [67539] = 8, - ACTIONS(3), 1, + [104081] = 4, + ACTIONS(5603), 1, + anon_sym_COLON, + ACTIONS(5731), 1, + anon_sym_RPAREN, + STATE(2470), 1, + sym_gnu_asm_output_operand_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(39), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(391), 1, - anon_sym_LBRACE, - ACTIONS(3825), 1, - anon_sym_LPAREN2, - ACTIONS(3999), 1, - anon_sym_LBRACK, - STATE(354), 1, - sym_compound_statement, - STATE(1257), 1, - sym_parameter_list, - STATE(1492), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [67565] = 8, - ACTIONS(3), 1, + [104095] = 4, + ACTIONS(4156), 1, + anon_sym_RPAREN, + ACTIONS(5733), 1, + anon_sym_COMMA, + STATE(2555), 1, + aux_sym_argument_list_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(39), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(3825), 1, - anon_sym_LPAREN2, - ACTIONS(3999), 1, - anon_sym_LBRACK, - STATE(384), 1, - sym_compound_statement, - STATE(1255), 1, - sym_parameter_list, - STATE(1492), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [67591] = 8, - ACTIONS(3), 1, + [104109] = 4, + ACTIONS(5176), 1, + anon_sym_COMMA, + ACTIONS(5736), 1, + anon_sym_SEMI, + STATE(2530), 1, + aux_sym_declaration_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(39), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(3825), 1, - anon_sym_LPAREN2, - ACTIONS(3999), 1, - anon_sym_LBRACK, - STATE(386), 1, - sym_compound_statement, - STATE(1255), 1, - sym_parameter_list, - STATE(1492), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [67617] = 8, - ACTIONS(3), 1, + [104123] = 4, + ACTIONS(5176), 1, + anon_sym_COMMA, + ACTIONS(5738), 1, + anon_sym_SEMI, + STATE(2519), 1, + aux_sym_declaration_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(39), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(455), 1, - anon_sym_LBRACE, - ACTIONS(3825), 1, - anon_sym_LPAREN2, - ACTIONS(3999), 1, - anon_sym_LBRACK, - STATE(322), 1, - sym_compound_statement, - STATE(1257), 1, - sym_parameter_list, - STATE(1492), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [67643] = 8, - ACTIONS(3), 1, + [104137] = 4, + ACTIONS(5176), 1, + anon_sym_COMMA, + ACTIONS(5740), 1, + anon_sym_SEMI, + STATE(2530), 1, + aux_sym_declaration_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(39), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(47), 1, - anon_sym_LBRACE, - ACTIONS(3825), 1, - anon_sym_LPAREN2, - ACTIONS(3999), 1, - anon_sym_LBRACK, - STATE(402), 1, - sym_compound_statement, - STATE(1255), 1, - sym_parameter_list, - STATE(1492), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [67669] = 8, - ACTIONS(3), 1, + [104151] = 4, + ACTIONS(5176), 1, + anon_sym_COMMA, + ACTIONS(5742), 1, + anon_sym_SEMI, + STATE(2523), 1, + aux_sym_declaration_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [104165] = 4, + ACTIONS(5176), 1, + anon_sym_COMMA, + ACTIONS(5744), 1, + anon_sym_SEMI, + STATE(2603), 1, + aux_sym_declaration_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(39), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(455), 1, - anon_sym_LBRACE, - ACTIONS(3825), 1, - anon_sym_LPAREN2, - ACTIONS(3999), 1, - anon_sym_LBRACK, - STATE(329), 1, - sym_compound_statement, - STATE(1255), 1, - sym_parameter_list, - STATE(1492), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [67695] = 8, - ACTIONS(3), 1, + [104179] = 4, + ACTIONS(5176), 1, + anon_sym_COMMA, + ACTIONS(5746), 1, + anon_sym_SEMI, + STATE(2530), 1, + aux_sym_declaration_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(39), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(137), 1, - anon_sym_LBRACE, - ACTIONS(3825), 1, - anon_sym_LPAREN2, - ACTIONS(3999), 1, - anon_sym_LBRACK, - STATE(154), 1, - sym_compound_statement, - STATE(1257), 1, - sym_parameter_list, - STATE(1492), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [67721] = 5, - ACTIONS(3), 1, + [104193] = 4, + ACTIONS(5603), 1, + anon_sym_COLON, + ACTIONS(5748), 1, + anon_sym_RPAREN, + STATE(2524), 1, + sym_gnu_asm_output_operand_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4219), 1, - anon_sym_LBRACK, - ACTIONS(4222), 1, - anon_sym_EQ, - ACTIONS(4224), 1, - anon_sym_DOT, - STATE(1623), 4, - sym_subscript_designator, - sym_subscript_range_designator, - sym_field_designator, - aux_sym_initializer_pair_repeat1, - [67740] = 7, - ACTIONS(3), 1, + [104207] = 4, + ACTIONS(5176), 1, + anon_sym_COMMA, + ACTIONS(5750), 1, + anon_sym_SEMI, + STATE(2530), 1, + aux_sym_declaration_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(39), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3825), 1, - anon_sym_LPAREN2, - ACTIONS(3860), 1, - anon_sym_LBRACK, - ACTIONS(4227), 1, + [104221] = 4, + ACTIONS(5176), 1, + anon_sym_COMMA, + ACTIONS(5752), 1, + anon_sym_SEMI, + STATE(2551), 1, + aux_sym_declaration_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [104235] = 4, + ACTIONS(4590), 1, anon_sym_RPAREN, - STATE(1451), 1, - sym_parameter_list, - STATE(1418), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [67763] = 7, - ACTIONS(3), 1, + ACTIONS(5754), 1, + anon_sym_COMMA, + STATE(2565), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(39), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3825), 1, - anon_sym_LPAREN2, - ACTIONS(3860), 1, - anon_sym_LBRACK, - ACTIONS(4229), 1, + [104249] = 4, + ACTIONS(5757), 1, + anon_sym_COMMA, + ACTIONS(5760), 1, anon_sym_RPAREN, - STATE(1451), 1, - sym_parameter_list, - STATE(1418), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [67786] = 7, - ACTIONS(3), 1, + STATE(2566), 1, + aux_sym_preproc_params_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(39), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3825), 1, - anon_sym_LPAREN2, - ACTIONS(3860), 1, - anon_sym_LBRACK, - ACTIONS(4231), 1, + [104263] = 4, + ACTIONS(4000), 1, + anon_sym_COMMA, + ACTIONS(4026), 1, anon_sym_RPAREN, - STATE(1451), 1, - sym_parameter_list, - STATE(1418), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [67809] = 5, - ACTIONS(3), 1, + STATE(2610), 1, + aux_sym_argument_list_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [104277] = 4, + ACTIONS(5762), 1, + anon_sym_COMMA, + ACTIONS(5765), 1, + anon_sym_RPAREN, + STATE(2568), 1, + aux_sym_parameter_list_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [104291] = 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(2082), 1, + ACTIONS(5767), 3, anon_sym_LBRACK, - ACTIONS(4233), 1, anon_sym_EQ, - ACTIONS(4235), 1, anon_sym_DOT, - STATE(1623), 4, - sym_subscript_designator, - sym_subscript_range_designator, - sym_field_designator, - aux_sym_initializer_pair_repeat1, - [67828] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3825), 1, - anon_sym_LPAREN2, - ACTIONS(3829), 1, - anon_sym_LBRACK, - ACTIONS(4237), 1, - anon_sym_RPAREN, - STATE(1430), 1, - sym_parameter_list, - STATE(1409), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [67851] = 4, - ACTIONS(3), 1, + [104301] = 4, + ACTIONS(2388), 1, + anon_sym_RBRACE, + ACTIONS(5769), 1, + anon_sym_COMMA, + STATE(2656), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4241), 1, + [104315] = 4, + ACTIONS(5176), 1, anon_sym_COMMA, - ACTIONS(4243), 1, - aux_sym_preproc_elif_token1, - ACTIONS(4239), 5, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_identifier, - [67868] = 7, - ACTIONS(3), 1, + ACTIONS(5771), 1, + anon_sym_SEMI, + STATE(2530), 1, + aux_sym_declaration_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(39), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3825), 1, - anon_sym_LPAREN2, - ACTIONS(3999), 1, - anon_sym_LBRACK, - ACTIONS(4245), 1, - anon_sym_RPAREN, - STATE(1255), 1, - sym_parameter_list, - STATE(1492), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [67891] = 7, - ACTIONS(3), 1, + [104329] = 3, + STATE(2459), 1, + aux_sym_char_literal_repeat1, + ACTIONS(3), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(39), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3825), 1, - anon_sym_LPAREN2, - ACTIONS(3999), 1, - anon_sym_LBRACK, - ACTIONS(4135), 1, - anon_sym_EQ, - STATE(1257), 1, - sym_parameter_list, - STATE(1492), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [67914] = 7, - ACTIONS(3), 1, + ACTIONS(5773), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [104341] = 4, + ACTIONS(5543), 1, + anon_sym_COMMA, + ACTIONS(5775), 1, + anon_sym_RPAREN, + STATE(2539), 1, + aux_sym_attribute_specifier_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(39), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3825), 1, - anon_sym_LPAREN2, - ACTIONS(3999), 1, - anon_sym_LBRACK, - ACTIONS(4247), 1, + [104355] = 4, + ACTIONS(5543), 1, + anon_sym_COMMA, + ACTIONS(5777), 1, anon_sym_RPAREN, - STATE(1255), 1, - sym_parameter_list, - STATE(1492), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [67937] = 7, - ACTIONS(3), 1, + STATE(2573), 1, + aux_sym_attribute_specifier_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(39), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3825), 1, - anon_sym_LPAREN2, - ACTIONS(3999), 1, - anon_sym_LBRACK, - ACTIONS(4249), 1, + [104369] = 4, + ACTIONS(5543), 1, + anon_sym_COMMA, + ACTIONS(5779), 1, anon_sym_RPAREN, - STATE(1255), 1, - sym_parameter_list, - STATE(1492), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [67960] = 7, - ACTIONS(3), 1, + STATE(2539), 1, + aux_sym_attribute_specifier_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(39), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3825), 1, - anon_sym_LPAREN2, - ACTIONS(3829), 1, - anon_sym_LBRACK, - ACTIONS(4251), 1, + [104383] = 4, + ACTIONS(5543), 1, + anon_sym_COMMA, + ACTIONS(5781), 1, anon_sym_RPAREN, - STATE(1430), 1, - sym_parameter_list, - STATE(1409), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [67983] = 7, - ACTIONS(3), 1, + STATE(2539), 1, + aux_sym_attribute_specifier_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(39), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3999), 1, - anon_sym_LBRACK, - ACTIONS(4253), 1, - anon_sym_LPAREN2, - STATE(1021), 1, - sym__old_style_parameter_list, - STATE(1255), 1, - sym_parameter_list, - STATE(1492), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [68006] = 7, - ACTIONS(3), 1, + [104397] = 4, + ACTIONS(5634), 1, + anon_sym_COMMA, + ACTIONS(5783), 1, + anon_sym_RPAREN, + STATE(2613), 1, + aux_sym_parameter_list_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(39), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3825), 1, - anon_sym_LPAREN2, - ACTIONS(3829), 1, - anon_sym_LBRACK, - ACTIONS(4255), 1, + [104411] = 4, + ACTIONS(5634), 1, + anon_sym_COMMA, + ACTIONS(5785), 1, anon_sym_RPAREN, - STATE(1430), 1, - sym_parameter_list, - STATE(1409), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [68029] = 6, - ACTIONS(3), 1, + STATE(2545), 1, + aux_sym_parameter_list_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, + [104425] = 4, + ACTIONS(5543), 1, anon_sym_COMMA, - ACTIONS(4259), 1, - anon_sym_SEMI, - STATE(1853), 1, - aux_sym_declaration_repeat1, - STATE(1854), 1, - sym_gnu_asm_expression, - ACTIONS(4261), 2, - anon_sym_asm, - anon_sym___asm__, - [68049] = 5, - ACTIONS(3), 1, + ACTIONS(5787), 1, + anon_sym_RPAREN, + STATE(2576), 1, + aux_sym_attribute_specifier_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(3825), 1, - anon_sym_LPAREN2, - ACTIONS(4265), 1, - anon_sym_LBRACK, - STATE(1690), 1, - sym_parameter_list, - ACTIONS(4263), 3, + [104439] = 4, + ACTIONS(5543), 1, anon_sym_COMMA, + ACTIONS(5789), 1, anon_sym_RPAREN, - anon_sym_COLON, - [68067] = 3, - ACTIONS(3), 1, + STATE(2539), 1, + aux_sym_attribute_specifier_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - STATE(520), 1, - sym_string_literal, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [68081] = 4, - ACTIONS(3), 1, + [104453] = 4, + ACTIONS(5543), 1, + anon_sym_COMMA, + ACTIONS(5791), 1, + anon_sym_RPAREN, + STATE(2580), 1, + aux_sym_attribute_specifier_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4267), 1, - anon_sym_LPAREN2, - STATE(1675), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(4269), 3, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [68097] = 4, - ACTIONS(3), 1, + [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, - ACTIONS(4271), 1, - anon_sym_LPAREN2, - STATE(1641), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(4273), 3, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [68113] = 6, - ACTIONS(3), 1, + [104481] = 4, + ACTIONS(5543), 1, + anon_sym_COMMA, + ACTIONS(5795), 1, + anon_sym_RPAREN, + STATE(2539), 1, + aux_sym_attribute_specifier_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, + [104495] = 4, + ACTIONS(5176), 1, anon_sym_COMMA, - ACTIONS(4276), 1, + ACTIONS(5797), 1, anon_sym_SEMI, - STATE(1763), 1, + STATE(2530), 1, aux_sym_declaration_repeat1, - STATE(1765), 1, - sym_gnu_asm_expression, - ACTIONS(4261), 2, - anon_sym_asm, - anon_sym___asm__, - [68133] = 6, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, + [104509] = 4, + ACTIONS(5176), 1, anon_sym_COMMA, - ACTIONS(4278), 1, + ACTIONS(5799), 1, anon_sym_SEMI, - STATE(1784), 1, + STATE(2530), 1, aux_sym_declaration_repeat1, - STATE(1785), 1, - sym_gnu_asm_expression, - ACTIONS(4261), 2, - anon_sym_asm, - anon_sym___asm__, - [68153] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4099), 2, - anon_sym_RBRACE, - sym_identifier, - ACTIONS(4280), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [68167] = 6, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, + [104523] = 4, + ACTIONS(5176), 1, anon_sym_COMMA, - ACTIONS(4282), 1, + ACTIONS(5801), 1, anon_sym_SEMI, - STATE(1929), 1, - sym_gnu_asm_expression, - STATE(1930), 1, + STATE(2530), 1, aux_sym_declaration_repeat1, - ACTIONS(4261), 2, - anon_sym_asm, - anon_sym___asm__, - [68187] = 6, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, + [104537] = 4, + ACTIONS(5176), 1, anon_sym_COMMA, - ACTIONS(4284), 1, + ACTIONS(5803), 1, anon_sym_SEMI, - STATE(1804), 1, - sym_gnu_asm_expression, - STATE(1806), 1, + STATE(2584), 1, aux_sym_declaration_repeat1, - ACTIONS(4261), 2, - anon_sym_asm, - anon_sym___asm__, - [68207] = 6, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, + [104551] = 4, + ACTIONS(5176), 1, anon_sym_COMMA, - ACTIONS(4286), 1, + ACTIONS(5805), 1, anon_sym_SEMI, - STATE(1916), 1, + STATE(2530), 1, aux_sym_declaration_repeat1, - STATE(1923), 1, - sym_gnu_asm_expression, - ACTIONS(4261), 2, - anon_sym_asm, - anon_sym___asm__, - [68227] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4288), 2, - anon_sym_RBRACE, - sym_identifier, - ACTIONS(4290), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [68241] = 5, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(3825), 1, - anon_sym_LPAREN2, - ACTIONS(4265), 1, - anon_sym_LBRACK, - STATE(1690), 1, - sym_parameter_list, - ACTIONS(4292), 3, + [104565] = 4, + ACTIONS(4000), 1, anon_sym_COMMA, + ACTIONS(4016), 1, anon_sym_RPAREN, - anon_sym_COLON, - [68259] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4294), 2, - anon_sym_RBRACE, - sym_identifier, - ACTIONS(4296), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [68273] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4298), 2, - anon_sym_RBRACE, - sym_identifier, - ACTIONS(4300), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [68287] = 6, - ACTIONS(3), 1, + STATE(2549), 1, + aux_sym_argument_list_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, + [104579] = 4, + ACTIONS(5176), 1, anon_sym_COMMA, - ACTIONS(4302), 1, + ACTIONS(5807), 1, anon_sym_SEMI, - STATE(1828), 1, - sym_gnu_asm_expression, - STATE(1829), 1, + STATE(2530), 1, aux_sym_declaration_repeat1, - ACTIONS(4261), 2, - anon_sym_asm, - anon_sym___asm__, - [68307] = 6, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, + [104593] = 4, + ACTIONS(5176), 1, anon_sym_COMMA, - ACTIONS(4304), 1, + ACTIONS(5809), 1, anon_sym_SEMI, - STATE(1908), 1, - sym_gnu_asm_expression, - STATE(1909), 1, + STATE(2530), 1, aux_sym_declaration_repeat1, - ACTIONS(4261), 2, - anon_sym_asm, - anon_sym___asm__, - [68327] = 6, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, + [104607] = 4, + ACTIONS(5176), 1, anon_sym_COMMA, - ACTIONS(4306), 1, + ACTIONS(5811), 1, anon_sym_SEMI, - STATE(1836), 1, - sym_gnu_asm_expression, - STATE(1842), 1, + STATE(2530), 1, aux_sym_declaration_repeat1, - ACTIONS(4261), 2, - anon_sym_asm, - anon_sym___asm__, - [68347] = 6, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, + [104621] = 4, + ACTIONS(5176), 1, anon_sym_COMMA, - ACTIONS(4308), 1, + ACTIONS(5813), 1, anon_sym_SEMI, - STATE(1797), 1, - sym_gnu_asm_expression, - STATE(1925), 1, + STATE(2530), 1, aux_sym_declaration_repeat1, - ACTIONS(4261), 2, - anon_sym_asm, - anon_sym___asm__, - [68367] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(2247), 1, - sym_string_literal, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [68381] = 5, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(3825), 1, - anon_sym_LPAREN2, - ACTIONS(4265), 1, - anon_sym_LBRACK, - STATE(1690), 1, - sym_parameter_list, - ACTIONS(4310), 3, + [104635] = 4, + ACTIONS(5176), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [68399] = 5, - ACTIONS(3), 1, + ACTIONS(5815), 1, + anon_sym_SEMI, + STATE(2585), 1, + aux_sym_declaration_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(3825), 1, - anon_sym_LPAREN2, - ACTIONS(4265), 1, - anon_sym_LBRACK, - STATE(1690), 1, - sym_parameter_list, - ACTIONS(4312), 3, - anon_sym_COMMA, + [104649] = 4, + ACTIONS(5603), 1, + anon_sym_COLON, + ACTIONS(5817), 1, anon_sym_RPAREN, + STATE(2497), 1, + sym_gnu_asm_output_operand_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [104663] = 4, + ACTIONS(5603), 1, anon_sym_COLON, - [68417] = 6, - ACTIONS(3), 1, + ACTIONS(5819), 1, + anon_sym_RPAREN, + STATE(2629), 1, + sym_gnu_asm_output_operand_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, + [104677] = 4, + ACTIONS(5176), 1, anon_sym_COMMA, - ACTIONS(4314), 1, + ACTIONS(5821), 1, anon_sym_SEMI, - STATE(1904), 1, - sym_gnu_asm_expression, - STATE(1905), 1, + STATE(2630), 1, aux_sym_declaration_repeat1, - ACTIONS(4261), 2, - anon_sym_asm, - anon_sym___asm__, - [68437] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3825), 1, - anon_sym_LPAREN2, - ACTIONS(3999), 1, - anon_sym_LBRACK, - STATE(800), 1, - sym_parameter_list, - STATE(1492), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [68457] = 6, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, + [104691] = 4, + ACTIONS(5176), 1, anon_sym_COMMA, - ACTIONS(4316), 1, + ACTIONS(5823), 1, anon_sym_SEMI, - STATE(1773), 1, - sym_gnu_asm_expression, - STATE(1774), 1, + STATE(2530), 1, aux_sym_declaration_repeat1, - ACTIONS(4261), 2, - anon_sym_asm, - anon_sym___asm__, - [68477] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3825), 1, - anon_sym_LPAREN2, - ACTIONS(3999), 1, - anon_sym_LBRACK, - STATE(1257), 1, - sym_parameter_list, - STATE(1492), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [68497] = 6, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, + [104705] = 4, + ACTIONS(5176), 1, anon_sym_COMMA, - ACTIONS(4318), 1, + ACTIONS(5825), 1, anon_sym_SEMI, - STATE(1844), 1, - sym_gnu_asm_expression, - STATE(1849), 1, + STATE(2530), 1, aux_sym_declaration_repeat1, - ACTIONS(4261), 2, - anon_sym_asm, - anon_sym___asm__, - [68517] = 6, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, + [104719] = 4, + ACTIONS(5176), 1, anon_sym_COMMA, - ACTIONS(4320), 1, + ACTIONS(5827), 1, anon_sym_SEMI, - STATE(1856), 1, - sym_gnu_asm_expression, - STATE(1857), 1, + STATE(2588), 1, aux_sym_declaration_repeat1, - ACTIONS(4261), 2, - anon_sym_asm, - anon_sym___asm__, - [68537] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4322), 2, - anon_sym_RBRACE, - sym_identifier, - ACTIONS(4324), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [68551] = 6, - ACTIONS(3), 1, + [104733] = 4, + ACTIONS(5176), 1, + anon_sym_COMMA, + ACTIONS(5829), 1, + anon_sym_SEMI, + STATE(2633), 1, + aux_sym_declaration_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(39), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3999), 1, - anon_sym_LBRACK, - ACTIONS(4326), 1, - anon_sym_LPAREN2, - STATE(545), 1, - sym_parameter_list, - STATE(1492), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [68571] = 6, - ACTIONS(3), 1, + [104747] = 4, + ACTIONS(5176), 1, + anon_sym_COMMA, + ACTIONS(5831), 1, + anon_sym_SEMI, + STATE(2530), 1, + aux_sym_declaration_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, + [104761] = 4, + ACTIONS(5176), 1, anon_sym_COMMA, - ACTIONS(4328), 1, + ACTIONS(5833), 1, anon_sym_SEMI, - STATE(1815), 1, + STATE(2530), 1, aux_sym_declaration_repeat1, - STATE(1819), 1, - sym_gnu_asm_expression, - ACTIONS(4261), 2, - anon_sym_asm, - anon_sym___asm__, - [68591] = 6, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(39), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3999), 1, - anon_sym_LBRACK, - ACTIONS(4330), 1, - anon_sym_LPAREN2, - STATE(774), 1, - sym_parameter_list, - STATE(1492), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [68611] = 3, - ACTIONS(3), 1, + [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, - ACTIONS(4332), 2, - anon_sym_RBRACE, - sym_identifier, - ACTIONS(4334), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [68625] = 3, + [104789] = 5, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(4336), 2, - anon_sym_RBRACE, + ACTIONS(3996), 1, + anon_sym_LBRACE, + ACTIONS(5837), 1, sym_identifier, - ACTIONS(4338), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [68639] = 6, - ACTIONS(3), 1, + STATE(1629), 1, + sym_field_declaration_list, + [104805] = 4, + ACTIONS(5176), 1, + anon_sym_COMMA, + ACTIONS(5839), 1, + anon_sym_SEMI, + STATE(2530), 1, + aux_sym_declaration_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, + [104819] = 4, + ACTIONS(5176), 1, anon_sym_COMMA, - ACTIONS(4340), 1, + ACTIONS(5841), 1, anon_sym_SEMI, - STATE(1758), 1, + STATE(2530), 1, aux_sym_declaration_repeat1, - STATE(1897), 1, - sym_gnu_asm_expression, - ACTIONS(4261), 2, - anon_sym_asm, - anon_sym___asm__, - [68659] = 5, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(3825), 1, - anon_sym_LPAREN2, - ACTIONS(4265), 1, - anon_sym_LBRACK, - STATE(1690), 1, - sym_parameter_list, - ACTIONS(4342), 3, + [104833] = 4, + ACTIONS(5176), 1, + anon_sym_COMMA, + ACTIONS(5843), 1, + anon_sym_SEMI, + STATE(2592), 1, + aux_sym_declaration_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [104847] = 4, + ACTIONS(5543), 1, anon_sym_COMMA, + ACTIONS(5845), 1, anon_sym_RPAREN, - anon_sym_COLON, - [68677] = 6, - ACTIONS(3), 1, + STATE(2604), 1, + aux_sym_attribute_specifier_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [104861] = 4, + ACTIONS(4000), 1, + anon_sym_COMMA, + ACTIONS(4020), 1, + anon_sym_RPAREN, + STATE(2555), 1, + aux_sym_argument_list_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, + [104875] = 4, + ACTIONS(4387), 1, anon_sym_COMMA, - ACTIONS(4344), 1, + ACTIONS(5847), 1, + anon_sym_RPAREN, + STATE(2565), 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, + ACTIONS(3), 2, + sym__linux_kernel_annotations, + sym_comment, + [104903] = 4, + ACTIONS(5634), 1, + anon_sym_COMMA, + ACTIONS(5851), 1, + anon_sym_RPAREN, + STATE(2568), 1, + aux_sym_parameter_list_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [104917] = 4, + ACTIONS(5176), 1, + anon_sym_COMMA, + ACTIONS(5853), 1, anon_sym_SEMI, - STATE(1759), 1, - sym_gnu_asm_expression, - STATE(1760), 1, + STATE(2606), 1, aux_sym_declaration_repeat1, - ACTIONS(4261), 2, - anon_sym_asm, - anon_sym___asm__, - [68697] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4336), 2, + [104931] = 4, + ACTIONS(5583), 1, + anon_sym_COLON, + ACTIONS(5855), 1, + anon_sym_RPAREN, + STATE(3185), 1, + sym_gnu_asm_goto_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [104945] = 4, + ACTIONS(4042), 1, + anon_sym_COMMA, + ACTIONS(4044), 1, anon_sym_RBRACE, - sym_identifier, - ACTIONS(4338), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [68711] = 4, - ACTIONS(3), 1, + STATE(2638), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4346), 1, - anon_sym_LPAREN2, - STATE(1641), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(4269), 3, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [68727] = 3, - ACTIONS(3), 1, + [104959] = 4, + ACTIONS(5565), 1, + anon_sym_COMMA, + ACTIONS(5857), 1, + anon_sym_RBRACK_RBRACK, + STATE(2512), 1, + aux_sym_attribute_declaration_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4348), 2, - anon_sym_RBRACE, - sym_identifier, - ACTIONS(4350), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [68741] = 3, - ACTIONS(3), 1, + [104973] = 4, + ACTIONS(5543), 1, + anon_sym_COMMA, + ACTIONS(5859), 1, + anon_sym_RPAREN, + STATE(2575), 1, + aux_sym_attribute_specifier_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4217), 1, - aux_sym_preproc_elif_token1, - ACTIONS(4215), 5, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_identifier, - [68755] = 6, - ACTIONS(3), 1, + [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, + anon_sym_COMMA, + ACTIONS(5863), 1, + anon_sym_SEMI, + STATE(2530), 1, + aux_sym_declaration_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, + [105015] = 4, + ACTIONS(5176), 1, anon_sym_COMMA, - ACTIONS(4352), 1, + ACTIONS(5865), 1, anon_sym_SEMI, - STATE(1907), 1, - sym_gnu_asm_expression, - STATE(1911), 1, + STATE(2530), 1, aux_sym_declaration_repeat1, - ACTIONS(4261), 2, - anon_sym_asm, - anon_sym___asm__, - [68775] = 6, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, + [105029] = 4, + ACTIONS(5176), 1, anon_sym_COMMA, - ACTIONS(4354), 1, + ACTIONS(5867), 1, anon_sym_SEMI, - STATE(1757), 1, - sym_gnu_asm_expression, - STATE(1884), 1, + STATE(2530), 1, aux_sym_declaration_repeat1, - ACTIONS(4261), 2, - anon_sym_asm, - anon_sym___asm__, - [68795] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4356), 2, - anon_sym_RBRACE, - sym_identifier, - ACTIONS(4358), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [68809] = 6, - ACTIONS(3), 1, + [105043] = 4, + ACTIONS(5176), 1, + anon_sym_COMMA, + ACTIONS(5869), 1, + anon_sym_SEMI, + STATE(2620), 1, + aux_sym_declaration_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, + [105057] = 4, + ACTIONS(5176), 1, anon_sym_COMMA, - ACTIONS(4360), 1, + ACTIONS(5871), 1, anon_sym_SEMI, - STATE(1867), 1, - sym_gnu_asm_expression, - STATE(1868), 1, + STATE(2530), 1, aux_sym_declaration_repeat1, - ACTIONS(4261), 2, - anon_sym_asm, - anon_sym___asm__, - [68829] = 5, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(3825), 1, - anon_sym_LPAREN2, - ACTIONS(4265), 1, - anon_sym_LBRACK, - STATE(1690), 1, - sym_parameter_list, - ACTIONS(4362), 3, + [105071] = 4, + ACTIONS(5634), 1, anon_sym_COMMA, + ACTIONS(5873), 1, anon_sym_RPAREN, - anon_sym_COLON, - [68847] = 5, - ACTIONS(3), 1, + STATE(2568), 1, + aux_sym_parameter_list_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(3825), 1, - anon_sym_LPAREN2, - ACTIONS(4265), 1, - anon_sym_LBRACK, - STATE(1690), 1, - sym_parameter_list, - ACTIONS(4364), 3, + [105085] = 4, + ACTIONS(5176), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5875), 1, + anon_sym_SEMI, + STATE(2530), 1, + aux_sym_declaration_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [105099] = 4, + ACTIONS(5176), 1, + anon_sym_COMMA, + ACTIONS(5877), 1, + anon_sym_SEMI, + STATE(2530), 1, + aux_sym_declaration_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [105113] = 4, + ACTIONS(5625), 1, anon_sym_COLON, - [68865] = 3, - ACTIONS(3), 1, + ACTIONS(5879), 1, + anon_sym_RPAREN, + STATE(2647), 1, + sym_gnu_asm_clobber_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - STATE(2271), 1, - sym_string_literal, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [68879] = 6, - ACTIONS(3), 1, + [105127] = 4, + ACTIONS(5541), 1, + anon_sym_COLON, + ACTIONS(5881), 1, + anon_sym_RPAREN, + STATE(2648), 1, + sym_gnu_asm_input_operand_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, + [105141] = 4, + ACTIONS(5176), 1, anon_sym_COMMA, - ACTIONS(4366), 1, + ACTIONS(5883), 1, anon_sym_SEMI, - STATE(1792), 1, + STATE(2530), 1, aux_sym_declaration_repeat1, - STATE(1794), 1, - sym_gnu_asm_expression, - ACTIONS(4261), 2, - anon_sym_asm, - anon_sym___asm__, - [68899] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4332), 2, - anon_sym_RBRACE, - sym_identifier, - ACTIONS(4334), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [68913] = 6, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, + [105155] = 4, + ACTIONS(5176), 1, anon_sym_COMMA, - ACTIONS(4368), 1, + ACTIONS(5885), 1, anon_sym_SEMI, - STATE(1887), 1, - sym_gnu_asm_expression, - STATE(1888), 1, + STATE(2649), 1, aux_sym_declaration_repeat1, - ACTIONS(4261), 2, - anon_sym_asm, - anon_sym___asm__, - [68933] = 6, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, + [105169] = 4, + ACTIONS(5176), 1, anon_sym_COMMA, - ACTIONS(4370), 1, + ACTIONS(5887), 1, anon_sym_SEMI, - STATE(1762), 1, - sym_gnu_asm_expression, - STATE(1803), 1, + STATE(2530), 1, aux_sym_declaration_repeat1, - ACTIONS(4261), 2, - anon_sym_asm, - anon_sym___asm__, - [68953] = 6, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, + [105183] = 4, + ACTIONS(5176), 1, anon_sym_COMMA, - ACTIONS(4372), 1, + ACTIONS(5889), 1, anon_sym_SEMI, - STATE(1891), 1, - sym_gnu_asm_expression, - STATE(1894), 1, + STATE(2530), 1, aux_sym_declaration_repeat1, - ACTIONS(4261), 2, - anon_sym_asm, - anon_sym___asm__, - [68973] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4374), 5, + [105197] = 4, + ACTIONS(5176), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_COLON, - [68984] = 2, - ACTIONS(3), 1, + ACTIONS(5891), 1, + anon_sym_SEMI, + STATE(2621), 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, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4376), 5, + [105225] = 4, + ACTIONS(4000), 1, anon_sym_COMMA, + ACTIONS(5895), 1, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK, + STATE(2555), 1, + aux_sym_argument_list_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [105239] = 4, + ACTIONS(5625), 1, anon_sym_COLON, - [68995] = 6, - ACTIONS(3), 1, + ACTIONS(5897), 1, + anon_sym_RPAREN, + STATE(2690), 1, + sym_gnu_asm_clobber_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(41), 1, - anon_sym___declspec, - ACTIONS(2406), 1, - anon_sym_LBRACE, - ACTIONS(4378), 1, - sym_identifier, - STATE(829), 1, - sym_field_declaration_list, - STATE(1869), 1, - sym_ms_declspec_modifier, - [69014] = 2, - ACTIONS(3), 1, + [105253] = 4, + ACTIONS(2396), 1, + anon_sym_RBRACE, + ACTIONS(5899), 1, + anon_sym_COMMA, + STATE(2656), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4380), 5, + [105267] = 4, + ACTIONS(5176), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_COLON, - [69025] = 4, - ACTIONS(3), 1, + ACTIONS(5901), 1, + anon_sym_SEMI, + STATE(2530), 1, + aux_sym_declaration_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - STATE(2026), 1, - sym_gnu_asm_expression, - ACTIONS(4261), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(4382), 2, + [105281] = 4, + ACTIONS(5176), 1, anon_sym_COMMA, + ACTIONS(5903), 1, anon_sym_SEMI, - [69040] = 4, - ACTIONS(3), 1, + STATE(2590), 1, + aux_sym_declaration_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - STATE(1993), 1, - sym_gnu_asm_expression, - ACTIONS(4261), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(4384), 2, + [105295] = 4, + ACTIONS(5176), 1, anon_sym_COMMA, + ACTIONS(5905), 1, anon_sym_SEMI, - [69055] = 6, - ACTIONS(3643), 1, + STATE(2624), 1, + aux_sym_declaration_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4386), 1, - aux_sym_preproc_include_token2, - ACTIONS(4388), 1, - anon_sym_LPAREN, - ACTIONS(4390), 1, - aux_sym_preproc_arg_token1, - STATE(1903), 1, - sym_preproc_params, - STATE(2143), 1, - sym_preproc_arg, - [69074] = 2, - ACTIONS(3), 1, + [105309] = 4, + ACTIONS(5543), 1, + anon_sym_COMMA, + ACTIONS(5907), 1, + anon_sym_RPAREN, + STATE(2539), 1, + aux_sym_attribute_specifier_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4392), 5, + [105323] = 4, + ACTIONS(5634), 1, anon_sym_COMMA, + ACTIONS(5909), 1, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_COLON, - [69085] = 6, - ACTIONS(3643), 1, + STATE(2625), 1, + aux_sym_parameter_list_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4388), 1, - anon_sym_LPAREN, - ACTIONS(4390), 1, - aux_sym_preproc_arg_token1, - ACTIONS(4394), 1, - aux_sym_preproc_include_token2, - STATE(1871), 1, - sym_preproc_params, - STATE(2195), 1, - sym_preproc_arg, - [69104] = 2, - ACTIONS(3), 1, + [105337] = 4, + ACTIONS(5176), 1, + anon_sym_COMMA, + ACTIONS(5911), 1, + anon_sym_SEMI, + STATE(2530), 1, + aux_sym_declaration_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4396), 5, + [105351] = 4, + ACTIONS(5176), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK, + ACTIONS(5913), 1, + anon_sym_SEMI, + STATE(2530), 1, + aux_sym_declaration_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [105365] = 4, + ACTIONS(5176), 1, + anon_sym_COMMA, + ACTIONS(5915), 1, + anon_sym_SEMI, + STATE(2626), 1, + aux_sym_declaration_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [105379] = 4, + ACTIONS(5583), 1, anon_sym_COLON, - [69115] = 6, - ACTIONS(3643), 1, + ACTIONS(5917), 1, + anon_sym_RPAREN, + STATE(3098), 1, + sym_gnu_asm_goto_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4388), 1, - anon_sym_LPAREN, - ACTIONS(4390), 1, - aux_sym_preproc_arg_token1, - ACTIONS(4398), 1, - aux_sym_preproc_include_token2, - STATE(1847), 1, - sym_preproc_params, - STATE(2214), 1, - sym_preproc_arg, - [69134] = 4, - ACTIONS(3), 1, + [105393] = 4, + ACTIONS(5625), 1, + anon_sym_COLON, + ACTIONS(5919), 1, + anon_sym_RPAREN, + STATE(2660), 1, + sym_gnu_asm_clobber_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - STATE(1959), 1, - sym_gnu_asm_expression, - ACTIONS(4261), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(4400), 2, + [105407] = 4, + ACTIONS(5176), 1, anon_sym_COMMA, + ACTIONS(5921), 1, anon_sym_SEMI, - [69149] = 2, - ACTIONS(3), 1, + STATE(2530), 1, + aux_sym_declaration_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4402), 5, + [105421] = 4, + ACTIONS(5923), 1, anon_sym_COMMA, + ACTIONS(5926), 1, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_COLON, - [69160] = 6, - ACTIONS(3643), 1, + STATE(2650), 1, + aux_sym__old_style_parameter_list_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4388), 1, - anon_sym_LPAREN, - ACTIONS(4390), 1, + [105435] = 4, + ACTIONS(5565), 1, + anon_sym_COMMA, + ACTIONS(5928), 1, + anon_sym_RBRACK_RBRACK, + STATE(2512), 1, + aux_sym_attribute_declaration_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [105449] = 4, + ACTIONS(5543), 1, + anon_sym_COMMA, + ACTIONS(5930), 1, + anon_sym_RPAREN, + STATE(2642), 1, + aux_sym_attribute_specifier_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [105463] = 4, + ACTIONS(5325), 1, aux_sym_preproc_arg_token1, - ACTIONS(4404), 1, + ACTIONS(5932), 1, aux_sym_preproc_include_token2, - STATE(1827), 1, - sym_preproc_params, - STATE(2050), 1, + STATE(3209), 1, sym_preproc_arg, - [69179] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4406), 5, + [105477] = 4, + ACTIONS(5176), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(5934), 1, + anon_sym_SEMI, + STATE(2644), 1, + aux_sym_declaration_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [105491] = 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(5936), 3, anon_sym_LBRACK, - anon_sym_COLON, - [69190] = 6, - ACTIONS(3643), 1, + 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, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4388), 1, - anon_sym_LPAREN, - ACTIONS(4390), 1, + [105515] = 4, + ACTIONS(5565), 1, + anon_sym_COMMA, + ACTIONS(5941), 1, + anon_sym_RBRACK_RBRACK, + STATE(2651), 1, + aux_sym_attribute_declaration_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [105529] = 4, + ACTIONS(5325), 1, aux_sym_preproc_arg_token1, - ACTIONS(4408), 1, + ACTIONS(5943), 1, aux_sym_preproc_include_token2, - STATE(1878), 1, - sym_preproc_params, - STATE(2077), 1, + STATE(3078), 1, sym_preproc_arg, - [69209] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4410), 5, + [105543] = 4, + ACTIONS(5176), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK, + ACTIONS(5945), 1, + anon_sym_SEMI, + STATE(2530), 1, + aux_sym_declaration_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [105557] = 4, + ACTIONS(5583), 1, anon_sym_COLON, - [69220] = 6, - ACTIONS(3), 1, + ACTIONS(5947), 1, + anon_sym_RPAREN, + STATE(3103), 1, + sym_gnu_asm_goto_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(41), 1, - anon_sym___declspec, - ACTIONS(2406), 1, - anon_sym_LBRACE, - ACTIONS(4412), 1, - sym_identifier, - STATE(804), 1, - sym_field_declaration_list, - STATE(1876), 1, - sym_ms_declspec_modifier, - [69239] = 2, - ACTIONS(3), 1, + [105571] = 4, + ACTIONS(5176), 1, + anon_sym_COMMA, + ACTIONS(5949), 1, + anon_sym_SEMI, + STATE(2530), 1, + aux_sym_declaration_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4414), 5, + [105585] = 4, + ACTIONS(5176), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_COLON, - [69250] = 2, - ACTIONS(3), 1, + ACTIONS(5951), 1, + anon_sym_SEMI, + STATE(2530), 1, + aux_sym_declaration_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [105599] = 4, + ACTIONS(5176), 1, + anon_sym_COMMA, + ACTIONS(5953), 1, + anon_sym_SEMI, + STATE(2659), 1, + aux_sym_declaration_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [105613] = 4, + ACTIONS(5176), 1, + anon_sym_COMMA, + ACTIONS(5955), 1, + anon_sym_SEMI, + STATE(2530), 1, + aux_sym_declaration_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4416), 5, + [105627] = 4, + ACTIONS(4008), 1, anon_sym_COMMA, + ACTIONS(5957), 1, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_COLON, - [69261] = 2, - ACTIONS(3), 1, + STATE(2723), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4418), 5, + [105641] = 4, + ACTIONS(5634), 1, anon_sym_COMMA, + ACTIONS(5959), 1, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_COLON, - [69272] = 6, - ACTIONS(3643), 1, + STATE(2568), 1, + aux_sym_parameter_list_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4388), 1, - anon_sym_LPAREN, - ACTIONS(4390), 1, + [105655] = 4, + ACTIONS(5176), 1, + anon_sym_COMMA, + ACTIONS(5961), 1, + anon_sym_SEMI, + STATE(2530), 1, + aux_sym_declaration_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [105669] = 4, + ACTIONS(5325), 1, aux_sym_preproc_arg_token1, - ACTIONS(4420), 1, + ACTIONS(5963), 1, aux_sym_preproc_include_token2, - STATE(1838), 1, - sym_preproc_params, - STATE(2060), 1, + STATE(3177), 1, sym_preproc_arg, - [69291] = 5, - ACTIONS(3), 1, + ACTIONS(3), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(2486), 1, - anon_sym_LPAREN2, - ACTIONS(4424), 1, - anon_sym_COLON_COLON, - STATE(2014), 1, - sym_argument_list, - ACTIONS(4422), 2, + [105683] = 4, + ACTIONS(5176), 1, anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [69308] = 6, - ACTIONS(3643), 1, + ACTIONS(5965), 1, + anon_sym_SEMI, + STATE(2530), 1, + aux_sym_declaration_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4388), 1, - anon_sym_LPAREN, - ACTIONS(4390), 1, - aux_sym_preproc_arg_token1, - ACTIONS(4426), 1, - aux_sym_preproc_include_token2, - STATE(1921), 1, - sym_preproc_params, - STATE(2099), 1, - sym_preproc_arg, - [69327] = 6, + [105697] = 5, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3898), 1, + ACTIONS(4060), 1, + anon_sym_LBRACE, + ACTIONS(5967), 1, sym_identifier, - ACTIONS(4428), 1, - aux_sym_preproc_if_token2, - STATE(1629), 1, - sym_enumerator, - STATE(1740), 1, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1752), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - [69346] = 2, + STATE(1684), 1, + sym_field_declaration_list, + [105713] = 5, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(4430), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_COLON, - [69357] = 2, + ACTIONS(3614), 1, + anon_sym_LBRACE, + ACTIONS(5969), 1, + sym_identifier, + STATE(1329), 1, + sym_enumerator_list, + [105729] = 5, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(4432), 5, + 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, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_COLON, - [69368] = 2, - ACTIONS(3), 1, + ACTIONS(5971), 1, + anon_sym_SEMI, + STATE(2661), 1, + aux_sym_declaration_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4434), 5, + [105759] = 4, + ACTIONS(5176), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_COLON, - [69379] = 5, - ACTIONS(3), 1, + ACTIONS(5973), 1, + anon_sym_SEMI, + STATE(2530), 1, + aux_sym_declaration_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(3825), 1, - anon_sym_LPAREN2, - ACTIONS(4265), 1, - anon_sym_LBRACK, - STATE(1690), 1, - sym_parameter_list, - ACTIONS(4197), 2, + [105773] = 4, + ACTIONS(5176), 1, anon_sym_COMMA, - anon_sym_RPAREN, - [69396] = 5, - ACTIONS(3), 1, + ACTIONS(5975), 1, + anon_sym_SEMI, + STATE(2664), 1, + aux_sym_declaration_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(3825), 1, - anon_sym_LPAREN2, - ACTIONS(4265), 1, - anon_sym_LBRACK, - ACTIONS(4436), 1, + [105787] = 4, + ACTIONS(5543), 1, + anon_sym_COMMA, + ACTIONS(5977), 1, anon_sym_RPAREN, - STATE(1690), 1, - sym_parameter_list, - [69412] = 4, - ACTIONS(3), 1, + STATE(2539), 1, + aux_sym_attribute_specifier_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4438), 1, + [105801] = 4, + ACTIONS(5634), 1, anon_sym_COMMA, - STATE(1720), 1, - aux_sym_gnu_asm_clobber_list_repeat1, - ACTIONS(4441), 2, + ACTIONS(5979), 1, anon_sym_RPAREN, - anon_sym_COLON, - [69426] = 4, - ACTIONS(3), 1, + STATE(2666), 1, + aux_sym_parameter_list_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4443), 1, - anon_sym___except, - ACTIONS(4445), 1, - anon_sym___finally, - STATE(94), 2, - sym_seh_except_clause, - sym_seh_finally_clause, - [69440] = 5, - ACTIONS(3), 1, + [105815] = 4, + ACTIONS(5565), 1, + anon_sym_COMMA, + ACTIONS(5981), 1, + anon_sym_RBRACK_RBRACK, + STATE(2617), 1, + aux_sym_attribute_declaration_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(3825), 1, - anon_sym_LPAREN2, - ACTIONS(4265), 1, - anon_sym_LBRACK, - ACTIONS(4447), 1, - anon_sym_RPAREN, - STATE(1690), 1, - sym_parameter_list, - [69456] = 4, - ACTIONS(3), 1, + [105829] = 4, + ACTIONS(5176), 1, + anon_sym_COMMA, + ACTIONS(5983), 1, + anon_sym_SEMI, + STATE(2530), 1, + aux_sym_declaration_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4449), 1, - anon_sym___except, - ACTIONS(4451), 1, - anon_sym___finally, - STATE(238), 2, - sym_seh_except_clause, - sym_seh_finally_clause, - [69470] = 4, - ACTIONS(3), 1, + [105843] = 4, + ACTIONS(5176), 1, + anon_sym_COMMA, + ACTIONS(5985), 1, + anon_sym_SEMI, + STATE(2530), 1, + aux_sym_declaration_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(2486), 1, - anon_sym_LPAREN2, - STATE(1957), 1, - sym_argument_list, - ACTIONS(4453), 2, + [105857] = 4, + ACTIONS(5176), 1, anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [69484] = 4, - ACTIONS(3), 1, + ACTIONS(5987), 1, + anon_sym_SEMI, + STATE(2667), 1, + aux_sym_declaration_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4455), 1, - anon_sym___except, - ACTIONS(4457), 1, - anon_sym___finally, - STATE(191), 2, - sym_seh_except_clause, - sym_seh_finally_clause, - [69498] = 5, - ACTIONS(3), 1, + [105871] = 4, + ACTIONS(5565), 1, + anon_sym_COMMA, + ACTIONS(5989), 1, + anon_sym_RBRACK_RBRACK, + STATE(2512), 1, + aux_sym_attribute_declaration_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4459), 1, + [105885] = 4, + ACTIONS(5543), 1, anon_sym_COMMA, - ACTIONS(4461), 1, + ACTIONS(5991), 1, anon_sym_RPAREN, - STATE(1770), 1, - aux_sym__old_style_parameter_list_repeat1, - STATE(1865), 1, - aux_sym_parameter_list_repeat1, - [69514] = 5, - ACTIONS(3), 1, + STATE(2676), 1, + aux_sym_attribute_specifier_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(3825), 1, + [105899] = 4, + ACTIONS(5557), 1, anon_sym_LPAREN2, - ACTIONS(4265), 1, - anon_sym_LBRACK, - ACTIONS(4463), 1, - anon_sym_RPAREN, - STATE(1690), 1, - sym_parameter_list, - [69530] = 4, - ACTIONS(3643), 1, + ACTIONS(5993), 1, + aux_sym_preproc_include_token2, + STATE(3319), 1, + sym_preproc_argument_list, + ACTIONS(3), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4465), 1, - anon_sym_SQUOTE, - STATE(1744), 1, - aux_sym_char_literal_repeat1, - ACTIONS(4467), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [69544] = 4, - ACTIONS(3), 1, + [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, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(3898), 1, - sym_identifier, - ACTIONS(4469), 1, - aux_sym_preproc_if_token2, - STATE(1740), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - [69558] = 4, - ACTIONS(3), 1, + [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, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4471), 1, + [105941] = 4, + ACTIONS(5176), 1, anon_sym_COMMA, - STATE(1720), 1, - aux_sym_gnu_asm_clobber_list_repeat1, - ACTIONS(4473), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [69572] = 5, - ACTIONS(3643), 1, - sym_comment, - ACTIONS(4475), 1, - anon_sym_DQUOTE, - ACTIONS(4477), 1, - aux_sym_string_literal_token1, - ACTIONS(4479), 1, - sym_escape_sequence, - STATE(1743), 1, - aux_sym_string_literal_repeat1, - [69588] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4003), 1, - sym_identifier, - ACTIONS(4428), 1, - aux_sym_preproc_if_token2, - STATE(1752), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2109), 1, - sym_enumerator, - [69604] = 5, - ACTIONS(3643), 1, + ACTIONS(5999), 1, + anon_sym_SEMI, + STATE(2530), 1, + aux_sym_declaration_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4481), 1, - anon_sym_DQUOTE, - ACTIONS(4483), 1, - aux_sym_string_literal_token1, - ACTIONS(4485), 1, - sym_escape_sequence, - STATE(1735), 1, - aux_sym_string_literal_repeat1, - [69620] = 4, - ACTIONS(3), 1, + [105955] = 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4487), 1, + ACTIONS(6001), 3, anon_sym_COMMA, - STATE(1734), 1, - aux_sym_gnu_asm_input_operand_list_repeat1, - ACTIONS(4490), 2, anon_sym_RPAREN, anon_sym_COLON, - [69634] = 5, - ACTIONS(3643), 1, - sym_comment, - ACTIONS(4492), 1, - anon_sym_DQUOTE, - ACTIONS(4494), 1, - aux_sym_string_literal_token1, - ACTIONS(4497), 1, - sym_escape_sequence, - STATE(1735), 1, - aux_sym_string_literal_repeat1, - [69650] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4500), 1, + [105965] = 4, + ACTIONS(5176), 1, anon_sym_COMMA, - STATE(1736), 1, - aux_sym_gnu_asm_output_operand_list_repeat1, - ACTIONS(4503), 2, - anon_sym_RPAREN, + ACTIONS(6003), 1, + anon_sym_SEMI, + STATE(2679), 1, + aux_sym_declaration_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [105979] = 4, + ACTIONS(5583), 1, anon_sym_COLON, - [69664] = 2, - ACTIONS(3), 1, + ACTIONS(6005), 1, + anon_sym_RPAREN, + STATE(3281), 1, + sym_gnu_asm_goto_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4505), 4, - anon_sym_LPAREN2, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [69674] = 5, - ACTIONS(3), 1, + [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, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4459), 1, + [106007] = 4, + ACTIONS(5565), 1, anon_sym_COMMA, - ACTIONS(4507), 1, - anon_sym_RPAREN, - STATE(1770), 1, - aux_sym__old_style_parameter_list_repeat1, - STATE(1865), 1, - aux_sym_parameter_list_repeat1, - [69690] = 2, - ACTIONS(3), 1, + ACTIONS(6009), 1, + anon_sym_RBRACK_RBRACK, + STATE(2682), 1, + aux_sym_attribute_declaration_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4509), 4, + [106021] = 4, + ACTIONS(5565), 1, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_asm, - anon_sym___asm__, - [69700] = 4, + ACTIONS(6011), 1, + anon_sym_RBRACK_RBRACK, + STATE(2729), 1, + aux_sym_attribute_declaration_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [106035] = 5, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3898), 1, + ACTIONS(4172), 1, + anon_sym_LBRACE, + ACTIONS(6013), 1, sym_identifier, - ACTIONS(4511), 1, - aux_sym_preproc_if_token2, - STATE(1614), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - [69714] = 4, - ACTIONS(3), 1, + 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, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4471), 1, - anon_sym_COMMA, - STATE(1730), 1, - aux_sym_gnu_asm_clobber_list_repeat1, - ACTIONS(4513), 2, - anon_sym_RPAREN, + [106065] = 4, + ACTIONS(5583), 1, anon_sym_COLON, - [69728] = 4, - ACTIONS(3), 1, + ACTIONS(6017), 1, + anon_sym_RPAREN, + STATE(3231), 1, + sym_gnu_asm_goto_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4515), 1, - anon_sym___except, - ACTIONS(4517), 1, - anon_sym___finally, - STATE(194), 2, - sym_seh_except_clause, - sym_seh_finally_clause, - [69742] = 5, - ACTIONS(3643), 1, + [106079] = 4, + ACTIONS(5176), 1, + anon_sym_COMMA, + ACTIONS(6019), 1, + anon_sym_SEMI, + STATE(2530), 1, + aux_sym_declaration_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4483), 1, - aux_sym_string_literal_token1, - ACTIONS(4485), 1, - sym_escape_sequence, - ACTIONS(4519), 1, - anon_sym_DQUOTE, - STATE(1735), 1, - aux_sym_string_literal_repeat1, - [69758] = 4, - ACTIONS(3643), 1, + [106093] = 4, + ACTIONS(5625), 1, + anon_sym_COLON, + ACTIONS(6021), 1, + anon_sym_RPAREN, + STATE(2696), 1, + sym_gnu_asm_clobber_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4521), 1, - anon_sym_SQUOTE, - STATE(1744), 1, - aux_sym_char_literal_repeat1, - ACTIONS(4523), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [69772] = 4, - ACTIONS(3643), 1, + [106107] = 4, + ACTIONS(5583), 1, + anon_sym_COLON, + ACTIONS(6023), 1, + anon_sym_RPAREN, + STATE(3245), 1, + sym_gnu_asm_goto_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4526), 1, - anon_sym_SQUOTE, - STATE(1744), 1, - aux_sym_char_literal_repeat1, - ACTIONS(4467), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [69786] = 5, - ACTIONS(3643), 1, + [106121] = 5, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(4483), 1, - aux_sym_string_literal_token1, - ACTIONS(4485), 1, - sym_escape_sequence, - ACTIONS(4528), 1, - anon_sym_DQUOTE, - STATE(1735), 1, - aux_sym_string_literal_repeat1, - [69802] = 4, + ACTIONS(4172), 1, + anon_sym_LBRACE, + ACTIONS(6025), 1, + sym_identifier, + STATE(1665), 1, + sym_enumerator_list, + [106137] = 5, + ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3588), 1, + anon_sym_LBRACE, + ACTIONS(5363), 1, + sym_identifier, + STATE(1309), 1, + sym_field_declaration_list, + [106153] = 5, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(4530), 1, + ACTIONS(3672), 1, + anon_sym_LBRACE, + ACTIONS(6027), 1, + sym_identifier, + STATE(1333), 1, + sym_field_declaration_list, + [106169] = 4, + ACTIONS(4000), 1, anon_sym_COMMA, - STATE(1736), 1, - aux_sym_gnu_asm_output_operand_list_repeat1, - ACTIONS(4532), 2, + ACTIONS(6029), 1, anon_sym_RPAREN, - anon_sym_COLON, - [69816] = 4, - ACTIONS(3), 1, + STATE(2555), 1, + aux_sym_argument_list_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [106183] = 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4534), 1, + ACTIONS(6031), 3, anon_sym_COMMA, - STATE(1734), 1, - aux_sym_gnu_asm_input_operand_list_repeat1, - ACTIONS(4536), 2, anon_sym_RPAREN, anon_sym_COLON, - [69830] = 5, - ACTIONS(3643), 1, + [106193] = 4, + ACTIONS(5176), 1, + anon_sym_COMMA, + ACTIONS(6033), 1, + anon_sym_SEMI, + STATE(2530), 1, + aux_sym_declaration_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4538), 1, - anon_sym_DQUOTE, - ACTIONS(4540), 1, - aux_sym_string_literal_token1, - ACTIONS(4542), 1, - sym_escape_sequence, - STATE(1733), 1, - aux_sym_string_literal_repeat1, - [69846] = 4, - ACTIONS(3643), 1, + [106207] = 4, + ACTIONS(5176), 1, + anon_sym_COMMA, + ACTIONS(6035), 1, + anon_sym_SEMI, + STATE(2530), 1, + aux_sym_declaration_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4544), 1, - anon_sym_SQUOTE, - STATE(1744), 1, - aux_sym_char_literal_repeat1, - ACTIONS(4467), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [69860] = 5, - ACTIONS(3643), 1, + [106221] = 4, + ACTIONS(5176), 1, + anon_sym_COMMA, + ACTIONS(6037), 1, + anon_sym_SEMI, + STATE(2697), 1, + aux_sym_declaration_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4546), 1, - anon_sym_DQUOTE, - ACTIONS(4548), 1, - aux_sym_string_literal_token1, - ACTIONS(4550), 1, - sym_escape_sequence, - STATE(1746), 1, - aux_sym_string_literal_repeat1, - [69876] = 5, - ACTIONS(3), 1, + [106235] = 4, + ACTIONS(5176), 1, + anon_sym_COMMA, + ACTIONS(6039), 1, + anon_sym_SEMI, + STATE(2530), 1, + aux_sym_declaration_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4003), 1, - sym_identifier, - ACTIONS(4552), 1, - aux_sym_preproc_if_token2, - STATE(1615), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2109), 1, - sym_enumerator, - [69892] = 4, - ACTIONS(3), 1, + [106249] = 4, + ACTIONS(5541), 1, + anon_sym_COLON, + ACTIONS(6041), 1, + anon_sym_RPAREN, + STATE(2698), 1, + sym_gnu_asm_input_operand_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [106263] = 4, + ACTIONS(5625), 1, + anon_sym_COLON, + ACTIONS(6043), 1, + anon_sym_RPAREN, + STATE(2699), 1, + sym_gnu_asm_clobber_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4530), 1, + [106277] = 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(6045), 3, anon_sym_COMMA, - STATE(1747), 1, - aux_sym_gnu_asm_output_operand_list_repeat1, - ACTIONS(4554), 2, anon_sym_RPAREN, anon_sym_COLON, - [69906] = 4, - ACTIONS(3), 1, + [106287] = 4, + ACTIONS(6047), 1, + anon_sym_COMMA, + ACTIONS(6049), 1, + anon_sym_RPAREN, + STATE(2742), 1, + aux_sym_gnu_asm_goto_list_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [106301] = 4, + ACTIONS(1214), 1, + anon_sym_while, + ACTIONS(6051), 1, + anon_sym_else, + STATE(2795), 1, + sym_else_clause, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4534), 1, + [106315] = 4, + ACTIONS(5634), 1, anon_sym_COMMA, - STATE(1748), 1, - aux_sym_gnu_asm_input_operand_list_repeat1, - ACTIONS(4556), 2, + ACTIONS(6053), 1, anon_sym_RPAREN, - anon_sym_COLON, - [69920] = 4, - ACTIONS(3), 1, + STATE(2568), 1, + aux_sym_parameter_list_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4558), 1, - anon_sym___except, - ACTIONS(4560), 1, - anon_sym___finally, - STATE(194), 2, - sym_seh_except_clause, - sym_seh_finally_clause, - [69934] = 4, - ACTIONS(3), 1, + [106329] = 4, + ACTIONS(4387), 1, + anon_sym_COMMA, + ACTIONS(6055), 1, + 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_COMMA, + ACTIONS(6057), 1, + anon_sym_SEMI, + STATE(2736), 1, + aux_sym_declaration_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4562), 1, + [106357] = 4, + ACTIONS(4000), 1, anon_sym_COMMA, - ACTIONS(4564), 1, + ACTIONS(4002), 1, anon_sym_RPAREN, - STATE(1885), 1, - aux_sym_attribute_specifier_repeat1, - [69947] = 4, - ACTIONS(3), 1, + STATE(2555), 1, + aux_sym_argument_list_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, + [106371] = 2, + 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, anon_sym_COMMA, - ACTIONS(4566), 1, + ACTIONS(6061), 1, anon_sym_SEMI, - STATE(1895), 1, + STATE(2530), 1, aux_sym_declaration_repeat1, - [69960] = 4, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, + [106395] = 4, + ACTIONS(5176), 1, anon_sym_COMMA, - ACTIONS(4568), 1, + ACTIONS(6063), 1, anon_sym_SEMI, - STATE(1834), 1, + STATE(2530), 1, aux_sym_declaration_repeat1, - [69973] = 4, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [106409] = 4, + ACTIONS(5325), 1, + aux_sym_preproc_arg_token1, + ACTIONS(6065), 1, + aux_sym_preproc_include_token2, + STATE(3402), 1, + sym_preproc_arg, + ACTIONS(3), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, + [106423] = 4, + ACTIONS(5176), 1, anon_sym_COMMA, - ACTIONS(4570), 1, + ACTIONS(6067), 1, anon_sym_SEMI, - STATE(1775), 1, + STATE(2705), 1, aux_sym_declaration_repeat1, - [69986] = 4, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [106437] = 4, + ACTIONS(6069), 1, + anon_sym_COMMA, + ACTIONS(6072), 1, + anon_sym_RPAREN, + STATE(2723), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, + [106451] = 4, + ACTIONS(5176), 1, anon_sym_COMMA, - ACTIONS(4572), 1, + ACTIONS(6074), 1, anon_sym_SEMI, - STATE(1834), 1, + STATE(2530), 1, aux_sym_declaration_repeat1, - [69999] = 4, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, + [106465] = 4, + ACTIONS(5176), 1, anon_sym_COMMA, - ACTIONS(4574), 1, + ACTIONS(6076), 1, anon_sym_SEMI, - STATE(1834), 1, + STATE(2708), 1, aux_sym_declaration_repeat1, - [70012] = 4, + 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, + anon_sym_COMMA, + ACTIONS(6082), 1, + anon_sym_RPAREN, + STATE(2471), 1, + aux_sym_attribute_specifier_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [106521] = 4, + ACTIONS(5565), 1, + anon_sym_COMMA, + ACTIONS(6084), 1, + anon_sym_RBRACK_RBRACK, + STATE(2512), 1, + aux_sym_attribute_declaration_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [106535] = 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(3717), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK, + [106545] = 5, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3588), 1, + anon_sym_LBRACE, + ACTIONS(6086), 1, + sym_identifier, + STATE(1300), 1, + sym_field_declaration_list, + [106561] = 4, + ACTIONS(5603), 1, + anon_sym_COLON, + ACTIONS(6088), 1, + anon_sym_RPAREN, + STATE(2727), 1, + sym_gnu_asm_output_operand_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, + [106575] = 4, + ACTIONS(5176), 1, anon_sym_COMMA, - ACTIONS(4576), 1, + ACTIONS(6090), 1, anon_sym_SEMI, - STATE(1789), 1, + STATE(2719), 1, aux_sym_declaration_repeat1, - [70025] = 4, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, + [106589] = 4, + ACTIONS(5176), 1, anon_sym_COMMA, - ACTIONS(4578), 1, + ACTIONS(6092), 1, anon_sym_SEMI, - STATE(1834), 1, + STATE(2530), 1, aux_sym_declaration_repeat1, - [70038] = 4, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(3334), 1, + [106603] = 4, + ACTIONS(4008), 1, anon_sym_COMMA, - ACTIONS(3336), 1, + ACTIONS(6094), 1, anon_sym_RPAREN, - STATE(1882), 1, - aux_sym_argument_list_repeat1, - [70051] = 4, - ACTIONS(3), 1, + STATE(2723), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, + [106617] = 4, + ACTIONS(5176), 1, anon_sym_COMMA, - ACTIONS(4580), 1, + ACTIONS(6096), 1, anon_sym_SEMI, - STATE(1798), 1, + STATE(2530), 1, aux_sym_declaration_repeat1, - [70064] = 4, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(3583), 1, + [106631] = 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(6098), 3, anon_sym_COMMA, - ACTIONS(4582), 1, anon_sym_RPAREN, - STATE(1814), 1, - aux_sym_preproc_argument_list_repeat1, - [70077] = 4, - ACTIONS(3643), 1, + anon_sym_COLON, + [106641] = 4, + ACTIONS(4000), 1, + anon_sym_COMMA, + ACTIONS(4004), 1, + anon_sym_RPAREN, + STATE(2717), 1, + aux_sym_argument_list_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4390), 1, - aux_sym_preproc_arg_token1, - ACTIONS(4584), 1, - aux_sym_preproc_include_token2, - STATE(2265), 1, - sym_preproc_arg, - [70090] = 4, - ACTIONS(3), 1, + [106655] = 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4586), 1, + ACTIONS(6100), 3, anon_sym_COMMA, - ACTIONS(4588), 1, anon_sym_RPAREN, - STATE(1863), 1, + anon_sym_COLON, + [106665] = 4, + ACTIONS(6102), 1, + anon_sym_COMMA, + ACTIONS(6105), 1, + anon_sym_RPAREN, + STATE(2740), 1, + aux_sym_gnu_asm_goto_list_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, - [70103] = 4, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(3334), 1, + [106693] = 4, + ACTIONS(6047), 1, anon_sym_COMMA, - ACTIONS(4590), 1, + ACTIONS(6109), 1, anon_sym_RPAREN, - STATE(1882), 1, - aux_sym_argument_list_repeat1, - [70116] = 4, - ACTIONS(3), 1, + STATE(2740), 1, + aux_sym_gnu_asm_goto_list_repeat1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4592), 1, + [106707] = 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(6111), 3, anon_sym_COMMA, - ACTIONS(4594), 1, anon_sym_RPAREN, - STATE(1889), 1, - aux_sym__old_style_parameter_list_repeat1, - [70129] = 4, + anon_sym_COLON, + [106717] = 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(6113), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [106727] = 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(1328), 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, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(1300), 2, + anon_sym_else, + anon_sym_while, + [106756] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2948), 1, - anon_sym_LBRACE, - ACTIONS(4596), 1, + ACTIONS(3086), 1, sym_identifier, - STATE(960), 1, - sym_enumerator_list, - [70142] = 4, + ACTIONS(3088), 1, + anon_sym_LBRACE, + [106769] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(4257), 1, + ACTIONS(6119), 1, + sym_identifier, + STATE(2479), 1, + sym_attribute, + [106782] = 3, + ACTIONS(4837), 1, + anon_sym_RBRACE, + ACTIONS(6115), 1, anon_sym_COMMA, - ACTIONS(4598), 1, - anon_sym_SEMI, - STATE(1834), 1, - aux_sym_declaration_repeat1, - [70155] = 4, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [106793] = 3, + ACTIONS(6121), 1, + anon_sym_LPAREN2, + STATE(441), 1, + sym_parenthesized_expression, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [106804] = 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(1272), 2, + anon_sym_else, + anon_sym_while, + [106813] = 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(1260), 2, + anon_sym_else, + anon_sym_while, + [106822] = 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(1352), 2, + anon_sym_else, + anon_sym_while, + [106831] = 3, + ACTIONS(6123), 1, + anon_sym_LPAREN2, + STATE(2763), 1, + sym_parenthesized_expression, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [106842] = 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(1220), 2, + anon_sym_else, + anon_sym_while, + [106851] = 3, + ACTIONS(6121), 1, + anon_sym_LPAREN2, + STATE(418), 1, + sym_parenthesized_expression, + 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, + anon_sym_LPAREN2, + [106875] = 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, + ACTIONS(6129), 2, anon_sym_COMMA, - ACTIONS(4600), 1, - anon_sym_SEMI, - STATE(1781), 1, - aux_sym_declaration_repeat1, - [70168] = 4, + anon_sym_RPAREN, + [106884] = 3, + ACTIONS(3622), 1, + anon_sym_LPAREN2, + STATE(3320), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [106895] = 3, + ACTIONS(6131), 1, + anon_sym_RPAREN, + ACTIONS(6133), 1, + sym_number_literal, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [106906] = 3, + ACTIONS(1570), 1, + anon_sym_LBRACE, + STATE(2414), 1, + sym_compound_statement, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [106917] = 3, + ACTIONS(49), 1, + anon_sym_LBRACE, + STATE(280), 1, + sym_compound_statement, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [106928] = 3, + ACTIONS(3622), 1, + anon_sym_LPAREN2, + STATE(3243), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [106939] = 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(1280), 2, + anon_sym_else, + anon_sym_while, + [106948] = 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(6135), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [106957] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6119), 1, + sym_identifier, + STATE(2834), 1, + sym_attribute, + [106970] = 3, + ACTIONS(3622), 1, + anon_sym_LPAREN2, + STATE(3012), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [106981] = 3, + ACTIONS(3622), 1, + anon_sym_LPAREN2, + STATE(3008), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, + [106992] = 3, + ACTIONS(139), 1, + anon_sym_LBRACE, + STATE(124), 1, + sym_compound_statement, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [107003] = 3, + ACTIONS(6115), 1, anon_sym_COMMA, - ACTIONS(4602), 1, - anon_sym_SEMI, - STATE(1834), 1, - aux_sym_declaration_repeat1, - [70181] = 4, + ACTIONS(6137), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [107014] = 3, + ACTIONS(3622), 1, + anon_sym_LPAREN2, + STATE(3003), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [107025] = 3, + ACTIONS(3622), 1, + anon_sym_LPAREN2, + STATE(2981), 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, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [107047] = 3, + ACTIONS(6123), 1, + anon_sym_LPAREN2, + STATE(2960), 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, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [107069] = 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(1284), 2, + anon_sym_else, + anon_sym_while, + [107078] = 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(1288), 2, + anon_sym_else, + anon_sym_while, + [107087] = 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(1292), 2, + anon_sym_else, + anon_sym_while, + [107096] = 3, + ACTIONS(1570), 1, + anon_sym_LBRACE, + STATE(2411), 1, + sym_compound_statement, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [107107] = 3, + ACTIONS(3622), 1, + anon_sym_LPAREN2, + STATE(3033), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [107118] = 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(1268), 2, + anon_sym_else, + anon_sym_while, + [107127] = 3, + ACTIONS(6123), 1, + anon_sym_LPAREN2, + STATE(2927), 1, + sym_parenthesized_expression, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [107138] = 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(1312), 2, + anon_sym_else, + anon_sym_while, + [107147] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(4257), 1, + ACTIONS(6119), 1, + sym_identifier, + STATE(2657), 1, + sym_attribute, + [107160] = 3, + ACTIONS(4893), 1, + anon_sym_RBRACE, + ACTIONS(6115), 1, anon_sym_COMMA, - ACTIONS(4604), 1, - anon_sym_SEMI, - STATE(1834), 1, - aux_sym_declaration_repeat1, - [70194] = 4, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [107171] = 3, + ACTIONS(6123), 1, + anon_sym_LPAREN2, + STATE(2902), 1, + sym_parenthesized_expression, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [107182] = 3, + ACTIONS(6123), 1, + anon_sym_LPAREN2, + STATE(3118), 1, + sym_parenthesized_expression, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [107193] = 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(1324), 2, + anon_sym_else, + anon_sym_while, + [107202] = 3, + ACTIONS(1570), 1, + anon_sym_LBRACE, + STATE(2437), 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, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [107224] = 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(1336), 2, + anon_sym_else, + anon_sym_while, + [107233] = 3, + ACTIONS(6123), 1, + anon_sym_LPAREN2, + STATE(3173), 1, + sym_parenthesized_expression, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [107244] = 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(1340), 2, + anon_sym_else, + anon_sym_while, + [107253] = 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(1224), 2, + anon_sym_else, + anon_sym_while, + [107262] = 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(1344), 2, + anon_sym_else, + anon_sym_while, + [107271] = 3, + ACTIONS(139), 1, + anon_sym_LBRACE, + STATE(98), 1, + sym_compound_statement, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [107282] = 3, + ACTIONS(6121), 1, + anon_sym_LPAREN2, + STATE(458), 1, + sym_parenthesized_expression, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [107293] = 3, + ACTIONS(6123), 1, + anon_sym_LPAREN2, + STATE(2854), 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, + anon_sym_LPAREN2, + STATE(413), 1, + sym_parenthesized_expression, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [107333] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(4606), 1, + ACTIONS(6119), 1, + sym_identifier, + STATE(2692), 1, + sym_attribute, + [107346] = 3, + ACTIONS(3622), 1, + anon_sym_LPAREN2, + STATE(3230), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [107357] = 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(1348), 2, + anon_sym_else, + anon_sym_while, + [107366] = 3, + ACTIONS(3622), 1, + anon_sym_LPAREN2, + STATE(3237), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [107377] = 3, + ACTIONS(3622), 1, + anon_sym_LPAREN2, + STATE(3240), 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, + anon_sym_LPAREN2, + STATE(3241), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [107410] = 3, + ACTIONS(3622), 1, + anon_sym_LPAREN2, + STATE(3242), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [107421] = 3, + ACTIONS(3622), 1, + anon_sym_LPAREN2, + STATE(3246), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [107432] = 3, + ACTIONS(3622), 1, + anon_sym_LPAREN2, + STATE(3247), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [107443] = 3, + ACTIONS(3622), 1, + anon_sym_LPAREN2, + STATE(3248), 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, + anon_sym_LPAREN2, + STATE(456), 1, + sym_parenthesized_expression, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [107474] = 3, + ACTIONS(3622), 1, + anon_sym_LPAREN2, + STATE(3249), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [107485] = 3, + ACTIONS(3622), 1, + anon_sym_LPAREN2, + STATE(3250), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [107496] = 3, + ACTIONS(3622), 1, + anon_sym_LPAREN2, + STATE(3251), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [107507] = 3, + ACTIONS(3622), 1, + anon_sym_LPAREN2, + STATE(3253), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [107518] = 3, + ACTIONS(3622), 1, + anon_sym_LPAREN2, + STATE(3254), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [107529] = 3, + ACTIONS(3622), 1, + anon_sym_LPAREN2, + STATE(3255), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [107540] = 3, + ACTIONS(3622), 1, + anon_sym_LPAREN2, + STATE(3256), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [107551] = 3, + ACTIONS(3622), 1, + anon_sym_LPAREN2, + STATE(3257), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [107562] = 3, + ACTIONS(3622), 1, + anon_sym_LPAREN2, + STATE(3272), 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, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [107584] = 3, + ACTIONS(6123), 1, + anon_sym_LPAREN2, + STATE(2797), 1, + sym_parenthesized_expression, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [107595] = 3, + ACTIONS(6139), 1, anon_sym_RPAREN, - ACTIONS(4608), 1, - anon_sym_COLON, - STATE(1932), 1, - sym_gnu_asm_output_operand_list, - [70207] = 4, - ACTIONS(3), 1, + ACTIONS(6141), 1, + sym_number_literal, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [107606] = 3, + ACTIONS(6123), 1, + anon_sym_LPAREN2, + STATE(3301), 1, + sym_parenthesized_expression, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(3334), 1, + [107617] = 3, + ACTIONS(6143), 1, + aux_sym_preproc_include_token2, + ACTIONS(6145), 1, + aux_sym_preproc_arg_token1, + ACTIONS(3), 2, + sym__linux_kernel_annotations, + sym_comment, + [107628] = 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(6147), 2, anon_sym_COMMA, - ACTIONS(4610), 1, anon_sym_RPAREN, - STATE(1882), 1, - aux_sym_argument_list_repeat1, - [70220] = 4, + [107637] = 3, + ACTIONS(1570), 1, + anon_sym_LBRACE, + STATE(2784), 1, + sym_compound_statement, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [107648] = 3, + ACTIONS(1570), 1, + anon_sym_LBRACE, + STATE(2455), 1, + sym_compound_statement, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [107659] = 3, + ACTIONS(3622), 1, + anon_sym_LPAREN2, + STATE(3445), 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, + anon_sym_LPAREN2, + STATE(422), 1, + sym_parenthesized_expression, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [107690] = 3, + ACTIONS(3622), 1, + anon_sym_LPAREN2, + STATE(3292), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [107701] = 3, + ACTIONS(6123), 1, + anon_sym_LPAREN2, + STATE(2808), 1, + sym_parenthesized_expression, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [107712] = 3, + ACTIONS(6121), 1, + anon_sym_LPAREN2, + STATE(445), 1, + sym_parenthesized_expression, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [107723] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6119), 1, + sym_identifier, + STATE(2693), 1, + sym_attribute, + [107736] = 3, + ACTIONS(6123), 1, + anon_sym_LPAREN2, + STATE(2889), 1, + sym_parenthesized_expression, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [107747] = 3, + ACTIONS(393), 1, + anon_sym_LBRACE, + STATE(195), 1, + sym_compound_statement, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [107758] = 3, + ACTIONS(6115), 1, + anon_sym_COMMA, + ACTIONS(6149), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [107769] = 3, + ACTIONS(3622), 1, + anon_sym_LPAREN2, + STATE(3119), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [107780] = 3, + ACTIONS(3622), 1, + anon_sym_LPAREN2, + STATE(3106), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [107791] = 3, + ACTIONS(3622), 1, + anon_sym_LPAREN2, + STATE(3102), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [107802] = 3, + ACTIONS(6151), 1, + anon_sym_RPAREN, + ACTIONS(6153), 1, + sym_number_literal, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [107813] = 3, + ACTIONS(3622), 1, + anon_sym_LPAREN2, + STATE(3101), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [107824] = 3, + ACTIONS(3622), 1, + anon_sym_LPAREN2, + STATE(3100), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [107835] = 3, + ACTIONS(3622), 1, + anon_sym_LPAREN2, + STATE(3099), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [107846] = 3, + ACTIONS(3622), 1, + anon_sym_LPAREN2, + STATE(3060), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [107857] = 3, + ACTIONS(3622), 1, + anon_sym_LPAREN2, + STATE(3053), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [107868] = 3, + ACTIONS(3622), 1, + anon_sym_LPAREN2, + STATE(3040), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [107879] = 3, + ACTIONS(3622), 1, + anon_sym_LPAREN2, + STATE(3037), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4612), 1, - anon_sym_RPAREN, - ACTIONS(4614), 1, - anon_sym_COLON, - STATE(1796), 1, - sym_gnu_asm_input_operand_list, - [70233] = 2, - ACTIONS(3), 1, + [107890] = 3, + ACTIONS(463), 1, + anon_sym_LBRACE, + STATE(211), 1, + sym_compound_statement, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4616), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [70242] = 4, - ACTIONS(3), 1, + [107901] = 3, + ACTIONS(3622), 1, + anon_sym_LPAREN2, + STATE(3032), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, - anon_sym_COMMA, - ACTIONS(4618), 1, - anon_sym_SEMI, - STATE(1834), 1, - aux_sym_declaration_repeat1, - [70255] = 4, - ACTIONS(3), 1, + [107912] = 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, + ACTIONS(6155), 2, anon_sym_COMMA, - ACTIONS(4620), 1, anon_sym_SEMI, - STATE(1834), 1, - aux_sym_declaration_repeat1, - [70268] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4622), 3, - anon_sym_COMMA, + [107921] = 3, + ACTIONS(6157), 1, anon_sym_RPAREN, - anon_sym_COLON, - [70277] = 4, - ACTIONS(3), 1, + ACTIONS(6159), 1, + sym_number_literal, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4624), 1, - anon_sym_COMMA, - ACTIONS(4627), 1, - anon_sym_RPAREN, - STATE(1783), 1, - aux_sym_gnu_asm_goto_list_repeat1, - [70290] = 4, - ACTIONS(3), 1, + [107932] = 3, + ACTIONS(3622), 1, + anon_sym_LPAREN2, + STATE(3030), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, - anon_sym_COMMA, - ACTIONS(4629), 1, - anon_sym_SEMI, - STATE(1834), 1, - aux_sym_declaration_repeat1, - [70303] = 4, - ACTIONS(3), 1, + [107943] = 3, + ACTIONS(3622), 1, + anon_sym_LPAREN2, + STATE(3022), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, - anon_sym_COMMA, - ACTIONS(4631), 1, - anon_sym_SEMI, - STATE(1809), 1, - aux_sym_declaration_repeat1, - [70316] = 4, - ACTIONS(3), 1, + [107954] = 3, + ACTIONS(3622), 1, + anon_sym_LPAREN2, + STATE(3244), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(1869), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4633), 1, - sym_identifier, - STATE(1954), 1, - sym_variadic_parameter, - [70329] = 4, + [107965] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(4635), 1, - anon_sym_COMMA, - ACTIONS(4637), 1, + ACTIONS(6161), 1, + sym_identifier, + ACTIONS(6163), 1, anon_sym_RPAREN, - STATE(1783), 1, - aux_sym_gnu_asm_goto_list_repeat1, - [70342] = 3, - ACTIONS(3643), 1, + [107978] = 3, + ACTIONS(3622), 1, + anon_sym_LPAREN2, + STATE(2958), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - STATE(1728), 1, - aux_sym_char_literal_repeat1, - ACTIONS(4639), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [70353] = 4, - ACTIONS(3), 1, + [107989] = 3, + ACTIONS(3622), 1, + anon_sym_LPAREN2, + STATE(2959), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, - anon_sym_COMMA, - ACTIONS(4641), 1, - anon_sym_SEMI, - STATE(1834), 1, - aux_sym_declaration_repeat1, - [70366] = 4, - ACTIONS(3643), 1, + [108000] = 3, + ACTIONS(3622), 1, + anon_sym_LPAREN2, + STATE(2961), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4643), 1, - aux_sym_preproc_include_token2, - ACTIONS(4645), 1, + [108011] = 3, + ACTIONS(3622), 1, anon_sym_LPAREN2, - STATE(2147), 1, - sym_preproc_argument_list, - [70379] = 2, - ACTIONS(3), 1, + STATE(2968), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4647), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [70388] = 4, - ACTIONS(3), 1, + [108022] = 3, + ACTIONS(3622), 1, + anon_sym_LPAREN2, + STATE(2969), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, - anon_sym_COMMA, - ACTIONS(4649), 1, - anon_sym_SEMI, - STATE(1834), 1, - aux_sym_declaration_repeat1, - [70401] = 2, - ACTIONS(3), 1, + [108033] = 3, + ACTIONS(6123), 1, + anon_sym_LPAREN2, + STATE(2955), 1, + sym_parenthesized_expression, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4651), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [70410] = 4, - ACTIONS(3), 1, + [108044] = 3, + ACTIONS(6123), 1, + anon_sym_LPAREN2, + STATE(2996), 1, + sym_parenthesized_expression, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, + [108055] = 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + ACTIONS(4134), 2, anon_sym_COMMA, - ACTIONS(4653), 1, anon_sym_SEMI, - STATE(1800), 1, - aux_sym_declaration_repeat1, - [70423] = 4, - ACTIONS(3), 1, + [108064] = 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4655), 1, + ACTIONS(5361), 2, anon_sym_COMMA, - ACTIONS(4658), 1, - anon_sym_RPAREN, - STATE(1795), 1, - aux_sym_generic_expression_repeat1, - [70436] = 4, + anon_sym_SEMI, + [108073] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(4660), 1, - anon_sym_RPAREN, - ACTIONS(4662), 1, - anon_sym_COLON, - STATE(1900), 1, - sym_gnu_asm_clobber_list, - [70449] = 4, + ACTIONS(6165), 1, + sym_identifier, + ACTIONS(6167), 1, + anon_sym_LPAREN2, + [108086] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(4257), 1, - anon_sym_COMMA, - ACTIONS(4664), 1, - anon_sym_SEMI, - STATE(1896), 1, - aux_sym_declaration_repeat1, - [70462] = 4, - ACTIONS(3), 1, + ACTIONS(6169), 1, + sym_identifier, + ACTIONS(6171), 1, + anon_sym_DOT_DOT_DOT, + [108099] = 3, + ACTIONS(3622), 1, + anon_sym_LPAREN2, + STATE(3221), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, - anon_sym_COMMA, - ACTIONS(4666), 1, - anon_sym_SEMI, - STATE(1834), 1, - aux_sym_declaration_repeat1, - [70475] = 4, - ACTIONS(3), 1, + [108110] = 3, + ACTIONS(1570), 1, + anon_sym_LBRACE, + STATE(2431), 1, + sym_compound_statement, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4668), 1, - anon_sym_COMMA, - ACTIONS(4671), 1, - anon_sym_RBRACK_RBRACK, - STATE(1799), 1, - aux_sym_attribute_declaration_repeat1, - [70488] = 4, - ACTIONS(3), 1, + [108121] = 3, + ACTIONS(3622), 1, + anon_sym_LPAREN2, + STATE(3138), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, - anon_sym_COMMA, - ACTIONS(4673), 1, - anon_sym_SEMI, - STATE(1834), 1, - aux_sym_declaration_repeat1, - [70501] = 3, - ACTIONS(4675), 1, + [108132] = 3, + ACTIONS(6173), 1, aux_sym_preproc_include_token2, - STATE(1924), 1, - aux_sym_preproc_arg_repeat1, - ACTIONS(4677), 2, - aux_sym_preproc_arg_token2, + ACTIONS(6175), 1, + aux_sym_preproc_arg_token1, + ACTIONS(3), 2, + sym__linux_kernel_annotations, sym_comment, - [70512] = 4, - ACTIONS(3643), 1, + [108143] = 3, + ACTIONS(1570), 1, + anon_sym_LBRACE, + STATE(2782), 1, + sym_compound_statement, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4390), 1, - aux_sym_preproc_arg_token1, - ACTIONS(4679), 1, - aux_sym_preproc_include_token2, - STATE(2240), 1, - sym_preproc_arg, - [70525] = 4, - ACTIONS(3), 1, + [108154] = 3, + ACTIONS(3622), 1, + anon_sym_LPAREN2, + STATE(3211), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, - anon_sym_COMMA, - ACTIONS(4681), 1, - anon_sym_SEMI, - STATE(1834), 1, - aux_sym_declaration_repeat1, - [70538] = 4, - ACTIONS(3), 1, + [108165] = 3, + ACTIONS(3622), 1, + anon_sym_LPAREN2, + STATE(3210), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, - anon_sym_COMMA, - ACTIONS(4683), 1, - anon_sym_SEMI, - STATE(1820), 1, - aux_sym_declaration_repeat1, - [70551] = 4, - ACTIONS(3), 1, + [108176] = 3, + ACTIONS(6121), 1, + anon_sym_LPAREN2, + STATE(417), 1, + sym_parenthesized_expression, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(2948), 1, - anon_sym_LBRACE, - ACTIONS(4685), 1, - sym_identifier, - STATE(1102), 1, - sym_enumerator_list, - [70564] = 4, - ACTIONS(3), 1, + [108187] = 3, + ACTIONS(6123), 1, + anon_sym_LPAREN2, + STATE(2831), 1, + sym_parenthesized_expression, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, - anon_sym_COMMA, - ACTIONS(4687), 1, - anon_sym_SEMI, - STATE(1834), 1, - aux_sym_declaration_repeat1, - [70577] = 2, - ACTIONS(3), 1, + [108198] = 3, + ACTIONS(6121), 1, + anon_sym_LPAREN2, + STATE(416), 1, + sym_parenthesized_expression, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4689), 3, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - [70586] = 4, + [108209] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(4691), 1, - anon_sym_COMMA, - ACTIONS(4693), 1, - anon_sym_RBRACK_RBRACK, - STATE(1799), 1, - aux_sym_attribute_declaration_repeat1, - [70599] = 4, - ACTIONS(3), 1, + ACTIONS(6119), 1, + sym_identifier, + STATE(2499), 1, + sym_attribute, + [108222] = 3, + ACTIONS(3622), 1, + anon_sym_LPAREN2, + STATE(3097), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, - anon_sym_COMMA, - ACTIONS(4695), 1, - anon_sym_SEMI, - STATE(1834), 1, - aux_sym_declaration_repeat1, - [70612] = 4, - ACTIONS(3), 1, + [108233] = 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4635), 1, + ACTIONS(5703), 2, anon_sym_COMMA, - ACTIONS(4697), 1, anon_sym_RPAREN, - STATE(1787), 1, - aux_sym_gnu_asm_goto_list_repeat1, - [70625] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4699), 3, - anon_sym_COMMA, + [108242] = 3, + ACTIONS(6177), 1, anon_sym_RPAREN, - anon_sym_COLON, - [70634] = 2, - ACTIONS(3), 1, + ACTIONS(6179), 1, + sym_number_literal, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4701), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [70643] = 4, - ACTIONS(3), 1, + [108253] = 3, + ACTIONS(3622), 1, + anon_sym_LPAREN2, + STATE(3208), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, - anon_sym_COMMA, - ACTIONS(4703), 1, - anon_sym_SEMI, - STATE(1834), 1, - aux_sym_declaration_repeat1, - [70656] = 4, - ACTIONS(3), 1, + [108264] = 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(3757), 1, - anon_sym_RPAREN, - ACTIONS(4705), 1, + ACTIONS(6181), 2, anon_sym_COMMA, - STATE(1814), 1, - aux_sym_preproc_argument_list_repeat1, - [70669] = 4, - ACTIONS(3), 1, + anon_sym_RBRACK_RBRACK, + [108273] = 3, + ACTIONS(393), 1, + anon_sym_LBRACE, + STATE(241), 1, + sym_compound_statement, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, - anon_sym_COMMA, - ACTIONS(4708), 1, - anon_sym_SEMI, - STATE(1834), 1, - aux_sym_declaration_repeat1, - [70682] = 4, - ACTIONS(3), 1, + [108284] = 3, + ACTIONS(463), 1, + anon_sym_LBRACE, + STATE(233), 1, + sym_compound_statement, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4586), 1, - anon_sym_COMMA, - ACTIONS(4710), 1, - anon_sym_RPAREN, - STATE(1768), 1, - aux_sym_parameter_list_repeat1, - [70695] = 4, - ACTIONS(3), 1, + [108295] = 3, + ACTIONS(3622), 1, + anon_sym_LPAREN2, + STATE(3015), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(3330), 1, - anon_sym_COMMA, - ACTIONS(4712), 1, - anon_sym_RPAREN, - STATE(1795), 1, - aux_sym_generic_expression_repeat1, - [70708] = 4, - ACTIONS(3643), 1, + [108306] = 3, + ACTIONS(3622), 1, + anon_sym_LPAREN2, + STATE(3039), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4645), 1, + [108317] = 3, + ACTIONS(3622), 1, anon_sym_LPAREN2, - ACTIONS(4714), 1, - aux_sym_preproc_include_token2, - STATE(2147), 1, - sym_preproc_argument_list, - [70721] = 4, - ACTIONS(3), 1, + STATE(3034), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, - anon_sym_COMMA, - ACTIONS(4716), 1, - anon_sym_SEMI, - STATE(1780), 1, - aux_sym_declaration_repeat1, - [70734] = 4, - ACTIONS(3), 1, + [108328] = 3, + ACTIONS(3622), 1, + anon_sym_LPAREN2, + STATE(3018), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, - anon_sym_COMMA, - ACTIONS(4718), 1, - anon_sym_SEMI, - STATE(1834), 1, - aux_sym_declaration_repeat1, - [70747] = 4, - ACTIONS(3643), 1, + [108339] = 3, + ACTIONS(3622), 1, + anon_sym_LPAREN2, + STATE(3277), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4390), 1, - aux_sym_preproc_arg_token1, - ACTIONS(4720), 1, - aux_sym_preproc_include_token2, - STATE(2045), 1, - sym_preproc_arg, - [70760] = 4, - ACTIONS(3), 1, + [108350] = 3, + ACTIONS(3622), 1, + anon_sym_LPAREN2, + STATE(3279), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4722), 1, - anon_sym_COMMA, - ACTIONS(4725), 1, - anon_sym_RPAREN, - STATE(1822), 1, - aux_sym_preproc_params_repeat1, - [70773] = 2, - ACTIONS(3), 1, + [108361] = 3, + ACTIONS(3622), 1, + anon_sym_LPAREN2, + STATE(3310), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(3318), 3, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, - [70782] = 4, - ACTIONS(3), 1, + [108372] = 3, + ACTIONS(3622), 1, + anon_sym_LPAREN2, + STATE(3322), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4691), 1, - anon_sym_COMMA, - ACTIONS(4727), 1, - anon_sym_RBRACK_RBRACK, - STATE(1855), 1, - aux_sym_attribute_declaration_repeat1, - [70795] = 4, - ACTIONS(3), 1, + [108383] = 3, + ACTIONS(393), 1, + anon_sym_LBRACE, + STATE(202), 1, + sym_compound_statement, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, - anon_sym_COMMA, - ACTIONS(4729), 1, - anon_sym_SEMI, - STATE(1830), 1, - aux_sym_declaration_repeat1, - [70808] = 4, - ACTIONS(3), 1, + [108394] = 3, + ACTIONS(3622), 1, + anon_sym_LPAREN2, + STATE(3329), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4691), 1, - anon_sym_COMMA, - ACTIONS(4731), 1, - anon_sym_RBRACK_RBRACK, - STATE(1808), 1, - aux_sym_attribute_declaration_repeat1, - [70821] = 4, - ACTIONS(3643), 1, + [108405] = 3, + ACTIONS(3622), 1, + anon_sym_LPAREN2, + STATE(3401), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4390), 1, - aux_sym_preproc_arg_token1, - ACTIONS(4733), 1, - aux_sym_preproc_include_token2, - STATE(2057), 1, - sym_preproc_arg, - [70834] = 4, - ACTIONS(3), 1, + [108416] = 3, + ACTIONS(463), 1, + anon_sym_LBRACE, + STATE(238), 1, + sym_compound_statement, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, - anon_sym_COMMA, - ACTIONS(4735), 1, - anon_sym_SEMI, - STATE(1850), 1, - aux_sym_declaration_repeat1, - [70847] = 4, - ACTIONS(3), 1, + [108427] = 3, + ACTIONS(3622), 1, + anon_sym_LPAREN2, + STATE(3403), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, - anon_sym_COMMA, - ACTIONS(4737), 1, - anon_sym_SEMI, - STATE(1834), 1, - aux_sym_declaration_repeat1, - [70860] = 4, - ACTIONS(3), 1, + [108438] = 3, + ACTIONS(3622), 1, + anon_sym_LPAREN2, + STATE(3426), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, - anon_sym_COMMA, - ACTIONS(4739), 1, - anon_sym_SEMI, - STATE(1834), 1, - aux_sym_declaration_repeat1, - [70873] = 3, - ACTIONS(3), 1, + [108449] = 3, + ACTIONS(3622), 1, + anon_sym_LPAREN2, + STATE(3447), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4741), 1, - anon_sym_EQ, - ACTIONS(4199), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [70884] = 4, - ACTIONS(3), 1, + [108460] = 3, + ACTIONS(3622), 1, + anon_sym_LPAREN2, + STATE(3457), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4586), 1, - anon_sym_COMMA, - ACTIONS(4743), 1, - anon_sym_RPAREN, - STATE(1865), 1, - aux_sym_parameter_list_repeat1, - [70897] = 4, - ACTIONS(3), 1, + [108471] = 3, + ACTIONS(3622), 1, + anon_sym_LPAREN2, + STATE(3330), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, - anon_sym_COMMA, - ACTIONS(4745), 1, - anon_sym_SEMI, - STATE(1834), 1, - aux_sym_declaration_repeat1, - [70910] = 4, - ACTIONS(3), 1, + [108482] = 3, + ACTIONS(3622), 1, + anon_sym_LPAREN2, + STATE(3233), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4747), 1, - anon_sym_COMMA, - ACTIONS(4750), 1, - anon_sym_SEMI, - STATE(1834), 1, - aux_sym_declaration_repeat1, - [70923] = 4, - ACTIONS(3), 1, + [108493] = 3, + ACTIONS(3622), 1, + anon_sym_LPAREN2, + STATE(3225), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4752), 1, - anon_sym_RPAREN, - ACTIONS(4754), 1, - anon_sym_COLON, - STATE(2251), 1, - sym_gnu_asm_goto_list, - [70936] = 4, - ACTIONS(3), 1, + [108504] = 3, + ACTIONS(3622), 1, + anon_sym_LPAREN2, + STATE(3223), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, - anon_sym_COMMA, - ACTIONS(4756), 1, - anon_sym_SEMI, - STATE(1852), 1, - aux_sym_declaration_repeat1, - [70949] = 4, - ACTIONS(3), 1, + [108515] = 3, + ACTIONS(3622), 1, + anon_sym_LPAREN2, + STATE(3218), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(3334), 1, - anon_sym_COMMA, - ACTIONS(3342), 1, - anon_sym_RPAREN, - STATE(1882), 1, - aux_sym_argument_list_repeat1, - [70962] = 4, - ACTIONS(3643), 1, + [108526] = 3, + ACTIONS(3622), 1, + anon_sym_LPAREN2, + STATE(3216), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4390), 1, - aux_sym_preproc_arg_token1, - ACTIONS(4758), 1, - aux_sym_preproc_include_token2, - STATE(2037), 1, - sym_preproc_arg, - [70975] = 4, - ACTIONS(3), 1, + [108537] = 3, + ACTIONS(3622), 1, + anon_sym_LPAREN2, + STATE(3005), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(3583), 1, - anon_sym_COMMA, - ACTIONS(4760), 1, - anon_sym_RPAREN, - STATE(1814), 1, - aux_sym_preproc_argument_list_repeat1, - [70988] = 4, - ACTIONS(3), 1, + [108548] = 3, + ACTIONS(3622), 1, + anon_sym_LPAREN2, + STATE(3158), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, - anon_sym_COMMA, - ACTIONS(4762), 1, - anon_sym_SEMI, - STATE(1813), 1, - aux_sym_declaration_repeat1, - [71001] = 4, - ACTIONS(3), 1, + [108559] = 3, + ACTIONS(3622), 1, + anon_sym_LPAREN2, + STATE(3156), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(3334), 1, - anon_sym_COMMA, - ACTIONS(3354), 1, - anon_sym_RPAREN, - STATE(1764), 1, - aux_sym_argument_list_repeat1, - [71014] = 4, - ACTIONS(3), 1, + [108570] = 3, + ACTIONS(6123), 1, + anon_sym_LPAREN2, + STATE(2877), 1, + sym_parenthesized_expression, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, + [108581] = 3, + ACTIONS(4853), 1, + anon_sym_RBRACE, + ACTIONS(6115), 1, anon_sym_COMMA, - ACTIONS(4764), 1, - anon_sym_SEMI, - STATE(1834), 1, - aux_sym_declaration_repeat1, - [71027] = 4, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, - anon_sym_COMMA, - ACTIONS(4766), 1, - anon_sym_SEMI, - STATE(1870), 1, - aux_sym_declaration_repeat1, - [71040] = 4, - ACTIONS(3), 1, + [108592] = 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, + ACTIONS(5373), 2, anon_sym_COMMA, - ACTIONS(4768), 1, anon_sym_SEMI, - STATE(1858), 1, - aux_sym_declaration_repeat1, - [71053] = 3, - ACTIONS(4770), 1, - aux_sym_preproc_include_token2, - STATE(1845), 1, - aux_sym_preproc_arg_repeat1, - ACTIONS(4772), 2, - aux_sym_preproc_arg_token2, - sym_comment, - [71064] = 4, - ACTIONS(3), 1, + [108601] = 3, + ACTIONS(6123), 1, + anon_sym_LPAREN2, + STATE(3064), 1, + sym_parenthesized_expression, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4775), 1, - anon_sym_COMMA, - ACTIONS(4777), 1, + [108612] = 3, + ACTIONS(6183), 1, anon_sym_RPAREN, - STATE(1822), 1, - aux_sym_preproc_params_repeat1, - [71077] = 4, - ACTIONS(3643), 1, + ACTIONS(6185), 1, + sym_number_literal, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4390), 1, - aux_sym_preproc_arg_token1, - ACTIONS(4779), 1, - aux_sym_preproc_include_token2, - STATE(2164), 1, - sym_preproc_arg, - [71090] = 2, - ACTIONS(3), 1, + [108623] = 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4781), 3, + ACTIONS(4156), 2, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_COLON, - [71099] = 4, - ACTIONS(3), 1, + [108632] = 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, + ACTIONS(5760), 2, anon_sym_COMMA, - ACTIONS(4783), 1, - anon_sym_SEMI, - STATE(1834), 1, - aux_sym_declaration_repeat1, - [71112] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4257), 1, - anon_sym_COMMA, - ACTIONS(4785), 1, - anon_sym_SEMI, - STATE(1834), 1, - aux_sym_declaration_repeat1, - [71125] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4257), 1, - anon_sym_COMMA, - ACTIONS(4787), 1, - anon_sym_SEMI, - STATE(1834), 1, - aux_sym_declaration_repeat1, - [71138] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + [108641] = 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, + ACTIONS(4162), 2, anon_sym_COMMA, - ACTIONS(4789), 1, - anon_sym_SEMI, - STATE(1834), 1, - aux_sym_declaration_repeat1, - [71151] = 4, - ACTIONS(3), 1, + anon_sym_RBRACE, + [108650] = 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, - anon_sym_COMMA, - ACTIONS(4791), 1, - anon_sym_SEMI, - STATE(1834), 1, - aux_sym_declaration_repeat1, - [71164] = 4, - ACTIONS(3), 1, + 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, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, - anon_sym_COMMA, - ACTIONS(4793), 1, - anon_sym_SEMI, - STATE(1761), 1, - aux_sym_declaration_repeat1, - [71177] = 4, - ACTIONS(3), 1, + [108670] = 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4691), 1, + ACTIONS(4158), 2, anon_sym_COMMA, - ACTIONS(4795), 1, - anon_sym_RBRACK_RBRACK, - STATE(1799), 1, - aux_sym_attribute_declaration_repeat1, - [71190] = 4, - ACTIONS(3), 1, + anon_sym_RBRACE, + [108679] = 3, + ACTIONS(1134), 1, + anon_sym_LBRACE, + STATE(524), 1, + sym_compound_statement, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, - anon_sym_COMMA, - ACTIONS(4797), 1, - anon_sym_SEMI, - STATE(1860), 1, - aux_sym_declaration_repeat1, - [71203] = 4, - ACTIONS(3), 1, + [108690] = 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, + ACTIONS(4152), 2, anon_sym_COMMA, - ACTIONS(4799), 1, - anon_sym_SEMI, - STATE(1834), 1, - aux_sym_declaration_repeat1, - [71216] = 4, - ACTIONS(3), 1, + anon_sym_RBRACE, + [108699] = 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, + ACTIONS(5765), 2, anon_sym_COMMA, - ACTIONS(4801), 1, - anon_sym_SEMI, - STATE(1834), 1, - aux_sym_declaration_repeat1, - [71229] = 3, - ACTIONS(3643), 1, - sym_comment, - STATE(1745), 1, - aux_sym_char_literal_repeat1, - ACTIONS(4803), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [71240] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4257), 1, + anon_sym_RPAREN, + [108708] = 3, + ACTIONS(6115), 1, anon_sym_COMMA, - ACTIONS(4805), 1, - anon_sym_SEMI, - STATE(1834), 1, - aux_sym_declaration_repeat1, - [71253] = 4, - ACTIONS(3), 1, + ACTIONS(6191), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(2406), 1, + [108719] = 3, + ACTIONS(1570), 1, anon_sym_LBRACE, - ACTIONS(4807), 1, - sym_identifier, - STATE(804), 1, - sym_field_declaration_list, - [71266] = 4, - ACTIONS(3643), 1, + STATE(2754), 1, + sym_compound_statement, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4390), 1, - aux_sym_preproc_arg_token1, - ACTIONS(4809), 1, - aux_sym_preproc_include_token2, - STATE(2073), 1, - sym_preproc_arg, - [71279] = 4, - ACTIONS(3), 1, + [108730] = 3, + ACTIONS(3622), 1, + anon_sym_LPAREN2, + STATE(3117), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4811), 1, - anon_sym_COMMA, - ACTIONS(4814), 1, - anon_sym_RPAREN, - STATE(1863), 1, - aux_sym_parameter_list_repeat1, - [71292] = 4, - ACTIONS(3), 1, + [108741] = 3, + ACTIONS(1570), 1, + anon_sym_LBRACE, + STATE(2456), 1, + sym_compound_statement, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4691), 1, - anon_sym_COMMA, - ACTIONS(4816), 1, - anon_sym_RBRACK_RBRACK, - STATE(1799), 1, - aux_sym_attribute_declaration_repeat1, - [71305] = 4, - ACTIONS(3), 1, + [108752] = 3, + ACTIONS(3622), 1, + anon_sym_LPAREN2, + STATE(2973), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4586), 1, - anon_sym_COMMA, - ACTIONS(4818), 1, - anon_sym_RPAREN, - STATE(1863), 1, - aux_sym_parameter_list_repeat1, - [71318] = 2, - ACTIONS(3), 1, + [108763] = 3, + ACTIONS(3622), 1, + anon_sym_LPAREN2, + STATE(3128), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4820), 3, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - [71327] = 4, - ACTIONS(3), 1, + [108774] = 3, + ACTIONS(3622), 1, + anon_sym_LPAREN2, + STATE(3132), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, - anon_sym_COMMA, - ACTIONS(4822), 1, - anon_sym_SEMI, - STATE(1910), 1, - aux_sym_declaration_repeat1, - [71340] = 4, - ACTIONS(3), 1, + [108785] = 3, + ACTIONS(3622), 1, + anon_sym_LPAREN2, + STATE(3141), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, - anon_sym_COMMA, - ACTIONS(4824), 1, - anon_sym_SEMI, - STATE(1834), 1, - aux_sym_declaration_repeat1, - [71353] = 4, - ACTIONS(3), 1, + [108796] = 3, + ACTIONS(6121), 1, + anon_sym_LPAREN2, + STATE(412), 1, + sym_parenthesized_expression, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(2406), 1, - anon_sym_LBRACE, - ACTIONS(4826), 1, - sym_identifier, - STATE(825), 1, - sym_field_declaration_list, - [71366] = 4, - ACTIONS(3), 1, + [108807] = 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, + ACTIONS(5385), 2, anon_sym_COMMA, - ACTIONS(4828), 1, anon_sym_SEMI, - STATE(1834), 1, - aux_sym_declaration_repeat1, - [71379] = 4, - ACTIONS(3643), 1, + [108816] = 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4390), 1, - aux_sym_preproc_arg_token1, - ACTIONS(4830), 1, - aux_sym_preproc_include_token2, - STATE(2224), 1, - sym_preproc_arg, - [71392] = 4, - ACTIONS(3643), 1, + ACTIONS(6193), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [108825] = 3, + ACTIONS(3622), 1, + anon_sym_LPAREN2, + STATE(3153), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4645), 1, + [108836] = 3, + ACTIONS(6123), 1, anon_sym_LPAREN2, - ACTIONS(4832), 1, - aux_sym_preproc_include_token2, - STATE(2147), 1, - sym_preproc_argument_list, - [71405] = 4, - ACTIONS(3), 1, + STATE(2899), 1, + sym_parenthesized_expression, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(3346), 1, - anon_sym_COMMA, - ACTIONS(3348), 1, - anon_sym_RBRACE, - STATE(1880), 1, - aux_sym_initializer_list_repeat1, - [71418] = 4, - ACTIONS(3), 1, + [108847] = 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, + ACTIONS(5926), 2, anon_sym_COMMA, - ACTIONS(4834), 1, - anon_sym_SEMI, - STATE(1851), 1, - aux_sym_declaration_repeat1, - [71431] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + [108856] = 3, + ACTIONS(6121), 1, + anon_sym_LPAREN2, + STATE(448), 1, + sym_parenthesized_expression, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, - anon_sym_COMMA, - ACTIONS(4836), 1, - anon_sym_SEMI, - STATE(1886), 1, - aux_sym_declaration_repeat1, - [71444] = 4, + [108867] = 4, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2406), 1, - anon_sym_LBRACE, - ACTIONS(4838), 1, + ACTIONS(6119), 1, sym_identifier, - STATE(812), 1, - sym_field_declaration_list, - [71457] = 4, - ACTIONS(3), 1, + STATE(2678), 1, + sym_attribute, + [108880] = 3, + ACTIONS(3622), 1, + anon_sym_LPAREN2, + STATE(3166), 1, + sym_argument_list, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(3420), 1, - anon_sym_RBRACE, - ACTIONS(4840), 1, - anon_sym_COMMA, - STATE(1877), 1, - aux_sym_initializer_list_repeat1, - [71470] = 4, - ACTIONS(3643), 1, + [108891] = 3, + ACTIONS(6196), 1, + anon_sym_RPAREN, + ACTIONS(6198), 1, + sym_number_literal, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4390), 1, - aux_sym_preproc_arg_token1, - ACTIONS(4843), 1, - aux_sym_preproc_include_token2, - STATE(2083), 1, - sym_preproc_arg, - [71483] = 4, - ACTIONS(3), 1, + [108902] = 3, + ACTIONS(6200), 1, + anon_sym_RPAREN, + ACTIONS(6202), 1, + sym_number_literal, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, - anon_sym_COMMA, - ACTIONS(4845), 1, - anon_sym_SEMI, - STATE(1915), 1, - aux_sym_declaration_repeat1, - [71496] = 4, - ACTIONS(3), 1, + [108913] = 3, + ACTIONS(49), 1, + anon_sym_LBRACE, + STATE(217), 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, - ACTIONS(2088), 1, + [108935] = 3, + ACTIONS(4875), 1, anon_sym_RBRACE, - ACTIONS(4847), 1, + ACTIONS(6115), 1, anon_sym_COMMA, - STATE(1877), 1, - aux_sym_initializer_list_repeat1, - [71509] = 4, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4775), 1, - anon_sym_COMMA, - ACTIONS(4849), 1, - anon_sym_RPAREN, - STATE(1846), 1, - aux_sym_preproc_params_repeat1, - [71522] = 4, - ACTIONS(3), 1, + [108946] = 3, + ACTIONS(1134), 1, + anon_sym_LBRACE, + STATE(494), 1, + sym_compound_statement, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(3442), 1, + [108957] = 3, + ACTIONS(6208), 1, anon_sym_RPAREN, - ACTIONS(4851), 1, - anon_sym_COMMA, - STATE(1882), 1, - aux_sym_argument_list_repeat1, - [71535] = 2, - ACTIONS(3), 1, + ACTIONS(6210), 1, + sym_number_literal, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4854), 3, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - [71544] = 4, - ACTIONS(3), 1, + [108968] = 3, + ACTIONS(1134), 1, + anon_sym_LBRACE, + STATE(481), 1, + sym_compound_statement, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, - anon_sym_COMMA, - ACTIONS(4856), 1, + [108979] = 3, + ACTIONS(49), 1, + anon_sym_LBRACE, + STATE(196), 1, + sym_compound_statement, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [108990] = 2, + ACTIONS(4160), 1, anon_sym_SEMI, - STATE(1834), 1, - aux_sym_declaration_repeat1, - [71557] = 4, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4858), 1, - anon_sym_COMMA, - ACTIONS(4861), 1, + [108998] = 2, + ACTIONS(6212), 1, + anon_sym_LPAREN2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [109006] = 2, + ACTIONS(6214), 1, anon_sym_RPAREN, - STATE(1885), 1, - aux_sym_attribute_specifier_repeat1, - [71570] = 4, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, - anon_sym_COMMA, - ACTIONS(4863), 1, - anon_sym_SEMI, - STATE(1834), 1, - aux_sym_declaration_repeat1, - [71583] = 4, - ACTIONS(3), 1, + [109014] = 2, + ACTIONS(6216), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, - anon_sym_COMMA, - ACTIONS(4865), 1, + [109022] = 2, + ACTIONS(6218), 1, anon_sym_SEMI, - STATE(1906), 1, - aux_sym_declaration_repeat1, - [71596] = 4, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, - anon_sym_COMMA, - ACTIONS(4867), 1, - anon_sym_SEMI, - STATE(1834), 1, - aux_sym_declaration_repeat1, - [71609] = 4, + [109030] = 2, + ACTIONS(6220), 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, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [109054] = 3, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(4869), 1, - anon_sym_COMMA, - ACTIONS(4872), 1, + 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, anon_sym_RPAREN, - STATE(1889), 1, - aux_sym__old_style_parameter_list_repeat1, - [71622] = 4, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4586), 1, - anon_sym_COMMA, - ACTIONS(4874), 1, + [109080] = 2, + ACTIONS(6232), 1, + aux_sym_preproc_if_token2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [109088] = 2, + ACTIONS(6234), 1, anon_sym_RPAREN, - STATE(1919), 1, - aux_sym_parameter_list_repeat1, - [71635] = 4, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, - anon_sym_COMMA, - ACTIONS(4876), 1, + [109096] = 2, + ACTIONS(6236), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [109104] = 2, + ACTIONS(6238), 1, anon_sym_SEMI, - STATE(1913), 1, - aux_sym_declaration_repeat1, - [71648] = 4, - ACTIONS(3643), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4390), 1, - aux_sym_preproc_arg_token1, - ACTIONS(4878), 1, + [109112] = 2, + ACTIONS(6240), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [109120] = 2, + ACTIONS(6242), 1, + aux_sym_preproc_if_token2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [109128] = 2, + ACTIONS(5859), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [109136] = 2, + ACTIONS(6244), 1, aux_sym_preproc_include_token2, - STATE(2072), 1, - sym_preproc_arg, - [71661] = 4, - ACTIONS(3), 1, + ACTIONS(3), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(3334), 1, - anon_sym_COMMA, - ACTIONS(3344), 1, + [109144] = 2, + ACTIONS(6246), 1, anon_sym_RPAREN, - STATE(1837), 1, - aux_sym_argument_list_repeat1, - [71674] = 4, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, - anon_sym_COMMA, - ACTIONS(4880), 1, - anon_sym_SEMI, - STATE(1834), 1, - aux_sym_declaration_repeat1, - [71687] = 4, - ACTIONS(3), 1, + [109152] = 2, + ACTIONS(6248), 1, + anon_sym_LPAREN2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, - anon_sym_COMMA, - ACTIONS(4882), 1, - anon_sym_SEMI, - STATE(1834), 1, - aux_sym_declaration_repeat1, - [71700] = 4, + [109160] = 3, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(4257), 1, - anon_sym_COMMA, - ACTIONS(4884), 1, - anon_sym_SEMI, - STATE(1834), 1, - aux_sym_declaration_repeat1, - [71713] = 4, - ACTIONS(3), 1, + ACTIONS(6250), 1, + sym_identifier, + [109170] = 2, + ACTIONS(6252), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, - anon_sym_COMMA, - ACTIONS(4886), 1, - anon_sym_SEMI, - STATE(1772), 1, - aux_sym_declaration_repeat1, - [71726] = 4, - ACTIONS(3), 1, + [109178] = 2, + ACTIONS(4044), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4662), 1, - anon_sym_COLON, - ACTIONS(4888), 1, + [109186] = 2, + ACTIONS(6254), 1, + aux_sym_preproc_include_token2, + ACTIONS(3), 2, + sym__linux_kernel_annotations, + sym_comment, + [109194] = 2, + ACTIONS(5845), 1, anon_sym_RPAREN, - STATE(1835), 1, - sym_gnu_asm_clobber_list, - [71739] = 4, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4691), 1, - anon_sym_COMMA, - ACTIONS(4890), 1, - anon_sym_RBRACK_RBRACK, - STATE(1864), 1, - aux_sym_attribute_declaration_repeat1, - [71752] = 4, + [109202] = 2, + ACTIONS(6256), 1, + aux_sym_preproc_if_token2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [109210] = 3, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(4754), 1, - anon_sym_COLON, - ACTIONS(4892), 1, + ACTIONS(6258), 1, + sym_identifier, + [109220] = 2, + ACTIONS(6260), 1, anon_sym_RPAREN, - STATE(2219), 1, - sym_gnu_asm_goto_list, - [71765] = 4, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4608), 1, - anon_sym_COLON, - ACTIONS(4894), 1, + [109228] = 2, + ACTIONS(6262), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [109236] = 2, + ACTIONS(4120), 1, anon_sym_RPAREN, - STATE(1778), 1, - sym_gnu_asm_output_operand_list, - [71778] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4898), 1, + [109244] = 2, + ACTIONS(4184), 1, anon_sym_RPAREN, - ACTIONS(4896), 2, - anon_sym_DOT_DOT_DOT, - sym_identifier, - [71789] = 4, - ACTIONS(3643), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4390), 1, - aux_sym_preproc_arg_token1, - ACTIONS(4900), 1, + [109252] = 2, + ACTIONS(4875), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [109260] = 2, + ACTIONS(6264), 1, aux_sym_preproc_include_token2, - STATE(2168), 1, - sym_preproc_arg, - [71802] = 4, - ACTIONS(3), 1, + ACTIONS(3), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, - anon_sym_COMMA, - ACTIONS(4902), 1, - anon_sym_SEMI, - STATE(1928), 1, - aux_sym_declaration_repeat1, - [71815] = 4, - ACTIONS(3), 1, + [109268] = 2, + ACTIONS(6266), 1, + sym_primitive_type, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, - anon_sym_COMMA, - ACTIONS(4904), 1, - anon_sym_SEMI, - STATE(1834), 1, - aux_sym_declaration_repeat1, - [71828] = 4, - ACTIONS(3), 1, + [109276] = 2, + ACTIONS(6268), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, - anon_sym_COMMA, - ACTIONS(4906), 1, - anon_sym_SEMI, - STATE(1834), 1, - aux_sym_declaration_repeat1, - [71841] = 4, - ACTIONS(3), 1, + [109284] = 2, + ACTIONS(6270), 1, + aux_sym_preproc_if_token2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, - anon_sym_COMMA, - ACTIONS(4908), 1, - anon_sym_SEMI, - STATE(1914), 1, - aux_sym_declaration_repeat1, - [71854] = 4, - ACTIONS(3), 1, + [109292] = 2, + ACTIONS(4112), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, - anon_sym_COMMA, - ACTIONS(4910), 1, - anon_sym_SEMI, - STATE(1931), 1, - aux_sym_declaration_repeat1, - [71867] = 4, - ACTIONS(3), 1, + [109300] = 2, + ACTIONS(6272), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, - anon_sym_COMMA, - ACTIONS(4912), 1, + [109308] = 2, + ACTIONS(6274), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [109316] = 2, + ACTIONS(6276), 1, anon_sym_SEMI, - STATE(1834), 1, - aux_sym_declaration_repeat1, - [71880] = 4, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, - anon_sym_COMMA, - ACTIONS(4914), 1, + [109324] = 2, + ACTIONS(6278), 1, anon_sym_SEMI, - STATE(1834), 1, - aux_sym_declaration_repeat1, - [71893] = 4, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, - anon_sym_COMMA, - ACTIONS(4916), 1, + [109332] = 2, + ACTIONS(6280), 1, anon_sym_SEMI, - STATE(1834), 1, - aux_sym_declaration_repeat1, - [71906] = 4, - ACTIONS(3643), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4645), 1, - anon_sym_LPAREN2, - ACTIONS(4918), 1, + [109340] = 2, + ACTIONS(4114), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [109348] = 2, + ACTIONS(6117), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [109356] = 2, + ACTIONS(6282), 1, aux_sym_preproc_include_token2, - STATE(2147), 1, - sym_preproc_argument_list, - [71919] = 4, - ACTIONS(3), 1, + ACTIONS(3), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, - anon_sym_COMMA, - ACTIONS(4920), 1, - anon_sym_SEMI, - STATE(1834), 1, - aux_sym_declaration_repeat1, - [71932] = 4, - ACTIONS(3), 1, + [109364] = 2, + ACTIONS(4108), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, - anon_sym_COMMA, - ACTIONS(4922), 1, - anon_sym_SEMI, - STATE(1834), 1, - aux_sym_declaration_repeat1, - [71945] = 4, - ACTIONS(3), 1, + [109372] = 2, + ACTIONS(5791), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, - anon_sym_COMMA, - ACTIONS(4924), 1, - anon_sym_SEMI, - STATE(1834), 1, - aux_sym_declaration_repeat1, - [71958] = 4, - ACTIONS(3), 1, + [109380] = 2, + ACTIONS(6284), 1, + aux_sym_preproc_include_token2, + ACTIONS(3), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, - anon_sym_COMMA, - ACTIONS(4926), 1, - anon_sym_SEMI, - STATE(1834), 1, - aux_sym_declaration_repeat1, - [71971] = 4, - ACTIONS(3), 1, + [109388] = 2, + ACTIONS(6286), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(3583), 1, - anon_sym_COMMA, - ACTIONS(4928), 1, + [109396] = 2, + ACTIONS(6288), 1, anon_sym_RPAREN, - STATE(1814), 1, - aux_sym_preproc_argument_list_repeat1, - [71984] = 4, - ACTIONS(3643), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4390), 1, - aux_sym_preproc_arg_token1, - ACTIONS(4930), 1, - aux_sym_preproc_include_token2, - STATE(2136), 1, - sym_preproc_arg, - [71997] = 4, - ACTIONS(3), 1, + [109404] = 2, + ACTIONS(6290), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4586), 1, - anon_sym_COMMA, - ACTIONS(4932), 1, + [109412] = 2, + ACTIONS(5787), 1, anon_sym_RPAREN, - STATE(1863), 1, - aux_sym_parameter_list_repeat1, - [72010] = 4, - ACTIONS(3643), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4390), 1, - aux_sym_preproc_arg_token1, - ACTIONS(4934), 1, - aux_sym_preproc_include_token2, - STATE(2097), 1, - sym_preproc_arg, - [72023] = 4, - ACTIONS(3643), 1, + [109420] = 2, + ACTIONS(6292), 1, + aux_sym_preproc_if_token2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4390), 1, - aux_sym_preproc_arg_token1, - ACTIONS(4936), 1, - aux_sym_preproc_include_token2, - STATE(2100), 1, - sym_preproc_arg, - [72036] = 4, - ACTIONS(3), 1, + [109428] = 2, + ACTIONS(6294), 1, + aux_sym_preproc_if_token2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, - anon_sym_COMMA, - ACTIONS(4938), 1, - anon_sym_SEMI, - STATE(1834), 1, - aux_sym_declaration_repeat1, - [72049] = 4, - ACTIONS(3), 1, + [109436] = 2, + ACTIONS(4128), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, - anon_sym_COMMA, - ACTIONS(4940), 1, - anon_sym_SEMI, - STATE(1833), 1, - aux_sym_declaration_repeat1, - [72062] = 3, - ACTIONS(4942), 1, - aux_sym_preproc_include_token2, - STATE(1845), 1, - aux_sym_preproc_arg_repeat1, - ACTIONS(4944), 2, - aux_sym_preproc_arg_token2, + [109444] = 2, + ACTIONS(5777), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - [72073] = 4, - ACTIONS(3), 1, + [109452] = 2, + ACTIONS(6296), 1, + aux_sym_preproc_if_token2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, - anon_sym_COMMA, - ACTIONS(4946), 1, - anon_sym_SEMI, - STATE(1834), 1, - aux_sym_declaration_repeat1, - [72086] = 3, - ACTIONS(3643), 1, + [109460] = 2, + ACTIONS(6298), 1, + aux_sym_preproc_if_token2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - STATE(1750), 1, - aux_sym_char_literal_repeat1, - ACTIONS(4948), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [72097] = 4, + [109468] = 2, + ACTIONS(6300), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [109476] = 3, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2948), 1, - anon_sym_LBRACE, - ACTIONS(4950), 1, + ACTIONS(6302), 1, sym_identifier, - STATE(1102), 1, - sym_enumerator_list, - [72110] = 4, + [109486] = 3, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(4257), 1, - anon_sym_COMMA, - ACTIONS(4952), 1, - anon_sym_SEMI, - STATE(1834), 1, - aux_sym_declaration_repeat1, - [72123] = 4, - ACTIONS(3), 1, + ACTIONS(6304), 1, + sym_identifier, + [109496] = 2, + ACTIONS(6306), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, - anon_sym_COMMA, - ACTIONS(4954), 1, - anon_sym_SEMI, - STATE(1922), 1, - aux_sym_declaration_repeat1, - [72136] = 4, - ACTIONS(3), 1, + [109504] = 2, + ACTIONS(6308), 1, + anon_sym_LPAREN2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, - anon_sym_COMMA, - ACTIONS(4956), 1, - anon_sym_SEMI, - STATE(1834), 1, - aux_sym_declaration_repeat1, - [72149] = 4, - ACTIONS(3), 1, + [109512] = 2, + ACTIONS(6310), 1, + anon_sym_LPAREN2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4257), 1, - anon_sym_COMMA, - ACTIONS(4958), 1, - anon_sym_SEMI, - STATE(1834), 1, - aux_sym_declaration_repeat1, - [72162] = 4, - ACTIONS(3), 1, + [109520] = 2, + ACTIONS(6312), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4614), 1, - anon_sym_COLON, - ACTIONS(4960), 1, + [109528] = 2, + ACTIONS(6314), 1, anon_sym_RPAREN, - STATE(1898), 1, - sym_gnu_asm_input_operand_list, - [72175] = 4, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4562), 1, - anon_sym_COMMA, - ACTIONS(4962), 1, + [109536] = 2, + ACTIONS(6316), 1, + anon_sym_SEMI, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [109544] = 2, + ACTIONS(6318), 1, + aux_sym_preproc_if_token2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [109552] = 2, + ACTIONS(6320), 1, anon_sym_RPAREN, - STATE(1756), 1, - aux_sym_attribute_specifier_repeat1, - [72188] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4964), 1, - anon_sym_LPAREN2, - STATE(411), 1, - sym_parenthesized_expression, - [72198] = 3, + [109560] = 3, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(4964), 1, - anon_sym_LPAREN2, - STATE(419), 1, - sym_parenthesized_expression, - [72208] = 3, - ACTIONS(3), 1, + ACTIONS(6322), 1, + sym_identifier, + [109570] = 2, + ACTIONS(6324), 1, + aux_sym_preproc_include_token2, + ACTIONS(3), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4964), 1, + [109578] = 2, + ACTIONS(6326), 1, anon_sym_LPAREN2, - STATE(408), 1, - sym_parenthesized_expression, - [72218] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4966), 1, + [109586] = 2, + ACTIONS(6328), 1, anon_sym_LPAREN2, - STATE(1955), 1, - sym_parenthesized_expression, - [72228] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(47), 1, - anon_sym_LBRACE, - STATE(184), 1, - sym_compound_statement, - [72238] = 3, - ACTIONS(3), 1, + [109594] = 2, + ACTIONS(6330), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4964), 1, + [109602] = 2, + ACTIONS(6332), 1, anon_sym_LPAREN2, - STATE(424), 1, - sym_parenthesized_expression, - [72248] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4968), 1, - sym_identifier, - STATE(1899), 1, - sym_attribute, - [72258] = 3, - ACTIONS(3), 1, + [109610] = 2, + ACTIONS(6334), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(47), 1, - anon_sym_LBRACE, - STATE(1725), 1, - sym_compound_statement, - [72268] = 3, - ACTIONS(3), 1, + [109618] = 2, + ACTIONS(5930), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(2486), 1, - anon_sym_LPAREN2, - STATE(2187), 1, - sym_argument_list, - [72278] = 3, - ACTIONS(3), 1, + [109626] = 2, + ACTIONS(6336), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(2486), 1, - anon_sym_LPAREN2, - STATE(2171), 1, - sym_argument_list, - [72288] = 3, - ACTIONS(3), 1, + [109634] = 2, + ACTIONS(6338), 1, + aux_sym_preproc_include_token2, + ACTIONS(3), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(2486), 1, - anon_sym_LPAREN2, - STATE(2189), 1, - sym_argument_list, - [72298] = 3, + [109642] = 3, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2486), 1, - anon_sym_LPAREN2, - STATE(2193), 1, - sym_argument_list, - [72308] = 3, - ACTIONS(3), 1, + ACTIONS(6340), 1, + sym_identifier, + [109652] = 2, + ACTIONS(6342), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(2486), 1, - anon_sym_LPAREN2, - STATE(2169), 1, - sym_argument_list, - [72318] = 3, - ACTIONS(3), 1, + [109660] = 2, + ACTIONS(6344), 1, + aux_sym_preproc_if_token2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4970), 1, - sym_identifier, - ACTIONS(4972), 1, - anon_sym_LPAREN2, - [72328] = 3, - ACTIONS(3), 1, + [109668] = 2, + ACTIONS(6346), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(2486), 1, - anon_sym_LPAREN2, - STATE(2122), 1, - sym_argument_list, - [72338] = 3, - ACTIONS(3), 1, + [109676] = 2, + ACTIONS(6348), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(2486), 1, - anon_sym_LPAREN2, - STATE(2206), 1, - sym_argument_list, - [72348] = 3, - ACTIONS(3), 1, + [109684] = 2, + ACTIONS(6350), 1, + aux_sym_preproc_if_token2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(2486), 1, - anon_sym_LPAREN2, - STATE(2126), 1, - sym_argument_list, - [72358] = 3, - ACTIONS(3), 1, + [109692] = 2, + ACTIONS(6352), 1, + aux_sym_preproc_if_token2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(2486), 1, - anon_sym_LPAREN2, - STATE(2209), 1, - sym_argument_list, - [72368] = 3, - ACTIONS(3), 1, + [109700] = 2, + ACTIONS(6354), 1, + aux_sym_preproc_if_token2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4966), 1, - anon_sym_LPAREN2, - STATE(2249), 1, - sym_parenthesized_expression, - [72378] = 3, + [109708] = 3, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(47), 1, - anon_sym_LBRACE, - STATE(223), 1, - sym_compound_statement, - [72388] = 2, - ACTIONS(3), 1, + ACTIONS(6356), 1, + sym_identifier, + [109718] = 2, + ACTIONS(6358), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4872), 2, + [109726] = 2, + ACTIONS(5146), 1, anon_sym_COMMA, - anon_sym_RPAREN, - [72396] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(391), 1, - anon_sym_LBRACE, - STATE(266), 1, - sym_compound_statement, - [72406] = 3, - ACTIONS(3), 1, + [109734] = 2, + ACTIONS(6360), 1, + aux_sym_preproc_if_token2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(391), 1, - anon_sym_LBRACE, - STATE(252), 1, - sym_compound_statement, - [72416] = 2, + [109742] = 3, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(4974), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [72424] = 2, - ACTIONS(3), 1, + ACTIONS(6362), 1, + sym_identifier, + [109752] = 2, + ACTIONS(6364), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4976), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [72432] = 2, - ACTIONS(3), 1, + [109760] = 2, + ACTIONS(6366), 1, + aux_sym_preproc_if_token2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4384), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [72440] = 3, - ACTIONS(3), 1, + [109768] = 2, + ACTIONS(6368), 1, + aux_sym_preproc_if_token2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4966), 1, - anon_sym_LPAREN2, - STATE(2027), 1, - sym_parenthesized_expression, - [72450] = 2, - ACTIONS(3), 1, + [109776] = 2, + ACTIONS(4118), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4861), 2, - anon_sym_COMMA, + [109784] = 2, + ACTIONS(6370), 1, anon_sym_RPAREN, - [72458] = 3, - ACTIONS(3643), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4979), 1, - aux_sym_preproc_include_token2, - ACTIONS(4981), 1, - aux_sym_preproc_arg_token1, - [72468] = 3, - ACTIONS(3), 1, + [109792] = 2, + ACTIONS(6191), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4966), 1, - anon_sym_LPAREN2, - STATE(2296), 1, - sym_parenthesized_expression, - [72478] = 2, - ACTIONS(3), 1, + [109800] = 2, + ACTIONS(6372), 1, + anon_sym_SEMI, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(3422), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [72486] = 3, - ACTIONS(3), 1, + [109808] = 2, + ACTIONS(6374), 1, + aux_sym_preproc_if_token2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(2486), 1, - anon_sym_LPAREN2, - STATE(2098), 1, - sym_argument_list, - [72496] = 3, - ACTIONS(3), 1, + [109816] = 2, + ACTIONS(6376), 1, + aux_sym_preproc_if_token2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(47), 1, - anon_sym_LBRACE, - STATE(162), 1, - sym_compound_statement, - [72506] = 3, - ACTIONS(3), 1, + [109824] = 2, + ACTIONS(6378), 1, + anon_sym_SEMI, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(2486), 1, - anon_sym_LPAREN2, - STATE(2238), 1, - sym_argument_list, - [72516] = 3, - ACTIONS(3), 1, + [109832] = 2, + ACTIONS(4150), 1, + anon_sym_SEMI, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4968), 1, - sym_identifier, - STATE(1824), 1, - sym_attribute, - [72526] = 3, - ACTIONS(3), 1, + [109840] = 2, + ACTIONS(6380), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4964), 1, - anon_sym_LPAREN2, - STATE(434), 1, - sym_parenthesized_expression, - [72536] = 3, - ACTIONS(3), 1, + [109848] = 2, + ACTIONS(6382), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [109856] = 2, + ACTIONS(4551), 1, + aux_sym_preproc_include_token2, + ACTIONS(3), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4966), 1, - anon_sym_LPAREN2, - STATE(1991), 1, - sym_parenthesized_expression, - [72546] = 3, + [109864] = 3, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(4964), 1, - anon_sym_LPAREN2, - STATE(432), 1, - sym_parenthesized_expression, - [72556] = 3, - ACTIONS(3), 1, + ACTIONS(6384), 1, + sym_identifier, + [109874] = 2, + ACTIONS(6386), 1, + anon_sym_SEMI, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(2486), 1, - anon_sym_LPAREN2, - STATE(2241), 1, - sym_argument_list, - [72566] = 3, - ACTIONS(3), 1, + [109882] = 2, + ACTIONS(6388), 1, + anon_sym_SEMI, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(2486), 1, - anon_sym_LPAREN2, - STATE(2242), 1, - sym_argument_list, - [72576] = 3, - ACTIONS(3), 1, + [109890] = 2, + ACTIONS(6390), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(47), 1, - anon_sym_LBRACE, - STATE(1721), 1, - sym_compound_statement, - [72586] = 3, + [109898] = 3, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(2486), 1, - anon_sym_LPAREN2, - STATE(2061), 1, - sym_argument_list, - [72596] = 3, - ACTIONS(3), 1, + ACTIONS(6392), 1, + sym_identifier, + [109908] = 2, + ACTIONS(4146), 1, + anon_sym_SEMI, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(2486), 1, - anon_sym_LPAREN2, - STATE(2135), 1, - sym_argument_list, - [72606] = 3, - ACTIONS(3), 1, + [109916] = 2, + ACTIONS(6394), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(455), 1, - anon_sym_LBRACE, - STATE(221), 1, - sym_compound_statement, - [72616] = 3, - ACTIONS(3), 1, + [109924] = 2, + ACTIONS(6396), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(455), 1, - anon_sym_LBRACE, - STATE(273), 1, - sym_compound_statement, - [72626] = 3, - ACTIONS(3), 1, + [109932] = 2, + ACTIONS(6398), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(2486), 1, - anon_sym_LPAREN2, - STATE(2244), 1, - sym_argument_list, - [72636] = 2, - ACTIONS(3), 1, + [109940] = 2, + ACTIONS(6400), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(3420), 2, - anon_sym_COMMA, + [109948] = 2, + ACTIONS(6402), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [109956] = 2, + ACTIONS(6404), 1, + aux_sym_preproc_if_token2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [109964] = 2, + ACTIONS(4014), 1, anon_sym_RBRACE, - [72644] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4983), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [72652] = 2, - ACTIONS(3), 1, + [109972] = 2, + ACTIONS(6406), 1, + sym_primitive_type, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(3416), 2, - anon_sym_COMMA, + [109980] = 2, + ACTIONS(4853), 1, anon_sym_RBRACE, - [72660] = 3, - ACTIONS(3643), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4985), 1, + [109988] = 2, + ACTIONS(6408), 1, aux_sym_preproc_include_token2, - ACTIONS(4987), 1, - aux_sym_preproc_arg_token1, - [72670] = 3, - ACTIONS(3), 1, + ACTIONS(3), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(2486), 1, + [109996] = 2, + ACTIONS(4228), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [110004] = 2, + ACTIONS(6410), 1, anon_sym_LPAREN2, - STATE(2137), 1, - sym_argument_list, - [72680] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4009), 1, + [110012] = 2, + ACTIONS(6412), 1, anon_sym_RBRACE, - ACTIONS(4989), 1, - anon_sym_COMMA, - [72690] = 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [110020] = 3, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(4991), 2, - anon_sym_DOT_DOT_DOT, + ACTIONS(6414), 1, sym_identifier, - [72698] = 3, - ACTIONS(3), 1, + [110030] = 2, + ACTIONS(6416), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4966), 1, - anon_sym_LPAREN2, - STATE(2152), 1, - sym_parenthesized_expression, - [72708] = 3, + [110038] = 2, + ACTIONS(6418), 1, + aux_sym_preproc_if_token2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [110046] = 2, + ACTIONS(6420), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [110054] = 3, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(4993), 1, + ACTIONS(6422), 1, sym_identifier, - ACTIONS(4995), 1, + [110064] = 2, + ACTIONS(6424), 1, anon_sym_RPAREN, - [72718] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4382), 2, - anon_sym_COMMA, + [110072] = 2, + ACTIONS(4106), 1, anon_sym_SEMI, - [72726] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(455), 1, - anon_sym_LBRACE, - STATE(256), 1, - sym_compound_statement, - [72736] = 3, - ACTIONS(3), 1, + [110080] = 2, + ACTIONS(4096), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(137), 1, - anon_sym_LBRACE, - STATE(112), 1, - sym_compound_statement, - [72746] = 3, - ACTIONS(3), 1, + [110088] = 2, + ACTIONS(4116), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4966), 1, - anon_sym_LPAREN2, - STATE(1938), 1, - sym_parenthesized_expression, - [72756] = 2, - ACTIONS(3), 1, + [110096] = 2, + ACTIONS(6426), 1, + aux_sym_preproc_if_token2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4997), 2, - anon_sym_COMMA, + [110104] = 2, + ACTIONS(6428), 1, anon_sym_SEMI, - [72764] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(47), 1, - anon_sym_LBRACE, - STATE(1742), 1, - sym_compound_statement, - [72774] = 3, - ACTIONS(3), 1, + [110112] = 2, + ACTIONS(6430), 1, + anon_sym_SEMI, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4966), 1, - anon_sym_LPAREN2, - STATE(1977), 1, - sym_parenthesized_expression, - [72784] = 3, - ACTIONS(3), 1, + [110120] = 2, + ACTIONS(6432), 1, + aux_sym_preproc_if_token2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [110128] = 2, + ACTIONS(6434), 1, + aux_sym_preproc_if_token2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4999), 1, + [110136] = 2, + ACTIONS(6436), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [110144] = 2, + ACTIONS(6438), 1, anon_sym_RPAREN, - ACTIONS(5001), 1, - sym_number_literal, - [72794] = 3, - ACTIONS(3643), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5003), 1, - aux_sym_preproc_include_token2, - ACTIONS(5005), 1, - aux_sym_preproc_arg_token1, - [72804] = 2, - ACTIONS(3), 1, + [110152] = 2, + ACTIONS(6440), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4725), 2, - anon_sym_COMMA, + [110160] = 2, + ACTIONS(6442), 1, anon_sym_RPAREN, - [72812] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(47), 1, - anon_sym_LBRACE, - STATE(1723), 1, - sym_compound_statement, - [72822] = 3, - ACTIONS(3), 1, + [110168] = 2, + ACTIONS(6444), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(2486), 1, - anon_sym_LPAREN2, - STATE(2032), 1, - sym_argument_list, - [72832] = 3, - ACTIONS(3), 1, + [110176] = 2, + ACTIONS(6446), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(2486), 1, + [110184] = 2, + ACTIONS(6448), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [110192] = 2, + ACTIONS(6450), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [110200] = 2, + ACTIONS(6452), 1, anon_sym_LPAREN2, - STATE(2257), 1, - sym_argument_list, - [72842] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(47), 1, - anon_sym_LBRACE, - STATE(231), 1, - sym_compound_statement, - [72852] = 2, - ACTIONS(3), 1, + [110208] = 2, + ACTIONS(6454), 1, + aux_sym_preproc_if_token2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(3396), 2, - anon_sym_COMMA, + [110216] = 2, + ACTIONS(6456), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [110224] = 2, + ACTIONS(4098), 1, anon_sym_SEMI, - [72860] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4966), 1, - anon_sym_LPAREN2, - STATE(2034), 1, - sym_parenthesized_expression, - [72870] = 3, - ACTIONS(3), 1, + [110232] = 2, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4966), 1, - anon_sym_LPAREN2, - STATE(2017), 1, - sym_parenthesized_expression, - [72880] = 2, - ACTIONS(3), 1, + [110240] = 2, + ACTIONS(6460), 1, + aux_sym_preproc_if_token2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4814), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [72888] = 3, - ACTIONS(3), 1, + [110248] = 2, + ACTIONS(6462), 1, + anon_sym_SEMI, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4964), 1, + [110256] = 2, + ACTIONS(6464), 1, anon_sym_LPAREN2, - STATE(413), 1, - sym_parenthesized_expression, - [72898] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4964), 1, + [110264] = 2, + ACTIONS(6466), 1, anon_sym_LPAREN2, - STATE(441), 1, - sym_parenthesized_expression, - [72908] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4966), 1, + [110272] = 2, + ACTIONS(6468), 1, anon_sym_LPAREN2, - STATE(1978), 1, - sym_parenthesized_expression, - [72918] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4968), 1, - sym_identifier, - STATE(2011), 1, - sym_attribute, - [72928] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4671), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [72936] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4966), 1, + [110280] = 2, + ACTIONS(6470), 1, anon_sym_LPAREN2, - STATE(1956), 1, - sym_parenthesized_expression, - [72946] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(391), 1, - anon_sym_LBRACE, - STATE(231), 1, - sym_compound_statement, - [72956] = 2, - ACTIONS(3), 1, + [110288] = 2, + ACTIONS(6472), 1, + anon_sym_SEMI, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5007), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [72964] = 3, - ACTIONS(3), 1, + [110296] = 2, + ACTIONS(6474), 1, + anon_sym_LPAREN2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4989), 1, - anon_sym_COMMA, - ACTIONS(5009), 1, - anon_sym_RBRACE, - [72974] = 3, - ACTIONS(3), 1, + [110304] = 2, + ACTIONS(6476), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(137), 1, - anon_sym_LBRACE, - STATE(83), 1, - sym_compound_statement, - [72984] = 3, - ACTIONS(3), 1, + [110312] = 2, + ACTIONS(6478), 1, + anon_sym_SEMI, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(137), 1, - anon_sym_LBRACE, - STATE(109), 1, - sym_compound_statement, - [72994] = 3, - ACTIONS(3), 1, + [110320] = 2, + ACTIONS(6480), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5011), 1, - sym_identifier, - ACTIONS(5013), 1, - anon_sym_LPAREN2, - [73004] = 3, - ACTIONS(3), 1, + [110328] = 2, + ACTIONS(6482), 1, + anon_sym_SEMI, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(2486), 1, - anon_sym_LPAREN2, - STATE(2094), 1, - sym_argument_list, - [73014] = 3, - ACTIONS(3), 1, + [110336] = 2, + ACTIONS(6484), 1, + aux_sym_preproc_if_token2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(47), 1, - anon_sym_LBRACE, - STATE(1755), 1, - sym_compound_statement, - [73024] = 2, + [110344] = 3, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(5015), 2, + ACTIONS(6486), 1, + sym_identifier, + [110354] = 2, + ACTIONS(6115), 1, anon_sym_COMMA, - anon_sym_RPAREN, - [73032] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4964), 1, - anon_sym_LPAREN2, - STATE(410), 1, - sym_parenthesized_expression, - [73042] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4966), 1, - anon_sym_LPAREN2, - STATE(1966), 1, - sym_parenthesized_expression, - [73052] = 3, + [110362] = 3, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(4964), 1, - anon_sym_LPAREN2, - STATE(409), 1, - sym_parenthesized_expression, - [73062] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4968), 1, + ACTIONS(6488), 1, sym_identifier, - STATE(1826), 1, - sym_attribute, - [73072] = 2, - ACTIONS(3), 1, + [110372] = 2, + ACTIONS(6490), 1, + aux_sym_preproc_if_token2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4400), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [73080] = 3, - ACTIONS(3), 1, + [110380] = 2, + ACTIONS(6492), 1, + aux_sym_preproc_if_token2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(47), 1, - anon_sym_LBRACE, - STATE(252), 1, - sym_compound_statement, - [73090] = 2, + [110388] = 3, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3442), 2, - anon_sym_COMMA, + ACTIONS(6494), 1, + sym_identifier, + [110398] = 2, + ACTIONS(6496), 1, anon_sym_RPAREN, - [73098] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [110406] = 2, + ACTIONS(4176), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5017), 1, + [110414] = 2, + ACTIONS(6498), 1, anon_sym_SEMI, - [73105] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5019), 1, + [110422] = 2, + ACTIONS(4050), 1, anon_sym_RBRACE, - [73112] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5021), 1, - sym_identifier, - [73119] = 2, - ACTIONS(3), 1, + [110430] = 2, + ACTIONS(6500), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4962), 1, + [110438] = 2, + ACTIONS(6502), 1, anon_sym_RPAREN, - [73126] = 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [110446] = 3, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(5023), 1, + ACTIONS(6504), 1, sym_identifier, - [73133] = 2, + [110456] = 3, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(5025), 1, - anon_sym_SEMI, - [73140] = 2, + ACTIONS(6506), 1, + sym_identifier, + [110466] = 3, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(5027), 1, - aux_sym_preproc_if_token2, - [73147] = 2, - ACTIONS(3), 1, + ACTIONS(6508), 1, + sym_identifier, + [110476] = 2, + ACTIONS(6510), 1, + aux_sym_preproc_include_token2, + ACTIONS(3), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5029), 1, - aux_sym_preproc_if_token2, - [73154] = 2, - ACTIONS(3643), 1, + [110484] = 2, + ACTIONS(5696), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5031), 1, - aux_sym_preproc_include_token2, - [73161] = 2, - ACTIONS(3236), 1, - aux_sym_preproc_include_token2, - ACTIONS(3643), 1, + [110492] = 2, + ACTIONS(6512), 1, + anon_sym_LPAREN2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - [73168] = 2, - ACTIONS(3), 1, + [110500] = 2, + ACTIONS(4164), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5033), 1, + [110508] = 2, + ACTIONS(6514), 1, anon_sym_RPAREN, - [73175] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(3348), 1, - anon_sym_RBRACE, - [73182] = 2, - ACTIONS(3), 1, + [110516] = 2, + ACTIONS(6516), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5035), 1, - anon_sym_LPAREN2, - [73189] = 2, - ACTIONS(3), 1, + [110524] = 2, + ACTIONS(6518), 1, + aux_sym_preproc_if_token2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5037), 1, - anon_sym_COLON, - [73196] = 2, - ACTIONS(3), 1, + [110532] = 2, + ACTIONS(4100), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5039), 1, - anon_sym_STAR, - [73203] = 2, + [110540] = 3, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(5041), 1, + ACTIONS(6520), 1, sym_identifier, - [73210] = 2, - ACTIONS(3643), 1, - sym_comment, - ACTIONS(5043), 1, + [110550] = 2, + ACTIONS(6522), 1, aux_sym_preproc_include_token2, - [73217] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5045), 1, - anon_sym_COLON, - [73224] = 2, - ACTIONS(3), 1, + [110558] = 2, + ACTIONS(6524), 1, + aux_sym_preproc_if_token2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5047), 1, + [110566] = 2, + ACTIONS(6526), 1, + aux_sym_preproc_if_token2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [110574] = 2, + ACTIONS(6528), 1, anon_sym_RPAREN, - [73231] = 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [110582] = 2, + ACTIONS(6530), 1, + anon_sym_LPAREN2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [110590] = 3, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(5049), 1, + ACTIONS(6532), 1, + sym_identifier, + [110600] = 2, + ACTIONS(4212), 1, anon_sym_RPAREN, - [73238] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(3438), 1, + [110608] = 2, + ACTIONS(6534), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [110616] = 2, + ACTIONS(6536), 1, anon_sym_SEMI, - [73245] = 2, - ACTIONS(3643), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5051), 1, + [110624] = 2, + ACTIONS(4511), 1, aux_sym_preproc_include_token2, - [73252] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5053), 1, + [110632] = 2, + ACTIONS(6538), 1, anon_sym_RPAREN, - [73259] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5055), 1, - aux_sym_preproc_if_token2, - [73266] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5057), 1, + [110640] = 2, + ACTIONS(6540), 1, aux_sym_preproc_if_token2, - [73273] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(3456), 1, + [110648] = 2, + ACTIONS(6542), 1, anon_sym_RPAREN, - [73280] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(3436), 1, - anon_sym_RPAREN, - [73287] = 2, - ACTIONS(3), 1, + [110656] = 2, + ACTIONS(5993), 1, + aux_sym_preproc_include_token2, + ACTIONS(3), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(3434), 1, + [110664] = 2, + ACTIONS(5991), 1, anon_sym_RPAREN, - [73294] = 2, - ACTIONS(3643), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5059), 1, + [110672] = 2, + ACTIONS(6544), 1, aux_sym_preproc_include_token2, - [73301] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5061), 1, - sym_identifier, - [73308] = 2, + [110680] = 2, + ACTIONS(6546), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [110688] = 3, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(5063), 1, + ACTIONS(6548), 1, + sym_identifier, + [110698] = 2, + ACTIONS(6550), 1, aux_sym_preproc_if_token2, - [73315] = 2, - ACTIONS(3643), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5065), 1, - aux_sym_preproc_include_token2, - [73322] = 2, + [110706] = 3, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(5067), 1, + ACTIONS(6552), 1, + sym_identifier, + [110716] = 2, + ACTIONS(6554), 1, anon_sym_RPAREN, - [73329] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5069), 1, - anon_sym_SEMI, - [73336] = 2, - ACTIONS(3), 1, + [110724] = 2, + ACTIONS(6556), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(3446), 1, + [110732] = 2, + ACTIONS(6558), 1, anon_sym_SEMI, - [73343] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4009), 1, - anon_sym_RBRACE, - [73350] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5071), 1, - anon_sym_LPAREN2, - [73357] = 2, - ACTIONS(3), 1, + [110740] = 2, + ACTIONS(4170), 1, + anon_sym_SEMI, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5073), 1, - sym_primitive_type, - [73364] = 2, + [110748] = 3, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3440), 1, + ACTIONS(6560), 1, + sym_identifier, + [110758] = 2, + ACTIONS(4166), 1, anon_sym_SEMI, - [73371] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5075), 1, - sym_identifier, - [73378] = 2, - ACTIONS(3), 1, + [110766] = 2, + ACTIONS(4168), 1, + anon_sym_SEMI, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5077), 1, + [110774] = 2, + ACTIONS(6562), 1, anon_sym_SEMI, - [73385] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5079), 1, + [110782] = 2, + ACTIONS(6564), 1, anon_sym_LPAREN2, - [73392] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5081), 1, - anon_sym_RPAREN, - [73399] = 2, - ACTIONS(3643), 1, + [110790] = 2, + ACTIONS(6566), 1, + aux_sym_preproc_include_token2, + ACTIONS(3), 2, + sym__linux_kernel_annotations, + sym_comment, + [110798] = 2, + ACTIONS(6149), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5083), 1, + [110806] = 2, + ACTIONS(6568), 1, aux_sym_preproc_include_token2, - [73406] = 2, - ACTIONS(3643), 1, + ACTIONS(3), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5085), 1, + [110814] = 2, + ACTIONS(5997), 1, aux_sym_preproc_include_token2, - [73413] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5087), 1, - anon_sym_LPAREN2, - [73420] = 2, + [110822] = 3, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(5089), 1, + ACTIONS(6570), 1, + sym_identifier, + [110832] = 2, + ACTIONS(6572), 1, anon_sym_LPAREN2, - [73427] = 2, - ACTIONS(3643), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4832), 1, - aux_sym_preproc_include_token2, - [73434] = 2, - ACTIONS(3643), 1, + [110840] = 2, + ACTIONS(4104), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5091), 1, - aux_sym_preproc_include_token2, - [73441] = 2, - ACTIONS(3), 1, + [110848] = 2, + ACTIONS(6574), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5093), 1, - anon_sym_LPAREN2, - [73448] = 2, - ACTIONS(3), 1, + [110856] = 2, + ACTIONS(6576), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5095), 1, - aux_sym_preproc_if_token2, - [73455] = 2, - ACTIONS(3), 1, + [110864] = 2, + ACTIONS(6578), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5097), 1, + [110872] = 2, + ACTIONS(6580), 1, anon_sym_RPAREN, - [73462] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5099), 1, + [110880] = 2, + ACTIONS(6582), 1, anon_sym_SEMI, - [73469] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5101), 1, + [110888] = 2, + ACTIONS(4102), 1, anon_sym_SEMI, - [73476] = 2, - ACTIONS(3643), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5103), 1, - aux_sym_preproc_include_token2, - [73483] = 2, - ACTIONS(3), 1, + [110896] = 2, + ACTIONS(6584), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(3432), 1, - anon_sym_SEMI, - [73490] = 2, - ACTIONS(3), 1, + [110904] = 2, + ACTIONS(6586), 1, + aux_sym_preproc_if_token2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5105), 1, - anon_sym_COLON, - [73497] = 2, - ACTIONS(3), 1, + [110912] = 2, + ACTIONS(6588), 1, + aux_sym_preproc_if_token2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5107), 1, + [110920] = 2, + ACTIONS(6590), 1, aux_sym_preproc_if_token2, - [73504] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5109), 1, - anon_sym_RPAREN, - [73511] = 2, - ACTIONS(3), 1, + [110928] = 2, + ACTIONS(6592), 1, + anon_sym_LPAREN2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5111), 1, - anon_sym_RPAREN, - [73518] = 2, - ACTIONS(3), 1, + [110936] = 2, + ACTIONS(4126), 1, + anon_sym_SEMI, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5113), 1, - anon_sym_COMMA, - [73525] = 2, - ACTIONS(3), 1, + [110944] = 2, + ACTIONS(6594), 1, + aux_sym_preproc_if_token2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5115), 1, - anon_sym_LPAREN2, - [73532] = 2, + [110952] = 2, + ACTIONS(6596), 1, + anon_sym_SEMI, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [110960] = 2, + ACTIONS(6598), 1, + anon_sym_SEMI, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [110968] = 3, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(5117), 1, + ACTIONS(6600), 1, + sym_identifier, + [110978] = 2, + ACTIONS(6602), 1, anon_sym_LPAREN2, - [73539] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5119), 1, + [110986] = 2, + ACTIONS(6604), 1, anon_sym_LPAREN2, - [73546] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5121), 1, - anon_sym_RPAREN, - [73553] = 2, - ACTIONS(3), 1, + [110994] = 2, + ACTIONS(6606), 1, + aux_sym_preproc_include_token2, + ACTIONS(3), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5123), 1, - anon_sym_RPAREN, - [73560] = 2, - ACTIONS(3), 1, + [111002] = 2, + ACTIONS(6608), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5125), 1, + [111010] = 2, + ACTIONS(6610), 1, anon_sym_SEMI, - [73567] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5127), 1, - anon_sym_RBRACE, - [73574] = 2, - ACTIONS(3643), 1, - sym_comment, - ACTIONS(5129), 1, - aux_sym_preproc_include_token2, - [73581] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5131), 1, - anon_sym_STAR, - [73588] = 2, - ACTIONS(3643), 1, + [111018] = 2, + ACTIONS(4062), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5133), 1, - aux_sym_preproc_include_token2, - [73595] = 2, - ACTIONS(3643), 1, + [111026] = 2, + ACTIONS(6612), 1, + aux_sym_preproc_if_token2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5135), 1, - aux_sym_preproc_include_token2, - [73602] = 2, + [111034] = 3, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(5137), 1, + ACTIONS(6614), 1, sym_identifier, - [73609] = 2, + [111044] = 3, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(5139), 1, + ACTIONS(6616), 1, sym_identifier, - [73616] = 2, - ACTIONS(3), 1, + [111054] = 2, + ACTIONS(6618), 1, + aux_sym_preproc_if_token2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5141), 1, - sym_identifier, - [73623] = 2, - ACTIONS(3), 1, + [111062] = 2, + ACTIONS(6620), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5143), 1, - anon_sym_while, - [73630] = 2, - ACTIONS(3), 1, + [111070] = 2, + ACTIONS(6622), 1, + aux_sym_preproc_include_token2, + ACTIONS(3), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5145), 1, - aux_sym_preproc_if_token2, - [73637] = 2, - ACTIONS(3), 1, + [111078] = 2, + ACTIONS(6624), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5147), 1, - aux_sym_preproc_if_token2, - [73644] = 2, - ACTIONS(3), 1, + [111086] = 2, + ACTIONS(6626), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5149), 1, - sym_identifier, - [73651] = 2, - ACTIONS(3), 1, + [111094] = 2, + ACTIONS(6628), 1, + anon_sym_SEMI, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5151), 1, - aux_sym_preproc_if_token2, - [73658] = 2, - ACTIONS(3), 1, + [111102] = 2, + ACTIONS(6630), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4241), 1, - anon_sym_COMMA, - [73665] = 2, - ACTIONS(3), 1, + [111110] = 2, + ACTIONS(6632), 1, + anon_sym_SEMI, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5153), 1, - aux_sym_preproc_if_token2, - [73672] = 2, + [111118] = 3, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(5155), 1, + ACTIONS(6634), 1, sym_identifier, - [73679] = 2, - ACTIONS(3), 1, + [111128] = 2, + ACTIONS(6636), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5157), 1, - aux_sym_preproc_if_token2, - [73686] = 2, - ACTIONS(3), 1, + [111136] = 2, + ACTIONS(6638), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5159), 1, - anon_sym_RBRACE, - [73693] = 2, - ACTIONS(3), 1, + [111144] = 2, + ACTIONS(6640), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5161), 1, - sym_identifier, - [73700] = 2, - ACTIONS(3), 1, + [111152] = 2, + ACTIONS(6642), 1, + sym_number_literal, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5163), 1, - aux_sym_preproc_if_token2, - [73707] = 2, - ACTIONS(3), 1, + [111160] = 2, + ACTIONS(6644), 1, + anon_sym_SEMI, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5165), 1, - aux_sym_preproc_if_token2, - [73714] = 2, - ACTIONS(3), 1, + [111168] = 2, + ACTIONS(6646), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5167), 1, + [111176] = 2, + ACTIONS(4180), 1, anon_sym_RPAREN, - [73721] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5169), 1, - aux_sym_preproc_if_token2, - [73728] = 2, - ACTIONS(3), 1, + [111184] = 2, + ACTIONS(6648), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5171), 1, + [111192] = 2, + ACTIONS(4110), 1, anon_sym_SEMI, - [73735] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4989), 1, - anon_sym_COMMA, - [73742] = 2, - ACTIONS(3), 1, + [111200] = 2, + ACTIONS(6650), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5173), 1, + [111208] = 2, + ACTIONS(6652), 1, aux_sym_preproc_if_token2, - [73749] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [111216] = 2, + ACTIONS(6654), 1, + aux_sym_preproc_if_token2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5175), 1, + [111224] = 2, + ACTIONS(6656), 1, anon_sym_RPAREN, - [73756] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5177), 1, - aux_sym_preproc_if_token2, - [73763] = 2, - ACTIONS(3), 1, + [111232] = 2, + ACTIONS(6658), 1, + aux_sym_preproc_include_token2, + ACTIONS(3), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5179), 1, - sym_identifier, - [73770] = 2, - ACTIONS(3), 1, + [111240] = 2, + ACTIONS(6660), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5181), 1, - anon_sym_SEMI, - [73777] = 2, - ACTIONS(3), 1, + [111248] = 2, + ACTIONS(6662), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5183), 1, + [111256] = 2, + ACTIONS(6664), 1, anon_sym_RPAREN, - [73784] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [111264] = 2, + ACTIONS(6666), 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, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5185), 1, + [111280] = 2, + ACTIONS(4154), 1, anon_sym_SEMI, - [73791] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5187), 1, - aux_sym_preproc_if_token2, - [73798] = 2, - ACTIONS(3), 1, + [111288] = 2, + ACTIONS(6668), 1, + anon_sym_SEMI, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5189), 1, - anon_sym_LPAREN2, - [73805] = 2, - ACTIONS(3), 1, + [111296] = 2, + ACTIONS(6670), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5191), 1, - sym_identifier, - [73812] = 2, - ACTIONS(3), 1, + [111304] = 2, + ACTIONS(6672), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5193), 1, - anon_sym_LPAREN2, - [73819] = 2, - ACTIONS(3), 1, + [111312] = 2, + ACTIONS(4132), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5195), 1, - anon_sym_LPAREN2, - [73826] = 2, - ACTIONS(3643), 1, + [111320] = 2, + ACTIONS(6674), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4918), 1, - aux_sym_preproc_include_token2, - [73833] = 2, - ACTIONS(3), 1, + [111328] = 2, + ACTIONS(6676), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5197), 1, - anon_sym_LPAREN2, - [73840] = 2, - ACTIONS(3), 1, + [111336] = 2, + ACTIONS(6678), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [111344] = 2, + ACTIONS(6680), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5199), 1, + [111352] = 2, + ACTIONS(6682), 1, anon_sym_RPAREN, - [73847] = 2, - ACTIONS(3643), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5201), 1, - aux_sym_preproc_include_token2, - [73854] = 2, - ACTIONS(3), 1, + [111360] = 2, + ACTIONS(6684), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [111368] = 2, + ACTIONS(6686), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [111376] = 2, + ACTIONS(6688), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [111384] = 2, + ACTIONS(6690), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [111392] = 2, + ACTIONS(6692), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [111400] = 2, + ACTIONS(6694), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [111408] = 2, + ACTIONS(6696), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [111416] = 2, + ACTIONS(6698), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5203), 1, + [111424] = 2, + ACTIONS(6700), 1, anon_sym_RPAREN, - [73861] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(3430), 1, + [111432] = 2, + ACTIONS(6702), 1, anon_sym_RPAREN, - [73868] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(3428), 1, + [111440] = 2, + ACTIONS(6704), 1, anon_sym_RPAREN, - [73875] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(3426), 1, + [111448] = 2, + ACTIONS(6706), 1, anon_sym_RPAREN, - [73882] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5205), 1, - sym_identifier, - [73889] = 2, - ACTIONS(3), 1, + [111456] = 2, + ACTIONS(6708), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5207), 1, - anon_sym_RBRACK, - [73896] = 2, - ACTIONS(3643), 1, + [111464] = 2, + ACTIONS(6710), 1, + anon_sym_LPAREN2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5209), 1, - aux_sym_preproc_include_token2, - [73903] = 2, - ACTIONS(3), 1, + [111472] = 2, + ACTIONS(2702), 1, + anon_sym_LPAREN2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5211), 1, - aux_sym_preproc_if_token2, - [73910] = 2, - ACTIONS(3), 1, + [111480] = 2, + ACTIONS(6712), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(3418), 1, + [111488] = 2, + ACTIONS(6714), 1, anon_sym_RPAREN, - [73917] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5213), 1, - sym_identifier, - [73924] = 2, - ACTIONS(3232), 1, - aux_sym_preproc_include_token2, - ACTIONS(3643), 1, + [111496] = 2, + ACTIONS(6716), 1, + anon_sym_COMMA, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - [73931] = 2, - ACTIONS(3), 1, + [111504] = 2, + ACTIONS(6718), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5215), 1, - sym_identifier, - [73938] = 2, + [111512] = 2, + ACTIONS(6720), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [111520] = 3, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(5217), 1, + ACTIONS(6722), 1, sym_identifier, - [73945] = 2, - ACTIONS(3), 1, + [111530] = 2, + ACTIONS(4182), 1, + anon_sym_SEMI, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5219), 1, + [111538] = 2, + ACTIONS(6724), 1, anon_sym_LPAREN2, - [73952] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5221), 1, - sym_identifier, - [73959] = 2, - ACTIONS(3), 1, + [111546] = 2, + ACTIONS(2708), 1, + anon_sym_LPAREN2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5223), 1, + [111554] = 2, + ACTIONS(4140), 1, anon_sym_SEMI, - [73966] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5225), 1, + [111562] = 2, + ACTIONS(6726), 1, + anon_sym_SEMI, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [111570] = 2, + ACTIONS(6728), 1, anon_sym_RPAREN, - [73973] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5227), 1, + [111578] = 2, + ACTIONS(6730), 1, anon_sym_RPAREN, - [73980] = 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [111586] = 3, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(5229), 1, + ACTIONS(6732), 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, anon_sym_RPAREN, - [73987] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5231), 1, + [111612] = 2, + ACTIONS(6738), 1, aux_sym_preproc_if_token2, - [73994] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5233), 1, - anon_sym_SEMI, - [74001] = 2, - ACTIONS(3), 1, + [111620] = 2, + ACTIONS(6740), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5235), 1, - aux_sym_preproc_if_token2, - [74008] = 2, - ACTIONS(3), 1, + [111628] = 2, + ACTIONS(6742), 1, + anon_sym_LPAREN2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(3414), 1, - anon_sym_SEMI, - [74015] = 2, - ACTIONS(3), 1, + [111636] = 2, + ACTIONS(6744), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5237), 1, - sym_identifier, - [74022] = 2, - ACTIONS(3), 1, + [111644] = 2, + ACTIONS(6746), 1, + anon_sym_LPAREN2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5239), 1, - aux_sym_preproc_if_token2, - [74029] = 2, - ACTIONS(3), 1, + [111652] = 2, + ACTIONS(6748), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(3412), 1, - anon_sym_COLON, - [74036] = 2, - ACTIONS(3), 1, + [111660] = 2, + ACTIONS(6750), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5241), 1, + [111668] = 2, + ACTIONS(6752), 1, aux_sym_preproc_if_token2, - [74043] = 2, - ACTIONS(3643), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5243), 1, - aux_sym_preproc_include_token2, - [74050] = 2, + [111676] = 3, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6754), 1, + sym_identifier, + [111686] = 2, + ACTIONS(6756), 1, + sym_primitive_type, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [111694] = 2, + ACTIONS(4893), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5245), 1, + [111702] = 2, + ACTIONS(6758), 1, aux_sym_preproc_if_token2, - [74057] = 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [111710] = 3, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(3378), 1, - anon_sym_COLON, - [74064] = 2, - ACTIONS(3246), 1, + ACTIONS(6760), 1, + sym_identifier, + [111720] = 2, + ACTIONS(5595), 1, aux_sym_preproc_include_token2, - ACTIONS(3643), 1, + ACTIONS(3), 2, + sym__linux_kernel_annotations, sym_comment, - [74071] = 2, - ACTIONS(3643), 1, + [111728] = 2, + ACTIONS(6762), 1, + anon_sym_LPAREN2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5247), 1, - aux_sym_preproc_include_token2, - [74078] = 2, - ACTIONS(3), 1, + [111736] = 2, + ACTIONS(6764), 1, + aux_sym_preproc_if_token2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5249), 1, + [111744] = 2, + ACTIONS(6766), 1, anon_sym_RPAREN, - [74085] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(3410), 1, - anon_sym_SEMI, - [74092] = 2, + [111752] = 3, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(5251), 1, - anon_sym_RPAREN, - [74099] = 2, - ACTIONS(3), 1, + ACTIONS(6768), 1, + sym_identifier, + [111762] = 2, + ACTIONS(6770), 1, + aux_sym_preproc_include_token2, + ACTIONS(3), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5253), 1, - aux_sym_preproc_if_token2, - [74106] = 2, - ACTIONS(3), 1, + [111770] = 2, + ACTIONS(6772), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5255), 1, + [111778] = 2, + ACTIONS(6774), 1, aux_sym_preproc_if_token2, - [74113] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5257), 1, - anon_sym_STAR, - [74120] = 2, + [111786] = 3, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(5259), 1, - anon_sym_RBRACE, - [74127] = 2, + ACTIONS(6776), 1, + sym_identifier, + [111796] = 3, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(5261), 1, - anon_sym_RPAREN, - [74134] = 2, + ACTIONS(6778), 1, + sym_identifier, + [111806] = 3, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(5263), 1, - aux_sym_preproc_if_token2, - [74141] = 2, - ACTIONS(3), 1, + ACTIONS(6780), 1, + sym_identifier, + [111816] = 2, + ACTIONS(6782), 1, + anon_sym_LPAREN2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5265), 1, - aux_sym_preproc_if_token2, - [74148] = 2, - ACTIONS(3), 1, + [111824] = 2, + ACTIONS(6784), 1, + anon_sym_SEMI, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5267), 1, - aux_sym_preproc_if_token2, - [74155] = 2, - ACTIONS(3), 1, + [111832] = 2, + ACTIONS(6786), 1, + anon_sym_LPAREN2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5269), 1, - anon_sym_RBRACE, - [74162] = 2, - ACTIONS(3), 1, + [111840] = 2, + ACTIONS(6788), 1, + anon_sym_LPAREN2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5271), 1, - aux_sym_preproc_if_token2, - [74169] = 2, - ACTIONS(3), 1, + [111848] = 2, + ACTIONS(6790), 1, + anon_sym_LPAREN2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5273), 1, - aux_sym_preproc_if_token2, - [74176] = 2, - ACTIONS(3), 1, + [111856] = 2, + ACTIONS(6137), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5275), 1, - anon_sym_SEMI, - [74183] = 2, - ACTIONS(3), 1, + [111864] = 2, + ACTIONS(6792), 1, + anon_sym_LPAREN2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(3406), 1, - anon_sym_SEMI, - [74190] = 2, - ACTIONS(3), 1, + [111872] = 2, + ACTIONS(2702), 1, + aux_sym_preproc_include_token2, + ACTIONS(3), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5277), 1, - aux_sym_preproc_if_token2, - [74197] = 2, - ACTIONS(3), 1, + [111880] = 2, + ACTIONS(4206), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(3402), 1, - anon_sym_COLON, - [74204] = 2, - ACTIONS(3), 1, + [111888] = 2, + ACTIONS(6794), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5279), 1, + [111896] = 2, + ACTIONS(6796), 1, anon_sym_RPAREN, - [74211] = 2, - ACTIONS(2150), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [111904] = 2, + ACTIONS(2708), 1, aux_sym_preproc_include_token2, - ACTIONS(3643), 1, + ACTIONS(3), 2, + sym__linux_kernel_annotations, sym_comment, - [74218] = 2, - ACTIONS(3), 1, + [111912] = 2, + ACTIONS(6798), 1, + anon_sym_LPAREN2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [111920] = 2, + ACTIONS(6800), 1, + anon_sym_LPAREN2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [111928] = 2, + ACTIONS(6802), 1, + anon_sym_LPAREN2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [111936] = 2, + ACTIONS(6804), 1, + anon_sym_LPAREN2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5281), 1, + [111944] = 2, + ACTIONS(6806), 1, anon_sym_RPAREN, - [74225] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5283), 1, - anon_sym_SEMI, - [74232] = 2, + [111952] = 3, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(5285), 1, + ACTIONS(6808), 1, sym_identifier, - [74239] = 2, - ACTIONS(3), 1, + [111962] = 2, + ACTIONS(6810), 1, + anon_sym_LPAREN2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5287), 1, - sym_identifier, - [74246] = 2, - ACTIONS(3), 1, + [111970] = 2, + ACTIONS(4559), 1, + aux_sym_preproc_include_token2, + ACTIONS(3), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5289), 1, + [111978] = 2, + ACTIONS(5615), 1, anon_sym_RPAREN, - [74253] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5291), 1, - sym_identifier, - [74260] = 2, - ACTIONS(3643), 1, + [111986] = 2, + ACTIONS(6812), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5293), 1, - aux_sym_preproc_include_token2, - [74267] = 2, - ACTIONS(3), 1, + [111994] = 2, + ACTIONS(6814), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5295), 1, + [112002] = 2, + ACTIONS(6816), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [112010] = 2, + ACTIONS(6818), 1, aux_sym_preproc_if_token2, - [74274] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(3462), 1, - anon_sym_RPAREN, - [74281] = 2, + [112018] = 3, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(5297), 1, - sym_primitive_type, - [74288] = 2, - ACTIONS(3), 1, + ACTIONS(6820), 1, + sym_identifier, + [112028] = 2, + ACTIONS(6822), 1, + anon_sym_while, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5299), 1, - anon_sym_RPAREN, - [74295] = 2, + [112036] = 3, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(5301), 1, + ACTIONS(6824), 1, sym_identifier, - [74302] = 2, - ACTIONS(3), 1, + [112046] = 2, + ACTIONS(6826), 1, + aux_sym_preproc_include_token2, + ACTIONS(3), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5303), 1, + [112054] = 2, + ACTIONS(6828), 1, anon_sym_RPAREN, - [74309] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5305), 1, + [112062] = 2, + ACTIONS(6830), 1, anon_sym_RPAREN, - [74316] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5307), 1, - anon_sym_RPAREN, - [74323] = 2, + [112070] = 2, + ACTIONS(6832), 1, + anon_sym_while, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [112078] = 3, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(5309), 1, + ACTIONS(6834), 1, + sym_identifier, + [112088] = 2, + ACTIONS(6836), 1, + anon_sym_SEMI, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [112096] = 2, + ACTIONS(6838), 1, anon_sym_LPAREN2, - [74330] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5311), 1, - aux_sym_preproc_if_token2, - [74337] = 2, - ACTIONS(3), 1, + [112104] = 2, + ACTIONS(6840), 1, + anon_sym_LPAREN2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5313), 1, - anon_sym_RPAREN, - [74344] = 2, - ACTIONS(3), 1, + [112112] = 2, + ACTIONS(6842), 1, + anon_sym_COMMA, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(3400), 1, - anon_sym_SEMI, - [74351] = 2, - ACTIONS(3), 1, + [112120] = 2, + ACTIONS(6844), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5315), 1, + [112128] = 2, + ACTIONS(4130), 1, anon_sym_COLON, - [74358] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5317), 1, - anon_sym_RPAREN, - [74365] = 2, - ACTIONS(3), 1, + [112136] = 2, + ACTIONS(6846), 1, + anon_sym_LPAREN2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5319), 1, - aux_sym_preproc_if_token2, - [74372] = 2, - ACTIONS(3), 1, + [112144] = 2, + ACTIONS(6848), 1, + anon_sym_LPAREN2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5321), 1, - anon_sym_SEMI, - [74379] = 2, - ACTIONS(3), 1, + [112152] = 2, + ACTIONS(6850), 1, + anon_sym_LPAREN2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5323), 1, - aux_sym_preproc_if_token2, - [74386] = 2, - ACTIONS(3), 1, + [112160] = 2, + ACTIONS(6852), 1, + anon_sym_LPAREN2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5325), 1, - sym_identifier, - [74393] = 2, - ACTIONS(3643), 1, + [112168] = 2, + ACTIONS(6854), 1, + anon_sym_LPAREN2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5327), 1, - aux_sym_preproc_include_token2, - [74400] = 2, - ACTIONS(3), 1, + [112176] = 2, + ACTIONS(6856), 1, + anon_sym_LPAREN2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5329), 1, - anon_sym_RPAREN, - [74407] = 2, - ACTIONS(3), 1, + [112184] = 2, + ACTIONS(6858), 1, + anon_sym_LPAREN2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5331), 1, - anon_sym_RPAREN, - [74414] = 2, - ACTIONS(3), 1, + [112192] = 2, + ACTIONS(6860), 1, + anon_sym_LPAREN2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5333), 1, - anon_sym_RBRACK, - [74421] = 2, - ACTIONS(3242), 1, - aux_sym_preproc_include_token2, - ACTIONS(3643), 1, + [112200] = 2, + ACTIONS(6862), 1, + anon_sym_LPAREN2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - [74428] = 2, - ACTIONS(3), 1, + [112208] = 2, + ACTIONS(6864), 1, + anon_sym_LPAREN2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5335), 1, - anon_sym_RPAREN, - [74435] = 2, - ACTIONS(3), 1, + [112216] = 2, + ACTIONS(6866), 1, + anon_sym_LPAREN2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5337), 1, - anon_sym_SEMI, - [74442] = 2, - ACTIONS(3), 1, + [112224] = 2, + ACTIONS(6868), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(3380), 1, - anon_sym_SEMI, - [74449] = 2, - ACTIONS(3), 1, + [112232] = 2, + ACTIONS(6870), 1, + anon_sym_LPAREN2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(3398), 1, - anon_sym_COLON, - [74456] = 2, - ACTIONS(3), 1, + [112240] = 2, + ACTIONS(6872), 1, + anon_sym_LPAREN2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5339), 1, - anon_sym_RBRACE, - [74463] = 2, - ACTIONS(3643), 1, + [112248] = 2, + ACTIONS(6874), 1, + anon_sym_LPAREN2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5341), 1, - aux_sym_preproc_include_token2, - [74470] = 2, - ACTIONS(3), 1, + [112256] = 2, + ACTIONS(6876), 1, + anon_sym_LPAREN2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5343), 1, - aux_sym_preproc_if_token2, - [74477] = 2, - ACTIONS(3), 1, + [112264] = 2, + ACTIONS(6878), 1, + anon_sym_LPAREN2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5345), 1, - aux_sym_preproc_if_token2, - [74484] = 2, - ACTIONS(3), 1, + [112272] = 2, + ACTIONS(4208), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5347), 1, - aux_sym_preproc_if_token2, - [74491] = 2, - ACTIONS(3), 1, + [112280] = 2, + ACTIONS(6880), 1, + anon_sym_SEMI, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5349), 1, - aux_sym_preproc_if_token2, - [74498] = 2, - ACTIONS(3), 1, + [112288] = 2, + ACTIONS(6882), 1, + anon_sym_LPAREN2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5351), 1, - sym_identifier, - [74505] = 2, - ACTIONS(3), 1, + [112296] = 2, + ACTIONS(6884), 1, + anon_sym_LPAREN2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5353), 1, - sym_identifier, - [74512] = 2, - ACTIONS(3), 1, + [112304] = 2, + ACTIONS(6886), 1, + anon_sym_LPAREN2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5355), 1, - sym_identifier, - [74519] = 2, - ACTIONS(3), 1, + [112312] = 2, + ACTIONS(6888), 1, + anon_sym_LPAREN2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(3382), 1, + [112320] = 2, + ACTIONS(4178), 1, anon_sym_SEMI, - [74526] = 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [112328] = 3, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(5357), 1, + ACTIONS(6890), 1, + sym_identifier, + [112338] = 2, + ACTIONS(6892), 1, anon_sym_RPAREN, - [74533] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [112346] = 2, + ACTIONS(6894), 1, + anon_sym_SEMI, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [112354] = 2, + ACTIONS(6896), 1, + anon_sym_while, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5359), 1, + [112362] = 2, + ACTIONS(6898), 1, aux_sym_preproc_if_token2, - [74540] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5361), 1, - sym_identifier, - [74547] = 2, - ACTIONS(3), 1, + [112370] = 2, + ACTIONS(4064), 1, + anon_sym_SEMI, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5363), 1, + [112378] = 2, + ACTIONS(6900), 1, anon_sym_SEMI, - [74554] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5365), 1, + [112386] = 2, + ACTIONS(6902), 1, aux_sym_preproc_if_token2, - [74561] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5367), 1, - anon_sym_RPAREN, - [74568] = 2, + [112394] = 3, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(5369), 1, - anon_sym_RPAREN, - [74575] = 2, - ACTIONS(3643), 1, + ACTIONS(6904), 1, + sym_identifier, + [112404] = 2, + ACTIONS(6906), 1, + anon_sym_LPAREN2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5371), 1, - aux_sym_preproc_include_token2, - [74582] = 2, - ACTIONS(3), 1, + [112412] = 2, + ACTIONS(6908), 1, + anon_sym_LPAREN2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5373), 1, - anon_sym_RPAREN, - [74589] = 2, - ACTIONS(3), 1, + [112420] = 2, + ACTIONS(6910), 1, + anon_sym_COMMA, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5375), 1, - anon_sym_RPAREN, - [74596] = 2, - ACTIONS(3), 1, + [112428] = 2, + ACTIONS(6912), 1, + anon_sym_LPAREN2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5377), 1, - aux_sym_preproc_if_token2, - [74603] = 2, - ACTIONS(3), 1, + [112436] = 2, + ACTIONS(6914), 1, + anon_sym_LPAREN2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5379), 1, - anon_sym_RPAREN, - [74610] = 2, - ACTIONS(3), 1, + [112444] = 2, + ACTIONS(6916), 1, + anon_sym_LPAREN2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5381), 1, - aux_sym_preproc_if_token2, - [74617] = 2, - ACTIONS(3643), 1, + [112452] = 2, + ACTIONS(6918), 1, + anon_sym_LPAREN2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4714), 1, - aux_sym_preproc_include_token2, - [74624] = 2, - ACTIONS(3), 1, + [112460] = 2, + ACTIONS(6920), 1, + anon_sym_LPAREN2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5383), 1, + [112468] = 2, + ACTIONS(6922), 1, anon_sym_LPAREN2, - [74631] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5385), 1, - anon_sym_SEMI, - [74638] = 2, - ACTIONS(3), 1, + [112476] = 2, + ACTIONS(6924), 1, + anon_sym_LPAREN2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5387), 1, - anon_sym_SEMI, - [74645] = 2, - ACTIONS(3), 1, + [112484] = 2, + ACTIONS(6926), 1, + anon_sym_LPAREN2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5389), 1, - anon_sym_SEMI, - [74652] = 2, - ACTIONS(3), 1, + [112492] = 2, + ACTIONS(6928), 1, + anon_sym_LPAREN2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5391), 1, - anon_sym_RPAREN, - [74659] = 2, - ACTIONS(3), 1, + [112500] = 2, + ACTIONS(6930), 1, + anon_sym_LPAREN2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5393), 1, - anon_sym_SEMI, - [74666] = 2, - ACTIONS(3), 1, + [112508] = 2, + ACTIONS(6932), 1, + anon_sym_LPAREN2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(3376), 1, + [112516] = 2, + ACTIONS(6934), 1, anon_sym_COLON, - [74673] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5395), 1, - aux_sym_preproc_if_token2, - [74680] = 2, - ACTIONS(3), 1, + [112524] = 2, + ACTIONS(6936), 1, + anon_sym_LPAREN2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5397), 1, - aux_sym_preproc_if_token2, - [74687] = 2, - ACTIONS(3), 1, + [112532] = 2, + ACTIONS(6938), 1, + anon_sym_LPAREN2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5399), 1, - aux_sym_preproc_if_token2, - [74694] = 2, - ACTIONS(3), 1, + [112540] = 2, + ACTIONS(6940), 1, + anon_sym_LPAREN2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5401), 1, + [112548] = 2, + ACTIONS(6942), 1, + anon_sym_LPAREN2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [112556] = 2, + ACTIONS(6944), 1, + anon_sym_LPAREN2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [112564] = 2, + ACTIONS(6946), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [112572] = 2, + ACTIONS(6948), 1, anon_sym_RPAREN, - [74701] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5403), 1, - sym_identifier, - [74708] = 2, - ACTIONS(3), 1, + [112580] = 2, + ACTIONS(6950), 1, + anon_sym_LPAREN2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5405), 1, + [112588] = 2, + ACTIONS(6952), 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, + sym__linux_kernel_annotations, + sym_comment, + [112604] = 2, + ACTIONS(6956), 1, anon_sym_RPAREN, - [74715] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(3404), 1, + [112612] = 2, + ACTIONS(4052), 1, anon_sym_RPAREN, - [74722] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5407), 1, - anon_sym_COLON, - [74729] = 2, - ACTIONS(3), 1, + [112620] = 2, + ACTIONS(6958), 1, + aux_sym_preproc_include_token2, + ACTIONS(3), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5409), 1, - sym_identifier, - [74736] = 2, - ACTIONS(3), 1, + [112628] = 2, + ACTIONS(6960), 1, + anon_sym_while, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5411), 1, - sym_identifier, - [74743] = 2, - ACTIONS(3), 1, + [112636] = 2, + ACTIONS(6962), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5413), 1, - anon_sym_COLON, - [74750] = 2, - ACTIONS(3643), 1, + [112644] = 2, + ACTIONS(6964), 1, + aux_sym_preproc_include_token2, + ACTIONS(3), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5415), 1, + [112652] = 2, + ACTIONS(6966), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [112660] = 2, + ACTIONS(5555), 1, aux_sym_preproc_include_token2, - [74757] = 2, - ACTIONS(3), 1, + ACTIONS(3), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5417), 1, - aux_sym_preproc_if_token2, - [74764] = 2, - ACTIONS(3), 1, + [112668] = 2, + ACTIONS(6968), 1, + anon_sym_LPAREN2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5419), 1, - sym_number_literal, - [74771] = 2, - ACTIONS(3), 1, + [112676] = 2, + ACTIONS(6970), 1, + anon_sym_LPAREN2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5421), 1, - sym_identifier, - [74778] = 2, - ACTIONS(3), 1, + [112684] = 2, + ACTIONS(6972), 1, + anon_sym_LPAREN2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5423), 1, + [112692] = 2, + ACTIONS(6974), 1, anon_sym_LPAREN2, - [74785] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5425), 1, + [112700] = 2, + ACTIONS(6976), 1, anon_sym_LPAREN2, - [74792] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5427), 1, + [112708] = 2, + ACTIONS(6978), 1, anon_sym_LPAREN2, - [74799] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5009), 1, - anon_sym_RBRACE, - [74806] = 2, - ACTIONS(3), 1, + [112716] = 2, + ACTIONS(6980), 1, + anon_sym_LPAREN2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5429), 1, - anon_sym_SEMI, - [74813] = 2, - ACTIONS(3), 1, + [112724] = 2, + ACTIONS(6982), 1, + anon_sym_LPAREN2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5431), 1, - anon_sym_STAR, - [74820] = 2, - ACTIONS(3), 1, + [112732] = 2, + ACTIONS(6984), 1, + anon_sym_LPAREN2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5433), 1, + [112740] = 2, + ACTIONS(6986), 1, anon_sym_LPAREN2, - [74827] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5435), 1, - anon_sym_RPAREN, - [74834] = 2, - ACTIONS(3643), 1, + [112748] = 2, + ACTIONS(6988), 1, + anon_sym_LPAREN2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(4643), 1, - aux_sym_preproc_include_token2, - [74841] = 2, - ACTIONS(3), 1, + [112756] = 2, + ACTIONS(6990), 1, + anon_sym_LPAREN2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5437), 1, - ts_builtin_sym_end, - [74848] = 2, - ACTIONS(3), 1, + [112764] = 2, + ACTIONS(6992), 1, + anon_sym_LPAREN2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5439), 1, + [112772] = 2, + ACTIONS(6994), 1, anon_sym_LPAREN2, - [74855] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5441), 1, - anon_sym_while, - [74862] = 2, - ACTIONS(3), 1, + [112780] = 2, + ACTIONS(6996), 1, + anon_sym_LPAREN2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5443), 1, - sym_identifier, - [74869] = 2, - ACTIONS(3), 1, + [112788] = 2, + ACTIONS(6998), 1, + anon_sym_LPAREN2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5445), 1, + [112796] = 2, + ACTIONS(7000), 1, anon_sym_LPAREN2, - [74876] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5447), 1, + [112804] = 2, + ACTIONS(7002), 1, anon_sym_LPAREN2, - [74883] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [112812] = 2, + ACTIONS(7004), 1, + ts_builtin_sym_end, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5449), 1, + [112820] = 2, + ACTIONS(7006), 1, anon_sym_LPAREN2, - [74890] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5451), 1, + [112828] = 2, + ACTIONS(7008), 1, anon_sym_LPAREN2, - [74897] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5453), 1, + [112836] = 2, + ACTIONS(7010), 1, anon_sym_RPAREN, - [74904] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5455), 1, - anon_sym_LPAREN2, - [74911] = 2, - ACTIONS(3), 1, + [112844] = 2, + ACTIONS(7012), 1, + anon_sym_while, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(3444), 1, - anon_sym_COLON, - [74918] = 2, - ACTIONS(3), 1, + [112852] = 2, + ACTIONS(7014), 1, + anon_sym_LPAREN2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5457), 1, + [112860] = 2, + ACTIONS(7016), 1, anon_sym_LPAREN2, - [74925] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5459), 1, - sym_identifier, - [74932] = 2, - ACTIONS(3), 1, + [112868] = 2, + ACTIONS(7018), 1, + anon_sym_while, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5461), 1, + [112876] = 2, + ACTIONS(7020), 1, anon_sym_LPAREN2, - [74939] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5463), 1, - anon_sym_SEMI, - [74946] = 2, - ACTIONS(3), 1, + [112884] = 2, + ACTIONS(7022), 1, + anon_sym_LPAREN2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5465), 1, - anon_sym_SEMI, - [74953] = 2, - ACTIONS(3), 1, + [112892] = 2, + ACTIONS(7024), 1, + anon_sym_LPAREN2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5467), 1, + [112900] = 2, + ACTIONS(7026), 1, anon_sym_LPAREN2, - [74960] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5469), 1, - anon_sym_while, - [74967] = 2, - ACTIONS(3), 1, + [112908] = 2, + ACTIONS(7028), 1, + anon_sym_LPAREN2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5471), 1, - anon_sym_SEMI, - [74974] = 2, - ACTIONS(3), 1, + [112916] = 2, + ACTIONS(7030), 1, + anon_sym_LPAREN2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5473), 1, - anon_sym_COLON, - [74981] = 2, + [112924] = 3, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, + sym_comment, + ACTIONS(7032), 1, + sym_identifier, + [112934] = 2, + ACTIONS(7034), 1, + anon_sym_LPAREN2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(3408), 1, + [112942] = 2, + ACTIONS(7036), 1, anon_sym_SEMI, - [74988] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(3386), 1, + [112950] = 2, + ACTIONS(7038), 1, anon_sym_SEMI, - [74995] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5475), 1, - sym_identifier, - [75002] = 2, - ACTIONS(3), 1, + [112958] = 2, + ACTIONS(7040), 1, + anon_sym_LPAREN2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5477), 1, - aux_sym_preproc_if_token2, - [75009] = 2, - ACTIONS(3), 1, + [112966] = 2, + ACTIONS(4122), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5479), 1, - aux_sym_preproc_if_token2, - [75016] = 2, - ACTIONS(2162), 1, - aux_sym_preproc_include_token2, - ACTIONS(3643), 1, + [112974] = 2, + ACTIONS(7042), 1, + anon_sym_LPAREN2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - [75023] = 2, - ACTIONS(3), 1, + [112982] = 2, + ACTIONS(7044), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5481), 1, - aux_sym_preproc_if_token2, - [75030] = 2, - ACTIONS(3), 1, + [112990] = 2, + ACTIONS(6082), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5483), 1, - anon_sym_while, - [75037] = 2, - ACTIONS(3), 1, + [112998] = 2, + ACTIONS(7046), 1, + sym_primitive_type, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5485), 1, - anon_sym_LPAREN2, - [75044] = 2, - ACTIONS(3), 1, + [113006] = 2, + ACTIONS(7048), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5487), 1, + [113014] = 2, + ACTIONS(7050), 1, anon_sym_LPAREN2, - [75051] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5489), 1, - anon_sym_SEMI, - [75058] = 2, - ACTIONS(3), 1, + [113022] = 2, + ACTIONS(7052), 1, + anon_sym_LPAREN2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5491), 1, + [113030] = 2, + ACTIONS(7054), 1, anon_sym_LPAREN2, - [75065] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5493), 1, + [113038] = 2, + ACTIONS(7056), 1, anon_sym_LPAREN2, - [75072] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5495), 1, + [113046] = 2, + ACTIONS(4837), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [113054] = 2, + ACTIONS(7058), 1, anon_sym_LPAREN2, - [75079] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5497), 1, - aux_sym_preproc_if_token2, - [75086] = 2, - ACTIONS(3), 1, + [113062] = 2, + ACTIONS(7060), 1, + anon_sym_LPAREN2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5499), 1, - sym_identifier, - [75093] = 2, - ACTIONS(3), 1, + [113070] = 2, + ACTIONS(7062), 1, + anon_sym_LPAREN2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(5501), 1, + [113078] = 2, + ACTIONS(7064), 1, anon_sym_LPAREN2, - [75100] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__linux_kernel_annotations, sym_comment, - ACTIONS(3374), 1, + [113086] = 2, + ACTIONS(7066), 1, anon_sym_RPAREN, - [75107] = 2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [113094] = 3, ACTIONS(3), 1, + sym__linux_kernel_annotations, + ACTIONS(5), 1, sym_comment, - ACTIONS(5503), 1, + ACTIONS(7068), 1, sym_identifier, + [113104] = 2, + ACTIONS(7070), 1, + anon_sym_LPAREN2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, + [113112] = 2, + ACTIONS(7072), 1, + anon_sym_LPAREN2, + ACTIONS(5), 2, + sym__linux_kernel_annotations, + sym_comment, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(523)] = 0, - [SMALL_STATE(524)] = 75, - [SMALL_STATE(525)] = 166, - [SMALL_STATE(526)] = 236, - [SMALL_STATE(527)] = 350, - [SMALL_STATE(528)] = 464, - [SMALL_STATE(529)] = 534, - [SMALL_STATE(530)] = 603, - [SMALL_STATE(531)] = 672, - [SMALL_STATE(532)] = 741, - [SMALL_STATE(533)] = 810, - [SMALL_STATE(534)] = 879, - [SMALL_STATE(535)] = 948, - [SMALL_STATE(536)] = 1059, - [SMALL_STATE(537)] = 1128, - [SMALL_STATE(538)] = 1197, - [SMALL_STATE(539)] = 1266, - [SMALL_STATE(540)] = 1335, - [SMALL_STATE(541)] = 1404, - [SMALL_STATE(542)] = 1473, - [SMALL_STATE(543)] = 1542, - [SMALL_STATE(544)] = 1611, - [SMALL_STATE(545)] = 1719, - [SMALL_STATE(546)] = 1805, - [SMALL_STATE(547)] = 1895, - [SMALL_STATE(548)] = 2007, - [SMALL_STATE(549)] = 2117, - [SMALL_STATE(550)] = 2225, - [SMALL_STATE(551)] = 2335, - [SMALL_STATE(552)] = 2445, - [SMALL_STATE(553)] = 2555, - [SMALL_STATE(554)] = 2665, - [SMALL_STATE(555)] = 2775, - [SMALL_STATE(556)] = 2883, - [SMALL_STATE(557)] = 2993, - [SMALL_STATE(558)] = 3103, - [SMALL_STATE(559)] = 3213, - [SMALL_STATE(560)] = 3323, - [SMALL_STATE(561)] = 3431, - [SMALL_STATE(562)] = 3541, - [SMALL_STATE(563)] = 3651, - [SMALL_STATE(564)] = 3759, - [SMALL_STATE(565)] = 3867, - [SMALL_STATE(566)] = 3975, - [SMALL_STATE(567)] = 4083, - [SMALL_STATE(568)] = 4193, - [SMALL_STATE(569)] = 4301, - [SMALL_STATE(570)] = 4411, - [SMALL_STATE(571)] = 4519, - [SMALL_STATE(572)] = 4629, - [SMALL_STATE(573)] = 4737, - [SMALL_STATE(574)] = 4845, - [SMALL_STATE(575)] = 4955, - [SMALL_STATE(576)] = 5063, - [SMALL_STATE(577)] = 5175, - [SMALL_STATE(578)] = 5283, - [SMALL_STATE(579)] = 5393, - [SMALL_STATE(580)] = 5503, - [SMALL_STATE(581)] = 5613, - [SMALL_STATE(582)] = 5723, - [SMALL_STATE(583)] = 5831, - [SMALL_STATE(584)] = 5941, - [SMALL_STATE(585)] = 6051, - [SMALL_STATE(586)] = 6161, - [SMALL_STATE(587)] = 6271, - [SMALL_STATE(588)] = 6381, - [SMALL_STATE(589)] = 6489, - [SMALL_STATE(590)] = 6599, - [SMALL_STATE(591)] = 6709, - [SMALL_STATE(592)] = 6817, - [SMALL_STATE(593)] = 6925, - [SMALL_STATE(594)] = 7033, - [SMALL_STATE(595)] = 7143, - [SMALL_STATE(596)] = 7251, - [SMALL_STATE(597)] = 7359, - [SMALL_STATE(598)] = 7469, - [SMALL_STATE(599)] = 7579, - [SMALL_STATE(600)] = 7689, - [SMALL_STATE(601)] = 7797, - [SMALL_STATE(602)] = 7905, - [SMALL_STATE(603)] = 8015, - [SMALL_STATE(604)] = 8125, - [SMALL_STATE(605)] = 8233, - [SMALL_STATE(606)] = 8343, - [SMALL_STATE(607)] = 8453, - [SMALL_STATE(608)] = 8561, - [SMALL_STATE(609)] = 8669, - [SMALL_STATE(610)] = 8777, - [SMALL_STATE(611)] = 8885, - [SMALL_STATE(612)] = 8994, - [SMALL_STATE(613)] = 9099, - [SMALL_STATE(614)] = 9206, - [SMALL_STATE(615)] = 9311, - [SMALL_STATE(616)] = 9418, - [SMALL_STATE(617)] = 9523, - [SMALL_STATE(618)] = 9628, - [SMALL_STATE(619)] = 9733, - [SMALL_STATE(620)] = 9838, - [SMALL_STATE(621)] = 9945, - [SMALL_STATE(622)] = 10050, - [SMALL_STATE(623)] = 10157, - [SMALL_STATE(624)] = 10262, - [SMALL_STATE(625)] = 10367, - [SMALL_STATE(626)] = 10472, - [SMALL_STATE(627)] = 10577, - [SMALL_STATE(628)] = 10684, - [SMALL_STATE(629)] = 10789, - [SMALL_STATE(630)] = 10896, - [SMALL_STATE(631)] = 11001, - [SMALL_STATE(632)] = 11103, - [SMALL_STATE(633)] = 11205, - [SMALL_STATE(634)] = 11307, - [SMALL_STATE(635)] = 11409, - [SMALL_STATE(636)] = 11511, - [SMALL_STATE(637)] = 11613, - [SMALL_STATE(638)] = 11715, - [SMALL_STATE(639)] = 11781, - [SMALL_STATE(640)] = 11883, - [SMALL_STATE(641)] = 11985, - [SMALL_STATE(642)] = 12087, - [SMALL_STATE(643)] = 12189, - [SMALL_STATE(644)] = 12291, - [SMALL_STATE(645)] = 12393, - [SMALL_STATE(646)] = 12495, - [SMALL_STATE(647)] = 12597, - [SMALL_STATE(648)] = 12699, - [SMALL_STATE(649)] = 12801, - [SMALL_STATE(650)] = 12903, - [SMALL_STATE(651)] = 13005, - [SMALL_STATE(652)] = 13107, - [SMALL_STATE(653)] = 13209, - [SMALL_STATE(654)] = 13311, - [SMALL_STATE(655)] = 13413, - [SMALL_STATE(656)] = 13515, - [SMALL_STATE(657)] = 13617, - [SMALL_STATE(658)] = 13719, - [SMALL_STATE(659)] = 13821, - [SMALL_STATE(660)] = 13923, - [SMALL_STATE(661)] = 14025, - [SMALL_STATE(662)] = 14127, - [SMALL_STATE(663)] = 14193, - [SMALL_STATE(664)] = 14295, - [SMALL_STATE(665)] = 14397, - [SMALL_STATE(666)] = 14499, - [SMALL_STATE(667)] = 14601, - [SMALL_STATE(668)] = 14703, - [SMALL_STATE(669)] = 14805, - [SMALL_STATE(670)] = 14907, - [SMALL_STATE(671)] = 15009, - [SMALL_STATE(672)] = 15081, - [SMALL_STATE(673)] = 15183, - [SMALL_STATE(674)] = 15285, - [SMALL_STATE(675)] = 15387, - [SMALL_STATE(676)] = 15489, - [SMALL_STATE(677)] = 15591, - [SMALL_STATE(678)] = 15693, - [SMALL_STATE(679)] = 15795, - [SMALL_STATE(680)] = 15897, - [SMALL_STATE(681)] = 15999, - [SMALL_STATE(682)] = 16101, - [SMALL_STATE(683)] = 16203, - [SMALL_STATE(684)] = 16305, - [SMALL_STATE(685)] = 16407, - [SMALL_STATE(686)] = 16509, - [SMALL_STATE(687)] = 16611, - [SMALL_STATE(688)] = 16713, - [SMALL_STATE(689)] = 16815, - [SMALL_STATE(690)] = 16917, - [SMALL_STATE(691)] = 17019, - [SMALL_STATE(692)] = 17121, - [SMALL_STATE(693)] = 17223, - [SMALL_STATE(694)] = 17289, - [SMALL_STATE(695)] = 17391, - [SMALL_STATE(696)] = 17493, - [SMALL_STATE(697)] = 17595, - [SMALL_STATE(698)] = 17697, - [SMALL_STATE(699)] = 17799, - [SMALL_STATE(700)] = 17901, - [SMALL_STATE(701)] = 18003, - [SMALL_STATE(702)] = 18105, - [SMALL_STATE(703)] = 18207, - [SMALL_STATE(704)] = 18309, - [SMALL_STATE(705)] = 18411, - [SMALL_STATE(706)] = 18513, - [SMALL_STATE(707)] = 18615, - [SMALL_STATE(708)] = 18717, - [SMALL_STATE(709)] = 18819, - [SMALL_STATE(710)] = 18921, - [SMALL_STATE(711)] = 19023, - [SMALL_STATE(712)] = 19089, - [SMALL_STATE(713)] = 19191, - [SMALL_STATE(714)] = 19293, - [SMALL_STATE(715)] = 19395, - [SMALL_STATE(716)] = 19497, - [SMALL_STATE(717)] = 19599, - [SMALL_STATE(718)] = 19701, - [SMALL_STATE(719)] = 19803, - [SMALL_STATE(720)] = 19905, - [SMALL_STATE(721)] = 20007, - [SMALL_STATE(722)] = 20109, - [SMALL_STATE(723)] = 20211, - [SMALL_STATE(724)] = 20313, - [SMALL_STATE(725)] = 20415, - [SMALL_STATE(726)] = 20517, - [SMALL_STATE(727)] = 20619, - [SMALL_STATE(728)] = 20721, - [SMALL_STATE(729)] = 20823, - [SMALL_STATE(730)] = 20925, - [SMALL_STATE(731)] = 21027, - [SMALL_STATE(732)] = 21129, - [SMALL_STATE(733)] = 21231, - [SMALL_STATE(734)] = 21333, - [SMALL_STATE(735)] = 21435, - [SMALL_STATE(736)] = 21537, - [SMALL_STATE(737)] = 21639, - [SMALL_STATE(738)] = 21741, - [SMALL_STATE(739)] = 21843, - [SMALL_STATE(740)] = 21945, - [SMALL_STATE(741)] = 22047, - [SMALL_STATE(742)] = 22149, - [SMALL_STATE(743)] = 22251, - [SMALL_STATE(744)] = 22353, - [SMALL_STATE(745)] = 22455, - [SMALL_STATE(746)] = 22557, - [SMALL_STATE(747)] = 22659, - [SMALL_STATE(748)] = 22761, - [SMALL_STATE(749)] = 22863, - [SMALL_STATE(750)] = 22965, - [SMALL_STATE(751)] = 23067, - [SMALL_STATE(752)] = 23146, - [SMALL_STATE(753)] = 23211, - [SMALL_STATE(754)] = 23276, - [SMALL_STATE(755)] = 23341, - [SMALL_STATE(756)] = 23406, - [SMALL_STATE(757)] = 23471, - [SMALL_STATE(758)] = 23536, - [SMALL_STATE(759)] = 23601, - [SMALL_STATE(760)] = 23666, - [SMALL_STATE(761)] = 23731, - [SMALL_STATE(762)] = 23796, - [SMALL_STATE(763)] = 23861, - [SMALL_STATE(764)] = 23940, - [SMALL_STATE(765)] = 24005, - [SMALL_STATE(766)] = 24070, - [SMALL_STATE(767)] = 24149, - [SMALL_STATE(768)] = 24214, - [SMALL_STATE(769)] = 24279, - [SMALL_STATE(770)] = 24344, - [SMALL_STATE(771)] = 24409, - [SMALL_STATE(772)] = 24483, - [SMALL_STATE(773)] = 24583, - [SMALL_STATE(774)] = 24683, - [SMALL_STATE(775)] = 24765, - [SMALL_STATE(776)] = 24829, - [SMALL_STATE(777)] = 24893, - [SMALL_STATE(778)] = 24993, - [SMALL_STATE(779)] = 25093, - [SMALL_STATE(780)] = 25157, - [SMALL_STATE(781)] = 25221, - [SMALL_STATE(782)] = 25295, - [SMALL_STATE(783)] = 25369, - [SMALL_STATE(784)] = 25443, - [SMALL_STATE(785)] = 25543, - [SMALL_STATE(786)] = 25643, - [SMALL_STATE(787)] = 25743, - [SMALL_STATE(788)] = 25819, - [SMALL_STATE(789)] = 25919, - [SMALL_STATE(790)] = 25991, - [SMALL_STATE(791)] = 26091, - [SMALL_STATE(792)] = 26155, - [SMALL_STATE(793)] = 26219, - [SMALL_STATE(794)] = 26295, - [SMALL_STATE(795)] = 26395, - [SMALL_STATE(796)] = 26459, - [SMALL_STATE(797)] = 26523, - [SMALL_STATE(798)] = 26587, - [SMALL_STATE(799)] = 26687, - [SMALL_STATE(800)] = 26751, - [SMALL_STATE(801)] = 26833, - [SMALL_STATE(802)] = 26907, - [SMALL_STATE(803)] = 27007, - [SMALL_STATE(804)] = 27080, - [SMALL_STATE(805)] = 27153, - [SMALL_STATE(806)] = 27250, - [SMALL_STATE(807)] = 27313, - [SMALL_STATE(808)] = 27396, - [SMALL_STATE(809)] = 27469, - [SMALL_STATE(810)] = 27552, - [SMALL_STATE(811)] = 27635, - [SMALL_STATE(812)] = 27706, - [SMALL_STATE(813)] = 27779, - [SMALL_STATE(814)] = 27842, - [SMALL_STATE(815)] = 27915, - [SMALL_STATE(816)] = 27978, - [SMALL_STATE(817)] = 28061, - [SMALL_STATE(818)] = 28134, - [SMALL_STATE(819)] = 28198, - [SMALL_STATE(820)] = 28264, - [SMALL_STATE(821)] = 28328, - [SMALL_STATE(822)] = 28390, - [SMALL_STATE(823)] = 28460, - [SMALL_STATE(824)] = 28524, - [SMALL_STATE(825)] = 28588, - [SMALL_STATE(826)] = 28658, - [SMALL_STATE(827)] = 28728, - [SMALL_STATE(828)] = 28792, - [SMALL_STATE(829)] = 28856, - [SMALL_STATE(830)] = 28926, - [SMALL_STATE(831)] = 28990, - [SMALL_STATE(832)] = 29052, - [SMALL_STATE(833)] = 29116, - [SMALL_STATE(834)] = 29180, - [SMALL_STATE(835)] = 29241, - [SMALL_STATE(836)] = 29302, - [SMALL_STATE(837)] = 29363, - [SMALL_STATE(838)] = 29424, - [SMALL_STATE(839)] = 29489, - [SMALL_STATE(840)] = 29554, - [SMALL_STATE(841)] = 29615, - [SMALL_STATE(842)] = 29676, - [SMALL_STATE(843)] = 29737, - [SMALL_STATE(844)] = 29798, - [SMALL_STATE(845)] = 29859, - [SMALL_STATE(846)] = 29920, - [SMALL_STATE(847)] = 29981, - [SMALL_STATE(848)] = 30042, - [SMALL_STATE(849)] = 30103, - [SMALL_STATE(850)] = 30164, - [SMALL_STATE(851)] = 30225, - [SMALL_STATE(852)] = 30286, - [SMALL_STATE(853)] = 30351, - [SMALL_STATE(854)] = 30412, - [SMALL_STATE(855)] = 30473, - [SMALL_STATE(856)] = 30534, - [SMALL_STATE(857)] = 30595, - [SMALL_STATE(858)] = 30656, - [SMALL_STATE(859)] = 30717, - [SMALL_STATE(860)] = 30778, - [SMALL_STATE(861)] = 30839, - [SMALL_STATE(862)] = 30900, - [SMALL_STATE(863)] = 30961, - [SMALL_STATE(864)] = 31022, - [SMALL_STATE(865)] = 31083, - [SMALL_STATE(866)] = 31144, - [SMALL_STATE(867)] = 31205, - [SMALL_STATE(868)] = 31266, - [SMALL_STATE(869)] = 31327, - [SMALL_STATE(870)] = 31388, - [SMALL_STATE(871)] = 31455, - [SMALL_STATE(872)] = 31516, - [SMALL_STATE(873)] = 31577, - [SMALL_STATE(874)] = 31638, - [SMALL_STATE(875)] = 31703, - [SMALL_STATE(876)] = 31764, - [SMALL_STATE(877)] = 31825, - [SMALL_STATE(878)] = 31886, - [SMALL_STATE(879)] = 31947, - [SMALL_STATE(880)] = 32012, - [SMALL_STATE(881)] = 32073, - [SMALL_STATE(882)] = 32134, - [SMALL_STATE(883)] = 32199, - [SMALL_STATE(884)] = 32266, - [SMALL_STATE(885)] = 32327, - [SMALL_STATE(886)] = 32392, - [SMALL_STATE(887)] = 32453, - [SMALL_STATE(888)] = 32514, - [SMALL_STATE(889)] = 32575, - [SMALL_STATE(890)] = 32636, - [SMALL_STATE(891)] = 32705, - [SMALL_STATE(892)] = 32766, - [SMALL_STATE(893)] = 32827, - [SMALL_STATE(894)] = 32888, - [SMALL_STATE(895)] = 32949, - [SMALL_STATE(896)] = 33010, - [SMALL_STATE(897)] = 33092, - [SMALL_STATE(898)] = 33152, - [SMALL_STATE(899)] = 33212, - [SMALL_STATE(900)] = 33294, - [SMALL_STATE(901)] = 33354, - [SMALL_STATE(902)] = 33436, - [SMALL_STATE(903)] = 33518, - [SMALL_STATE(904)] = 33577, - [SMALL_STATE(905)] = 33636, - [SMALL_STATE(906)] = 33709, - [SMALL_STATE(907)] = 33778, - [SMALL_STATE(908)] = 33837, - [SMALL_STATE(909)] = 33907, - [SMALL_STATE(910)] = 33989, - [SMALL_STATE(911)] = 34081, - [SMALL_STATE(912)] = 34161, - [SMALL_STATE(913)] = 34239, - [SMALL_STATE(914)] = 34331, - [SMALL_STATE(915)] = 34423, - [SMALL_STATE(916)] = 34497, - [SMALL_STATE(917)] = 34567, - [SMALL_STATE(918)] = 34653, - [SMALL_STATE(919)] = 34741, - [SMALL_STATE(920)] = 34813, - [SMALL_STATE(921)] = 34897, - [SMALL_STATE(922)] = 34954, - [SMALL_STATE(923)] = 35011, - [SMALL_STATE(924)] = 35068, - [SMALL_STATE(925)] = 35125, - [SMALL_STATE(926)] = 35182, - [SMALL_STATE(927)] = 35239, - [SMALL_STATE(928)] = 35296, - [SMALL_STATE(929)] = 35353, - [SMALL_STATE(930)] = 35418, - [SMALL_STATE(931)] = 35475, - [SMALL_STATE(932)] = 35532, - [SMALL_STATE(933)] = 35589, - [SMALL_STATE(934)] = 35646, - [SMALL_STATE(935)] = 35703, - [SMALL_STATE(936)] = 35760, - [SMALL_STATE(937)] = 35817, - [SMALL_STATE(938)] = 35874, - [SMALL_STATE(939)] = 35931, - [SMALL_STATE(940)] = 35988, - [SMALL_STATE(941)] = 36049, - [SMALL_STATE(942)] = 36106, - [SMALL_STATE(943)] = 36163, - [SMALL_STATE(944)] = 36220, - [SMALL_STATE(945)] = 36281, - [SMALL_STATE(946)] = 36338, - [SMALL_STATE(947)] = 36395, - [SMALL_STATE(948)] = 36452, - [SMALL_STATE(949)] = 36509, - [SMALL_STATE(950)] = 36566, - [SMALL_STATE(951)] = 36623, - [SMALL_STATE(952)] = 36680, - [SMALL_STATE(953)] = 36737, - [SMALL_STATE(954)] = 36794, - [SMALL_STATE(955)] = 36851, - [SMALL_STATE(956)] = 36908, - [SMALL_STATE(957)] = 36965, - [SMALL_STATE(958)] = 37022, - [SMALL_STATE(959)] = 37079, - [SMALL_STATE(960)] = 37136, - [SMALL_STATE(961)] = 37200, - [SMALL_STATE(962)] = 37262, - [SMALL_STATE(963)] = 37318, - [SMALL_STATE(964)] = 37380, - [SMALL_STATE(965)] = 37444, - [SMALL_STATE(966)] = 37500, - [SMALL_STATE(967)] = 37564, - [SMALL_STATE(968)] = 37619, - [SMALL_STATE(969)] = 37674, - [SMALL_STATE(970)] = 37732, - [SMALL_STATE(971)] = 37790, - [SMALL_STATE(972)] = 37848, - [SMALL_STATE(973)] = 37906, - [SMALL_STATE(974)] = 37960, - [SMALL_STATE(975)] = 38021, - [SMALL_STATE(976)] = 38084, - [SMALL_STATE(977)] = 38147, - [SMALL_STATE(978)] = 38210, - [SMALL_STATE(979)] = 38273, - [SMALL_STATE(980)] = 38336, - [SMALL_STATE(981)] = 38397, - [SMALL_STATE(982)] = 38460, - [SMALL_STATE(983)] = 38546, - [SMALL_STATE(984)] = 38632, - [SMALL_STATE(985)] = 38698, - [SMALL_STATE(986)] = 38766, - [SMALL_STATE(987)] = 38838, - [SMALL_STATE(988)] = 38890, - [SMALL_STATE(989)] = 38976, - [SMALL_STATE(990)] = 39054, - [SMALL_STATE(991)] = 39134, - [SMALL_STATE(992)] = 39210, - [SMALL_STATE(993)] = 39270, - [SMALL_STATE(994)] = 39344, - [SMALL_STATE(995)] = 39408, - [SMALL_STATE(996)] = 39472, - [SMALL_STATE(997)] = 39554, - [SMALL_STATE(998)] = 39609, - [SMALL_STATE(999)] = 39670, - [SMALL_STATE(1000)] = 39729, - [SMALL_STATE(1001)] = 39815, - [SMALL_STATE(1002)] = 39875, - [SMALL_STATE(1003)] = 39961, - [SMALL_STATE(1004)] = 40010, - [SMALL_STATE(1005)] = 40059, - [SMALL_STATE(1006)] = 40110, - [SMALL_STATE(1007)] = 40159, - [SMALL_STATE(1008)] = 40208, - [SMALL_STATE(1009)] = 40257, - [SMALL_STATE(1010)] = 40306, - [SMALL_STATE(1011)] = 40355, - [SMALL_STATE(1012)] = 40406, - [SMALL_STATE(1013)] = 40455, - [SMALL_STATE(1014)] = 40504, - [SMALL_STATE(1015)] = 40553, - [SMALL_STATE(1016)] = 40602, - [SMALL_STATE(1017)] = 40651, - [SMALL_STATE(1018)] = 40702, - [SMALL_STATE(1019)] = 40753, - [SMALL_STATE(1020)] = 40802, - [SMALL_STATE(1021)] = 40851, - [SMALL_STATE(1022)] = 40900, - [SMALL_STATE(1023)] = 40949, - [SMALL_STATE(1024)] = 40998, - [SMALL_STATE(1025)] = 41047, - [SMALL_STATE(1026)] = 41096, - [SMALL_STATE(1027)] = 41145, - [SMALL_STATE(1028)] = 41194, - [SMALL_STATE(1029)] = 41277, - [SMALL_STATE(1030)] = 41354, - [SMALL_STATE(1031)] = 41413, - [SMALL_STATE(1032)] = 41494, - [SMALL_STATE(1033)] = 41575, - [SMALL_STATE(1034)] = 41650, - [SMALL_STATE(1035)] = 41721, - [SMALL_STATE(1036)] = 41798, - [SMALL_STATE(1037)] = 41877, - [SMALL_STATE(1038)] = 41936, - [SMALL_STATE(1039)] = 42009, - [SMALL_STATE(1040)] = 42084, - [SMALL_STATE(1041)] = 42145, - [SMALL_STATE(1042)] = 42216, - [SMALL_STATE(1043)] = 42289, - [SMALL_STATE(1044)] = 42364, - [SMALL_STATE(1045)] = 42433, - [SMALL_STATE(1046)] = 42502, - [SMALL_STATE(1047)] = 42565, - [SMALL_STATE(1048)] = 42630, - [SMALL_STATE(1049)] = 42713, - [SMALL_STATE(1050)] = 42770, - [SMALL_STATE(1051)] = 42829, - [SMALL_STATE(1052)] = 42894, - [SMALL_STATE(1053)] = 42957, - [SMALL_STATE(1054)] = 43018, - [SMALL_STATE(1055)] = 43101, - [SMALL_STATE(1056)] = 43182, - [SMALL_STATE(1057)] = 43241, - [SMALL_STATE(1058)] = 43300, - [SMALL_STATE(1059)] = 43376, - [SMALL_STATE(1060)] = 43422, - [SMALL_STATE(1061)] = 43498, - [SMALL_STATE(1062)] = 43574, - [SMALL_STATE(1063)] = 43650, - [SMALL_STATE(1064)] = 43696, - [SMALL_STATE(1065)] = 43742, - [SMALL_STATE(1066)] = 43788, - [SMALL_STATE(1067)] = 43838, - [SMALL_STATE(1068)] = 43883, - [SMALL_STATE(1069)] = 43928, - [SMALL_STATE(1070)] = 43979, - [SMALL_STATE(1071)] = 44024, - [SMALL_STATE(1072)] = 44069, - [SMALL_STATE(1073)] = 44113, - [SMALL_STATE(1074)] = 44157, - [SMALL_STATE(1075)] = 44201, - [SMALL_STATE(1076)] = 44245, - [SMALL_STATE(1077)] = 44289, - [SMALL_STATE(1078)] = 44333, - [SMALL_STATE(1079)] = 44377, - [SMALL_STATE(1080)] = 44421, - [SMALL_STATE(1081)] = 44465, - [SMALL_STATE(1082)] = 44509, - [SMALL_STATE(1083)] = 44553, - [SMALL_STATE(1084)] = 44597, - [SMALL_STATE(1085)] = 44641, - [SMALL_STATE(1086)] = 44685, - [SMALL_STATE(1087)] = 44763, - [SMALL_STATE(1088)] = 44807, - [SMALL_STATE(1089)] = 44851, - [SMALL_STATE(1090)] = 44895, - [SMALL_STATE(1091)] = 44939, - [SMALL_STATE(1092)] = 44996, - [SMALL_STATE(1093)] = 45051, - [SMALL_STATE(1094)] = 45121, - [SMALL_STATE(1095)] = 45191, - [SMALL_STATE(1096)] = 45263, - [SMALL_STATE(1097)] = 45335, - [SMALL_STATE(1098)] = 45402, - [SMALL_STATE(1099)] = 45465, - [SMALL_STATE(1100)] = 45542, - [SMALL_STATE(1101)] = 45609, - [SMALL_STATE(1102)] = 45676, - [SMALL_STATE(1103)] = 45725, - [SMALL_STATE(1104)] = 45802, - [SMALL_STATE(1105)] = 45859, - [SMALL_STATE(1106)] = 45918, - [SMALL_STATE(1107)] = 45967, - [SMALL_STATE(1108)] = 46044, - [SMALL_STATE(1109)] = 46121, - [SMALL_STATE(1110)] = 46188, - [SMALL_STATE(1111)] = 46255, - [SMALL_STATE(1112)] = 46320, - [SMALL_STATE(1113)] = 46387, - [SMALL_STATE(1114)] = 46456, - [SMALL_STATE(1115)] = 46527, - [SMALL_STATE(1116)] = 46600, - [SMALL_STATE(1117)] = 46649, - [SMALL_STATE(1118)] = 46704, - [SMALL_STATE(1119)] = 46771, - [SMALL_STATE(1120)] = 46838, - [SMALL_STATE(1121)] = 46905, - [SMALL_STATE(1122)] = 46953, - [SMALL_STATE(1123)] = 47016, - [SMALL_STATE(1124)] = 47079, - [SMALL_STATE(1125)] = 47142, - [SMALL_STATE(1126)] = 47205, - [SMALL_STATE(1127)] = 47268, - [SMALL_STATE(1128)] = 47331, - [SMALL_STATE(1129)] = 47394, - [SMALL_STATE(1130)] = 47457, - [SMALL_STATE(1131)] = 47520, - [SMALL_STATE(1132)] = 47583, - [SMALL_STATE(1133)] = 47646, - [SMALL_STATE(1134)] = 47709, - [SMALL_STATE(1135)] = 47772, - [SMALL_STATE(1136)] = 47832, - [SMALL_STATE(1137)] = 47892, - [SMALL_STATE(1138)] = 47952, - [SMALL_STATE(1139)] = 48026, - [SMALL_STATE(1140)] = 48086, - [SMALL_STATE(1141)] = 48146, - [SMALL_STATE(1142)] = 48192, - [SMALL_STATE(1143)] = 48252, - [SMALL_STATE(1144)] = 48327, - [SMALL_STATE(1145)] = 48402, - [SMALL_STATE(1146)] = 48439, - [SMALL_STATE(1147)] = 48514, - [SMALL_STATE(1148)] = 48589, - [SMALL_STATE(1149)] = 48664, - [SMALL_STATE(1150)] = 48701, - [SMALL_STATE(1151)] = 48776, - [SMALL_STATE(1152)] = 48842, - [SMALL_STATE(1153)] = 48904, - [SMALL_STATE(1154)] = 48976, - [SMALL_STATE(1155)] = 49048, - [SMALL_STATE(1156)] = 49120, - [SMALL_STATE(1157)] = 49192, - [SMALL_STATE(1158)] = 49264, - [SMALL_STATE(1159)] = 49334, - [SMALL_STATE(1160)] = 49406, - [SMALL_STATE(1161)] = 49478, - [SMALL_STATE(1162)] = 49550, - [SMALL_STATE(1163)] = 49620, - [SMALL_STATE(1164)] = 49692, - [SMALL_STATE(1165)] = 49746, - [SMALL_STATE(1166)] = 49802, - [SMALL_STATE(1167)] = 49862, - [SMALL_STATE(1168)] = 49934, - [SMALL_STATE(1169)] = 49998, - [SMALL_STATE(1170)] = 50070, - [SMALL_STATE(1171)] = 50136, - [SMALL_STATE(1172)] = 50208, - [SMALL_STATE(1173)] = 50276, - [SMALL_STATE(1174)] = 50348, - [SMALL_STATE(1175)] = 50400, - [SMALL_STATE(1176)] = 50472, - [SMALL_STATE(1177)] = 50544, - [SMALL_STATE(1178)] = 50616, - [SMALL_STATE(1179)] = 50688, - [SMALL_STATE(1180)] = 50760, - [SMALL_STATE(1181)] = 50830, - [SMALL_STATE(1182)] = 50902, - [SMALL_STATE(1183)] = 50972, - [SMALL_STATE(1184)] = 51042, - [SMALL_STATE(1185)] = 51112, - [SMALL_STATE(1186)] = 51184, - [SMALL_STATE(1187)] = 51256, - [SMALL_STATE(1188)] = 51328, - [SMALL_STATE(1189)] = 51398, - [SMALL_STATE(1190)] = 51470, - [SMALL_STATE(1191)] = 51542, - [SMALL_STATE(1192)] = 51614, - [SMALL_STATE(1193)] = 51686, - [SMALL_STATE(1194)] = 51758, - [SMALL_STATE(1195)] = 51828, - [SMALL_STATE(1196)] = 51900, - [SMALL_STATE(1197)] = 51972, - [SMALL_STATE(1198)] = 52046, - [SMALL_STATE(1199)] = 52115, - [SMALL_STATE(1200)] = 52184, - [SMALL_STATE(1201)] = 52253, - [SMALL_STATE(1202)] = 52322, - [SMALL_STATE(1203)] = 52391, - [SMALL_STATE(1204)] = 52460, - [SMALL_STATE(1205)] = 52529, - [SMALL_STATE(1206)] = 52598, - [SMALL_STATE(1207)] = 52667, - [SMALL_STATE(1208)] = 52736, - [SMALL_STATE(1209)] = 52805, - [SMALL_STATE(1210)] = 52874, - [SMALL_STATE(1211)] = 52943, - [SMALL_STATE(1212)] = 53012, - [SMALL_STATE(1213)] = 53081, - [SMALL_STATE(1214)] = 53150, - [SMALL_STATE(1215)] = 53219, - [SMALL_STATE(1216)] = 53288, - [SMALL_STATE(1217)] = 53357, - [SMALL_STATE(1218)] = 53426, - [SMALL_STATE(1219)] = 53495, - [SMALL_STATE(1220)] = 53564, - [SMALL_STATE(1221)] = 53618, - [SMALL_STATE(1222)] = 53666, - [SMALL_STATE(1223)] = 53720, - [SMALL_STATE(1224)] = 53756, - [SMALL_STATE(1225)] = 53810, - [SMALL_STATE(1226)] = 53876, - [SMALL_STATE(1227)] = 53930, - [SMALL_STATE(1228)] = 53986, - [SMALL_STATE(1229)] = 54040, - [SMALL_STATE(1230)] = 54094, - [SMALL_STATE(1231)] = 54145, - [SMALL_STATE(1232)] = 54206, - [SMALL_STATE(1233)] = 54257, - [SMALL_STATE(1234)] = 54308, - [SMALL_STATE(1235)] = 54369, - [SMALL_STATE(1236)] = 54430, - [SMALL_STATE(1237)] = 54481, - [SMALL_STATE(1238)] = 54532, - [SMALL_STATE(1239)] = 54593, - [SMALL_STATE(1240)] = 54644, - [SMALL_STATE(1241)] = 54702, - [SMALL_STATE(1242)] = 54760, - [SMALL_STATE(1243)] = 54818, - [SMALL_STATE(1244)] = 54856, - [SMALL_STATE(1245)] = 54914, - [SMALL_STATE(1246)] = 54972, - [SMALL_STATE(1247)] = 55012, - [SMALL_STATE(1248)] = 55070, - [SMALL_STATE(1249)] = 55128, - [SMALL_STATE(1250)] = 55186, - [SMALL_STATE(1251)] = 55244, - [SMALL_STATE(1252)] = 55302, - [SMALL_STATE(1253)] = 55360, - [SMALL_STATE(1254)] = 55399, - [SMALL_STATE(1255)] = 55438, - [SMALL_STATE(1256)] = 55483, - [SMALL_STATE(1257)] = 55522, - [SMALL_STATE(1258)] = 55573, - [SMALL_STATE(1259)] = 55612, - [SMALL_STATE(1260)] = 55652, - [SMALL_STATE(1261)] = 55702, - [SMALL_STATE(1262)] = 55754, - [SMALL_STATE(1263)] = 55794, - [SMALL_STATE(1264)] = 55834, - [SMALL_STATE(1265)] = 55886, - [SMALL_STATE(1266)] = 55936, - [SMALL_STATE(1267)] = 55984, - [SMALL_STATE(1268)] = 56034, - [SMALL_STATE(1269)] = 56086, - [SMALL_STATE(1270)] = 56136, - [SMALL_STATE(1271)] = 56170, - [SMALL_STATE(1272)] = 56210, - [SMALL_STATE(1273)] = 56243, - [SMALL_STATE(1274)] = 56276, - [SMALL_STATE(1275)] = 56323, - [SMALL_STATE(1276)] = 56366, - [SMALL_STATE(1277)] = 56421, - [SMALL_STATE(1278)] = 56476, - [SMALL_STATE(1279)] = 56519, - [SMALL_STATE(1280)] = 56552, - [SMALL_STATE(1281)] = 56599, - [SMALL_STATE(1282)] = 56654, - [SMALL_STATE(1283)] = 56705, - [SMALL_STATE(1284)] = 56752, - [SMALL_STATE(1285)] = 56787, - [SMALL_STATE(1286)] = 56834, - [SMALL_STATE(1287)] = 56881, - [SMALL_STATE(1288)] = 56918, - [SMALL_STATE(1289)] = 56951, - [SMALL_STATE(1290)] = 56984, - [SMALL_STATE(1291)] = 57017, - [SMALL_STATE(1292)] = 57060, - [SMALL_STATE(1293)] = 57093, - [SMALL_STATE(1294)] = 57126, - [SMALL_STATE(1295)] = 57173, - [SMALL_STATE(1296)] = 57206, - [SMALL_STATE(1297)] = 57239, - [SMALL_STATE(1298)] = 57279, - [SMALL_STATE(1299)] = 57319, - [SMALL_STATE(1300)] = 57359, - [SMALL_STATE(1301)] = 57399, - [SMALL_STATE(1302)] = 57439, - [SMALL_STATE(1303)] = 57479, - [SMALL_STATE(1304)] = 57519, - [SMALL_STATE(1305)] = 57559, - [SMALL_STATE(1306)] = 57599, - [SMALL_STATE(1307)] = 57639, - [SMALL_STATE(1308)] = 57667, - [SMALL_STATE(1309)] = 57695, - [SMALL_STATE(1310)] = 57735, - [SMALL_STATE(1311)] = 57775, - [SMALL_STATE(1312)] = 57815, - [SMALL_STATE(1313)] = 57855, - [SMALL_STATE(1314)] = 57901, - [SMALL_STATE(1315)] = 57941, - [SMALL_STATE(1316)] = 57981, - [SMALL_STATE(1317)] = 58021, - [SMALL_STATE(1318)] = 58061, - [SMALL_STATE(1319)] = 58101, - [SMALL_STATE(1320)] = 58147, - [SMALL_STATE(1321)] = 58187, - [SMALL_STATE(1322)] = 58227, - [SMALL_STATE(1323)] = 58267, - [SMALL_STATE(1324)] = 58307, - [SMALL_STATE(1325)] = 58347, - [SMALL_STATE(1326)] = 58387, - [SMALL_STATE(1327)] = 58427, - [SMALL_STATE(1328)] = 58467, - [SMALL_STATE(1329)] = 58495, - [SMALL_STATE(1330)] = 58527, - [SMALL_STATE(1331)] = 58567, - [SMALL_STATE(1332)] = 58595, - [SMALL_STATE(1333)] = 58635, - [SMALL_STATE(1334)] = 58675, - [SMALL_STATE(1335)] = 58707, - [SMALL_STATE(1336)] = 58747, - [SMALL_STATE(1337)] = 58795, - [SMALL_STATE(1338)] = 58835, - [SMALL_STATE(1339)] = 58885, - [SMALL_STATE(1340)] = 58925, - [SMALL_STATE(1341)] = 58965, - [SMALL_STATE(1342)] = 58993, - [SMALL_STATE(1343)] = 59033, - [SMALL_STATE(1344)] = 59081, - [SMALL_STATE(1345)] = 59121, - [SMALL_STATE(1346)] = 59155, - [SMALL_STATE(1347)] = 59195, - [SMALL_STATE(1348)] = 59235, - [SMALL_STATE(1349)] = 59275, - [SMALL_STATE(1350)] = 59311, - [SMALL_STATE(1351)] = 59351, - [SMALL_STATE(1352)] = 59393, - [SMALL_STATE(1353)] = 59437, - [SMALL_STATE(1354)] = 59465, - [SMALL_STATE(1355)] = 59498, - [SMALL_STATE(1356)] = 59525, - [SMALL_STATE(1357)] = 59566, - [SMALL_STATE(1358)] = 59593, - [SMALL_STATE(1359)] = 59632, - [SMALL_STATE(1360)] = 59659, - [SMALL_STATE(1361)] = 59686, - [SMALL_STATE(1362)] = 59729, - [SMALL_STATE(1363)] = 59774, - [SMALL_STATE(1364)] = 59819, - [SMALL_STATE(1365)] = 59868, - [SMALL_STATE(1366)] = 59905, - [SMALL_STATE(1367)] = 59932, - [SMALL_STATE(1368)] = 59977, - [SMALL_STATE(1369)] = 60004, - [SMALL_STATE(1370)] = 60033, - [SMALL_STATE(1371)] = 60060, - [SMALL_STATE(1372)] = 60095, - [SMALL_STATE(1373)] = 60126, - [SMALL_STATE(1374)] = 60171, - [SMALL_STATE(1375)] = 60216, - [SMALL_STATE(1376)] = 60243, - [SMALL_STATE(1377)] = 60288, - [SMALL_STATE(1378)] = 60333, - [SMALL_STATE(1379)] = 60378, - [SMALL_STATE(1380)] = 60405, - [SMALL_STATE(1381)] = 60432, - [SMALL_STATE(1382)] = 60477, - [SMALL_STATE(1383)] = 60522, - [SMALL_STATE(1384)] = 60567, - [SMALL_STATE(1385)] = 60612, - [SMALL_STATE(1386)] = 60657, - [SMALL_STATE(1387)] = 60700, - [SMALL_STATE(1388)] = 60745, - [SMALL_STATE(1389)] = 60790, - [SMALL_STATE(1390)] = 60839, - [SMALL_STATE(1391)] = 60884, - [SMALL_STATE(1392)] = 60928, - [SMALL_STATE(1393)] = 60962, - [SMALL_STATE(1394)] = 60996, - [SMALL_STATE(1395)] = 61034, - [SMALL_STATE(1396)] = 61066, - [SMALL_STATE(1397)] = 61100, - [SMALL_STATE(1398)] = 61134, - [SMALL_STATE(1399)] = 61178, - [SMALL_STATE(1400)] = 61211, - [SMALL_STATE(1401)] = 61252, - [SMALL_STATE(1402)] = 61293, - [SMALL_STATE(1403)] = 61334, - [SMALL_STATE(1404)] = 61367, - [SMALL_STATE(1405)] = 61404, - [SMALL_STATE(1406)] = 61445, - [SMALL_STATE(1407)] = 61486, - [SMALL_STATE(1408)] = 61527, - [SMALL_STATE(1409)] = 61568, - [SMALL_STATE(1410)] = 61597, - [SMALL_STATE(1411)] = 61630, - [SMALL_STATE(1412)] = 61671, - [SMALL_STATE(1413)] = 61704, - [SMALL_STATE(1414)] = 61748, - [SMALL_STATE(1415)] = 61792, - [SMALL_STATE(1416)] = 61836, - [SMALL_STATE(1417)] = 61880, - [SMALL_STATE(1418)] = 61924, - [SMALL_STATE(1419)] = 61952, - [SMALL_STATE(1420)] = 61996, - [SMALL_STATE(1421)] = 62034, - [SMALL_STATE(1422)] = 62072, - [SMALL_STATE(1423)] = 62116, - [SMALL_STATE(1424)] = 62160, - [SMALL_STATE(1425)] = 62204, - [SMALL_STATE(1426)] = 62236, - [SMALL_STATE(1427)] = 62280, - [SMALL_STATE(1428)] = 62318, - [SMALL_STATE(1429)] = 62362, - [SMALL_STATE(1430)] = 62385, - [SMALL_STATE(1431)] = 62408, - [SMALL_STATE(1432)] = 62431, - [SMALL_STATE(1433)] = 62454, - [SMALL_STATE(1434)] = 62493, - [SMALL_STATE(1435)] = 62532, - [SMALL_STATE(1436)] = 62571, - [SMALL_STATE(1437)] = 62594, - [SMALL_STATE(1438)] = 62617, - [SMALL_STATE(1439)] = 62640, - [SMALL_STATE(1440)] = 62663, - [SMALL_STATE(1441)] = 62686, - [SMALL_STATE(1442)] = 62709, - [SMALL_STATE(1443)] = 62748, - [SMALL_STATE(1444)] = 62770, - [SMALL_STATE(1445)] = 62792, - [SMALL_STATE(1446)] = 62828, - [SMALL_STATE(1447)] = 62856, - [SMALL_STATE(1448)] = 62878, - [SMALL_STATE(1449)] = 62900, - [SMALL_STATE(1450)] = 62922, - [SMALL_STATE(1451)] = 62958, - [SMALL_STATE(1452)] = 62980, - [SMALL_STATE(1453)] = 63002, - [SMALL_STATE(1454)] = 63038, - [SMALL_STATE(1455)] = 63060, - [SMALL_STATE(1456)] = 63088, - [SMALL_STATE(1457)] = 63116, - [SMALL_STATE(1458)] = 63152, - [SMALL_STATE(1459)] = 63174, - [SMALL_STATE(1460)] = 63210, - [SMALL_STATE(1461)] = 63232, - [SMALL_STATE(1462)] = 63268, - [SMALL_STATE(1463)] = 63304, - [SMALL_STATE(1464)] = 63326, - [SMALL_STATE(1465)] = 63355, - [SMALL_STATE(1466)] = 63384, - [SMALL_STATE(1467)] = 63421, - [SMALL_STATE(1468)] = 63458, - [SMALL_STATE(1469)] = 63495, - [SMALL_STATE(1470)] = 63532, - [SMALL_STATE(1471)] = 63569, - [SMALL_STATE(1472)] = 63602, - [SMALL_STATE(1473)] = 63639, - [SMALL_STATE(1474)] = 63668, - [SMALL_STATE(1475)] = 63705, - [SMALL_STATE(1476)] = 63742, - [SMALL_STATE(1477)] = 63771, - [SMALL_STATE(1478)] = 63808, - [SMALL_STATE(1479)] = 63845, - [SMALL_STATE(1480)] = 63882, - [SMALL_STATE(1481)] = 63919, - [SMALL_STATE(1482)] = 63956, - [SMALL_STATE(1483)] = 63993, - [SMALL_STATE(1484)] = 64030, - [SMALL_STATE(1485)] = 64067, - [SMALL_STATE(1486)] = 64104, - [SMALL_STATE(1487)] = 64141, - [SMALL_STATE(1488)] = 64178, - [SMALL_STATE(1489)] = 64215, - [SMALL_STATE(1490)] = 64252, - [SMALL_STATE(1491)] = 64289, - [SMALL_STATE(1492)] = 64322, - [SMALL_STATE(1493)] = 64346, - [SMALL_STATE(1494)] = 64378, - [SMALL_STATE(1495)] = 64410, - [SMALL_STATE(1496)] = 64442, - [SMALL_STATE(1497)] = 64474, - [SMALL_STATE(1498)] = 64506, - [SMALL_STATE(1499)] = 64538, - [SMALL_STATE(1500)] = 64570, - [SMALL_STATE(1501)] = 64602, - [SMALL_STATE(1502)] = 64634, - [SMALL_STATE(1503)] = 64665, - [SMALL_STATE(1504)] = 64694, - [SMALL_STATE(1505)] = 64723, - [SMALL_STATE(1506)] = 64752, - [SMALL_STATE(1507)] = 64783, - [SMALL_STATE(1508)] = 64812, - [SMALL_STATE(1509)] = 64837, - [SMALL_STATE(1510)] = 64866, - [SMALL_STATE(1511)] = 64897, - [SMALL_STATE(1512)] = 64922, - [SMALL_STATE(1513)] = 64951, - [SMALL_STATE(1514)] = 64980, - [SMALL_STATE(1515)] = 65009, - [SMALL_STATE(1516)] = 65040, - [SMALL_STATE(1517)] = 65065, - [SMALL_STATE(1518)] = 65090, - [SMALL_STATE(1519)] = 65115, - [SMALL_STATE(1520)] = 65144, - [SMALL_STATE(1521)] = 65169, - [SMALL_STATE(1522)] = 65198, - [SMALL_STATE(1523)] = 65229, - [SMALL_STATE(1524)] = 65254, - [SMALL_STATE(1525)] = 65283, - [SMALL_STATE(1526)] = 65308, - [SMALL_STATE(1527)] = 65337, - [SMALL_STATE(1528)] = 65362, - [SMALL_STATE(1529)] = 65383, - [SMALL_STATE(1530)] = 65408, - [SMALL_STATE(1531)] = 65437, - [SMALL_STATE(1532)] = 65462, - [SMALL_STATE(1533)] = 65483, - [SMALL_STATE(1534)] = 65512, - [SMALL_STATE(1535)] = 65543, - [SMALL_STATE(1536)] = 65568, - [SMALL_STATE(1537)] = 65597, - [SMALL_STATE(1538)] = 65622, - [SMALL_STATE(1539)] = 65651, - [SMALL_STATE(1540)] = 65682, - [SMALL_STATE(1541)] = 65711, - [SMALL_STATE(1542)] = 65740, - [SMALL_STATE(1543)] = 65765, - [SMALL_STATE(1544)] = 65790, - [SMALL_STATE(1545)] = 65811, - [SMALL_STATE(1546)] = 65842, - [SMALL_STATE(1547)] = 65863, - [SMALL_STATE(1548)] = 65884, - [SMALL_STATE(1549)] = 65905, - [SMALL_STATE(1550)] = 65934, - [SMALL_STATE(1551)] = 65959, - [SMALL_STATE(1552)] = 65988, - [SMALL_STATE(1553)] = 66013, - [SMALL_STATE(1554)] = 66037, - [SMALL_STATE(1555)] = 66055, - [SMALL_STATE(1556)] = 66087, - [SMALL_STATE(1557)] = 66119, - [SMALL_STATE(1558)] = 66143, - [SMALL_STATE(1559)] = 66161, - [SMALL_STATE(1560)] = 66179, - [SMALL_STATE(1561)] = 66197, - [SMALL_STATE(1562)] = 66229, - [SMALL_STATE(1563)] = 66253, - [SMALL_STATE(1564)] = 66269, - [SMALL_STATE(1565)] = 66293, - [SMALL_STATE(1566)] = 66311, - [SMALL_STATE(1567)] = 66335, - [SMALL_STATE(1568)] = 66353, - [SMALL_STATE(1569)] = 66385, - [SMALL_STATE(1570)] = 66403, - [SMALL_STATE(1571)] = 66421, - [SMALL_STATE(1572)] = 66442, - [SMALL_STATE(1573)] = 66463, - [SMALL_STATE(1574)] = 66484, - [SMALL_STATE(1575)] = 66505, - [SMALL_STATE(1576)] = 66526, - [SMALL_STATE(1577)] = 66555, - [SMALL_STATE(1578)] = 66576, - [SMALL_STATE(1579)] = 66605, - [SMALL_STATE(1580)] = 66634, - [SMALL_STATE(1581)] = 66663, - [SMALL_STATE(1582)] = 66682, - [SMALL_STATE(1583)] = 66711, - [SMALL_STATE(1584)] = 66736, - [SMALL_STATE(1585)] = 66757, - [SMALL_STATE(1586)] = 66786, - [SMALL_STATE(1587)] = 66815, - [SMALL_STATE(1588)] = 66840, - [SMALL_STATE(1589)] = 66869, - [SMALL_STATE(1590)] = 66895, - [SMALL_STATE(1591)] = 66915, - [SMALL_STATE(1592)] = 66941, - [SMALL_STATE(1593)] = 66967, - [SMALL_STATE(1594)] = 66993, - [SMALL_STATE(1595)] = 67017, - [SMALL_STATE(1596)] = 67043, - [SMALL_STATE(1597)] = 67069, - [SMALL_STATE(1598)] = 67095, - [SMALL_STATE(1599)] = 67115, - [SMALL_STATE(1600)] = 67141, - [SMALL_STATE(1601)] = 67167, - [SMALL_STATE(1602)] = 67193, - [SMALL_STATE(1603)] = 67219, - [SMALL_STATE(1604)] = 67245, - [SMALL_STATE(1605)] = 67271, - [SMALL_STATE(1606)] = 67289, - [SMALL_STATE(1607)] = 67315, - [SMALL_STATE(1608)] = 67341, - [SMALL_STATE(1609)] = 67367, - [SMALL_STATE(1610)] = 67393, - [SMALL_STATE(1611)] = 67419, - [SMALL_STATE(1612)] = 67445, - [SMALL_STATE(1613)] = 67471, - [SMALL_STATE(1614)] = 67497, - [SMALL_STATE(1615)] = 67517, - [SMALL_STATE(1616)] = 67539, - [SMALL_STATE(1617)] = 67565, - [SMALL_STATE(1618)] = 67591, - [SMALL_STATE(1619)] = 67617, - [SMALL_STATE(1620)] = 67643, - [SMALL_STATE(1621)] = 67669, - [SMALL_STATE(1622)] = 67695, - [SMALL_STATE(1623)] = 67721, - [SMALL_STATE(1624)] = 67740, - [SMALL_STATE(1625)] = 67763, - [SMALL_STATE(1626)] = 67786, - [SMALL_STATE(1627)] = 67809, - [SMALL_STATE(1628)] = 67828, - [SMALL_STATE(1629)] = 67851, - [SMALL_STATE(1630)] = 67868, - [SMALL_STATE(1631)] = 67891, - [SMALL_STATE(1632)] = 67914, - [SMALL_STATE(1633)] = 67937, - [SMALL_STATE(1634)] = 67960, - [SMALL_STATE(1635)] = 67983, - [SMALL_STATE(1636)] = 68006, - [SMALL_STATE(1637)] = 68029, - [SMALL_STATE(1638)] = 68049, - [SMALL_STATE(1639)] = 68067, - [SMALL_STATE(1640)] = 68081, - [SMALL_STATE(1641)] = 68097, - [SMALL_STATE(1642)] = 68113, - [SMALL_STATE(1643)] = 68133, - [SMALL_STATE(1644)] = 68153, - [SMALL_STATE(1645)] = 68167, - [SMALL_STATE(1646)] = 68187, - [SMALL_STATE(1647)] = 68207, - [SMALL_STATE(1648)] = 68227, - [SMALL_STATE(1649)] = 68241, - [SMALL_STATE(1650)] = 68259, - [SMALL_STATE(1651)] = 68273, - [SMALL_STATE(1652)] = 68287, - [SMALL_STATE(1653)] = 68307, - [SMALL_STATE(1654)] = 68327, - [SMALL_STATE(1655)] = 68347, - [SMALL_STATE(1656)] = 68367, - [SMALL_STATE(1657)] = 68381, - [SMALL_STATE(1658)] = 68399, - [SMALL_STATE(1659)] = 68417, - [SMALL_STATE(1660)] = 68437, - [SMALL_STATE(1661)] = 68457, - [SMALL_STATE(1662)] = 68477, - [SMALL_STATE(1663)] = 68497, - [SMALL_STATE(1664)] = 68517, - [SMALL_STATE(1665)] = 68537, - [SMALL_STATE(1666)] = 68551, - [SMALL_STATE(1667)] = 68571, - [SMALL_STATE(1668)] = 68591, - [SMALL_STATE(1669)] = 68611, - [SMALL_STATE(1670)] = 68625, - [SMALL_STATE(1671)] = 68639, - [SMALL_STATE(1672)] = 68659, - [SMALL_STATE(1673)] = 68677, - [SMALL_STATE(1674)] = 68697, - [SMALL_STATE(1675)] = 68711, - [SMALL_STATE(1676)] = 68727, - [SMALL_STATE(1677)] = 68741, - [SMALL_STATE(1678)] = 68755, - [SMALL_STATE(1679)] = 68775, - [SMALL_STATE(1680)] = 68795, - [SMALL_STATE(1681)] = 68809, - [SMALL_STATE(1682)] = 68829, - [SMALL_STATE(1683)] = 68847, - [SMALL_STATE(1684)] = 68865, - [SMALL_STATE(1685)] = 68879, - [SMALL_STATE(1686)] = 68899, - [SMALL_STATE(1687)] = 68913, - [SMALL_STATE(1688)] = 68933, - [SMALL_STATE(1689)] = 68953, - [SMALL_STATE(1690)] = 68973, - [SMALL_STATE(1691)] = 68984, - [SMALL_STATE(1692)] = 68995, - [SMALL_STATE(1693)] = 69014, - [SMALL_STATE(1694)] = 69025, - [SMALL_STATE(1695)] = 69040, - [SMALL_STATE(1696)] = 69055, - [SMALL_STATE(1697)] = 69074, - [SMALL_STATE(1698)] = 69085, - [SMALL_STATE(1699)] = 69104, - [SMALL_STATE(1700)] = 69115, - [SMALL_STATE(1701)] = 69134, - [SMALL_STATE(1702)] = 69149, - [SMALL_STATE(1703)] = 69160, - [SMALL_STATE(1704)] = 69179, - [SMALL_STATE(1705)] = 69190, - [SMALL_STATE(1706)] = 69209, - [SMALL_STATE(1707)] = 69220, - [SMALL_STATE(1708)] = 69239, - [SMALL_STATE(1709)] = 69250, - [SMALL_STATE(1710)] = 69261, - [SMALL_STATE(1711)] = 69272, - [SMALL_STATE(1712)] = 69291, - [SMALL_STATE(1713)] = 69308, - [SMALL_STATE(1714)] = 69327, - [SMALL_STATE(1715)] = 69346, - [SMALL_STATE(1716)] = 69357, - [SMALL_STATE(1717)] = 69368, - [SMALL_STATE(1718)] = 69379, - [SMALL_STATE(1719)] = 69396, - [SMALL_STATE(1720)] = 69412, - [SMALL_STATE(1721)] = 69426, - [SMALL_STATE(1722)] = 69440, - [SMALL_STATE(1723)] = 69456, - [SMALL_STATE(1724)] = 69470, - [SMALL_STATE(1725)] = 69484, - [SMALL_STATE(1726)] = 69498, - [SMALL_STATE(1727)] = 69514, - [SMALL_STATE(1728)] = 69530, - [SMALL_STATE(1729)] = 69544, - [SMALL_STATE(1730)] = 69558, - [SMALL_STATE(1731)] = 69572, - [SMALL_STATE(1732)] = 69588, - [SMALL_STATE(1733)] = 69604, - [SMALL_STATE(1734)] = 69620, - [SMALL_STATE(1735)] = 69634, - [SMALL_STATE(1736)] = 69650, - [SMALL_STATE(1737)] = 69664, - [SMALL_STATE(1738)] = 69674, - [SMALL_STATE(1739)] = 69690, - [SMALL_STATE(1740)] = 69700, - [SMALL_STATE(1741)] = 69714, - [SMALL_STATE(1742)] = 69728, - [SMALL_STATE(1743)] = 69742, - [SMALL_STATE(1744)] = 69758, - [SMALL_STATE(1745)] = 69772, - [SMALL_STATE(1746)] = 69786, - [SMALL_STATE(1747)] = 69802, - [SMALL_STATE(1748)] = 69816, - [SMALL_STATE(1749)] = 69830, - [SMALL_STATE(1750)] = 69846, - [SMALL_STATE(1751)] = 69860, - [SMALL_STATE(1752)] = 69876, - [SMALL_STATE(1753)] = 69892, - [SMALL_STATE(1754)] = 69906, - [SMALL_STATE(1755)] = 69920, - [SMALL_STATE(1756)] = 69934, - [SMALL_STATE(1757)] = 69947, - [SMALL_STATE(1758)] = 69960, - [SMALL_STATE(1759)] = 69973, - [SMALL_STATE(1760)] = 69986, - [SMALL_STATE(1761)] = 69999, - [SMALL_STATE(1762)] = 70012, - [SMALL_STATE(1763)] = 70025, - [SMALL_STATE(1764)] = 70038, - [SMALL_STATE(1765)] = 70051, - [SMALL_STATE(1766)] = 70064, - [SMALL_STATE(1767)] = 70077, - [SMALL_STATE(1768)] = 70090, - [SMALL_STATE(1769)] = 70103, - [SMALL_STATE(1770)] = 70116, - [SMALL_STATE(1771)] = 70129, - [SMALL_STATE(1772)] = 70142, - [SMALL_STATE(1773)] = 70155, - [SMALL_STATE(1774)] = 70168, - [SMALL_STATE(1775)] = 70181, - [SMALL_STATE(1776)] = 70194, - [SMALL_STATE(1777)] = 70207, - [SMALL_STATE(1778)] = 70220, - [SMALL_STATE(1779)] = 70233, - [SMALL_STATE(1780)] = 70242, - [SMALL_STATE(1781)] = 70255, - [SMALL_STATE(1782)] = 70268, - [SMALL_STATE(1783)] = 70277, - [SMALL_STATE(1784)] = 70290, - [SMALL_STATE(1785)] = 70303, - [SMALL_STATE(1786)] = 70316, - [SMALL_STATE(1787)] = 70329, - [SMALL_STATE(1788)] = 70342, - [SMALL_STATE(1789)] = 70353, - [SMALL_STATE(1790)] = 70366, - [SMALL_STATE(1791)] = 70379, - [SMALL_STATE(1792)] = 70388, - [SMALL_STATE(1793)] = 70401, - [SMALL_STATE(1794)] = 70410, - [SMALL_STATE(1795)] = 70423, - [SMALL_STATE(1796)] = 70436, - [SMALL_STATE(1797)] = 70449, - [SMALL_STATE(1798)] = 70462, - [SMALL_STATE(1799)] = 70475, - [SMALL_STATE(1800)] = 70488, - [SMALL_STATE(1801)] = 70501, - [SMALL_STATE(1802)] = 70512, - [SMALL_STATE(1803)] = 70525, - [SMALL_STATE(1804)] = 70538, - [SMALL_STATE(1805)] = 70551, - [SMALL_STATE(1806)] = 70564, - [SMALL_STATE(1807)] = 70577, - [SMALL_STATE(1808)] = 70586, - [SMALL_STATE(1809)] = 70599, - [SMALL_STATE(1810)] = 70612, - [SMALL_STATE(1811)] = 70625, - [SMALL_STATE(1812)] = 70634, - [SMALL_STATE(1813)] = 70643, - [SMALL_STATE(1814)] = 70656, - [SMALL_STATE(1815)] = 70669, - [SMALL_STATE(1816)] = 70682, - [SMALL_STATE(1817)] = 70695, - [SMALL_STATE(1818)] = 70708, - [SMALL_STATE(1819)] = 70721, - [SMALL_STATE(1820)] = 70734, - [SMALL_STATE(1821)] = 70747, - [SMALL_STATE(1822)] = 70760, - [SMALL_STATE(1823)] = 70773, - [SMALL_STATE(1824)] = 70782, - [SMALL_STATE(1825)] = 70795, - [SMALL_STATE(1826)] = 70808, - [SMALL_STATE(1827)] = 70821, - [SMALL_STATE(1828)] = 70834, - [SMALL_STATE(1829)] = 70847, - [SMALL_STATE(1830)] = 70860, - [SMALL_STATE(1831)] = 70873, - [SMALL_STATE(1832)] = 70884, - [SMALL_STATE(1833)] = 70897, - [SMALL_STATE(1834)] = 70910, - [SMALL_STATE(1835)] = 70923, - [SMALL_STATE(1836)] = 70936, - [SMALL_STATE(1837)] = 70949, - [SMALL_STATE(1838)] = 70962, - [SMALL_STATE(1839)] = 70975, - [SMALL_STATE(1840)] = 70988, - [SMALL_STATE(1841)] = 71001, - [SMALL_STATE(1842)] = 71014, - [SMALL_STATE(1843)] = 71027, - [SMALL_STATE(1844)] = 71040, - [SMALL_STATE(1845)] = 71053, - [SMALL_STATE(1846)] = 71064, - [SMALL_STATE(1847)] = 71077, - [SMALL_STATE(1848)] = 71090, - [SMALL_STATE(1849)] = 71099, - [SMALL_STATE(1850)] = 71112, - [SMALL_STATE(1851)] = 71125, - [SMALL_STATE(1852)] = 71138, - [SMALL_STATE(1853)] = 71151, - [SMALL_STATE(1854)] = 71164, - [SMALL_STATE(1855)] = 71177, - [SMALL_STATE(1856)] = 71190, - [SMALL_STATE(1857)] = 71203, - [SMALL_STATE(1858)] = 71216, - [SMALL_STATE(1859)] = 71229, - [SMALL_STATE(1860)] = 71240, - [SMALL_STATE(1861)] = 71253, - [SMALL_STATE(1862)] = 71266, - [SMALL_STATE(1863)] = 71279, - [SMALL_STATE(1864)] = 71292, - [SMALL_STATE(1865)] = 71305, - [SMALL_STATE(1866)] = 71318, - [SMALL_STATE(1867)] = 71327, - [SMALL_STATE(1868)] = 71340, - [SMALL_STATE(1869)] = 71353, - [SMALL_STATE(1870)] = 71366, - [SMALL_STATE(1871)] = 71379, - [SMALL_STATE(1872)] = 71392, - [SMALL_STATE(1873)] = 71405, - [SMALL_STATE(1874)] = 71418, - [SMALL_STATE(1875)] = 71431, - [SMALL_STATE(1876)] = 71444, - [SMALL_STATE(1877)] = 71457, - [SMALL_STATE(1878)] = 71470, - [SMALL_STATE(1879)] = 71483, - [SMALL_STATE(1880)] = 71496, - [SMALL_STATE(1881)] = 71509, - [SMALL_STATE(1882)] = 71522, - [SMALL_STATE(1883)] = 71535, - [SMALL_STATE(1884)] = 71544, - [SMALL_STATE(1885)] = 71557, - [SMALL_STATE(1886)] = 71570, - [SMALL_STATE(1887)] = 71583, - [SMALL_STATE(1888)] = 71596, - [SMALL_STATE(1889)] = 71609, - [SMALL_STATE(1890)] = 71622, - [SMALL_STATE(1891)] = 71635, - [SMALL_STATE(1892)] = 71648, - [SMALL_STATE(1893)] = 71661, - [SMALL_STATE(1894)] = 71674, - [SMALL_STATE(1895)] = 71687, - [SMALL_STATE(1896)] = 71700, - [SMALL_STATE(1897)] = 71713, - [SMALL_STATE(1898)] = 71726, - [SMALL_STATE(1899)] = 71739, - [SMALL_STATE(1900)] = 71752, - [SMALL_STATE(1901)] = 71765, - [SMALL_STATE(1902)] = 71778, - [SMALL_STATE(1903)] = 71789, - [SMALL_STATE(1904)] = 71802, - [SMALL_STATE(1905)] = 71815, - [SMALL_STATE(1906)] = 71828, - [SMALL_STATE(1907)] = 71841, - [SMALL_STATE(1908)] = 71854, - [SMALL_STATE(1909)] = 71867, - [SMALL_STATE(1910)] = 71880, - [SMALL_STATE(1911)] = 71893, - [SMALL_STATE(1912)] = 71906, - [SMALL_STATE(1913)] = 71919, - [SMALL_STATE(1914)] = 71932, - [SMALL_STATE(1915)] = 71945, - [SMALL_STATE(1916)] = 71958, - [SMALL_STATE(1917)] = 71971, - [SMALL_STATE(1918)] = 71984, - [SMALL_STATE(1919)] = 71997, - [SMALL_STATE(1920)] = 72010, - [SMALL_STATE(1921)] = 72023, - [SMALL_STATE(1922)] = 72036, - [SMALL_STATE(1923)] = 72049, - [SMALL_STATE(1924)] = 72062, - [SMALL_STATE(1925)] = 72073, - [SMALL_STATE(1926)] = 72086, - [SMALL_STATE(1927)] = 72097, - [SMALL_STATE(1928)] = 72110, - [SMALL_STATE(1929)] = 72123, - [SMALL_STATE(1930)] = 72136, - [SMALL_STATE(1931)] = 72149, - [SMALL_STATE(1932)] = 72162, - [SMALL_STATE(1933)] = 72175, - [SMALL_STATE(1934)] = 72188, - [SMALL_STATE(1935)] = 72198, - [SMALL_STATE(1936)] = 72208, - [SMALL_STATE(1937)] = 72218, - [SMALL_STATE(1938)] = 72228, - [SMALL_STATE(1939)] = 72238, - [SMALL_STATE(1940)] = 72248, - [SMALL_STATE(1941)] = 72258, - [SMALL_STATE(1942)] = 72268, - [SMALL_STATE(1943)] = 72278, - [SMALL_STATE(1944)] = 72288, - [SMALL_STATE(1945)] = 72298, - [SMALL_STATE(1946)] = 72308, - [SMALL_STATE(1947)] = 72318, - [SMALL_STATE(1948)] = 72328, - [SMALL_STATE(1949)] = 72338, - [SMALL_STATE(1950)] = 72348, - [SMALL_STATE(1951)] = 72358, - [SMALL_STATE(1952)] = 72368, - [SMALL_STATE(1953)] = 72378, - [SMALL_STATE(1954)] = 72388, - [SMALL_STATE(1955)] = 72396, - [SMALL_STATE(1956)] = 72406, - [SMALL_STATE(1957)] = 72416, - [SMALL_STATE(1958)] = 72424, - [SMALL_STATE(1959)] = 72432, - [SMALL_STATE(1960)] = 72440, - [SMALL_STATE(1961)] = 72450, - [SMALL_STATE(1962)] = 72458, - [SMALL_STATE(1963)] = 72468, - [SMALL_STATE(1964)] = 72478, - [SMALL_STATE(1965)] = 72486, - [SMALL_STATE(1966)] = 72496, - [SMALL_STATE(1967)] = 72506, - [SMALL_STATE(1968)] = 72516, - [SMALL_STATE(1969)] = 72526, - [SMALL_STATE(1970)] = 72536, - [SMALL_STATE(1971)] = 72546, - [SMALL_STATE(1972)] = 72556, - [SMALL_STATE(1973)] = 72566, - [SMALL_STATE(1974)] = 72576, - [SMALL_STATE(1975)] = 72586, - [SMALL_STATE(1976)] = 72596, - [SMALL_STATE(1977)] = 72606, - [SMALL_STATE(1978)] = 72616, - [SMALL_STATE(1979)] = 72626, - [SMALL_STATE(1980)] = 72636, - [SMALL_STATE(1981)] = 72644, - [SMALL_STATE(1982)] = 72652, - [SMALL_STATE(1983)] = 72660, - [SMALL_STATE(1984)] = 72670, - [SMALL_STATE(1985)] = 72680, - [SMALL_STATE(1986)] = 72690, - [SMALL_STATE(1987)] = 72698, - [SMALL_STATE(1988)] = 72708, - [SMALL_STATE(1989)] = 72718, - [SMALL_STATE(1990)] = 72726, - [SMALL_STATE(1991)] = 72736, - [SMALL_STATE(1992)] = 72746, - [SMALL_STATE(1993)] = 72756, - [SMALL_STATE(1994)] = 72764, - [SMALL_STATE(1995)] = 72774, - [SMALL_STATE(1996)] = 72784, - [SMALL_STATE(1997)] = 72794, - [SMALL_STATE(1998)] = 72804, - [SMALL_STATE(1999)] = 72812, - [SMALL_STATE(2000)] = 72822, - [SMALL_STATE(2001)] = 72832, - [SMALL_STATE(2002)] = 72842, - [SMALL_STATE(2003)] = 72852, - [SMALL_STATE(2004)] = 72860, - [SMALL_STATE(2005)] = 72870, - [SMALL_STATE(2006)] = 72880, - [SMALL_STATE(2007)] = 72888, - [SMALL_STATE(2008)] = 72898, - [SMALL_STATE(2009)] = 72908, - [SMALL_STATE(2010)] = 72918, - [SMALL_STATE(2011)] = 72928, - [SMALL_STATE(2012)] = 72936, - [SMALL_STATE(2013)] = 72946, - [SMALL_STATE(2014)] = 72956, - [SMALL_STATE(2015)] = 72964, - [SMALL_STATE(2016)] = 72974, - [SMALL_STATE(2017)] = 72984, - [SMALL_STATE(2018)] = 72994, - [SMALL_STATE(2019)] = 73004, - [SMALL_STATE(2020)] = 73014, - [SMALL_STATE(2021)] = 73024, - [SMALL_STATE(2022)] = 73032, - [SMALL_STATE(2023)] = 73042, - [SMALL_STATE(2024)] = 73052, - [SMALL_STATE(2025)] = 73062, - [SMALL_STATE(2026)] = 73072, - [SMALL_STATE(2027)] = 73080, - [SMALL_STATE(2028)] = 73090, - [SMALL_STATE(2029)] = 73098, - [SMALL_STATE(2030)] = 73105, - [SMALL_STATE(2031)] = 73112, - [SMALL_STATE(2032)] = 73119, - [SMALL_STATE(2033)] = 73126, - [SMALL_STATE(2034)] = 73133, - [SMALL_STATE(2035)] = 73140, - [SMALL_STATE(2036)] = 73147, - [SMALL_STATE(2037)] = 73154, - [SMALL_STATE(2038)] = 73161, - [SMALL_STATE(2039)] = 73168, - [SMALL_STATE(2040)] = 73175, - [SMALL_STATE(2041)] = 73182, - [SMALL_STATE(2042)] = 73189, - [SMALL_STATE(2043)] = 73196, - [SMALL_STATE(2044)] = 73203, - [SMALL_STATE(2045)] = 73210, - [SMALL_STATE(2046)] = 73217, - [SMALL_STATE(2047)] = 73224, - [SMALL_STATE(2048)] = 73231, - [SMALL_STATE(2049)] = 73238, - [SMALL_STATE(2050)] = 73245, - [SMALL_STATE(2051)] = 73252, - [SMALL_STATE(2052)] = 73259, - [SMALL_STATE(2053)] = 73266, - [SMALL_STATE(2054)] = 73273, - [SMALL_STATE(2055)] = 73280, - [SMALL_STATE(2056)] = 73287, - [SMALL_STATE(2057)] = 73294, - [SMALL_STATE(2058)] = 73301, - [SMALL_STATE(2059)] = 73308, - [SMALL_STATE(2060)] = 73315, - [SMALL_STATE(2061)] = 73322, - [SMALL_STATE(2062)] = 73329, - [SMALL_STATE(2063)] = 73336, - [SMALL_STATE(2064)] = 73343, - [SMALL_STATE(2065)] = 73350, - [SMALL_STATE(2066)] = 73357, - [SMALL_STATE(2067)] = 73364, - [SMALL_STATE(2068)] = 73371, - [SMALL_STATE(2069)] = 73378, - [SMALL_STATE(2070)] = 73385, - [SMALL_STATE(2071)] = 73392, - [SMALL_STATE(2072)] = 73399, - [SMALL_STATE(2073)] = 73406, - [SMALL_STATE(2074)] = 73413, - [SMALL_STATE(2075)] = 73420, - [SMALL_STATE(2076)] = 73427, - [SMALL_STATE(2077)] = 73434, - [SMALL_STATE(2078)] = 73441, - [SMALL_STATE(2079)] = 73448, - [SMALL_STATE(2080)] = 73455, - [SMALL_STATE(2081)] = 73462, - [SMALL_STATE(2082)] = 73469, - [SMALL_STATE(2083)] = 73476, - [SMALL_STATE(2084)] = 73483, - [SMALL_STATE(2085)] = 73490, - [SMALL_STATE(2086)] = 73497, - [SMALL_STATE(2087)] = 73504, - [SMALL_STATE(2088)] = 73511, - [SMALL_STATE(2089)] = 73518, - [SMALL_STATE(2090)] = 73525, - [SMALL_STATE(2091)] = 73532, - [SMALL_STATE(2092)] = 73539, - [SMALL_STATE(2093)] = 73546, - [SMALL_STATE(2094)] = 73553, - [SMALL_STATE(2095)] = 73560, - [SMALL_STATE(2096)] = 73567, - [SMALL_STATE(2097)] = 73574, - [SMALL_STATE(2098)] = 73581, - [SMALL_STATE(2099)] = 73588, - [SMALL_STATE(2100)] = 73595, - [SMALL_STATE(2101)] = 73602, - [SMALL_STATE(2102)] = 73609, - [SMALL_STATE(2103)] = 73616, - [SMALL_STATE(2104)] = 73623, - [SMALL_STATE(2105)] = 73630, - [SMALL_STATE(2106)] = 73637, - [SMALL_STATE(2107)] = 73644, - [SMALL_STATE(2108)] = 73651, - [SMALL_STATE(2109)] = 73658, - [SMALL_STATE(2110)] = 73665, - [SMALL_STATE(2111)] = 73672, - [SMALL_STATE(2112)] = 73679, - [SMALL_STATE(2113)] = 73686, - [SMALL_STATE(2114)] = 73693, - [SMALL_STATE(2115)] = 73700, - [SMALL_STATE(2116)] = 73707, - [SMALL_STATE(2117)] = 73714, - [SMALL_STATE(2118)] = 73721, - [SMALL_STATE(2119)] = 73728, - [SMALL_STATE(2120)] = 73735, - [SMALL_STATE(2121)] = 73742, - [SMALL_STATE(2122)] = 73749, - [SMALL_STATE(2123)] = 73756, - [SMALL_STATE(2124)] = 73763, - [SMALL_STATE(2125)] = 73770, - [SMALL_STATE(2126)] = 73777, - [SMALL_STATE(2127)] = 73784, - [SMALL_STATE(2128)] = 73791, - [SMALL_STATE(2129)] = 73798, - [SMALL_STATE(2130)] = 73805, - [SMALL_STATE(2131)] = 73812, - [SMALL_STATE(2132)] = 73819, - [SMALL_STATE(2133)] = 73826, - [SMALL_STATE(2134)] = 73833, - [SMALL_STATE(2135)] = 73840, - [SMALL_STATE(2136)] = 73847, - [SMALL_STATE(2137)] = 73854, - [SMALL_STATE(2138)] = 73861, - [SMALL_STATE(2139)] = 73868, - [SMALL_STATE(2140)] = 73875, - [SMALL_STATE(2141)] = 73882, - [SMALL_STATE(2142)] = 73889, - [SMALL_STATE(2143)] = 73896, - [SMALL_STATE(2144)] = 73903, - [SMALL_STATE(2145)] = 73910, - [SMALL_STATE(2146)] = 73917, - [SMALL_STATE(2147)] = 73924, - [SMALL_STATE(2148)] = 73931, - [SMALL_STATE(2149)] = 73938, - [SMALL_STATE(2150)] = 73945, - [SMALL_STATE(2151)] = 73952, - [SMALL_STATE(2152)] = 73959, - [SMALL_STATE(2153)] = 73966, - [SMALL_STATE(2154)] = 73973, - [SMALL_STATE(2155)] = 73980, - [SMALL_STATE(2156)] = 73987, - [SMALL_STATE(2157)] = 73994, - [SMALL_STATE(2158)] = 74001, - [SMALL_STATE(2159)] = 74008, - [SMALL_STATE(2160)] = 74015, - [SMALL_STATE(2161)] = 74022, - [SMALL_STATE(2162)] = 74029, - [SMALL_STATE(2163)] = 74036, - [SMALL_STATE(2164)] = 74043, - [SMALL_STATE(2165)] = 74050, - [SMALL_STATE(2166)] = 74057, - [SMALL_STATE(2167)] = 74064, - [SMALL_STATE(2168)] = 74071, - [SMALL_STATE(2169)] = 74078, - [SMALL_STATE(2170)] = 74085, - [SMALL_STATE(2171)] = 74092, - [SMALL_STATE(2172)] = 74099, - [SMALL_STATE(2173)] = 74106, - [SMALL_STATE(2174)] = 74113, - [SMALL_STATE(2175)] = 74120, - [SMALL_STATE(2176)] = 74127, - [SMALL_STATE(2177)] = 74134, - [SMALL_STATE(2178)] = 74141, - [SMALL_STATE(2179)] = 74148, - [SMALL_STATE(2180)] = 74155, - [SMALL_STATE(2181)] = 74162, - [SMALL_STATE(2182)] = 74169, - [SMALL_STATE(2183)] = 74176, - [SMALL_STATE(2184)] = 74183, - [SMALL_STATE(2185)] = 74190, - [SMALL_STATE(2186)] = 74197, - [SMALL_STATE(2187)] = 74204, - [SMALL_STATE(2188)] = 74211, - [SMALL_STATE(2189)] = 74218, - [SMALL_STATE(2190)] = 74225, - [SMALL_STATE(2191)] = 74232, - [SMALL_STATE(2192)] = 74239, - [SMALL_STATE(2193)] = 74246, - [SMALL_STATE(2194)] = 74253, - [SMALL_STATE(2195)] = 74260, - [SMALL_STATE(2196)] = 74267, - [SMALL_STATE(2197)] = 74274, - [SMALL_STATE(2198)] = 74281, - [SMALL_STATE(2199)] = 74288, - [SMALL_STATE(2200)] = 74295, - [SMALL_STATE(2201)] = 74302, - [SMALL_STATE(2202)] = 74309, - [SMALL_STATE(2203)] = 74316, - [SMALL_STATE(2204)] = 74323, - [SMALL_STATE(2205)] = 74330, - [SMALL_STATE(2206)] = 74337, - [SMALL_STATE(2207)] = 74344, - [SMALL_STATE(2208)] = 74351, - [SMALL_STATE(2209)] = 74358, - [SMALL_STATE(2210)] = 74365, - [SMALL_STATE(2211)] = 74372, - [SMALL_STATE(2212)] = 74379, - [SMALL_STATE(2213)] = 74386, - [SMALL_STATE(2214)] = 74393, - [SMALL_STATE(2215)] = 74400, - [SMALL_STATE(2216)] = 74407, - [SMALL_STATE(2217)] = 74414, - [SMALL_STATE(2218)] = 74421, - [SMALL_STATE(2219)] = 74428, - [SMALL_STATE(2220)] = 74435, - [SMALL_STATE(2221)] = 74442, - [SMALL_STATE(2222)] = 74449, - [SMALL_STATE(2223)] = 74456, - [SMALL_STATE(2224)] = 74463, - [SMALL_STATE(2225)] = 74470, - [SMALL_STATE(2226)] = 74477, - [SMALL_STATE(2227)] = 74484, - [SMALL_STATE(2228)] = 74491, - [SMALL_STATE(2229)] = 74498, - [SMALL_STATE(2230)] = 74505, - [SMALL_STATE(2231)] = 74512, - [SMALL_STATE(2232)] = 74519, - [SMALL_STATE(2233)] = 74526, - [SMALL_STATE(2234)] = 74533, - [SMALL_STATE(2235)] = 74540, - [SMALL_STATE(2236)] = 74547, - [SMALL_STATE(2237)] = 74554, - [SMALL_STATE(2238)] = 74561, - [SMALL_STATE(2239)] = 74568, - [SMALL_STATE(2240)] = 74575, - [SMALL_STATE(2241)] = 74582, - [SMALL_STATE(2242)] = 74589, - [SMALL_STATE(2243)] = 74596, - [SMALL_STATE(2244)] = 74603, - [SMALL_STATE(2245)] = 74610, - [SMALL_STATE(2246)] = 74617, - [SMALL_STATE(2247)] = 74624, - [SMALL_STATE(2248)] = 74631, - [SMALL_STATE(2249)] = 74638, - [SMALL_STATE(2250)] = 74645, - [SMALL_STATE(2251)] = 74652, - [SMALL_STATE(2252)] = 74659, - [SMALL_STATE(2253)] = 74666, - [SMALL_STATE(2254)] = 74673, - [SMALL_STATE(2255)] = 74680, - [SMALL_STATE(2256)] = 74687, - [SMALL_STATE(2257)] = 74694, - [SMALL_STATE(2258)] = 74701, - [SMALL_STATE(2259)] = 74708, - [SMALL_STATE(2260)] = 74715, - [SMALL_STATE(2261)] = 74722, - [SMALL_STATE(2262)] = 74729, - [SMALL_STATE(2263)] = 74736, - [SMALL_STATE(2264)] = 74743, - [SMALL_STATE(2265)] = 74750, - [SMALL_STATE(2266)] = 74757, - [SMALL_STATE(2267)] = 74764, - [SMALL_STATE(2268)] = 74771, - [SMALL_STATE(2269)] = 74778, - [SMALL_STATE(2270)] = 74785, - [SMALL_STATE(2271)] = 74792, - [SMALL_STATE(2272)] = 74799, - [SMALL_STATE(2273)] = 74806, - [SMALL_STATE(2274)] = 74813, - [SMALL_STATE(2275)] = 74820, - [SMALL_STATE(2276)] = 74827, - [SMALL_STATE(2277)] = 74834, - [SMALL_STATE(2278)] = 74841, - [SMALL_STATE(2279)] = 74848, - [SMALL_STATE(2280)] = 74855, - [SMALL_STATE(2281)] = 74862, - [SMALL_STATE(2282)] = 74869, - [SMALL_STATE(2283)] = 74876, - [SMALL_STATE(2284)] = 74883, - [SMALL_STATE(2285)] = 74890, - [SMALL_STATE(2286)] = 74897, - [SMALL_STATE(2287)] = 74904, - [SMALL_STATE(2288)] = 74911, - [SMALL_STATE(2289)] = 74918, - [SMALL_STATE(2290)] = 74925, - [SMALL_STATE(2291)] = 74932, - [SMALL_STATE(2292)] = 74939, - [SMALL_STATE(2293)] = 74946, - [SMALL_STATE(2294)] = 74953, - [SMALL_STATE(2295)] = 74960, - [SMALL_STATE(2296)] = 74967, - [SMALL_STATE(2297)] = 74974, - [SMALL_STATE(2298)] = 74981, - [SMALL_STATE(2299)] = 74988, - [SMALL_STATE(2300)] = 74995, - [SMALL_STATE(2301)] = 75002, - [SMALL_STATE(2302)] = 75009, - [SMALL_STATE(2303)] = 75016, - [SMALL_STATE(2304)] = 75023, - [SMALL_STATE(2305)] = 75030, - [SMALL_STATE(2306)] = 75037, - [SMALL_STATE(2307)] = 75044, - [SMALL_STATE(2308)] = 75051, - [SMALL_STATE(2309)] = 75058, - [SMALL_STATE(2310)] = 75065, - [SMALL_STATE(2311)] = 75072, - [SMALL_STATE(2312)] = 75079, - [SMALL_STATE(2313)] = 75086, - [SMALL_STATE(2314)] = 75093, - [SMALL_STATE(2315)] = 75100, - [SMALL_STATE(2316)] = 75107, + [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, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), - [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), - [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 0, 0, 0), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2316), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2313), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2310), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2294), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2293), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2290), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2287), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2285), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2284), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), - [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), - [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), - [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2250), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), - [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), - [179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 2, 0, 17), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), - [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), - [187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 4, 0, 40), - [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), - [197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 3, 0, 17), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), - [201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 3, 0, 40), - [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), - [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), - [207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(451), - [210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1571), - [213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2191), - [216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1314), - [219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), - [221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2192), - [224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1802), - [227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(465), - [230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(712), - [233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(712), - [236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(716), - [239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(96), - [242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1017), - [245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1133), - [248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(972), - [251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2310), - [254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2309), - [257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(532), - [260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2025), - [263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2307), - [266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(987), - [269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(973), - [272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(24), - [275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(890), - [278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(813), - [281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(799), - [284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2306), - [287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(874), - [290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1771), - [293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1459), - [296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1692), - [299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1939), - [302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1970), - [305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(714), - [308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2085), - [311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1935), - [314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(422), - [317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2311), - [320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(577), - [323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2252), - [326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2250), - [329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2200), - [332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1974), - [335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2236), - [338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(641), - [341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(640), - [344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2287), - [347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2285), - [350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2284), - [353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1640), - [356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(758), - [359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1788), - [362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1749), - [365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(758), - [368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(764), - [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), - [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), - [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), - [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), - [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), - [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), - [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), - [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), - [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), - [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), - [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), - [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), - [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), - [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), - [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), - [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), - [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), - [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), - [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), - [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2111), - [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), - [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), - [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), - [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), - [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), - [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), - [441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 1, 0, 0), - [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), - [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), - [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), - [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), - [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), - [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), - [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), - [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), - [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), - [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), - [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), - [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), - [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), - [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), - [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), - [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), - [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), - [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), - [483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 2, 0, 0), - [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(455), - [498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1584), - [501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2258), - [504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1312), - [507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2230), - [510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1821), - [513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(203), - [516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1011), - [519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1127), - [522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(971), - [525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(35), - [528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1969), - [531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1995), - [534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(665), - [537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2042), - [540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1971), - [543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(446), - [546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2314), - [549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(600), - [552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2082), - [555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2081), - [558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2235), - [561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1999), - [564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2069), - [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(452), - [574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1573), - [577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2102), - [580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1324), - [583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2103), - [586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1918), - [589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(168), - [592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1018), - [595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1122), - [598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(969), - [601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(34), - [604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), - [606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1934), - [609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1937), - [612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(699), - [615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2208), - [618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1936), - [621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(430), - [624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2270), - [627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(575), - [630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2125), - [633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2127), - [636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2111), - [639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1994), - [642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2211), - [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), - [651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(457), - [654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1575), - [657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2316), - [660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1325), - [663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2313), - [666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1767), - [669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(465), - [672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(712), - [675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(712), - [678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(716), - [681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1005), - [684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1131), - [687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(970), - [690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2310), - [693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2309), - [696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(532), - [699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2025), - [702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2307), - [705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(987), - [708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(973), - [711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(27), - [714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(890), - [717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(813), - [720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(799), - [723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2306), - [726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(874), - [729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1771), - [732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1459), - [735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1692), - [738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2024), - [741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2023), - [744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(673), - [747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2297), - [750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2022), - [753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(433), - [756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2294), - [759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(595), - [762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2293), - [765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2292), - [768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2290), - [771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(641), - [774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(640), - [777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2287), - [780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2285), - [783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2284), - [786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1640), - [789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1223), - [792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1788), - [795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1749), - [798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1223), - [801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(764), - [804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 1, 0, 0), - [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), - [808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, 0, 0), - [810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, 0, 9), - [812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 2, 0, 0), - [814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, 0, 9), - [816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(448), - [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(465), - [824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(712), - [827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(712), - [830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(716), - [833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(96), - [836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1017), - [839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1133), - [842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(813), - [845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2310), - [848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2309), - [851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(532), - [854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2025), - [857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2307), - [860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(24), - [863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(890), - [866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(799), - [869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2306), - [872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(874), - [875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1771), - [878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1459), - [881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1692), - [884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1939), - [887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1970), - [890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1935), - [893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(422), - [896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2311), - [899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(577), - [902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2252), - [905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2250), - [908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2200), - [911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1974), - [914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2236), - [917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(641), - [920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(640), - [923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2287), - [926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2285), - [929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2284), - [932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1640), - [935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(758), - [938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1788), - [941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1749), - [944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(758), - [947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(764), - [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), - [952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(447), - [955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(168), - [958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1018), - [961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1122), - [964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(34), - [967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), - [969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1934), - [972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1937), - [975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1936), - [978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(430), - [981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2270), - [984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(575), - [987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2125), - [990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2127), - [993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2111), - [996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1994), - [999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2211), - [1002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, 0, 0), - [1004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), - [1006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [1008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), - [1010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), - [1012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, 0, 9), - [1014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 2, 0, 0), - [1016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(453), - [1019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(178), - [1022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1005), - [1025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1131), - [1028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(27), - [1031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2024), - [1034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2023), - [1037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2022), - [1040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(433), - [1043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2294), - [1046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(595), - [1049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2293), - [1052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2292), - [1055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2290), - [1058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1941), - [1061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2157), - [1064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), - [1066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(454), - [1069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(203), - [1072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1011), - [1075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1127), - [1078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(35), - [1081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1969), - [1084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1995), - [1087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1971), - [1090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(446), - [1093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2314), - [1096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(600), - [1099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2082), - [1102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2081), - [1105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2235), - [1108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1999), - [1111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2069), - [1114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, 0, 9), - [1116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), - [1118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), - [1120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), - [1122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2291), - [1124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), - [1126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(456), - [1129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2008), - [1132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2007), - [1135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2291), - [1138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2020), - [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), - [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [1147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 27), - [1149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 27), - [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), - [1153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 6, 0, 113), - [1155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 6, 0, 113), - [1157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), - [1159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), - [1161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 5, 0, 91), - [1163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 5, 0, 91), - [1165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 5, 0, 90), - [1167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 5, 0, 90), - [1169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, 0, 85), - [1171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, 0, 85), - [1173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 81), - [1175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 81), - [1177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), - [1179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), - [1181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_finally_clause, 2, 0, 8), - [1183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_finally_clause, 2, 0, 8), - [1185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, 0, 47), - [1187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, 0, 47), - [1189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, 0, 76), - [1191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, 0, 76), - [1193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, 0, 64), - [1195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, 0, 64), - [1197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, 0, 62), - [1199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, 0, 62), - [1201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3, 0, 0), - [1203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3, 0, 0), - [1205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 55), - [1207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 55), - [1209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_try_statement, 3, 0, 8), - [1211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_try_statement, 3, 0, 8), - [1213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4, 0, 47), - [1215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4, 0, 47), - [1217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), - [1219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), - [1221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2, 0, 0), - [1223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2, 0, 0), - [1225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 3, 0, 35), - [1227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 3, 0, 35), - [1229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), - [1231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), - [1233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, 0, 31), - [1235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, 0, 31), - [1237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, 0, 29), - [1239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, 0, 29), - [1241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, 0, 76), - [1243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, 0, 76), - [1245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), - [1247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), - [1249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_except_clause, 3, 0, 102), - [1251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_except_clause, 3, 0, 102), - [1253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 6, 0, 114), - [1255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 6, 0, 114), - [1257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), - [1259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), - [1261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, 0, 28), - [1263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, 0, 28), - [1265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_statement, 2, 0, 0), - [1267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_statement, 2, 0, 0), - [1269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 28), - [1271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 28), - [1273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 7, 0, 126), - [1275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 7, 0, 126), - [1277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 0), - [1279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0), - [1281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_leave_statement, 2, 0, 0), - [1283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_leave_statement, 2, 0, 0), - [1285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), - [1287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), - [1289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 5, 0, 95), - [1291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 5, 0, 95), - [1293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 6, 0, 118), - [1295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 6, 0, 118), - [1297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__empty_declaration, 2, 0, 0), - [1299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__empty_declaration, 2, 0, 0), - [1301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_include, 3, 0, 16), - [1303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_include, 3, 0, 16), - [1305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 3, 0, 17), - [1307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 3, 0, 17), - [1309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 3, 0, 17), - [1311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 3, 0, 17), - [1313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 3, 0, 18), - [1315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 3, 0, 18), - [1317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_linkage_specification, 3, 0, 23), - [1319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_linkage_specification, 3, 0, 23), - [1321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, 0, 68), - [1323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, 0, 68), - [1325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 4, 0, 67), - [1327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 4, 0, 67), - [1329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 117), - [1331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 117), - [1333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 5, 0, 71), - [1335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 5, 0, 71), - [1337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, 0, 33), - [1339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, 0, 33), - [1341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, 0, 72), - [1343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, 0, 72), - [1345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, 0, 40), - [1347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, 0, 40), - [1349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 5, 0, 73), - [1351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 5, 0, 73), - [1353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 5, 0, 97), - [1355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 5, 0, 97), - [1357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 3, 0, 36), - [1359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 3, 0, 36), - [1361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, 0, 99), - [1363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, 0, 99), - [1365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 4, 0, 38), - [1367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 4, 0, 38), - [1369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 4, 0, 39), - [1371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 4, 0, 39), - [1373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 4, 0, 40), - [1375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 4, 0, 40), - [1377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, 0, 41), - [1379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, 0, 41), - [1381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, 0, 17), - [1383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, 0, 17), - [1385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3, 0, 0), - [1387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3, 0, 0), - [1389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2, 0, 0), - [1391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2, 0, 0), - [1393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 2, 0, 4), - [1395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 2, 0, 4), - [1397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_item, 1, 0, 2), - [1399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_item, 1, 0, 2), - [1401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__block_item, 1, 0, 0), REDUCE(sym_statement, 1, 0, 0), - [1404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__block_item, 1, 0, 0), REDUCE(sym_statement, 1, 0, 0), - [1407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, 0, 61), - [1409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, 0, 61), - [1411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, 0, 96), - [1413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, 0, 96), - [1415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, 0, 92), - [1417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, 0, 92), - [1419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 4, 0, 66), - [1421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 4, 0, 66), - [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), - [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [1427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), - [1429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), - [1431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 4, 0, 57), - [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), - [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [1437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 4, 0, 57), - [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [1441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), - [1443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_expression_statement, 2, 0, 0), - [1445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_expression_statement, 2, 0, 0), - [1447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_item, 1, 0, 2), - [1449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_item, 1, 0, 2), - [1451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__top_level_item, 1, 0, 0), REDUCE(sym__top_level_statement, 1, 0, 0), - [1454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__top_level_item, 1, 0, 0), REDUCE(sym__top_level_statement, 1, 0, 0), - [1457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), - [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [1461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), - [1463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(978), - [1466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(465), - [1469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(712), - [1472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(712), - [1475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(716), - [1478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(168), - [1481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1940), - [1484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(27), - [1487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2008), - [1490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2023), - [1493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(706), - [1496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2261), - [1499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2007), - [1502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(433), - [1505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2291), - [1508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(595), - [1511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2293), - [1514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2292), - [1517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2290), - [1520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2020), - [1523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2211), - [1526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(641), - [1529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(640), - [1532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2287), - [1535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2285), - [1538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2284), - [1541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1640), - [1544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(758), - [1547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1788), - [1550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1749), - [1553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(758), - [1556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(764), - [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), - [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), - [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), - [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), - [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), - [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), - [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2261), - [1573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(975), - [1576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(96), - [1579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(24), - [1582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1939), - [1585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1970), - [1588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(714), - [1591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2085), - [1594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1935), - [1597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(422), - [1600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2311), - [1603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(577), - [1606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2252), - [1609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2250), - [1612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2200), - [1615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1974), - [1618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2236), - [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), - [1623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(976), - [1626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(34), - [1629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1934), - [1632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1937), - [1635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(699), - [1638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2208), - [1641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1936), - [1644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(430), - [1647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2270), - [1650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(575), - [1653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2125), - [1656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2127), - [1659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2111), - [1662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1994), - [1665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(979), - [1668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(203), - [1671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(35), - [1674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1969), - [1677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1995), - [1680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(665), - [1683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2042), - [1686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1971), - [1689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(446), - [1692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2314), - [1695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(600), - [1698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2082), - [1701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2081), - [1704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2235), - [1707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1999), - [1710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2069), - [1713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 3, 0, 0), - [1715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 3, 0, 0), - [1717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(981), - [1720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(178), - [1723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2024), - [1726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(673), - [1729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2297), - [1732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2022), - [1735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2294), - [1738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1941), - [1741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2157), - [1744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 4, 0, 0), - [1746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 4, 0, 0), - [1748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), - [1750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), - [1752] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), SHIFT(1132), - [1756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), - [1758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), - [1761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), - [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), - [1765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), - [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), - [1775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), - [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [1779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), - [1781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), - [1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [1790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), SHIFT(387), - [1793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), - [1795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), - [1797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), - [1799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), - [1801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), - [1804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), - [1806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), - [1808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), - [1810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), - [1813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), - [1815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2262), - [1817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), - [1819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), - [1821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), - [1823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), - [1825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), - [1827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), - [1829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), - [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), - [1837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), - [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), - [1841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), - [1843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, 0, 40), - [1845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), - [1847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), - [1849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 2, 0, 17), - [1851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), - [1853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), - [1855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, 0, 40), - [1857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, 0, 17), - [1859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), - [1861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), - [1863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), - [1865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), - [1867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), - [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [1877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), - [1879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1001), - [1882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2262), - [1885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1315), - [1888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), - [1890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2151), - [1893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1862), - [1896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1286), - [1899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1100), - [1902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(799), - [1905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(813), - [1908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2310), - [1911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2309), - [1914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(532), - [1917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1968), - [1920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2307), - [1923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1965), - [1926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(890), - [1929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2306), - [1932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(874), - [1935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1771), - [1938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1459), - [1941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1692), - [1944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), - [1946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [1948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), - [1950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), - [1952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), - [1954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 2, 0, 0), - [1956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), - [1958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), - [1960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2263), - [1963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1297), - [1966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2213), - [1969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1920), - [1972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2229), - [1975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1342), - [1978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2068), - [1981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1892), - [1984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), - [1986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 1, 0, 0), - [1988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), - [1990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), - [1992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), - [1994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), - [1996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [1998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [2000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), - [2002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), - [2004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [2006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), - [2008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), - [2010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [2012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [2014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [2016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [2018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [2020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), - [2022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), - [2024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [2026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), - [2028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [2032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), - [2034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [2038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), - [2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [2042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [2044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [2046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [2048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [2052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), - [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [2058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), - [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [2064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), - [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [2074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [2076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), - [2078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [2084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), - [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [2098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), - [2100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2, 0, 0), - [2102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2, 0, 0), - [2104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), - [2106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 3, 0, 0), - [2108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 3, 0, 0), - [2110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(522), - [2113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), - [2115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), - [2117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1749), - [2120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), - [2122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), - [2124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(799), - [2127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(813), - [2130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2310), - [2133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2309), - [2136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(532), - [2139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(1968), - [2142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2307), - [2145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2306), - [2148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), - [2150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), - [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [2154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), - [2156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [2158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), - [2160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2, 0, 0), - [2162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2, 0, 0), - [2164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 4, 0, 0), - [2166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 4, 0, 0), - [2168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 3, 0, 0), - [2170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 3, 0, 0), - [2172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 5, 0, 0), - [2174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 5, 0, 0), - [2176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 1, 0, 0), - [2178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 1, 0, 0), - [2180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, 0, 87), - [2182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, 0, 87), - [2184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, 0, 88), - [2186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, 0, 88), - [2188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), - [2190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, 0, 131), - [2192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, 0, 131), - [2194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, 0, 110), - [2196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, 0, 110), - [2198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, 0, 111), - [2200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, 0, 111), - [2202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, 0, 132), - [2204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, 0, 132), - [2206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 9, 0, 136), - [2208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 9, 0, 136), - [2210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 4, 0, 58), - [2212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 4, 0, 58), - [2214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, 0, 124), - [2216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, 0, 124), - [2218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, 0, 125), - [2220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, 0, 125), - [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [2224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), - [2226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 2, 0, 34), - [2228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 2, 0, 34), - [2230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 2, 0, 34), - [2232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 2, 0, 34), - [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [2236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), - [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [2252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2, 0, 0), - [2254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2, 0, 56), - [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [2260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 0, 107), - [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [2272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), - [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [2296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 56), - [2298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 84), - [2300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 40), - [2302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), - [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [2306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(870), - [2309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(799), - [2312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(813), - [2315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(2310), - [2318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(2309), - [2321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(532), - [2324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1968), - [2327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(2307), - [2330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), - [2332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(890), - [2335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(2306), - [2338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(874), - [2341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1771), - [2344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1459), - [2347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1692), - [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [2368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3, 0, 0), - [2370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3, 0, 0), - [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [2374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [2376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [2380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), - [2382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string, 1, 0, 0), - [2384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string, 1, 0, 0), - [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [2388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2, 0, 0), - [2390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2, 0, 0), - [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [2394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4, 0, 0), - [2396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4, 0, 0), - [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [2402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, 0, 7), - [2404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, 0, 7), - [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [2408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), - [2410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 8, 0, 0), - [2412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 8, 0, 0), - [2414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5, 0, 0), - [2416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5, 0, 0), - [2418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2, 0, 0), - [2420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2, 0, 0), - [2422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, 0, 69), - [2424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, 0, 69), - [2426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 37), - [2428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 37), - [2430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3, 0, 0), - [2432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3, 0, 0), - [2434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3, 0, 0), - [2436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3, 0, 0), - [2438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 4, 0, 45), - [2440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 4, 0, 45), - [2442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4, 0, 0), - [2444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4, 0, 0), - [2446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 53), - [2448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 53), - [2450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), - [2452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null, 1, 0, 0), - [2454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null, 1, 0, 0), - [2456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 13), - [2458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 13), - [2460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 25), - [2462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 25), - [2464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2282), - [2466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alignof_expression, 4, 0, 57), - [2468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alignof_expression, 4, 0, 57), - [2470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 12), - [2472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 12), - [2474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_offsetof_expression, 6, 0, 108), - [2476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_offsetof_expression, 6, 0, 108), - [2478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 9, 0, 0), - [2480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 9, 0, 0), - [2482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, 0, 45), - [2484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, 0, 45), - [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), - [2494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alignas_qualifier, 4, 0, 0), - [2496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alignas_qualifier, 4, 0, 0), - [2498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 0), - [2500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 0), - [2502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_expression, 2, 0, 5), - [2504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_expression, 2, 0, 5), - [2506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 2, 0, 9), - [2508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 2, 0, 9), - [2510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 5), - [2512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 5), - [2514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 25), - [2516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 25), - [2518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 5), - [2520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 5), - [2522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_declspec_modifier, 4, 0, 0), - [2524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_declspec_modifier, 4, 0, 0), - [2526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), - [2528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), - [2530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, 0, 7), - [2532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, 0, 7), - [2534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), - [2536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), - [2538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 0), - [2540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 0), - [2542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), - [2544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), - [2546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 30), - [2548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 30), - [2550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 52), - [2552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 52), - [2554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), - [2556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 26), - [2558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 26), - [2560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), - [2562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 1, 0, 3), - [2564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 1, 0, 3), - [2566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, 0, 8), - [2568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, 0, 8), - [2570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), - [2572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 3, 0, 14), - [2574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 3, 0, 14), - [2576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, 0, 3), - [2578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, 0, 3), - [2580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 54), - [2582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 54), - [2584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), - [2586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_class_specifier, 1, 0, 0), - [2588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_class_specifier, 1, 0, 0), - [2590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, 0, 80), - [2592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, 0, 80), - [2594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), - [2596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, 0, 14), - [2598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, 0, 14), - [2600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 24), - [2602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 24), - [2604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), - [2606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, 0, 52), - [2608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, 0, 52), - [2610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), - [2612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), - [2614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), - [2616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(819), - [2619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 24), - [2621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 24), - [2623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), - [2625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3, 0, 0), - [2627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3, 0, 0), - [2629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, 0, 52), - [2631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, 0, 52), - [2633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, 0, 53), - [2635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, 0, 53), - [2637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), - [2639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, 0, 54), - [2641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, 0, 54), - [2643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), - [2645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 26), - [2647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 26), - [2649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 24), - [2651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 24), - [2653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 6, 0, 80), - [2655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 6, 0, 80), - [2657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), - [2659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 8), - [2661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 8), - [2663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), - [2665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, 0, 8), - [2667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, 0, 8), - [2669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 7), - [2671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 7), - [2673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), - [2675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2, 0, 0), - [2677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2, 0, 0), - [2679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 26), - [2681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 26), - [2683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), - [2685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 25), - [2687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 25), - [2689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), - [2691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 7, 0, 7), - [2693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 7, 0, 7), - [2695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 7, 0, 24), - [2697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 7, 0, 24), - [2699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, 0, 24), - [2701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, 0, 24), - [2703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 8), - [2705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 8), - [2707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 14), - [2709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, 0, 14), - [2711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), - [2713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 3), - [2715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 3), - [2717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, 0, 25), - [2719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, 0, 25), - [2721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 7), - [2723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 7), - [2725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 5, 0, 52), - [2727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 5, 0, 52), - [2729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 17), - [2731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 17), - [2733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 8, 0, 26), - [2735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 8, 0, 26), - [2737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 9, 0, 80), - [2739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 9, 0, 80), - [2741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 9, 0, 53), - [2743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 9, 0, 53), - [2745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 2, 0, 0), - [2747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 2, 0, 0), - [2749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 8, 0, 54), - [2751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 8, 0, 54), - [2753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, 0, 17), - [2755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, 0, 17), - [2757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 15), - [2759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, -1, 15), - [2761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 8, 0, 53), - [2763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 8, 0, 53), - [2765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 8, 0, 52), - [2767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 8, 0, 52), - [2769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 8), - [2771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 8), - [2773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 7), - [2775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 7), - [2777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 9, 0, 52), - [2779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 9, 0, 52), - [2781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 8, 0, 25), - [2783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 8, 0, 25), - [2785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, 0, 40), - [2787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, 0, 40), - [2789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 8, 0, 24), - [2791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 8, 0, 24), - [2793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, 0, 42), - [2795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 42), - [2797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, 0, 26), - [2799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, 0, 26), - [2801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, 0, 42), - [2803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, 0, 42), - [2805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, 0, 79), - [2807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 79), - [2809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 24), - [2811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 24), - [2813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 4, 0, 0), - [2815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 4, 0, 0), - [2817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 7, 0, 25), - [2819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 7, 0, 25), - [2821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 50), - [2823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 50), - [2825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), SHIFT(1132), - [2828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 6, 0, 8), - [2830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 6, 0, 8), - [2832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, 0, 99), - [2834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, 0, 99), - [2836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 0), - [2838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 0), - [2840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), - [2842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 6, 0, 7), - [2844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 6, 0, 7), - [2846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 6, 0, 78), - [2848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 6, 0, 78), - [2850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 3, 0, 0), - [2852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 3, 0, 0), - [2854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 9, 0, 54), - [2856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 9, 0, 54), - [2858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 14), - [2860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 14), - [2862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), - [2864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, 0, 73), - [2866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, 0, 73), - [2868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 15), - [2870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, -1, 15), - [2872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), - [2874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), - [2877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), - [2880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_type_specifier, 4, -1, 59), - [2882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_type_specifier, 4, -1, 59), - [2884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 10), - [2886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, -1, 10), - [2888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 40), - [2890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 40), - [2892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 41), - [2894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 41), - [2896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 72), - [2898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 72), - [2900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(882), - [2903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), - [2905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), - [2907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), - [2909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), - [2911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 7, 0, 8), - [2913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 7, 0, 8), - [2915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 7, 0, 26), - [2917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 7, 0, 26), - [2919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, 0, 79), - [2921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 79), - [2923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 10, 0, 80), - [2925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 10, 0, 80), - [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [2935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 7), - [2937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, 0, 7), - [2939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 7), SHIFT(2310), - [2942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 7), SHIFT(2309), - [2945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 7), SHIFT(532), - [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [2952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), - [2954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), - [2956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(965), - [2959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(906), - [2962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2269), - [2965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), - [2967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), - [2969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), - [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [2973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), - [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [2977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), - [2979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 4, 0, 70), - [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [2985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), - [2987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), - [2989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 4, 0, 70), - [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [2993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 30), - [2995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, 0, 30), - [2997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, 0, 98), - [2999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, 0, 98), - [3001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 50), - [3003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 50), - [3005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 50), SHIFT(2310), - [3008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 50), SHIFT(2309), - [3011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 50), SHIFT(532), - [3014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), - [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [3018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 8), - [3020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, 0, 8), - [3022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 8), SHIFT(2310), - [3025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 8), SHIFT(2309), - [3028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 8), SHIFT(532), - [3031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parameter_list, 3, 0, 0), REDUCE(sym__old_style_parameter_list, 3, 0, 0), - [3034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 3, 0, 0), - [3036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 3, 0, 0), REDUCE(sym__old_style_parameter_list, 3, 0, 0), - [3039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parameter_list, 2, 0, 0), REDUCE(sym__old_style_parameter_list, 2, 0, 0), - [3042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 2, 0, 0), - [3044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 2, 0, 0), REDUCE(sym__old_style_parameter_list, 2, 0, 0), - [3047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 24), - [3049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 24), - [3051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 24), SHIFT(2310), - [3054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 24), SHIFT(2309), - [3057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 24), SHIFT(532), - [3060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 78), - [3062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 78), - [3064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 78), SHIFT(2310), - [3067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 78), SHIFT(2309), - [3070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 78), SHIFT(532), - [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [3075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_call_modifier, 1, 0, 0), - [3077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_call_modifier, 1, 0, 0), - [3079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_parameter_list, 2, 0, 0), - [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [3083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_parameter_list, 3, 0, 0), - [3085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), - [3087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), - [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [3093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), - [3095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), - [3097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), - [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [3101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), - [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [3105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), - [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [3109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_modifier, 1, 0, 0), - [3111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_modifier, 1, 0, 0), - [3113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), - [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [3117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), SHIFT(1786), - [3120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), SHIFT(1012), - [3123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 1), - [3126] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 1), SHIFT(1132), - [3130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 1), - [3133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(aux_sym__old_style_parameter_list_repeat1, 2, 0, 0), - [3136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), - [3138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 0), - [3140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), - [3142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), - [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [3146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declarator, 1, 0, 0), - [3148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 1, 1, 0), - [3150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), - [3152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 4, 0, 0), - [3154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_parameter_list, 4, 0, 0), - [3156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), - [3158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), - [3160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), - [3162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_declarator, 2, 0, 34), - [3164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_declarator, 2, 0, 34), - [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [3168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), - [3170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), - [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [3176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), - [3178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), - [3180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), - [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [3184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), - [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [3188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), - [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [3192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), - [3194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), - [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [3198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), - [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [3202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), - [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [3206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), - [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [3210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), - [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [3220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), - [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [3226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), - [3228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), - [3230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call_expression, 2, 0, 13), - [3232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call_expression, 2, 0, 13), - [3234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 4, 0, 0), - [3236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 4, 0, 0), - [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [3240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 3, 0, 0), - [3242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 3, 0, 0), - [3244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 2, 0, 0), - [3246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 2, 0, 0), - [3248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitfield_clause, 2, 0, 0), - [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [3252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, 1, 0), - [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), - [3262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), - [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [3268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), - [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [3272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), - [3274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), - [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [3284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), - [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [3288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), - [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [3294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 3, 0, 77), - [3296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 3, 0, 77), - [3298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), - [3300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), - [3302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1149), - [3305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1145), - [3308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), - [3310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), - [3312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), - [3314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), - [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [3318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_expression, 3, 0, 44), - [3320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), - [3322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), - [3324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(799), - [3327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2306), - [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [3338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1, 0, 0), - [3340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1, 0, 0), - [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [3350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_pointer_modifier, 1, 0, 0), - [3352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_pointer_modifier, 1, 0, 0), - [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [3356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), - [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [3360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), - [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [3364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), - [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [3368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), - [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [3374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 5, 0, 121), - [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [3384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 4, 0, 0), - [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [3392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), - [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [3396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 3, 0, 63), - [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [3416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, 0, 120), - [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [3420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), - [3422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, 0, 119), - [3424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 3, 0, 0), - [3426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 0, 106), - [3428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 0, 105), - [3430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 0, 104), - [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [3434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 82), - [3436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 83), - [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [3442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), - [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [3476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 1, 0, 3), - [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), - [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), - [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [3484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 2, 0, 7), SHIFT(2198), - [3487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 14), - [3489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 3), - [3491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 14), - [3493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), - [3495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), - [3497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), - [3499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, 0, 3), - [3501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, 0, 3), - [3503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, 0, 14), - [3505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, 0, 14), - [3507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 1, 0, 3), - [3509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 1, 0, 3), - [3511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_declarator, 2, 0, 34), - [3513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 3, 0, 14), - [3515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 3, 0, 14), - [3517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 3, 0, 34), - [3519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 3, 0, 34), - [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [3523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 4, 0, 34), - [3525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 4, 0, 34), - [3527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1334), - [3530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2, 0, 0), - [3532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2310), - [3535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2309), - [3538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(532), - [3541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2, 0, 0), - [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [3545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_declarator, 3, 0, 34), - [3547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declaration_declarator, 3, 0, 34), - [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [3551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__preproc_expression, 1, 0, 0), - [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [3555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__preproc_expression, 1, 0, 0), - [3557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), - [3559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2025), - [3562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), - [3564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 0), SHIFT(1295), - [3567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), - [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [3573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), - [3575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [3577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), - [3579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [3583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), - [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [3591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), - [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [3597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), - [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [3601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), - [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [3605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), - [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [3617] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT(819), - [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [3623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), SHIFT(1292), - [3626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(1296), - [3629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(1279), - [3632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(1293), - [3635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 15), SHIFT(819), - [3638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 14), SHIFT(819), - [3641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), - [3643] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [3649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 10), SHIFT(819), - [3652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 14), SHIFT(1289), - [3655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 3), SHIFT(819), - [3658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 15), SHIFT(1288), - [3661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), - [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [3665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), - [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [3669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), - [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [3693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, 0, 5), - [3695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, 0, 5), - [3697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 2, 0, 0), - [3699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 2, 0, 0), - [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [3709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, 0, 30), - [3711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, 0, 30), - [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [3739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3, 0, 0), - [3741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3, 0, 0), - [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [3749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 1, 0, 0), - [3751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 1, 0, 0), - [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [3757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2, 0, 0), - [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [3763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 4, 0, 0), - [3765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 4, 0, 0), - [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [3769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 1, 0, 42), - [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [3779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), - [3781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), - [3783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), - [3785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), - [3787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), - [3789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), - [3791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), - [3793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), - [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [3797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), - [3799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), - [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [3827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 1, 0, 22), - [3829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), - [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [3841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 4, 1, 89), - [3843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 3, 1, 60), - [3845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, 0, 32), - [3847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 1, 0, 0), - [3849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 1, 0, 0), REDUCE(aux_sym_function_declarator_repeat1, 1, 0, 0), - [3852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 1, 0, 0), - [3854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 2, 1, 32), - [3856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 5, 1, 112), - [3858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 4, 1, 89), - [3860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), - [3862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 3, 1, 60), - [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [3866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 1, 0, 22), - [3868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_field_declarator, 2, 0, 0), - [3870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_field_declarator, 2, 0, 0), - [3872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 5, 1, 112), - [3874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 2, 1, 32), - [3876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_type_declarator, 2, 0, 0), - [3878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_type_declarator, 2, 0, 0), - [3880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 32), - [3882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 4, -10, 0), - [3884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 4, -10, 0), - [3886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 2, 0, 34), - [3888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 2, 0, 34), - [3890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 5, 0, 115), - [3892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 5, 0, 115), - [3894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 3, 0, 22), - [3896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 3, 0, 22), - [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [3904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), - [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), - [3908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 3, 0, 40), - [3910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 2, 0, 17), - [3912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 3, -10, 0), - [3914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 3, -10, 0), - [3916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 5, -10, 0), - [3918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 5, -10, 0), - [3920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, 0, 0), - [3922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, 0, 0), - [3924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, 0, 51), - [3926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, 0, 51), - [3928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, 0, 93), - [3930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, 0, 93), - [3932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, 0, 22), - [3934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, 0, 22), - [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [3938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 0), - [3940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 0), - [3942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 1), - [3944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 1), - [3946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 21), - [3948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 21), - [3950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 4, -10, 0), - [3952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 4, -10, 0), - [3954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 3, -10, 0), - [3956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 3, -10, 0), - [3958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_declarator, 2, 0, 34), - [3960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_declarator, 2, 0, 34), - [3962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 5, -10, 0), - [3964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 5, -10, 0), - [3966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 5, 0, 115), - [3968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 5, 0, 115), - [3970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), - [3972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(2310), - [3975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(2309), - [3978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(532), - [3981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_declarator, 4, 0, 34), - [3983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 3, 0, 22), - [3985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 3, 0, 22), - [3987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), - [3989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, 0, 22), - [3991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, 0, 22), - [3993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, 0, 93), - [3995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, 0, 93), - [3997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 2, 1, 32), - [3999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), - [4001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 3, 1, 60), - [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), - [4005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), - [4007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), - [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [4011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 4, 1, 89), - [4013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 5, 1, 112), - [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [4017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_declarator, 2, 0, 0), - [4019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_declarator, 2, 0, 0), - [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [4023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 3, 0, 17), - [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [4027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), - [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), - [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), - [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [4035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), - [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [4041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), - [4043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 1, 0, 0), - [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [4051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 3, 0, 40), - [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [4061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, 0, 40), - [4063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 4, 0, 40), - [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [4071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 2, 0, 22), - [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [4077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 2, 0, 48), - [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [4083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 2, 0, 17), - [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [4087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1831), - [4090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1346), - [4093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2130), - [4096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1767), - [4099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), - [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [4107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, 0, 65), SHIFT_REPEAT(1503), - [4110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, 0, 65), - [4112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 2, 0, 48), - [4114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 3, 0, 103), - [4116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 65), SHIFT_REPEAT(1420), - [4119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 65), - [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [4123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 3, 0, 17), - [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [4129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 3, -10, 0), - [4131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 3, -10, 0), - [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [4137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 1, 0, 0), - [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), - [4141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 5, -10, 0), - [4143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 5, -10, 0), - [4145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 4, -10, 0), - [4147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 4, -10, 0), - [4149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 5, 0, 115), - [4151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 5, 0, 115), - [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [4155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 3, 0, 32), - [4157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 1, 0, 0), - [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), - [4161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, 0, 93), - [4163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, 0, 93), - [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [4167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, 0, 22), - [4169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, 0, 22), - [4171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), - [4173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 3, 0, 22), - [4175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 3, 0, 22), - [4177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), - [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), - [4183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), - [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [4187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), - [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), - [4191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 1, 0, 0), - [4193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), - [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), - [4197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, 0, 35), - [4199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 1, 0, 6), - [4201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 1, 0, 6), - [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [4205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), SHIFT_REPEAT(1605), - [4208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), - [4210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), - [4212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1831), - [4215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2, 0, 0), - [4217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2, 0, 0), - [4219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), SHIFT_REPEAT(649), - [4222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), - [4224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), SHIFT_REPEAT(2194), - [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), - [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [4239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1, 0, 0), - [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [4243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1, 0, 0), - [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [4263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 32), - [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [4271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2, 0, 0), - [4273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1737), - [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [4280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), - [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [4288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, 0, 99), - [4290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, 0, 99), - [4292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 4, 0, 75), - [4294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 72), - [4296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 72), - [4298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 40), - [4300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 40), - [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [4310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, 1, 60), - [4312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 19), - [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [4322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, 0, 73), - [4324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, 0, 73), - [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [4332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, 0, 40), - [4334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, 0, 40), - [4336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, 0, 17), - [4338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, 0, 17), - [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [4342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 4, 1, 89), - [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [4348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 17), - [4350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 17), - [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [4356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 41), - [4358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 41), - [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [4362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 46), - [4364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 43), - [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [4374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 2, 0, 34), - [4376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 1, 0, 20), - [4378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), - [4380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 2, 0, 0), - [4382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, 0, 32), - [4384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 4, 0, 116), - [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [4390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), - [4392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 5, 0, 0), - [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [4396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 5, 0, 115), - [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [4400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 3, 0, 94), - [4402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 22), - [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [4406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 0), - [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [4410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 22), - [4412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), - [4414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 74), - [4416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 4, 0, 0), - [4418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 93), - [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [4422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 6), - [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [4428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 1, 0, 0), - [4430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 3, 0, 0), - [4432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 100), - [4434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__abstract_declarator, 1, 0, 0), - [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [4438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 134), SHIFT_REPEAT(1577), - [4441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 134), - [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), - [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [4453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 49), - [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [4465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), - [4467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), - [4469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 1, 0, 0), - [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [4473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 3, 0, 129), - [4475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), - [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [4479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), - [4481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), - [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [4485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), - [4487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 122), SHIFT_REPEAT(1590), - [4490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 122), - [4492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), - [4494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1735), - [4497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1735), - [4500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 122), SHIFT_REPEAT(1598), - [4503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 122), - [4505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_qualifier, 1, 0, 0), - [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [4509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 1, 0, 11), - [4511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 2, 0, 0), - [4513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 2, 0, 123), - [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [4519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), - [4521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2, 0, 0), - [4523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1744), - [4526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), - [4528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2188), - [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [4532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 3, 0, 109), - [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [4536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 3, 0, 109), - [4538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), - [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [4542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), - [4544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), - [4546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), - [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [4550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), - [4552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 2, 0, 0), - [4554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 2, 0, 86), - [4556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 2, 0, 86), - [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), - [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [4616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 7, 0, 138), - [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [4622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 7, 0, 138), - [4624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 137), SHIFT_REPEAT(2281), - [4627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 137), - [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), - [4637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 3, 0, 135), - [4639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), - [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [4645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), - [4647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 123), - [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [4651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 4, 0, 128), - [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [4655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1126), - [4658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2, 0, 0), - [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [4668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(2010), - [4671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2, 0, 0), - [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [4675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_arg, 1, 0, 0), - [4677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), - [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [4689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_range_designator, 5, 0, 133), - [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [4697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 2, 0, 130), - [4699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 86), - [4701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 4, 0, 128), - [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [4705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1339), - [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [4722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2, 0, 0), SHIFT_REPEAT(1986), - [4725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2, 0, 0), - [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [4747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, 0, 65), SHIFT_REPEAT(1240), - [4750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, 0, 65), - [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), - [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [4770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_arg_repeat1, 2, 0, 0), - [4772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_arg_repeat1, 2, 0, 0), SHIFT_REPEAT(1845), - [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), - [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [4781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 86), - [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [4803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), - [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [4811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(629), - [4814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), - [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [4820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_designator, 2, 0, 101), - [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [4840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(518), - [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [4851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(535), - [4854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_designator, 3, 0, 0), - [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [4858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2267), - [4861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_specifier_repeat1, 2, 0, 0), - [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [4869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__old_style_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1786), - [4872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__old_style_parameter_list_repeat1, 2, 0, 0), - [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [4942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_arg, 2, 0, 0), - [4944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), - [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [4948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), - [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), - [4974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, 0, 49), - [4976] = {.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), - [4979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 2, 0, 0), - [4981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 2, 0, 0), - [4983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1, 0, 0), - [4985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 3, 0, 0), - [4987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 3, 0, 0), - [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [4995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 1, 0, 0), - [4997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 5, 0, 127), - [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [5003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 4, 0, 0), - [5005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 4, 0, 0), - [5007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 6), - [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), - [5015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 130), - [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [5019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, 0, 72), - [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), - [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), - [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [5055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, 0, 72), - [5057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 4, 0, 73), - [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), - [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), - [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [5127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, 0, 41), - [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [5131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_based_modifier, 2, 0, 0), - [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), - [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), - [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), - [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [5159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, 0, 17), - [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), - [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), - [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), - [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), - [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), - [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [5245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, 0, 99), - [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [5259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, 0, 40), - [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), - [5265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 3, 0, 41), - [5267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 3, 0, 41), - [5269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 5, 0, 73), - [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [5273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, 0, 41), - [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), - [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [5311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 3, 0, 41), - [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [5339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 6, 0, 99), - [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [5343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 4, 0, 72), - [5345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, 0, 72), - [5347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 4, 0, 73), - [5349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 4, 0, 73), - [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [5359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, 0, 72), - [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), - [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [5365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 4, 0, 73), - [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), - [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [5395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 5, 0, 99), - [5397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 5, 0, 99), - [5399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 5, 0, 99), - [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), - [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [5437] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), - [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), - [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), - [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [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), + [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), + [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), + [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), }; #ifdef __cplusplus