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
);
102 %token EXPORT_SYMBOL_KEYW
105 %token ATTRIBUTE_PHRASE
108 %token BRACKET_PHRASE
109 %token EXPRESSION_PHRASE
125 | declaration_seq declaration
129 { is_typedef
= 0; is_extern
= 0; current_name
= NULL
; decl_spec
= NULL
; }
131 { free_list
(*$2, NULL
); *$2 = NULL
; }
135 EXTENSION_KEYW TYPEDEF_KEYW
{ is_typedef
= 1; } simple_declaration
137 | TYPEDEF_KEYW
{ is_typedef
= 1; } simple_declaration
140 | function_definition
143 |
error ';' { $$
= $2; }
144 |
error '}' { $$
= $2; }
148 decl_specifier_seq_opt init_declarator_list_opt
';'
149 { if
(current_name
) {
150 struct string_list
*decl
= (*$3)->next
;
152 add_symbol
(current_name
,
153 is_typedef ? SYM_TYPEDEF
: SYM_NORMAL
,
161 init_declarator_list_opt:
162 /* empty */ { $$
= NULL
; }
163 | init_declarator_list
166 init_declarator_list:
168 { struct string_list
*decl
= *$1;
170 add_symbol
(current_name
,
171 is_typedef ? SYM_TYPEDEF
: SYM_NORMAL
, decl
, is_extern
);
175 | init_declarator_list
',' init_declarator
176 { struct string_list
*decl
= *$3;
178 free_list
(*$2, NULL
);
180 add_symbol
(current_name
,
181 is_typedef ? SYM_TYPEDEF
: SYM_NORMAL
, decl
, is_extern
);
188 declarator asm_phrase_opt attribute_opt initializer_opt
189 { $$
= $4 ?
$4 : $3 ?
$3 : $2 ?
$2 : $1; }
192 /* Hang on to the specifiers so that we can reuse them. */
193 decl_specifier_seq_opt:
194 /* empty */ { decl_spec
= NULL
; }
199 decl_specifier
{ decl_spec
= *$1; }
200 | decl_specifier_seq decl_specifier
{ decl_spec
= *$2; }
204 storage_class_specifier
205 { /* Version 2 checksumming ignores storage class, as that
206 is really irrelevant to the linkage. */
213 storage_class_specifier:
217 | EXTERN_KEYW
{ is_extern
= 1; $$
= $1; }
218 | INLINE_KEYW
{ is_extern
= 0; $$
= $1; }
222 simple_type_specifier
224 | TYPEOF_KEYW
'(' parameter_declaration
')'
227 /* References to s/u/e's defined elsewhere. Rearrange things
228 so that it is easier to expand the definition fully later. */
230 { remove_node
($1); (*$2)->tag
= SYM_STRUCT
; $$
= $2; }
232 { remove_node
($1); (*$2)->tag
= SYM_UNION
; $$
= $2; }
234 { remove_node
($1); (*$2)->tag
= SYM_ENUM
; $$
= $2; }
236 /* Full definitions of an s/u/e. Record it. */
237 | STRUCT_KEYW IDENT class_body
238 { record_compound
($1, $2, $3, SYM_STRUCT
); $$
= $3; }
239 | UNION_KEYW IDENT class_body
240 { record_compound
($1, $2, $3, SYM_UNION
); $$
= $3; }
241 | ENUM_KEYW IDENT enum_body
242 { record_compound
($1, $2, $3, SYM_ENUM
); $$
= $3; }
244 * Anonymous enum definition. Tell add_symbol() to restart its counter.
246 | ENUM_KEYW enum_body
247 { add_symbol
(NULL
, SYM_ENUM
, NULL
, 0); $$
= $2; }
248 /* Anonymous s/u definitions. Nothing needs doing. */
249 | STRUCT_KEYW class_body
{ $$
= $2; }
250 | UNION_KEYW class_body
{ $$
= $2; }
253 simple_type_specifier:
264 | TYPE
{ (*$1)->tag
= SYM_TYPEDEF
; $$
= $1; }
268 '*' cvar_qualifier_seq_opt
269 { $$
= $2 ?
$2 : $1; }
272 cvar_qualifier_seq_opt:
273 /* empty */ { $$
= NULL
; }
279 | cvar_qualifier_seq cvar_qualifier
{ $$
= $2; }
283 CONST_KEYW | VOLATILE_KEYW | ATTRIBUTE_PHRASE
285 { /* restrict has no effect in prototypes so ignore it */
292 ptr_operator declarator
{ $$
= $2; }
298 { if
(current_name
!= NULL
) {
299 error_with_pos
("unexpected second declaration name");
302 current_name
= (*$1)->string;
306 | direct_declarator
'(' parameter_declaration_clause
')'
308 | direct_declarator
'(' error ')'
310 | direct_declarator BRACKET_PHRASE
318 /* Nested declarators differ from regular declarators in that they do
319 not record the symbols they find in the global symbol table. */
321 ptr_operator nested_declarator
{ $$
= $2; }
322 | direct_nested_declarator
325 direct_nested_declarator:
328 | direct_nested_declarator
'(' parameter_declaration_clause
')'
330 | direct_nested_declarator
'(' error ')'
332 | direct_nested_declarator BRACKET_PHRASE
334 |
'(' nested_declarator
')'
340 parameter_declaration_clause:
341 parameter_declaration_list_opt DOTS
{ $$
= $2; }
342 | parameter_declaration_list_opt
343 | parameter_declaration_list
',' DOTS
{ $$
= $3; }
346 parameter_declaration_list_opt:
347 /* empty */ { $$
= NULL
; }
348 | parameter_declaration_list
351 parameter_declaration_list:
352 parameter_declaration
353 | parameter_declaration_list
',' parameter_declaration
357 parameter_declaration:
358 decl_specifier_seq m_abstract_declarator
359 { $$
= $2 ?
$2 : $1; }
362 m_abstract_declarator:
363 ptr_operator m_abstract_declarator
364 { $$
= $2 ?
$2 : $1; }
365 | direct_m_abstract_declarator
368 direct_m_abstract_declarator:
369 /* empty */ { $$
= NULL
; }
371 { /* For version 2 checksums, we don't want to remember
372 private parameter names. */
376 /* This wasn't really a typedef name but an identifier that
382 | direct_m_abstract_declarator
'(' parameter_declaration_clause
')'
384 | direct_m_abstract_declarator
'(' error ')'
386 | direct_m_abstract_declarator BRACKET_PHRASE
388 |
'(' m_abstract_declarator
')'
395 decl_specifier_seq_opt declarator BRACE_PHRASE
396 { struct string_list
*decl
= *$2;
398 add_symbol
(current_name
, SYM_NORMAL
, decl
, is_extern
);
404 /* empty */ { $$
= NULL
; }
408 /* We never care about the contents of an initializer. */
410 '=' EXPRESSION_PHRASE
411 { remove_list
($2, &(*$1)->next
); $$
= $2; }
415 '{' member_specification_opt
'}' { $$
= $3; }
416 |
'{' error '}' { $$
= $3; }
419 member_specification_opt:
420 /* empty */ { $$
= NULL
; }
421 | member_specification
424 member_specification:
426 | member_specification member_declaration
{ $$
= $2; }
430 decl_specifier_seq_opt member_declarator_list_opt
';'
436 member_declarator_list_opt:
437 /* empty */ { $$
= NULL
; }
438 | member_declarator_list
441 member_declarator_list:
443 | member_declarator_list
',' member_declarator
{ $$
= $3; }
447 nested_declarator attribute_opt
{ $$
= $2 ?
$2 : $1; }
448 | IDENT member_bitfield_declarator
{ $$
= $2; }
449 | member_bitfield_declarator
452 member_bitfield_declarator:
453 ':' EXPRESSION_PHRASE
{ $$
= $2; }
457 /* empty */ { $$
= NULL
; }
458 | attribute_opt ATTRIBUTE_PHRASE
462 '{' enumerator_list
'}' { $$
= $3; }
463 |
'{' enumerator_list
',' '}' { $$
= $4; }
468 | enumerator_list
',' enumerator
473 const char *name
= strdup
((*$1)->string);
474 add_symbol
(name
, SYM_ENUM_CONST
, NULL
, 0);
476 | IDENT
'=' EXPRESSION_PHRASE
478 const char *name
= strdup
((*$1)->string);
479 struct string_list
*expr
= copy_list_range
(*$3, *$2);
480 add_symbol
(name
, SYM_ENUM_CONST
, expr
, 0);
484 ASM_PHRASE
';' { $$
= $2; }
488 /* empty */ { $$
= NULL
; }
493 EXPORT_SYMBOL_KEYW
'(' IDENT
')' ';'
494 { export_symbol
((*$3)->string); $$
= $5; }
501 yyerror(const char *e
)
503 error_with_pos
("%s", e
);