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. */
31 static int is_typedef;
33 static char *current_name;
34 static struct string_list *decl_spec;
36 static void yyerror(const char *);
39 remove_node(struct string_list **p)
41 struct string_list *node = *p;
47 remove_list(struct string_list **pb, struct string_list **pe)
49 struct string_list *b = *pb, *e = *pe;
54 /* Record definition of a struct/union/enum */
55 static void record_compound(struct string_list **keyw,
56 struct string_list **ident,
57 struct string_list **body,
58 enum symbol_type type)
60 struct string_list *b = *body, *i = *ident, *r;
62 if (i->in_source_file) {
65 remove_list(body, ident);
68 r = copy_node(i); r->tag = type;
69 r->next = (*keyw)->next; *body = r; (*keyw)->next = NULL;
70 add_symbol(i->string, type, b, is_extern);
79 %token BUILTIN_INT_KEYW
104 %token EXPORT_SYMBOL_KEYW
107 %token ATTRIBUTE_PHRASE
110 %token BRACKET_PHRASE
111 %token EXPRESSION_PHRASE
127 | declaration_seq declaration
131 { is_typedef = 0; is_extern = 0; current_name = NULL; decl_spec = NULL; }
133 { free_list(*$2, NULL); *$2 = NULL; }
137 EXTENSION_KEYW TYPEDEF_KEYW { is_typedef = 1; } simple_declaration
139 | TYPEDEF_KEYW { is_typedef = 1; } simple_declaration
142 | function_definition
145 | error ';' { $$ = $2; }
146 | error '}' { $$ = $2; }
150 decl_specifier_seq_opt init_declarator_list_opt ';'
151 { if (current_name) {
152 struct string_list *decl = (*$3)->next;
154 add_symbol(current_name,
155 is_typedef ? SYM_TYPEDEF : SYM_NORMAL,
163 init_declarator_list_opt:
164 /* empty */ { $$ = NULL; }
165 | init_declarator_list
168 init_declarator_list:
170 { struct string_list *decl = *$1;
172 add_symbol(current_name,
173 is_typedef ? SYM_TYPEDEF : SYM_NORMAL, decl, is_extern);
177 | init_declarator_list ',' init_declarator
178 { struct string_list *decl = *$3;
180 free_list(*$2, NULL);
182 add_symbol(current_name,
183 is_typedef ? SYM_TYPEDEF : SYM_NORMAL, decl, is_extern);
190 declarator asm_phrase_opt attribute_opt initializer_opt
191 { $$ = $4 ? $4 : $3 ? $3 : $2 ? $2 : $1; }
194 /* Hang on to the specifiers so that we can reuse them. */
195 decl_specifier_seq_opt:
196 /* empty */ { decl_spec = NULL; }
201 decl_specifier { decl_spec = *$1; }
202 | decl_specifier_seq decl_specifier { decl_spec = *$2; }
206 storage_class_specifier
207 { /* Version 2 checksumming ignores storage class, as that
208 is really irrelevant to the linkage. */
215 storage_class_specifier:
219 | EXTERN_KEYW { is_extern = 1; $$ = $1; }
220 | INLINE_KEYW { is_extern = 0; $$ = $1; }
224 simple_type_specifier
226 | TYPEOF_KEYW '(' parameter_declaration ')'
229 /* References to s/u/e's defined elsewhere. Rearrange things
230 so that it is easier to expand the definition fully later. */
232 { remove_node($1); (*$2)->tag = SYM_STRUCT; $$ = $2; }
234 { remove_node($1); (*$2)->tag = SYM_UNION; $$ = $2; }
236 { remove_node($1); (*$2)->tag = SYM_ENUM; $$ = $2; }
238 /* Full definitions of an s/u/e. Record it. */
239 | STRUCT_KEYW IDENT class_body
240 { record_compound($1, $2, $3, SYM_STRUCT); $$ = $3; }
241 | UNION_KEYW IDENT class_body
242 { record_compound($1, $2, $3, SYM_UNION); $$ = $3; }
243 | ENUM_KEYW IDENT enum_body
244 { record_compound($1, $2, $3, SYM_ENUM); $$ = $3; }
246 * Anonymous enum definition. Tell add_symbol() to restart its counter.
248 | ENUM_KEYW enum_body
249 { add_symbol(NULL, SYM_ENUM, NULL, 0); $$ = $2; }
250 /* Anonymous s/u definitions. Nothing needs doing. */
251 | STRUCT_KEYW class_body { $$ = $2; }
252 | UNION_KEYW class_body { $$ = $2; }
255 simple_type_specifier:
268 | TYPE { (*$1)->tag = SYM_TYPEDEF; $$ = $1; }
272 '*' cvar_qualifier_seq_opt
273 { $$ = $2 ? $2 : $1; }
276 cvar_qualifier_seq_opt:
277 /* empty */ { $$ = NULL; }
283 | cvar_qualifier_seq cvar_qualifier { $$ = $2; }
287 CONST_KEYW | VOLATILE_KEYW | ATTRIBUTE_PHRASE
289 { /* restrict has no effect in prototypes so ignore it */
296 ptr_operator declarator { $$ = $2; }
302 { if (current_name != NULL) {
303 error_with_pos("unexpected second declaration name");
306 current_name = (*$1)->string;
311 { if (current_name != NULL) {
312 error_with_pos("unexpected second declaration name");
315 current_name = (*$1)->string;
319 | direct_declarator '(' parameter_declaration_clause ')'
321 | direct_declarator '(' error ')'
323 | direct_declarator BRACKET_PHRASE
329 /* Nested declarators differ from regular declarators in that they do
330 not record the symbols they find in the global symbol table. */
332 ptr_operator nested_declarator { $$ = $2; }
333 | direct_nested_declarator
336 direct_nested_declarator:
339 | direct_nested_declarator '(' parameter_declaration_clause ')'
341 | direct_nested_declarator '(' error ')'
343 | direct_nested_declarator BRACKET_PHRASE
345 | '(' nested_declarator ')'
351 parameter_declaration_clause:
352 parameter_declaration_list_opt DOTS { $$ = $2; }
353 | parameter_declaration_list_opt
354 | parameter_declaration_list ',' DOTS { $$ = $3; }
357 parameter_declaration_list_opt:
358 /* empty */ { $$ = NULL; }
359 | parameter_declaration_list
362 parameter_declaration_list:
363 parameter_declaration
364 | parameter_declaration_list ',' parameter_declaration
368 parameter_declaration:
369 decl_specifier_seq m_abstract_declarator
370 { $$ = $2 ? $2 : $1; }
373 m_abstract_declarator:
374 ptr_operator m_abstract_declarator
375 { $$ = $2 ? $2 : $1; }
376 | direct_m_abstract_declarator
379 direct_m_abstract_declarator:
380 /* empty */ { $$ = NULL; }
382 { /* For version 2 checksums, we don't want to remember
383 private parameter names. */
387 /* This wasn't really a typedef name but an identifier that
393 | direct_m_abstract_declarator '(' parameter_declaration_clause ')'
395 | direct_m_abstract_declarator '(' error ')'
397 | direct_m_abstract_declarator BRACKET_PHRASE
399 | '(' m_abstract_declarator ')'
406 decl_specifier_seq_opt declarator BRACE_PHRASE
407 { struct string_list *decl = *$2;
409 add_symbol(current_name, SYM_NORMAL, decl, is_extern);
415 /* empty */ { $$ = NULL; }
419 /* We never care about the contents of an initializer. */
421 '=' EXPRESSION_PHRASE
422 { remove_list($2, &(*$1)->next); $$ = $2; }
426 '{' member_specification_opt '}' { $$ = $3; }
427 | '{' error '}' { $$ = $3; }
430 member_specification_opt:
431 /* empty */ { $$ = NULL; }
432 | member_specification
435 member_specification:
437 | member_specification member_declaration { $$ = $2; }
441 decl_specifier_seq_opt member_declarator_list_opt ';'
447 member_declarator_list_opt:
448 /* empty */ { $$ = NULL; }
449 | member_declarator_list
452 member_declarator_list:
454 | member_declarator_list ',' member_declarator { $$ = $3; }
458 nested_declarator attribute_opt { $$ = $2 ? $2 : $1; }
459 | IDENT member_bitfield_declarator { $$ = $2; }
460 | member_bitfield_declarator
463 member_bitfield_declarator:
464 ':' EXPRESSION_PHRASE { $$ = $2; }
468 /* empty */ { $$ = NULL; }
469 | attribute_opt ATTRIBUTE_PHRASE
473 '{' enumerator_list '}' { $$ = $3; }
474 | '{' enumerator_list ',' '}' { $$ = $4; }
479 | enumerator_list ',' enumerator
484 const char *name = strdup((*$1)->string);
485 add_symbol(name, SYM_ENUM_CONST, NULL, 0);
487 | IDENT '=' EXPRESSION_PHRASE
489 const char *name = strdup((*$1)->string);
490 struct string_list *expr = copy_list_range(*$3, *$2);
491 add_symbol(name, SYM_ENUM_CONST, expr, 0);
495 ASM_PHRASE ';' { $$ = $2; }
499 /* empty */ { $$ = NULL; }
504 EXPORT_SYMBOL_KEYW '(' IDENT ')' ';'
505 { export_symbol((*$3)->string); $$ = $5; }
512 yyerror(const char *e)
514 error_with_pos("%s", e);