1 /* C global declaration parser for genksyms.
2 Copyright 1996, 1997 Linux International.
4 New implementation contributed by Richard Henderson <rth@tamu.edu>
5 Based on original work by Bjorn Ekwall <bj0rn@blox.se>
7 This file is part of the Linux modutils.
9 This program is free software; you can redistribute it and/or modify it
10 under the terms of the GNU General Public License as published by the
11 Free Software Foundation; either version 2 of the License, or (at your
12 option) any later version.
14 This program is distributed in the hope that it will be useful, but
15 WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software Foundation,
21 Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
30 static int is_typedef;
32 static char *current_name;
33 static struct string_list *decl_spec;
35 static void yyerror(const char *);
38 remove_node(struct string_list **p)
40 struct string_list *node = *p;
46 remove_list(struct string_list **pb, struct string_list **pe)
48 struct string_list *b = *pb, *e = *pe;
81 %token EXPORT_SYMBOL_KEYW
84 %token ATTRIBUTE_PHRASE
87 %token EXPRESSION_PHRASE
103 | declaration_seq declaration
107 { is_typedef = 0; is_extern = 0; current_name = NULL; decl_spec = NULL; }
109 { free_list(*$2, NULL); *$2 = NULL; }
113 TYPEDEF_KEYW { is_typedef = 1; } simple_declaration
116 | function_definition
119 | error ';' { $$ = $2; }
120 | error '}' { $$ = $2; }
124 decl_specifier_seq_opt init_declarator_list_opt ';'
125 { if (current_name) {
126 struct string_list *decl = (*$3)->next;
128 add_symbol(current_name,
129 is_typedef ? SYM_TYPEDEF : SYM_NORMAL,
137 init_declarator_list_opt:
138 /* empty */ { $$ = NULL; }
139 | init_declarator_list
142 init_declarator_list:
144 { struct string_list *decl = *$1;
146 add_symbol(current_name,
147 is_typedef ? SYM_TYPEDEF : SYM_NORMAL, decl, is_extern);
151 | init_declarator_list ',' init_declarator
152 { struct string_list *decl = *$3;
154 free_list(*$2, NULL);
156 add_symbol(current_name,
157 is_typedef ? SYM_TYPEDEF : SYM_NORMAL, decl, is_extern);
164 declarator asm_phrase_opt attribute_opt initializer_opt
165 { $$ = $4 ? $4 : $3 ? $3 : $2 ? $2 : $1; }
168 /* Hang on to the specifiers so that we can reuse them. */
169 decl_specifier_seq_opt:
170 /* empty */ { decl_spec = NULL; }
175 decl_specifier { decl_spec = *$1; }
176 | decl_specifier_seq decl_specifier { decl_spec = *$2; }
180 storage_class_specifier
181 { /* Version 2 checksumming ignores storage class, as that
182 is really irrelevant to the linkage. */
189 storage_class_specifier:
193 | EXTERN_KEYW { is_extern = 1; $$ = $1; }
194 | INLINE_KEYW { is_extern = 0; $$ = $1; }
198 simple_type_specifier
200 | TYPEOF_KEYW '(' decl_specifier_seq '*' ')'
201 | TYPEOF_KEYW '(' decl_specifier_seq ')'
203 /* References to s/u/e's defined elsewhere. Rearrange things
204 so that it is easier to expand the definition fully later. */
206 { remove_node($1); (*$2)->tag = SYM_STRUCT; $$ = $2; }
208 { remove_node($1); (*$2)->tag = SYM_UNION; $$ = $2; }
210 { remove_node($1); (*$2)->tag = SYM_ENUM; $$ = $2; }
212 /* Full definitions of an s/u/e. Record it. */
213 | STRUCT_KEYW IDENT class_body
214 { struct string_list *s = *$3, *i = *$2, *r;
215 r = copy_node(i); r->tag = SYM_STRUCT;
216 r->next = (*$1)->next; *$3 = r; (*$1)->next = NULL;
217 add_symbol(i->string, SYM_STRUCT, s, is_extern);
220 | UNION_KEYW IDENT class_body
221 { struct string_list *s = *$3, *i = *$2, *r;
222 r = copy_node(i); r->tag = SYM_UNION;
223 r->next = (*$1)->next; *$3 = r; (*$1)->next = NULL;
224 add_symbol(i->string, SYM_UNION, s, is_extern);
227 | ENUM_KEYW IDENT BRACE_PHRASE
228 { struct string_list *s = *$3, *i = *$2, *r;
229 r = copy_node(i); r->tag = SYM_ENUM;
230 r->next = (*$1)->next; *$3 = r; (*$1)->next = NULL;
231 add_symbol(i->string, SYM_ENUM, s, is_extern);
235 /* Anonymous s/u/e definitions. Nothing needs doing. */
236 | ENUM_KEYW BRACE_PHRASE { $$ = $2; }
237 | STRUCT_KEYW class_body { $$ = $2; }
238 | UNION_KEYW class_body { $$ = $2; }
241 simple_type_specifier:
252 | TYPE { (*$1)->tag = SYM_TYPEDEF; $$ = $1; }
256 '*' cvar_qualifier_seq_opt
257 { $$ = $2 ? $2 : $1; }
260 cvar_qualifier_seq_opt:
261 /* empty */ { $$ = NULL; }
267 | cvar_qualifier_seq cvar_qualifier { $$ = $2; }
271 CONST_KEYW | VOLATILE_KEYW | ATTRIBUTE_PHRASE
273 { /* restrict has no effect in prototypes so ignore it */
280 ptr_operator declarator { $$ = $2; }
286 { if (current_name != NULL) {
287 error_with_pos("unexpected second declaration name");
290 current_name = (*$1)->string;
294 | direct_declarator '(' parameter_declaration_clause ')'
296 | direct_declarator '(' error ')'
298 | direct_declarator BRACKET_PHRASE
306 /* Nested declarators differ from regular declarators in that they do
307 not record the symbols they find in the global symbol table. */
309 ptr_operator nested_declarator { $$ = $2; }
310 | direct_nested_declarator
313 direct_nested_declarator:
316 | direct_nested_declarator '(' parameter_declaration_clause ')'
318 | direct_nested_declarator '(' error ')'
320 | direct_nested_declarator BRACKET_PHRASE
322 | '(' nested_declarator ')'
328 parameter_declaration_clause:
329 parameter_declaration_list_opt DOTS { $$ = $2; }
330 | parameter_declaration_list_opt
331 | parameter_declaration_list ',' DOTS { $$ = $3; }
334 parameter_declaration_list_opt:
335 /* empty */ { $$ = NULL; }
336 | parameter_declaration_list
339 parameter_declaration_list:
340 parameter_declaration
341 | parameter_declaration_list ',' parameter_declaration
345 parameter_declaration:
346 decl_specifier_seq m_abstract_declarator
347 { $$ = $2 ? $2 : $1; }
350 m_abstract_declarator:
351 ptr_operator m_abstract_declarator
352 { $$ = $2 ? $2 : $1; }
353 | direct_m_abstract_declarator
356 direct_m_abstract_declarator:
357 /* empty */ { $$ = NULL; }
359 { /* For version 2 checksums, we don't want to remember
360 private parameter names. */
364 /* This wasn't really a typedef name but an identifier that
370 | direct_m_abstract_declarator '(' parameter_declaration_clause ')'
372 | direct_m_abstract_declarator '(' error ')'
374 | direct_m_abstract_declarator BRACKET_PHRASE
376 | '(' m_abstract_declarator ')'
383 decl_specifier_seq_opt declarator BRACE_PHRASE
384 { struct string_list *decl = *$2;
386 add_symbol(current_name, SYM_NORMAL, decl, is_extern);
392 /* empty */ { $$ = NULL; }
396 /* We never care about the contents of an initializer. */
398 '=' EXPRESSION_PHRASE
399 { remove_list($2, &(*$1)->next); $$ = $2; }
403 '{' member_specification_opt '}' { $$ = $3; }
404 | '{' error '}' { $$ = $3; }
407 member_specification_opt:
408 /* empty */ { $$ = NULL; }
409 | member_specification
412 member_specification:
414 | member_specification member_declaration { $$ = $2; }
418 decl_specifier_seq_opt member_declarator_list_opt ';'
424 member_declarator_list_opt:
425 /* empty */ { $$ = NULL; }
426 | member_declarator_list
429 member_declarator_list:
431 | member_declarator_list ',' member_declarator { $$ = $3; }
435 nested_declarator attribute_opt { $$ = $2 ? $2 : $1; }
436 | IDENT member_bitfield_declarator { $$ = $2; }
437 | member_bitfield_declarator
440 member_bitfield_declarator:
441 ':' EXPRESSION_PHRASE { $$ = $2; }
445 /* empty */ { $$ = NULL; }
450 ASM_PHRASE ';' { $$ = $2; }
454 /* empty */ { $$ = NULL; }
459 EXPORT_SYMBOL_KEYW '(' IDENT ')' ';'
460 { export_symbol((*$3)->string); $$ = $5; }
467 yyerror(const char *e)
469 error_with_pos("%s", e);