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);
103 %token EXPORT_SYMBOL_KEYW
106 %token ATTRIBUTE_PHRASE
109 %token BRACKET_PHRASE
110 %token EXPRESSION_PHRASE
126 | declaration_seq declaration
130 { is_typedef = 0; is_extern = 0; current_name = NULL; decl_spec = NULL; }
132 { free_list(*$2, NULL); *$2 = NULL; }
136 EXTENSION_KEYW TYPEDEF_KEYW { is_typedef = 1; } simple_declaration
138 | TYPEDEF_KEYW { is_typedef = 1; } simple_declaration
141 | function_definition
144 | error ';' { $$ = $2; }
145 | error '}' { $$ = $2; }
149 decl_specifier_seq_opt init_declarator_list_opt ';'
150 { if (current_name) {
151 struct string_list *decl = (*$3)->next;
153 add_symbol(current_name,
154 is_typedef ? SYM_TYPEDEF : SYM_NORMAL,
162 init_declarator_list_opt:
163 /* empty */ { $$ = NULL; }
164 | init_declarator_list
167 init_declarator_list:
169 { struct string_list *decl = *$1;
171 add_symbol(current_name,
172 is_typedef ? SYM_TYPEDEF : SYM_NORMAL, decl, is_extern);
176 | init_declarator_list ',' init_declarator
177 { struct string_list *decl = *$3;
179 free_list(*$2, NULL);
181 add_symbol(current_name,
182 is_typedef ? SYM_TYPEDEF : SYM_NORMAL, decl, is_extern);
189 declarator asm_phrase_opt attribute_opt initializer_opt
190 { $$ = $4 ? $4 : $3 ? $3 : $2 ? $2 : $1; }
193 /* Hang on to the specifiers so that we can reuse them. */
194 decl_specifier_seq_opt:
195 /* empty */ { decl_spec = NULL; }
200 decl_specifier { decl_spec = *$1; }
201 | decl_specifier_seq decl_specifier { decl_spec = *$2; }
205 storage_class_specifier
206 { /* Version 2 checksumming ignores storage class, as that
207 is really irrelevant to the linkage. */
214 storage_class_specifier:
218 | EXTERN_KEYW { is_extern = 1; $$ = $1; }
219 | INLINE_KEYW { is_extern = 0; $$ = $1; }
223 simple_type_specifier
225 | TYPEOF_KEYW '(' parameter_declaration ')'
228 /* References to s/u/e's defined elsewhere. Rearrange things
229 so that it is easier to expand the definition fully later. */
231 { remove_node($1); (*$2)->tag = SYM_STRUCT; $$ = $2; }
233 { remove_node($1); (*$2)->tag = SYM_UNION; $$ = $2; }
235 { remove_node($1); (*$2)->tag = SYM_ENUM; $$ = $2; }
237 /* Full definitions of an s/u/e. Record it. */
238 | STRUCT_KEYW IDENT class_body
239 { record_compound($1, $2, $3, SYM_STRUCT); $$ = $3; }
240 | UNION_KEYW IDENT class_body
241 { record_compound($1, $2, $3, SYM_UNION); $$ = $3; }
242 | ENUM_KEYW IDENT enum_body
243 { record_compound($1, $2, $3, SYM_ENUM); $$ = $3; }
245 * Anonymous enum definition. Tell add_symbol() to restart its counter.
247 | ENUM_KEYW enum_body
248 { add_symbol(NULL, SYM_ENUM, NULL, 0); $$ = $2; }
249 /* Anonymous s/u definitions. Nothing needs doing. */
250 | STRUCT_KEYW class_body { $$ = $2; }
251 | UNION_KEYW class_body { $$ = $2; }
254 simple_type_specifier:
266 | TYPE { (*$1)->tag = SYM_TYPEDEF; $$ = $1; }
270 '*' cvar_qualifier_seq_opt
271 { $$ = $2 ? $2 : $1; }
274 cvar_qualifier_seq_opt:
275 /* empty */ { $$ = NULL; }
281 | cvar_qualifier_seq cvar_qualifier { $$ = $2; }
285 CONST_KEYW | VOLATILE_KEYW | ATTRIBUTE_PHRASE
287 { /* restrict has no effect in prototypes so ignore it */
294 ptr_operator declarator { $$ = $2; }
300 { if (current_name != NULL) {
301 error_with_pos("unexpected second declaration name");
304 current_name = (*$1)->string;
309 { if (current_name != NULL) {
310 error_with_pos("unexpected second declaration name");
313 current_name = (*$1)->string;
317 | direct_declarator '(' parameter_declaration_clause ')'
319 | direct_declarator '(' error ')'
321 | direct_declarator BRACKET_PHRASE
327 /* Nested declarators differ from regular declarators in that they do
328 not record the symbols they find in the global symbol table. */
330 ptr_operator nested_declarator { $$ = $2; }
331 | direct_nested_declarator
334 direct_nested_declarator:
337 | direct_nested_declarator '(' parameter_declaration_clause ')'
339 | direct_nested_declarator '(' error ')'
341 | direct_nested_declarator BRACKET_PHRASE
343 | '(' nested_declarator ')'
349 parameter_declaration_clause:
350 parameter_declaration_list_opt DOTS { $$ = $2; }
351 | parameter_declaration_list_opt
352 | parameter_declaration_list ',' DOTS { $$ = $3; }
355 parameter_declaration_list_opt:
356 /* empty */ { $$ = NULL; }
357 | parameter_declaration_list
360 parameter_declaration_list:
361 parameter_declaration
362 | parameter_declaration_list ',' parameter_declaration
366 parameter_declaration:
367 decl_specifier_seq m_abstract_declarator
368 { $$ = $2 ? $2 : $1; }
371 m_abstract_declarator:
372 ptr_operator m_abstract_declarator
373 { $$ = $2 ? $2 : $1; }
374 | direct_m_abstract_declarator
377 direct_m_abstract_declarator:
378 /* empty */ { $$ = NULL; }
380 { /* For version 2 checksums, we don't want to remember
381 private parameter names. */
385 /* This wasn't really a typedef name but an identifier that
391 | direct_m_abstract_declarator '(' parameter_declaration_clause ')'
393 | direct_m_abstract_declarator '(' error ')'
395 | direct_m_abstract_declarator BRACKET_PHRASE
397 | '(' m_abstract_declarator ')'
404 decl_specifier_seq_opt declarator BRACE_PHRASE
405 { struct string_list *decl = *$2;
407 add_symbol(current_name, SYM_NORMAL, decl, is_extern);
413 /* empty */ { $$ = NULL; }
417 /* We never care about the contents of an initializer. */
419 '=' EXPRESSION_PHRASE
420 { remove_list($2, &(*$1)->next); $$ = $2; }
424 '{' member_specification_opt '}' { $$ = $3; }
425 | '{' error '}' { $$ = $3; }
428 member_specification_opt:
429 /* empty */ { $$ = NULL; }
430 | member_specification
433 member_specification:
435 | member_specification member_declaration { $$ = $2; }
439 decl_specifier_seq_opt member_declarator_list_opt ';'
445 member_declarator_list_opt:
446 /* empty */ { $$ = NULL; }
447 | member_declarator_list
450 member_declarator_list:
452 | member_declarator_list ',' member_declarator { $$ = $3; }
456 nested_declarator attribute_opt { $$ = $2 ? $2 : $1; }
457 | IDENT member_bitfield_declarator { $$ = $2; }
458 | member_bitfield_declarator
461 member_bitfield_declarator:
462 ':' EXPRESSION_PHRASE { $$ = $2; }
466 /* empty */ { $$ = NULL; }
467 | attribute_opt ATTRIBUTE_PHRASE
471 '{' enumerator_list '}' { $$ = $3; }
472 | '{' enumerator_list ',' '}' { $$ = $4; }
477 | enumerator_list ',' enumerator
482 const char *name = strdup((*$1)->string);
483 add_symbol(name, SYM_ENUM_CONST, NULL, 0);
485 | IDENT '=' EXPRESSION_PHRASE
487 const char *name = strdup((*$1)->string);
488 struct string_list *expr = copy_list_range(*$3, *$2);
489 add_symbol(name, SYM_ENUM_CONST, expr, 0);
493 ASM_PHRASE ';' { $$ = $2; }
497 /* empty */ { $$ = NULL; }
502 EXPORT_SYMBOL_KEYW '(' IDENT ')' ';'
503 { export_symbol((*$3)->string); $$ = $5; }
510 yyerror(const char *e)
512 error_with_pos("%s", e);