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
107 %token BRACKET_PHRASE
108 %token EXPRESSION_PHRASE
124 | declaration_seq declaration
128 { is_typedef
= 0; is_extern
= 0; current_name
= NULL
; decl_spec
= NULL
; }
130 { free_list
(*$2, NULL
); *$2 = NULL
; }
134 EXTENSION_KEYW TYPEDEF_KEYW
{ is_typedef
= 1; } simple_declaration
136 | TYPEDEF_KEYW
{ is_typedef
= 1; } simple_declaration
139 | function_definition
142 |
error ';' { $$
= $2; }
143 |
error '}' { $$
= $2; }
147 decl_specifier_seq_opt init_declarator_list_opt
';'
148 { if
(current_name
) {
149 struct string_list
*decl
= (*$3)->next
;
151 add_symbol
(current_name
,
152 is_typedef ? SYM_TYPEDEF
: SYM_NORMAL
,
160 init_declarator_list_opt:
161 /* empty */ { $$
= NULL
; }
162 | init_declarator_list
165 init_declarator_list:
167 { struct string_list
*decl
= *$1;
169 add_symbol
(current_name
,
170 is_typedef ? SYM_TYPEDEF
: SYM_NORMAL
, decl
, is_extern
);
174 | init_declarator_list
',' init_declarator
175 { struct string_list
*decl
= *$3;
177 free_list
(*$2, NULL
);
179 add_symbol
(current_name
,
180 is_typedef ? SYM_TYPEDEF
: SYM_NORMAL
, decl
, is_extern
);
187 declarator asm_phrase_opt attribute_opt initializer_opt
188 { $$
= $4 ?
$4 : $3 ?
$3 : $2 ?
$2 : $1; }
191 /* Hang on to the specifiers so that we can reuse them. */
192 decl_specifier_seq_opt:
193 /* empty */ { decl_spec
= NULL
; }
198 decl_specifier
{ decl_spec
= *$1; }
199 | decl_specifier_seq decl_specifier
{ decl_spec
= *$2; }
203 storage_class_specifier
204 { /* Version 2 checksumming ignores storage class, as that
205 is really irrelevant to the linkage. */
212 storage_class_specifier:
216 | EXTERN_KEYW
{ is_extern
= 1; $$
= $1; }
217 | INLINE_KEYW
{ is_extern
= 0; $$
= $1; }
221 simple_type_specifier
223 | TYPEOF_KEYW
'(' decl_specifier_seq
'*' ')'
224 | TYPEOF_KEYW
'(' decl_specifier_seq
')'
226 /* References to s/u/e's defined elsewhere. Rearrange things
227 so that it is easier to expand the definition fully later. */
229 { remove_node
($1); (*$2)->tag
= SYM_STRUCT
; $$
= $2; }
231 { remove_node
($1); (*$2)->tag
= SYM_UNION
; $$
= $2; }
233 { remove_node
($1); (*$2)->tag
= SYM_ENUM
; $$
= $2; }
235 /* Full definitions of an s/u/e. Record it. */
236 | STRUCT_KEYW IDENT class_body
237 { record_compound
($1, $2, $3, SYM_STRUCT
); $$
= $3; }
238 | UNION_KEYW IDENT class_body
239 { record_compound
($1, $2, $3, SYM_UNION
); $$
= $3; }
240 | ENUM_KEYW IDENT enum_body
241 { record_compound
($1, $2, $3, SYM_ENUM
); $$
= $3; }
243 * Anonymous enum definition. Tell add_symbol() to restart its counter.
245 | ENUM_KEYW enum_body
246 { add_symbol
(NULL
, SYM_ENUM
, NULL
, 0); $$
= $2; }
247 /* Anonymous s/u definitions. Nothing needs doing. */
248 | STRUCT_KEYW class_body
{ $$
= $2; }
249 | UNION_KEYW class_body
{ $$
= $2; }
252 simple_type_specifier:
263 | TYPE
{ (*$1)->tag
= SYM_TYPEDEF
; $$
= $1; }
267 '*' cvar_qualifier_seq_opt
268 { $$
= $2 ?
$2 : $1; }
271 cvar_qualifier_seq_opt:
272 /* empty */ { $$
= NULL
; }
278 | cvar_qualifier_seq cvar_qualifier
{ $$
= $2; }
282 CONST_KEYW | VOLATILE_KEYW | ATTRIBUTE_PHRASE
284 { /* restrict has no effect in prototypes so ignore it */
291 ptr_operator declarator
{ $$
= $2; }
297 { if
(current_name
!= NULL
) {
298 error_with_pos
("unexpected second declaration name");
301 current_name
= (*$1)->string;
305 | direct_declarator
'(' parameter_declaration_clause
')'
307 | direct_declarator
'(' error ')'
309 | direct_declarator BRACKET_PHRASE
317 /* Nested declarators differ from regular declarators in that they do
318 not record the symbols they find in the global symbol table. */
320 ptr_operator nested_declarator
{ $$
= $2; }
321 | direct_nested_declarator
324 direct_nested_declarator:
327 | direct_nested_declarator
'(' parameter_declaration_clause
')'
329 | direct_nested_declarator
'(' error ')'
331 | direct_nested_declarator BRACKET_PHRASE
333 |
'(' nested_declarator
')'
339 parameter_declaration_clause:
340 parameter_declaration_list_opt DOTS
{ $$
= $2; }
341 | parameter_declaration_list_opt
342 | parameter_declaration_list
',' DOTS
{ $$
= $3; }
345 parameter_declaration_list_opt:
346 /* empty */ { $$
= NULL
; }
347 | parameter_declaration_list
350 parameter_declaration_list:
351 parameter_declaration
352 | parameter_declaration_list
',' parameter_declaration
356 parameter_declaration:
357 decl_specifier_seq m_abstract_declarator
358 { $$
= $2 ?
$2 : $1; }
361 m_abstract_declarator:
362 ptr_operator m_abstract_declarator
363 { $$
= $2 ?
$2 : $1; }
364 | direct_m_abstract_declarator
367 direct_m_abstract_declarator:
368 /* empty */ { $$
= NULL
; }
370 { /* For version 2 checksums, we don't want to remember
371 private parameter names. */
375 /* This wasn't really a typedef name but an identifier that
381 | direct_m_abstract_declarator
'(' parameter_declaration_clause
')'
383 | direct_m_abstract_declarator
'(' error ')'
385 | direct_m_abstract_declarator BRACKET_PHRASE
387 |
'(' m_abstract_declarator
')'
394 decl_specifier_seq_opt declarator BRACE_PHRASE
395 { struct string_list
*decl
= *$2;
397 add_symbol
(current_name
, SYM_NORMAL
, decl
, is_extern
);
403 /* empty */ { $$
= NULL
; }
407 /* We never care about the contents of an initializer. */
409 '=' EXPRESSION_PHRASE
410 { remove_list
($2, &(*$1)->next
); $$
= $2; }
414 '{' member_specification_opt
'}' { $$
= $3; }
415 |
'{' error '}' { $$
= $3; }
418 member_specification_opt:
419 /* empty */ { $$
= NULL
; }
420 | member_specification
423 member_specification:
425 | member_specification member_declaration
{ $$
= $2; }
429 decl_specifier_seq_opt member_declarator_list_opt
';'
435 member_declarator_list_opt:
436 /* empty */ { $$
= NULL
; }
437 | member_declarator_list
440 member_declarator_list:
442 | member_declarator_list
',' member_declarator
{ $$
= $3; }
446 nested_declarator attribute_opt
{ $$
= $2 ?
$2 : $1; }
447 | IDENT member_bitfield_declarator
{ $$
= $2; }
448 | member_bitfield_declarator
451 member_bitfield_declarator:
452 ':' EXPRESSION_PHRASE
{ $$
= $2; }
456 /* empty */ { $$
= NULL
; }
457 | attribute_opt ATTRIBUTE_PHRASE
461 '{' enumerator_list
'}' { $$
= $3; }
462 |
'{' enumerator_list
',' '}' { $$
= $4; }
467 | enumerator_list
',' enumerator
472 const char *name
= strdup
((*$1)->string);
473 add_symbol
(name
, SYM_ENUM_CONST
, NULL
, 0);
475 | IDENT
'=' EXPRESSION_PHRASE
477 const char *name
= strdup
((*$1)->string);
478 struct string_list
*expr
= copy_list_range
(*$3, *$2);
479 add_symbol
(name
, SYM_ENUM_CONST
, expr
, 0);
483 ASM_PHRASE
';' { $$
= $2; }
487 /* empty */ { $$
= NULL
; }
492 EXPORT_SYMBOL_KEYW
'(' IDENT
')' ';'
493 { export_symbol
((*$3)->string); $$
= $5; }
500 yyerror(const char *e
)
502 error_with_pos
("%s", e
);