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
')'
202 /* References to s/u/e's defined elsewhere. Rearrange things
203 so that it is easier to expand the definition fully later. */
205 { remove_node
($1); (*$2)->tag
= SYM_STRUCT
; $$
= $2; }
207 { remove_node
($1); (*$2)->tag
= SYM_UNION
; $$
= $2; }
209 { remove_node
($1); (*$2)->tag
= SYM_ENUM
; $$
= $2; }
211 /* Full definitions of an s/u/e. Record it. */
212 | STRUCT_KEYW IDENT class_body
213 { struct string_list
*s
= *$3, *i
= *$2, *r
;
214 r
= copy_node
(i
); r
->tag
= SYM_STRUCT
;
215 r
->next
= (*$1)->next
; *$3 = r
; (*$1)->next
= NULL
;
216 add_symbol
(i
->string, SYM_STRUCT
, s
, is_extern
);
219 | UNION_KEYW IDENT class_body
220 { struct string_list
*s
= *$3, *i
= *$2, *r
;
221 r
= copy_node
(i
); r
->tag
= SYM_UNION
;
222 r
->next
= (*$1)->next
; *$3 = r
; (*$1)->next
= NULL
;
223 add_symbol
(i
->string, SYM_UNION
, s
, is_extern
);
226 | ENUM_KEYW IDENT BRACE_PHRASE
227 { struct string_list
*s
= *$3, *i
= *$2, *r
;
228 r
= copy_node
(i
); r
->tag
= SYM_ENUM
;
229 r
->next
= (*$1)->next
; *$3 = r
; (*$1)->next
= NULL
;
230 add_symbol
(i
->string, SYM_ENUM
, s
, is_extern
);
234 /* Anonymous s/u/e definitions. Nothing needs doing. */
235 | ENUM_KEYW BRACE_PHRASE
{ $$
= $2; }
236 | STRUCT_KEYW class_body
{ $$
= $2; }
237 | UNION_KEYW class_body
{ $$
= $2; }
240 simple_type_specifier:
251 | TYPE
{ (*$1)->tag
= SYM_TYPEDEF
; $$
= $1; }
255 '*' cvar_qualifier_seq_opt
256 { $$
= $2 ?
$2 : $1; }
259 cvar_qualifier_seq_opt:
260 /* empty */ { $$
= NULL
; }
266 | cvar_qualifier_seq cvar_qualifier
{ $$
= $2; }
270 CONST_KEYW | VOLATILE_KEYW | ATTRIBUTE_PHRASE
272 { /* restrict has no effect in prototypes so ignore it */
279 ptr_operator declarator
{ $$
= $2; }
285 { if
(current_name
!= NULL
) {
286 error_with_pos
("unexpected second declaration name");
289 current_name
= (*$1)->string;
293 | direct_declarator
'(' parameter_declaration_clause
')'
295 | direct_declarator
'(' error ')'
297 | direct_declarator BRACKET_PHRASE
305 /* Nested declarators differ from regular declarators in that they do
306 not record the symbols they find in the global symbol table. */
308 ptr_operator nested_declarator
{ $$
= $2; }
309 | direct_nested_declarator
312 direct_nested_declarator:
315 | direct_nested_declarator
'(' parameter_declaration_clause
')'
317 | direct_nested_declarator
'(' error ')'
319 | direct_nested_declarator BRACKET_PHRASE
321 |
'(' nested_declarator
')'
327 parameter_declaration_clause:
328 parameter_declaration_list_opt DOTS
{ $$
= $2; }
329 | parameter_declaration_list_opt
330 | parameter_declaration_list
',' DOTS
{ $$
= $3; }
333 parameter_declaration_list_opt:
334 /* empty */ { $$
= NULL
; }
335 | parameter_declaration_list
338 parameter_declaration_list:
339 parameter_declaration
340 | parameter_declaration_list
',' parameter_declaration
344 parameter_declaration:
345 decl_specifier_seq m_abstract_declarator
346 { $$
= $2 ?
$2 : $1; }
349 m_abstract_declarator:
350 ptr_operator m_abstract_declarator
351 { $$
= $2 ?
$2 : $1; }
352 | direct_m_abstract_declarator
355 direct_m_abstract_declarator:
356 /* empty */ { $$
= NULL
; }
358 { /* For version 2 checksums, we don't want to remember
359 private parameter names. */
363 /* This wasn't really a typedef name but an identifier that
369 | direct_m_abstract_declarator
'(' parameter_declaration_clause
')'
371 | direct_m_abstract_declarator
'(' error ')'
373 | direct_m_abstract_declarator BRACKET_PHRASE
375 |
'(' m_abstract_declarator
')'
382 decl_specifier_seq_opt declarator BRACE_PHRASE
383 { struct string_list
*decl
= *$2;
385 add_symbol
(current_name
, SYM_NORMAL
, decl
, is_extern
);
391 /* empty */ { $$
= NULL
; }
395 /* We never care about the contents of an initializer. */
397 '=' EXPRESSION_PHRASE
398 { remove_list
($2, &(*$1)->next
); $$
= $2; }
402 '{' member_specification_opt
'}' { $$
= $3; }
403 |
'{' error '}' { $$
= $3; }
406 member_specification_opt:
407 /* empty */ { $$
= NULL
; }
408 | member_specification
411 member_specification:
413 | member_specification member_declaration
{ $$
= $2; }
417 decl_specifier_seq_opt member_declarator_list_opt
';'
423 member_declarator_list_opt:
424 /* empty */ { $$
= NULL
; }
425 | member_declarator_list
428 member_declarator_list:
430 | member_declarator_list
',' member_declarator
{ $$
= $3; }
434 nested_declarator attribute_opt
{ $$
= $2 ?
$2 : $1; }
435 | IDENT member_bitfield_declarator
{ $$
= $2; }
436 | member_bitfield_declarator
439 member_bitfield_declarator:
440 ':' EXPRESSION_PHRASE
{ $$
= $2; }
444 /* empty */ { $$
= NULL
; }
449 ASM_PHRASE
';' { $$
= $2; }
453 /* empty */ { $$
= NULL
; }
458 EXPORT_SYMBOL_KEYW
'(' IDENT
')' ';'
459 { export_symbol
((*$3)->string); $$
= $5; }
466 yyerror(const char *e
)
468 error_with_pos
("%s", e
);