1 /* Process declarations and variables for C compiler.
2 Copyright (C) 1988, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000
3 Free Software Foundation, Inc.
5 This file is part of GNU CC.
7 GNU CC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
12 GNU CC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU CC; see the file COPYING. If not, write to
19 the Free Software Foundation, 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
23 /* Process declarations and symbol lookup for C front end.
24 Also constructs types; the standard scalar types at initialization,
25 and structure, union, array and enum types when they are declared. */
27 /* ??? not all decl nodes are given the most useful possible
28 line numbers. For example, the CONST_DECLs for enum values. */
44 extern cpp_reader parse_in
;
47 /* In grokdeclarator, distinguish syntactic contexts of declarators. */
49 { NORMAL
, /* Ordinary declaration */
50 FUNCDEF
, /* Function definition */
51 PARM
, /* Declaration of parm before function body */
52 FIELD
, /* Declaration inside struct or union */
53 BITFIELD
, /* Likewise but with specified width */
54 TYPENAME
}; /* Typename (inside cast or sizeof) */
56 /* We let tm.h override the types used here, to handle trivial differences
57 such as the choice of unsigned int or long unsigned int for size_t.
58 When machines start needing nontrivial differences in the size type,
59 it would be best to do something here to figure out automatically
60 from other information what type to use. */
63 #define SIZE_TYPE "long unsigned int"
67 #define PTRDIFF_TYPE "long int"
71 #define WCHAR_TYPE "int"
77 /* Nonzero if we have seen an invalid cross reference
78 to a struct, union, or enum, but not yet printed the message. */
80 tree pending_invalid_xref
;
81 /* File and line to appear in the eventual error message. */
82 char *pending_invalid_xref_file
;
83 int pending_invalid_xref_line
;
85 /* While defining an enum type, this is 1 plus the last enumerator
86 constant value. Note that will do not have to save this or `enum_overflow'
87 around nested function definition since such a definition could only
88 occur in an enum value expression and we don't use these variables in
91 static tree enum_next_value
;
93 /* Nonzero means that there was overflow computing enum_next_value. */
95 static int enum_overflow
;
97 /* Parsing a function declarator leaves a list of parameter names
98 or a chain or parameter decls here. */
100 static tree last_function_parms
;
102 /* Parsing a function declarator leaves here a chain of structure
103 and enum types declared in the parmlist. */
105 static tree last_function_parm_tags
;
107 /* After parsing the declarator that starts a function definition,
108 `start_function' puts here the list of parameter names or chain of decls.
109 `store_parm_decls' finds it here. */
111 static tree current_function_parms
;
113 /* Similar, for last_function_parm_tags. */
114 static tree current_function_parm_tags
;
116 /* Similar, for the file and line that the prototype came from if this is
117 an old-style definition. */
118 static char *current_function_prototype_file
;
119 static int current_function_prototype_line
;
121 /* A list (chain of TREE_LIST nodes) of all LABEL_DECLs in the function
122 that have names. Here so we can clear out their names' definitions
123 at the end of the function. */
125 static tree named_labels
;
127 /* A list of LABEL_DECLs from outer contexts that are currently shadowed. */
129 static tree shadowed_labels
;
131 /* Nonzero when store_parm_decls is called indicates a varargs function.
132 Value not meaningful after store_parm_decls. */
134 static int c_function_varargs
;
136 /* Set to 0 at beginning of a function definition, set to 1 if
137 a return statement that specifies a return value is seen. */
139 int current_function_returns_value
;
141 /* Set to 0 at beginning of a function definition, set to 1 if
142 a return statement with no argument is seen. */
144 int current_function_returns_null
;
146 /* Set to nonzero by `grokdeclarator' for a function
147 whose return type is defaulted, if warnings for this are desired. */
149 static int warn_about_return_type
;
151 /* Nonzero when starting a function declared `extern inline'. */
153 static int current_extern_inline
;
155 /* For each binding contour we allocate a binding_level structure
156 * which records the names defined in that contour.
159 * 1) one for each function definition,
160 * where internal declarations of the parameters appear.
161 * 2) one for each compound statement,
162 * to record its declarations.
164 * The current meaning of a name can be found by searching the levels from
165 * the current one out to the global one.
168 /* Note that the information in the `names' component of the global contour
169 is duplicated in the IDENTIFIER_GLOBAL_VALUEs of all identifiers. */
173 /* A chain of _DECL nodes for all variables, constants, functions,
174 and typedef types. These are in the reverse of the order supplied.
178 /* A list of structure, union and enum definitions,
179 * for looking up tag names.
180 * It is a chain of TREE_LIST nodes, each of whose TREE_PURPOSE is a name,
181 * or NULL_TREE; and whose TREE_VALUE is a RECORD_TYPE, UNION_TYPE,
182 * or ENUMERAL_TYPE node.
186 /* For each level, a list of shadowed outer-level local definitions
187 to be restored when this level is popped.
188 Each link is a TREE_LIST whose TREE_PURPOSE is an identifier and
189 whose TREE_VALUE is its old definition (a kind of ..._DECL node). */
192 /* For each level (except not the global one),
193 a chain of BLOCK nodes for all the levels
194 that were entered and exited one level down. */
197 /* The BLOCK node for this level, if one has been preallocated.
198 If 0, the BLOCK is allocated (if needed) when the level is popped. */
201 /* The binding level which this one is contained in (inherits from). */
202 struct binding_level
*level_chain
;
204 /* Nonzero for the level that holds the parameters of a function. */
207 /* Nonzero if this level "doesn't exist" for tags. */
208 char tag_transparent
;
210 /* Nonzero if sublevels of this level "don't exist" for tags.
211 This is set in the parm level of a function definition
212 while reading the function body, so that the outermost block
213 of the function body will be tag-transparent. */
214 char subblocks_tag_transparent
;
216 /* Nonzero means make a BLOCK for this level regardless of all else. */
219 /* Nonzero means make a BLOCK if this level has any subblocks. */
220 char keep_if_subblocks
;
222 /* Number of decls in `names' that have incomplete
223 structure or union types. */
226 /* A list of decls giving the (reversed) specified order of parms,
227 not including any forward-decls in the parmlist.
228 This is so we can put the parms in proper order for assign_parms. */
232 #define NULL_BINDING_LEVEL (struct binding_level *) NULL
234 /* The binding level currently in effect. */
236 static struct binding_level
*current_binding_level
;
238 /* A chain of binding_level structures awaiting reuse. */
240 static struct binding_level
*free_binding_level
;
242 /* The outermost binding level, for names of file scope.
243 This is created when the compiler is started and exists
244 through the entire run. */
246 static struct binding_level
*global_binding_level
;
248 /* Binding level structures are initialized by copying this one. */
250 static struct binding_level clear_binding_level
251 = {NULL
, NULL
, NULL
, NULL
, NULL
, NULL_BINDING_LEVEL
, 0, 0, 0, 0, 0, 0,
254 /* Nonzero means unconditionally make a BLOCK for the next level pushed. */
256 static int keep_next_level_flag
;
258 /* Nonzero means make a BLOCK for the next level pushed
259 if it has subblocks. */
261 static int keep_next_if_subblocks
;
263 /* The chain of outer levels of label scopes.
264 This uses the same data structure used for binding levels,
265 but it works differently: each link in the chain records
266 saved values of named_labels and shadowed_labels for
267 a label binding level outside the current one. */
269 static struct binding_level
*label_level_chain
;
271 /* Functions called automatically at the beginning and end of execution. */
273 tree static_ctors
, static_dtors
;
275 /* Forward declarations. */
277 static struct binding_level
* make_binding_level
PARAMS ((void));
278 static void mark_binding_level
PARAMS ((void *));
279 static void clear_limbo_values
PARAMS ((tree
));
280 static int duplicate_decls
PARAMS ((tree
, tree
, int));
281 static int redeclaration_error_message
PARAMS ((tree
, tree
));
282 static void storedecls
PARAMS ((tree
));
283 static void storetags
PARAMS ((tree
));
284 static tree lookup_tag
PARAMS ((enum tree_code
, tree
,
285 struct binding_level
*, int));
286 static tree lookup_tag_reverse
PARAMS ((tree
));
287 static tree grokdeclarator
PARAMS ((tree
, tree
, enum decl_context
,
289 static tree grokparms
PARAMS ((tree
, int));
290 static void layout_array_type
PARAMS ((tree
));
291 static tree c_make_fname_decl
PARAMS ((tree
, const char *, int));
293 /* C-specific option variables. */
295 /* Nonzero means allow type mismatches in conditional expressions;
296 just make their values `void'. */
298 int flag_cond_mismatch
;
300 /* Nonzero means give `double' the same size as `float'. */
302 int flag_short_double
;
304 /* Nonzero means give `wchar_t' the same size as `short'. */
306 int flag_short_wchar
;
308 /* Nonzero means don't recognize the keyword `asm'. */
312 /* Nonzero means don't recognize any builtin functions. */
316 /* Nonzero means don't recognize the non-ANSI builtin functions.
319 int flag_no_nonansi_builtin
;
321 /* Nonzero means do some things the same way PCC does. */
323 int flag_traditional
;
325 /* Nonzero means use the ISO C99 dialect of C. */
329 /* Nonzero means that we have builtin functions, and main is an int */
333 /* Nonzero means to allow single precision math even if we're generally
334 being traditional. */
335 int flag_allow_single_precision
= 0;
337 /* Nonzero means to treat bitfields as signed unless they say `unsigned'. */
339 int flag_signed_bitfields
= 1;
340 int explicit_flag_signed_bitfields
= 0;
342 /* Nonzero means warn about use of implicit int. */
344 int warn_implicit_int
;
346 /* Nonzero means warn about usage of long long when `-pedantic'. */
348 int warn_long_long
= 1;
350 /* Nonzero means message about use of implicit function declarations;
351 1 means warning; 2 means error. */
353 int mesg_implicit_function_declaration
;
355 /* Nonzero means give string constants the type `const char *'
356 to get extra warnings from them. These warnings will be too numerous
357 to be useful, except in thoroughly ANSIfied programs. */
359 int flag_const_strings
;
361 /* Nonzero means warn about pointer casts that can drop a type qualifier
362 from the pointer target type. */
366 /* Nonzero means warn when casting a function call to a type that does
367 not match the return type (e.g. (float)sqrt() or (anything*)malloc()
368 when there is no previous declaration of sqrt or malloc. */
370 int warn_bad_function_cast
;
372 /* Warn about functions which might be candidates for attribute noreturn. */
374 int warn_missing_noreturn
;
376 /* Warn about traditional constructs whose meanings changed in ANSI C. */
378 int warn_traditional
;
380 /* Nonzero means warn about sizeof(function) or addition/subtraction
381 of function pointers. */
383 int warn_pointer_arith
;
385 /* Nonzero means warn for non-prototype function decls
386 or non-prototyped defs without previous prototype. */
388 int warn_strict_prototypes
;
390 /* Nonzero means warn for any global function def
391 without separate previous prototype decl. */
393 int warn_missing_prototypes
;
395 /* Nonzero means warn for any global function def
396 without separate previous decl. */
398 int warn_missing_declarations
;
400 /* Nonzero means warn about multiple (redundant) decls for the same single
401 variable or function. */
403 int warn_redundant_decls
= 0;
405 /* Nonzero means warn about extern declarations of objects not at
406 file-scope level and about *all* declarations of functions (whether
407 extern or static) not at file-scope level. Note that we exclude
408 implicit function declarations. To get warnings about those, use
411 int warn_nested_externs
= 0;
413 /* Warn about *printf or *scanf format/argument anomalies. */
417 /* Warn about a subscript that has type char. */
419 int warn_char_subscripts
= 0;
421 /* Warn if a type conversion is done that might have confusing results. */
425 /* Warn if adding () is suggested. */
427 int warn_parentheses
;
429 /* Warn if initializer is not completely bracketed. */
431 int warn_missing_braces
;
433 /* Warn if main is suspicious. */
437 /* Warn about #pragma directives that are not recognised. */
439 int warn_unknown_pragmas
= 0; /* Tri state variable. */
441 /* Warn about comparison of signed and unsigned values.
442 If -1, neither -Wsign-compare nor -Wno-sign-compare has been specified. */
444 int warn_sign_compare
= -1;
446 /* Warn about testing equality of floating point numbers. */
448 int warn_float_equal
= 0;
450 /* Nonzero means warn about use of multicharacter literals. */
452 int warn_multichar
= 1;
454 /* Nonzero means `$' can be in an identifier. */
456 #ifndef DOLLARS_IN_IDENTIFIERS
457 #define DOLLARS_IN_IDENTIFIERS 1
459 int dollars_in_ident
= DOLLARS_IN_IDENTIFIERS
;
461 /* Decode the string P as a language-specific option for C.
462 Return the number of strings consumed. Should not complain
463 if it does not recognise the option. */
466 c_decode_option (argc
, argv
)
467 int argc ATTRIBUTE_UNUSED
;
470 int strings_processed
;
473 strings_processed
= cpp_handle_option (&parse_in
, argc
, argv
);
475 strings_processed
= 0;
476 #endif /* ! USE_CPPLIB */
478 if (!strcmp (p
, "-ftraditional") || !strcmp (p
, "-traditional"))
480 flag_traditional
= 1;
481 flag_writable_strings
= 1;
483 else if (!strcmp (p
, "-fallow-single-precision"))
484 flag_allow_single_precision
= 1;
485 else if (!strcmp (p
, "-fhosted") || !strcmp (p
, "-fno-freestanding"))
490 else if (!strcmp (p
, "-ffreestanding") || !strcmp (p
, "-fno-hosted"))
494 /* warn_main will be 2 if set by -Wall, 1 if set by -Wmain */
498 else if (!strcmp (p
, "-fnotraditional") || !strcmp (p
, "-fno-traditional"))
500 flag_traditional
= 0;
501 flag_writable_strings
= 0;
503 else if (!strncmp (p
, "-std=", 5))
505 /* Select the appropriate language standard. We currently
507 -std=iso9899:1990 same as -ansi
508 -std=iso9899:199409 ISO C as modified in amend. 1
509 -std=iso9899:1999 ISO C 99
510 -std=c89 same as -std=iso9899:1990
511 -std=c99 same as -std=iso9899:1999
512 -std=gnu89 default, iso9899:1990 + gnu extensions
513 -std=gnu99 iso9899:1999 + gnu extensions
515 const char *argstart
= &p
[5];
517 if (!strcmp (argstart
, "iso9899:1990")
518 || !strcmp (argstart
, "c89"))
521 flag_traditional
= 0;
522 flag_writable_strings
= 0;
524 flag_no_nonansi_builtin
= 1;
527 else if (!strcmp (argstart
, "iso9899:199409"))
529 /* ??? The changes since ISO C 1990 are not supported. */
532 else if (!strcmp (argstart
, "iso9899:199x")
533 || !strcmp (argstart
, "iso9899:1999")
534 || !strcmp (argstart
, "c9x")
535 || !strcmp (argstart
, "c99"))
537 flag_traditional
= 0;
538 flag_writable_strings
= 0;
540 flag_no_nonansi_builtin
= 1;
543 else if (!strcmp (argstart
, "gnu89"))
545 flag_traditional
= 0;
546 flag_writable_strings
= 0;
548 flag_no_nonansi_builtin
= 0;
551 else if (!strcmp (argstart
, "gnu9x") || !strcmp (argstart
, "gnu99"))
553 flag_traditional
= 0;
554 flag_writable_strings
= 0;
556 flag_no_nonansi_builtin
= 0;
560 error ("unknown C standard `%s'", argstart
);
562 else if (!strcmp (p
, "-fdollars-in-identifiers"))
563 dollars_in_ident
= 1;
564 else if (!strcmp (p
, "-fno-dollars-in-identifiers"))
565 dollars_in_ident
= 0;
566 else if (!strcmp (p
, "-fsigned-char"))
567 flag_signed_char
= 1;
568 else if (!strcmp (p
, "-funsigned-char"))
569 flag_signed_char
= 0;
570 else if (!strcmp (p
, "-fno-signed-char"))
571 flag_signed_char
= 0;
572 else if (!strcmp (p
, "-fno-unsigned-char"))
573 flag_signed_char
= 1;
574 else if (!strcmp (p
, "-fsigned-bitfields")
575 || !strcmp (p
, "-fno-unsigned-bitfields"))
577 flag_signed_bitfields
= 1;
578 explicit_flag_signed_bitfields
= 1;
580 else if (!strcmp (p
, "-funsigned-bitfields")
581 || !strcmp (p
, "-fno-signed-bitfields"))
583 flag_signed_bitfields
= 0;
584 explicit_flag_signed_bitfields
= 1;
586 else if (!strcmp (p
, "-fshort-enums"))
587 flag_short_enums
= 1;
588 else if (!strcmp (p
, "-fno-short-enums"))
589 flag_short_enums
= 0;
590 else if (!strcmp (p
, "-fshort-wchar"))
591 flag_short_wchar
= 1;
592 else if (!strcmp (p
, "-fno-short-wchar"))
593 flag_short_wchar
= 0;
594 else if (!strcmp (p
, "-fcond-mismatch"))
595 flag_cond_mismatch
= 1;
596 else if (!strcmp (p
, "-fno-cond-mismatch"))
597 flag_cond_mismatch
= 0;
598 else if (!strcmp (p
, "-fshort-double"))
599 flag_short_double
= 1;
600 else if (!strcmp (p
, "-fno-short-double"))
601 flag_short_double
= 0;
602 else if (!strcmp (p
, "-fasm"))
604 else if (!strcmp (p
, "-fno-asm"))
606 else if (!strcmp (p
, "-fbuiltin"))
608 else if (!strcmp (p
, "-fno-builtin"))
610 else if (!strcmp (p
, "-ansi"))
612 else if (!strcmp (p
, "-Werror-implicit-function-declaration"))
613 mesg_implicit_function_declaration
= 2;
614 else if (!strcmp (p
, "-Wimplicit-function-declaration"))
615 mesg_implicit_function_declaration
= 1;
616 else if (!strcmp (p
, "-Wno-implicit-function-declaration"))
617 mesg_implicit_function_declaration
= 0;
618 else if (!strcmp (p
, "-Wimplicit-int"))
619 warn_implicit_int
= 1;
620 else if (!strcmp (p
, "-Wno-implicit-int"))
621 warn_implicit_int
= 0;
622 else if (!strcmp (p
, "-Wimplicit"))
624 warn_implicit_int
= 1;
625 if (mesg_implicit_function_declaration
!= 2)
626 mesg_implicit_function_declaration
= 1;
628 else if (!strcmp (p
, "-Wno-implicit"))
629 warn_implicit_int
= 0, mesg_implicit_function_declaration
= 0;
630 else if (!strcmp (p
, "-Wlong-long"))
632 else if (!strcmp (p
, "-Wno-long-long"))
634 else if (!strcmp (p
, "-Wwrite-strings"))
635 flag_const_strings
= 1;
636 else if (!strcmp (p
, "-Wno-write-strings"))
637 flag_const_strings
= 0;
638 else if (!strcmp (p
, "-Wcast-qual"))
640 else if (!strcmp (p
, "-Wno-cast-qual"))
642 else if (!strcmp (p
, "-Wbad-function-cast"))
643 warn_bad_function_cast
= 1;
644 else if (!strcmp (p
, "-Wno-bad-function-cast"))
645 warn_bad_function_cast
= 0;
646 else if (!strcmp (p
, "-Wmissing-noreturn"))
647 warn_missing_noreturn
= 1;
648 else if (!strcmp (p
, "-Wno-missing-noreturn"))
649 warn_missing_noreturn
= 0;
650 else if (!strcmp (p
, "-Wpointer-arith"))
651 warn_pointer_arith
= 1;
652 else if (!strcmp (p
, "-Wno-pointer-arith"))
653 warn_pointer_arith
= 0;
654 else if (!strcmp (p
, "-Wstrict-prototypes"))
655 warn_strict_prototypes
= 1;
656 else if (!strcmp (p
, "-Wno-strict-prototypes"))
657 warn_strict_prototypes
= 0;
658 else if (!strcmp (p
, "-Wmissing-prototypes"))
659 warn_missing_prototypes
= 1;
660 else if (!strcmp (p
, "-Wno-missing-prototypes"))
661 warn_missing_prototypes
= 0;
662 else if (!strcmp (p
, "-Wmissing-declarations"))
663 warn_missing_declarations
= 1;
664 else if (!strcmp (p
, "-Wno-missing-declarations"))
665 warn_missing_declarations
= 0;
666 else if (!strcmp (p
, "-Wredundant-decls"))
667 warn_redundant_decls
= 1;
668 else if (!strcmp (p
, "-Wno-redundant-decls"))
669 warn_redundant_decls
= 0;
670 else if (!strcmp (p
, "-Wnested-externs"))
671 warn_nested_externs
= 1;
672 else if (!strcmp (p
, "-Wno-nested-externs"))
673 warn_nested_externs
= 0;
674 else if (!strcmp (p
, "-Wtraditional"))
675 warn_traditional
= 1;
676 else if (!strcmp (p
, "-Wno-traditional"))
677 warn_traditional
= 0;
678 else if (!strncmp (p
, "-Wformat=", 9))
679 warn_format
= atol (p
+ 9);
680 else if (!strcmp (p
, "-Wformat"))
682 else if (!strcmp (p
, "-Wno-format"))
684 else if (!strcmp (p
, "-Wchar-subscripts"))
685 warn_char_subscripts
= 1;
686 else if (!strcmp (p
, "-Wno-char-subscripts"))
687 warn_char_subscripts
= 0;
688 else if (!strcmp (p
, "-Wconversion"))
690 else if (!strcmp (p
, "-Wno-conversion"))
692 else if (!strcmp (p
, "-Wparentheses"))
693 warn_parentheses
= 1;
694 else if (!strcmp (p
, "-Wno-parentheses"))
695 warn_parentheses
= 0;
696 else if (!strcmp (p
, "-Wreturn-type"))
697 warn_return_type
= 1;
698 else if (!strcmp (p
, "-Wno-return-type"))
699 warn_return_type
= 0;
700 else if (!strcmp (p
, "-Wcomment"))
701 ; /* cpp handles this one. */
702 else if (!strcmp (p
, "-Wno-comment"))
703 ; /* cpp handles this one. */
704 else if (!strcmp (p
, "-Wcomments"))
705 ; /* cpp handles this one. */
706 else if (!strcmp (p
, "-Wno-comments"))
707 ; /* cpp handles this one. */
708 else if (!strcmp (p
, "-Wtrigraphs"))
709 ; /* cpp handles this one. */
710 else if (!strcmp (p
, "-Wno-trigraphs"))
711 ; /* cpp handles this one. */
712 else if (!strcmp (p
, "-Wundef"))
713 ; /* cpp handles this one. */
714 else if (!strcmp (p
, "-Wno-undef"))
715 ; /* cpp handles this one. */
716 else if (!strcmp (p
, "-Wimport"))
717 ; /* cpp handles this one. */
718 else if (!strcmp (p
, "-Wno-import"))
719 ; /* cpp handles this one. */
720 else if (!strcmp (p
, "-Wmissing-braces"))
721 warn_missing_braces
= 1;
722 else if (!strcmp (p
, "-Wno-missing-braces"))
723 warn_missing_braces
= 0;
724 else if (!strcmp (p
, "-Wmain"))
726 else if (!strcmp (p
, "-Wno-main"))
728 else if (!strcmp (p
, "-Wsign-compare"))
729 warn_sign_compare
= 1;
730 else if (!strcmp (p
, "-Wno-sign-compare"))
731 warn_sign_compare
= 0;
732 else if (!strcmp (p
, "-Wfloat-equal"))
733 warn_float_equal
= 1;
734 else if (!strcmp (p
, "-Wno-float-equal"))
735 warn_float_equal
= 0;
736 else if (!strcmp (p
, "-Wmultichar"))
738 else if (!strcmp (p
, "-Wno-multichar"))
740 else if (!strcmp (p
, "-Wunknown-pragmas"))
741 /* Set to greater than 1, so that even unknown pragmas in system
742 headers will be warned about. */
743 warn_unknown_pragmas
= 2;
744 else if (!strcmp (p
, "-Wno-unknown-pragmas"))
745 warn_unknown_pragmas
= 0;
746 else if (!strcmp (p
, "-Wall"))
748 /* We save the value of warn_uninitialized, since if they put
749 -Wuninitialized on the command line, we need to generate a
750 warning about not using it without also specifying -O. */
751 if (warn_uninitialized
!= 1)
752 warn_uninitialized
= 2;
753 warn_implicit_int
= 1;
754 mesg_implicit_function_declaration
= 1;
755 warn_return_type
= 1;
759 warn_char_subscripts
= 1;
760 warn_parentheses
= 1;
761 warn_missing_braces
= 1;
762 /* We set this to 2 here, but 1 in -Wmain, so -ffreestanding can turn
763 it off only if it's not explicit. */
765 /* Only warn about unknown pragmas that are not in system headers. */
766 warn_unknown_pragmas
= 1;
769 return strings_processed
;
774 /* Hooks for print_node. */
777 print_lang_decl (file
, node
, indent
)
778 FILE *file ATTRIBUTE_UNUSED
;
779 tree node ATTRIBUTE_UNUSED
;
780 int indent ATTRIBUTE_UNUSED
;
785 print_lang_type (file
, node
, indent
)
786 FILE *file ATTRIBUTE_UNUSED
;
787 tree node ATTRIBUTE_UNUSED
;
788 int indent ATTRIBUTE_UNUSED
;
793 print_lang_identifier (file
, node
, indent
)
798 print_node (file
, "global", IDENTIFIER_GLOBAL_VALUE (node
), indent
+ 4);
799 print_node (file
, "local", IDENTIFIER_LOCAL_VALUE (node
), indent
+ 4);
800 print_node (file
, "label", IDENTIFIER_LABEL_VALUE (node
), indent
+ 4);
801 print_node (file
, "implicit", IDENTIFIER_IMPLICIT_DECL (node
), indent
+ 4);
802 print_node (file
, "error locus", IDENTIFIER_ERROR_LOCUS (node
), indent
+ 4);
803 print_node (file
, "limbo value", IDENTIFIER_LIMBO_VALUE (node
), indent
+ 4);
806 /* Hook called at end of compilation to assume 1 elt
807 for a top-level array decl that wasn't complete before. */
810 finish_incomplete_decl (decl
)
813 if (TREE_CODE (decl
) == VAR_DECL
)
815 tree type
= TREE_TYPE (decl
);
816 if (type
!= error_mark_node
817 && TREE_CODE (type
) == ARRAY_TYPE
818 && TYPE_DOMAIN (type
) == 0)
820 if (! DECL_EXTERNAL (decl
))
821 warning_with_decl (decl
, "array `%s' assumed to have one element");
823 complete_array_type (type
, NULL_TREE
, 1);
825 layout_decl (decl
, 0);
830 /* Create a new `struct binding_level'. */
833 struct binding_level
*
834 make_binding_level ()
837 return (struct binding_level
*) xmalloc (sizeof (struct binding_level
));
840 /* Nonzero if we are currently in the global binding level. */
845 return current_binding_level
== global_binding_level
;
851 keep_next_level_flag
= 1;
854 /* Nonzero if the current level needs to have a BLOCK made. */
859 return ((current_binding_level
->keep_if_subblocks
860 && current_binding_level
->blocks
!= 0)
861 || current_binding_level
->keep
862 || current_binding_level
->names
!= 0
863 || (current_binding_level
->tags
!= 0
864 && !current_binding_level
->tag_transparent
));
867 /* Identify this binding level as a level of parameters.
868 DEFINITION_FLAG is 1 for a definition, 0 for a declaration.
869 But it turns out there is no way to pass the right value for
870 DEFINITION_FLAG, so we ignore it. */
873 declare_parm_level (definition_flag
)
874 int definition_flag ATTRIBUTE_UNUSED
;
876 current_binding_level
->parm_flag
= 1;
879 /* Nonzero if currently making parm declarations. */
884 return current_binding_level
->parm_flag
;
887 /* Enter a new binding level.
888 If TAG_TRANSPARENT is nonzero, do so only for the name space of variables,
889 not for that of tags. */
892 pushlevel (tag_transparent
)
895 register struct binding_level
*newlevel
= NULL_BINDING_LEVEL
;
897 /* If this is the top level of a function,
898 just make sure that NAMED_LABELS is 0. */
900 if (current_binding_level
== global_binding_level
)
905 /* Reuse or create a struct for this binding level. */
907 if (free_binding_level
)
909 newlevel
= free_binding_level
;
910 free_binding_level
= free_binding_level
->level_chain
;
914 newlevel
= make_binding_level ();
917 /* Add this level to the front of the chain (stack) of levels that
920 *newlevel
= clear_binding_level
;
921 newlevel
->tag_transparent
923 || (current_binding_level
924 ? current_binding_level
->subblocks_tag_transparent
926 newlevel
->level_chain
= current_binding_level
;
927 current_binding_level
= newlevel
;
928 newlevel
->keep
= keep_next_level_flag
;
929 keep_next_level_flag
= 0;
930 newlevel
->keep_if_subblocks
= keep_next_if_subblocks
;
931 keep_next_if_subblocks
= 0;
934 /* Clear the limbo values of all identifiers defined in BLOCK or a subblock. */
937 clear_limbo_values (block
)
942 for (tem
= BLOCK_VARS (block
); tem
; tem
= TREE_CHAIN (tem
))
943 if (DECL_NAME (tem
) != 0)
944 IDENTIFIER_LIMBO_VALUE (DECL_NAME (tem
)) = 0;
946 for (tem
= BLOCK_SUBBLOCKS (block
); tem
; tem
= TREE_CHAIN (tem
))
947 clear_limbo_values (tem
);
950 /* Exit a binding level.
951 Pop the level off, and restore the state of the identifier-decl mappings
952 that were in effect when this level was entered.
954 If KEEP is nonzero, this level had explicit declarations, so
955 and create a "block" (a BLOCK node) for the level
956 to record its declarations and subblocks for symbol table output.
958 If FUNCTIONBODY is nonzero, this level is the body of a function,
959 so create a block as if KEEP were set and also clear out all
962 If REVERSE is nonzero, reverse the order of decls before putting
963 them into the BLOCK. */
966 poplevel (keep
, reverse
, functionbody
)
972 /* The chain of decls was accumulated in reverse order.
973 Put it into forward order, just for cleanliness. */
975 tree tags
= current_binding_level
->tags
;
976 tree subblocks
= current_binding_level
->blocks
;
979 int block_previously_created
;
981 keep
|= current_binding_level
->keep
;
983 /* This warning is turned off because it causes warnings for
984 declarations like `extern struct foo *x'. */
986 /* Warn about incomplete structure types in this level. */
987 for (link
= tags
; link
; link
= TREE_CHAIN (link
))
988 if (!COMPLETE_TYPE_P (TREE_VALUE (link
)))
990 tree type
= TREE_VALUE (link
);
991 tree type_name
= TYPE_NAME (type
);
992 char *id
= IDENTIFIER_POINTER (TREE_CODE (type_name
) == IDENTIFIER_NODE
994 : DECL_NAME (type_name
));
995 switch (TREE_CODE (type
))
998 error ("`struct %s' incomplete in scope ending here", id
);
1001 error ("`union %s' incomplete in scope ending here", id
);
1004 error ("`enum %s' incomplete in scope ending here", id
);
1010 /* Get the decls in the order they were written.
1011 Usually current_binding_level->names is in reverse order.
1012 But parameter decls were previously put in forward order. */
1015 current_binding_level
->names
1016 = decls
= nreverse (current_binding_level
->names
);
1018 decls
= current_binding_level
->names
;
1020 /* Output any nested inline functions within this block
1021 if they weren't already output. */
1023 for (decl
= decls
; decl
; decl
= TREE_CHAIN (decl
))
1024 if (TREE_CODE (decl
) == FUNCTION_DECL
1025 && ! TREE_ASM_WRITTEN (decl
)
1026 && DECL_INITIAL (decl
) != 0
1027 && TREE_ADDRESSABLE (decl
))
1029 /* If this decl was copied from a file-scope decl
1030 on account of a block-scope extern decl,
1031 propagate TREE_ADDRESSABLE to the file-scope decl.
1033 DECL_ABSTRACT_ORIGIN can be set to itself if warn_return_type is
1034 true, since then the decl goes through save_for_inline_copying. */
1035 if (DECL_ABSTRACT_ORIGIN (decl
) != 0
1036 && DECL_ABSTRACT_ORIGIN (decl
) != decl
)
1037 TREE_ADDRESSABLE (DECL_ABSTRACT_ORIGIN (decl
)) = 1;
1038 else if (DECL_SAVED_INSNS (decl
) != 0)
1040 push_function_context ();
1041 output_inline_function (decl
);
1042 pop_function_context ();
1046 /* If there were any declarations or structure tags in that level,
1047 or if this level is a function body,
1048 create a BLOCK to record them for the life of this function. */
1051 block_previously_created
= (current_binding_level
->this_block
!= 0);
1052 if (block_previously_created
)
1053 block
= current_binding_level
->this_block
;
1054 else if (keep
|| functionbody
1055 || (current_binding_level
->keep_if_subblocks
&& subblocks
!= 0))
1056 block
= make_node (BLOCK
);
1059 BLOCK_VARS (block
) = decls
;
1060 BLOCK_SUBBLOCKS (block
) = subblocks
;
1063 /* In each subblock, record that this is its superior. */
1065 for (link
= subblocks
; link
; link
= TREE_CHAIN (link
))
1066 BLOCK_SUPERCONTEXT (link
) = block
;
1068 /* Clear out the meanings of the local variables of this level. */
1070 for (link
= decls
; link
; link
= TREE_CHAIN (link
))
1072 if (DECL_NAME (link
) != 0)
1074 /* If the ident. was used or addressed via a local extern decl,
1075 don't forget that fact. */
1076 if (DECL_EXTERNAL (link
))
1078 if (TREE_USED (link
))
1079 TREE_USED (DECL_NAME (link
)) = 1;
1080 if (TREE_ADDRESSABLE (link
))
1081 TREE_ADDRESSABLE (DECL_ASSEMBLER_NAME (link
)) = 1;
1083 IDENTIFIER_LOCAL_VALUE (DECL_NAME (link
)) = 0;
1087 /* Restore all name-meanings of the outer levels
1088 that were shadowed by this level. */
1090 for (link
= current_binding_level
->shadowed
; link
; link
= TREE_CHAIN (link
))
1091 IDENTIFIER_LOCAL_VALUE (TREE_PURPOSE (link
)) = TREE_VALUE (link
);
1093 /* If the level being exited is the top level of a function,
1094 check over all the labels, and clear out the current
1095 (function local) meanings of their names. */
1099 clear_limbo_values (block
);
1101 /* If this is the top level block of a function,
1102 the vars are the function's parameters.
1103 Don't leave them in the BLOCK because they are
1104 found in the FUNCTION_DECL instead. */
1106 BLOCK_VARS (block
) = 0;
1108 /* Clear out the definitions of all label names,
1109 since their scopes end here,
1110 and add them to BLOCK_VARS. */
1112 for (link
= named_labels
; link
; link
= TREE_CHAIN (link
))
1114 register tree label
= TREE_VALUE (link
);
1116 if (DECL_INITIAL (label
) == 0)
1118 error_with_decl (label
, "label `%s' used but not defined");
1119 /* Avoid crashing later. */
1120 define_label (input_filename
, lineno
,
1123 else if (warn_unused
&& !TREE_USED (label
))
1124 warning_with_decl (label
, "label `%s' defined but not used");
1125 IDENTIFIER_LABEL_VALUE (DECL_NAME (label
)) = 0;
1127 /* Put the labels into the "variables" of the
1128 top-level block, so debugger can see them. */
1129 TREE_CHAIN (label
) = BLOCK_VARS (block
);
1130 BLOCK_VARS (block
) = label
;
1134 /* Pop the current level, and free the structure for reuse. */
1137 register struct binding_level
*level
= current_binding_level
;
1138 current_binding_level
= current_binding_level
->level_chain
;
1140 level
->level_chain
= free_binding_level
;
1141 free_binding_level
= level
;
1144 /* Dispose of the block that we just made inside some higher level. */
1146 DECL_INITIAL (current_function_decl
) = block
;
1149 if (!block_previously_created
)
1150 current_binding_level
->blocks
1151 = chainon (current_binding_level
->blocks
, block
);
1153 /* If we did not make a block for the level just exited,
1154 any blocks made for inner levels
1155 (since they cannot be recorded as subblocks in that level)
1156 must be carried forward so they will later become subblocks
1157 of something else. */
1159 current_binding_level
->blocks
1160 = chainon (current_binding_level
->blocks
, subblocks
);
1162 /* Set the TYPE_CONTEXTs for all of the tagged types belonging to this
1163 binding contour so that they point to the appropriate construct, i.e.
1164 either to the current FUNCTION_DECL node, or else to the BLOCK node
1165 we just constructed.
1167 Note that for tagged types whose scope is just the formal parameter
1168 list for some function type specification, we can't properly set
1169 their TYPE_CONTEXTs here, because we don't have a pointer to the
1170 appropriate FUNCTION_TYPE node readily available to us. For those
1171 cases, the TYPE_CONTEXTs of the relevant tagged type nodes get set
1172 in `grokdeclarator' as soon as we have created the FUNCTION_TYPE
1173 node which will represent the "scope" for these "parameter list local"
1178 for (link
= tags
; link
; link
= TREE_CHAIN (link
))
1179 TYPE_CONTEXT (TREE_VALUE (link
)) = current_function_decl
;
1181 for (link
= tags
; link
; link
= TREE_CHAIN (link
))
1182 TYPE_CONTEXT (TREE_VALUE (link
)) = block
;
1185 TREE_USED (block
) = 1;
1189 /* Delete the node BLOCK from the current binding level.
1190 This is used for the block inside a stmt expr ({...})
1191 so that the block can be reinserted where appropriate. */
1194 delete_block (block
)
1198 if (current_binding_level
->blocks
== block
)
1199 current_binding_level
->blocks
= TREE_CHAIN (block
);
1200 for (t
= current_binding_level
->blocks
; t
;)
1202 if (TREE_CHAIN (t
) == block
)
1203 TREE_CHAIN (t
) = TREE_CHAIN (block
);
1207 TREE_CHAIN (block
) = NULL
;
1208 /* Clear TREE_USED which is always set by poplevel.
1209 The flag is set again if insert_block is called. */
1210 TREE_USED (block
) = 0;
1213 /* Insert BLOCK at the end of the list of subblocks of the
1214 current binding level. This is used when a BIND_EXPR is expanded,
1215 to handle the BLOCK node inside the BIND_EXPR. */
1218 insert_block (block
)
1221 TREE_USED (block
) = 1;
1222 current_binding_level
->blocks
1223 = chainon (current_binding_level
->blocks
, block
);
1226 /* Set the BLOCK node for the innermost scope
1227 (the one we are currently in). */
1231 register tree block
;
1233 current_binding_level
->this_block
= block
;
1239 register struct binding_level
*newlevel
;
1241 /* Reuse or create a struct for this binding level. */
1243 if (free_binding_level
)
1245 newlevel
= free_binding_level
;
1246 free_binding_level
= free_binding_level
->level_chain
;
1250 newlevel
= make_binding_level ();
1253 /* Add this level to the front of the chain (stack) of label levels. */
1255 newlevel
->level_chain
= label_level_chain
;
1256 label_level_chain
= newlevel
;
1258 newlevel
->names
= named_labels
;
1259 newlevel
->shadowed
= shadowed_labels
;
1261 shadowed_labels
= 0;
1267 register struct binding_level
*level
= label_level_chain
;
1270 /* Clear out the definitions of the declared labels in this level.
1271 Leave in the list any ordinary, non-declared labels. */
1272 for (link
= named_labels
, prev
= 0; link
;)
1274 if (C_DECLARED_LABEL_FLAG (TREE_VALUE (link
)))
1276 if (DECL_SOURCE_LINE (TREE_VALUE (link
)) == 0)
1278 error_with_decl (TREE_VALUE (link
),
1279 "label `%s' used but not defined");
1280 /* Avoid crashing later. */
1281 define_label (input_filename
, lineno
,
1282 DECL_NAME (TREE_VALUE (link
)));
1284 else if (warn_unused
&& !TREE_USED (TREE_VALUE (link
)))
1285 warning_with_decl (TREE_VALUE (link
),
1286 "label `%s' defined but not used");
1287 IDENTIFIER_LABEL_VALUE (DECL_NAME (TREE_VALUE (link
))) = 0;
1289 /* Delete this element from the list. */
1290 link
= TREE_CHAIN (link
);
1292 TREE_CHAIN (prev
) = link
;
1294 named_labels
= link
;
1299 link
= TREE_CHAIN (link
);
1303 /* Bring back all the labels that were shadowed. */
1304 for (link
= shadowed_labels
; link
; link
= TREE_CHAIN (link
))
1305 if (DECL_NAME (TREE_VALUE (link
)) != 0)
1306 IDENTIFIER_LABEL_VALUE (DECL_NAME (TREE_VALUE (link
)))
1307 = TREE_VALUE (link
);
1309 named_labels
= chainon (named_labels
, level
->names
);
1310 shadowed_labels
= level
->shadowed
;
1312 /* Pop the current level, and free the structure for reuse. */
1313 label_level_chain
= label_level_chain
->level_chain
;
1314 level
->level_chain
= free_binding_level
;
1315 free_binding_level
= level
;
1318 /* Push a definition or a declaration of struct, union or enum tag "name".
1319 "type" should be the type node.
1320 We assume that the tag "name" is not already defined.
1322 Note that the definition may really be just a forward reference.
1323 In that case, the TYPE_SIZE will be zero. */
1326 pushtag (name
, type
)
1329 register struct binding_level
*b
;
1331 /* Find the proper binding level for this type tag. */
1333 for (b
= current_binding_level
; b
->tag_transparent
; b
= b
->level_chain
)
1338 /* Record the identifier as the type's name if it has none. */
1340 if (TYPE_NAME (type
) == 0)
1341 TYPE_NAME (type
) = name
;
1344 b
->tags
= tree_cons (name
, type
, b
->tags
);
1346 /* Create a fake NULL-named TYPE_DECL node whose TREE_TYPE will be the
1347 tagged type we just added to the current binding level. This fake
1348 NULL-named TYPE_DECL node helps dwarfout.c to know when it needs
1349 to output a representation of a tagged type, and it also gives
1350 us a convenient place to record the "scope start" address for the
1353 TYPE_STUB_DECL (type
) = pushdecl (build_decl (TYPE_DECL
, NULL_TREE
, type
));
1355 /* An approximation for now, so we can tell this is a function-scope tag.
1356 This will be updated in poplevel. */
1357 TYPE_CONTEXT (type
) = DECL_CONTEXT (TYPE_STUB_DECL (type
));
1360 /* Handle when a new declaration NEWDECL
1361 has the same name as an old one OLDDECL
1362 in the same binding contour.
1363 Prints an error message if appropriate.
1365 If safely possible, alter OLDDECL to look like NEWDECL, and return 1.
1366 Otherwise, return 0.
1368 When DIFFERENT_BINDING_LEVEL is true, NEWDECL is an external declaration,
1369 and OLDDECL is in an outer binding level and should thus not be changed. */
1372 duplicate_decls (newdecl
, olddecl
, different_binding_level
)
1373 register tree newdecl
, olddecl
;
1374 int different_binding_level
;
1376 int types_match
= comptypes (TREE_TYPE (newdecl
), TREE_TYPE (olddecl
));
1377 int new_is_definition
= (TREE_CODE (newdecl
) == FUNCTION_DECL
1378 && DECL_INITIAL (newdecl
) != 0);
1379 tree oldtype
= TREE_TYPE (olddecl
);
1380 tree newtype
= TREE_TYPE (newdecl
);
1383 if (DECL_P (olddecl
))
1384 DECL_MACHINE_ATTRIBUTES (newdecl
)
1385 = merge_machine_decl_attributes (olddecl
, newdecl
);
1387 if (TREE_CODE (newtype
) == ERROR_MARK
1388 || TREE_CODE (oldtype
) == ERROR_MARK
)
1391 /* New decl is completely inconsistent with the old one =>
1392 tell caller to replace the old one.
1393 This is always an error except in the case of shadowing a builtin. */
1394 if (TREE_CODE (olddecl
) != TREE_CODE (newdecl
))
1396 if (TREE_CODE (olddecl
) == FUNCTION_DECL
1397 && (DECL_BUILT_IN (olddecl
)
1398 || DECL_BUILT_IN_NONANSI (olddecl
)))
1400 /* If you declare a built-in or predefined function name as static,
1401 the old definition is overridden,
1402 but optionally warn this was a bad choice of name. */
1403 if (!TREE_PUBLIC (newdecl
))
1407 else if (DECL_BUILT_IN (olddecl
))
1408 warning_with_decl (newdecl
, "shadowing built-in function `%s'");
1410 warning_with_decl (newdecl
, "shadowing library function `%s'");
1412 /* Likewise, if the built-in is not ansi, then programs can
1413 override it even globally without an error. */
1414 else if (! DECL_BUILT_IN (olddecl
))
1415 warning_with_decl (newdecl
,
1416 "library function `%s' declared as non-function");
1418 else if (DECL_BUILT_IN_NONANSI (olddecl
))
1419 warning_with_decl (newdecl
,
1420 "built-in function `%s' declared as non-function");
1422 warning_with_decl (newdecl
,
1423 "built-in function `%s' declared as non-function");
1427 error_with_decl (newdecl
, "`%s' redeclared as different kind of symbol");
1428 error_with_decl (olddecl
, "previous declaration of `%s'");
1434 /* For real parm decl following a forward decl,
1435 return 1 so old decl will be reused. */
1436 if (types_match
&& TREE_CODE (newdecl
) == PARM_DECL
1437 && TREE_ASM_WRITTEN (olddecl
) && ! TREE_ASM_WRITTEN (newdecl
))
1440 /* The new declaration is the same kind of object as the old one.
1441 The declarations may partially match. Print warnings if they don't
1442 match enough. Ultimately, copy most of the information from the new
1443 decl to the old one, and keep using the old one. */
1445 if (flag_traditional
&& TREE_CODE (newdecl
) == FUNCTION_DECL
1446 && IDENTIFIER_IMPLICIT_DECL (DECL_NAME (newdecl
)) == olddecl
1447 && DECL_INITIAL (olddecl
) == 0)
1448 /* If -traditional, avoid error for redeclaring fcn
1449 after implicit decl. */
1451 else if (TREE_CODE (olddecl
) == FUNCTION_DECL
1452 && DECL_BUILT_IN (olddecl
))
1454 /* A function declaration for a built-in function. */
1455 if (!TREE_PUBLIC (newdecl
))
1457 /* If you declare a built-in function name as static, the
1458 built-in definition is overridden,
1459 but optionally warn this was a bad choice of name. */
1461 warning_with_decl (newdecl
, "shadowing built-in function `%s'");
1462 /* Discard the old built-in function. */
1465 else if (!types_match
)
1467 /* Accept the return type of the new declaration if same modes. */
1468 tree oldreturntype
= TREE_TYPE (oldtype
);
1469 tree newreturntype
= TREE_TYPE (newtype
);
1471 if (TYPE_MODE (oldreturntype
) == TYPE_MODE (newreturntype
))
1473 /* Function types may be shared, so we can't just modify
1474 the return type of olddecl's function type. */
1476 = build_function_type (newreturntype
,
1477 TYPE_ARG_TYPES (oldtype
));
1479 types_match
= comptypes (newtype
, trytype
);
1483 /* Accept harmless mismatch in first argument type also.
1485 if (TYPE_ARG_TYPES (TREE_TYPE (newdecl
)) != 0
1486 && TYPE_ARG_TYPES (oldtype
) != 0
1487 && TREE_VALUE (TYPE_ARG_TYPES (newtype
)) != 0
1488 && TREE_VALUE (TYPE_ARG_TYPES (oldtype
)) != 0
1489 && (TYPE_MODE (TREE_VALUE (TYPE_ARG_TYPES (newtype
)))
1490 == TYPE_MODE (TREE_VALUE (TYPE_ARG_TYPES (oldtype
)))))
1492 /* Function types may be shared, so we can't just modify
1493 the return type of olddecl's function type. */
1495 = build_function_type (TREE_TYPE (oldtype
),
1496 tree_cons (NULL_TREE
,
1497 TREE_VALUE (TYPE_ARG_TYPES (newtype
)),
1498 TREE_CHAIN (TYPE_ARG_TYPES (oldtype
))));
1500 types_match
= comptypes (newtype
, trytype
);
1504 if (! different_binding_level
)
1505 TREE_TYPE (olddecl
) = oldtype
;
1509 /* If types don't match for a built-in, throw away the built-in. */
1510 warning_with_decl (newdecl
, "conflicting types for built-in function `%s'");
1514 else if (TREE_CODE (olddecl
) == FUNCTION_DECL
1515 && DECL_SOURCE_LINE (olddecl
) == 0)
1517 /* A function declaration for a predeclared function
1518 that isn't actually built in. */
1519 if (!TREE_PUBLIC (newdecl
))
1521 /* If you declare it as static, the
1522 default definition is overridden. */
1525 else if (!types_match
)
1527 /* If the types don't match, preserve volatility indication.
1528 Later on, we will discard everything else about the
1529 default declaration. */
1530 TREE_THIS_VOLATILE (newdecl
) |= TREE_THIS_VOLATILE (olddecl
);
1533 /* Permit char *foo () to match void *foo (...) if not pedantic,
1534 if one of them came from a system header file. */
1535 else if (!types_match
1536 && TREE_CODE (olddecl
) == FUNCTION_DECL
1537 && TREE_CODE (newdecl
) == FUNCTION_DECL
1538 && TREE_CODE (TREE_TYPE (oldtype
)) == POINTER_TYPE
1539 && TREE_CODE (TREE_TYPE (newtype
)) == POINTER_TYPE
1540 && (DECL_IN_SYSTEM_HEADER (olddecl
)
1541 || DECL_IN_SYSTEM_HEADER (newdecl
))
1542 && ((TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (newtype
))) == void_type_node
1543 && TYPE_ARG_TYPES (oldtype
) == 0
1544 && self_promoting_args_p (TYPE_ARG_TYPES (newtype
))
1545 && TREE_TYPE (TREE_TYPE (oldtype
)) == char_type_node
)
1547 (TREE_TYPE (TREE_TYPE (newtype
)) == char_type_node
1548 && TYPE_ARG_TYPES (newtype
) == 0
1549 && self_promoting_args_p (TYPE_ARG_TYPES (oldtype
))
1550 && TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (oldtype
))) == void_type_node
)))
1553 pedwarn_with_decl (newdecl
, "conflicting types for `%s'");
1554 /* Make sure we keep void * as ret type, not char *. */
1555 if (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (oldtype
))) == void_type_node
)
1556 TREE_TYPE (newdecl
) = newtype
= oldtype
;
1558 /* Set DECL_IN_SYSTEM_HEADER, so that if we see another declaration
1559 we will come back here again. */
1560 DECL_IN_SYSTEM_HEADER (newdecl
) = 1;
1562 else if (!types_match
1563 /* Permit char *foo (int, ...); followed by char *foo ();
1565 && ! (TREE_CODE (olddecl
) == FUNCTION_DECL
1567 /* Return types must still match. */
1568 && comptypes (TREE_TYPE (oldtype
),
1569 TREE_TYPE (newtype
))
1570 && TYPE_ARG_TYPES (newtype
) == 0))
1572 error_with_decl (newdecl
, "conflicting types for `%s'");
1573 /* Check for function type mismatch
1574 involving an empty arglist vs a nonempty one. */
1575 if (TREE_CODE (olddecl
) == FUNCTION_DECL
1576 && comptypes (TREE_TYPE (oldtype
),
1577 TREE_TYPE (newtype
))
1578 && ((TYPE_ARG_TYPES (oldtype
) == 0
1579 && DECL_INITIAL (olddecl
) == 0)
1581 (TYPE_ARG_TYPES (newtype
) == 0
1582 && DECL_INITIAL (newdecl
) == 0)))
1584 /* Classify the problem further. */
1585 register tree t
= TYPE_ARG_TYPES (oldtype
);
1587 t
= TYPE_ARG_TYPES (newtype
);
1588 for (; t
; t
= TREE_CHAIN (t
))
1590 register tree type
= TREE_VALUE (t
);
1592 if (TREE_CHAIN (t
) == 0
1593 && TYPE_MAIN_VARIANT (type
) != void_type_node
)
1595 error ("A parameter list with an ellipsis can't match an empty parameter name list declaration.");
1599 if (simple_type_promotes_to (type
) != NULL_TREE
)
1601 error ("An argument type that has a default promotion can't match an empty parameter name list declaration.");
1606 error_with_decl (olddecl
, "previous declaration of `%s'");
1610 errmsg
= redeclaration_error_message (newdecl
, olddecl
);
1616 error_with_decl (newdecl
, "redefinition of `%s'");
1619 error_with_decl (newdecl
, "redeclaration of `%s'");
1622 error_with_decl (newdecl
, "conflicting declarations of `%s'");
1628 error_with_decl (olddecl
,
1629 ((DECL_INITIAL (olddecl
)
1630 && current_binding_level
== global_binding_level
)
1631 ? "`%s' previously defined here"
1632 : "`%s' previously declared here"));
1634 else if (TREE_CODE (newdecl
) == TYPE_DECL
1635 && (DECL_IN_SYSTEM_HEADER (olddecl
)
1636 || DECL_IN_SYSTEM_HEADER (newdecl
)))
1638 warning_with_decl (newdecl
, "redefinition of `%s'");
1641 ((DECL_INITIAL (olddecl
)
1642 && current_binding_level
== global_binding_level
)
1643 ? "`%s' previously defined here"
1644 : "`%s' previously declared here"));
1646 else if (TREE_CODE (olddecl
) == FUNCTION_DECL
1647 && DECL_INITIAL (olddecl
) != 0
1648 && TYPE_ARG_TYPES (oldtype
) == 0
1649 && TYPE_ARG_TYPES (newtype
) != 0
1650 && TYPE_ACTUAL_ARG_TYPES (oldtype
) != 0)
1652 register tree type
, parm
;
1654 /* Prototype decl follows defn w/o prototype. */
1656 for (parm
= TYPE_ACTUAL_ARG_TYPES (oldtype
),
1657 type
= TYPE_ARG_TYPES (newtype
),
1660 parm
= TREE_CHAIN (parm
), type
= TREE_CHAIN (type
), nargs
++)
1662 if (TYPE_MAIN_VARIANT (TREE_VALUE (parm
)) == void_type_node
1663 && TYPE_MAIN_VARIANT (TREE_VALUE (type
)) == void_type_node
)
1665 warning_with_decl (newdecl
, "prototype for `%s' follows");
1666 warning_with_decl (olddecl
, "non-prototype definition here");
1669 if (TYPE_MAIN_VARIANT (TREE_VALUE (parm
)) == void_type_node
1670 || TYPE_MAIN_VARIANT (TREE_VALUE (type
)) == void_type_node
)
1672 error_with_decl (newdecl
, "prototype for `%s' follows and number of arguments doesn't match");
1673 error_with_decl (olddecl
, "non-prototype definition here");
1677 /* Type for passing arg must be consistent
1678 with that declared for the arg. */
1679 if (! comptypes (TREE_VALUE (parm
), TREE_VALUE (type
))
1680 /* If -traditional, allow `unsigned int' instead of `int'
1681 in the prototype. */
1682 && (! (flag_traditional
1683 && TYPE_MAIN_VARIANT (TREE_VALUE (parm
)) == integer_type_node
1684 && TYPE_MAIN_VARIANT (TREE_VALUE (type
)) == unsigned_type_node
)))
1686 error_with_decl (newdecl
,
1687 "prototype for `%s' follows and argument %d doesn't match",
1689 error_with_decl (olddecl
, "non-prototype definition here");
1695 /* Warn about mismatches in various flags. */
1698 /* Warn if function is now inline
1699 but was previously declared not inline and has been called. */
1700 if (TREE_CODE (olddecl
) == FUNCTION_DECL
1701 && ! DECL_INLINE (olddecl
) && DECL_INLINE (newdecl
)
1702 && TREE_USED (olddecl
))
1703 warning_with_decl (newdecl
,
1704 "`%s' declared inline after being called");
1705 if (TREE_CODE (olddecl
) == FUNCTION_DECL
1706 && ! DECL_INLINE (olddecl
) && DECL_INLINE (newdecl
)
1707 && DECL_INITIAL (olddecl
) != 0)
1708 warning_with_decl (newdecl
,
1709 "`%s' declared inline after its definition");
1711 /* If pedantic, warn when static declaration follows a non-static
1712 declaration. Otherwise, do so only for functions. */
1713 if ((pedantic
|| TREE_CODE (olddecl
) == FUNCTION_DECL
)
1714 && TREE_PUBLIC (olddecl
)
1715 && !TREE_PUBLIC (newdecl
))
1716 warning_with_decl (newdecl
, "static declaration for `%s' follows non-static");
1718 /* If warn_traditional, warn when a non-static function
1719 declaration follows a static one. */
1720 if (warn_traditional
1721 && TREE_CODE (olddecl
) == FUNCTION_DECL
1722 && !TREE_PUBLIC (olddecl
)
1723 && TREE_PUBLIC (newdecl
))
1724 warning_with_decl (newdecl
, "non-static declaration for `%s' follows static");
1726 /* Warn when const declaration follows a non-const
1727 declaration, but not for functions. */
1728 if (TREE_CODE (olddecl
) != FUNCTION_DECL
1729 && !TREE_READONLY (olddecl
)
1730 && TREE_READONLY (newdecl
))
1731 warning_with_decl (newdecl
, "const declaration for `%s' follows non-const");
1732 /* These bits are logically part of the type, for variables.
1733 But not for functions
1734 (where qualifiers are not valid ANSI anyway). */
1735 else if (pedantic
&& TREE_CODE (olddecl
) != FUNCTION_DECL
1736 && (TREE_READONLY (newdecl
) != TREE_READONLY (olddecl
)
1737 || TREE_THIS_VOLATILE (newdecl
) != TREE_THIS_VOLATILE (olddecl
)))
1738 pedwarn_with_decl (newdecl
, "type qualifiers for `%s' conflict with previous decl");
1742 /* Optionally warn about more than one declaration for the same name. */
1743 if (errmsg
== 0 && warn_redundant_decls
&& DECL_SOURCE_LINE (olddecl
) != 0
1744 /* Don't warn about a function declaration
1745 followed by a definition. */
1746 && !(TREE_CODE (newdecl
) == FUNCTION_DECL
&& DECL_INITIAL (newdecl
) != 0
1747 && DECL_INITIAL (olddecl
) == 0)
1748 /* Don't warn about extern decl followed by (tentative) definition. */
1749 && !(DECL_EXTERNAL (olddecl
) && ! DECL_EXTERNAL (newdecl
)))
1751 warning_with_decl (newdecl
, "redundant redeclaration of `%s' in same scope");
1752 warning_with_decl (olddecl
, "previous declaration of `%s'");
1755 /* Copy all the DECL_... slots specified in the new decl
1756 except for any that we copy here from the old type.
1758 Past this point, we don't change OLDTYPE and NEWTYPE
1759 even if we change the types of NEWDECL and OLDDECL. */
1763 /* When copying info to olddecl, we store into write_olddecl
1764 instead. This allows us to avoid modifying olddecl when
1765 different_binding_level is true. */
1766 tree write_olddecl
= different_binding_level
? newdecl
: olddecl
;
1768 /* Merge the data types specified in the two decls. */
1769 if (TREE_CODE (newdecl
) != FUNCTION_DECL
|| !DECL_BUILT_IN (olddecl
))
1771 if (different_binding_level
)
1773 = build_type_attribute_variant
1775 merge_attributes (TYPE_ATTRIBUTES (newtype
),
1776 TYPE_ATTRIBUTES (oldtype
)));
1779 = TREE_TYPE (olddecl
)
1780 = common_type (newtype
, oldtype
);
1783 /* Lay the type out, unless already done. */
1784 if (oldtype
!= TREE_TYPE (newdecl
))
1786 if (TREE_TYPE (newdecl
) != error_mark_node
)
1787 layout_type (TREE_TYPE (newdecl
));
1788 if (TREE_CODE (newdecl
) != FUNCTION_DECL
1789 && TREE_CODE (newdecl
) != TYPE_DECL
1790 && TREE_CODE (newdecl
) != CONST_DECL
)
1791 layout_decl (newdecl
, 0);
1795 /* Since the type is OLDDECL's, make OLDDECL's size go with. */
1796 DECL_SIZE (newdecl
) = DECL_SIZE (olddecl
);
1797 DECL_SIZE_UNIT (newdecl
) = DECL_SIZE_UNIT (olddecl
);
1798 DECL_MODE (newdecl
) = DECL_MODE (olddecl
);
1799 if (TREE_CODE (olddecl
) != FUNCTION_DECL
)
1800 if (DECL_ALIGN (olddecl
) > DECL_ALIGN (newdecl
))
1801 DECL_ALIGN (newdecl
) = DECL_ALIGN (olddecl
);
1804 /* Keep the old rtl since we can safely use it. */
1805 DECL_RTL (newdecl
) = DECL_RTL (olddecl
);
1807 /* Merge the type qualifiers. */
1808 if (TREE_CODE (olddecl
) == FUNCTION_DECL
1809 && DECL_BUILT_IN_NONANSI (olddecl
) && TREE_THIS_VOLATILE (olddecl
)
1810 && ! TREE_THIS_VOLATILE (newdecl
))
1811 TREE_THIS_VOLATILE (write_olddecl
) = 0;
1813 if (TREE_READONLY (newdecl
))
1814 TREE_READONLY (write_olddecl
) = 1;
1816 if (TREE_THIS_VOLATILE (newdecl
))
1818 TREE_THIS_VOLATILE (write_olddecl
) = 1;
1819 if (TREE_CODE (newdecl
) == VAR_DECL
)
1820 make_var_volatile (newdecl
);
1823 /* Keep source location of definition rather than declaration. */
1824 /* When called with different_binding_level set, keep the old
1825 information so that meaningful diagnostics can be given. */
1826 if (DECL_INITIAL (newdecl
) == 0 && DECL_INITIAL (olddecl
) != 0
1827 && ! different_binding_level
)
1829 DECL_SOURCE_LINE (newdecl
) = DECL_SOURCE_LINE (olddecl
);
1830 DECL_SOURCE_FILE (newdecl
) = DECL_SOURCE_FILE (olddecl
);
1833 /* Merge the unused-warning information. */
1834 if (DECL_IN_SYSTEM_HEADER (olddecl
))
1835 DECL_IN_SYSTEM_HEADER (newdecl
) = 1;
1836 else if (DECL_IN_SYSTEM_HEADER (newdecl
))
1837 DECL_IN_SYSTEM_HEADER (write_olddecl
) = 1;
1839 /* Merge the initialization information. */
1840 /* When called with different_binding_level set, don't copy over
1841 DECL_INITIAL, so that we don't accidentally change function
1842 declarations into function definitions. */
1843 if (DECL_INITIAL (newdecl
) == 0 && ! different_binding_level
)
1844 DECL_INITIAL (newdecl
) = DECL_INITIAL (olddecl
);
1846 /* Merge the section attribute.
1847 We want to issue an error if the sections conflict but that must be
1848 done later in decl_attributes since we are called before attributes
1850 if (DECL_SECTION_NAME (newdecl
) == NULL_TREE
)
1851 DECL_SECTION_NAME (newdecl
) = DECL_SECTION_NAME (olddecl
);
1853 /* Copy the assembler name.
1854 Currently, it can only be defined in the prototype. */
1855 DECL_ASSEMBLER_NAME (newdecl
) = DECL_ASSEMBLER_NAME (olddecl
);
1857 if (TREE_CODE (newdecl
) == FUNCTION_DECL
)
1859 DECL_STATIC_CONSTRUCTOR(newdecl
) |= DECL_STATIC_CONSTRUCTOR(olddecl
);
1860 DECL_STATIC_DESTRUCTOR (newdecl
) |= DECL_STATIC_DESTRUCTOR (olddecl
);
1862 DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (newdecl
)
1863 |= DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (olddecl
);
1864 DECL_NO_CHECK_MEMORY_USAGE (newdecl
)
1865 |= DECL_NO_CHECK_MEMORY_USAGE (olddecl
);
1866 DECL_NO_LIMIT_STACK (newdecl
)
1867 |= DECL_NO_LIMIT_STACK (olddecl
);
1870 /* If cannot merge, then use the new type and qualifiers,
1871 and don't preserve the old rtl. */
1872 else if (! different_binding_level
)
1874 TREE_TYPE (olddecl
) = TREE_TYPE (newdecl
);
1875 TREE_READONLY (olddecl
) = TREE_READONLY (newdecl
);
1876 TREE_THIS_VOLATILE (olddecl
) = TREE_THIS_VOLATILE (newdecl
);
1877 TREE_SIDE_EFFECTS (olddecl
) = TREE_SIDE_EFFECTS (newdecl
);
1880 /* Merge the storage class information. */
1881 DECL_WEAK (newdecl
) |= DECL_WEAK (olddecl
);
1882 /* For functions, static overrides non-static. */
1883 if (TREE_CODE (newdecl
) == FUNCTION_DECL
)
1885 TREE_PUBLIC (newdecl
) &= TREE_PUBLIC (olddecl
);
1886 /* This is since we don't automatically
1887 copy the attributes of NEWDECL into OLDDECL. */
1888 /* No need to worry about different_binding_level here because
1889 then TREE_PUBLIC (newdecl) was true. */
1890 TREE_PUBLIC (olddecl
) = TREE_PUBLIC (newdecl
);
1891 /* If this clears `static', clear it in the identifier too. */
1892 if (! TREE_PUBLIC (olddecl
))
1893 TREE_PUBLIC (DECL_NAME (olddecl
)) = 0;
1895 if (DECL_EXTERNAL (newdecl
))
1897 TREE_STATIC (newdecl
) = TREE_STATIC (olddecl
);
1898 DECL_EXTERNAL (newdecl
) = DECL_EXTERNAL (olddecl
);
1899 /* An extern decl does not override previous storage class. */
1900 TREE_PUBLIC (newdecl
) = TREE_PUBLIC (olddecl
);
1901 if (! DECL_EXTERNAL (newdecl
))
1902 DECL_CONTEXT (newdecl
) = DECL_CONTEXT (olddecl
);
1906 TREE_STATIC (olddecl
) = TREE_STATIC (newdecl
);
1907 TREE_PUBLIC (olddecl
) = TREE_PUBLIC (newdecl
);
1910 if (TREE_CODE (newdecl
) == FUNCTION_DECL
)
1912 /* If either decl says `inline', this fn is inline,
1913 unless its definition was passed already. */
1914 if (DECL_INLINE (newdecl
) && DECL_INITIAL (olddecl
) == 0)
1915 DECL_INLINE (olddecl
) = 1;
1917 DECL_INLINE (newdecl
) = DECL_INLINE (olddecl
);
1919 if (DECL_BUILT_IN (olddecl
))
1921 /* Get rid of any built-in function if new arg types don't match it
1922 or if we have a function definition. */
1923 if (! types_match
|| new_is_definition
)
1925 if (! different_binding_level
)
1927 TREE_TYPE (olddecl
) = TREE_TYPE (newdecl
);
1928 DECL_BUILT_IN_CLASS (olddecl
) = NOT_BUILT_IN
;
1933 /* If redeclaring a builtin function, and not a definition,
1934 it stays built in. */
1935 DECL_BUILT_IN_CLASS (newdecl
) = DECL_BUILT_IN_CLASS (olddecl
);
1936 DECL_FUNCTION_CODE (newdecl
) = DECL_FUNCTION_CODE (olddecl
);
1939 /* Also preserve various other info from the definition. */
1940 else if (! new_is_definition
)
1941 DECL_FRAME_SIZE (newdecl
) = DECL_FRAME_SIZE (olddecl
);
1942 if (! new_is_definition
)
1944 DECL_RESULT (newdecl
) = DECL_RESULT (olddecl
);
1945 /* When called with different_binding_level set, don't copy over
1946 DECL_INITIAL, so that we don't accidentally change function
1947 declarations into function definitions. */
1948 if (! different_binding_level
)
1949 DECL_INITIAL (newdecl
) = DECL_INITIAL (olddecl
);
1950 DECL_SAVED_INSNS (newdecl
) = DECL_SAVED_INSNS (olddecl
);
1951 DECL_ARGUMENTS (newdecl
) = DECL_ARGUMENTS (olddecl
);
1952 if (DECL_INLINE (newdecl
))
1953 DECL_ABSTRACT_ORIGIN (newdecl
) = DECL_ORIGIN (olddecl
);
1956 if (different_binding_level
)
1958 /* Don't output a duplicate symbol or debugging information for this
1961 Do not set TREE_ASM_WRITTEN for a FUNCTION_DECL since we may actually
1962 just have two declarations without a definition. VAR_DECLs may need
1963 the same treatment, I'm not sure. */
1964 if (TREE_CODE (newdecl
) == FUNCTION_DECL
)
1965 DECL_IGNORED_P (newdecl
) = 1;
1967 TREE_ASM_WRITTEN (newdecl
) = DECL_IGNORED_P (newdecl
) = 1;
1971 /* Copy most of the decl-specific fields of NEWDECL into OLDDECL.
1972 But preserve OLDDECL's DECL_UID. */
1974 register unsigned olddecl_uid
= DECL_UID (olddecl
);
1976 bcopy ((char *) newdecl
+ sizeof (struct tree_common
),
1977 (char *) olddecl
+ sizeof (struct tree_common
),
1978 sizeof (struct tree_decl
) - sizeof (struct tree_common
));
1979 DECL_UID (olddecl
) = olddecl_uid
;
1982 /* NEWDECL contains the merged attribute lists.
1983 Update OLDDECL to be the same. */
1984 DECL_MACHINE_ATTRIBUTES (olddecl
) = DECL_MACHINE_ATTRIBUTES (newdecl
);
1989 /* Record a decl-node X as belonging to the current lexical scope.
1990 Check for errors (such as an incompatible declaration for the same
1991 name already seen in the same scope).
1993 Returns either X or an old decl for the same name.
1994 If an old decl is returned, it may have been smashed
1995 to agree with what X says. */
2002 register tree name
= DECL_NAME (x
);
2003 register struct binding_level
*b
= current_binding_level
;
2005 DECL_CONTEXT (x
) = current_function_decl
;
2006 /* A local extern declaration for a function doesn't constitute nesting.
2007 A local auto declaration does, since it's a forward decl
2008 for a nested function coming later. */
2009 if (TREE_CODE (x
) == FUNCTION_DECL
&& DECL_INITIAL (x
) == 0
2010 && DECL_EXTERNAL (x
))
2011 DECL_CONTEXT (x
) = 0;
2013 if (warn_nested_externs
&& DECL_EXTERNAL (x
) && b
!= global_binding_level
2014 && x
!= IDENTIFIER_IMPLICIT_DECL (name
)
2015 /* Don't print error messages for __FUNCTION__ and __PRETTY_FUNCTION__ */
2016 && !DECL_IN_SYSTEM_HEADER (x
))
2017 warning ("nested extern declaration of `%s'", IDENTIFIER_POINTER (name
));
2023 int different_binding_level
= 0;
2025 t
= lookup_name_current_level (name
);
2026 /* Don't type check externs here when -traditional. This is so that
2027 code with conflicting declarations inside blocks will get warnings
2028 not errors. X11 for instance depends on this. */
2029 if (! t
&& DECL_EXTERNAL (x
) && TREE_PUBLIC (x
) && ! flag_traditional
)
2031 t
= IDENTIFIER_GLOBAL_VALUE (name
);
2032 /* Type decls at global scope don't conflict with externs declared
2033 inside lexical blocks. */
2034 if (t
&& TREE_CODE (t
) == TYPE_DECL
)
2036 different_binding_level
= 1;
2038 if (t
!= 0 && t
== error_mark_node
)
2039 /* error_mark_node is 0 for a while during initialization! */
2042 error_with_decl (x
, "`%s' used prior to declaration");
2047 file
= DECL_SOURCE_FILE (t
);
2048 line
= DECL_SOURCE_LINE (t
);
2051 /* If this decl is `static' and an implicit decl was seen previously,
2052 warn. But don't complain if -traditional,
2053 since traditional compilers don't complain. */
2054 if (! flag_traditional
&& TREE_PUBLIC (name
)
2055 /* Don't test for DECL_EXTERNAL, because grokdeclarator
2056 sets this for all functions. */
2057 && ! TREE_PUBLIC (x
)
2058 && (TREE_CODE (x
) == FUNCTION_DECL
|| b
== global_binding_level
)
2059 /* We used to warn also for explicit extern followed by static,
2060 but sometimes you need to do it that way. */
2061 && IDENTIFIER_IMPLICIT_DECL (name
) != 0)
2063 pedwarn ("`%s' was declared implicitly `extern' and later `static'",
2064 IDENTIFIER_POINTER (name
));
2065 pedwarn_with_file_and_line
2066 (DECL_SOURCE_FILE (IDENTIFIER_IMPLICIT_DECL (name
)),
2067 DECL_SOURCE_LINE (IDENTIFIER_IMPLICIT_DECL (name
)),
2068 "previous declaration of `%s'",
2069 IDENTIFIER_POINTER (name
));
2070 TREE_THIS_VOLATILE (name
) = 1;
2073 if (t
!= 0 && duplicate_decls (x
, t
, different_binding_level
))
2075 if (TREE_CODE (t
) == PARM_DECL
)
2077 /* Don't allow more than one "real" duplicate
2078 of a forward parm decl. */
2079 TREE_ASM_WRITTEN (t
) = TREE_ASM_WRITTEN (x
);
2085 /* If we are processing a typedef statement, generate a whole new
2086 ..._TYPE node (which will be just an variant of the existing
2087 ..._TYPE node with identical properties) and then install the
2088 TYPE_DECL node generated to represent the typedef name as the
2089 TYPE_NAME of this brand new (duplicate) ..._TYPE node.
2091 The whole point here is to end up with a situation where each
2092 and every ..._TYPE node the compiler creates will be uniquely
2093 associated with AT MOST one node representing a typedef name.
2094 This way, even though the compiler substitutes corresponding
2095 ..._TYPE nodes for TYPE_DECL (i.e. "typedef name") nodes very
2096 early on, later parts of the compiler can always do the reverse
2097 translation and get back the corresponding typedef name. For
2100 typedef struct S MY_TYPE;
2103 Later parts of the compiler might only know that `object' was of
2104 type `struct S' if it were not for code just below. With this
2105 code however, later parts of the compiler see something like:
2107 struct S' == struct S
2108 typedef struct S' MY_TYPE;
2111 And they can then deduce (from the node for type struct S') that
2112 the original object declaration was:
2116 Being able to do this is important for proper support of protoize,
2117 and also for generating precise symbolic debugging information
2118 which takes full account of the programmer's (typedef) vocabulary.
2120 Obviously, we don't want to generate a duplicate ..._TYPE node if
2121 the TYPE_DECL node that we are now processing really represents a
2122 standard built-in type.
2124 Since all standard types are effectively declared at line zero
2125 in the source file, we can easily check to see if we are working
2126 on a standard type by checking the current value of lineno. */
2128 if (TREE_CODE (x
) == TYPE_DECL
)
2130 if (DECL_SOURCE_LINE (x
) == 0)
2132 if (TYPE_NAME (TREE_TYPE (x
)) == 0)
2133 TYPE_NAME (TREE_TYPE (x
)) = x
;
2135 else if (TREE_TYPE (x
) != error_mark_node
2136 && DECL_ORIGINAL_TYPE (x
) == NULL_TREE
)
2138 tree tt
= TREE_TYPE (x
);
2139 DECL_ORIGINAL_TYPE (x
) = tt
;
2140 tt
= build_type_copy (tt
);
2146 /* Multiple external decls of the same identifier ought to match.
2147 Check against both global declarations (when traditional) and out of
2148 scope (limbo) block level declarations.
2150 We get warnings about inline functions where they are defined.
2151 Avoid duplicate warnings where they are used. */
2153 && ! (TREE_CODE (x
) == FUNCTION_DECL
&& DECL_INLINE (x
)))
2157 if (flag_traditional
&& IDENTIFIER_GLOBAL_VALUE (name
) != 0
2158 && (DECL_EXTERNAL (IDENTIFIER_GLOBAL_VALUE (name
))
2159 || TREE_PUBLIC (IDENTIFIER_GLOBAL_VALUE (name
))))
2160 decl
= IDENTIFIER_GLOBAL_VALUE (name
);
2161 else if (IDENTIFIER_LIMBO_VALUE (name
) != 0)
2162 /* Decls in limbo are always extern, so no need to check that. */
2163 decl
= IDENTIFIER_LIMBO_VALUE (name
);
2167 if (decl
&& ! comptypes (TREE_TYPE (x
), TREE_TYPE (decl
))
2168 /* If old decl is built-in, we already warned if we should. */
2169 && !DECL_BUILT_IN (decl
))
2171 pedwarn_with_decl (x
,
2172 "type mismatch with previous external decl");
2173 pedwarn_with_decl (decl
, "previous external decl of `%s'");
2177 /* If a function has had an implicit declaration, and then is defined,
2178 make sure they are compatible. */
2180 if (IDENTIFIER_IMPLICIT_DECL (name
) != 0
2181 && IDENTIFIER_GLOBAL_VALUE (name
) == 0
2182 && TREE_CODE (x
) == FUNCTION_DECL
2183 && ! comptypes (TREE_TYPE (x
),
2184 TREE_TYPE (IDENTIFIER_IMPLICIT_DECL (name
))))
2186 warning_with_decl (x
, "type mismatch with previous implicit declaration");
2187 warning_with_decl (IDENTIFIER_IMPLICIT_DECL (name
),
2188 "previous implicit declaration of `%s'");
2191 /* In PCC-compatibility mode, extern decls of vars with no current decl
2192 take effect at top level no matter where they are. */
2193 if (flag_traditional
&& DECL_EXTERNAL (x
)
2194 && lookup_name (name
) == 0)
2196 tree type
= TREE_TYPE (x
);
2198 /* But don't do this if the type contains temporary nodes. */
2201 if (type
== error_mark_node
)
2203 if (! TYPE_CONTEXT (type
))
2205 warning_with_decl (x
, "type of external `%s' is not global");
2206 /* By exiting the loop early, we leave TYPE nonzero,
2207 and thus prevent globalization of the decl. */
2210 else if (TREE_CODE (type
) == FUNCTION_TYPE
2211 && TYPE_ARG_TYPES (type
) != 0)
2212 /* The types might not be truly local,
2213 but the list of arg types certainly is temporary.
2214 Since prototypes are nontraditional,
2215 ok not to do the traditional thing. */
2217 type
= TREE_TYPE (type
);
2221 b
= global_binding_level
;
2224 /* This name is new in its binding level.
2225 Install the new declaration and return it. */
2226 if (b
== global_binding_level
)
2228 /* Install a global value. */
2230 /* If the first global decl has external linkage,
2231 warn if we later see static one. */
2232 if (IDENTIFIER_GLOBAL_VALUE (name
) == 0 && TREE_PUBLIC (x
))
2233 TREE_PUBLIC (name
) = 1;
2235 IDENTIFIER_GLOBAL_VALUE (name
) = x
;
2237 /* We no longer care about any previous block level declarations. */
2238 IDENTIFIER_LIMBO_VALUE (name
) = 0;
2240 /* Don't forget if the function was used via an implicit decl. */
2241 if (IDENTIFIER_IMPLICIT_DECL (name
)
2242 && TREE_USED (IDENTIFIER_IMPLICIT_DECL (name
)))
2243 TREE_USED (x
) = 1, TREE_USED (name
) = 1;
2245 /* Don't forget if its address was taken in that way. */
2246 if (IDENTIFIER_IMPLICIT_DECL (name
)
2247 && TREE_ADDRESSABLE (IDENTIFIER_IMPLICIT_DECL (name
)))
2248 TREE_ADDRESSABLE (x
) = 1;
2250 /* Warn about mismatches against previous implicit decl. */
2251 if (IDENTIFIER_IMPLICIT_DECL (name
) != 0
2252 /* If this real decl matches the implicit, don't complain. */
2253 && ! (TREE_CODE (x
) == FUNCTION_DECL
2254 && (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (x
)))
2255 == integer_type_node
)))
2256 pedwarn ("`%s' was previously implicitly declared to return `int'",
2257 IDENTIFIER_POINTER (name
));
2259 /* If this decl is `static' and an `extern' was seen previously,
2260 that is erroneous. */
2261 if (TREE_PUBLIC (name
)
2262 && ! TREE_PUBLIC (x
) && ! DECL_EXTERNAL (x
))
2264 /* Okay to redeclare an ANSI built-in as static. */
2265 if (t
!= 0 && DECL_BUILT_IN (t
))
2267 /* Okay to declare a non-ANSI built-in as anything. */
2268 else if (t
!= 0 && DECL_BUILT_IN_NONANSI (t
))
2270 /* Okay to have global type decl after an earlier extern
2271 declaration inside a lexical block. */
2272 else if (TREE_CODE (x
) == TYPE_DECL
)
2274 else if (IDENTIFIER_IMPLICIT_DECL (name
))
2276 if (! TREE_THIS_VOLATILE (name
))
2277 pedwarn ("`%s' was declared implicitly `extern' and later `static'",
2278 IDENTIFIER_POINTER (name
));
2281 pedwarn ("`%s' was declared `extern' and later `static'",
2282 IDENTIFIER_POINTER (name
));
2287 /* Here to install a non-global value. */
2288 tree oldlocal
= IDENTIFIER_LOCAL_VALUE (name
);
2289 tree oldglobal
= IDENTIFIER_GLOBAL_VALUE (name
);
2291 IDENTIFIER_LOCAL_VALUE (name
) = x
;
2293 /* If this is an extern function declaration, see if we
2294 have a global definition or declaration for the function. */
2297 && TREE_CODE (x
) == FUNCTION_DECL
2298 && TREE_CODE (oldglobal
) == FUNCTION_DECL
2299 && DECL_EXTERNAL (x
) && ! DECL_INLINE (x
))
2301 /* We have one. Their types must agree. */
2302 if (! comptypes (TREE_TYPE (x
),
2303 TREE_TYPE (IDENTIFIER_GLOBAL_VALUE (name
))))
2304 pedwarn_with_decl (x
, "extern declaration of `%s' doesn't match global one");
2307 /* Inner extern decl is inline if global one is.
2308 Copy enough to really inline it. */
2309 if (DECL_INLINE (oldglobal
))
2311 DECL_INLINE (x
) = DECL_INLINE (oldglobal
);
2312 DECL_INITIAL (x
) = (current_function_decl
== oldglobal
2313 ? 0 : DECL_INITIAL (oldglobal
));
2314 DECL_SAVED_INSNS (x
) = DECL_SAVED_INSNS (oldglobal
);
2315 DECL_FRAME_SIZE (x
) = DECL_FRAME_SIZE (oldglobal
);
2316 DECL_ARGUMENTS (x
) = DECL_ARGUMENTS (oldglobal
);
2317 DECL_RESULT (x
) = DECL_RESULT (oldglobal
);
2318 TREE_ASM_WRITTEN (x
) = TREE_ASM_WRITTEN (oldglobal
);
2319 DECL_ABSTRACT_ORIGIN (x
) = DECL_ORIGIN (oldglobal
);
2321 /* Inner extern decl is built-in if global one is. */
2322 if (DECL_BUILT_IN (oldglobal
))
2324 DECL_BUILT_IN_CLASS (x
) = DECL_BUILT_IN_CLASS (oldglobal
);
2325 DECL_FUNCTION_CODE (x
) = DECL_FUNCTION_CODE (oldglobal
);
2327 /* Keep the arg types from a file-scope fcn defn. */
2328 if (TYPE_ARG_TYPES (TREE_TYPE (oldglobal
)) != 0
2329 && DECL_INITIAL (oldglobal
)
2330 && TYPE_ARG_TYPES (TREE_TYPE (x
)) == 0)
2331 TREE_TYPE (x
) = TREE_TYPE (oldglobal
);
2335 #if 0 /* This case is probably sometimes the right thing to do. */
2336 /* If we have a local external declaration,
2337 then any file-scope declaration should not
2338 have been static. */
2339 if (oldlocal
== 0 && oldglobal
!= 0
2340 && !TREE_PUBLIC (oldglobal
)
2341 && DECL_EXTERNAL (x
) && TREE_PUBLIC (x
))
2342 warning ("`%s' locally external but globally static",
2343 IDENTIFIER_POINTER (name
));
2346 /* If we have a local external declaration,
2347 and no file-scope declaration has yet been seen,
2348 then if we later have a file-scope decl it must not be static. */
2350 && DECL_EXTERNAL (x
)
2354 TREE_PUBLIC (name
) = 1;
2356 /* Save this decl, so that we can do type checking against
2357 other decls after it falls out of scope.
2359 Only save it once. This prevents temporary decls created in
2360 expand_inline_function from being used here, since this
2361 will have been set when the inline function was parsed.
2362 It also helps give slightly better warnings. */
2363 if (IDENTIFIER_LIMBO_VALUE (name
) == 0)
2364 IDENTIFIER_LIMBO_VALUE (name
) = x
;
2367 /* Warn if shadowing an argument at the top level of the body. */
2368 if (oldlocal
!= 0 && !DECL_EXTERNAL (x
)
2369 /* This warning doesn't apply to the parms of a nested fcn. */
2370 && ! current_binding_level
->parm_flag
2371 /* Check that this is one level down from the parms. */
2372 && current_binding_level
->level_chain
->parm_flag
2373 /* Check that the decl being shadowed
2374 comes from the parm level, one level up. */
2375 && chain_member (oldlocal
, current_binding_level
->level_chain
->names
))
2377 if (TREE_CODE (oldlocal
) == PARM_DECL
)
2378 pedwarn ("declaration of `%s' shadows a parameter",
2379 IDENTIFIER_POINTER (name
));
2381 pedwarn ("declaration of `%s' shadows a symbol from the parameter list",
2382 IDENTIFIER_POINTER (name
));
2385 /* Maybe warn if shadowing something else. */
2386 else if (warn_shadow
&& !DECL_EXTERNAL (x
)
2387 /* No shadow warnings for internally generated vars. */
2388 && DECL_SOURCE_LINE (x
) != 0
2389 /* No shadow warnings for vars made for inlining. */
2390 && ! DECL_FROM_INLINE (x
))
2392 char *id
= IDENTIFIER_POINTER (name
);
2394 if (TREE_CODE (x
) == PARM_DECL
2395 && current_binding_level
->level_chain
->parm_flag
)
2396 /* Don't warn about the parm names in function declarator
2397 within a function declarator.
2398 It would be nice to avoid warning in any function
2399 declarator in a declaration, as opposed to a definition,
2400 but there is no way to tell it's not a definition. */
2402 else if (oldlocal
!= 0 && TREE_CODE (oldlocal
) == PARM_DECL
)
2403 warning ("declaration of `%s' shadows a parameter", id
);
2404 else if (oldlocal
!= 0)
2405 warning ("declaration of `%s' shadows previous local", id
);
2406 else if (IDENTIFIER_GLOBAL_VALUE (name
) != 0
2407 && IDENTIFIER_GLOBAL_VALUE (name
) != error_mark_node
)
2408 warning ("declaration of `%s' shadows global declaration", id
);
2411 /* If storing a local value, there may already be one (inherited).
2412 If so, record it for restoration when this binding level ends. */
2414 b
->shadowed
= tree_cons (name
, oldlocal
, b
->shadowed
);
2417 /* Keep count of variables in this level with incomplete type. */
2418 if (!COMPLETE_TYPE_P (TREE_TYPE (x
)))
2422 /* Put decls on list in reverse order.
2423 We will reverse them later if necessary. */
2424 TREE_CHAIN (x
) = b
->names
;
2430 /* Like pushdecl, only it places X in GLOBAL_BINDING_LEVEL, if appropriate. */
2433 pushdecl_top_level (x
)
2437 register struct binding_level
*b
= current_binding_level
;
2439 current_binding_level
= global_binding_level
;
2441 current_binding_level
= b
;
2445 /* Generate an implicit declaration for identifier FUNCTIONID
2446 as a function of type int (). Print a warning if appropriate. */
2449 implicitly_declare (functionid
)
2453 int traditional_warning
= 0;
2454 /* Only one "implicit declaration" warning per identifier. */
2455 int implicit_warning
;
2457 /* We used to reuse an old implicit decl here,
2458 but this loses with inline functions because it can clobber
2459 the saved decl chains. */
2460 /* if (IDENTIFIER_IMPLICIT_DECL (functionid) != 0)
2461 decl = IDENTIFIER_IMPLICIT_DECL (functionid);
2463 decl
= build_decl (FUNCTION_DECL
, functionid
, default_function_type
);
2465 /* Warn of implicit decl following explicit local extern decl.
2466 This is probably a program designed for traditional C. */
2467 if (TREE_PUBLIC (functionid
) && IDENTIFIER_GLOBAL_VALUE (functionid
) == 0)
2468 traditional_warning
= 1;
2470 /* Warn once of an implicit declaration. */
2471 implicit_warning
= (IDENTIFIER_IMPLICIT_DECL (functionid
) == 0);
2473 DECL_EXTERNAL (decl
) = 1;
2474 TREE_PUBLIC (decl
) = 1;
2476 /* Record that we have an implicit decl and this is it. */
2477 IDENTIFIER_IMPLICIT_DECL (functionid
) = decl
;
2479 /* ANSI standard says implicit declarations are in the innermost block.
2480 So we record the decl in the standard fashion.
2481 If flag_traditional is set, pushdecl does it top-level. */
2484 /* This is a no-op in c-lang.c or something real in objc-actions.c. */
2485 maybe_objc_check_decl (decl
);
2487 rest_of_decl_compilation (decl
, NULL_PTR
, 0, 0);
2489 if (mesg_implicit_function_declaration
&& implicit_warning
)
2491 if (mesg_implicit_function_declaration
== 2)
2492 error ("implicit declaration of function `%s'",
2493 IDENTIFIER_POINTER (functionid
));
2495 warning ("implicit declaration of function `%s'",
2496 IDENTIFIER_POINTER (functionid
));
2498 else if (warn_traditional
&& traditional_warning
)
2499 warning ("function `%s' was previously declared within a block",
2500 IDENTIFIER_POINTER (functionid
));
2502 /* Write a record describing this implicit function declaration to the
2503 prototypes file (if requested). */
2505 gen_aux_info_record (decl
, 0, 1, 0);
2510 /* Return zero if the declaration NEWDECL is valid
2511 when the declaration OLDDECL (assumed to be for the same name)
2512 has already been seen.
2513 Otherwise return 1 if NEWDECL is a redefinition, 2 if it is a redeclaration,
2514 and 3 if it is a conflicting declaration. */
2517 redeclaration_error_message (newdecl
, olddecl
)
2518 tree newdecl
, olddecl
;
2520 if (TREE_CODE (newdecl
) == TYPE_DECL
)
2522 if (flag_traditional
&& TREE_TYPE (newdecl
) == TREE_TYPE (olddecl
))
2524 /* pushdecl creates distinct types for TYPE_DECLs by calling
2525 build_type_copy, so the above comparison generally fails. We do
2526 another test against the TYPE_MAIN_VARIANT of the olddecl, which
2527 is equivalent to what this code used to do before the build_type_copy
2528 call. The variant type distinction should not matter for traditional
2529 code, because it doesn't have type qualifiers. */
2530 if (flag_traditional
2531 && TYPE_MAIN_VARIANT (TREE_TYPE (olddecl
)) == TREE_TYPE (newdecl
))
2533 if (DECL_IN_SYSTEM_HEADER (olddecl
) || DECL_IN_SYSTEM_HEADER (newdecl
))
2537 else if (TREE_CODE (newdecl
) == FUNCTION_DECL
)
2539 /* Declarations of functions can insist on internal linkage
2540 but they can't be inconsistent with internal linkage,
2541 so there can be no error on that account.
2542 However defining the same name twice is no good. */
2543 if (DECL_INITIAL (olddecl
) != 0 && DECL_INITIAL (newdecl
) != 0
2544 /* However, defining once as extern inline and a second
2545 time in another way is ok. */
2546 && ! (DECL_INLINE (olddecl
) && DECL_EXTERNAL (olddecl
)
2547 && ! (DECL_INLINE (newdecl
) && DECL_EXTERNAL (newdecl
))))
2551 else if (current_binding_level
== global_binding_level
)
2553 /* Objects declared at top level: */
2554 /* If at least one is a reference, it's ok. */
2555 if (DECL_EXTERNAL (newdecl
) || DECL_EXTERNAL (olddecl
))
2557 /* Reject two definitions. */
2558 if (DECL_INITIAL (olddecl
) != 0 && DECL_INITIAL (newdecl
) != 0)
2560 /* Now we have two tentative defs, or one tentative and one real def. */
2561 /* Insist that the linkage match. */
2562 if (TREE_PUBLIC (olddecl
) != TREE_PUBLIC (newdecl
))
2566 else if (current_binding_level
->parm_flag
2567 && TREE_ASM_WRITTEN (olddecl
) && !TREE_ASM_WRITTEN (newdecl
))
2571 /* Newdecl has block scope. If olddecl has block scope also, then
2572 reject two definitions, and reject a definition together with an
2573 external reference. Otherwise, it is OK, because newdecl must
2574 be an extern reference to olddecl. */
2575 if (!(DECL_EXTERNAL (newdecl
) && DECL_EXTERNAL (olddecl
))
2576 && DECL_CONTEXT (newdecl
) == DECL_CONTEXT (olddecl
))
2582 /* Get the LABEL_DECL corresponding to identifier ID as a label.
2583 Create one if none exists so far for the current function.
2584 This function is called for both label definitions and label references. */
2590 register tree decl
= IDENTIFIER_LABEL_VALUE (id
);
2592 if (current_function_decl
== 0)
2594 error ("label %s referenced outside of any function",
2595 IDENTIFIER_POINTER (id
));
2599 /* Use a label already defined or ref'd with this name. */
2602 /* But not if it is inherited and wasn't declared to be inheritable. */
2603 if (DECL_CONTEXT (decl
) != current_function_decl
2604 && ! C_DECLARED_LABEL_FLAG (decl
))
2605 return shadow_label (id
);
2609 decl
= build_decl (LABEL_DECL
, id
, void_type_node
);
2611 /* Make sure every label has an rtx. */
2614 /* A label not explicitly declared must be local to where it's ref'd. */
2615 DECL_CONTEXT (decl
) = current_function_decl
;
2617 DECL_MODE (decl
) = VOIDmode
;
2619 /* Say where one reference is to the label,
2620 for the sake of the error if it is not defined. */
2621 DECL_SOURCE_LINE (decl
) = lineno
;
2622 DECL_SOURCE_FILE (decl
) = input_filename
;
2624 IDENTIFIER_LABEL_VALUE (id
) = decl
;
2626 named_labels
= tree_cons (NULL_TREE
, decl
, named_labels
);
2631 /* Make a label named NAME in the current function,
2632 shadowing silently any that may be inherited from containing functions
2633 or containing scopes.
2635 Note that valid use, if the label being shadowed
2636 comes from another scope in the same function,
2637 requires calling declare_nonlocal_label right away. */
2643 register tree decl
= IDENTIFIER_LABEL_VALUE (name
);
2649 /* Check to make sure that the label hasn't already been declared
2650 at this label scope */
2651 for (dup
= named_labels
; dup
; dup
= TREE_CHAIN (dup
))
2652 if (TREE_VALUE (dup
) == decl
)
2654 error ("duplicate label declaration `%s'",
2655 IDENTIFIER_POINTER (name
));
2656 error_with_decl (TREE_VALUE (dup
),
2657 "this is a previous declaration");
2658 /* Just use the previous declaration. */
2659 return lookup_label (name
);
2662 shadowed_labels
= tree_cons (NULL_TREE
, decl
, shadowed_labels
);
2663 IDENTIFIER_LABEL_VALUE (name
) = decl
= 0;
2666 return lookup_label (name
);
2669 /* Define a label, specifying the location in the source file.
2670 Return the LABEL_DECL node for the label, if the definition is valid.
2671 Otherwise return 0. */
2674 define_label (filename
, line
, name
)
2679 tree decl
= lookup_label (name
);
2681 /* If label with this name is known from an outer context, shadow it. */
2682 if (decl
!= 0 && DECL_CONTEXT (decl
) != current_function_decl
)
2684 shadowed_labels
= tree_cons (NULL_TREE
, decl
, shadowed_labels
);
2685 IDENTIFIER_LABEL_VALUE (name
) = 0;
2686 decl
= lookup_label (name
);
2689 if (DECL_INITIAL (decl
) != 0)
2691 error ("duplicate label `%s'", IDENTIFIER_POINTER (name
));
2696 /* Mark label as having been defined. */
2697 DECL_INITIAL (decl
) = error_mark_node
;
2698 /* Say where in the source. */
2699 DECL_SOURCE_FILE (decl
) = filename
;
2700 DECL_SOURCE_LINE (decl
) = line
;
2705 /* Return the list of declarations of the current level.
2706 Note that this list is in reverse order unless/until
2707 you nreverse it; and when you do nreverse it, you must
2708 store the result back using `storedecls' or you will lose. */
2713 return current_binding_level
->names
;
2716 /* Return the list of type-tags (for structs, etc) of the current level. */
2721 return current_binding_level
->tags
;
2724 /* Store the list of declarations of the current level.
2725 This is done for the parameter declarations of a function being defined,
2726 after they are modified in the light of any missing parameters. */
2732 current_binding_level
->names
= decls
;
2735 /* Similarly, store the list of tags of the current level. */
2741 current_binding_level
->tags
= tags
;
2744 /* Given NAME, an IDENTIFIER_NODE,
2745 return the structure (or union or enum) definition for that name.
2746 Searches binding levels from BINDING_LEVEL up to the global level.
2747 If THISLEVEL_ONLY is nonzero, searches only the specified context
2748 (but skips any tag-transparent contexts to find one that is
2749 meaningful for tags).
2750 CODE says which kind of type the caller wants;
2751 it is RECORD_TYPE or UNION_TYPE or ENUMERAL_TYPE.
2752 If the wrong kind of type is found, an error is reported. */
2755 lookup_tag (code
, name
, binding_level
, thislevel_only
)
2756 enum tree_code code
;
2757 struct binding_level
*binding_level
;
2761 register struct binding_level
*level
;
2763 for (level
= binding_level
; level
; level
= level
->level_chain
)
2766 for (tail
= level
->tags
; tail
; tail
= TREE_CHAIN (tail
))
2768 if (TREE_PURPOSE (tail
) == name
)
2770 if (TREE_CODE (TREE_VALUE (tail
)) != code
)
2772 /* Definition isn't the kind we were looking for. */
2773 pending_invalid_xref
= name
;
2774 pending_invalid_xref_file
= input_filename
;
2775 pending_invalid_xref_line
= lineno
;
2777 return TREE_VALUE (tail
);
2780 if (thislevel_only
&& ! level
->tag_transparent
)
2786 /* Print an error message now
2787 for a recent invalid struct, union or enum cross reference.
2788 We don't print them immediately because they are not invalid
2789 when used in the `struct foo;' construct for shadowing. */
2792 pending_xref_error ()
2794 if (pending_invalid_xref
!= 0)
2795 error_with_file_and_line (pending_invalid_xref_file
,
2796 pending_invalid_xref_line
,
2797 "`%s' defined as wrong kind of tag",
2798 IDENTIFIER_POINTER (pending_invalid_xref
));
2799 pending_invalid_xref
= 0;
2802 /* Given a type, find the tag that was defined for it and return the tag name.
2803 Otherwise return 0. */
2806 lookup_tag_reverse (type
)
2809 register struct binding_level
*level
;
2811 for (level
= current_binding_level
; level
; level
= level
->level_chain
)
2814 for (tail
= level
->tags
; tail
; tail
= TREE_CHAIN (tail
))
2816 if (TREE_VALUE (tail
) == type
)
2817 return TREE_PURPOSE (tail
);
2823 /* Look up NAME in the current binding level and its superiors
2824 in the namespace of variables, functions and typedefs.
2825 Return a ..._DECL node of some kind representing its definition,
2826 or return 0 if it is undefined. */
2833 if (current_binding_level
!= global_binding_level
2834 && IDENTIFIER_LOCAL_VALUE (name
))
2835 val
= IDENTIFIER_LOCAL_VALUE (name
);
2837 val
= IDENTIFIER_GLOBAL_VALUE (name
);
2841 /* Similar to `lookup_name' but look only at current binding level. */
2844 lookup_name_current_level (name
)
2849 if (current_binding_level
== global_binding_level
)
2850 return IDENTIFIER_GLOBAL_VALUE (name
);
2852 if (IDENTIFIER_LOCAL_VALUE (name
) == 0)
2855 for (t
= current_binding_level
->names
; t
; t
= TREE_CHAIN (t
))
2856 if (DECL_NAME (t
) == name
)
2862 /* Mark ARG for GC. */
2864 mark_binding_level (arg
)
2867 struct binding_level
*level
= *(struct binding_level
**) arg
;
2871 ggc_mark_tree (level
->names
);
2872 ggc_mark_tree (level
->tags
);
2873 ggc_mark_tree (level
->shadowed
);
2874 ggc_mark_tree (level
->blocks
);
2875 ggc_mark_tree (level
->this_block
);
2876 ggc_mark_tree (level
->parm_order
);
2877 level
= level
->level_chain
;
2881 /* Create the predefined scalar types of C,
2882 and some nodes representing standard constants (0, 1, (void *) 0).
2883 Initialize the global binding level.
2884 Make definitions for built-in primitive functions. */
2887 init_decl_processing ()
2889 register tree endlink
;
2890 tree ptr_ftype_void
, ptr_ftype_ptr
;
2891 int wchar_type_size
;
2892 tree array_domain_type
;
2895 current_function_decl
= NULL
;
2896 named_labels
= NULL
;
2897 current_binding_level
= NULL_BINDING_LEVEL
;
2898 free_binding_level
= NULL_BINDING_LEVEL
;
2899 pushlevel (0); /* make the binding_level structure for global names */
2900 global_binding_level
= current_binding_level
;
2902 build_common_tree_nodes (flag_signed_char
);
2904 /* Define `int' and `char' first so that dbx will output them first. */
2905 pushdecl (build_decl (TYPE_DECL
, ridpointers
[(int) RID_INT
],
2906 integer_type_node
));
2907 pushdecl (build_decl (TYPE_DECL
, get_identifier ("char"),
2909 pushdecl (build_decl (TYPE_DECL
, get_identifier ("long int"),
2910 long_integer_type_node
));
2911 pushdecl (build_decl (TYPE_DECL
, get_identifier ("unsigned int"),
2912 unsigned_type_node
));
2913 pushdecl (build_decl (TYPE_DECL
, get_identifier ("long unsigned int"),
2914 long_unsigned_type_node
));
2915 pushdecl (build_decl (TYPE_DECL
, get_identifier ("long long int"),
2916 long_long_integer_type_node
));
2917 pushdecl (build_decl (TYPE_DECL
, get_identifier ("long long unsigned int"),
2918 long_long_unsigned_type_node
));
2919 pushdecl (build_decl (TYPE_DECL
, get_identifier ("short int"),
2920 short_integer_type_node
));
2921 pushdecl (build_decl (TYPE_DECL
, get_identifier ("short unsigned int"),
2922 short_unsigned_type_node
));
2923 pushdecl (build_decl (TYPE_DECL
, get_identifier ("signed char"),
2924 signed_char_type_node
));
2925 pushdecl (build_decl (TYPE_DECL
, get_identifier ("unsigned char"),
2926 unsigned_char_type_node
));
2927 pushdecl (build_decl (TYPE_DECL
, NULL_TREE
, intQI_type_node
));
2928 pushdecl (build_decl (TYPE_DECL
, NULL_TREE
, intHI_type_node
));
2929 pushdecl (build_decl (TYPE_DECL
, NULL_TREE
, intSI_type_node
));
2930 pushdecl (build_decl (TYPE_DECL
, NULL_TREE
, intDI_type_node
));
2931 #if HOST_BITS_PER_WIDE_INT >= 64
2932 pushdecl (build_decl (TYPE_DECL
, NULL_TREE
, intTI_type_node
));
2934 pushdecl (build_decl (TYPE_DECL
, NULL_TREE
, unsigned_intQI_type_node
));
2935 pushdecl (build_decl (TYPE_DECL
, NULL_TREE
, unsigned_intHI_type_node
));
2936 pushdecl (build_decl (TYPE_DECL
, NULL_TREE
, unsigned_intSI_type_node
));
2937 pushdecl (build_decl (TYPE_DECL
, NULL_TREE
, unsigned_intDI_type_node
));
2938 #if HOST_BITS_PER_WIDE_INT >= 64
2939 pushdecl (build_decl (TYPE_DECL
, NULL_TREE
, unsigned_intTI_type_node
));
2942 /* `unsigned long' is the standard type for sizeof.
2943 Traditionally, use a signed type.
2944 Note that stddef.h uses `unsigned long',
2945 and this must agree, even if long and int are the same size. */
2946 t
= TREE_TYPE (IDENTIFIER_GLOBAL_VALUE (get_identifier (SIZE_TYPE
)));
2947 if (flag_traditional
&& TREE_UNSIGNED (t
))
2948 t
= signed_type (t
);
2952 /* Create the widest literal types. */
2953 widest_integer_literal_type_node
2954 = make_signed_type (HOST_BITS_PER_WIDE_INT
* 2);
2955 widest_unsigned_literal_type_node
2956 = make_unsigned_type (HOST_BITS_PER_WIDE_INT
* 2);
2957 pushdecl (build_decl (TYPE_DECL
, NULL_TREE
,
2958 widest_integer_literal_type_node
));
2959 pushdecl (build_decl (TYPE_DECL
, NULL_TREE
,
2960 widest_unsigned_literal_type_node
));
2962 build_common_tree_nodes_2 (flag_short_double
);
2964 pushdecl (build_decl (TYPE_DECL
, ridpointers
[(int) RID_FLOAT
],
2966 pushdecl (build_decl (TYPE_DECL
, ridpointers
[(int) RID_DOUBLE
],
2968 pushdecl (build_decl (TYPE_DECL
, get_identifier ("long double"),
2969 long_double_type_node
));
2970 pushdecl (build_decl (TYPE_DECL
, get_identifier ("complex int"),
2971 complex_integer_type_node
));
2972 pushdecl (build_decl (TYPE_DECL
, get_identifier ("complex float"),
2973 complex_float_type_node
));
2974 pushdecl (build_decl (TYPE_DECL
, get_identifier ("complex double"),
2975 complex_double_type_node
));
2976 pushdecl (build_decl (TYPE_DECL
, get_identifier ("complex long double"),
2977 complex_long_double_type_node
));
2978 pushdecl (build_decl (TYPE_DECL
,
2979 ridpointers
[(int) RID_VOID
], void_type_node
));
2981 #ifdef MD_INIT_BUILTINS
2985 wchar_type_node
= get_identifier (flag_short_wchar
2986 ? "short unsigned int"
2988 wchar_type_node
= TREE_TYPE (IDENTIFIER_GLOBAL_VALUE (wchar_type_node
));
2989 wchar_type_size
= TYPE_PRECISION (wchar_type_node
);
2990 signed_wchar_type_node
= signed_type (wchar_type_node
);
2991 unsigned_wchar_type_node
= unsigned_type (wchar_type_node
);
2993 boolean_type_node
= integer_type_node
;
2994 boolean_true_node
= integer_one_node
;
2995 boolean_false_node
= integer_zero_node
;
2997 string_type_node
= build_pointer_type (char_type_node
);
2998 const_string_type_node
2999 = build_pointer_type (build_type_variant (char_type_node
, 1, 0));
3001 /* Make a type to be the domain of a few array types
3002 whose domains don't really matter.
3003 200 is small enough that it always fits in size_t
3004 and large enough that it can hold most function names for the
3005 initializations of __FUNCTION__ and __PRETTY_FUNCTION__. */
3006 array_domain_type
= build_index_type (build_int_2 (200, 0));
3008 /* make a type for arrays of characters.
3009 With luck nothing will ever really depend on the length of this
3011 char_array_type_node
3012 = build_array_type (char_type_node
, array_domain_type
);
3013 /* Likewise for arrays of ints. */
3015 = build_array_type (integer_type_node
, array_domain_type
);
3016 /* This is for wide string constants. */
3017 wchar_array_type_node
3018 = build_array_type (wchar_type_node
, array_domain_type
);
3020 void_list_node
= tree_cons (NULL_TREE
, void_type_node
, NULL_TREE
);
3022 default_function_type
3023 = build_function_type (integer_type_node
, NULL_TREE
);
3025 = TREE_TYPE (IDENTIFIER_GLOBAL_VALUE (get_identifier (PTRDIFF_TYPE
)));
3027 c_common_nodes_and_builtins (0, flag_no_builtin
, flag_no_nonansi_builtin
);
3029 endlink
= void_list_node
;
3030 ptr_ftype_void
= build_function_type (ptr_type_node
, endlink
);
3032 = build_function_type (ptr_type_node
,
3033 tree_cons (NULL_TREE
, ptr_type_node
, endlink
));
3035 builtin_function ("__builtin_aggregate_incoming_address",
3036 build_function_type (ptr_type_node
, NULL_TREE
),
3037 BUILT_IN_AGGREGATE_INCOMING_ADDRESS
,
3038 BUILT_IN_NORMAL
, NULL_PTR
);
3040 /* Hooks for the DWARF 2 __throw routine. */
3041 builtin_function ("__builtin_unwind_init",
3042 build_function_type (void_type_node
, endlink
),
3043 BUILT_IN_UNWIND_INIT
, BUILT_IN_NORMAL
, NULL_PTR
);
3044 builtin_function ("__builtin_dwarf_cfa", ptr_ftype_void
,
3045 BUILT_IN_DWARF_CFA
, BUILT_IN_NORMAL
, NULL_PTR
);
3046 builtin_function ("__builtin_dwarf_fp_regnum",
3047 build_function_type (unsigned_type_node
, endlink
),
3048 BUILT_IN_DWARF_FP_REGNUM
, BUILT_IN_NORMAL
, NULL_PTR
);
3049 builtin_function ("__builtin_init_dwarf_reg_size_table", void_ftype_ptr
,
3050 BUILT_IN_INIT_DWARF_REG_SIZES
, BUILT_IN_NORMAL
, NULL_PTR
);
3051 builtin_function ("__builtin_frob_return_addr", ptr_ftype_ptr
,
3052 BUILT_IN_FROB_RETURN_ADDR
, BUILT_IN_NORMAL
, NULL_PTR
);
3053 builtin_function ("__builtin_extract_return_addr", ptr_ftype_ptr
,
3054 BUILT_IN_EXTRACT_RETURN_ADDR
, BUILT_IN_NORMAL
, NULL_PTR
);
3056 ("__builtin_eh_return",
3057 build_function_type (void_type_node
,
3058 tree_cons (NULL_TREE
, ptr_type_node
,
3059 tree_cons (NULL_TREE
,
3060 type_for_mode (ptr_mode
, 0),
3061 tree_cons (NULL_TREE
,
3064 BUILT_IN_EH_RETURN
, BUILT_IN_NORMAL
, NULL_PTR
);
3066 pedantic_lvalues
= pedantic
;
3068 /* Create the global bindings for __FUNCTION__ and __PRETTY_FUNCTION__. */
3069 make_fname_decl
= c_make_fname_decl
;
3070 declare_function_name ();
3072 start_identifier_warnings ();
3074 /* Prepare to check format strings against argument lists. */
3075 init_function_format_info ();
3079 incomplete_decl_finalize_hook
= finish_incomplete_decl
;
3081 lang_get_alias_set
= c_get_alias_set
;
3083 /* Record our roots. */
3085 ggc_add_tree_root (c_global_trees
, CTI_MAX
);
3086 ggc_add_tree_root (&named_labels
, 1);
3087 ggc_add_tree_root (&shadowed_labels
, 1);
3088 ggc_add_root (¤t_binding_level
, 1, sizeof current_binding_level
,
3089 mark_binding_level
);
3090 ggc_add_root (&label_level_chain
, 1, sizeof label_level_chain
,
3091 mark_binding_level
);
3092 ggc_add_tree_root (&static_ctors
, 1);
3093 ggc_add_tree_root (&static_dtors
, 1);
3096 /* Create the VAR_DECL for __FUNCTION__ etc. ID is the name to give the
3097 decl, NAME is the initialization string and TYPE_DEP indicates whether
3098 NAME depended on the type of the function. As we don't yet implement
3099 delayed emission of static data, we mark the decl as emitted
3100 so it is not placed in the output. Anything using it must therefore pull
3101 out the STRING_CST initializer directly. This does mean that these names
3102 are string merging candidates, which C99 does not permit. */
3105 c_make_fname_decl (id
, name
, type_dep
)
3108 int type_dep ATTRIBUTE_UNUSED
;
3110 tree decl
, type
, init
;
3111 size_t length
= strlen (name
);
3113 type
= build_array_type
3114 (build_qualified_type (char_type_node
, TYPE_QUAL_CONST
),
3115 build_index_type (build_int_2 (length
, 0)));
3117 decl
= build_decl (VAR_DECL
, id
, type
);
3118 TREE_STATIC (decl
) = 1;
3119 TREE_READONLY (decl
) = 1;
3120 TREE_ASM_WRITTEN (decl
) = 1;
3121 DECL_SOURCE_LINE (decl
) = 0;
3122 DECL_ARTIFICIAL (decl
) = 1;
3123 DECL_IN_SYSTEM_HEADER (decl
) = 1;
3124 DECL_IGNORED_P (decl
) = 1;
3125 init
= build_string (length
+ 1, name
);
3126 TREE_TYPE (init
) = type
;
3127 DECL_INITIAL (decl
) = init
;
3128 finish_decl (pushdecl (decl
), init
, NULL_TREE
);
3133 /* Return a definition for a builtin function named NAME and whose data type
3134 is TYPE. TYPE should be a function type with argument types.
3135 FUNCTION_CODE tells later passes how to compile calls to this function.
3136 See tree.h for its possible values.
3138 If LIBRARY_NAME is nonzero, use that for DECL_ASSEMBLER_NAME,
3139 the name to be called if we can't opencode the function. */
3142 builtin_function (name
, type
, function_code
, class, library_name
)
3146 enum built_in_class
class;
3147 const char *library_name
;
3149 tree decl
= build_decl (FUNCTION_DECL
, get_identifier (name
), type
);
3150 DECL_EXTERNAL (decl
) = 1;
3151 TREE_PUBLIC (decl
) = 1;
3152 /* If -traditional, permit redefining a builtin function any way you like.
3153 (Though really, if the program redefines these functions,
3154 it probably won't work right unless compiled with -fno-builtin.) */
3155 if (flag_traditional
&& name
[0] != '_')
3156 DECL_BUILT_IN_NONANSI (decl
) = 1;
3158 DECL_ASSEMBLER_NAME (decl
) = get_identifier (library_name
);
3159 make_decl_rtl (decl
, NULL_PTR
, 1);
3161 DECL_BUILT_IN_CLASS (decl
) = class;
3162 DECL_FUNCTION_CODE (decl
) = function_code
;
3164 /* Warn if a function in the namespace for users
3165 is used without an occasion to consider it declared. */
3166 if (name
[0] != '_' || name
[1] != '_')
3167 C_DECL_ANTICIPATED (decl
) = 1;
3172 /* Called when a declaration is seen that contains no names to declare.
3173 If its type is a reference to a structure, union or enum inherited
3174 from a containing scope, shadow that tag name for the current scope
3175 with a forward reference.
3176 If its type defines a new named structure or union
3177 or defines an enum, it is valid but we need not do anything here.
3178 Otherwise, it is an error. */
3181 shadow_tag (declspecs
)
3184 shadow_tag_warned (declspecs
, 0);
3188 shadow_tag_warned (declspecs
, warned
)
3191 /* 1 => we have done a pedwarn. 2 => we have done a warning, but
3198 pending_invalid_xref
= 0;
3200 /* Remove the attributes from declspecs, since they will confuse the
3202 split_specs_attrs (declspecs
, &specs
, &attrs
);
3204 for (link
= specs
; link
; link
= TREE_CHAIN (link
))
3206 register tree value
= TREE_VALUE (link
);
3207 register enum tree_code code
= TREE_CODE (value
);
3209 if (code
== RECORD_TYPE
|| code
== UNION_TYPE
|| code
== ENUMERAL_TYPE
)
3210 /* Used to test also that TYPE_SIZE (value) != 0.
3211 That caused warning for `struct foo;' at top level in the file. */
3213 register tree name
= lookup_tag_reverse (value
);
3220 if (warned
!= 1 && code
!= ENUMERAL_TYPE
)
3221 /* Empty unnamed enum OK */
3223 pedwarn ("unnamed struct/union that defines no instances");
3229 t
= lookup_tag (code
, name
, current_binding_level
, 1);
3233 t
= make_node (code
);
3240 if (!warned
&& ! in_system_header
)
3242 warning ("useless keyword or type name in empty declaration");
3249 error ("two types specified in one empty declaration");
3254 pedwarn ("empty declaration");
3258 /* Decode a "typename", such as "int **", returning a ..._TYPE node. */
3261 groktypename (typename
)
3264 if (TREE_CODE (typename
) != TREE_LIST
)
3266 return grokdeclarator (TREE_VALUE (typename
),
3267 TREE_PURPOSE (typename
),
3271 /* Return a PARM_DECL node for a given pair of specs and declarator. */
3274 groktypename_in_parm_context (typename
)
3277 if (TREE_CODE (typename
) != TREE_LIST
)
3279 return grokdeclarator (TREE_VALUE (typename
),
3280 TREE_PURPOSE (typename
),
3284 /* Decode a declarator in an ordinary declaration or data definition.
3285 This is called as soon as the type information and variable name
3286 have been parsed, before parsing the initializer if any.
3287 Here we create the ..._DECL node, fill in its type,
3288 and put it on the list of decls for the current context.
3289 The ..._DECL node is returned as the value.
3291 Exception: for arrays where the length is not specified,
3292 the type is left null, to be filled in by `finish_decl'.
3294 Function definitions do not come here; they go to start_function
3295 instead. However, external and forward declarations of functions
3296 do go through here. Structure field declarations are done by
3297 grokfield and not through here. */
3300 start_decl (declarator
, declspecs
, initialized
, attributes
, prefix_attributes
)
3301 tree declarator
, declspecs
;
3303 tree attributes
, prefix_attributes
;
3305 register tree decl
= grokdeclarator (declarator
, declspecs
,
3306 NORMAL
, initialized
);
3309 if (warn_main
> 0 && TREE_CODE (decl
) != FUNCTION_DECL
3310 && !strcmp (IDENTIFIER_POINTER (DECL_NAME (decl
)), "main"))
3311 warning_with_decl (decl
, "`%s' is usually a function");
3314 /* Is it valid for this decl to have an initializer at all?
3315 If not, set INITIALIZED to zero, which will indirectly
3316 tell `finish_decl' to ignore the initializer once it is parsed. */
3317 switch (TREE_CODE (decl
))
3320 /* typedef foo = bar means give foo the same type as bar.
3321 We haven't parsed bar yet, so `finish_decl' will fix that up.
3322 Any other case of an initialization in a TYPE_DECL is an error. */
3323 if (pedantic
|| list_length (declspecs
) > 1)
3325 error ("typedef `%s' is initialized",
3326 IDENTIFIER_POINTER (DECL_NAME (decl
)));
3332 error ("function `%s' is initialized like a variable",
3333 IDENTIFIER_POINTER (DECL_NAME (decl
)));
3338 /* DECL_INITIAL in a PARM_DECL is really DECL_ARG_TYPE. */
3339 error ("parameter `%s' is initialized",
3340 IDENTIFIER_POINTER (DECL_NAME (decl
)));
3345 /* Don't allow initializations for incomplete types
3346 except for arrays which might be completed by the initialization. */
3347 if (COMPLETE_TYPE_P (TREE_TYPE (decl
)))
3349 /* A complete type is ok if size is fixed. */
3351 if (TREE_CODE (TYPE_SIZE (TREE_TYPE (decl
))) != INTEGER_CST
3352 || C_DECL_VARIABLE_SIZE (decl
))
3354 error ("variable-sized object may not be initialized");
3358 else if (TREE_CODE (TREE_TYPE (decl
)) != ARRAY_TYPE
)
3360 error ("variable `%s' has initializer but incomplete type",
3361 IDENTIFIER_POINTER (DECL_NAME (decl
)));
3364 else if (!COMPLETE_TYPE_P (TREE_TYPE (TREE_TYPE (decl
))))
3366 error ("elements of array `%s' have incomplete type",
3367 IDENTIFIER_POINTER (DECL_NAME (decl
)));
3374 #if 0 /* Seems redundant with grokdeclarator. */
3375 if (current_binding_level
!= global_binding_level
3376 && DECL_EXTERNAL (decl
)
3377 && TREE_CODE (decl
) != FUNCTION_DECL
)
3378 warning ("declaration of `%s' has `extern' and is initialized",
3379 IDENTIFIER_POINTER (DECL_NAME (decl
)));
3381 DECL_EXTERNAL (decl
) = 0;
3382 if (current_binding_level
== global_binding_level
)
3383 TREE_STATIC (decl
) = 1;
3385 /* Tell `pushdecl' this is an initialized decl
3386 even though we don't yet have the initializer expression.
3387 Also tell `finish_decl' it may store the real initializer. */
3388 DECL_INITIAL (decl
) = error_mark_node
;
3391 /* If this is a function declaration, write a record describing it to the
3392 prototypes file (if requested). */
3394 if (TREE_CODE (decl
) == FUNCTION_DECL
)
3395 gen_aux_info_record (decl
, 0, 0, TYPE_ARG_TYPES (TREE_TYPE (decl
)) != 0);
3397 /* ANSI specifies that a tentative definition which is not merged with
3398 a non-tentative definition behaves exactly like a definition with an
3399 initializer equal to zero. (Section 3.7.2)
3400 -fno-common gives strict ANSI behavior. Usually you don't want it.
3401 This matters only for variables with external linkage. */
3402 if (! flag_no_common
|| ! TREE_PUBLIC (decl
))
3403 DECL_COMMON (decl
) = 1;
3405 #ifdef SET_DEFAULT_DECL_ATTRIBUTES
3406 SET_DEFAULT_DECL_ATTRIBUTES (decl
, attributes
);
3409 /* Set attributes here so if duplicate decl, will have proper attributes. */
3410 decl_attributes (decl
, attributes
, prefix_attributes
);
3412 /* Add this decl to the current binding level.
3413 TEM may equal DECL or it may be a previous decl of the same name. */
3414 tem
= pushdecl (decl
);
3416 /* For a local variable, define the RTL now. */
3417 if (current_binding_level
!= global_binding_level
3418 /* But not if this is a duplicate decl
3419 and we preserved the rtl from the previous one
3420 (which may or may not happen). */
3421 && DECL_RTL (tem
) == 0)
3423 if (COMPLETE_TYPE_P (TREE_TYPE (tem
)))
3425 else if (TREE_CODE (TREE_TYPE (tem
)) == ARRAY_TYPE
3426 && DECL_INITIAL (tem
) != 0)
3433 /* Finish processing of a declaration;
3434 install its initial value.
3435 If the length of an array type is not known before,
3436 it must be determined now, from the initial value, or it is an error. */
3439 finish_decl (decl
, init
, asmspec_tree
)
3443 register tree type
= TREE_TYPE (decl
);
3444 int was_incomplete
= (DECL_SIZE (decl
) == 0);
3447 /* If a name was specified, get the string. */
3449 asmspec
= TREE_STRING_POINTER (asmspec_tree
);
3451 /* If `start_decl' didn't like having an initialization, ignore it now. */
3453 if (init
!= 0 && DECL_INITIAL (decl
) == 0)
3455 /* Don't crash if parm is initialized. */
3456 if (TREE_CODE (decl
) == PARM_DECL
)
3459 if (ITERATOR_P (decl
))
3462 error_with_decl (decl
, "iterator has no initial value");
3464 init
= save_expr (init
);
3469 if (TREE_CODE (decl
) != TYPE_DECL
)
3470 store_init_value (decl
, init
);
3473 /* typedef foo = bar; store the type of bar as the type of foo. */
3474 TREE_TYPE (decl
) = TREE_TYPE (init
);
3475 DECL_INITIAL (decl
) = init
= 0;
3479 /* Deduce size of array from initialization, if not already known */
3481 if (TREE_CODE (type
) == ARRAY_TYPE
3482 && TYPE_DOMAIN (type
) == 0
3483 && TREE_CODE (decl
) != TYPE_DECL
)
3486 = (TREE_STATIC (decl
)
3487 /* Even if pedantic, an external linkage array
3488 may have incomplete type at first. */
3489 ? pedantic
&& !TREE_PUBLIC (decl
)
3490 : !DECL_EXTERNAL (decl
));
3492 = complete_array_type (type
, DECL_INITIAL (decl
), do_default
);
3494 /* Get the completed type made by complete_array_type. */
3495 type
= TREE_TYPE (decl
);
3498 error_with_decl (decl
, "initializer fails to determine size of `%s'");
3503 error_with_decl (decl
, "array size missing in `%s'");
3504 /* If a `static' var's size isn't known,
3505 make it extern as well as static, so it does not get
3507 If it is not `static', then do not mark extern;
3508 finish_incomplete_decl will give it a default size
3509 and it will get allocated. */
3510 else if (!pedantic
&& TREE_STATIC (decl
) && ! TREE_PUBLIC (decl
))
3511 DECL_EXTERNAL (decl
) = 1;
3514 /* TYPE_MAX_VALUE is always one less than the number of elements
3515 in the array, because we start counting at zero. Therefore,
3516 warn only if the value is less than zero. */
3517 if (pedantic
&& TYPE_DOMAIN (type
) != 0
3518 && tree_int_cst_sgn (TYPE_MAX_VALUE (TYPE_DOMAIN (type
))) < 0)
3519 error_with_decl (decl
, "zero or negative size array `%s'");
3521 layout_decl (decl
, 0);
3524 if (TREE_CODE (decl
) == VAR_DECL
)
3526 if (DECL_SIZE (decl
) == 0 && COMPLETE_TYPE_P (TREE_TYPE (decl
)))
3527 layout_decl (decl
, 0);
3529 if (DECL_SIZE (decl
) == 0
3530 && (TREE_STATIC (decl
)
3532 /* A static variable with an incomplete type
3533 is an error if it is initialized.
3534 Also if it is not file scope.
3535 Otherwise, let it through, but if it is not `extern'
3536 then it may cause an error message later. */
3537 /* A duplicate_decls call could have changed an extern
3538 declaration into a file scope one. This can be detected
3539 by TREE_ASM_WRITTEN being set. */
3540 (DECL_INITIAL (decl
) != 0
3541 || (DECL_CONTEXT (decl
) != 0 && ! TREE_ASM_WRITTEN (decl
)))
3543 /* An automatic variable with an incomplete type
3545 !DECL_EXTERNAL (decl
)))
3547 error_with_decl (decl
, "storage size of `%s' isn't known");
3548 TREE_TYPE (decl
) = error_mark_node
;
3551 if ((DECL_EXTERNAL (decl
) || TREE_STATIC (decl
))
3552 && DECL_SIZE (decl
) != 0)
3554 if (TREE_CODE (DECL_SIZE (decl
)) == INTEGER_CST
)
3555 constant_expression_warning (DECL_SIZE (decl
));
3557 error_with_decl (decl
, "storage size of `%s' isn't constant");
3560 if (TREE_USED (type
))
3561 TREE_USED (decl
) = 1;
3564 /* If this is a function and an assembler name is specified, it isn't
3565 builtin any more. Also reset DECL_RTL so we can give it its new
3567 if (TREE_CODE (decl
) == FUNCTION_DECL
&& asmspec
)
3569 DECL_BUILT_IN_CLASS (decl
) = NOT_BUILT_IN
;
3570 DECL_RTL (decl
) = 0;
3571 DECL_ASSEMBLER_NAME (decl
) = get_identifier (asmspec
);
3574 /* Output the assembler code and/or RTL code for variables and functions,
3575 unless the type is an undefined structure or union.
3576 If not, it will get done when the type is completed. */
3578 if (TREE_CODE (decl
) == VAR_DECL
|| TREE_CODE (decl
) == FUNCTION_DECL
)
3580 /* This is a no-op in c-lang.c or something real in objc-actions.c. */
3581 maybe_objc_check_decl (decl
);
3582 rest_of_decl_compilation (decl
, asmspec
,
3583 (DECL_CONTEXT (decl
) == 0
3584 || TREE_ASM_WRITTEN (decl
)), 0);
3586 if (DECL_CONTEXT (decl
) != 0)
3588 /* Recompute the RTL of a local array now
3589 if it used to be an incomplete type. */
3591 && ! TREE_STATIC (decl
) && ! DECL_EXTERNAL (decl
))
3593 /* If we used it already as memory, it must stay in memory. */
3594 TREE_ADDRESSABLE (decl
) = TREE_USED (decl
);
3595 /* If it's still incomplete now, no init will save it. */
3596 if (DECL_SIZE (decl
) == 0)
3597 DECL_INITIAL (decl
) = 0;
3600 /* Compute and store the initial value. */
3601 if (TREE_CODE (decl
) != FUNCTION_DECL
)
3602 expand_decl_init (decl
);
3606 if (TREE_CODE (decl
) == TYPE_DECL
)
3608 /* This is a no-op in c-lang.c or something real in objc-actions.c. */
3609 maybe_objc_check_decl (decl
);
3610 rest_of_decl_compilation (decl
, NULL_PTR
, DECL_CONTEXT (decl
) == 0, 0);
3613 /* At the end of a declaration, throw away any variable type sizes
3614 of types defined inside that declaration. There is no use
3615 computing them in the following function definition. */
3616 if (current_binding_level
== global_binding_level
)
3617 get_pending_sizes ();
3620 /* If DECL has a cleanup, build and return that cleanup here.
3621 This is a callback called by expand_expr. */
3624 maybe_build_cleanup (decl
)
3625 tree decl ATTRIBUTE_UNUSED
;
3627 /* There are no cleanups in C. */
3631 /* Given a parsed parameter declaration,
3632 decode it into a PARM_DECL and push that on the current binding level.
3633 Also, for the sake of forward parm decls,
3634 record the given order of parms in `parm_order'. */
3637 push_parm_decl (parm
)
3641 int old_immediate_size_expand
= immediate_size_expand
;
3642 /* Don't try computing parm sizes now -- wait till fn is called. */
3643 immediate_size_expand
= 0;
3645 decl
= grokdeclarator (TREE_VALUE (TREE_PURPOSE (parm
)),
3646 TREE_PURPOSE (TREE_PURPOSE (parm
)), PARM
, 0);
3647 decl_attributes (decl
, TREE_VALUE (TREE_VALUE (parm
)),
3648 TREE_PURPOSE (TREE_VALUE (parm
)));
3651 if (DECL_NAME (decl
))
3654 olddecl
= lookup_name (DECL_NAME (decl
));
3655 if (pedantic
&& olddecl
!= 0 && TREE_CODE (olddecl
) == TYPE_DECL
)
3656 pedwarn_with_decl (decl
, "ANSI C forbids parameter `%s' shadowing typedef");
3660 decl
= pushdecl (decl
);
3662 immediate_size_expand
= old_immediate_size_expand
;
3664 current_binding_level
->parm_order
3665 = tree_cons (NULL_TREE
, decl
, current_binding_level
->parm_order
);
3667 /* Add this decl to the current binding level. */
3668 finish_decl (decl
, NULL_TREE
, NULL_TREE
);
3671 /* Clear the given order of parms in `parm_order'.
3672 Used at start of parm list,
3673 and also at semicolon terminating forward decls. */
3678 current_binding_level
->parm_order
= NULL_TREE
;
3681 /* Make TYPE a complete type based on INITIAL_VALUE.
3682 Return 0 if successful, 1 if INITIAL_VALUE can't be deciphered,
3683 2 if there was no information (in which case assume 1 if DO_DEFAULT). */
3686 complete_array_type (type
, initial_value
, do_default
)
3691 register tree maxindex
= NULL_TREE
;
3696 /* Note MAXINDEX is really the maximum index,
3697 one less than the size. */
3698 if (TREE_CODE (initial_value
) == STRING_CST
)
3701 = int_size_in_bytes (TREE_TYPE (TREE_TYPE (initial_value
)));
3702 maxindex
= build_int_2 ((TREE_STRING_LENGTH (initial_value
)
3705 else if (TREE_CODE (initial_value
) == CONSTRUCTOR
)
3707 tree elts
= CONSTRUCTOR_ELTS (initial_value
);
3708 maxindex
= build_int_2 (-1, -1);
3709 for (; elts
; elts
= TREE_CHAIN (elts
))
3711 if (TREE_PURPOSE (elts
))
3712 maxindex
= TREE_PURPOSE (elts
);
3714 maxindex
= fold (build (PLUS_EXPR
, integer_type_node
,
3715 maxindex
, integer_one_node
));
3717 maxindex
= copy_node (maxindex
);
3721 /* Make an error message unless that happened already. */
3722 if (initial_value
!= error_mark_node
)
3725 /* Prevent further error messages. */
3726 maxindex
= build_int_2 (0, 0);
3733 maxindex
= build_int_2 (0, 0);
3739 TYPE_DOMAIN (type
) = build_index_type (maxindex
);
3740 if (!TREE_TYPE (maxindex
))
3741 TREE_TYPE (maxindex
) = TYPE_DOMAIN (type
);
3744 /* Lay out the type now that we can get the real answer. */
3751 /* Given declspecs and a declarator,
3752 determine the name and type of the object declared
3753 and construct a ..._DECL node for it.
3754 (In one case we can return a ..._TYPE node instead.
3755 For invalid input we sometimes return 0.)
3757 DECLSPECS is a chain of tree_list nodes whose value fields
3758 are the storage classes and type specifiers.
3760 DECL_CONTEXT says which syntactic context this declaration is in:
3761 NORMAL for most contexts. Make a VAR_DECL or FUNCTION_DECL or TYPE_DECL.
3762 FUNCDEF for a function definition. Like NORMAL but a few different
3763 error messages in each case. Return value may be zero meaning
3764 this definition is too screwy to try to parse.
3765 PARM for a parameter declaration (either within a function prototype
3766 or before a function body). Make a PARM_DECL, or return void_type_node.
3767 TYPENAME if for a typename (in a cast or sizeof).
3768 Don't make a DECL node; just return the ..._TYPE node.
3769 FIELD for a struct or union field; make a FIELD_DECL.
3770 BITFIELD for a field with specified width.
3771 INITIALIZED is 1 if the decl has an initializer.
3773 In the TYPENAME case, DECLARATOR is really an absolute declarator.
3774 It may also be so in the PARM case, for a prototype where the
3775 argument type is specified but not the name.
3777 This function is where the complicated C meanings of `static'
3778 and `extern' are interpreted. */
3781 grokdeclarator (declarator
, declspecs
, decl_context
, initialized
)
3784 enum decl_context decl_context
;
3789 tree type
= NULL_TREE
;
3794 int type_quals
= TYPE_UNQUALIFIED
;
3796 int explicit_int
= 0;
3797 int explicit_char
= 0;
3798 int defaulted_int
= 0;
3799 tree typedef_decl
= 0;
3801 tree typedef_type
= 0;
3802 int funcdef_flag
= 0;
3803 enum tree_code innermost_code
= ERROR_MARK
;
3805 int size_varies
= 0;
3806 tree decl_machine_attr
= NULL_TREE
;
3808 if (decl_context
== BITFIELD
)
3809 bitfield
= 1, decl_context
= FIELD
;
3811 if (decl_context
== FUNCDEF
)
3812 funcdef_flag
= 1, decl_context
= NORMAL
;
3814 /* Look inside a declarator for the name being declared
3815 and get it as a string, for an error message. */
3817 register tree decl
= declarator
;
3821 switch (TREE_CODE (decl
))
3826 innermost_code
= TREE_CODE (decl
);
3827 decl
= TREE_OPERAND (decl
, 0);
3830 case IDENTIFIER_NODE
:
3831 name
= IDENTIFIER_POINTER (decl
);
3842 /* A function definition's declarator must have the form of
3843 a function declarator. */
3845 if (funcdef_flag
&& innermost_code
!= CALL_EXPR
)
3848 /* Anything declared one level down from the top level
3849 must be one of the parameters of a function
3850 (because the body is at least two levels down). */
3852 /* If this looks like a function definition, make it one,
3853 even if it occurs where parms are expected.
3854 Then store_parm_decls will reject it and not use it as a parm. */
3855 if (decl_context
== NORMAL
&& !funcdef_flag
3856 && current_binding_level
->parm_flag
)
3857 decl_context
= PARM
;
3859 /* Look through the decl specs and record which ones appear.
3860 Some typespecs are defined as built-in typenames.
3861 Others, the ones that are modifiers of other types,
3862 are represented by bits in SPECBITS: set the bits for
3863 the modifiers that appear. Storage class keywords are also in SPECBITS.
3865 If there is a typedef name or a type, store the type in TYPE.
3866 This includes builtin typedefs such as `int'.
3868 Set EXPLICIT_INT or EXPLICIT_CHAR if the type is `int' or `char'
3869 and did not come from a user typedef.
3871 Set LONGLONG if `long' is mentioned twice. */
3873 for (spec
= declspecs
; spec
; spec
= TREE_CHAIN (spec
))
3876 register tree id
= TREE_VALUE (spec
);
3878 if (id
== ridpointers
[(int) RID_INT
])
3880 if (id
== ridpointers
[(int) RID_CHAR
])
3883 if (TREE_CODE (id
) == IDENTIFIER_NODE
)
3884 for (i
= (int) RID_FIRST_MODIFIER
; i
< (int) RID_MAX
; i
++)
3886 if (ridpointers
[i
] == id
)
3888 if (i
== (int) RID_LONG
&& specbits
& (1<<i
))
3891 error ("`long long long' is too long for GCC");
3894 if (pedantic
&& ! in_system_header
&& warn_long_long
)
3895 pedwarn ("ANSI C does not support `long long'");
3899 else if (specbits
& (1 << i
))
3900 pedwarn ("duplicate `%s'", IDENTIFIER_POINTER (id
));
3906 error ("two or more data types in declaration of `%s'", name
);
3907 /* Actual typedefs come to us as TYPE_DECL nodes. */
3908 else if (TREE_CODE (id
) == TYPE_DECL
)
3910 type
= TREE_TYPE (id
);
3911 decl_machine_attr
= DECL_MACHINE_ATTRIBUTES (id
);
3914 /* Built-in types come as identifiers. */
3915 else if (TREE_CODE (id
) == IDENTIFIER_NODE
)
3917 register tree t
= lookup_name (id
);
3918 if (TREE_TYPE (t
) == error_mark_node
)
3920 else if (!t
|| TREE_CODE (t
) != TYPE_DECL
)
3921 error ("`%s' fails to be a typedef or built in type",
3922 IDENTIFIER_POINTER (id
));
3925 type
= TREE_TYPE (t
);
3929 else if (TREE_CODE (id
) != ERROR_MARK
)
3935 typedef_type
= type
;
3937 size_varies
= C_TYPE_VARIABLE_SIZE (type
);
3939 /* No type at all: default to `int', and set DEFAULTED_INT
3940 because it was not a user-defined typedef. */
3944 if ((! (specbits
& ((1 << (int) RID_LONG
) | (1 << (int) RID_SHORT
)
3945 | (1 << (int) RID_SIGNED
)
3946 | (1 << (int) RID_UNSIGNED
))))
3947 /* Don't warn about typedef foo = bar. */
3948 && ! (specbits
& (1 << (int) RID_TYPEDEF
) && initialized
)
3949 && ! in_system_header
)
3951 /* Issue a warning if this is an ISO C 99 program or if -Wreturn-type
3952 and this is a function, or if -Wimplicit; prefer the former
3953 warning since it is more explicit. */
3954 if ((warn_implicit_int
|| warn_return_type
) && funcdef_flag
)
3955 warn_about_return_type
= 1;
3956 else if (warn_implicit_int
|| flag_isoc99
)
3957 warning ("type defaults to `int' in declaration of `%s'", name
);
3961 type
= integer_type_node
;
3964 /* Now process the modifiers that were specified
3965 and check for invalid combinations. */
3967 /* Long double is a special combination. */
3969 if ((specbits
& 1 << (int) RID_LONG
) && ! longlong
3970 && TYPE_MAIN_VARIANT (type
) == double_type_node
)
3972 specbits
&= ~ (1 << (int) RID_LONG
);
3973 type
= long_double_type_node
;
3976 /* Check all other uses of type modifiers. */
3978 if (specbits
& ((1 << (int) RID_LONG
) | (1 << (int) RID_SHORT
)
3979 | (1 << (int) RID_UNSIGNED
) | (1 << (int) RID_SIGNED
)))
3983 if ((specbits
& 1 << (int) RID_LONG
)
3984 && (specbits
& 1 << (int) RID_SHORT
))
3985 error ("both long and short specified for `%s'", name
);
3986 else if (((specbits
& 1 << (int) RID_LONG
)
3987 || (specbits
& 1 << (int) RID_SHORT
))
3989 error ("long or short specified with char for `%s'", name
);
3990 else if (((specbits
& 1 << (int) RID_LONG
)
3991 || (specbits
& 1 << (int) RID_SHORT
))
3992 && TREE_CODE (type
) == REAL_TYPE
)
3994 static int already
= 0;
3996 error ("long or short specified with floating type for `%s'", name
);
3997 if (! already
&& ! pedantic
)
3999 error ("the only valid combination is `long double'");
4003 else if ((specbits
& 1 << (int) RID_SIGNED
)
4004 && (specbits
& 1 << (int) RID_UNSIGNED
))
4005 error ("both signed and unsigned specified for `%s'", name
);
4006 else if (TREE_CODE (type
) != INTEGER_TYPE
)
4007 error ("long, short, signed or unsigned invalid for `%s'", name
);
4011 if (!explicit_int
&& !defaulted_int
&& !explicit_char
&& pedantic
)
4013 pedwarn ("long, short, signed or unsigned used invalidly for `%s'",
4015 if (flag_pedantic_errors
)
4020 /* Discard the type modifiers if they are invalid. */
4023 specbits
&= ~((1 << (int) RID_LONG
) | (1 << (int) RID_SHORT
)
4024 | (1 << (int) RID_UNSIGNED
) | (1 << (int) RID_SIGNED
));
4029 if ((specbits
& (1 << (int) RID_COMPLEX
))
4030 && TREE_CODE (type
) != INTEGER_TYPE
&& TREE_CODE (type
) != REAL_TYPE
)
4032 error ("complex invalid for `%s'", name
);
4033 specbits
&= ~ (1 << (int) RID_COMPLEX
);
4036 /* Decide whether an integer type is signed or not.
4037 Optionally treat bitfields as signed by default. */
4038 if (specbits
& 1 << (int) RID_UNSIGNED
4039 /* Traditionally, all bitfields are unsigned. */
4040 || (bitfield
&& flag_traditional
4041 && (! explicit_flag_signed_bitfields
|| !flag_signed_bitfields
))
4042 || (bitfield
&& ! flag_signed_bitfields
4043 && (explicit_int
|| defaulted_int
|| explicit_char
4044 /* A typedef for plain `int' without `signed'
4045 can be controlled just like plain `int'. */
4046 || ! (typedef_decl
!= 0
4047 && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl
)))
4048 && TREE_CODE (type
) != ENUMERAL_TYPE
4049 && !(specbits
& 1 << (int) RID_SIGNED
)))
4052 type
= long_long_unsigned_type_node
;
4053 else if (specbits
& 1 << (int) RID_LONG
)
4054 type
= long_unsigned_type_node
;
4055 else if (specbits
& 1 << (int) RID_SHORT
)
4056 type
= short_unsigned_type_node
;
4057 else if (type
== char_type_node
)
4058 type
= unsigned_char_type_node
;
4059 else if (typedef_decl
)
4060 type
= unsigned_type (type
);
4062 type
= unsigned_type_node
;
4064 else if ((specbits
& 1 << (int) RID_SIGNED
)
4065 && type
== char_type_node
)
4066 type
= signed_char_type_node
;
4068 type
= long_long_integer_type_node
;
4069 else if (specbits
& 1 << (int) RID_LONG
)
4070 type
= long_integer_type_node
;
4071 else if (specbits
& 1 << (int) RID_SHORT
)
4072 type
= short_integer_type_node
;
4074 if (specbits
& 1 << (int) RID_COMPLEX
)
4076 /* If we just have "complex", it is equivalent to
4077 "complex double", but if any modifiers at all are specified it is
4078 the complex form of TYPE. E.g, "complex short" is
4079 "complex short int". */
4081 if (defaulted_int
&& ! longlong
4082 && ! (specbits
& ((1 << (int) RID_LONG
) | (1 << (int) RID_SHORT
)
4083 | (1 << (int) RID_SIGNED
)
4084 | (1 << (int) RID_UNSIGNED
))))
4085 type
= complex_double_type_node
;
4086 else if (type
== integer_type_node
)
4087 type
= complex_integer_type_node
;
4088 else if (type
== float_type_node
)
4089 type
= complex_float_type_node
;
4090 else if (type
== double_type_node
)
4091 type
= complex_double_type_node
;
4092 else if (type
== long_double_type_node
)
4093 type
= complex_long_double_type_node
;
4095 type
= build_complex_type (type
);
4098 /* Figure out the type qualifiers for the declaration. There are
4099 two ways a declaration can become qualified. One is something
4100 like `const int i' where the `const' is explicit. Another is
4101 something like `typedef const int CI; CI i' where the type of the
4102 declaration contains the `const'. */
4103 constp
= !! (specbits
& 1 << (int) RID_CONST
) + TYPE_READONLY (type
);
4104 restrictp
= !! (specbits
& 1 << (int) RID_RESTRICT
) + TYPE_RESTRICT (type
);
4105 volatilep
= !! (specbits
& 1 << (int) RID_VOLATILE
) + TYPE_VOLATILE (type
);
4106 inlinep
= !! (specbits
& (1 << (int) RID_INLINE
));
4108 pedwarn ("duplicate `const'");
4110 pedwarn ("duplicate `restrict'");
4112 pedwarn ("duplicate `volatile'");
4113 if (! flag_gen_aux_info
&& (TYPE_QUALS (type
)))
4114 type
= TYPE_MAIN_VARIANT (type
);
4115 type_quals
= ((constp
? TYPE_QUAL_CONST
: 0)
4116 | (restrictp
? TYPE_QUAL_RESTRICT
: 0)
4117 | (volatilep
? TYPE_QUAL_VOLATILE
: 0));
4119 /* Warn if two storage classes are given. Default to `auto'. */
4124 if (specbits
& 1 << (int) RID_AUTO
) nclasses
++;
4125 if (specbits
& 1 << (int) RID_STATIC
) nclasses
++;
4126 if (specbits
& 1 << (int) RID_EXTERN
) nclasses
++;
4127 if (specbits
& 1 << (int) RID_REGISTER
) nclasses
++;
4128 if (specbits
& 1 << (int) RID_TYPEDEF
) nclasses
++;
4129 if (specbits
& 1 << (int) RID_ITERATOR
) nclasses
++;
4131 /* Warn about storage classes that are invalid for certain
4132 kinds of declarations (parameters, typenames, etc.). */
4135 error ("multiple storage classes in declaration of `%s'", name
);
4136 else if (funcdef_flag
4138 & ((1 << (int) RID_REGISTER
)
4139 | (1 << (int) RID_AUTO
)
4140 | (1 << (int) RID_TYPEDEF
))))
4142 if (specbits
& 1 << (int) RID_AUTO
4143 && (pedantic
|| current_binding_level
== global_binding_level
))
4144 pedwarn ("function definition declared `auto'");
4145 if (specbits
& 1 << (int) RID_REGISTER
)
4146 error ("function definition declared `register'");
4147 if (specbits
& 1 << (int) RID_TYPEDEF
)
4148 error ("function definition declared `typedef'");
4149 specbits
&= ~ ((1 << (int) RID_TYPEDEF
) | (1 << (int) RID_REGISTER
)
4150 | (1 << (int) RID_AUTO
));
4152 else if (decl_context
!= NORMAL
&& nclasses
> 0)
4154 if (decl_context
== PARM
&& specbits
& 1 << (int) RID_REGISTER
)
4158 switch (decl_context
)
4161 error ("storage class specified for structure field `%s'", name
);
4164 error ("storage class specified for parameter `%s'", name
);
4167 error ("storage class specified for typename");
4170 specbits
&= ~ ((1 << (int) RID_TYPEDEF
) | (1 << (int) RID_REGISTER
)
4171 | (1 << (int) RID_AUTO
) | (1 << (int) RID_STATIC
)
4172 | (1 << (int) RID_EXTERN
));
4175 else if (specbits
& 1 << (int) RID_EXTERN
&& initialized
&& ! funcdef_flag
)
4177 /* `extern' with initialization is invalid if not at top level. */
4178 if (current_binding_level
== global_binding_level
)
4179 warning ("`%s' initialized and declared `extern'", name
);
4181 error ("`%s' has both `extern' and initializer", name
);
4183 else if (specbits
& 1 << (int) RID_EXTERN
&& funcdef_flag
4184 && current_binding_level
!= global_binding_level
)
4185 error ("nested function `%s' declared `extern'", name
);
4186 else if (current_binding_level
== global_binding_level
4187 && specbits
& (1 << (int) RID_AUTO
))
4188 error ("top-level declaration of `%s' specifies `auto'", name
);
4189 else if ((specbits
& 1 << (int) RID_ITERATOR
)
4190 && TREE_CODE (declarator
) != IDENTIFIER_NODE
)
4192 error ("iterator `%s' has derived type", name
);
4193 type
= error_mark_node
;
4195 else if ((specbits
& 1 << (int) RID_ITERATOR
)
4196 && TREE_CODE (type
) != INTEGER_TYPE
)
4198 error ("iterator `%s' has noninteger type", name
);
4199 type
= error_mark_node
;
4203 /* Now figure out the structure of the declarator proper.
4204 Descend through it, creating more complex types, until we reach
4205 the declared identifier (or NULL_TREE, in an absolute declarator). */
4207 while (declarator
&& TREE_CODE (declarator
) != IDENTIFIER_NODE
)
4209 if (type
== error_mark_node
)
4211 declarator
= TREE_OPERAND (declarator
, 0);
4215 /* Each level of DECLARATOR is either an ARRAY_REF (for ...[..]),
4216 an INDIRECT_REF (for *...),
4217 a CALL_EXPR (for ...(...)),
4218 an identifier (for the name being declared)
4219 or a null pointer (for the place in an absolute declarator
4220 where the name was omitted).
4221 For the last two cases, we have just exited the loop.
4223 At this point, TYPE is the type of elements of an array,
4224 or for a function to return, or for a pointer to point to.
4225 After this sequence of ifs, TYPE is the type of the
4226 array or function or pointer, and DECLARATOR has had its
4227 outermost layer removed. */
4229 if (TREE_CODE (declarator
) == ARRAY_REF
)
4231 register tree itype
= NULL_TREE
;
4232 register tree size
= TREE_OPERAND (declarator
, 1);
4233 /* The index is a signed object `sizetype' bits wide. */
4234 tree index_type
= signed_type (sizetype
);
4236 declarator
= TREE_OPERAND (declarator
, 0);
4238 /* Check for some types that there cannot be arrays of. */
4240 if (TYPE_MAIN_VARIANT (type
) == void_type_node
)
4242 error ("declaration of `%s' as array of voids", name
);
4243 type
= error_mark_node
;
4246 if (TREE_CODE (type
) == FUNCTION_TYPE
)
4248 error ("declaration of `%s' as array of functions", name
);
4249 type
= error_mark_node
;
4252 if (size
== error_mark_node
)
4253 type
= error_mark_node
;
4255 if (type
== error_mark_node
)
4258 /* If size was specified, set ITYPE to a range-type for that size.
4259 Otherwise, ITYPE remains null. finish_decl may figure it out
4260 from an initial value. */
4264 /* Strip NON_LVALUE_EXPRs since we aren't using as an lvalue. */
4265 STRIP_TYPE_NOPS (size
);
4267 if (TREE_CODE (TREE_TYPE (size
)) != INTEGER_TYPE
4268 && TREE_CODE (TREE_TYPE (size
)) != ENUMERAL_TYPE
)
4270 error ("size of array `%s' has non-integer type", name
);
4271 size
= integer_one_node
;
4274 if (pedantic
&& integer_zerop (size
))
4275 pedwarn ("ANSI C forbids zero-size array `%s'", name
);
4277 if (TREE_CODE (size
) == INTEGER_CST
)
4279 constant_expression_warning (size
);
4280 if (tree_int_cst_sgn (size
) < 0)
4282 error ("size of array `%s' is negative", name
);
4283 size
= integer_one_node
;
4288 /* Make sure the array size remains visibly nonconstant
4289 even if it is (eg) a const variable with known value. */
4294 if (TREE_CONSTANT (size
))
4295 pedwarn ("ANSI C forbids array `%s' whose size can't be evaluated", name
);
4297 pedwarn ("ANSI C forbids variable-size array `%s'", name
);
4301 /* Convert size to index_type, so that if it is a variable
4302 the computations will be done in the proper mode. */
4303 itype
= fold (build (MINUS_EXPR
, index_type
,
4304 convert (index_type
, size
),
4305 convert (index_type
, size_one_node
)));
4307 /* If that overflowed, the array is too big.
4308 ??? While a size of INT_MAX+1 technically shouldn't cause
4309 an overflow (because we subtract 1), the overflow is recorded
4310 during the conversion to index_type, before the subtraction.
4311 Handling this case seems like an unnecessary complication. */
4312 if (TREE_OVERFLOW (itype
))
4314 error ("size of array `%s' is too large", name
);
4315 type
= error_mark_node
;
4320 itype
= variable_size (itype
);
4321 itype
= build_index_type (itype
);
4324 #if 0 /* This had bad results for pointers to arrays, as in
4325 union incomplete (*foo)[4]; */
4326 /* Complain about arrays of incomplete types, except in typedefs. */
4328 if (!COMPLETE_TYPE_P (type
)
4329 /* Avoid multiple warnings for nested array types. */
4330 && TREE_CODE (type
) != ARRAY_TYPE
4331 && !(specbits
& (1 << (int) RID_TYPEDEF
))
4332 && !C_TYPE_BEING_DEFINED (type
))
4333 warning ("array type has incomplete element type");
4336 #if 0 /* We shouldn't have a function type here at all!
4337 Functions aren't allowed as array elements. */
4338 if (pedantic
&& TREE_CODE (type
) == FUNCTION_TYPE
4339 && (constp
|| volatilep
))
4340 pedwarn ("ANSI C forbids const or volatile function types");
4343 /* Build the array type itself, then merge any constancy or
4344 volatility into the target type. We must do it in this order
4345 to ensure that the TYPE_MAIN_VARIANT field of the array type
4346 is set correctly. */
4348 type
= build_array_type (type
, itype
);
4350 type
= c_build_qualified_type (type
, type_quals
);
4352 #if 0 /* don't clear these; leave them set so that the array type
4353 or the variable is itself const or volatile. */
4354 type_quals
= TYPE_UNQUALIFIED
;
4358 C_TYPE_VARIABLE_SIZE (type
) = 1;
4360 else if (TREE_CODE (declarator
) == CALL_EXPR
)
4364 /* Declaring a function type.
4365 Make sure we have a valid type for the function to return. */
4366 if (type
== error_mark_node
)
4371 /* Warn about some types functions can't return. */
4373 if (TREE_CODE (type
) == FUNCTION_TYPE
)
4375 error ("`%s' declared as function returning a function", name
);
4376 type
= integer_type_node
;
4378 if (TREE_CODE (type
) == ARRAY_TYPE
)
4380 error ("`%s' declared as function returning an array", name
);
4381 type
= integer_type_node
;
4384 #ifndef TRADITIONAL_RETURN_FLOAT
4385 /* Traditionally, declaring return type float means double. */
4387 if (flag_traditional
&& TYPE_MAIN_VARIANT (type
) == float_type_node
)
4388 type
= double_type_node
;
4389 #endif /* TRADITIONAL_RETURN_FLOAT */
4391 /* Construct the function type and go to the next
4392 inner layer of declarator. */
4394 arg_types
= grokparms (TREE_OPERAND (declarator
, 1),
4396 /* Say it's a definition
4397 only for the CALL_EXPR
4398 closest to the identifier. */
4399 && TREE_CODE (TREE_OPERAND (declarator
, 0)) == IDENTIFIER_NODE
);
4400 /* Type qualifiers before the return type of the function
4401 qualify the return type, not the function type. */
4403 type
= c_build_qualified_type (type
, type_quals
);
4404 type_quals
= TYPE_UNQUALIFIED
;
4406 type
= build_function_type (type
, arg_types
);
4407 declarator
= TREE_OPERAND (declarator
, 0);
4409 /* Set the TYPE_CONTEXTs for each tagged type which is local to
4410 the formal parameter list of this FUNCTION_TYPE to point to
4411 the FUNCTION_TYPE node itself. */
4416 for (link
= last_function_parm_tags
;
4418 link
= TREE_CHAIN (link
))
4419 TYPE_CONTEXT (TREE_VALUE (link
)) = type
;
4422 else if (TREE_CODE (declarator
) == INDIRECT_REF
)
4424 /* Merge any constancy or volatility into the target type
4427 if (pedantic
&& TREE_CODE (type
) == FUNCTION_TYPE
4429 pedwarn ("ANSI C forbids qualified function types");
4431 type
= c_build_qualified_type (type
, type_quals
);
4432 type_quals
= TYPE_UNQUALIFIED
;
4435 type
= build_pointer_type (type
);
4437 /* Process a list of type modifier keywords
4438 (such as const or volatile) that were given inside the `*'. */
4440 if (TREE_TYPE (declarator
))
4442 register tree typemodlist
;
4448 for (typemodlist
= TREE_TYPE (declarator
); typemodlist
;
4449 typemodlist
= TREE_CHAIN (typemodlist
))
4451 tree qualifier
= TREE_VALUE (typemodlist
);
4453 if (qualifier
== ridpointers
[(int) RID_CONST
])
4455 else if (qualifier
== ridpointers
[(int) RID_VOLATILE
])
4457 else if (qualifier
== ridpointers
[(int) RID_RESTRICT
])
4462 error ("invalid type modifier within pointer declarator");
4466 pedwarn ("duplicate `const'");
4468 pedwarn ("duplicate `volatile'");
4470 pedwarn ("duplicate `restrict'");
4472 type_quals
= ((constp
? TYPE_QUAL_CONST
: 0)
4473 | (restrictp
? TYPE_QUAL_RESTRICT
: 0)
4474 | (volatilep
? TYPE_QUAL_VOLATILE
: 0));
4477 declarator
= TREE_OPERAND (declarator
, 0);
4484 /* Now TYPE has the actual type. */
4486 /* Did array size calculations overflow? */
4488 if (TREE_CODE (type
) == ARRAY_TYPE
4489 && COMPLETE_TYPE_P (type
)
4490 && TREE_OVERFLOW (TYPE_SIZE (type
)))
4491 error ("size of array `%s' is too large", name
);
4493 /* If this is declaring a typedef name, return a TYPE_DECL. */
4495 if (specbits
& (1 << (int) RID_TYPEDEF
))
4498 /* Note that the grammar rejects storage classes
4499 in typenames, fields or parameters */
4500 if (pedantic
&& TREE_CODE (type
) == FUNCTION_TYPE
4502 pedwarn ("ANSI C forbids qualified function types");
4504 type
= c_build_qualified_type (type
, type_quals
);
4505 decl
= build_decl (TYPE_DECL
, declarator
, type
);
4506 if ((specbits
& (1 << (int) RID_SIGNED
))
4507 || (typedef_decl
&& C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl
)))
4508 C_TYPEDEF_EXPLICITLY_SIGNED (decl
) = 1;
4512 /* Detect the case of an array type of unspecified size
4513 which came, as such, direct from a typedef name.
4514 We must copy the type, so that each identifier gets
4515 a distinct type, so that each identifier's size can be
4516 controlled separately by its own initializer. */
4518 if (type
!= 0 && typedef_type
!= 0
4519 && TYPE_MAIN_VARIANT (type
) == TYPE_MAIN_VARIANT (typedef_type
)
4520 && TREE_CODE (type
) == ARRAY_TYPE
&& TYPE_DOMAIN (type
) == 0)
4522 type
= build_array_type (TREE_TYPE (type
), 0);
4524 C_TYPE_VARIABLE_SIZE (type
) = 1;
4527 /* If this is a type name (such as, in a cast or sizeof),
4528 compute the type and return it now. */
4530 if (decl_context
== TYPENAME
)
4532 /* Note that the grammar rejects storage classes
4533 in typenames, fields or parameters */
4534 if (pedantic
&& TREE_CODE (type
) == FUNCTION_TYPE
4536 pedwarn ("ANSI C forbids const or volatile function types");
4538 type
= c_build_qualified_type (type
, type_quals
);
4542 /* Aside from typedefs and type names (handle above),
4543 `void' at top level (not within pointer)
4544 is allowed only in public variables.
4545 We don't complain about parms either, but that is because
4546 a better error message can be made later. */
4548 if (TYPE_MAIN_VARIANT (type
) == void_type_node
&& decl_context
!= PARM
4549 && ! ((decl_context
!= FIELD
&& TREE_CODE (type
) != FUNCTION_TYPE
)
4550 && ((specbits
& (1 << (int) RID_EXTERN
))
4551 || (current_binding_level
== global_binding_level
4553 & ((1 << (int) RID_STATIC
) | (1 << (int) RID_REGISTER
)))))))
4555 error ("variable or field `%s' declared void", name
);
4556 type
= integer_type_node
;
4559 /* Now create the decl, which may be a VAR_DECL, a PARM_DECL
4560 or a FUNCTION_DECL, depending on DECL_CONTEXT and TYPE. */
4565 if (decl_context
== PARM
)
4567 tree type_as_written
= type
;
4570 /* A parameter declared as an array of T is really a pointer to T.
4571 One declared as a function is really a pointer to a function. */
4573 if (TREE_CODE (type
) == ARRAY_TYPE
)
4575 /* Transfer const-ness of array into that of type pointed to. */
4576 type
= TREE_TYPE (type
);
4578 type
= c_build_qualified_type (type
, type_quals
);
4579 type
= build_pointer_type (type
);
4580 type_quals
= TYPE_UNQUALIFIED
;
4583 else if (TREE_CODE (type
) == FUNCTION_TYPE
)
4585 if (pedantic
&& type_quals
)
4586 pedwarn ("ANSI C forbids qualified function types");
4588 type
= c_build_qualified_type (type
, type_quals
);
4589 type
= build_pointer_type (type
);
4590 type_quals
= TYPE_UNQUALIFIED
;
4593 decl
= build_decl (PARM_DECL
, declarator
, type
);
4595 C_DECL_VARIABLE_SIZE (decl
) = 1;
4597 /* Compute the type actually passed in the parmlist,
4598 for the case where there is no prototype.
4599 (For example, shorts and chars are passed as ints.)
4600 When there is a prototype, this is overridden later. */
4602 if (type
== error_mark_node
)
4603 promoted_type
= type
;
4606 promoted_type
= simple_type_promotes_to (type
);
4607 if (! promoted_type
)
4608 promoted_type
= type
;
4611 DECL_ARG_TYPE (decl
) = promoted_type
;
4612 DECL_ARG_TYPE_AS_WRITTEN (decl
) = type_as_written
;
4614 else if (decl_context
== FIELD
)
4616 /* Structure field. It may not be a function. */
4618 if (TREE_CODE (type
) == FUNCTION_TYPE
)
4620 error ("field `%s' declared as a function", name
);
4621 type
= build_pointer_type (type
);
4623 else if (TREE_CODE (type
) != ERROR_MARK
4624 && !COMPLETE_OR_UNBOUND_ARRAY_TYPE_P (type
))
4626 error ("field `%s' has incomplete type", name
);
4627 type
= error_mark_node
;
4629 /* Move type qualifiers down to element of an array. */
4630 if (TREE_CODE (type
) == ARRAY_TYPE
&& type_quals
)
4632 type
= build_array_type (c_build_qualified_type (TREE_TYPE (type
),
4634 TYPE_DOMAIN (type
));
4635 #if 0 /* Leave the field const or volatile as well. */
4636 type_quals
= TYPE_UNQUALIFIED
;
4639 decl
= build_decl (FIELD_DECL
, declarator
, type
);
4641 C_DECL_VARIABLE_SIZE (decl
) = 1;
4643 else if (TREE_CODE (type
) == FUNCTION_TYPE
)
4645 /* Every function declaration is "external"
4646 except for those which are inside a function body
4647 in which `auto' is used.
4648 That is a case not specified by ANSI C,
4649 and we use it for forward declarations for nested functions. */
4650 int extern_ref
= (!(specbits
& (1 << (int) RID_AUTO
))
4651 || current_binding_level
== global_binding_level
);
4653 if (specbits
& (1 << (int) RID_AUTO
)
4654 && (pedantic
|| current_binding_level
== global_binding_level
))
4655 pedwarn ("invalid storage class for function `%s'", name
);
4656 if (specbits
& (1 << (int) RID_REGISTER
))
4657 error ("invalid storage class for function `%s'", name
);
4658 /* Function declaration not at top level.
4659 Storage classes other than `extern' are not allowed
4660 and `extern' makes no difference. */
4661 if (current_binding_level
!= global_binding_level
4662 && (specbits
& ((1 << (int) RID_STATIC
) | (1 << (int) RID_INLINE
)))
4664 pedwarn ("invalid storage class for function `%s'", name
);
4666 decl
= build_decl (FUNCTION_DECL
, declarator
, type
);
4667 decl
= build_decl_attribute_variant (decl
, decl_machine_attr
);
4669 if (pedantic
&& type_quals
&& ! DECL_IN_SYSTEM_HEADER (decl
))
4670 pedwarn ("ANSI C forbids qualified function types");
4673 && TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (decl
))) == void_type_node
4674 && TYPE_QUALS (TREE_TYPE (TREE_TYPE (decl
)))
4675 && ! DECL_IN_SYSTEM_HEADER (decl
))
4676 pedwarn ("ANSI C forbids qualified void function return type");
4678 /* GNU C interprets a `volatile void' return type to indicate
4679 that the function does not return. */
4680 if ((type_quals
& TYPE_QUAL_VOLATILE
)
4681 && TREE_TYPE (TREE_TYPE (decl
)) != void_type_node
)
4682 warning ("`noreturn' function returns non-void value");
4685 DECL_EXTERNAL (decl
) = 1;
4686 /* Record absence of global scope for `static' or `auto'. */
4688 = !(specbits
& ((1 << (int) RID_STATIC
) | (1 << (int) RID_AUTO
)));
4690 /* Record presence of `inline', if it is reasonable. */
4693 if (! strcmp (IDENTIFIER_POINTER (declarator
), "main"))
4694 warning ("cannot inline function `main'");
4696 /* Assume that otherwise the function can be inlined. */
4697 DECL_INLINE (decl
) = 1;
4699 if (specbits
& (1 << (int) RID_EXTERN
))
4700 current_extern_inline
= 1;
4705 /* It's a variable. */
4706 /* An uninitialized decl with `extern' is a reference. */
4707 int extern_ref
= !initialized
&& (specbits
& (1 << (int) RID_EXTERN
));
4709 /* Move type qualifiers down to element of an array. */
4710 if (TREE_CODE (type
) == ARRAY_TYPE
&& type_quals
)
4712 type
= build_array_type (c_build_qualified_type (TREE_TYPE (type
),
4714 TYPE_DOMAIN (type
));
4715 #if 0 /* Leave the variable const or volatile as well. */
4716 type_quals
= TYPE_UNQUALIFIED
;
4720 decl
= build_decl (VAR_DECL
, declarator
, type
);
4722 C_DECL_VARIABLE_SIZE (decl
) = 1;
4725 pedwarn_with_decl (decl
, "variable `%s' declared `inline'");
4727 DECL_EXTERNAL (decl
) = extern_ref
;
4728 /* At top level, the presence of a `static' or `register' storage
4729 class specifier, or the absence of all storage class specifiers
4730 makes this declaration a definition (perhaps tentative). Also,
4731 the absence of both `static' and `register' makes it public. */
4732 if (current_binding_level
== global_binding_level
)
4736 & ((1 << (int) RID_STATIC
) | (1 << (int) RID_REGISTER
)));
4737 TREE_STATIC (decl
) = ! DECL_EXTERNAL (decl
);
4739 /* Not at top level, only `static' makes a static definition. */
4742 TREE_STATIC (decl
) = (specbits
& (1 << (int) RID_STATIC
)) != 0;
4743 TREE_PUBLIC (decl
) = DECL_EXTERNAL (decl
);
4746 if (specbits
& 1 << (int) RID_ITERATOR
)
4747 ITERATOR_P (decl
) = 1;
4750 /* Record `register' declaration for warnings on &
4751 and in case doing stupid register allocation. */
4753 if (specbits
& (1 << (int) RID_REGISTER
))
4754 DECL_REGISTER (decl
) = 1;
4756 /* Record constancy and volatility. */
4757 c_apply_type_quals_to_decl (type_quals
, decl
);
4759 /* If a type has volatile components, it should be stored in memory.
4760 Otherwise, the fact that those components are volatile
4761 will be ignored, and would even crash the compiler. */
4762 if (C_TYPE_FIELDS_VOLATILE (TREE_TYPE (decl
)))
4763 mark_addressable (decl
);
4769 /* Decode the parameter-list info for a function type or function definition.
4770 The argument is the value returned by `get_parm_info' (or made in parse.y
4771 if there is an identifier list instead of a parameter decl list).
4772 These two functions are separate because when a function returns
4773 or receives functions then each is called multiple times but the order
4774 of calls is different. The last call to `grokparms' is always the one
4775 that contains the formal parameter names of a function definition.
4777 Store in `last_function_parms' a chain of the decls of parms.
4778 Also store in `last_function_parm_tags' a chain of the struct, union,
4779 and enum tags declared among the parms.
4781 Return a list of arg types to use in the FUNCTION_TYPE for this function.
4783 FUNCDEF_FLAG is nonzero for a function definition, 0 for
4784 a mere declaration. A nonempty identifier-list gets an error message
4785 when FUNCDEF_FLAG is zero. */
4788 grokparms (parms_info
, funcdef_flag
)
4792 tree first_parm
= TREE_CHAIN (parms_info
);
4794 last_function_parms
= TREE_PURPOSE (parms_info
);
4795 last_function_parm_tags
= TREE_VALUE (parms_info
);
4797 if (warn_strict_prototypes
&& first_parm
== 0 && !funcdef_flag
4798 && !in_system_header
)
4799 warning ("function declaration isn't a prototype");
4802 && TREE_CODE (TREE_VALUE (first_parm
)) == IDENTIFIER_NODE
)
4805 pedwarn ("parameter names (without types) in function declaration");
4807 last_function_parms
= first_parm
;
4814 /* We no longer test FUNCDEF_FLAG.
4815 If the arg types are incomplete in a declaration,
4816 they must include undefined tags.
4817 These tags can never be defined in the scope of the declaration,
4818 so the types can never be completed,
4819 and no call can be compiled successfully. */
4821 /* In a fcn definition, arg types must be complete. */
4824 for (parm
= last_function_parms
, typelt
= first_parm
;
4826 parm
= TREE_CHAIN (parm
))
4827 /* Skip over any enumeration constants declared here. */
4828 if (TREE_CODE (parm
) == PARM_DECL
)
4830 /* Barf if the parameter itself has an incomplete type. */
4831 tree type
= TREE_VALUE (typelt
);
4832 if (!COMPLETE_TYPE_P (type
))
4834 if (funcdef_flag
&& DECL_NAME (parm
) != 0)
4835 error ("parameter `%s' has incomplete type",
4836 IDENTIFIER_POINTER (DECL_NAME (parm
)));
4838 warning ("parameter has incomplete type");
4841 TREE_VALUE (typelt
) = error_mark_node
;
4842 TREE_TYPE (parm
) = error_mark_node
;
4845 #if 0 /* This has been replaced by parm_tags_warning
4846 which uses a more accurate criterion for what to warn about. */
4849 /* Now warn if is a pointer to an incomplete type. */
4850 while (TREE_CODE (type
) == POINTER_TYPE
4851 || TREE_CODE (type
) == REFERENCE_TYPE
)
4852 type
= TREE_TYPE (type
);
4853 type
= TYPE_MAIN_VARIANT (type
);
4854 if (!COMPLETE_TYPE_P (type
))
4856 if (DECL_NAME (parm
) != 0)
4857 warning ("parameter `%s' points to incomplete type",
4858 IDENTIFIER_POINTER (DECL_NAME (parm
)));
4860 warning ("parameter points to incomplete type");
4864 typelt
= TREE_CHAIN (typelt
);
4872 /* Return a tree_list node with info on a parameter list just parsed.
4873 The TREE_PURPOSE is a chain of decls of those parms.
4874 The TREE_VALUE is a list of structure, union and enum tags defined.
4875 The TREE_CHAIN is a list of argument types to go in the FUNCTION_TYPE.
4876 This tree_list node is later fed to `grokparms'.
4878 VOID_AT_END nonzero means append `void' to the end of the type-list.
4879 Zero means the parmlist ended with an ellipsis so don't append `void'. */
4882 get_parm_info (void_at_end
)
4885 register tree decl
, t
;
4886 register tree types
= 0;
4888 tree tags
= gettags ();
4889 tree parms
= getdecls ();
4891 tree order
= current_binding_level
->parm_order
;
4893 /* Just `void' (and no ellipsis) is special. There are really no parms. */
4894 if (void_at_end
&& parms
!= 0
4895 && TREE_CHAIN (parms
) == 0
4896 && TYPE_MAIN_VARIANT (TREE_TYPE (parms
)) == void_type_node
4897 && DECL_NAME (parms
) == 0)
4900 storedecls (NULL_TREE
);
4901 return tree_cons (NULL_TREE
, NULL_TREE
,
4902 tree_cons (NULL_TREE
, void_type_node
, NULL_TREE
));
4905 /* Extract enumerator values and other non-parms declared with the parms.
4906 Likewise any forward parm decls that didn't have real parm decls. */
4907 for (decl
= parms
; decl
; )
4909 tree next
= TREE_CHAIN (decl
);
4911 if (TREE_CODE (decl
) != PARM_DECL
)
4913 TREE_CHAIN (decl
) = new_parms
;
4916 else if (TREE_ASM_WRITTEN (decl
))
4918 error_with_decl (decl
, "parameter `%s' has just a forward declaration");
4919 TREE_CHAIN (decl
) = new_parms
;
4925 /* Put the parm decls back in the order they were in in the parm list. */
4926 for (t
= order
; t
; t
= TREE_CHAIN (t
))
4929 TREE_CHAIN (TREE_VALUE (t
)) = TREE_VALUE (TREE_CHAIN (t
));
4931 TREE_CHAIN (TREE_VALUE (t
)) = 0;
4934 new_parms
= chainon (order
? nreverse (TREE_VALUE (order
)) : 0,
4937 /* Store the parmlist in the binding level since the old one
4938 is no longer a valid list. (We have changed the chain pointers.) */
4939 storedecls (new_parms
);
4941 for (decl
= new_parms
; decl
; decl
= TREE_CHAIN (decl
))
4942 /* There may also be declarations for enumerators if an enumeration
4943 type is declared among the parms. Ignore them here. */
4944 if (TREE_CODE (decl
) == PARM_DECL
)
4946 /* Since there is a prototype,
4947 args are passed in their declared types. */
4948 tree type
= TREE_TYPE (decl
);
4949 DECL_ARG_TYPE (decl
) = type
;
4950 if (PROMOTE_PROTOTYPES
4951 && (TREE_CODE (type
) == INTEGER_TYPE
4952 || TREE_CODE (type
) == ENUMERAL_TYPE
)
4953 && TYPE_PRECISION (type
) < TYPE_PRECISION (integer_type_node
))
4954 DECL_ARG_TYPE (decl
) = integer_type_node
;
4956 types
= tree_cons (NULL_TREE
, TREE_TYPE (decl
), types
);
4957 if (TYPE_MAIN_VARIANT (TREE_VALUE (types
)) == void_type_node
&& ! erred
4958 && DECL_NAME (decl
) == 0)
4960 error ("`void' in parameter list must be the entire list");
4966 return tree_cons (new_parms
, tags
,
4967 nreverse (tree_cons (NULL_TREE
, void_type_node
, types
)));
4969 return tree_cons (new_parms
, tags
, nreverse (types
));
4972 /* At end of parameter list, warn about any struct, union or enum tags
4973 defined within. Do so because these types cannot ever become complete. */
4976 parmlist_tags_warning ()
4981 for (elt
= current_binding_level
->tags
; elt
; elt
= TREE_CHAIN (elt
))
4983 enum tree_code code
= TREE_CODE (TREE_VALUE (elt
));
4984 /* An anonymous union parm type is meaningful as a GNU extension.
4985 So don't warn for that. */
4986 if (code
== UNION_TYPE
&& TREE_PURPOSE (elt
) == 0 && !pedantic
)
4988 if (TREE_PURPOSE (elt
) != 0)
4989 warning ("`%s %s' declared inside parameter list",
4990 (code
== RECORD_TYPE
? "struct"
4991 : code
== UNION_TYPE
? "union"
4993 IDENTIFIER_POINTER (TREE_PURPOSE (elt
)));
4995 warning ("anonymous %s declared inside parameter list",
4996 (code
== RECORD_TYPE
? "struct"
4997 : code
== UNION_TYPE
? "union"
5002 warning ("its scope is only this definition or declaration, which is probably not what you want.");
5008 /* Get the struct, enum or union (CODE says which) with tag NAME.
5009 Define the tag as a forward-reference if it is not defined. */
5012 xref_tag (code
, name
)
5013 enum tree_code code
;
5016 /* If a cross reference is requested, look up the type
5017 already defined for this tag and return it. */
5019 register tree ref
= lookup_tag (code
, name
, current_binding_level
, 0);
5020 /* Even if this is the wrong type of tag, return what we found.
5021 There will be an error message anyway, from pending_xref_error.
5022 If we create an empty xref just for an invalid use of the type,
5023 the main result is to create lots of superfluous error messages. */
5027 /* If no such tag is yet defined, create a forward-reference node
5028 and record it as the "definition".
5029 When a real declaration of this type is found,
5030 the forward-reference will be altered into a real type. */
5032 ref
= make_node (code
);
5033 if (code
== ENUMERAL_TYPE
)
5035 /* (In ANSI, Enums can be referred to only if already defined.) */
5037 pedwarn ("ANSI C forbids forward references to `enum' types");
5038 /* Give the type a default layout like unsigned int
5039 to avoid crashing if it does not get defined. */
5040 TYPE_MODE (ref
) = TYPE_MODE (unsigned_type_node
);
5041 TYPE_ALIGN (ref
) = TYPE_ALIGN (unsigned_type_node
);
5042 TREE_UNSIGNED (ref
) = 1;
5043 TYPE_PRECISION (ref
) = TYPE_PRECISION (unsigned_type_node
);
5044 TYPE_MIN_VALUE (ref
) = TYPE_MIN_VALUE (unsigned_type_node
);
5045 TYPE_MAX_VALUE (ref
) = TYPE_MAX_VALUE (unsigned_type_node
);
5048 pushtag (name
, ref
);
5053 /* Make sure that the tag NAME is defined *in the current binding level*
5054 at least as a forward reference.
5055 CODE says which kind of tag NAME ought to be. */
5058 start_struct (code
, name
)
5059 enum tree_code code
;
5062 /* If there is already a tag defined at this binding level
5063 (as a forward reference), just return it. */
5065 register tree ref
= 0;
5068 ref
= lookup_tag (code
, name
, current_binding_level
, 1);
5069 if (ref
&& TREE_CODE (ref
) == code
)
5071 C_TYPE_BEING_DEFINED (ref
) = 1;
5072 TYPE_PACKED (ref
) = flag_pack_struct
;
5073 if (TYPE_FIELDS (ref
))
5074 error ("redefinition of `%s %s'",
5075 code
== UNION_TYPE
? "union" : "struct",
5076 IDENTIFIER_POINTER (name
));
5081 /* Otherwise create a forward-reference just so the tag is in scope. */
5083 ref
= make_node (code
);
5084 pushtag (name
, ref
);
5085 C_TYPE_BEING_DEFINED (ref
) = 1;
5086 TYPE_PACKED (ref
) = flag_pack_struct
;
5090 /* Process the specs, declarator (NULL if omitted) and width (NULL if omitted)
5091 of a structure component, returning a FIELD_DECL node.
5092 WIDTH is non-NULL for bit fields only, and is an INTEGER_CST node.
5094 This is done during the parsing of the struct declaration.
5095 The FIELD_DECL nodes are chained together and the lot of them
5096 are ultimately passed to `build_struct' to make the RECORD_TYPE node. */
5099 grokfield (filename
, line
, declarator
, declspecs
, width
)
5100 const char *filename ATTRIBUTE_UNUSED
;
5101 int line ATTRIBUTE_UNUSED
;
5102 tree declarator
, declspecs
, width
;
5106 value
= grokdeclarator (declarator
, declspecs
, width
? BITFIELD
: FIELD
, 0);
5108 finish_decl (value
, NULL_TREE
, NULL_TREE
);
5109 DECL_INITIAL (value
) = width
;
5111 maybe_objc_check_decl (value
);
5115 /* Fill in the fields of a RECORD_TYPE or UNION_TYPE node, T.
5116 FIELDLIST is a chain of FIELD_DECL nodes for the fields.
5117 ATTRIBUTES are attributes to be applied to the structure. */
5120 finish_struct (t
, fieldlist
, attributes
)
5126 int toplevel
= global_binding_level
== current_binding_level
;
5128 /* If this type was previously laid out as a forward reference,
5129 make sure we lay it out again. */
5133 decl_attributes (t
, attributes
, NULL_TREE
);
5135 /* Nameless union parm types are useful as GCC extension. */
5136 if (! (TREE_CODE (t
) == UNION_TYPE
&& TYPE_NAME (t
) == 0) && !pedantic
)
5137 /* Otherwise, warn about any struct or union def. in parmlist. */
5138 if (in_parm_level_p ())
5141 pedwarn ("%s defined inside parms",
5142 TREE_CODE (t
) == UNION_TYPE
? "union" : "structure");
5143 else if (! flag_traditional
)
5144 warning ("%s defined inside parms",
5145 TREE_CODE (t
) == UNION_TYPE
? "union" : "structure");
5150 for (x
= fieldlist
; x
; x
= TREE_CHAIN (x
))
5151 if (DECL_NAME (x
) != 0)
5155 pedwarn ("%s has no %smembers",
5156 TREE_CODE (t
) == UNION_TYPE
? "union" : "struct",
5157 fieldlist
? "named " : "");
5160 /* Install struct as DECL_CONTEXT of each field decl.
5161 Also process specified field sizes,m which is found in the DECL_INITIAL.
5162 Store 0 there, except for ": 0" fields (so we can find them
5163 and delete them, below). */
5165 for (x
= fieldlist
; x
; x
= TREE_CHAIN (x
))
5167 DECL_CONTEXT (x
) = t
;
5168 DECL_PACKED (x
) |= TYPE_PACKED (t
);
5170 /* If any field is const, the structure type is pseudo-const. */
5171 if (TREE_READONLY (x
))
5172 C_TYPE_FIELDS_READONLY (t
) = 1;
5175 /* A field that is pseudo-const makes the structure likewise. */
5176 tree t1
= TREE_TYPE (x
);
5177 while (TREE_CODE (t1
) == ARRAY_TYPE
)
5178 t1
= TREE_TYPE (t1
);
5179 if ((TREE_CODE (t1
) == RECORD_TYPE
|| TREE_CODE (t1
) == UNION_TYPE
)
5180 && C_TYPE_FIELDS_READONLY (t1
))
5181 C_TYPE_FIELDS_READONLY (t
) = 1;
5184 /* Any field that is volatile means variables of this type must be
5185 treated in some ways as volatile. */
5186 if (TREE_THIS_VOLATILE (x
))
5187 C_TYPE_FIELDS_VOLATILE (t
) = 1;
5189 /* Any field of nominal variable size implies structure is too. */
5190 if (C_DECL_VARIABLE_SIZE (x
))
5191 C_TYPE_VARIABLE_SIZE (t
) = 1;
5193 /* Detect invalid nested redefinition. */
5194 if (TREE_TYPE (x
) == t
)
5195 error ("nested redefinition of `%s'",
5196 IDENTIFIER_POINTER (TYPE_NAME (t
)));
5198 /* Detect invalid bit-field size. */
5199 if (DECL_INITIAL (x
))
5200 STRIP_NOPS (DECL_INITIAL (x
));
5201 if (DECL_INITIAL (x
))
5203 if (TREE_CODE (DECL_INITIAL (x
)) == INTEGER_CST
)
5204 constant_expression_warning (DECL_INITIAL (x
));
5208 "bit-field `%s' width not an integer constant");
5209 DECL_INITIAL (x
) = NULL
;
5213 /* Detect invalid bit-field type. */
5214 if (DECL_INITIAL (x
)
5215 && TREE_CODE (TREE_TYPE (x
)) != INTEGER_TYPE
5216 && TREE_CODE (TREE_TYPE (x
)) != ENUMERAL_TYPE
)
5218 error_with_decl (x
, "bit-field `%s' has invalid type");
5219 DECL_INITIAL (x
) = NULL
;
5222 if (DECL_INITIAL (x
) && pedantic
5223 && TYPE_MAIN_VARIANT (TREE_TYPE (x
)) != integer_type_node
5224 && TYPE_MAIN_VARIANT (TREE_TYPE (x
)) != unsigned_type_node
5225 /* Accept an enum that's equivalent to int or unsigned int. */
5226 && !(TREE_CODE (TREE_TYPE (x
)) == ENUMERAL_TYPE
5227 && (TYPE_PRECISION (TREE_TYPE (x
))
5228 == TYPE_PRECISION (integer_type_node
))))
5229 pedwarn_with_decl (x
, "bit-field `%s' type invalid in ANSI C");
5231 /* Detect and ignore out of range field width and process valid
5233 if (DECL_INITIAL (x
))
5235 if (tree_int_cst_sgn (DECL_INITIAL (x
)) < 0)
5236 error_with_decl (x
, "negative width in bit-field `%s'");
5237 else if (0 < compare_tree_int (DECL_INITIAL (x
),
5238 TYPE_PRECISION (TREE_TYPE (x
))))
5239 pedwarn_with_decl (x
, "width of `%s' exceeds its type");
5240 else if (integer_zerop (DECL_INITIAL (x
)) && DECL_NAME (x
) != 0)
5241 error_with_decl (x
, "zero width for bit-field `%s'");
5244 /* The test above has assured us that TREE_INT_CST_HIGH is 0. */
5245 unsigned HOST_WIDE_INT width
5246 = TREE_INT_CST_LOW (DECL_INITIAL (x
));
5248 if (TREE_CODE (TREE_TYPE (x
)) == ENUMERAL_TYPE
5249 && (width
< min_precision (TYPE_MIN_VALUE (TREE_TYPE (x
)),
5250 TREE_UNSIGNED (TREE_TYPE (x
)))
5252 < min_precision (TYPE_MAX_VALUE (TREE_TYPE (x
)),
5253 TREE_UNSIGNED (TREE_TYPE (x
))))))
5254 warning_with_decl (x
,
5255 "`%s' is narrower than values of its type");
5257 DECL_SIZE (x
) = bitsize_int (width
);
5258 DECL_BIT_FIELD (x
) = DECL_C_BIT_FIELD (x
) = 1;
5262 /* field size 0 => force desired amount of alignment. */
5263 #ifdef EMPTY_FIELD_BOUNDARY
5264 DECL_ALIGN (x
) = MAX (DECL_ALIGN (x
), EMPTY_FIELD_BOUNDARY
);
5266 #ifdef PCC_BITFIELD_TYPE_MATTERS
5267 if (PCC_BITFIELD_TYPE_MATTERS
)
5268 DECL_ALIGN (x
) = MAX (DECL_ALIGN (x
),
5269 TYPE_ALIGN (TREE_TYPE (x
)));
5275 else if (TREE_TYPE (x
) != error_mark_node
)
5277 unsigned int min_align
= (DECL_PACKED (x
) ? BITS_PER_UNIT
5278 : TYPE_ALIGN (TREE_TYPE (x
)));
5280 /* Non-bit-fields are aligned for their type, except packed
5281 fields which require only BITS_PER_UNIT alignment. */
5282 DECL_ALIGN (x
) = MAX (DECL_ALIGN (x
), min_align
);
5285 DECL_INITIAL (x
) = 0;
5288 /* Delete all duplicate fields from the fieldlist */
5289 for (x
= fieldlist
; x
&& TREE_CHAIN (x
);)
5290 /* Anonymous fields aren't duplicates. */
5291 if (DECL_NAME (TREE_CHAIN (x
)) == 0)
5295 register tree y
= fieldlist
;
5299 if (DECL_NAME (y
) == DECL_NAME (TREE_CHAIN (x
)))
5305 if (DECL_NAME (y
) == DECL_NAME (TREE_CHAIN (x
)))
5307 error_with_decl (TREE_CHAIN (x
), "duplicate member `%s'");
5308 TREE_CHAIN (x
) = TREE_CHAIN (TREE_CHAIN (x
));
5310 else x
= TREE_CHAIN (x
);
5313 /* Now we have the nearly final fieldlist. Record it,
5314 then lay out the structure or union (including the fields). */
5316 TYPE_FIELDS (t
) = fieldlist
;
5320 /* Delete all zero-width bit-fields from the fieldlist */
5322 tree
*fieldlistp
= &fieldlist
;
5324 if (TREE_CODE (*fieldlistp
) == FIELD_DECL
&& DECL_INITIAL (*fieldlistp
))
5325 *fieldlistp
= TREE_CHAIN (*fieldlistp
);
5327 fieldlistp
= &TREE_CHAIN (*fieldlistp
);
5330 /* Now we have the truly final field list.
5331 Store it in this type and in the variants. */
5333 TYPE_FIELDS (t
) = fieldlist
;
5335 for (x
= TYPE_MAIN_VARIANT (t
); x
; x
= TYPE_NEXT_VARIANT (x
))
5337 TYPE_FIELDS (x
) = TYPE_FIELDS (t
);
5338 TYPE_LANG_SPECIFIC (x
) = TYPE_LANG_SPECIFIC (t
);
5339 TYPE_ALIGN (x
) = TYPE_ALIGN (t
);
5342 /* If this was supposed to be a transparent union, but we can't
5343 make it one, warn and turn off the flag. */
5344 if (TREE_CODE (t
) == UNION_TYPE
5345 && TYPE_TRANSPARENT_UNION (t
)
5346 && TYPE_MODE (t
) != DECL_MODE (TYPE_FIELDS (t
)))
5348 TYPE_TRANSPARENT_UNION (t
) = 0;
5349 warning ("union cannot be made transparent");
5352 /* If this structure or union completes the type of any previous
5353 variable declaration, lay it out and output its rtl. */
5355 if (current_binding_level
->n_incomplete
!= 0)
5358 for (decl
= current_binding_level
->names
; decl
; decl
= TREE_CHAIN (decl
))
5360 if (TREE_TYPE (decl
) == t
5361 && TREE_CODE (decl
) != TYPE_DECL
)
5363 layout_decl (decl
, 0);
5364 /* This is a no-op in c-lang.c or something real in objc-actions.c. */
5365 maybe_objc_check_decl (decl
);
5366 rest_of_decl_compilation (decl
, NULL_PTR
, toplevel
, 0);
5369 --current_binding_level
->n_incomplete
;
5371 else if (!COMPLETE_TYPE_P (TREE_TYPE (decl
))
5372 && TREE_CODE (TREE_TYPE (decl
)) == ARRAY_TYPE
)
5374 tree element
= TREE_TYPE (decl
);
5375 while (TREE_CODE (element
) == ARRAY_TYPE
)
5376 element
= TREE_TYPE (element
);
5378 layout_array_type (TREE_TYPE (decl
));
5383 /* Finish debugging output for this type. */
5384 rest_of_type_compilation (t
, toplevel
);
5389 /* Lay out the type T, and its element type, and so on. */
5392 layout_array_type (t
)
5395 if (TREE_CODE (TREE_TYPE (t
)) == ARRAY_TYPE
)
5396 layout_array_type (TREE_TYPE (t
));
5400 /* Begin compiling the definition of an enumeration type.
5401 NAME is its name (or null if anonymous).
5402 Returns the type object, as yet incomplete.
5403 Also records info about it so that build_enumerator
5404 may be used to declare the individual values as they are read. */
5410 register tree enumtype
= 0;
5412 /* If this is the real definition for a previous forward reference,
5413 fill in the contents in the same object that used to be the
5414 forward reference. */
5417 enumtype
= lookup_tag (ENUMERAL_TYPE
, name
, current_binding_level
, 1);
5419 if (enumtype
== 0 || TREE_CODE (enumtype
) != ENUMERAL_TYPE
)
5421 enumtype
= make_node (ENUMERAL_TYPE
);
5422 pushtag (name
, enumtype
);
5425 C_TYPE_BEING_DEFINED (enumtype
) = 1;
5427 if (TYPE_VALUES (enumtype
) != 0)
5429 /* This enum is a named one that has been declared already. */
5430 error ("redeclaration of `enum %s'", IDENTIFIER_POINTER (name
));
5432 /* Completely replace its old definition.
5433 The old enumerators remain defined, however. */
5434 TYPE_VALUES (enumtype
) = 0;
5437 enum_next_value
= integer_zero_node
;
5440 if (flag_short_enums
)
5441 TYPE_PACKED (enumtype
) = 1;
5446 /* After processing and defining all the values of an enumeration type,
5447 install their decls in the enumeration type and finish it off.
5448 ENUMTYPE is the type object, VALUES a list of decl-value pairs,
5449 and ATTRIBUTES are the specified attributes.
5450 Returns ENUMTYPE. */
5453 finish_enum (enumtype
, values
, attributes
)
5458 register tree pair
, tem
;
5459 tree minnode
= 0, maxnode
= 0;
5460 int precision
, unsign
;
5461 int toplevel
= (global_binding_level
== current_binding_level
);
5463 if (in_parm_level_p ())
5464 warning ("enum defined inside parms");
5466 decl_attributes (enumtype
, attributes
, NULL_TREE
);
5468 /* Calculate the maximum value of any enumerator in this type. */
5470 if (values
== error_mark_node
)
5471 minnode
= maxnode
= integer_zero_node
;
5474 minnode
= maxnode
= TREE_VALUE (values
);
5475 for (pair
= TREE_CHAIN (values
); pair
; pair
= TREE_CHAIN (pair
))
5477 tree value
= TREE_VALUE (pair
);
5478 if (tree_int_cst_lt (maxnode
, value
))
5480 if (tree_int_cst_lt (value
, minnode
))
5485 /* Construct the final type of this enumeration. It is the same
5486 as one of the integral types - the narrowest one that fits, except
5487 that normally we only go as narrow as int - and signed iff any of
5488 the values are negative. */
5489 unsign
= (tree_int_cst_sgn (minnode
) >= 0);
5490 precision
= MAX (min_precision (minnode
, unsign
),
5491 min_precision (maxnode
, unsign
));
5492 if (!TYPE_PACKED (enumtype
))
5493 precision
= MAX (precision
, TYPE_PRECISION (integer_type_node
));
5494 if (type_for_size (precision
, unsign
) == 0)
5496 warning ("enumeration values exceed range of largest integer");
5497 precision
= TYPE_PRECISION (long_long_integer_type_node
);
5500 TYPE_MIN_VALUE (enumtype
) = minnode
;
5501 TYPE_MAX_VALUE (enumtype
) = maxnode
;
5502 TYPE_PRECISION (enumtype
) = precision
;
5503 TREE_UNSIGNED (enumtype
) = unsign
;
5504 TYPE_SIZE (enumtype
) = 0;
5505 layout_type (enumtype
);
5507 if (values
!= error_mark_node
)
5509 /* Change the type of the enumerators to be the enum type. We
5510 need to do this irrespective of the size of the enum, for
5511 proper type checking. Replace the DECL_INITIALs of the
5512 enumerators, and the value slots of the list, with copies
5513 that have the enum type; they cannot be modified in place
5514 because they may be shared (e.g. integer_zero_node) Finally,
5515 change the purpose slots to point to the names of the decls. */
5516 for (pair
= values
; pair
; pair
= TREE_CHAIN (pair
))
5518 tree enu
= TREE_PURPOSE (pair
);
5520 TREE_TYPE (enu
) = enumtype
;
5521 DECL_SIZE (enu
) = TYPE_SIZE (enumtype
);
5522 DECL_SIZE_UNIT (enu
) = TYPE_SIZE_UNIT (enumtype
);
5523 DECL_ALIGN (enu
) = TYPE_ALIGN (enumtype
);
5524 DECL_MODE (enu
) = TYPE_MODE (enumtype
);
5525 DECL_INITIAL (enu
) = convert (enumtype
, DECL_INITIAL (enu
));
5527 TREE_PURPOSE (pair
) = DECL_NAME (enu
);
5528 TREE_VALUE (pair
) = DECL_INITIAL (enu
);
5531 TYPE_VALUES (enumtype
) = values
;
5534 /* Fix up all variant types of this enum type. */
5535 for (tem
= TYPE_MAIN_VARIANT (enumtype
); tem
; tem
= TYPE_NEXT_VARIANT (tem
))
5537 if (tem
== enumtype
)
5539 TYPE_VALUES (tem
) = TYPE_VALUES (enumtype
);
5540 TYPE_MIN_VALUE (tem
) = TYPE_MIN_VALUE (enumtype
);
5541 TYPE_MAX_VALUE (tem
) = TYPE_MAX_VALUE (enumtype
);
5542 TYPE_SIZE (tem
) = TYPE_SIZE (enumtype
);
5543 TYPE_SIZE_UNIT (tem
) = TYPE_SIZE_UNIT (enumtype
);
5544 TYPE_MODE (tem
) = TYPE_MODE (enumtype
);
5545 TYPE_PRECISION (tem
) = TYPE_PRECISION (enumtype
);
5546 TYPE_ALIGN (tem
) = TYPE_ALIGN (enumtype
);
5547 TREE_UNSIGNED (tem
) = TREE_UNSIGNED (enumtype
);
5550 /* Finish debugging output for this type. */
5551 rest_of_type_compilation (enumtype
, toplevel
);
5556 /* Build and install a CONST_DECL for one value of the
5557 current enumeration type (one that was begun with start_enum).
5558 Return a tree-list containing the CONST_DECL and its value.
5559 Assignment of sequential values by default is handled here. */
5562 build_enumerator (name
, value
)
5565 register tree decl
, type
;
5567 /* Validate and default VALUE. */
5569 /* Remove no-op casts from the value. */
5571 STRIP_TYPE_NOPS (value
);
5575 if (TREE_CODE (value
) == INTEGER_CST
)
5577 value
= default_conversion (value
);
5578 constant_expression_warning (value
);
5582 error ("enumerator value for `%s' not integer constant",
5583 IDENTIFIER_POINTER (name
));
5588 /* Default based on previous value. */
5589 /* It should no longer be possible to have NON_LVALUE_EXPR
5593 value
= enum_next_value
;
5595 error ("overflow in enumeration values");
5598 if (pedantic
&& ! int_fits_type_p (value
, integer_type_node
))
5600 pedwarn ("ANSI C restricts enumerator values to range of `int'");
5601 value
= integer_zero_node
;
5604 /* Set basis for default for next value. */
5605 enum_next_value
= build_binary_op (PLUS_EXPR
, value
, integer_one_node
, 0);
5606 enum_overflow
= tree_int_cst_lt (enum_next_value
, value
);
5608 /* Now create a declaration for the enum value name. */
5610 type
= TREE_TYPE (value
);
5611 type
= type_for_size (MAX (TYPE_PRECISION (type
),
5612 TYPE_PRECISION (integer_type_node
)),
5614 || TYPE_PRECISION (type
) >= TYPE_PRECISION (integer_type_node
))
5615 && TREE_UNSIGNED (type
)));
5617 decl
= build_decl (CONST_DECL
, name
, type
);
5618 DECL_INITIAL (decl
) = value
;
5619 TREE_TYPE (value
) = type
;
5622 return tree_cons (decl
, value
, NULL_TREE
);
5625 /* Create the FUNCTION_DECL for a function definition.
5626 DECLSPECS, DECLARATOR, PREFIX_ATTRIBUTES and ATTRIBUTES are the parts of
5627 the declaration; they describe the function's name and the type it returns,
5628 but twisted together in a fashion that parallels the syntax of C.
5630 This function creates a binding context for the function body
5631 as well as setting up the FUNCTION_DECL in current_function_decl.
5633 Returns 1 on success. If the DECLARATOR is not suitable for a function
5634 (it defines a datum instead), we return 0, which tells
5635 yyparse to report a parse error. */
5638 start_function (declspecs
, declarator
, prefix_attributes
, attributes
)
5639 tree declarator
, declspecs
, prefix_attributes
, attributes
;
5641 tree decl1
, old_decl
;
5643 int old_immediate_size_expand
= immediate_size_expand
;
5645 current_function_returns_value
= 0; /* Assume, until we see it does. */
5646 current_function_returns_null
= 0;
5647 warn_about_return_type
= 0;
5648 current_extern_inline
= 0;
5649 c_function_varargs
= 0;
5651 shadowed_labels
= 0;
5653 /* Don't expand any sizes in the return type of the function. */
5654 immediate_size_expand
= 0;
5656 decl1
= grokdeclarator (declarator
, declspecs
, FUNCDEF
, 1);
5658 /* If the declarator is not suitable for a function definition,
5659 cause a syntax error. */
5662 immediate_size_expand
= old_immediate_size_expand
;
5666 decl_attributes (decl1
, prefix_attributes
, attributes
);
5668 announce_function (decl1
);
5670 if (!COMPLETE_OR_VOID_TYPE_P (TREE_TYPE (TREE_TYPE (decl1
))))
5672 error ("return-type is an incomplete type");
5673 /* Make it return void instead. */
5675 = build_function_type (void_type_node
,
5676 TYPE_ARG_TYPES (TREE_TYPE (decl1
)));
5679 if (warn_about_return_type
)
5680 warning ("return-type defaults to `int'");
5682 /* Save the parm names or decls from this function's declarator
5683 where store_parm_decls will find them. */
5684 current_function_parms
= last_function_parms
;
5685 current_function_parm_tags
= last_function_parm_tags
;
5687 /* Make the init_value nonzero so pushdecl knows this is not tentative.
5688 error_mark_node is replaced below (in poplevel) with the BLOCK. */
5689 DECL_INITIAL (decl1
) = error_mark_node
;
5691 /* If this definition isn't a prototype and we had a prototype declaration
5692 before, copy the arg type info from that prototype.
5693 But not if what we had before was a builtin function. */
5694 old_decl
= lookup_name_current_level (DECL_NAME (decl1
));
5695 if (old_decl
!= 0 && TREE_CODE (TREE_TYPE (old_decl
)) == FUNCTION_TYPE
5696 && !DECL_BUILT_IN (old_decl
)
5697 && (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (decl1
)))
5698 == TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (old_decl
))))
5699 && TYPE_ARG_TYPES (TREE_TYPE (decl1
)) == 0)
5701 TREE_TYPE (decl1
) = TREE_TYPE (old_decl
);
5702 current_function_prototype_file
= DECL_SOURCE_FILE (old_decl
);
5703 current_function_prototype_line
= DECL_SOURCE_LINE (old_decl
);
5706 /* If there is no explicit declaration, look for any out-of-scope implicit
5709 old_decl
= IDENTIFIER_IMPLICIT_DECL (DECL_NAME (decl1
));
5711 /* Optionally warn of old-fashioned def with no previous prototype. */
5712 if (warn_strict_prototypes
5713 && TYPE_ARG_TYPES (TREE_TYPE (decl1
)) == 0
5714 && !(old_decl
!= 0 && TYPE_ARG_TYPES (TREE_TYPE (old_decl
)) != 0))
5715 warning ("function declaration isn't a prototype");
5716 /* Optionally warn of any global def with no previous prototype. */
5717 else if (warn_missing_prototypes
5718 && TREE_PUBLIC (decl1
)
5719 && !(old_decl
!= 0 && TYPE_ARG_TYPES (TREE_TYPE (old_decl
)) != 0)
5720 && strcmp ("main", IDENTIFIER_POINTER (DECL_NAME (decl1
))))
5721 warning_with_decl (decl1
, "no previous prototype for `%s'");
5722 /* Optionally warn of any def with no previous prototype
5723 if the function has already been used. */
5724 else if (warn_missing_prototypes
5725 && old_decl
!= 0 && TREE_USED (old_decl
)
5726 && TYPE_ARG_TYPES (TREE_TYPE (old_decl
)) == 0)
5727 warning_with_decl (decl1
,
5728 "`%s' was used with no prototype before its definition");
5729 /* Optionally warn of any global def with no previous declaration. */
5730 else if (warn_missing_declarations
5731 && TREE_PUBLIC (decl1
)
5733 && strcmp ("main", IDENTIFIER_POINTER (DECL_NAME (decl1
))))
5734 warning_with_decl (decl1
, "no previous declaration for `%s'");
5735 /* Optionally warn of any def with no previous declaration
5736 if the function has already been used. */
5737 else if (warn_missing_declarations
5738 && old_decl
!= 0 && TREE_USED (old_decl
)
5739 && old_decl
== IDENTIFIER_IMPLICIT_DECL (DECL_NAME (decl1
)))
5740 warning_with_decl (decl1
,
5741 "`%s' was used with no declaration before its definition");
5743 /* This is a definition, not a reference.
5744 So normally clear DECL_EXTERNAL.
5745 However, `extern inline' acts like a declaration
5746 except for defining how to inline. So set DECL_EXTERNAL in that case. */
5747 DECL_EXTERNAL (decl1
) = current_extern_inline
;
5749 #ifdef SET_DEFAULT_DECL_ATTRIBUTES
5750 SET_DEFAULT_DECL_ATTRIBUTES (decl1
, attributes
);
5753 /* This function exists in static storage.
5754 (This does not mean `static' in the C sense!) */
5755 TREE_STATIC (decl1
) = 1;
5757 /* A nested function is not global. */
5758 if (current_function_decl
!= 0)
5759 TREE_PUBLIC (decl1
) = 0;
5761 /* Warn for unlikely, improbable, or stupid declarations of `main'. */
5763 && strcmp ("main", IDENTIFIER_POINTER (DECL_NAME (decl1
))) == 0)
5768 if (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (decl1
)))
5769 != integer_type_node
)
5770 pedwarn_with_decl (decl1
, "return type of `%s' is not `int'");
5772 for (args
= TYPE_ARG_TYPES (TREE_TYPE (decl1
)); args
;
5773 args
= TREE_CHAIN (args
))
5775 tree type
= args
? TREE_VALUE (args
) : 0;
5777 if (type
== void_type_node
)
5784 if (TYPE_MAIN_VARIANT (type
) != integer_type_node
)
5785 pedwarn_with_decl (decl1
,
5786 "first argument of `%s' should be `int'");
5790 if (TREE_CODE (type
) != POINTER_TYPE
5791 || TREE_CODE (TREE_TYPE (type
)) != POINTER_TYPE
5792 || (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (type
)))
5794 pedwarn_with_decl (decl1
,
5795 "second argument of `%s' should be `char **'");
5799 if (TREE_CODE (type
) != POINTER_TYPE
5800 || TREE_CODE (TREE_TYPE (type
)) != POINTER_TYPE
5801 || (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (type
)))
5803 pedwarn_with_decl (decl1
,
5804 "third argument of `%s' should probably be `char **'");
5809 /* It is intentional that this message does not mention the third
5810 argument, which is warned for only pedantically, because it's
5811 blessed by mention in an appendix of the standard. */
5812 if (argct
> 0 && (argct
< 2 || argct
> 3))
5813 pedwarn_with_decl (decl1
, "`%s' takes only zero or two arguments");
5815 if (argct
== 3 && pedantic
)
5816 pedwarn_with_decl (decl1
, "third argument of `%s' is deprecated");
5818 if (! TREE_PUBLIC (decl1
))
5819 pedwarn_with_decl (decl1
, "`%s' is normally a non-static function");
5822 /* Record the decl so that the function name is defined.
5823 If we already have a decl for this name, and it is a FUNCTION_DECL,
5824 use the old decl. */
5826 current_function_decl
= pushdecl (decl1
);
5829 declare_parm_level (1);
5830 current_binding_level
->subblocks_tag_transparent
= 1;
5832 make_function_rtl (current_function_decl
);
5834 restype
= TREE_TYPE (TREE_TYPE (current_function_decl
));
5835 /* Promote the value to int before returning it. */
5836 if (C_PROMOTING_INTEGER_TYPE_P (restype
))
5838 /* It retains unsignedness if traditional
5839 or if not really getting wider. */
5840 if (TREE_UNSIGNED (restype
)
5841 && (flag_traditional
5842 || (TYPE_PRECISION (restype
)
5843 == TYPE_PRECISION (integer_type_node
))))
5844 restype
= unsigned_type_node
;
5846 restype
= integer_type_node
;
5848 DECL_RESULT (current_function_decl
)
5849 = build_decl (RESULT_DECL
, NULL_TREE
, restype
);
5851 /* If this fcn was already referenced via a block-scope `extern' decl
5852 (or an implicit decl), propagate certain information about the usage. */
5853 if (TREE_ADDRESSABLE (DECL_ASSEMBLER_NAME (current_function_decl
)))
5854 TREE_ADDRESSABLE (current_function_decl
) = 1;
5856 immediate_size_expand
= old_immediate_size_expand
;
5861 /* Record that this function is going to be a varargs function.
5862 This is called before store_parm_decls, which is too early
5863 to call mark_varargs directly. */
5868 c_function_varargs
= 1;
5871 /* Store the parameter declarations into the current function declaration.
5872 This is called after parsing the parameter declarations, before
5873 digesting the body of the function.
5875 For an old-style definition, modify the function's type
5876 to specify at least the number of arguments. */
5881 register tree fndecl
= current_function_decl
;
5884 /* This is either a chain of PARM_DECLs (if a prototype was used)
5885 or a list of IDENTIFIER_NODEs (for an old-fashioned C definition). */
5886 tree specparms
= current_function_parms
;
5888 /* This is a list of types declared among parms in a prototype. */
5889 tree parmtags
= current_function_parm_tags
;
5891 /* This is a chain of PARM_DECLs from old-style parm declarations. */
5892 register tree parmdecls
= getdecls ();
5894 /* This is a chain of any other decls that came in among the parm
5895 declarations. If a parm is declared with enum {foo, bar} x;
5896 then CONST_DECLs for foo and bar are put here. */
5899 /* Nonzero if this definition is written with a prototype. */
5902 if (specparms
!= 0 && TREE_CODE (specparms
) != TREE_LIST
)
5904 /* This case is when the function was defined with an ANSI prototype.
5905 The parms already have decls, so we need not do anything here
5906 except record them as in effect
5907 and complain if any redundant old-style parm decls were written. */
5918 error_with_decl (fndecl
,
5919 "parm types given both in parmlist and separately");
5920 /* Get rid of the erroneous decls; don't keep them on
5921 the list of parms, since they might not be PARM_DECLs. */
5922 for (decl
= current_binding_level
->names
;
5923 decl
; decl
= TREE_CHAIN (decl
))
5924 if (DECL_NAME (decl
))
5925 IDENTIFIER_LOCAL_VALUE (DECL_NAME (decl
)) = 0;
5926 for (link
= current_binding_level
->shadowed
;
5927 link
; link
= TREE_CHAIN (link
))
5928 IDENTIFIER_LOCAL_VALUE (TREE_PURPOSE (link
)) = TREE_VALUE (link
);
5929 current_binding_level
->names
= 0;
5930 current_binding_level
->shadowed
= 0;
5933 specparms
= nreverse (specparms
);
5934 for (parm
= specparms
; parm
; parm
= next
)
5936 next
= TREE_CHAIN (parm
);
5937 if (TREE_CODE (parm
) == PARM_DECL
)
5939 if (DECL_NAME (parm
) == 0)
5940 error_with_decl (parm
, "parameter name omitted");
5941 else if (TREE_CODE (TREE_TYPE (parm
)) != ERROR_MARK
5942 && (TYPE_MAIN_VARIANT (TREE_TYPE (parm
))
5945 error_with_decl (parm
, "parameter `%s' declared void");
5946 /* Change the type to error_mark_node so this parameter
5947 will be ignored by assign_parms. */
5948 TREE_TYPE (parm
) = error_mark_node
;
5954 /* If we find an enum constant or a type tag,
5955 put it aside for the moment. */
5956 TREE_CHAIN (parm
) = 0;
5957 others
= chainon (others
, parm
);
5961 /* Get the decls in their original chain order
5962 and record in the function. */
5963 DECL_ARGUMENTS (fndecl
) = getdecls ();
5966 /* If this function takes a variable number of arguments,
5967 add a phony parameter to the end of the parm list,
5968 to represent the position of the first unnamed argument. */
5969 if (TREE_VALUE (tree_last (TYPE_ARG_TYPES (TREE_TYPE (fndecl
))))
5972 tree dummy
= build_decl (PARM_DECL
, NULL_TREE
, void_type_node
);
5973 /* Let's hope the address of the unnamed parm
5974 won't depend on its type. */
5975 TREE_TYPE (dummy
) = integer_type_node
;
5976 DECL_ARG_TYPE (dummy
) = integer_type_node
;
5977 DECL_ARGUMENTS (fndecl
)
5978 = chainon (DECL_ARGUMENTS (fndecl
), dummy
);
5982 /* Now pushdecl the enum constants. */
5983 for (parm
= others
; parm
; parm
= next
)
5985 next
= TREE_CHAIN (parm
);
5986 if (DECL_NAME (parm
) == 0)
5988 else if (TYPE_MAIN_VARIANT (TREE_TYPE (parm
)) == void_type_node
)
5990 else if (TREE_CODE (parm
) != PARM_DECL
)
5994 storetags (chainon (parmtags
, gettags ()));
5998 /* SPECPARMS is an identifier list--a chain of TREE_LIST nodes
5999 each with a parm name as the TREE_VALUE.
6001 PARMDECLS is a chain of declarations for parameters.
6002 Warning! It can also contain CONST_DECLs which are not parameters
6003 but are names of enumerators of any enum types
6004 declared among the parameters.
6006 First match each formal parameter name with its declaration.
6007 Associate decls with the names and store the decls
6008 into the TREE_PURPOSE slots. */
6010 /* We use DECL_WEAK as a flag to show which parameters have been
6011 seen already since it is not used on PARM_DECL or CONST_DECL. */
6012 for (parm
= parmdecls
; parm
; parm
= TREE_CHAIN (parm
))
6013 DECL_WEAK (parm
) = 0;
6015 for (parm
= specparms
; parm
; parm
= TREE_CHAIN (parm
))
6017 register tree tail
, found
= NULL
;
6019 if (TREE_VALUE (parm
) == 0)
6021 error_with_decl (fndecl
,
6022 "parameter name missing from parameter list");
6023 TREE_PURPOSE (parm
) = 0;
6027 /* See if any of the parmdecls specifies this parm by name.
6028 Ignore any enumerator decls. */
6029 for (tail
= parmdecls
; tail
; tail
= TREE_CHAIN (tail
))
6030 if (DECL_NAME (tail
) == TREE_VALUE (parm
)
6031 && TREE_CODE (tail
) == PARM_DECL
)
6037 /* If declaration already marked, we have a duplicate name.
6038 Complain, and don't use this decl twice. */
6039 if (found
&& DECL_WEAK (found
))
6041 error_with_decl (found
, "multiple parameters named `%s'");
6045 /* If the declaration says "void", complain and ignore it. */
6046 if (found
&& TYPE_MAIN_VARIANT (TREE_TYPE (found
)) == void_type_node
)
6048 error_with_decl (found
, "parameter `%s' declared void");
6049 TREE_TYPE (found
) = integer_type_node
;
6050 DECL_ARG_TYPE (found
) = integer_type_node
;
6051 layout_decl (found
, 0);
6054 /* Traditionally, a parm declared float is actually a double. */
6055 if (found
&& flag_traditional
6056 && TYPE_MAIN_VARIANT (TREE_TYPE (found
)) == float_type_node
)
6058 TREE_TYPE (found
) = double_type_node
;
6059 DECL_ARG_TYPE (found
) = double_type_node
;
6060 layout_decl (found
, 0);
6063 /* If no declaration found, default to int. */
6066 found
= build_decl (PARM_DECL
, TREE_VALUE (parm
),
6068 DECL_ARG_TYPE (found
) = TREE_TYPE (found
);
6069 DECL_SOURCE_LINE (found
) = DECL_SOURCE_LINE (fndecl
);
6070 DECL_SOURCE_FILE (found
) = DECL_SOURCE_FILE (fndecl
);
6072 warning_with_decl (found
, "type of `%s' defaults to `int'");
6076 TREE_PURPOSE (parm
) = found
;
6078 /* Mark this decl as "already found" */
6079 DECL_WEAK (found
) = 1;
6082 /* Put anything which is on the parmdecls chain and which is
6083 not a PARM_DECL onto the list NONPARMS. (The types of
6084 non-parm things which might appear on the list include
6085 enumerators and NULL-named TYPE_DECL nodes.) Complain about
6086 any actual PARM_DECLs not matched with any names. */
6089 for (parm
= parmdecls
; parm
; )
6091 tree next
= TREE_CHAIN (parm
);
6092 TREE_CHAIN (parm
) = 0;
6094 if (TREE_CODE (parm
) != PARM_DECL
)
6095 nonparms
= chainon (nonparms
, parm
);
6098 /* Complain about args with incomplete types. */
6099 if (!COMPLETE_TYPE_P (TREE_TYPE (parm
)))
6101 error_with_decl (parm
, "parameter `%s' has incomplete type");
6102 TREE_TYPE (parm
) = error_mark_node
;
6105 if (! DECL_WEAK (parm
))
6107 error_with_decl (parm
,
6108 "declaration for parameter `%s' but no such parameter");
6109 /* Pretend the parameter was not missing.
6110 This gets us to a standard state and minimizes
6111 further error messages. */
6113 = chainon (specparms
,
6114 tree_cons (parm
, NULL_TREE
, NULL_TREE
));
6121 /* Chain the declarations together in the order of the list of names. */
6122 /* Store that chain in the function decl, replacing the list of names. */
6124 DECL_ARGUMENTS (fndecl
) = 0;
6127 for (last
= 0; parm
; parm
= TREE_CHAIN (parm
))
6128 if (TREE_PURPOSE (parm
))
6131 DECL_ARGUMENTS (fndecl
) = TREE_PURPOSE (parm
);
6133 TREE_CHAIN (last
) = TREE_PURPOSE (parm
);
6134 last
= TREE_PURPOSE (parm
);
6135 TREE_CHAIN (last
) = 0;
6139 /* If there was a previous prototype,
6140 set the DECL_ARG_TYPE of each argument according to
6141 the type previously specified, and report any mismatches. */
6143 if (TYPE_ARG_TYPES (TREE_TYPE (fndecl
)))
6146 for (parm
= DECL_ARGUMENTS (fndecl
),
6147 type
= TYPE_ARG_TYPES (TREE_TYPE (fndecl
));
6148 parm
|| (type
&& (TYPE_MAIN_VARIANT (TREE_VALUE (type
))
6149 != void_type_node
));
6150 parm
= TREE_CHAIN (parm
), type
= TREE_CHAIN (type
))
6152 if (parm
== 0 || type
== 0
6153 || TYPE_MAIN_VARIANT (TREE_VALUE (type
)) == void_type_node
)
6155 error ("number of arguments doesn't match prototype");
6156 error_with_file_and_line (current_function_prototype_file
,
6157 current_function_prototype_line
,
6158 "prototype declaration");
6161 /* Type for passing arg must be consistent
6162 with that declared for the arg. */
6163 if (! comptypes (DECL_ARG_TYPE (parm
), TREE_VALUE (type
)))
6165 if (TYPE_MAIN_VARIANT (TREE_TYPE (parm
))
6166 == TYPE_MAIN_VARIANT (TREE_VALUE (type
)))
6168 /* Adjust argument to match prototype. E.g. a previous
6169 `int foo(float);' prototype causes
6170 `int foo(x) float x; {...}' to be treated like
6171 `int foo(float x) {...}'. This is particularly
6172 useful for argument types like uid_t. */
6173 DECL_ARG_TYPE (parm
) = TREE_TYPE (parm
);
6175 if (PROMOTE_PROTOTYPES
6176 && (TREE_CODE (TREE_TYPE (parm
)) == INTEGER_TYPE
6177 || TREE_CODE (TREE_TYPE (parm
)) == ENUMERAL_TYPE
)
6178 && TYPE_PRECISION (TREE_TYPE (parm
))
6179 < TYPE_PRECISION (integer_type_node
))
6180 DECL_ARG_TYPE (parm
) = integer_type_node
;
6184 pedwarn ("promoted argument `%s' doesn't match prototype",
6185 IDENTIFIER_POINTER (DECL_NAME (parm
)));
6186 warning_with_file_and_line
6187 (current_function_prototype_file
,
6188 current_function_prototype_line
,
6189 "prototype declaration");
6192 /* If -traditional, allow `int' argument to match
6193 `unsigned' prototype. */
6194 else if (! (flag_traditional
6195 && TYPE_MAIN_VARIANT (TREE_TYPE (parm
)) == integer_type_node
6196 && TYPE_MAIN_VARIANT (TREE_VALUE (type
)) == unsigned_type_node
))
6198 error ("argument `%s' doesn't match prototype",
6199 IDENTIFIER_POINTER (DECL_NAME (parm
)));
6200 error_with_file_and_line (current_function_prototype_file
,
6201 current_function_prototype_line
,
6202 "prototype declaration");
6206 TYPE_ACTUAL_ARG_TYPES (TREE_TYPE (fndecl
)) = 0;
6209 /* Otherwise, create a prototype that would match. */
6213 tree actual
= 0, last
= 0, type
;
6215 for (parm
= DECL_ARGUMENTS (fndecl
); parm
; parm
= TREE_CHAIN (parm
))
6217 type
= tree_cons (NULL_TREE
, DECL_ARG_TYPE (parm
), NULL_TREE
);
6219 TREE_CHAIN (last
) = type
;
6224 type
= tree_cons (NULL_TREE
, void_type_node
, NULL_TREE
);
6226 TREE_CHAIN (last
) = type
;
6230 /* We are going to assign a new value for the TYPE_ACTUAL_ARG_TYPES
6231 of the type of this function, but we need to avoid having this
6232 affect the types of other similarly-typed functions, so we must
6233 first force the generation of an identical (but separate) type
6234 node for the relevant function type. The new node we create
6235 will be a variant of the main variant of the original function
6238 TREE_TYPE (fndecl
) = build_type_copy (TREE_TYPE (fndecl
));
6240 TYPE_ACTUAL_ARG_TYPES (TREE_TYPE (fndecl
)) = actual
;
6243 /* Now store the final chain of decls for the arguments
6244 as the decl-chain of the current lexical scope.
6245 Put the enumerators in as well, at the front so that
6246 DECL_ARGUMENTS is not modified. */
6248 storedecls (chainon (nonparms
, DECL_ARGUMENTS (fndecl
)));
6251 /* Make sure the binding level for the top of the function body
6252 gets a BLOCK if there are any in the function.
6253 Otherwise, the dbx output is wrong. */
6255 keep_next_if_subblocks
= 1;
6257 /* ??? This might be an improvement,
6258 but needs to be thought about some more. */
6260 keep_next_level_flag
= 1;
6263 /* Write a record describing this function definition to the prototypes
6264 file (if requested). */
6266 gen_aux_info_record (fndecl
, 1, 0, prototype
);
6268 /* Initialize the RTL code for the function. */
6270 init_function_start (fndecl
, input_filename
, lineno
);
6272 /* If this is a varargs function, inform function.c. */
6274 if (c_function_varargs
)
6277 /* Declare __FUNCTION__ and __PRETTY_FUNCTION__ for this function. */
6279 declare_function_name ();
6281 /* Set up parameters and prepare for return, for the function. */
6283 expand_function_start (fndecl
, 0);
6285 /* If this function is `main', emit a call to `__main'
6286 to run global initializers, etc. */
6287 if (DECL_NAME (fndecl
)
6288 && strcmp (IDENTIFIER_POINTER (DECL_NAME (fndecl
)), "main") == 0
6289 && DECL_CONTEXT (fndecl
) == NULL_TREE
)
6290 expand_main_function ();
6293 /* SPECPARMS is an identifier list--a chain of TREE_LIST nodes
6294 each with a parm name as the TREE_VALUE. A null pointer as TREE_VALUE
6295 stands for an ellipsis in the identifier list.
6297 PARMLIST is the data returned by get_parm_info for the
6298 parmlist that follows the semicolon.
6300 We return a value of the same sort that get_parm_info returns,
6301 except that it describes the combination of identifiers and parmlist. */
6304 combine_parm_decls (specparms
, parmlist
, void_at_end
)
6305 tree specparms
, parmlist
;
6308 register tree fndecl
= current_function_decl
;
6311 tree parmdecls
= TREE_PURPOSE (parmlist
);
6313 /* This is a chain of any other decls that came in among the parm
6314 declarations. They were separated already by get_parm_info,
6315 so we just need to keep them separate. */
6316 tree nonparms
= TREE_VALUE (parmlist
);
6320 for (parm
= parmdecls
; parm
; parm
= TREE_CHAIN (parm
))
6321 DECL_WEAK (parm
) = 0;
6323 for (parm
= specparms
; parm
; parm
= TREE_CHAIN (parm
))
6325 register tree tail
, found
= NULL
;
6327 /* See if any of the parmdecls specifies this parm by name. */
6328 for (tail
= parmdecls
; tail
; tail
= TREE_CHAIN (tail
))
6329 if (DECL_NAME (tail
) == TREE_VALUE (parm
))
6335 /* If declaration already marked, we have a duplicate name.
6336 Complain, and don't use this decl twice. */
6337 if (found
&& DECL_WEAK (found
))
6339 error_with_decl (found
, "multiple parameters named `%s'");
6343 /* If the declaration says "void", complain and ignore it. */
6344 if (found
&& TYPE_MAIN_VARIANT (TREE_TYPE (found
)) == void_type_node
)
6346 error_with_decl (found
, "parameter `%s' declared void");
6347 TREE_TYPE (found
) = integer_type_node
;
6348 DECL_ARG_TYPE (found
) = integer_type_node
;
6349 layout_decl (found
, 0);
6352 /* Traditionally, a parm declared float is actually a double. */
6353 if (found
&& flag_traditional
6354 && TYPE_MAIN_VARIANT (TREE_TYPE (found
)) == float_type_node
)
6356 TREE_TYPE (found
) = double_type_node
;
6357 DECL_ARG_TYPE (found
) = double_type_node
;
6358 layout_decl (found
, 0);
6361 /* If no declaration found, default to int. */
6364 found
= build_decl (PARM_DECL
, TREE_VALUE (parm
),
6366 DECL_ARG_TYPE (found
) = TREE_TYPE (found
);
6367 DECL_SOURCE_LINE (found
) = DECL_SOURCE_LINE (fndecl
);
6368 DECL_SOURCE_FILE (found
) = DECL_SOURCE_FILE (fndecl
);
6369 error_with_decl (found
, "type of parameter `%s' is not declared");
6373 TREE_PURPOSE (parm
) = found
;
6375 /* Mark this decl as "already found". */
6376 DECL_WEAK (found
) = 1;
6379 /* Complain about any actual PARM_DECLs not matched with any names. */
6381 for (parm
= parmdecls
; parm
; )
6383 tree next
= TREE_CHAIN (parm
);
6384 TREE_CHAIN (parm
) = 0;
6386 /* Complain about args with incomplete types. */
6387 if (!COMPLETE_TYPE_P (TREE_TYPE (parm
)))
6389 error_with_decl (parm
, "parameter `%s' has incomplete type");
6390 TREE_TYPE (parm
) = error_mark_node
;
6393 if (! DECL_WEAK (parm
))
6395 error_with_decl (parm
,
6396 "declaration for parameter `%s' but no such parameter");
6397 /* Pretend the parameter was not missing.
6398 This gets us to a standard state and minimizes
6399 further error messages. */
6401 = chainon (specparms
,
6402 tree_cons (parm
, NULL_TREE
, NULL_TREE
));
6408 /* Chain the declarations together in the order of the list of names.
6409 At the same time, build up a list of their types, in reverse order. */
6415 for (last
= 0; parm
; parm
= TREE_CHAIN (parm
))
6416 if (TREE_PURPOSE (parm
))
6419 parmdecls
= TREE_PURPOSE (parm
);
6421 TREE_CHAIN (last
) = TREE_PURPOSE (parm
);
6422 last
= TREE_PURPOSE (parm
);
6423 TREE_CHAIN (last
) = 0;
6425 types
= tree_cons (NULL_TREE
, TREE_TYPE (parm
), types
);
6430 return tree_cons (parmdecls
, nonparms
,
6431 nreverse (tree_cons (NULL_TREE
, void_type_node
, types
)));
6433 return tree_cons (parmdecls
, nonparms
, nreverse (types
));
6436 /* Finish up a function declaration and compile that function
6437 all the way to assembler language output. The free the storage
6438 for the function definition.
6440 This is called after parsing the body of the function definition.
6442 NESTED is nonzero if the function being finished is nested in another. */
6445 finish_function (nested
)
6448 register tree fndecl
= current_function_decl
;
6450 /* TREE_READONLY (fndecl) = 1;
6451 This caused &foo to be of type ptr-to-const-function
6452 which then got a warning when stored in a ptr-to-function variable. */
6455 BLOCK_SUPERCONTEXT (DECL_INITIAL (fndecl
)) = fndecl
;
6457 /* Must mark the RESULT_DECL as being in this function. */
6459 DECL_CONTEXT (DECL_RESULT (fndecl
)) = fndecl
;
6461 /* Obey `register' declarations if `setjmp' is called in this fn. */
6462 if (flag_traditional
&& current_function_calls_setjmp
)
6464 setjmp_protect (DECL_INITIAL (fndecl
));
6465 setjmp_protect_args ();
6468 if (! strcmp (IDENTIFIER_POINTER (DECL_NAME (fndecl
)), "main"))
6470 if (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (fndecl
)))
6471 != integer_type_node
)
6473 /* If warn_main is 1 (-Wmain) or 2 (-Wall), we have already warned.
6474 If warn_main is -1 (-Wno-main) we don't want to be warned. */
6476 pedwarn_with_decl (fndecl
, "return type of `%s' is not `int'");
6480 #ifdef DEFAULT_MAIN_RETURN
6481 /* Make it so that `main' always returns success by default. */
6482 DEFAULT_MAIN_RETURN
;
6487 /* Generate rtl for function exit. */
6488 expand_function_end (input_filename
, lineno
, 0);
6490 /* So we can tell if jump_optimize sets it to 1. */
6493 /* If this is a nested function, protect the local variables in the stack
6494 above us from being collected while we're compiling this function. */
6496 ggc_push_context ();
6498 /* Run the optimizers and output the assembler code for this function. */
6499 rest_of_compilation (fndecl
);
6501 /* Undo the GC context switch. */
6505 current_function_returns_null
|= can_reach_end
;
6507 if (warn_missing_noreturn
6508 && !TREE_THIS_VOLATILE (fndecl
)
6509 && !current_function_returns_null
6510 && !current_function_returns_value
)
6511 warning ("function might be possible candidate for attribute `noreturn'");
6513 if (TREE_THIS_VOLATILE (fndecl
) && current_function_returns_null
)
6514 warning ("`noreturn' function does return");
6515 else if (warn_return_type
&& can_reach_end
6516 && TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (fndecl
))) != void_type_node
)
6517 /* If this function returns non-void and control can drop through,
6519 warning ("control reaches end of non-void function");
6520 /* With just -W, complain only if function returns both with
6521 and without a value. */
6522 else if (extra_warnings
6523 && current_function_returns_value
&& current_function_returns_null
)
6524 warning ("this function may return with or without a value");
6526 /* If requested, warn about function definitions where the function will
6527 return a value (usually of some struct or union type) which itself will
6528 take up a lot of stack space. */
6530 if (warn_larger_than
&& !DECL_EXTERNAL (fndecl
) && TREE_TYPE (fndecl
))
6532 tree ret_type
= TREE_TYPE (TREE_TYPE (fndecl
));
6534 if (ret_type
&& TREE_CODE (TYPE_SIZE_UNIT (ret_type
)) == INTEGER_CST
6535 && 0 < compare_tree_int (TYPE_SIZE_UNIT (ret_type
),
6538 unsigned int size_as_int
6539 = TREE_INT_CST_LOW (TYPE_SIZE_UNIT (ret_type
));
6541 if (compare_tree_int (TYPE_SIZE_UNIT (ret_type
), size_as_int
) == 0)
6542 warning_with_decl (fndecl
,
6543 "size of return value of `%s' is %u bytes",
6546 warning_with_decl (fndecl
,
6547 "size of return value of `%s' is larger than %d bytes",
6552 if (DECL_SAVED_INSNS (fndecl
) == 0 && ! nested
)
6554 /* Stop pointing to the local nodes about to be freed.
6555 But DECL_INITIAL must remain nonzero so we know this
6556 was an actual function definition.
6557 For a nested function, this is done in pop_c_function_context.
6558 If rest_of_compilation set this to 0, leave it 0. */
6559 if (DECL_INITIAL (fndecl
) != 0)
6560 DECL_INITIAL (fndecl
) = error_mark_node
;
6562 DECL_ARGUMENTS (fndecl
) = 0;
6565 if (DECL_STATIC_CONSTRUCTOR (fndecl
))
6567 #ifndef ASM_OUTPUT_CONSTRUCTOR
6568 if (! flag_gnu_linker
)
6569 static_ctors
= tree_cons (NULL_TREE
, fndecl
, static_ctors
);
6572 assemble_constructor (IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (fndecl
)));
6575 if (DECL_STATIC_DESTRUCTOR (fndecl
))
6577 #ifndef ASM_OUTPUT_DESTRUCTOR
6578 if (! flag_gnu_linker
)
6579 static_dtors
= tree_cons (NULL_TREE
, fndecl
, static_dtors
);
6582 assemble_destructor (IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (fndecl
)));
6587 /* Let the error reporting routines know that we're outside a
6588 function. For a nested function, this value is used in
6589 pop_c_function_context and then reset via pop_function_context. */
6590 current_function_decl
= NULL
;
6594 /* Save and restore the variables in this file and elsewhere
6595 that keep track of the progress of compilation of the current function.
6596 Used for nested functions. */
6598 struct language_function
6601 tree shadowed_labels
;
6604 int warn_about_return_type
;
6606 struct binding_level
*binding_level
;
6609 /* Save and reinitialize the variables
6610 used during compilation of a C function. */
6613 push_c_function_context (f
)
6616 struct language_function
*p
;
6617 p
= (struct language_function
*) xmalloc (sizeof (struct language_function
));
6620 p
->named_labels
= named_labels
;
6621 p
->shadowed_labels
= shadowed_labels
;
6622 p
->returns_value
= current_function_returns_value
;
6623 p
->returns_null
= current_function_returns_null
;
6624 p
->warn_about_return_type
= warn_about_return_type
;
6625 p
->extern_inline
= current_extern_inline
;
6626 p
->binding_level
= current_binding_level
;
6629 /* Restore the variables used during compilation of a C function. */
6632 pop_c_function_context (f
)
6635 struct language_function
*p
= f
->language
;
6638 /* Bring back all the labels that were shadowed. */
6639 for (link
= shadowed_labels
; link
; link
= TREE_CHAIN (link
))
6640 if (DECL_NAME (TREE_VALUE (link
)) != 0)
6641 IDENTIFIER_LABEL_VALUE (DECL_NAME (TREE_VALUE (link
)))
6642 = TREE_VALUE (link
);
6644 if (DECL_SAVED_INSNS (current_function_decl
) == 0)
6646 /* Stop pointing to the local nodes about to be freed. */
6647 /* But DECL_INITIAL must remain nonzero so we know this
6648 was an actual function definition. */
6649 DECL_INITIAL (current_function_decl
) = error_mark_node
;
6650 DECL_ARGUMENTS (current_function_decl
) = 0;
6653 named_labels
= p
->named_labels
;
6654 shadowed_labels
= p
->shadowed_labels
;
6655 current_function_returns_value
= p
->returns_value
;
6656 current_function_returns_null
= p
->returns_null
;
6657 warn_about_return_type
= p
->warn_about_return_type
;
6658 current_extern_inline
= p
->extern_inline
;
6659 current_binding_level
= p
->binding_level
;
6665 /* Mark the language specific parts of F for GC. */
6667 mark_c_function_context (f
)
6670 struct language_function
*p
= f
->language
;
6675 ggc_mark_tree (p
->shadowed_labels
);
6676 ggc_mark_tree (p
->named_labels
);
6677 mark_binding_level (&p
->binding_level
);
6680 /* integrate_decl_tree calls this function, but since we don't use the
6681 DECL_LANG_SPECIFIC field, this is a no-op. */
6684 copy_lang_decl (node
)
6685 tree node ATTRIBUTE_UNUSED
;
6689 /* Mark ARG for GC. */
6691 lang_mark_false_label_stack (arg
)
6692 struct label_node
*arg
;
6694 /* C doesn't use false_label_stack. It better be NULL. */
6699 /* Mark the language specific bits in T for GC. */
6704 if (TREE_CODE (t
) == IDENTIFIER_NODE
)
6706 struct lang_identifier
*i
= (struct lang_identifier
*) t
;
6707 ggc_mark_tree (i
->global_value
);
6708 ggc_mark_tree (i
->local_value
);
6709 ggc_mark_tree (i
->label_value
);
6710 ggc_mark_tree (i
->implicit_decl
);
6711 ggc_mark_tree (i
->error_locus
);
6712 ggc_mark_tree (i
->limbo_value
);
6714 else if (TYPE_P (t
) && TYPE_LANG_SPECIFIC (t
))
6715 ggc_mark (TYPE_LANG_SPECIFIC (t
));