* class.c (check_bitfield_decl): New function, split out from
[official-gcc.git] / gcc / c-decl.c
blob60e6e0e8563a24ed09868f98f278d63c7856d595
1 /* Process declarations and variables for C compiler.
2 Copyright (C) 1988, 92-98, 1999 Free Software Foundation, Inc.
4 This file is part of GNU CC.
6 GNU CC is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
11 GNU CC is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU CC; see the file COPYING. If not, write to
18 the Free Software Foundation, 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
22 /* Process declarations and symbol lookup for C front end.
23 Also constructs types; the standard scalar types at initialization,
24 and structure, union, array and enum types when they are declared. */
26 /* ??? not all decl nodes are given the most useful possible
27 line numbers. For example, the CONST_DECLs for enum values. */
29 #include "config.h"
30 #include "system.h"
31 #include "tree.h"
32 #include "flags.h"
33 #include "function.h"
34 #include "output.h"
35 #include "c-tree.h"
36 #include "c-lex.h"
37 #include "toplev.h"
38 #include "defaults.h"
39 #include "ggc.h"
41 #if USE_CPPLIB
42 #include "cpplib.h"
43 extern cpp_reader parse_in;
44 #endif
46 /* In grokdeclarator, distinguish syntactic contexts of declarators. */
47 enum decl_context
48 { NORMAL, /* Ordinary declaration */
49 FUNCDEF, /* Function definition */
50 PARM, /* Declaration of parm before function body */
51 FIELD, /* Declaration inside struct or union */
52 BITFIELD, /* Likewise but with specified width */
53 TYPENAME}; /* Typename (inside cast or sizeof) */
55 /* We let tm.h override the types used here, to handle trivial differences
56 such as the choice of unsigned int or long unsigned int for size_t.
57 When machines start needing nontrivial differences in the size type,
58 it would be best to do something here to figure out automatically
59 from other information what type to use. */
61 #ifndef SIZE_TYPE
62 #define SIZE_TYPE "long unsigned int"
63 #endif
65 #ifndef PTRDIFF_TYPE
66 #define PTRDIFF_TYPE "long int"
67 #endif
69 #ifndef WCHAR_TYPE
70 #define WCHAR_TYPE "int"
71 #endif
73 /* Do GC. */
74 int ggc_p = 1;
76 /* Nonzero if we have seen an invalid cross reference
77 to a struct, union, or enum, but not yet printed the message. */
79 tree pending_invalid_xref;
80 /* File and line to appear in the eventual error message. */
81 char *pending_invalid_xref_file;
82 int pending_invalid_xref_line;
84 /* While defining an enum type, this is 1 plus the last enumerator
85 constant value. Note that will do not have to save this or `enum_overflow'
86 around nested function definition since such a definition could only
87 occur in an enum value expression and we don't use these variables in
88 that case. */
90 static tree enum_next_value;
92 /* Nonzero means that there was overflow computing enum_next_value. */
94 static int enum_overflow;
96 /* Parsing a function declarator leaves a list of parameter names
97 or a chain or parameter decls here. */
99 static tree last_function_parms;
101 /* Parsing a function declarator leaves here a chain of structure
102 and enum types declared in the parmlist. */
104 static tree last_function_parm_tags;
106 /* After parsing the declarator that starts a function definition,
107 `start_function' puts here the list of parameter names or chain of decls.
108 `store_parm_decls' finds it here. */
110 static tree current_function_parms;
112 /* Similar, for last_function_parm_tags. */
113 static tree current_function_parm_tags;
115 /* Similar, for the file and line that the prototype came from if this is
116 an old-style definition. */
117 static char *current_function_prototype_file;
118 static int current_function_prototype_line;
120 /* A list (chain of TREE_LIST nodes) of all LABEL_DECLs in the function
121 that have names. Here so we can clear out their names' definitions
122 at the end of the function. */
124 static tree named_labels;
126 /* A list of LABEL_DECLs from outer contexts that are currently shadowed. */
128 static tree shadowed_labels;
130 /* Nonzero when store_parm_decls is called indicates a varargs function.
131 Value not meaningful after store_parm_decls. */
133 static int c_function_varargs;
135 /* The FUNCTION_DECL for the function currently being compiled,
136 or 0 if between functions. */
137 tree current_function_decl;
139 /* Set to 0 at beginning of a function definition, set to 1 if
140 a return statement that specifies a return value is seen. */
142 int current_function_returns_value;
144 /* Set to 0 at beginning of a function definition, set to 1 if
145 a return statement with no argument is seen. */
147 int current_function_returns_null;
149 /* Set to nonzero by `grokdeclarator' for a function
150 whose return type is defaulted, if warnings for this are desired. */
152 static int warn_about_return_type;
154 /* Nonzero when starting a function declared `extern inline'. */
156 static int current_extern_inline;
158 /* For each binding contour we allocate a binding_level structure
159 * which records the names defined in that contour.
160 * Contours include:
161 * 0) the global one
162 * 1) one for each function definition,
163 * where internal declarations of the parameters appear.
164 * 2) one for each compound statement,
165 * to record its declarations.
167 * The current meaning of a name can be found by searching the levels from
168 * the current one out to the global one.
171 /* Note that the information in the `names' component of the global contour
172 is duplicated in the IDENTIFIER_GLOBAL_VALUEs of all identifiers. */
174 struct binding_level
176 /* A chain of _DECL nodes for all variables, constants, functions,
177 and typedef types. These are in the reverse of the order supplied.
179 tree names;
181 /* A list of structure, union and enum definitions,
182 * for looking up tag names.
183 * It is a chain of TREE_LIST nodes, each of whose TREE_PURPOSE is a name,
184 * or NULL_TREE; and whose TREE_VALUE is a RECORD_TYPE, UNION_TYPE,
185 * or ENUMERAL_TYPE node.
187 tree tags;
189 /* For each level, a list of shadowed outer-level local definitions
190 to be restored when this level is popped.
191 Each link is a TREE_LIST whose TREE_PURPOSE is an identifier and
192 whose TREE_VALUE is its old definition (a kind of ..._DECL node). */
193 tree shadowed;
195 /* For each level (except not the global one),
196 a chain of BLOCK nodes for all the levels
197 that were entered and exited one level down. */
198 tree blocks;
200 /* The BLOCK node for this level, if one has been preallocated.
201 If 0, the BLOCK is allocated (if needed) when the level is popped. */
202 tree this_block;
204 /* The binding level which this one is contained in (inherits from). */
205 struct binding_level *level_chain;
207 /* Nonzero for the level that holds the parameters of a function. */
208 char parm_flag;
210 /* Nonzero if this level "doesn't exist" for tags. */
211 char tag_transparent;
213 /* Nonzero if sublevels of this level "don't exist" for tags.
214 This is set in the parm level of a function definition
215 while reading the function body, so that the outermost block
216 of the function body will be tag-transparent. */
217 char subblocks_tag_transparent;
219 /* Nonzero means make a BLOCK for this level regardless of all else. */
220 char keep;
222 /* Nonzero means make a BLOCK if this level has any subblocks. */
223 char keep_if_subblocks;
225 /* Number of decls in `names' that have incomplete
226 structure or union types. */
227 int n_incomplete;
229 /* A list of decls giving the (reversed) specified order of parms,
230 not including any forward-decls in the parmlist.
231 This is so we can put the parms in proper order for assign_parms. */
232 tree parm_order;
235 #define NULL_BINDING_LEVEL (struct binding_level *) NULL
237 /* The binding level currently in effect. */
239 static struct binding_level *current_binding_level;
241 /* A chain of binding_level structures awaiting reuse. */
243 static struct binding_level *free_binding_level;
245 /* The outermost binding level, for names of file scope.
246 This is created when the compiler is started and exists
247 through the entire run. */
249 static struct binding_level *global_binding_level;
251 /* Binding level structures are initialized by copying this one. */
253 static struct binding_level clear_binding_level
254 = {NULL, NULL, NULL, NULL, NULL, NULL_BINDING_LEVEL, 0, 0, 0, 0, 0, 0,
255 NULL};
257 /* Nonzero means unconditionally make a BLOCK for the next level pushed. */
259 static int keep_next_level_flag;
261 /* Nonzero means make a BLOCK for the next level pushed
262 if it has subblocks. */
264 static int keep_next_if_subblocks;
266 /* The chain of outer levels of label scopes.
267 This uses the same data structure used for binding levels,
268 but it works differently: each link in the chain records
269 saved values of named_labels and shadowed_labels for
270 a label binding level outside the current one. */
272 static struct binding_level *label_level_chain;
274 /* Functions called automatically at the beginning and end of execution. */
276 tree static_ctors, static_dtors;
278 /* Forward declarations. */
280 static struct binding_level * make_binding_level PROTO((void));
281 static void mark_binding_level PROTO((void *));
282 static void clear_limbo_values PROTO((tree));
283 static int duplicate_decls PROTO((tree, tree, int));
284 static int redeclaration_error_message PROTO((tree, tree));
285 static void storedecls PROTO((tree));
286 static void storetags PROTO((tree));
287 static tree lookup_tag PROTO((enum tree_code, tree,
288 struct binding_level *, int));
289 static tree lookup_tag_reverse PROTO((tree));
290 static tree grokdeclarator PROTO((tree, tree, enum decl_context,
291 int));
292 static tree grokparms PROTO((tree, int));
293 static void layout_array_type PROTO((tree));
295 /* C-specific option variables. */
297 /* Nonzero means allow type mismatches in conditional expressions;
298 just make their values `void'. */
300 int flag_cond_mismatch;
302 /* Nonzero means give `double' the same size as `float'. */
304 int flag_short_double;
306 /* Nonzero means give `wchar_t' the same size as `short'. */
308 int flag_short_wchar;
310 /* Nonzero means don't recognize the keyword `asm'. */
312 int flag_no_asm;
314 /* Nonzero means don't recognize any builtin functions. */
316 int flag_no_builtin;
318 /* Nonzero means don't recognize the non-ANSI builtin functions.
319 -ansi sets this. */
321 int flag_no_nonansi_builtin;
323 /* Nonzero means do some things the same way PCC does. */
325 int flag_traditional;
327 /* Nonzero means use the ISO C9x dialect of C. */
329 int flag_isoc9x = 0;
331 /* Nonzero means that we have builtin functions, and main is an int */
333 int flag_hosted = 1;
335 /* Nonzero means to allow single precision math even if we're generally
336 being traditional. */
337 int flag_allow_single_precision = 0;
339 /* Nonzero means to treat bitfields as signed unless they say `unsigned'. */
341 int flag_signed_bitfields = 1;
342 int explicit_flag_signed_bitfields = 0;
344 /* Nonzero means warn about use of implicit int. */
346 int warn_implicit_int;
348 /* Nonzero means warn about usage of long long when `-pedantic'. */
350 int warn_long_long = 1;
352 /* Nonzero means message about use of implicit function declarations;
353 1 means warning; 2 means error. */
355 int mesg_implicit_function_declaration;
357 /* Nonzero means give string constants the type `const char *'
358 to get extra warnings from them. These warnings will be too numerous
359 to be useful, except in thoroughly ANSIfied programs. */
361 int flag_const_strings;
363 /* Nonzero means warn about pointer casts that can drop a type qualifier
364 from the pointer target type. */
366 int warn_cast_qual;
368 /* Nonzero means warn when casting a function call to a type that does
369 not match the return type (e.g. (float)sqrt() or (anything*)malloc()
370 when there is no previous declaration of sqrt or malloc. */
372 int warn_bad_function_cast;
374 /* Warn about functions which might be candidates for attribute noreturn. */
376 int warn_missing_noreturn;
378 /* Warn about traditional constructs whose meanings changed in ANSI C. */
380 int warn_traditional;
382 /* Nonzero means warn about sizeof(function) or addition/subtraction
383 of function pointers. */
385 int warn_pointer_arith;
387 /* Nonzero means warn for non-prototype function decls
388 or non-prototyped defs without previous prototype. */
390 int warn_strict_prototypes;
392 /* Nonzero means warn for any global function def
393 without separate previous prototype decl. */
395 int warn_missing_prototypes;
397 /* Nonzero means warn for any global function def
398 without separate previous decl. */
400 int warn_missing_declarations;
402 /* Nonzero means warn about multiple (redundant) decls for the same single
403 variable or function. */
405 int warn_redundant_decls = 0;
407 /* Nonzero means warn about extern declarations of objects not at
408 file-scope level and about *all* declarations of functions (whether
409 extern or static) not at file-scope level. Note that we exclude
410 implicit function declarations. To get warnings about those, use
411 -Wimplicit. */
413 int warn_nested_externs = 0;
415 /* Warn about *printf or *scanf format/argument anomalies. */
417 int warn_format;
419 /* Warn about a subscript that has type char. */
421 int warn_char_subscripts = 0;
423 /* Warn if a type conversion is done that might have confusing results. */
425 int warn_conversion;
427 /* Warn if adding () is suggested. */
429 int warn_parentheses;
431 /* Warn if initializer is not completely bracketed. */
433 int warn_missing_braces;
435 /* Warn if main is suspicious. */
437 int warn_main;
439 /* Warn about #pragma directives that are not recognised. */
441 int warn_unknown_pragmas = 0; /* Tri state variable. */
443 /* Warn about comparison of signed and unsigned values.
444 If -1, neither -Wsign-compare nor -Wno-sign-compare has been specified. */
446 int warn_sign_compare = -1;
448 /* Warn about testing equality of floating point numbers. */
450 int warn_float_equal = 0;
452 /* Nonzero means warn about use of multicharacter literals. */
454 int warn_multichar = 1;
456 /* Nonzero means `$' can be in an identifier. */
458 #ifndef DOLLARS_IN_IDENTIFIERS
459 #define DOLLARS_IN_IDENTIFIERS 1
460 #endif
461 int dollars_in_ident = DOLLARS_IN_IDENTIFIERS;
463 /* Decode the string P as a language-specific option for C.
464 Return the number of strings consumed. Should not complain
465 if it does not recognise the option. */
468 c_decode_option (argc, argv)
469 int argc ATTRIBUTE_UNUSED;
470 char **argv;
472 int strings_processed;
473 char *p = argv[0];
474 #if USE_CPPLIB
475 strings_processed = cpp_handle_option (&parse_in, argc, argv);
476 #else
477 strings_processed = 0;
478 #endif /* ! USE_CPPLIB */
480 if (!strcmp (p, "-ftraditional") || !strcmp (p, "-traditional"))
482 flag_traditional = 1;
483 flag_writable_strings = 1;
485 else if (!strcmp (p, "-fallow-single-precision"))
486 flag_allow_single_precision = 1;
487 else if (!strcmp (p, "-fhosted") || !strcmp (p, "-fno-freestanding"))
489 flag_hosted = 1;
490 flag_no_builtin = 0;
492 else if (!strcmp (p, "-ffreestanding") || !strcmp (p, "-fno-hosted"))
494 flag_hosted = 0;
495 flag_no_builtin = 1;
496 /* warn_main will be 2 if set by -Wall, 1 if set by -Wmain */
497 if (warn_main == 2)
498 warn_main = 0;
500 else if (!strcmp (p, "-fnotraditional") || !strcmp (p, "-fno-traditional"))
502 flag_traditional = 0;
503 flag_writable_strings = 0;
505 else if (!strncmp (p, "-std=", 5))
507 /* Select the appropriate language standard. We currently
508 recognize:
509 -std=iso9899:1990 same as -ansi
510 -std=iso9899:199409 ISO C as modified in amend. 1
511 -std=iso9899:199x ISO C 9x
512 -std=c89 same as -std=iso9899:1990
513 -std=c9x same as -std=iso9899:199x
514 -std=gnu89 default, iso9899:1990 + gnu extensions
515 -std=gnu9x iso9899:199x + gnu extensions
517 const char *argstart = &p[5];
519 if (!strcmp (argstart, "iso9899:1990")
520 || !strcmp (argstart, "c89"))
522 iso_1990:
523 flag_traditional = 0;
524 flag_writable_strings = 0;
525 flag_no_asm = 1;
526 flag_no_nonansi_builtin = 1;
527 flag_isoc9x = 0;
529 else if (!strcmp (argstart, "iso9899:199409"))
531 /* ??? The changes since ISO C 1990 are not supported. */
532 goto iso_1990;
534 else if (!strcmp (argstart, "iso9899:199x")
535 || !strcmp (argstart, "c9x"))
537 flag_traditional = 0;
538 flag_writable_strings = 0;
539 flag_no_asm = 1;
540 flag_no_nonansi_builtin = 1;
541 flag_isoc9x = 1;
543 else if (!strcmp (argstart, "gnu89"))
545 flag_traditional = 0;
546 flag_writable_strings = 0;
547 flag_no_asm = 0;
548 flag_no_nonansi_builtin = 0;
549 flag_isoc9x = 0;
551 else if (!strcmp (argstart, "gnu9x"))
553 flag_traditional = 0;
554 flag_writable_strings = 0;
555 flag_no_asm = 0;
556 flag_no_nonansi_builtin = 0;
557 flag_isoc9x = 1;
559 else
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"))
603 flag_no_asm = 0;
604 else if (!strcmp (p, "-fno-asm"))
605 flag_no_asm = 1;
606 else if (!strcmp (p, "-fbuiltin"))
607 flag_no_builtin = 0;
608 else if (!strcmp (p, "-fno-builtin"))
609 flag_no_builtin = 1;
610 else if (!strcmp (p, "-ansi"))
611 goto iso_1990;
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"))
631 warn_long_long = 1;
632 else if (!strcmp (p, "-Wno-long-long"))
633 warn_long_long = 0;
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"))
639 warn_cast_qual = 1;
640 else if (!strcmp (p, "-Wno-cast-qual"))
641 warn_cast_qual = 0;
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 (!strcmp (p, "-Wformat"))
679 warn_format = 1;
680 else if (!strcmp (p, "-Wno-format"))
681 warn_format = 0;
682 else if (!strcmp (p, "-Wchar-subscripts"))
683 warn_char_subscripts = 1;
684 else if (!strcmp (p, "-Wno-char-subscripts"))
685 warn_char_subscripts = 0;
686 else if (!strcmp (p, "-Wconversion"))
687 warn_conversion = 1;
688 else if (!strcmp (p, "-Wno-conversion"))
689 warn_conversion = 0;
690 else if (!strcmp (p, "-Wparentheses"))
691 warn_parentheses = 1;
692 else if (!strcmp (p, "-Wno-parentheses"))
693 warn_parentheses = 0;
694 else if (!strcmp (p, "-Wreturn-type"))
695 warn_return_type = 1;
696 else if (!strcmp (p, "-Wno-return-type"))
697 warn_return_type = 0;
698 else if (!strcmp (p, "-Wcomment"))
699 ; /* cpp handles this one. */
700 else if (!strcmp (p, "-Wno-comment"))
701 ; /* cpp handles this one. */
702 else if (!strcmp (p, "-Wcomments"))
703 ; /* cpp handles this one. */
704 else if (!strcmp (p, "-Wno-comments"))
705 ; /* cpp handles this one. */
706 else if (!strcmp (p, "-Wtrigraphs"))
707 ; /* cpp handles this one. */
708 else if (!strcmp (p, "-Wno-trigraphs"))
709 ; /* cpp handles this one. */
710 else if (!strcmp (p, "-Wundef"))
711 ; /* cpp handles this one. */
712 else if (!strcmp (p, "-Wno-undef"))
713 ; /* cpp handles this one. */
714 else if (!strcmp (p, "-Wimport"))
715 ; /* cpp handles this one. */
716 else if (!strcmp (p, "-Wno-import"))
717 ; /* cpp handles this one. */
718 else if (!strcmp (p, "-Wmissing-braces"))
719 warn_missing_braces = 1;
720 else if (!strcmp (p, "-Wno-missing-braces"))
721 warn_missing_braces = 0;
722 else if (!strcmp (p, "-Wmain"))
723 warn_main = 1;
724 else if (!strcmp (p, "-Wno-main"))
725 warn_main = -1;
726 else if (!strcmp (p, "-Wsign-compare"))
727 warn_sign_compare = 1;
728 else if (!strcmp (p, "-Wno-sign-compare"))
729 warn_sign_compare = 0;
730 else if (!strcmp (p, "-Wfloat-equal"))
731 warn_float_equal = 1;
732 else if (!strcmp (p, "-Wno-float-equal"))
733 warn_float_equal = 0;
734 else if (!strcmp (p, "-Wmultichar"))
735 warn_multichar = 1;
736 else if (!strcmp (p, "-Wno-multichar"))
737 warn_multichar = 0;
738 else if (!strcmp (p, "-Wunknown-pragmas"))
739 /* Set to greater than 1, so that even unknown pragmas in system
740 headers will be warned about. */
741 warn_unknown_pragmas = 2;
742 else if (!strcmp (p, "-Wno-unknown-pragmas"))
743 warn_unknown_pragmas = 0;
744 else if (!strcmp (p, "-Wall"))
746 /* We save the value of warn_uninitialized, since if they put
747 -Wuninitialized on the command line, we need to generate a
748 warning about not using it without also specifying -O. */
749 if (warn_uninitialized != 1)
750 warn_uninitialized = 2;
751 warn_implicit_int = 1;
752 mesg_implicit_function_declaration = 1;
753 warn_return_type = 1;
754 warn_unused = 1;
755 warn_switch = 1;
756 warn_format = 1;
757 warn_char_subscripts = 1;
758 warn_parentheses = 1;
759 warn_missing_braces = 1;
760 /* We set this to 2 here, but 1 in -Wmain, so -ffreestanding can turn
761 it off only if it's not explicit. */
762 warn_main = 2;
763 /* Only warn about unknown pragmas that are not in system headers. */
764 warn_unknown_pragmas = 1;
766 else
767 return strings_processed;
769 return 1;
772 /* Hooks for print_node. */
774 void
775 print_lang_decl (file, node, indent)
776 FILE *file ATTRIBUTE_UNUSED;
777 tree node ATTRIBUTE_UNUSED;
778 int indent ATTRIBUTE_UNUSED;
782 void
783 print_lang_type (file, node, indent)
784 FILE *file ATTRIBUTE_UNUSED;
785 tree node ATTRIBUTE_UNUSED;
786 int indent ATTRIBUTE_UNUSED;
790 void
791 print_lang_identifier (file, node, indent)
792 FILE *file;
793 tree node;
794 int indent;
796 print_node (file, "global", IDENTIFIER_GLOBAL_VALUE (node), indent + 4);
797 print_node (file, "local", IDENTIFIER_LOCAL_VALUE (node), indent + 4);
798 print_node (file, "label", IDENTIFIER_LABEL_VALUE (node), indent + 4);
799 print_node (file, "implicit", IDENTIFIER_IMPLICIT_DECL (node), indent + 4);
800 print_node (file, "error locus", IDENTIFIER_ERROR_LOCUS (node), indent + 4);
801 print_node (file, "limbo value", IDENTIFIER_LIMBO_VALUE (node), indent + 4);
804 /* Hook called at end of compilation to assume 1 elt
805 for a top-level array decl that wasn't complete before. */
807 void
808 finish_incomplete_decl (decl)
809 tree decl;
811 if (TREE_CODE (decl) == VAR_DECL)
813 tree type = TREE_TYPE (decl);
814 if (type != error_mark_node
815 && TREE_CODE (type) == ARRAY_TYPE
816 && TYPE_DOMAIN (type) == 0)
818 if (! DECL_EXTERNAL (decl))
819 warning_with_decl (decl, "array `%s' assumed to have one element");
821 complete_array_type (type, NULL_TREE, 1);
823 layout_decl (decl, 0);
828 /* Create a new `struct binding_level'. */
830 static
831 struct binding_level *
832 make_binding_level ()
834 /* NOSTRICT */
835 return (struct binding_level *) xmalloc (sizeof (struct binding_level));
838 /* Nonzero if we are currently in the global binding level. */
841 global_bindings_p ()
843 return current_binding_level == global_binding_level;
846 void
847 keep_next_level ()
849 keep_next_level_flag = 1;
852 /* Nonzero if the current level needs to have a BLOCK made. */
855 kept_level_p ()
857 return ((current_binding_level->keep_if_subblocks
858 && current_binding_level->blocks != 0)
859 || current_binding_level->keep
860 || current_binding_level->names != 0
861 || (current_binding_level->tags != 0
862 && !current_binding_level->tag_transparent));
865 /* Identify this binding level as a level of parameters.
866 DEFINITION_FLAG is 1 for a definition, 0 for a declaration.
867 But it turns out there is no way to pass the right value for
868 DEFINITION_FLAG, so we ignore it. */
870 void
871 declare_parm_level (definition_flag)
872 int definition_flag ATTRIBUTE_UNUSED;
874 current_binding_level->parm_flag = 1;
877 /* Nonzero if currently making parm declarations. */
880 in_parm_level_p ()
882 return current_binding_level->parm_flag;
885 /* Enter a new binding level.
886 If TAG_TRANSPARENT is nonzero, do so only for the name space of variables,
887 not for that of tags. */
889 void
890 pushlevel (tag_transparent)
891 int tag_transparent;
893 register struct binding_level *newlevel = NULL_BINDING_LEVEL;
895 /* If this is the top level of a function,
896 just make sure that NAMED_LABELS is 0. */
898 if (current_binding_level == global_binding_level)
900 named_labels = 0;
903 /* Reuse or create a struct for this binding level. */
905 if (free_binding_level)
907 newlevel = free_binding_level;
908 free_binding_level = free_binding_level->level_chain;
910 else
912 newlevel = make_binding_level ();
915 /* Add this level to the front of the chain (stack) of levels that
916 are active. */
918 *newlevel = clear_binding_level;
919 newlevel->tag_transparent
920 = (tag_transparent
921 || (current_binding_level
922 ? current_binding_level->subblocks_tag_transparent
923 : 0));
924 newlevel->level_chain = current_binding_level;
925 current_binding_level = newlevel;
926 newlevel->keep = keep_next_level_flag;
927 keep_next_level_flag = 0;
928 newlevel->keep_if_subblocks = keep_next_if_subblocks;
929 keep_next_if_subblocks = 0;
932 /* Clear the limbo values of all identifiers defined in BLOCK or a subblock. */
934 static void
935 clear_limbo_values (block)
936 tree block;
938 tree tem;
940 for (tem = BLOCK_VARS (block); tem; tem = TREE_CHAIN (tem))
941 if (DECL_NAME (tem) != 0)
942 IDENTIFIER_LIMBO_VALUE (DECL_NAME (tem)) = 0;
944 for (tem = BLOCK_SUBBLOCKS (block); tem; tem = TREE_CHAIN (tem))
945 clear_limbo_values (tem);
948 /* Exit a binding level.
949 Pop the level off, and restore the state of the identifier-decl mappings
950 that were in effect when this level was entered.
952 If KEEP is nonzero, this level had explicit declarations, so
953 and create a "block" (a BLOCK node) for the level
954 to record its declarations and subblocks for symbol table output.
956 If FUNCTIONBODY is nonzero, this level is the body of a function,
957 so create a block as if KEEP were set and also clear out all
958 label names.
960 If REVERSE is nonzero, reverse the order of decls before putting
961 them into the BLOCK. */
963 tree
964 poplevel (keep, reverse, functionbody)
965 int keep;
966 int reverse;
967 int functionbody;
969 register tree link;
970 /* The chain of decls was accumulated in reverse order.
971 Put it into forward order, just for cleanliness. */
972 tree decls;
973 tree tags = current_binding_level->tags;
974 tree subblocks = current_binding_level->blocks;
975 tree block = 0;
976 tree decl;
977 int block_previously_created;
979 keep |= current_binding_level->keep;
981 /* This warning is turned off because it causes warnings for
982 declarations like `extern struct foo *x'. */
983 #if 0
984 /* Warn about incomplete structure types in this level. */
985 for (link = tags; link; link = TREE_CHAIN (link))
986 if (TYPE_SIZE (TREE_VALUE (link)) == 0)
988 tree type = TREE_VALUE (link);
989 tree type_name = TYPE_NAME (type);
990 char *id = IDENTIFIER_POINTER (TREE_CODE (type_name) == IDENTIFIER_NODE
991 ? type_name
992 : DECL_NAME (type_name));
993 switch (TREE_CODE (type))
995 case RECORD_TYPE:
996 error ("`struct %s' incomplete in scope ending here", id);
997 break;
998 case UNION_TYPE:
999 error ("`union %s' incomplete in scope ending here", id);
1000 break;
1001 case ENUMERAL_TYPE:
1002 error ("`enum %s' incomplete in scope ending here", id);
1003 break;
1006 #endif /* 0 */
1008 /* Get the decls in the order they were written.
1009 Usually current_binding_level->names is in reverse order.
1010 But parameter decls were previously put in forward order. */
1012 if (reverse)
1013 current_binding_level->names
1014 = decls = nreverse (current_binding_level->names);
1015 else
1016 decls = current_binding_level->names;
1018 /* Output any nested inline functions within this block
1019 if they weren't already output. */
1021 for (decl = decls; decl; decl = TREE_CHAIN (decl))
1022 if (TREE_CODE (decl) == FUNCTION_DECL
1023 && ! TREE_ASM_WRITTEN (decl)
1024 && DECL_INITIAL (decl) != 0
1025 && TREE_ADDRESSABLE (decl))
1027 /* If this decl was copied from a file-scope decl
1028 on account of a block-scope extern decl,
1029 propagate TREE_ADDRESSABLE to the file-scope decl.
1031 DECL_ABSTRACT_ORIGIN can be set to itself if warn_return_type is
1032 true, since then the decl goes through save_for_inline_copying. */
1033 if (DECL_ABSTRACT_ORIGIN (decl) != 0
1034 && DECL_ABSTRACT_ORIGIN (decl) != decl)
1035 TREE_ADDRESSABLE (DECL_ABSTRACT_ORIGIN (decl)) = 1;
1036 else if (DECL_SAVED_INSNS (decl) != 0)
1038 push_function_context ();
1039 output_inline_function (decl);
1040 pop_function_context ();
1044 /* If there were any declarations or structure tags in that level,
1045 or if this level is a function body,
1046 create a BLOCK to record them for the life of this function. */
1048 block = 0;
1049 block_previously_created = (current_binding_level->this_block != 0);
1050 if (block_previously_created)
1051 block = current_binding_level->this_block;
1052 else if (keep || functionbody
1053 || (current_binding_level->keep_if_subblocks && subblocks != 0))
1054 block = make_node (BLOCK);
1055 if (block != 0)
1057 BLOCK_VARS (block) = decls;
1058 BLOCK_SUBBLOCKS (block) = subblocks;
1061 /* In each subblock, record that this is its superior. */
1063 for (link = subblocks; link; link = TREE_CHAIN (link))
1064 BLOCK_SUPERCONTEXT (link) = block;
1066 /* Clear out the meanings of the local variables of this level. */
1068 for (link = decls; link; link = TREE_CHAIN (link))
1070 if (DECL_NAME (link) != 0)
1072 /* If the ident. was used or addressed via a local extern decl,
1073 don't forget that fact. */
1074 if (DECL_EXTERNAL (link))
1076 if (TREE_USED (link))
1077 TREE_USED (DECL_NAME (link)) = 1;
1078 if (TREE_ADDRESSABLE (link))
1079 TREE_ADDRESSABLE (DECL_ASSEMBLER_NAME (link)) = 1;
1081 IDENTIFIER_LOCAL_VALUE (DECL_NAME (link)) = 0;
1085 /* Restore all name-meanings of the outer levels
1086 that were shadowed by this level. */
1088 for (link = current_binding_level->shadowed; link; link = TREE_CHAIN (link))
1089 IDENTIFIER_LOCAL_VALUE (TREE_PURPOSE (link)) = TREE_VALUE (link);
1091 /* If the level being exited is the top level of a function,
1092 check over all the labels, and clear out the current
1093 (function local) meanings of their names. */
1095 if (functionbody)
1097 clear_limbo_values (block);
1099 /* If this is the top level block of a function,
1100 the vars are the function's parameters.
1101 Don't leave them in the BLOCK because they are
1102 found in the FUNCTION_DECL instead. */
1104 BLOCK_VARS (block) = 0;
1106 /* Clear out the definitions of all label names,
1107 since their scopes end here,
1108 and add them to BLOCK_VARS. */
1110 for (link = named_labels; link; link = TREE_CHAIN (link))
1112 register tree label = TREE_VALUE (link);
1114 if (DECL_INITIAL (label) == 0)
1116 error_with_decl (label, "label `%s' used but not defined");
1117 /* Avoid crashing later. */
1118 define_label (input_filename, lineno,
1119 DECL_NAME (label));
1121 else if (warn_unused && !TREE_USED (label))
1122 warning_with_decl (label, "label `%s' defined but not used");
1123 IDENTIFIER_LABEL_VALUE (DECL_NAME (label)) = 0;
1125 /* Put the labels into the "variables" of the
1126 top-level block, so debugger can see them. */
1127 TREE_CHAIN (label) = BLOCK_VARS (block);
1128 BLOCK_VARS (block) = label;
1132 /* Pop the current level, and free the structure for reuse. */
1135 register struct binding_level *level = current_binding_level;
1136 current_binding_level = current_binding_level->level_chain;
1138 level->level_chain = free_binding_level;
1139 free_binding_level = level;
1142 /* Dispose of the block that we just made inside some higher level. */
1143 if (functionbody)
1144 DECL_INITIAL (current_function_decl) = block;
1145 else if (block)
1147 if (!block_previously_created)
1148 current_binding_level->blocks
1149 = chainon (current_binding_level->blocks, block);
1151 /* If we did not make a block for the level just exited,
1152 any blocks made for inner levels
1153 (since they cannot be recorded as subblocks in that level)
1154 must be carried forward so they will later become subblocks
1155 of something else. */
1156 else if (subblocks)
1157 current_binding_level->blocks
1158 = chainon (current_binding_level->blocks, subblocks);
1160 /* Set the TYPE_CONTEXTs for all of the tagged types belonging to this
1161 binding contour so that they point to the appropriate construct, i.e.
1162 either to the current FUNCTION_DECL node, or else to the BLOCK node
1163 we just constructed.
1165 Note that for tagged types whose scope is just the formal parameter
1166 list for some function type specification, we can't properly set
1167 their TYPE_CONTEXTs here, because we don't have a pointer to the
1168 appropriate FUNCTION_TYPE node readily available to us. For those
1169 cases, the TYPE_CONTEXTs of the relevant tagged type nodes get set
1170 in `grokdeclarator' as soon as we have created the FUNCTION_TYPE
1171 node which will represent the "scope" for these "parameter list local"
1172 tagged types.
1175 if (functionbody)
1176 for (link = tags; link; link = TREE_CHAIN (link))
1177 TYPE_CONTEXT (TREE_VALUE (link)) = current_function_decl;
1178 else if (block)
1179 for (link = tags; link; link = TREE_CHAIN (link))
1180 TYPE_CONTEXT (TREE_VALUE (link)) = block;
1182 if (block)
1183 TREE_USED (block) = 1;
1184 return block;
1187 /* Delete the node BLOCK from the current binding level.
1188 This is used for the block inside a stmt expr ({...})
1189 so that the block can be reinserted where appropriate. */
1191 void
1192 delete_block (block)
1193 tree block;
1195 tree t;
1196 if (current_binding_level->blocks == block)
1197 current_binding_level->blocks = TREE_CHAIN (block);
1198 for (t = current_binding_level->blocks; t;)
1200 if (TREE_CHAIN (t) == block)
1201 TREE_CHAIN (t) = TREE_CHAIN (block);
1202 else
1203 t = TREE_CHAIN (t);
1205 TREE_CHAIN (block) = NULL;
1206 /* Clear TREE_USED which is always set by poplevel.
1207 The flag is set again if insert_block is called. */
1208 TREE_USED (block) = 0;
1211 /* Insert BLOCK at the end of the list of subblocks of the
1212 current binding level. This is used when a BIND_EXPR is expanded,
1213 to handle the BLOCK node inside the BIND_EXPR. */
1215 void
1216 insert_block (block)
1217 tree block;
1219 TREE_USED (block) = 1;
1220 current_binding_level->blocks
1221 = chainon (current_binding_level->blocks, block);
1224 /* Set the BLOCK node for the innermost scope
1225 (the one we are currently in). */
1227 void
1228 set_block (block)
1229 register tree block;
1231 current_binding_level->this_block = block;
1234 void
1235 push_label_level ()
1237 register struct binding_level *newlevel;
1239 /* Reuse or create a struct for this binding level. */
1241 if (free_binding_level)
1243 newlevel = free_binding_level;
1244 free_binding_level = free_binding_level->level_chain;
1246 else
1248 newlevel = make_binding_level ();
1251 /* Add this level to the front of the chain (stack) of label levels. */
1253 newlevel->level_chain = label_level_chain;
1254 label_level_chain = newlevel;
1256 newlevel->names = named_labels;
1257 newlevel->shadowed = shadowed_labels;
1258 named_labels = 0;
1259 shadowed_labels = 0;
1262 void
1263 pop_label_level ()
1265 register struct binding_level *level = label_level_chain;
1266 tree link, prev;
1268 /* Clear out the definitions of the declared labels in this level.
1269 Leave in the list any ordinary, non-declared labels. */
1270 for (link = named_labels, prev = 0; link;)
1272 if (C_DECLARED_LABEL_FLAG (TREE_VALUE (link)))
1274 if (DECL_SOURCE_LINE (TREE_VALUE (link)) == 0)
1276 error_with_decl (TREE_VALUE (link),
1277 "label `%s' used but not defined");
1278 /* Avoid crashing later. */
1279 define_label (input_filename, lineno,
1280 DECL_NAME (TREE_VALUE (link)));
1282 else if (warn_unused && !TREE_USED (TREE_VALUE (link)))
1283 warning_with_decl (TREE_VALUE (link),
1284 "label `%s' defined but not used");
1285 IDENTIFIER_LABEL_VALUE (DECL_NAME (TREE_VALUE (link))) = 0;
1287 /* Delete this element from the list. */
1288 link = TREE_CHAIN (link);
1289 if (prev)
1290 TREE_CHAIN (prev) = link;
1291 else
1292 named_labels = link;
1294 else
1296 prev = link;
1297 link = TREE_CHAIN (link);
1301 /* Bring back all the labels that were shadowed. */
1302 for (link = shadowed_labels; link; link = TREE_CHAIN (link))
1303 if (DECL_NAME (TREE_VALUE (link)) != 0)
1304 IDENTIFIER_LABEL_VALUE (DECL_NAME (TREE_VALUE (link)))
1305 = TREE_VALUE (link);
1307 named_labels = chainon (named_labels, level->names);
1308 shadowed_labels = level->shadowed;
1310 /* Pop the current level, and free the structure for reuse. */
1311 label_level_chain = label_level_chain->level_chain;
1312 level->level_chain = free_binding_level;
1313 free_binding_level = level;
1316 /* Push a definition or a declaration of struct, union or enum tag "name".
1317 "type" should be the type node.
1318 We assume that the tag "name" is not already defined.
1320 Note that the definition may really be just a forward reference.
1321 In that case, the TYPE_SIZE will be zero. */
1323 void
1324 pushtag (name, type)
1325 tree name, type;
1327 register struct binding_level *b;
1329 /* Find the proper binding level for this type tag. */
1331 for (b = current_binding_level; b->tag_transparent; b = b->level_chain)
1332 continue;
1334 if (name)
1336 /* Record the identifier as the type's name if it has none. */
1338 if (TYPE_NAME (type) == 0)
1339 TYPE_NAME (type) = name;
1342 if (b == global_binding_level)
1343 b->tags = perm_tree_cons (name, type, b->tags);
1344 else
1345 b->tags = saveable_tree_cons (name, type, b->tags);
1347 /* Create a fake NULL-named TYPE_DECL node whose TREE_TYPE will be the
1348 tagged type we just added to the current binding level. This fake
1349 NULL-named TYPE_DECL node helps dwarfout.c to know when it needs
1350 to output a representation of a tagged type, and it also gives
1351 us a convenient place to record the "scope start" address for the
1352 tagged type. */
1354 TYPE_STUB_DECL (type) = pushdecl (build_decl (TYPE_DECL, NULL_TREE, type));
1356 /* An approximation for now, so we can tell this is a function-scope tag.
1357 This will be updated in poplevel. */
1358 TYPE_CONTEXT (type) = DECL_CONTEXT (TYPE_STUB_DECL (type));
1361 /* Handle when a new declaration NEWDECL
1362 has the same name as an old one OLDDECL
1363 in the same binding contour.
1364 Prints an error message if appropriate.
1366 If safely possible, alter OLDDECL to look like NEWDECL, and return 1.
1367 Otherwise, return 0.
1369 When DIFFERENT_BINDING_LEVEL is true, NEWDECL is an external declaration,
1370 and OLDDECL is in an outer binding level and should thus not be changed. */
1372 static int
1373 duplicate_decls (newdecl, olddecl, different_binding_level)
1374 register tree newdecl, olddecl;
1375 int different_binding_level;
1377 int types_match = comptypes (TREE_TYPE (newdecl), TREE_TYPE (olddecl));
1378 int new_is_definition = (TREE_CODE (newdecl) == FUNCTION_DECL
1379 && DECL_INITIAL (newdecl) != 0);
1380 tree oldtype = TREE_TYPE (olddecl);
1381 tree newtype = TREE_TYPE (newdecl);
1382 int errmsg = 0;
1384 if (TREE_CODE_CLASS (TREE_CODE (olddecl)) == 'd')
1385 DECL_MACHINE_ATTRIBUTES (newdecl)
1386 = merge_machine_decl_attributes (olddecl, newdecl);
1388 if (TREE_CODE (newtype) == ERROR_MARK
1389 || TREE_CODE (oldtype) == ERROR_MARK)
1390 types_match = 0;
1392 /* New decl is completely inconsistent with the old one =>
1393 tell caller to replace the old one.
1394 This is always an error except in the case of shadowing a builtin. */
1395 if (TREE_CODE (olddecl) != TREE_CODE (newdecl))
1397 if (TREE_CODE (olddecl) == FUNCTION_DECL
1398 && (DECL_BUILT_IN (olddecl)
1399 || DECL_BUILT_IN_NONANSI (olddecl)))
1401 /* If you declare a built-in or predefined function name as static,
1402 the old definition is overridden,
1403 but optionally warn this was a bad choice of name. */
1404 if (!TREE_PUBLIC (newdecl))
1406 if (!warn_shadow)
1408 else if (DECL_BUILT_IN (olddecl))
1409 warning_with_decl (newdecl, "shadowing built-in function `%s'");
1410 else
1411 warning_with_decl (newdecl, "shadowing library function `%s'");
1413 /* Likewise, if the built-in is not ansi, then programs can
1414 override it even globally without an error. */
1415 else if (! DECL_BUILT_IN (olddecl))
1416 warning_with_decl (newdecl,
1417 "library function `%s' declared as non-function");
1419 else if (DECL_BUILT_IN_NONANSI (olddecl))
1420 warning_with_decl (newdecl,
1421 "built-in function `%s' declared as non-function");
1422 else
1423 warning_with_decl (newdecl,
1424 "built-in function `%s' declared as non-function");
1426 else
1428 error_with_decl (newdecl, "`%s' redeclared as different kind of symbol");
1429 error_with_decl (olddecl, "previous declaration of `%s'");
1432 return 0;
1435 /* For real parm decl following a forward decl,
1436 return 1 so old decl will be reused. */
1437 if (types_match && TREE_CODE (newdecl) == PARM_DECL
1438 && TREE_ASM_WRITTEN (olddecl) && ! TREE_ASM_WRITTEN (newdecl))
1439 return 1;
1441 /* The new declaration is the same kind of object as the old one.
1442 The declarations may partially match. Print warnings if they don't
1443 match enough. Ultimately, copy most of the information from the new
1444 decl to the old one, and keep using the old one. */
1446 if (flag_traditional && TREE_CODE (newdecl) == FUNCTION_DECL
1447 && IDENTIFIER_IMPLICIT_DECL (DECL_NAME (newdecl)) == olddecl
1448 && DECL_INITIAL (olddecl) == 0)
1449 /* If -traditional, avoid error for redeclaring fcn
1450 after implicit decl. */
1452 else if (TREE_CODE (olddecl) == FUNCTION_DECL
1453 && DECL_BUILT_IN (olddecl))
1455 /* A function declaration for a built-in function. */
1456 if (!TREE_PUBLIC (newdecl))
1458 /* If you declare a built-in function name as static, the
1459 built-in definition is overridden,
1460 but optionally warn this was a bad choice of name. */
1461 if (warn_shadow)
1462 warning_with_decl (newdecl, "shadowing built-in function `%s'");
1463 /* Discard the old built-in function. */
1464 return 0;
1466 else if (!types_match)
1468 /* Accept the return type of the new declaration if same modes. */
1469 tree oldreturntype = TREE_TYPE (oldtype);
1470 tree newreturntype = TREE_TYPE (newtype);
1472 /* Make sure we put the new type in the same obstack as the old ones.
1473 If the old types are not both in the same obstack, use the
1474 permanent one. */
1475 if (TYPE_OBSTACK (oldtype) == TYPE_OBSTACK (newtype))
1476 push_obstacks (TYPE_OBSTACK (oldtype), TYPE_OBSTACK (oldtype));
1477 else
1479 push_obstacks_nochange ();
1480 end_temporary_allocation ();
1483 if (TYPE_MODE (oldreturntype) == TYPE_MODE (newreturntype))
1485 /* Function types may be shared, so we can't just modify
1486 the return type of olddecl's function type. */
1487 tree trytype
1488 = build_function_type (newreturntype,
1489 TYPE_ARG_TYPES (oldtype));
1491 types_match = comptypes (newtype, trytype);
1492 if (types_match)
1493 oldtype = trytype;
1495 /* Accept harmless mismatch in first argument type also.
1496 This is for ffs. */
1497 if (TYPE_ARG_TYPES (TREE_TYPE (newdecl)) != 0
1498 && TYPE_ARG_TYPES (oldtype) != 0
1499 && TREE_VALUE (TYPE_ARG_TYPES (newtype)) != 0
1500 && TREE_VALUE (TYPE_ARG_TYPES (oldtype)) != 0
1501 && (TYPE_MODE (TREE_VALUE (TYPE_ARG_TYPES (newtype)))
1502 == TYPE_MODE (TREE_VALUE (TYPE_ARG_TYPES (oldtype)))))
1504 /* Function types may be shared, so we can't just modify
1505 the return type of olddecl's function type. */
1506 tree trytype
1507 = build_function_type (TREE_TYPE (oldtype),
1508 tree_cons (NULL_TREE,
1509 TREE_VALUE (TYPE_ARG_TYPES (newtype)),
1510 TREE_CHAIN (TYPE_ARG_TYPES (oldtype))));
1512 types_match = comptypes (newtype, trytype);
1513 if (types_match)
1514 oldtype = trytype;
1516 if (! different_binding_level)
1517 TREE_TYPE (olddecl) = oldtype;
1519 pop_obstacks ();
1521 if (!types_match)
1523 /* If types don't match for a built-in, throw away the built-in. */
1524 warning_with_decl (newdecl, "conflicting types for built-in function `%s'");
1525 return 0;
1528 else if (TREE_CODE (olddecl) == FUNCTION_DECL
1529 && DECL_SOURCE_LINE (olddecl) == 0)
1531 /* A function declaration for a predeclared function
1532 that isn't actually built in. */
1533 if (!TREE_PUBLIC (newdecl))
1535 /* If you declare it as static, the
1536 default definition is overridden. */
1537 return 0;
1539 else if (!types_match)
1541 /* If the types don't match, preserve volatility indication.
1542 Later on, we will discard everything else about the
1543 default declaration. */
1544 TREE_THIS_VOLATILE (newdecl) |= TREE_THIS_VOLATILE (olddecl);
1547 /* Permit char *foo () to match void *foo (...) if not pedantic,
1548 if one of them came from a system header file. */
1549 else if (!types_match
1550 && TREE_CODE (olddecl) == FUNCTION_DECL
1551 && TREE_CODE (newdecl) == FUNCTION_DECL
1552 && TREE_CODE (TREE_TYPE (oldtype)) == POINTER_TYPE
1553 && TREE_CODE (TREE_TYPE (newtype)) == POINTER_TYPE
1554 && (DECL_IN_SYSTEM_HEADER (olddecl)
1555 || DECL_IN_SYSTEM_HEADER (newdecl))
1556 && ((TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (newtype))) == void_type_node
1557 && TYPE_ARG_TYPES (oldtype) == 0
1558 && self_promoting_args_p (TYPE_ARG_TYPES (newtype))
1559 && TREE_TYPE (TREE_TYPE (oldtype)) == char_type_node)
1561 (TREE_TYPE (TREE_TYPE (newtype)) == char_type_node
1562 && TYPE_ARG_TYPES (newtype) == 0
1563 && self_promoting_args_p (TYPE_ARG_TYPES (oldtype))
1564 && TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (oldtype))) == void_type_node)))
1566 if (pedantic)
1567 pedwarn_with_decl (newdecl, "conflicting types for `%s'");
1568 /* Make sure we keep void * as ret type, not char *. */
1569 if (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (oldtype))) == void_type_node)
1570 TREE_TYPE (newdecl) = newtype = oldtype;
1572 /* Set DECL_IN_SYSTEM_HEADER, so that if we see another declaration
1573 we will come back here again. */
1574 DECL_IN_SYSTEM_HEADER (newdecl) = 1;
1576 else if (!types_match
1577 /* Permit char *foo (int, ...); followed by char *foo ();
1578 if not pedantic. */
1579 && ! (TREE_CODE (olddecl) == FUNCTION_DECL
1580 && ! pedantic
1581 /* Return types must still match. */
1582 && comptypes (TREE_TYPE (oldtype),
1583 TREE_TYPE (newtype))
1584 && TYPE_ARG_TYPES (newtype) == 0))
1586 error_with_decl (newdecl, "conflicting types for `%s'");
1587 /* Check for function type mismatch
1588 involving an empty arglist vs a nonempty one. */
1589 if (TREE_CODE (olddecl) == FUNCTION_DECL
1590 && comptypes (TREE_TYPE (oldtype),
1591 TREE_TYPE (newtype))
1592 && ((TYPE_ARG_TYPES (oldtype) == 0
1593 && DECL_INITIAL (olddecl) == 0)
1595 (TYPE_ARG_TYPES (newtype) == 0
1596 && DECL_INITIAL (newdecl) == 0)))
1598 /* Classify the problem further. */
1599 register tree t = TYPE_ARG_TYPES (oldtype);
1600 if (t == 0)
1601 t = TYPE_ARG_TYPES (newtype);
1602 for (; t; t = TREE_CHAIN (t))
1604 register tree type = TREE_VALUE (t);
1606 if (TREE_CHAIN (t) == 0
1607 && TYPE_MAIN_VARIANT (type) != void_type_node)
1609 error ("A parameter list with an ellipsis can't match an empty parameter name list declaration.");
1610 break;
1613 if (simple_type_promotes_to (type) != NULL_TREE)
1615 error ("An argument type that has a default promotion can't match an empty parameter name list declaration.");
1616 break;
1620 error_with_decl (olddecl, "previous declaration of `%s'");
1622 else
1624 errmsg = redeclaration_error_message (newdecl, olddecl);
1625 if (errmsg)
1627 switch (errmsg)
1629 case 1:
1630 error_with_decl (newdecl, "redefinition of `%s'");
1631 break;
1632 case 2:
1633 error_with_decl (newdecl, "redeclaration of `%s'");
1634 break;
1635 case 3:
1636 error_with_decl (newdecl, "conflicting declarations of `%s'");
1637 break;
1638 default:
1639 abort ();
1642 error_with_decl (olddecl,
1643 ((DECL_INITIAL (olddecl)
1644 && current_binding_level == global_binding_level)
1645 ? "`%s' previously defined here"
1646 : "`%s' previously declared here"));
1648 else if (TREE_CODE (newdecl) == TYPE_DECL
1649 && (DECL_IN_SYSTEM_HEADER (olddecl)
1650 || DECL_IN_SYSTEM_HEADER (newdecl)))
1652 warning_with_decl (newdecl, "redefinition of `%s'");
1653 warning_with_decl
1654 (olddecl,
1655 ((DECL_INITIAL (olddecl)
1656 && current_binding_level == global_binding_level)
1657 ? "`%s' previously defined here"
1658 : "`%s' previously declared here"));
1660 else if (TREE_CODE (olddecl) == FUNCTION_DECL
1661 && DECL_INITIAL (olddecl) != 0
1662 && TYPE_ARG_TYPES (oldtype) == 0
1663 && TYPE_ARG_TYPES (newtype) != 0
1664 && TYPE_ACTUAL_ARG_TYPES (oldtype) != 0)
1666 register tree type, parm;
1667 register int nargs;
1668 /* Prototype decl follows defn w/o prototype. */
1670 for (parm = TYPE_ACTUAL_ARG_TYPES (oldtype),
1671 type = TYPE_ARG_TYPES (newtype),
1672 nargs = 1;
1674 parm = TREE_CHAIN (parm), type = TREE_CHAIN (type), nargs++)
1676 if (TYPE_MAIN_VARIANT (TREE_VALUE (parm)) == void_type_node
1677 && TYPE_MAIN_VARIANT (TREE_VALUE (type)) == void_type_node)
1679 warning_with_decl (newdecl, "prototype for `%s' follows");
1680 warning_with_decl (olddecl, "non-prototype definition here");
1681 break;
1683 if (TYPE_MAIN_VARIANT (TREE_VALUE (parm)) == void_type_node
1684 || TYPE_MAIN_VARIANT (TREE_VALUE (type)) == void_type_node)
1686 error_with_decl (newdecl, "prototype for `%s' follows and number of arguments doesn't match");
1687 error_with_decl (olddecl, "non-prototype definition here");
1688 errmsg = 1;
1689 break;
1691 /* Type for passing arg must be consistent
1692 with that declared for the arg. */
1693 if (! comptypes (TREE_VALUE (parm), TREE_VALUE (type))
1694 /* If -traditional, allow `unsigned int' instead of `int'
1695 in the prototype. */
1696 && (! (flag_traditional
1697 && TYPE_MAIN_VARIANT (TREE_VALUE (parm)) == integer_type_node
1698 && TYPE_MAIN_VARIANT (TREE_VALUE (type)) == unsigned_type_node)))
1700 error_with_decl (newdecl,
1701 "prototype for `%s' follows and argument %d doesn't match",
1702 nargs);
1703 error_with_decl (olddecl, "non-prototype definition here");
1704 errmsg = 1;
1705 break;
1709 /* Warn about mismatches in various flags. */
1710 else
1712 /* Warn if function is now inline
1713 but was previously declared not inline and has been called. */
1714 if (TREE_CODE (olddecl) == FUNCTION_DECL
1715 && ! DECL_INLINE (olddecl) && DECL_INLINE (newdecl)
1716 && TREE_USED (olddecl))
1717 warning_with_decl (newdecl,
1718 "`%s' declared inline after being called");
1719 if (TREE_CODE (olddecl) == FUNCTION_DECL
1720 && ! DECL_INLINE (olddecl) && DECL_INLINE (newdecl)
1721 && DECL_INITIAL (olddecl) != 0)
1722 warning_with_decl (newdecl,
1723 "`%s' declared inline after its definition");
1725 /* If pedantic, warn when static declaration follows a non-static
1726 declaration. Otherwise, do so only for functions. */
1727 if ((pedantic || TREE_CODE (olddecl) == FUNCTION_DECL)
1728 && TREE_PUBLIC (olddecl)
1729 && !TREE_PUBLIC (newdecl))
1730 warning_with_decl (newdecl, "static declaration for `%s' follows non-static");
1732 /* If warn_traditional, warn when a non-static function
1733 declaration follows a static one. */
1734 if (warn_traditional
1735 && TREE_CODE (olddecl) == FUNCTION_DECL
1736 && !TREE_PUBLIC (olddecl)
1737 && TREE_PUBLIC (newdecl))
1738 warning_with_decl (newdecl, "non-static declaration for `%s' follows static");
1740 /* Warn when const declaration follows a non-const
1741 declaration, but not for functions. */
1742 if (TREE_CODE (olddecl) != FUNCTION_DECL
1743 && !TREE_READONLY (olddecl)
1744 && TREE_READONLY (newdecl))
1745 warning_with_decl (newdecl, "const declaration for `%s' follows non-const");
1746 /* These bits are logically part of the type, for variables.
1747 But not for functions
1748 (where qualifiers are not valid ANSI anyway). */
1749 else if (pedantic && TREE_CODE (olddecl) != FUNCTION_DECL
1750 && (TREE_READONLY (newdecl) != TREE_READONLY (olddecl)
1751 || TREE_THIS_VOLATILE (newdecl) != TREE_THIS_VOLATILE (olddecl)))
1752 pedwarn_with_decl (newdecl, "type qualifiers for `%s' conflict with previous decl");
1756 /* Optionally warn about more than one declaration for the same name. */
1757 if (errmsg == 0 && warn_redundant_decls && DECL_SOURCE_LINE (olddecl) != 0
1758 /* Don't warn about a function declaration
1759 followed by a definition. */
1760 && !(TREE_CODE (newdecl) == FUNCTION_DECL && DECL_INITIAL (newdecl) != 0
1761 && DECL_INITIAL (olddecl) == 0)
1762 /* Don't warn about extern decl followed by (tentative) definition. */
1763 && !(DECL_EXTERNAL (olddecl) && ! DECL_EXTERNAL (newdecl)))
1765 warning_with_decl (newdecl, "redundant redeclaration of `%s' in same scope");
1766 warning_with_decl (olddecl, "previous declaration of `%s'");
1769 /* Copy all the DECL_... slots specified in the new decl
1770 except for any that we copy here from the old type.
1772 Past this point, we don't change OLDTYPE and NEWTYPE
1773 even if we change the types of NEWDECL and OLDDECL. */
1775 if (types_match)
1777 /* When copying info to olddecl, we store into write_olddecl
1778 instead. This allows us to avoid modifying olddecl when
1779 different_binding_level is true. */
1780 tree write_olddecl = different_binding_level ? newdecl : olddecl;
1782 /* Make sure we put the new type in the same obstack as the old ones.
1783 If the old types are not both in the same obstack, use the permanent
1784 one. */
1785 if (TYPE_OBSTACK (oldtype) == TYPE_OBSTACK (newtype))
1786 push_obstacks (TYPE_OBSTACK (oldtype), TYPE_OBSTACK (oldtype));
1787 else
1789 push_obstacks_nochange ();
1790 end_temporary_allocation ();
1793 /* Merge the data types specified in the two decls. */
1794 if (TREE_CODE (newdecl) != FUNCTION_DECL || !DECL_BUILT_IN (olddecl))
1796 if (different_binding_level)
1797 TREE_TYPE (newdecl)
1798 = build_type_attribute_variant
1799 (newtype,
1800 merge_attributes (TYPE_ATTRIBUTES (newtype),
1801 TYPE_ATTRIBUTES (oldtype)));
1802 else
1803 TREE_TYPE (newdecl)
1804 = TREE_TYPE (olddecl)
1805 = common_type (newtype, oldtype);
1808 /* Lay the type out, unless already done. */
1809 if (oldtype != TREE_TYPE (newdecl))
1811 if (TREE_TYPE (newdecl) != error_mark_node)
1812 layout_type (TREE_TYPE (newdecl));
1813 if (TREE_CODE (newdecl) != FUNCTION_DECL
1814 && TREE_CODE (newdecl) != TYPE_DECL
1815 && TREE_CODE (newdecl) != CONST_DECL)
1816 layout_decl (newdecl, 0);
1818 else
1820 /* Since the type is OLDDECL's, make OLDDECL's size go with. */
1821 DECL_SIZE (newdecl) = DECL_SIZE (olddecl);
1822 DECL_MODE (newdecl) = DECL_MODE (olddecl);
1823 if (TREE_CODE (olddecl) != FUNCTION_DECL)
1824 if (DECL_ALIGN (olddecl) > DECL_ALIGN (newdecl))
1825 DECL_ALIGN (newdecl) = DECL_ALIGN (olddecl);
1828 /* Keep the old rtl since we can safely use it. */
1829 DECL_RTL (newdecl) = DECL_RTL (olddecl);
1831 /* Merge the type qualifiers. */
1832 if (DECL_BUILT_IN_NONANSI (olddecl) && TREE_THIS_VOLATILE (olddecl)
1833 && !TREE_THIS_VOLATILE (newdecl))
1834 TREE_THIS_VOLATILE (write_olddecl) = 0;
1835 if (TREE_READONLY (newdecl))
1836 TREE_READONLY (write_olddecl) = 1;
1837 if (TREE_THIS_VOLATILE (newdecl))
1839 TREE_THIS_VOLATILE (write_olddecl) = 1;
1840 if (TREE_CODE (newdecl) == VAR_DECL)
1841 make_var_volatile (newdecl);
1844 /* Keep source location of definition rather than declaration. */
1845 /* When called with different_binding_level set, keep the old
1846 information so that meaningful diagnostics can be given. */
1847 if (DECL_INITIAL (newdecl) == 0 && DECL_INITIAL (olddecl) != 0
1848 && ! different_binding_level)
1850 DECL_SOURCE_LINE (newdecl) = DECL_SOURCE_LINE (olddecl);
1851 DECL_SOURCE_FILE (newdecl) = DECL_SOURCE_FILE (olddecl);
1854 /* Merge the unused-warning information. */
1855 if (DECL_IN_SYSTEM_HEADER (olddecl))
1856 DECL_IN_SYSTEM_HEADER (newdecl) = 1;
1857 else if (DECL_IN_SYSTEM_HEADER (newdecl))
1858 DECL_IN_SYSTEM_HEADER (write_olddecl) = 1;
1860 /* Merge the initialization information. */
1861 /* When called with different_binding_level set, don't copy over
1862 DECL_INITIAL, so that we don't accidentally change function
1863 declarations into function definitions. */
1864 if (DECL_INITIAL (newdecl) == 0 && ! different_binding_level)
1865 DECL_INITIAL (newdecl) = DECL_INITIAL (olddecl);
1867 /* Merge the section attribute.
1868 We want to issue an error if the sections conflict but that must be
1869 done later in decl_attributes since we are called before attributes
1870 are assigned. */
1871 if (DECL_SECTION_NAME (newdecl) == NULL_TREE)
1872 DECL_SECTION_NAME (newdecl) = DECL_SECTION_NAME (olddecl);
1874 /* Copy the assembler name.
1875 Currently, it can only be defined in the prototype. */
1876 DECL_ASSEMBLER_NAME (newdecl) = DECL_ASSEMBLER_NAME (olddecl);
1878 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1880 DECL_STATIC_CONSTRUCTOR(newdecl) |= DECL_STATIC_CONSTRUCTOR(olddecl);
1881 DECL_STATIC_DESTRUCTOR (newdecl) |= DECL_STATIC_DESTRUCTOR (olddecl);
1883 DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (newdecl)
1884 |= DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (olddecl);
1885 DECL_NO_CHECK_MEMORY_USAGE (newdecl)
1886 |= DECL_NO_CHECK_MEMORY_USAGE (olddecl);
1889 pop_obstacks ();
1891 /* If cannot merge, then use the new type and qualifiers,
1892 and don't preserve the old rtl. */
1893 else if (! different_binding_level)
1895 TREE_TYPE (olddecl) = TREE_TYPE (newdecl);
1896 TREE_READONLY (olddecl) = TREE_READONLY (newdecl);
1897 TREE_THIS_VOLATILE (olddecl) = TREE_THIS_VOLATILE (newdecl);
1898 TREE_SIDE_EFFECTS (olddecl) = TREE_SIDE_EFFECTS (newdecl);
1901 /* Merge the storage class information. */
1902 DECL_WEAK (newdecl) |= DECL_WEAK (olddecl);
1903 /* For functions, static overrides non-static. */
1904 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1906 TREE_PUBLIC (newdecl) &= TREE_PUBLIC (olddecl);
1907 /* This is since we don't automatically
1908 copy the attributes of NEWDECL into OLDDECL. */
1909 /* No need to worry about different_binding_level here because
1910 then TREE_PUBLIC (newdecl) was true. */
1911 TREE_PUBLIC (olddecl) = TREE_PUBLIC (newdecl);
1912 /* If this clears `static', clear it in the identifier too. */
1913 if (! TREE_PUBLIC (olddecl))
1914 TREE_PUBLIC (DECL_NAME (olddecl)) = 0;
1916 if (DECL_EXTERNAL (newdecl))
1918 TREE_STATIC (newdecl) = TREE_STATIC (olddecl);
1919 DECL_EXTERNAL (newdecl) = DECL_EXTERNAL (olddecl);
1920 /* An extern decl does not override previous storage class. */
1921 TREE_PUBLIC (newdecl) = TREE_PUBLIC (olddecl);
1922 if (! DECL_EXTERNAL (newdecl))
1923 DECL_CONTEXT (newdecl) = DECL_CONTEXT (olddecl);
1925 else
1927 TREE_STATIC (olddecl) = TREE_STATIC (newdecl);
1928 TREE_PUBLIC (olddecl) = TREE_PUBLIC (newdecl);
1931 /* If either decl says `inline', this fn is inline,
1932 unless its definition was passed already. */
1933 if (DECL_INLINE (newdecl) && DECL_INITIAL (olddecl) == 0)
1934 DECL_INLINE (olddecl) = 1;
1935 DECL_INLINE (newdecl) = DECL_INLINE (olddecl);
1937 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1939 if (DECL_BUILT_IN (olddecl))
1941 /* Get rid of any built-in function if new arg types don't match it
1942 or if we have a function definition. */
1943 if (! types_match || new_is_definition)
1945 if (! different_binding_level)
1947 TREE_TYPE (olddecl) = TREE_TYPE (newdecl);
1948 DECL_BUILT_IN_CLASS (olddecl) = NOT_BUILT_IN;
1951 else
1953 /* If redeclaring a builtin function, and not a definition,
1954 it stays built in. */
1955 DECL_BUILT_IN_CLASS (newdecl) = DECL_BUILT_IN_CLASS (olddecl);
1956 DECL_FUNCTION_CODE (newdecl) = DECL_FUNCTION_CODE (olddecl);
1959 /* Also preserve various other info from the definition. */
1960 else if (! new_is_definition)
1961 DECL_FRAME_SIZE (newdecl) = DECL_FRAME_SIZE (olddecl);
1962 if (! new_is_definition)
1964 DECL_RESULT (newdecl) = DECL_RESULT (olddecl);
1965 /* When called with different_binding_level set, don't copy over
1966 DECL_INITIAL, so that we don't accidentally change function
1967 declarations into function definitions. */
1968 if (! different_binding_level)
1969 DECL_INITIAL (newdecl) = DECL_INITIAL (olddecl);
1970 DECL_SAVED_INSNS (newdecl) = DECL_SAVED_INSNS (olddecl);
1971 DECL_ARGUMENTS (newdecl) = DECL_ARGUMENTS (olddecl);
1972 if (DECL_INLINE (newdecl))
1973 DECL_ABSTRACT_ORIGIN (newdecl) = DECL_ORIGIN (olddecl);
1976 if (different_binding_level)
1978 /* Don't output a duplicate symbol or debugging information for this
1979 declaration.
1981 Do not set TREE_ASM_WRITTEN for a FUNCTION_DECL since we may actually
1982 just have two declarations without a definition. VAR_DECLs may need
1983 the same treatment, I'm not sure. */
1984 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1985 DECL_IGNORED_P (newdecl) = 1;
1986 else
1987 TREE_ASM_WRITTEN (newdecl) = DECL_IGNORED_P (newdecl) = 1;
1988 return 0;
1991 /* Copy most of the decl-specific fields of NEWDECL into OLDDECL.
1992 But preserve OLDDECL's DECL_UID. */
1994 register unsigned olddecl_uid = DECL_UID (olddecl);
1996 bcopy ((char *) newdecl + sizeof (struct tree_common),
1997 (char *) olddecl + sizeof (struct tree_common),
1998 sizeof (struct tree_decl) - sizeof (struct tree_common));
1999 DECL_UID (olddecl) = olddecl_uid;
2002 /* NEWDECL contains the merged attribute lists.
2003 Update OLDDECL to be the same. */
2004 DECL_MACHINE_ATTRIBUTES (olddecl) = DECL_MACHINE_ATTRIBUTES (newdecl);
2006 return 1;
2009 /* Record a decl-node X as belonging to the current lexical scope.
2010 Check for errors (such as an incompatible declaration for the same
2011 name already seen in the same scope).
2013 Returns either X or an old decl for the same name.
2014 If an old decl is returned, it may have been smashed
2015 to agree with what X says. */
2017 tree
2018 pushdecl (x)
2019 tree x;
2021 register tree t;
2022 register tree name = DECL_NAME (x);
2023 register struct binding_level *b = current_binding_level;
2025 DECL_CONTEXT (x) = current_function_decl;
2026 /* A local extern declaration for a function doesn't constitute nesting.
2027 A local auto declaration does, since it's a forward decl
2028 for a nested function coming later. */
2029 if (TREE_CODE (x) == FUNCTION_DECL && DECL_INITIAL (x) == 0
2030 && DECL_EXTERNAL (x))
2031 DECL_CONTEXT (x) = 0;
2033 if (warn_nested_externs && DECL_EXTERNAL (x) && b != global_binding_level
2034 && x != IDENTIFIER_IMPLICIT_DECL (name)
2035 /* Don't print error messages for __FUNCTION__ and __PRETTY_FUNCTION__ */
2036 && !DECL_IN_SYSTEM_HEADER (x))
2037 warning ("nested extern declaration of `%s'", IDENTIFIER_POINTER (name));
2039 if (name)
2041 char *file;
2042 int line;
2043 int different_binding_level = 0;
2045 t = lookup_name_current_level (name);
2046 /* Don't type check externs here when -traditional. This is so that
2047 code with conflicting declarations inside blocks will get warnings
2048 not errors. X11 for instance depends on this. */
2049 if (! t && DECL_EXTERNAL (x) && TREE_PUBLIC (x) && ! flag_traditional)
2051 t = IDENTIFIER_GLOBAL_VALUE (name);
2052 /* Type decls at global scope don't conflict with externs declared
2053 inside lexical blocks. */
2054 if (t && TREE_CODE (t) == TYPE_DECL)
2055 t = 0;
2056 different_binding_level = 1;
2058 if (t != 0 && t == error_mark_node)
2059 /* error_mark_node is 0 for a while during initialization! */
2061 t = 0;
2062 error_with_decl (x, "`%s' used prior to declaration");
2065 if (t != 0)
2067 file = DECL_SOURCE_FILE (t);
2068 line = DECL_SOURCE_LINE (t);
2071 /* If this decl is `static' and an implicit decl was seen previously,
2072 warn. But don't complain if -traditional,
2073 since traditional compilers don't complain. */
2074 if (! flag_traditional && TREE_PUBLIC (name)
2075 /* Don't test for DECL_EXTERNAL, because grokdeclarator
2076 sets this for all functions. */
2077 && ! TREE_PUBLIC (x)
2078 && (TREE_CODE (x) == FUNCTION_DECL || b == global_binding_level)
2079 /* We used to warn also for explicit extern followed by static,
2080 but sometimes you need to do it that way. */
2081 && IDENTIFIER_IMPLICIT_DECL (name) != 0)
2083 pedwarn ("`%s' was declared implicitly `extern' and later `static'",
2084 IDENTIFIER_POINTER (name));
2085 pedwarn_with_file_and_line
2086 (DECL_SOURCE_FILE (IDENTIFIER_IMPLICIT_DECL (name)),
2087 DECL_SOURCE_LINE (IDENTIFIER_IMPLICIT_DECL (name)),
2088 "previous declaration of `%s'",
2089 IDENTIFIER_POINTER (name));
2090 TREE_THIS_VOLATILE (name) = 1;
2093 if (t != 0 && duplicate_decls (x, t, different_binding_level))
2095 if (TREE_CODE (t) == PARM_DECL)
2097 /* Don't allow more than one "real" duplicate
2098 of a forward parm decl. */
2099 TREE_ASM_WRITTEN (t) = TREE_ASM_WRITTEN (x);
2100 return t;
2102 return t;
2105 /* If we are processing a typedef statement, generate a whole new
2106 ..._TYPE node (which will be just an variant of the existing
2107 ..._TYPE node with identical properties) and then install the
2108 TYPE_DECL node generated to represent the typedef name as the
2109 TYPE_NAME of this brand new (duplicate) ..._TYPE node.
2111 The whole point here is to end up with a situation where each
2112 and every ..._TYPE node the compiler creates will be uniquely
2113 associated with AT MOST one node representing a typedef name.
2114 This way, even though the compiler substitutes corresponding
2115 ..._TYPE nodes for TYPE_DECL (i.e. "typedef name") nodes very
2116 early on, later parts of the compiler can always do the reverse
2117 translation and get back the corresponding typedef name. For
2118 example, given:
2120 typedef struct S MY_TYPE;
2121 MY_TYPE object;
2123 Later parts of the compiler might only know that `object' was of
2124 type `struct S' if it were not for code just below. With this
2125 code however, later parts of the compiler see something like:
2127 struct S' == struct S
2128 typedef struct S' MY_TYPE;
2129 struct S' object;
2131 And they can then deduce (from the node for type struct S') that
2132 the original object declaration was:
2134 MY_TYPE object;
2136 Being able to do this is important for proper support of protoize,
2137 and also for generating precise symbolic debugging information
2138 which takes full account of the programmer's (typedef) vocabulary.
2140 Obviously, we don't want to generate a duplicate ..._TYPE node if
2141 the TYPE_DECL node that we are now processing really represents a
2142 standard built-in type.
2144 Since all standard types are effectively declared at line zero
2145 in the source file, we can easily check to see if we are working
2146 on a standard type by checking the current value of lineno. */
2148 if (TREE_CODE (x) == TYPE_DECL)
2150 if (DECL_SOURCE_LINE (x) == 0)
2152 if (TYPE_NAME (TREE_TYPE (x)) == 0)
2153 TYPE_NAME (TREE_TYPE (x)) = x;
2155 else if (TREE_TYPE (x) != error_mark_node
2156 && DECL_ORIGINAL_TYPE (x) == NULL_TREE)
2158 tree tt = TREE_TYPE (x);
2159 DECL_ORIGINAL_TYPE (x) = tt;
2160 tt = build_type_copy (tt);
2161 TYPE_NAME (tt) = x;
2162 TREE_TYPE (x) = tt;
2166 /* Multiple external decls of the same identifier ought to match.
2167 Check against both global declarations (when traditional) and out of
2168 scope (limbo) block level declarations.
2170 We get warnings about inline functions where they are defined.
2171 Avoid duplicate warnings where they are used. */
2172 if (TREE_PUBLIC (x) && ! DECL_INLINE (x))
2174 tree decl;
2176 if (flag_traditional && IDENTIFIER_GLOBAL_VALUE (name) != 0
2177 && (DECL_EXTERNAL (IDENTIFIER_GLOBAL_VALUE (name))
2178 || TREE_PUBLIC (IDENTIFIER_GLOBAL_VALUE (name))))
2179 decl = IDENTIFIER_GLOBAL_VALUE (name);
2180 else if (IDENTIFIER_LIMBO_VALUE (name) != 0)
2181 /* Decls in limbo are always extern, so no need to check that. */
2182 decl = IDENTIFIER_LIMBO_VALUE (name);
2183 else
2184 decl = 0;
2186 if (decl && ! comptypes (TREE_TYPE (x), TREE_TYPE (decl))
2187 /* If old decl is built-in, we already warned if we should. */
2188 && !DECL_BUILT_IN (decl))
2190 pedwarn_with_decl (x,
2191 "type mismatch with previous external decl");
2192 pedwarn_with_decl (decl, "previous external decl of `%s'");
2196 /* If a function has had an implicit declaration, and then is defined,
2197 make sure they are compatible. */
2199 if (IDENTIFIER_IMPLICIT_DECL (name) != 0
2200 && IDENTIFIER_GLOBAL_VALUE (name) == 0
2201 && TREE_CODE (x) == FUNCTION_DECL
2202 && ! comptypes (TREE_TYPE (x),
2203 TREE_TYPE (IDENTIFIER_IMPLICIT_DECL (name))))
2205 warning_with_decl (x, "type mismatch with previous implicit declaration");
2206 warning_with_decl (IDENTIFIER_IMPLICIT_DECL (name),
2207 "previous implicit declaration of `%s'");
2210 /* In PCC-compatibility mode, extern decls of vars with no current decl
2211 take effect at top level no matter where they are. */
2212 if (flag_traditional && DECL_EXTERNAL (x)
2213 && lookup_name (name) == 0)
2215 tree type = TREE_TYPE (x);
2217 /* But don't do this if the type contains temporary nodes. */
2218 while (type)
2220 if (type == error_mark_node)
2221 break;
2222 if (! TYPE_CONTEXT (type))
2224 warning_with_decl (x, "type of external `%s' is not global");
2225 /* By exiting the loop early, we leave TYPE nonzero,
2226 and thus prevent globalization of the decl. */
2227 break;
2229 else if (TREE_CODE (type) == FUNCTION_TYPE
2230 && TYPE_ARG_TYPES (type) != 0)
2231 /* The types might not be truly local,
2232 but the list of arg types certainly is temporary.
2233 Since prototypes are nontraditional,
2234 ok not to do the traditional thing. */
2235 break;
2236 type = TREE_TYPE (type);
2239 if (type == 0)
2240 b = global_binding_level;
2243 /* This name is new in its binding level.
2244 Install the new declaration and return it. */
2245 if (b == global_binding_level)
2247 /* Install a global value. */
2249 /* If the first global decl has external linkage,
2250 warn if we later see static one. */
2251 if (IDENTIFIER_GLOBAL_VALUE (name) == 0 && TREE_PUBLIC (x))
2252 TREE_PUBLIC (name) = 1;
2254 IDENTIFIER_GLOBAL_VALUE (name) = x;
2256 /* We no longer care about any previous block level declarations. */
2257 IDENTIFIER_LIMBO_VALUE (name) = 0;
2259 /* Don't forget if the function was used via an implicit decl. */
2260 if (IDENTIFIER_IMPLICIT_DECL (name)
2261 && TREE_USED (IDENTIFIER_IMPLICIT_DECL (name)))
2262 TREE_USED (x) = 1, TREE_USED (name) = 1;
2264 /* Don't forget if its address was taken in that way. */
2265 if (IDENTIFIER_IMPLICIT_DECL (name)
2266 && TREE_ADDRESSABLE (IDENTIFIER_IMPLICIT_DECL (name)))
2267 TREE_ADDRESSABLE (x) = 1;
2269 /* Warn about mismatches against previous implicit decl. */
2270 if (IDENTIFIER_IMPLICIT_DECL (name) != 0
2271 /* If this real decl matches the implicit, don't complain. */
2272 && ! (TREE_CODE (x) == FUNCTION_DECL
2273 && (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (x)))
2274 == integer_type_node)))
2275 pedwarn ("`%s' was previously implicitly declared to return `int'",
2276 IDENTIFIER_POINTER (name));
2278 /* If this decl is `static' and an `extern' was seen previously,
2279 that is erroneous. */
2280 if (TREE_PUBLIC (name)
2281 && ! TREE_PUBLIC (x) && ! DECL_EXTERNAL (x))
2283 /* Okay to redeclare an ANSI built-in as static. */
2284 if (t != 0 && DECL_BUILT_IN (t))
2286 /* Okay to declare a non-ANSI built-in as anything. */
2287 else if (t != 0 && DECL_BUILT_IN_NONANSI (t))
2289 /* Okay to have global type decl after an earlier extern
2290 declaration inside a lexical block. */
2291 else if (TREE_CODE (x) == TYPE_DECL)
2293 else if (IDENTIFIER_IMPLICIT_DECL (name))
2295 if (! TREE_THIS_VOLATILE (name))
2296 pedwarn ("`%s' was declared implicitly `extern' and later `static'",
2297 IDENTIFIER_POINTER (name));
2299 else
2300 pedwarn ("`%s' was declared `extern' and later `static'",
2301 IDENTIFIER_POINTER (name));
2304 else
2306 /* Here to install a non-global value. */
2307 tree oldlocal = IDENTIFIER_LOCAL_VALUE (name);
2308 tree oldglobal = IDENTIFIER_GLOBAL_VALUE (name);
2309 IDENTIFIER_LOCAL_VALUE (name) = x;
2311 /* If this is an extern function declaration, see if we
2312 have a global definition or declaration for the function. */
2313 if (oldlocal == 0
2314 && DECL_EXTERNAL (x) && !DECL_INLINE (x)
2315 && oldglobal != 0
2316 && TREE_CODE (x) == FUNCTION_DECL
2317 && TREE_CODE (oldglobal) == FUNCTION_DECL)
2319 /* We have one. Their types must agree. */
2320 if (! comptypes (TREE_TYPE (x),
2321 TREE_TYPE (IDENTIFIER_GLOBAL_VALUE (name))))
2322 pedwarn_with_decl (x, "extern declaration of `%s' doesn't match global one");
2323 else
2325 /* Inner extern decl is inline if global one is.
2326 Copy enough to really inline it. */
2327 if (DECL_INLINE (oldglobal))
2329 DECL_INLINE (x) = DECL_INLINE (oldglobal);
2330 DECL_INITIAL (x) = (current_function_decl == oldglobal
2331 ? 0 : DECL_INITIAL (oldglobal));
2332 DECL_SAVED_INSNS (x) = DECL_SAVED_INSNS (oldglobal);
2333 DECL_FRAME_SIZE (x) = DECL_FRAME_SIZE (oldglobal);
2334 DECL_ARGUMENTS (x) = DECL_ARGUMENTS (oldglobal);
2335 DECL_RESULT (x) = DECL_RESULT (oldglobal);
2336 TREE_ASM_WRITTEN (x) = TREE_ASM_WRITTEN (oldglobal);
2337 DECL_ABSTRACT_ORIGIN (x) = DECL_ORIGIN (oldglobal);
2339 /* Inner extern decl is built-in if global one is. */
2340 if (DECL_BUILT_IN (oldglobal))
2342 DECL_BUILT_IN_CLASS (x) = DECL_BUILT_IN_CLASS (oldglobal);
2343 DECL_FUNCTION_CODE (x) = DECL_FUNCTION_CODE (oldglobal);
2345 /* Keep the arg types from a file-scope fcn defn. */
2346 if (TYPE_ARG_TYPES (TREE_TYPE (oldglobal)) != 0
2347 && DECL_INITIAL (oldglobal)
2348 && TYPE_ARG_TYPES (TREE_TYPE (x)) == 0)
2349 TREE_TYPE (x) = TREE_TYPE (oldglobal);
2353 #if 0 /* This case is probably sometimes the right thing to do. */
2354 /* If we have a local external declaration,
2355 then any file-scope declaration should not
2356 have been static. */
2357 if (oldlocal == 0 && oldglobal != 0
2358 && !TREE_PUBLIC (oldglobal)
2359 && DECL_EXTERNAL (x) && TREE_PUBLIC (x))
2360 warning ("`%s' locally external but globally static",
2361 IDENTIFIER_POINTER (name));
2362 #endif
2364 /* If we have a local external declaration,
2365 and no file-scope declaration has yet been seen,
2366 then if we later have a file-scope decl it must not be static. */
2367 if (oldlocal == 0
2368 && DECL_EXTERNAL (x)
2369 && TREE_PUBLIC (x))
2371 if (oldglobal == 0)
2372 TREE_PUBLIC (name) = 1;
2374 /* Save this decl, so that we can do type checking against
2375 other decls after it falls out of scope.
2377 Only save it once. This prevents temporary decls created in
2378 expand_inline_function from being used here, since this
2379 will have been set when the inline function was parsed.
2380 It also helps give slightly better warnings. */
2381 if (IDENTIFIER_LIMBO_VALUE (name) == 0)
2382 IDENTIFIER_LIMBO_VALUE (name) = x;
2385 /* Warn if shadowing an argument at the top level of the body. */
2386 if (oldlocal != 0 && !DECL_EXTERNAL (x)
2387 /* This warning doesn't apply to the parms of a nested fcn. */
2388 && ! current_binding_level->parm_flag
2389 /* Check that this is one level down from the parms. */
2390 && current_binding_level->level_chain->parm_flag
2391 /* Check that the decl being shadowed
2392 comes from the parm level, one level up. */
2393 && chain_member (oldlocal, current_binding_level->level_chain->names))
2395 if (TREE_CODE (oldlocal) == PARM_DECL)
2396 pedwarn ("declaration of `%s' shadows a parameter",
2397 IDENTIFIER_POINTER (name));
2398 else
2399 pedwarn ("declaration of `%s' shadows a symbol from the parameter list",
2400 IDENTIFIER_POINTER (name));
2403 /* Maybe warn if shadowing something else. */
2404 else if (warn_shadow && !DECL_EXTERNAL (x)
2405 /* No shadow warnings for internally generated vars. */
2406 && DECL_SOURCE_LINE (x) != 0
2407 /* No shadow warnings for vars made for inlining. */
2408 && ! DECL_FROM_INLINE (x))
2410 char *id = IDENTIFIER_POINTER (name);
2412 if (TREE_CODE (x) == PARM_DECL
2413 && current_binding_level->level_chain->parm_flag)
2414 /* Don't warn about the parm names in function declarator
2415 within a function declarator.
2416 It would be nice to avoid warning in any function
2417 declarator in a declaration, as opposed to a definition,
2418 but there is no way to tell it's not a definition. */
2420 else if (oldlocal != 0 && TREE_CODE (oldlocal) == PARM_DECL)
2421 warning ("declaration of `%s' shadows a parameter", id);
2422 else if (oldlocal != 0)
2423 warning ("declaration of `%s' shadows previous local", id);
2424 else if (IDENTIFIER_GLOBAL_VALUE (name) != 0
2425 && IDENTIFIER_GLOBAL_VALUE (name) != error_mark_node)
2426 warning ("declaration of `%s' shadows global declaration", id);
2429 /* If storing a local value, there may already be one (inherited).
2430 If so, record it for restoration when this binding level ends. */
2431 if (oldlocal != 0)
2432 b->shadowed = tree_cons (name, oldlocal, b->shadowed);
2435 /* Keep count of variables in this level with incomplete type. */
2436 if (TYPE_SIZE (TREE_TYPE (x)) == 0)
2437 ++b->n_incomplete;
2440 /* Put decls on list in reverse order.
2441 We will reverse them later if necessary. */
2442 TREE_CHAIN (x) = b->names;
2443 b->names = x;
2445 return x;
2448 /* Like pushdecl, only it places X in GLOBAL_BINDING_LEVEL, if appropriate. */
2450 tree
2451 pushdecl_top_level (x)
2452 tree x;
2454 register tree t;
2455 register struct binding_level *b = current_binding_level;
2457 current_binding_level = global_binding_level;
2458 t = pushdecl (x);
2459 current_binding_level = b;
2460 return t;
2463 /* Generate an implicit declaration for identifier FUNCTIONID
2464 as a function of type int (). Print a warning if appropriate. */
2466 tree
2467 implicitly_declare (functionid)
2468 tree functionid;
2470 register tree decl;
2471 int traditional_warning = 0;
2472 /* Only one "implicit declaration" warning per identifier. */
2473 int implicit_warning;
2475 /* Save the decl permanently so we can warn if definition follows. */
2476 push_obstacks_nochange ();
2477 end_temporary_allocation ();
2479 /* We used to reuse an old implicit decl here,
2480 but this loses with inline functions because it can clobber
2481 the saved decl chains. */
2482 /* if (IDENTIFIER_IMPLICIT_DECL (functionid) != 0)
2483 decl = IDENTIFIER_IMPLICIT_DECL (functionid);
2484 else */
2485 decl = build_decl (FUNCTION_DECL, functionid, default_function_type);
2487 /* Warn of implicit decl following explicit local extern decl.
2488 This is probably a program designed for traditional C. */
2489 if (TREE_PUBLIC (functionid) && IDENTIFIER_GLOBAL_VALUE (functionid) == 0)
2490 traditional_warning = 1;
2492 /* Warn once of an implicit declaration. */
2493 implicit_warning = (IDENTIFIER_IMPLICIT_DECL (functionid) == 0);
2495 DECL_EXTERNAL (decl) = 1;
2496 TREE_PUBLIC (decl) = 1;
2498 /* Record that we have an implicit decl and this is it. */
2499 IDENTIFIER_IMPLICIT_DECL (functionid) = decl;
2501 /* ANSI standard says implicit declarations are in the innermost block.
2502 So we record the decl in the standard fashion.
2503 If flag_traditional is set, pushdecl does it top-level. */
2504 pushdecl (decl);
2506 /* This is a no-op in c-lang.c or something real in objc-actions.c. */
2507 maybe_objc_check_decl (decl);
2509 rest_of_decl_compilation (decl, NULL_PTR, 0, 0);
2511 if (mesg_implicit_function_declaration && implicit_warning)
2513 if (mesg_implicit_function_declaration == 2)
2514 error ("implicit declaration of function `%s'",
2515 IDENTIFIER_POINTER (functionid));
2516 else
2517 warning ("implicit declaration of function `%s'",
2518 IDENTIFIER_POINTER (functionid));
2520 else if (warn_traditional && traditional_warning)
2521 warning ("function `%s' was previously declared within a block",
2522 IDENTIFIER_POINTER (functionid));
2524 /* Write a record describing this implicit function declaration to the
2525 prototypes file (if requested). */
2527 gen_aux_info_record (decl, 0, 1, 0);
2529 pop_obstacks ();
2531 return decl;
2534 /* Return zero if the declaration NEWDECL is valid
2535 when the declaration OLDDECL (assumed to be for the same name)
2536 has already been seen.
2537 Otherwise return 1 if NEWDECL is a redefinition, 2 if it is a redeclaration,
2538 and 3 if it is a conflicting declaration. */
2540 static int
2541 redeclaration_error_message (newdecl, olddecl)
2542 tree newdecl, olddecl;
2544 if (TREE_CODE (newdecl) == TYPE_DECL)
2546 if (flag_traditional && TREE_TYPE (newdecl) == TREE_TYPE (olddecl))
2547 return 0;
2548 /* pushdecl creates distinct types for TYPE_DECLs by calling
2549 build_type_copy, so the above comparison generally fails. We do
2550 another test against the TYPE_MAIN_VARIANT of the olddecl, which
2551 is equivalent to what this code used to do before the build_type_copy
2552 call. The variant type distinction should not matter for traditional
2553 code, because it doesn't have type qualifiers. */
2554 if (flag_traditional
2555 && TYPE_MAIN_VARIANT (TREE_TYPE (olddecl)) == TREE_TYPE (newdecl))
2556 return 0;
2557 if (DECL_IN_SYSTEM_HEADER (olddecl) || DECL_IN_SYSTEM_HEADER (newdecl))
2558 return 0;
2559 return 1;
2561 else if (TREE_CODE (newdecl) == FUNCTION_DECL)
2563 /* Declarations of functions can insist on internal linkage
2564 but they can't be inconsistent with internal linkage,
2565 so there can be no error on that account.
2566 However defining the same name twice is no good. */
2567 if (DECL_INITIAL (olddecl) != 0 && DECL_INITIAL (newdecl) != 0
2568 /* However, defining once as extern inline and a second
2569 time in another way is ok. */
2570 && !(DECL_INLINE (olddecl) && DECL_EXTERNAL (olddecl)
2571 && !(DECL_INLINE (newdecl) && DECL_EXTERNAL (newdecl))))
2572 return 1;
2573 return 0;
2575 else if (current_binding_level == global_binding_level)
2577 /* Objects declared at top level: */
2578 /* If at least one is a reference, it's ok. */
2579 if (DECL_EXTERNAL (newdecl) || DECL_EXTERNAL (olddecl))
2580 return 0;
2581 /* Reject two definitions. */
2582 if (DECL_INITIAL (olddecl) != 0 && DECL_INITIAL (newdecl) != 0)
2583 return 1;
2584 /* Now we have two tentative defs, or one tentative and one real def. */
2585 /* Insist that the linkage match. */
2586 if (TREE_PUBLIC (olddecl) != TREE_PUBLIC (newdecl))
2587 return 3;
2588 return 0;
2590 else if (current_binding_level->parm_flag
2591 && TREE_ASM_WRITTEN (olddecl) && !TREE_ASM_WRITTEN (newdecl))
2592 return 0;
2593 else
2595 /* Newdecl has block scope. If olddecl has block scope also, then
2596 reject two definitions, and reject a definition together with an
2597 external reference. Otherwise, it is OK, because newdecl must
2598 be an extern reference to olddecl. */
2599 if (!(DECL_EXTERNAL (newdecl) && DECL_EXTERNAL (olddecl))
2600 && DECL_CONTEXT (newdecl) == DECL_CONTEXT (olddecl))
2601 return 2;
2602 return 0;
2606 /* Get the LABEL_DECL corresponding to identifier ID as a label.
2607 Create one if none exists so far for the current function.
2608 This function is called for both label definitions and label references. */
2610 tree
2611 lookup_label (id)
2612 tree id;
2614 register tree decl = IDENTIFIER_LABEL_VALUE (id);
2616 if (current_function_decl == 0)
2618 error ("label %s referenced outside of any function",
2619 IDENTIFIER_POINTER (id));
2620 return 0;
2623 /* Use a label already defined or ref'd with this name. */
2624 if (decl != 0)
2626 /* But not if it is inherited and wasn't declared to be inheritable. */
2627 if (DECL_CONTEXT (decl) != current_function_decl
2628 && ! C_DECLARED_LABEL_FLAG (decl))
2629 return shadow_label (id);
2630 return decl;
2633 decl = build_decl (LABEL_DECL, id, void_type_node);
2635 /* Make sure every label has an rtx. */
2636 label_rtx (decl);
2638 /* A label not explicitly declared must be local to where it's ref'd. */
2639 DECL_CONTEXT (decl) = current_function_decl;
2641 DECL_MODE (decl) = VOIDmode;
2643 /* Say where one reference is to the label,
2644 for the sake of the error if it is not defined. */
2645 DECL_SOURCE_LINE (decl) = lineno;
2646 DECL_SOURCE_FILE (decl) = input_filename;
2648 IDENTIFIER_LABEL_VALUE (id) = decl;
2650 named_labels = tree_cons (NULL_TREE, decl, named_labels);
2652 return decl;
2655 /* Make a label named NAME in the current function,
2656 shadowing silently any that may be inherited from containing functions
2657 or containing scopes.
2659 Note that valid use, if the label being shadowed
2660 comes from another scope in the same function,
2661 requires calling declare_nonlocal_label right away. */
2663 tree
2664 shadow_label (name)
2665 tree name;
2667 register tree decl = IDENTIFIER_LABEL_VALUE (name);
2669 if (decl != 0)
2671 register tree dup;
2673 /* Check to make sure that the label hasn't already been declared
2674 at this label scope */
2675 for (dup = named_labels; dup; dup = TREE_CHAIN (dup))
2676 if (TREE_VALUE (dup) == decl)
2678 error ("duplicate label declaration `%s'",
2679 IDENTIFIER_POINTER (name));
2680 error_with_decl (TREE_VALUE (dup),
2681 "this is a previous declaration");
2682 /* Just use the previous declaration. */
2683 return lookup_label (name);
2686 shadowed_labels = tree_cons (NULL_TREE, decl, shadowed_labels);
2687 IDENTIFIER_LABEL_VALUE (name) = decl = 0;
2690 return lookup_label (name);
2693 /* Define a label, specifying the location in the source file.
2694 Return the LABEL_DECL node for the label, if the definition is valid.
2695 Otherwise return 0. */
2697 tree
2698 define_label (filename, line, name)
2699 char *filename;
2700 int line;
2701 tree name;
2703 tree decl = lookup_label (name);
2705 /* If label with this name is known from an outer context, shadow it. */
2706 if (decl != 0 && DECL_CONTEXT (decl) != current_function_decl)
2708 shadowed_labels = tree_cons (NULL_TREE, decl, shadowed_labels);
2709 IDENTIFIER_LABEL_VALUE (name) = 0;
2710 decl = lookup_label (name);
2713 if (DECL_INITIAL (decl) != 0)
2715 error ("duplicate label `%s'", IDENTIFIER_POINTER (name));
2716 return 0;
2718 else
2720 /* Mark label as having been defined. */
2721 DECL_INITIAL (decl) = error_mark_node;
2722 /* Say where in the source. */
2723 DECL_SOURCE_FILE (decl) = filename;
2724 DECL_SOURCE_LINE (decl) = line;
2725 return decl;
2729 /* Return the list of declarations of the current level.
2730 Note that this list is in reverse order unless/until
2731 you nreverse it; and when you do nreverse it, you must
2732 store the result back using `storedecls' or you will lose. */
2734 tree
2735 getdecls ()
2737 return current_binding_level->names;
2740 /* Return the list of type-tags (for structs, etc) of the current level. */
2742 tree
2743 gettags ()
2745 return current_binding_level->tags;
2748 /* Store the list of declarations of the current level.
2749 This is done for the parameter declarations of a function being defined,
2750 after they are modified in the light of any missing parameters. */
2752 static void
2753 storedecls (decls)
2754 tree decls;
2756 current_binding_level->names = decls;
2759 /* Similarly, store the list of tags of the current level. */
2761 static void
2762 storetags (tags)
2763 tree tags;
2765 current_binding_level->tags = tags;
2768 /* Given NAME, an IDENTIFIER_NODE,
2769 return the structure (or union or enum) definition for that name.
2770 Searches binding levels from BINDING_LEVEL up to the global level.
2771 If THISLEVEL_ONLY is nonzero, searches only the specified context
2772 (but skips any tag-transparent contexts to find one that is
2773 meaningful for tags).
2774 CODE says which kind of type the caller wants;
2775 it is RECORD_TYPE or UNION_TYPE or ENUMERAL_TYPE.
2776 If the wrong kind of type is found, an error is reported. */
2778 static tree
2779 lookup_tag (code, name, binding_level, thislevel_only)
2780 enum tree_code code;
2781 struct binding_level *binding_level;
2782 tree name;
2783 int thislevel_only;
2785 register struct binding_level *level;
2787 for (level = binding_level; level; level = level->level_chain)
2789 register tree tail;
2790 for (tail = level->tags; tail; tail = TREE_CHAIN (tail))
2792 if (TREE_PURPOSE (tail) == name)
2794 if (TREE_CODE (TREE_VALUE (tail)) != code)
2796 /* Definition isn't the kind we were looking for. */
2797 pending_invalid_xref = name;
2798 pending_invalid_xref_file = input_filename;
2799 pending_invalid_xref_line = lineno;
2801 return TREE_VALUE (tail);
2804 if (thislevel_only && ! level->tag_transparent)
2805 return NULL_TREE;
2807 return NULL_TREE;
2810 /* Print an error message now
2811 for a recent invalid struct, union or enum cross reference.
2812 We don't print them immediately because they are not invalid
2813 when used in the `struct foo;' construct for shadowing. */
2815 void
2816 pending_xref_error ()
2818 if (pending_invalid_xref != 0)
2819 error_with_file_and_line (pending_invalid_xref_file,
2820 pending_invalid_xref_line,
2821 "`%s' defined as wrong kind of tag",
2822 IDENTIFIER_POINTER (pending_invalid_xref));
2823 pending_invalid_xref = 0;
2826 /* Given a type, find the tag that was defined for it and return the tag name.
2827 Otherwise return 0. */
2829 static tree
2830 lookup_tag_reverse (type)
2831 tree type;
2833 register struct binding_level *level;
2835 for (level = current_binding_level; level; level = level->level_chain)
2837 register tree tail;
2838 for (tail = level->tags; tail; tail = TREE_CHAIN (tail))
2840 if (TREE_VALUE (tail) == type)
2841 return TREE_PURPOSE (tail);
2844 return NULL_TREE;
2847 /* Look up NAME in the current binding level and its superiors
2848 in the namespace of variables, functions and typedefs.
2849 Return a ..._DECL node of some kind representing its definition,
2850 or return 0 if it is undefined. */
2852 tree
2853 lookup_name (name)
2854 tree name;
2856 register tree val;
2857 if (current_binding_level != global_binding_level
2858 && IDENTIFIER_LOCAL_VALUE (name))
2859 val = IDENTIFIER_LOCAL_VALUE (name);
2860 else
2861 val = IDENTIFIER_GLOBAL_VALUE (name);
2862 return val;
2865 /* Similar to `lookup_name' but look only at current binding level. */
2867 tree
2868 lookup_name_current_level (name)
2869 tree name;
2871 register tree t;
2873 if (current_binding_level == global_binding_level)
2874 return IDENTIFIER_GLOBAL_VALUE (name);
2876 if (IDENTIFIER_LOCAL_VALUE (name) == 0)
2877 return 0;
2879 for (t = current_binding_level->names; t; t = TREE_CHAIN (t))
2880 if (DECL_NAME (t) == name)
2881 break;
2883 return t;
2886 /* Mark ARG for GC. */
2887 static void
2888 mark_binding_level (arg)
2889 void *arg;
2891 struct binding_level *level = *(struct binding_level **) arg;
2893 while (level)
2895 ggc_mark_tree (level->names);
2896 ggc_mark_tree (level->tags);
2897 ggc_mark_tree (level->shadowed);
2898 ggc_mark_tree (level->blocks);
2899 ggc_mark_tree (level->this_block);
2900 ggc_mark_tree (level->parm_order);
2901 level = level->level_chain;
2905 /* Create the predefined scalar types of C,
2906 and some nodes representing standard constants (0, 1, (void *) 0).
2907 Initialize the global binding level.
2908 Make definitions for built-in primitive functions. */
2910 void
2911 init_decl_processing ()
2913 register tree endlink;
2914 tree ptr_ftype_void, ptr_ftype_ptr;
2915 int wchar_type_size;
2916 tree array_domain_type;
2918 current_function_decl = NULL;
2919 named_labels = NULL;
2920 current_binding_level = NULL_BINDING_LEVEL;
2921 free_binding_level = NULL_BINDING_LEVEL;
2922 pushlevel (0); /* make the binding_level structure for global names */
2923 global_binding_level = current_binding_level;
2925 build_common_tree_nodes (flag_signed_char);
2927 /* Define `int' and `char' first so that dbx will output them first. */
2928 pushdecl (build_decl (TYPE_DECL, ridpointers[(int) RID_INT],
2929 integer_type_node));
2930 pushdecl (build_decl (TYPE_DECL, get_identifier ("char"),
2931 char_type_node));
2932 pushdecl (build_decl (TYPE_DECL, get_identifier ("long int"),
2933 long_integer_type_node));
2934 pushdecl (build_decl (TYPE_DECL, get_identifier ("unsigned int"),
2935 unsigned_type_node));
2936 pushdecl (build_decl (TYPE_DECL, get_identifier ("long unsigned int"),
2937 long_unsigned_type_node));
2938 pushdecl (build_decl (TYPE_DECL, get_identifier ("long long int"),
2939 long_long_integer_type_node));
2940 pushdecl (build_decl (TYPE_DECL, get_identifier ("long long unsigned int"),
2941 long_long_unsigned_type_node));
2942 pushdecl (build_decl (TYPE_DECL, get_identifier ("short int"),
2943 short_integer_type_node));
2944 pushdecl (build_decl (TYPE_DECL, get_identifier ("short unsigned int"),
2945 short_unsigned_type_node));
2946 pushdecl (build_decl (TYPE_DECL, get_identifier ("signed char"),
2947 signed_char_type_node));
2948 pushdecl (build_decl (TYPE_DECL, get_identifier ("unsigned char"),
2949 unsigned_char_type_node));
2950 pushdecl (build_decl (TYPE_DECL, NULL_TREE, intQI_type_node));
2951 pushdecl (build_decl (TYPE_DECL, NULL_TREE, intHI_type_node));
2952 pushdecl (build_decl (TYPE_DECL, NULL_TREE, intSI_type_node));
2953 pushdecl (build_decl (TYPE_DECL, NULL_TREE, intDI_type_node));
2954 #if HOST_BITS_PER_WIDE_INT >= 64
2955 pushdecl (build_decl (TYPE_DECL, NULL_TREE, intTI_type_node));
2956 #endif
2957 pushdecl (build_decl (TYPE_DECL, NULL_TREE, unsigned_intQI_type_node));
2958 pushdecl (build_decl (TYPE_DECL, NULL_TREE, unsigned_intHI_type_node));
2959 pushdecl (build_decl (TYPE_DECL, NULL_TREE, unsigned_intSI_type_node));
2960 pushdecl (build_decl (TYPE_DECL, NULL_TREE, unsigned_intDI_type_node));
2961 #if HOST_BITS_PER_WIDE_INT >= 64
2962 pushdecl (build_decl (TYPE_DECL, NULL_TREE, unsigned_intTI_type_node));
2963 #endif
2965 /* `unsigned long' is the standard type for sizeof.
2966 Traditionally, use a signed type.
2967 Note that stddef.h uses `unsigned long',
2968 and this must agree, even if long and int are the same size. */
2969 set_sizetype
2970 (TREE_TYPE (IDENTIFIER_GLOBAL_VALUE (get_identifier (SIZE_TYPE))));
2971 if (flag_traditional && TREE_UNSIGNED (sizetype))
2972 set_sizetype (signed_type (sizetype));
2974 /* Create the widest literal types. */
2975 widest_integer_literal_type_node = make_signed_type (HOST_BITS_PER_WIDE_INT * 2);
2976 widest_unsigned_literal_type_node = make_unsigned_type (HOST_BITS_PER_WIDE_INT * 2);
2977 pushdecl (build_decl (TYPE_DECL, NULL_TREE,
2978 widest_integer_literal_type_node));
2979 pushdecl (build_decl (TYPE_DECL, NULL_TREE,
2980 widest_unsigned_literal_type_node));
2982 build_common_tree_nodes_2 (flag_short_double);
2984 pushdecl (build_decl (TYPE_DECL, ridpointers[(int) RID_FLOAT],
2985 float_type_node));
2986 pushdecl (build_decl (TYPE_DECL, ridpointers[(int) RID_DOUBLE],
2987 double_type_node));
2988 pushdecl (build_decl (TYPE_DECL, get_identifier ("long double"),
2989 long_double_type_node));
2990 pushdecl (build_decl (TYPE_DECL, get_identifier ("complex int"),
2991 complex_integer_type_node));
2992 pushdecl (build_decl (TYPE_DECL, get_identifier ("complex float"),
2993 complex_float_type_node));
2994 pushdecl (build_decl (TYPE_DECL, get_identifier ("complex double"),
2995 complex_double_type_node));
2996 pushdecl (build_decl (TYPE_DECL, get_identifier ("complex long double"),
2997 complex_long_double_type_node));
2998 pushdecl (build_decl (TYPE_DECL,
2999 ridpointers[(int) RID_VOID], void_type_node));
3001 #ifdef MD_INIT_BUILTINS
3002 MD_INIT_BUILTINS;
3003 #endif
3005 wchar_type_node = get_identifier (flag_short_wchar
3006 ? "short unsigned int"
3007 : WCHAR_TYPE);
3008 wchar_type_node = TREE_TYPE (IDENTIFIER_GLOBAL_VALUE (wchar_type_node));
3009 wchar_type_size = TYPE_PRECISION (wchar_type_node);
3010 signed_wchar_type_node = signed_type (wchar_type_node);
3011 unsigned_wchar_type_node = unsigned_type (wchar_type_node);
3013 boolean_type_node = integer_type_node;
3014 boolean_true_node = integer_one_node;
3015 boolean_false_node = integer_zero_node;
3017 string_type_node = build_pointer_type (char_type_node);
3018 const_string_type_node
3019 = build_pointer_type (build_type_variant (char_type_node, 1, 0));
3021 /* Make a type to be the domain of a few array types
3022 whose domains don't really matter.
3023 200 is small enough that it always fits in size_t
3024 and large enough that it can hold most function names for the
3025 initializations of __FUNCTION__ and __PRETTY_FUNCTION__. */
3026 array_domain_type = build_index_type (build_int_2 (200, 0));
3028 /* make a type for arrays of characters.
3029 With luck nothing will ever really depend on the length of this
3030 array type. */
3031 char_array_type_node
3032 = build_array_type (char_type_node, array_domain_type);
3033 /* Likewise for arrays of ints. */
3034 int_array_type_node
3035 = build_array_type (integer_type_node, array_domain_type);
3036 /* This is for wide string constants. */
3037 wchar_array_type_node
3038 = build_array_type (wchar_type_node, array_domain_type);
3040 void_list_node = tree_cons (NULL_TREE, void_type_node, NULL_TREE);
3042 default_function_type
3043 = build_function_type (integer_type_node, NULL_TREE);
3044 ptrdiff_type_node
3045 = TREE_TYPE (IDENTIFIER_GLOBAL_VALUE (get_identifier (PTRDIFF_TYPE)));
3047 c_common_nodes_and_builtins (0, flag_no_builtin, flag_no_nonansi_builtin);
3049 endlink = void_list_node;
3050 ptr_ftype_void = build_function_type (ptr_type_node, endlink);
3051 ptr_ftype_ptr
3052 = build_function_type (ptr_type_node,
3053 tree_cons (NULL_TREE, ptr_type_node, endlink));
3055 builtin_function ("__builtin_aggregate_incoming_address",
3056 build_function_type (ptr_type_node, NULL_TREE),
3057 BUILT_IN_AGGREGATE_INCOMING_ADDRESS,
3058 BUILT_IN_NORMAL, NULL_PTR);
3060 /* Hooks for the DWARF 2 __throw routine. */
3061 builtin_function ("__builtin_unwind_init",
3062 build_function_type (void_type_node, endlink),
3063 BUILT_IN_UNWIND_INIT, BUILT_IN_NORMAL, NULL_PTR);
3064 builtin_function ("__builtin_dwarf_cfa", ptr_ftype_void,
3065 BUILT_IN_DWARF_CFA, BUILT_IN_NORMAL, NULL_PTR);
3066 builtin_function ("__builtin_dwarf_fp_regnum",
3067 build_function_type (unsigned_type_node, endlink),
3068 BUILT_IN_DWARF_FP_REGNUM, BUILT_IN_NORMAL, NULL_PTR);
3069 builtin_function ("__builtin_init_dwarf_reg_size_table", void_ftype_ptr,
3070 BUILT_IN_INIT_DWARF_REG_SIZES, BUILT_IN_NORMAL, NULL_PTR);
3071 builtin_function ("__builtin_frob_return_addr", ptr_ftype_ptr,
3072 BUILT_IN_FROB_RETURN_ADDR, BUILT_IN_NORMAL, NULL_PTR);
3073 builtin_function ("__builtin_extract_return_addr", ptr_ftype_ptr,
3074 BUILT_IN_EXTRACT_RETURN_ADDR, BUILT_IN_NORMAL, NULL_PTR);
3075 builtin_function
3076 ("__builtin_eh_return",
3077 build_function_type (void_type_node,
3078 tree_cons (NULL_TREE, ptr_type_node,
3079 tree_cons (NULL_TREE,
3080 type_for_mode (ptr_mode, 0),
3081 tree_cons (NULL_TREE,
3082 ptr_type_node,
3083 endlink)))),
3084 BUILT_IN_EH_RETURN, BUILT_IN_NORMAL, NULL_PTR);
3086 pedantic_lvalues = pedantic;
3088 /* Create the global bindings for __FUNCTION__ and __PRETTY_FUNCTION__. */
3089 declare_function_name ();
3091 start_identifier_warnings ();
3093 /* Prepare to check format strings against argument lists. */
3094 init_function_format_info ();
3096 init_iterators ();
3098 incomplete_decl_finalize_hook = finish_incomplete_decl;
3100 lang_get_alias_set = c_get_alias_set;
3102 /* Record our roots. */
3104 ggc_add_tree_root (c_global_trees, CTI_MAX);
3105 ggc_add_tree_root (&current_function_decl, 1);
3106 ggc_add_tree_root (&named_labels, 1);
3107 ggc_add_tree_root (&shadowed_labels, 1);
3108 ggc_add_root (&current_binding_level, 1, sizeof current_binding_level,
3109 mark_binding_level);
3110 ggc_add_root (&label_level_chain, 1, sizeof label_level_chain,
3111 mark_binding_level);
3112 ggc_add_tree_root (&static_ctors, 1);
3113 ggc_add_tree_root (&static_dtors, 1);
3116 /* Return a definition for a builtin function named NAME and whose data type
3117 is TYPE. TYPE should be a function type with argument types.
3118 FUNCTION_CODE tells later passes how to compile calls to this function.
3119 See tree.h for its possible values.
3121 If LIBRARY_NAME is nonzero, use that for DECL_ASSEMBLER_NAME,
3122 the name to be called if we can't opencode the function. */
3124 tree
3125 builtin_function (name, type, function_code, class, library_name)
3126 const char *name;
3127 tree type;
3128 int function_code;
3129 enum built_in_class class;
3130 const char *library_name;
3132 tree decl = build_decl (FUNCTION_DECL, get_identifier (name), type);
3133 DECL_EXTERNAL (decl) = 1;
3134 TREE_PUBLIC (decl) = 1;
3135 /* If -traditional, permit redefining a builtin function any way you like.
3136 (Though really, if the program redefines these functions,
3137 it probably won't work right unless compiled with -fno-builtin.) */
3138 if (flag_traditional && name[0] != '_')
3139 DECL_BUILT_IN_NONANSI (decl) = 1;
3140 if (library_name)
3141 DECL_ASSEMBLER_NAME (decl) = get_identifier (library_name);
3142 make_decl_rtl (decl, NULL_PTR, 1);
3143 pushdecl (decl);
3144 DECL_BUILT_IN_CLASS (decl) = class;
3145 DECL_FUNCTION_CODE (decl) = function_code;
3147 /* Warn if a function in the namespace for users
3148 is used without an occasion to consider it declared. */
3149 if (name[0] != '_' || name[1] != '_')
3150 C_DECL_ANTICIPATED (decl) = 1;
3152 return decl;
3155 /* Called when a declaration is seen that contains no names to declare.
3156 If its type is a reference to a structure, union or enum inherited
3157 from a containing scope, shadow that tag name for the current scope
3158 with a forward reference.
3159 If its type defines a new named structure or union
3160 or defines an enum, it is valid but we need not do anything here.
3161 Otherwise, it is an error. */
3163 void
3164 shadow_tag (declspecs)
3165 tree declspecs;
3167 shadow_tag_warned (declspecs, 0);
3170 void
3171 shadow_tag_warned (declspecs, warned)
3172 tree declspecs;
3173 int warned;
3174 /* 1 => we have done a pedwarn. 2 => we have done a warning, but
3175 no pedwarn. */
3177 int found_tag = 0;
3178 register tree link;
3179 tree specs, attrs;
3181 pending_invalid_xref = 0;
3183 /* Remove the attributes from declspecs, since they will confuse the
3184 following code. */
3185 split_specs_attrs (declspecs, &specs, &attrs);
3187 for (link = specs; link; link = TREE_CHAIN (link))
3189 register tree value = TREE_VALUE (link);
3190 register enum tree_code code = TREE_CODE (value);
3192 if (code == RECORD_TYPE || code == UNION_TYPE || code == ENUMERAL_TYPE)
3193 /* Used to test also that TYPE_SIZE (value) != 0.
3194 That caused warning for `struct foo;' at top level in the file. */
3196 register tree name = lookup_tag_reverse (value);
3197 register tree t;
3199 found_tag++;
3201 if (name == 0)
3203 if (warned != 1 && code != ENUMERAL_TYPE)
3204 /* Empty unnamed enum OK */
3206 pedwarn ("unnamed struct/union that defines no instances");
3207 warned = 1;
3210 else
3212 t = lookup_tag (code, name, current_binding_level, 1);
3214 if (t == 0)
3216 t = make_node (code);
3217 pushtag (name, t);
3221 else
3223 if (!warned && ! in_system_header)
3225 warning ("useless keyword or type name in empty declaration");
3226 warned = 2;
3231 if (found_tag > 1)
3232 error ("two types specified in one empty declaration");
3234 if (warned != 1)
3236 if (found_tag == 0)
3237 pedwarn ("empty declaration");
3241 /* Decode a "typename", such as "int **", returning a ..._TYPE node. */
3243 tree
3244 groktypename (typename)
3245 tree typename;
3247 if (TREE_CODE (typename) != TREE_LIST)
3248 return typename;
3249 return grokdeclarator (TREE_VALUE (typename),
3250 TREE_PURPOSE (typename),
3251 TYPENAME, 0);
3254 /* Return a PARM_DECL node for a given pair of specs and declarator. */
3256 tree
3257 groktypename_in_parm_context (typename)
3258 tree typename;
3260 if (TREE_CODE (typename) != TREE_LIST)
3261 return typename;
3262 return grokdeclarator (TREE_VALUE (typename),
3263 TREE_PURPOSE (typename),
3264 PARM, 0);
3267 /* Decode a declarator in an ordinary declaration or data definition.
3268 This is called as soon as the type information and variable name
3269 have been parsed, before parsing the initializer if any.
3270 Here we create the ..._DECL node, fill in its type,
3271 and put it on the list of decls for the current context.
3272 The ..._DECL node is returned as the value.
3274 Exception: for arrays where the length is not specified,
3275 the type is left null, to be filled in by `finish_decl'.
3277 Function definitions do not come here; they go to start_function
3278 instead. However, external and forward declarations of functions
3279 do go through here. Structure field declarations are done by
3280 grokfield and not through here. */
3282 /* Set this to zero to debug not using the temporary obstack
3283 to parse initializers. */
3284 int debug_temp_inits = 1;
3286 tree
3287 start_decl (declarator, declspecs, initialized, attributes, prefix_attributes)
3288 tree declarator, declspecs;
3289 int initialized;
3290 tree attributes, prefix_attributes;
3292 register tree decl = grokdeclarator (declarator, declspecs,
3293 NORMAL, initialized);
3294 register tree tem;
3295 int init_written = initialized;
3297 /* The corresponding pop_obstacks is in finish_decl. */
3298 push_obstacks_nochange ();
3300 if (warn_main > 0 && TREE_CODE (decl) != FUNCTION_DECL
3301 && !strcmp (IDENTIFIER_POINTER (DECL_NAME (decl)), "main"))
3302 warning_with_decl (decl, "`%s' is usually a function");
3304 if (initialized)
3305 /* Is it valid for this decl to have an initializer at all?
3306 If not, set INITIALIZED to zero, which will indirectly
3307 tell `finish_decl' to ignore the initializer once it is parsed. */
3308 switch (TREE_CODE (decl))
3310 case TYPE_DECL:
3311 /* typedef foo = bar means give foo the same type as bar.
3312 We haven't parsed bar yet, so `finish_decl' will fix that up.
3313 Any other case of an initialization in a TYPE_DECL is an error. */
3314 if (pedantic || list_length (declspecs) > 1)
3316 error ("typedef `%s' is initialized",
3317 IDENTIFIER_POINTER (DECL_NAME (decl)));
3318 initialized = 0;
3320 break;
3322 case FUNCTION_DECL:
3323 error ("function `%s' is initialized like a variable",
3324 IDENTIFIER_POINTER (DECL_NAME (decl)));
3325 initialized = 0;
3326 break;
3328 case PARM_DECL:
3329 /* DECL_INITIAL in a PARM_DECL is really DECL_ARG_TYPE. */
3330 error ("parameter `%s' is initialized",
3331 IDENTIFIER_POINTER (DECL_NAME (decl)));
3332 initialized = 0;
3333 break;
3335 default:
3336 /* Don't allow initializations for incomplete types
3337 except for arrays which might be completed by the initialization. */
3338 if (TYPE_SIZE (TREE_TYPE (decl)) != 0)
3340 /* A complete type is ok if size is fixed. */
3342 if (TREE_CODE (TYPE_SIZE (TREE_TYPE (decl))) != INTEGER_CST
3343 || C_DECL_VARIABLE_SIZE (decl))
3345 error ("variable-sized object may not be initialized");
3346 initialized = 0;
3349 else if (TREE_CODE (TREE_TYPE (decl)) != ARRAY_TYPE)
3351 error ("variable `%s' has initializer but incomplete type",
3352 IDENTIFIER_POINTER (DECL_NAME (decl)));
3353 initialized = 0;
3355 else if (TYPE_SIZE (TREE_TYPE (TREE_TYPE (decl))) == 0)
3357 error ("elements of array `%s' have incomplete type",
3358 IDENTIFIER_POINTER (DECL_NAME (decl)));
3359 initialized = 0;
3363 if (initialized)
3365 #if 0 /* Seems redundant with grokdeclarator. */
3366 if (current_binding_level != global_binding_level
3367 && DECL_EXTERNAL (decl)
3368 && TREE_CODE (decl) != FUNCTION_DECL)
3369 warning ("declaration of `%s' has `extern' and is initialized",
3370 IDENTIFIER_POINTER (DECL_NAME (decl)));
3371 #endif
3372 DECL_EXTERNAL (decl) = 0;
3373 if (current_binding_level == global_binding_level)
3374 TREE_STATIC (decl) = 1;
3376 /* Tell `pushdecl' this is an initialized decl
3377 even though we don't yet have the initializer expression.
3378 Also tell `finish_decl' it may store the real initializer. */
3379 DECL_INITIAL (decl) = error_mark_node;
3382 /* If this is a function declaration, write a record describing it to the
3383 prototypes file (if requested). */
3385 if (TREE_CODE (decl) == FUNCTION_DECL)
3386 gen_aux_info_record (decl, 0, 0, TYPE_ARG_TYPES (TREE_TYPE (decl)) != 0);
3388 /* ANSI specifies that a tentative definition which is not merged with
3389 a non-tentative definition behaves exactly like a definition with an
3390 initializer equal to zero. (Section 3.7.2)
3391 -fno-common gives strict ANSI behavior. Usually you don't want it.
3392 This matters only for variables with external linkage. */
3393 if (! flag_no_common || ! TREE_PUBLIC (decl))
3394 DECL_COMMON (decl) = 1;
3396 #ifdef SET_DEFAULT_DECL_ATTRIBUTES
3397 SET_DEFAULT_DECL_ATTRIBUTES (decl, attributes);
3398 #endif
3400 /* Set attributes here so if duplicate decl, will have proper attributes. */
3401 decl_attributes (decl, attributes, prefix_attributes);
3403 /* Add this decl to the current binding level.
3404 TEM may equal DECL or it may be a previous decl of the same name. */
3405 tem = pushdecl (decl);
3407 /* For a local variable, define the RTL now. */
3408 if (current_binding_level != global_binding_level
3409 /* But not if this is a duplicate decl
3410 and we preserved the rtl from the previous one
3411 (which may or may not happen). */
3412 && DECL_RTL (tem) == 0)
3414 if (TYPE_SIZE (TREE_TYPE (tem)) != 0)
3415 expand_decl (tem);
3416 else if (TREE_CODE (TREE_TYPE (tem)) == ARRAY_TYPE
3417 && DECL_INITIAL (tem) != 0)
3418 expand_decl (tem);
3421 if (init_written)
3423 /* When parsing and digesting the initializer,
3424 use temporary storage. Do this even if we will ignore the value. */
3425 if (current_binding_level == global_binding_level && debug_temp_inits)
3426 temporary_allocation ();
3429 return tem;
3432 /* Finish processing of a declaration;
3433 install its initial value.
3434 If the length of an array type is not known before,
3435 it must be determined now, from the initial value, or it is an error. */
3437 void
3438 finish_decl (decl, init, asmspec_tree)
3439 tree decl, init;
3440 tree asmspec_tree;
3442 register tree type = TREE_TYPE (decl);
3443 int was_incomplete = (DECL_SIZE (decl) == 0);
3444 int temporary = allocation_temporary_p ();
3445 char *asmspec = 0;
3447 /* If a name was specified, get the string. */
3448 if (asmspec_tree)
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)
3454 init = 0;
3455 /* Don't crash if parm is initialized. */
3456 if (TREE_CODE (decl) == PARM_DECL)
3457 init = 0;
3459 if (ITERATOR_P (decl))
3461 if (init == 0)
3462 error_with_decl (decl, "iterator has no initial value");
3463 else
3464 init = save_expr (init);
3467 if (init)
3469 if (TREE_CODE (decl) != TYPE_DECL)
3470 store_init_value (decl, init);
3471 else
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 /* Pop back to the obstack that is current for this binding level.
3480 This is because MAXINDEX, rtl, etc. to be made below
3481 must go in the permanent obstack. But don't discard the
3482 temporary data yet. */
3483 pop_obstacks ();
3484 #if 0 /* pop_obstacks was near the end; this is what was here. */
3485 if (current_binding_level == global_binding_level && temporary)
3486 end_temporary_allocation ();
3487 #endif
3489 /* Deduce size of array from initialization, if not already known */
3491 if (TREE_CODE (type) == ARRAY_TYPE
3492 && TYPE_DOMAIN (type) == 0
3493 && TREE_CODE (decl) != TYPE_DECL)
3495 int do_default
3496 = (TREE_STATIC (decl)
3497 /* Even if pedantic, an external linkage array
3498 may have incomplete type at first. */
3499 ? pedantic && !TREE_PUBLIC (decl)
3500 : !DECL_EXTERNAL (decl));
3501 int failure
3502 = complete_array_type (type, DECL_INITIAL (decl), do_default);
3504 /* Get the completed type made by complete_array_type. */
3505 type = TREE_TYPE (decl);
3507 if (failure == 1)
3508 error_with_decl (decl, "initializer fails to determine size of `%s'");
3510 if (failure == 2)
3512 if (do_default)
3513 error_with_decl (decl, "array size missing in `%s'");
3514 /* If a `static' var's size isn't known,
3515 make it extern as well as static, so it does not get
3516 allocated.
3517 If it is not `static', then do not mark extern;
3518 finish_incomplete_decl will give it a default size
3519 and it will get allocated. */
3520 else if (!pedantic && TREE_STATIC (decl) && ! TREE_PUBLIC (decl))
3521 DECL_EXTERNAL (decl) = 1;
3524 /* TYPE_MAX_VALUE is always one less than the number of elements
3525 in the array, because we start counting at zero. Therefore,
3526 warn only if the value is less than zero. */
3527 if (pedantic && TYPE_DOMAIN (type) != 0
3528 && tree_int_cst_sgn (TYPE_MAX_VALUE (TYPE_DOMAIN (type))) < 0)
3529 error_with_decl (decl, "zero or negative size array `%s'");
3531 layout_decl (decl, 0);
3534 if (TREE_CODE (decl) == VAR_DECL)
3536 if (DECL_SIZE (decl) == 0
3537 && TYPE_SIZE (TREE_TYPE (decl)) != 0)
3538 layout_decl (decl, 0);
3540 if (DECL_SIZE (decl) == 0
3541 && (TREE_STATIC (decl)
3543 /* A static variable with an incomplete type
3544 is an error if it is initialized.
3545 Also if it is not file scope.
3546 Otherwise, let it through, but if it is not `extern'
3547 then it may cause an error message later. */
3548 /* A duplicate_decls call could have changed an extern
3549 declaration into a file scope one. This can be detected
3550 by TREE_ASM_WRITTEN being set. */
3551 (DECL_INITIAL (decl) != 0
3552 || (DECL_CONTEXT (decl) != 0 && ! TREE_ASM_WRITTEN (decl)))
3554 /* An automatic variable with an incomplete type
3555 is an error. */
3556 !DECL_EXTERNAL (decl)))
3558 error_with_decl (decl, "storage size of `%s' isn't known");
3559 TREE_TYPE (decl) = error_mark_node;
3562 if ((DECL_EXTERNAL (decl) || TREE_STATIC (decl))
3563 && DECL_SIZE (decl) != 0)
3565 if (TREE_CODE (DECL_SIZE (decl)) == INTEGER_CST)
3566 constant_expression_warning (DECL_SIZE (decl));
3567 else
3568 error_with_decl (decl, "storage size of `%s' isn't constant");
3571 if (TREE_USED (type))
3572 TREE_USED (decl) = 1;
3575 /* If this is a function and an assembler name is specified, it isn't
3576 builtin any more. Also reset DECL_RTL so we can give it its new
3577 name. */
3578 if (TREE_CODE (decl) == FUNCTION_DECL && asmspec)
3580 DECL_BUILT_IN_CLASS (decl) = NOT_BUILT_IN;
3581 DECL_RTL (decl) = 0;
3582 DECL_ASSEMBLER_NAME (decl) = get_identifier (asmspec);
3585 /* Output the assembler code and/or RTL code for variables and functions,
3586 unless the type is an undefined structure or union.
3587 If not, it will get done when the type is completed. */
3589 if (TREE_CODE (decl) == VAR_DECL || TREE_CODE (decl) == FUNCTION_DECL)
3591 if ((flag_traditional || TREE_PERMANENT (decl))
3592 && allocation_temporary_p ())
3594 push_obstacks_nochange ();
3595 end_temporary_allocation ();
3596 /* This is a no-op in c-lang.c or something real in objc-actions.c. */
3597 maybe_objc_check_decl (decl);
3598 rest_of_decl_compilation (decl, asmspec,
3599 (DECL_CONTEXT (decl) == 0
3600 || TREE_ASM_WRITTEN (decl)),
3602 pop_obstacks ();
3604 else
3606 /* This is a no-op in c-lang.c or something real in objc-actions.c. */
3607 maybe_objc_check_decl (decl);
3608 rest_of_decl_compilation (decl, asmspec,
3609 (DECL_CONTEXT (decl) == 0
3610 || TREE_ASM_WRITTEN (decl)),
3613 if (DECL_CONTEXT (decl) != 0)
3615 /* Recompute the RTL of a local array now
3616 if it used to be an incomplete type. */
3617 if (was_incomplete
3618 && ! TREE_STATIC (decl) && ! DECL_EXTERNAL (decl))
3620 /* If we used it already as memory, it must stay in memory. */
3621 TREE_ADDRESSABLE (decl) = TREE_USED (decl);
3622 /* If it's still incomplete now, no init will save it. */
3623 if (DECL_SIZE (decl) == 0)
3624 DECL_INITIAL (decl) = 0;
3625 expand_decl (decl);
3627 /* Compute and store the initial value. */
3628 if (TREE_CODE (decl) != FUNCTION_DECL)
3629 expand_decl_init (decl);
3633 if (TREE_CODE (decl) == TYPE_DECL)
3635 /* This is a no-op in c-lang.c or something real in objc-actions.c. */
3636 maybe_objc_check_decl (decl);
3637 rest_of_decl_compilation (decl, NULL_PTR, DECL_CONTEXT (decl) == 0,
3641 /* ??? After 2.3, test (init != 0) instead of TREE_CODE. */
3642 /* This test used to include TREE_PERMANENT, however, we have the same
3643 problem with initializers at the function level. Such initializers get
3644 saved until the end of the function on the momentary_obstack. */
3645 if (!(TREE_CODE (decl) == FUNCTION_DECL && DECL_INLINE (decl))
3646 && temporary
3647 /* DECL_INITIAL is not defined in PARM_DECLs, since it shares
3648 space with DECL_ARG_TYPE. */
3649 && TREE_CODE (decl) != PARM_DECL)
3651 /* We need to remember that this array HAD an initialization,
3652 but discard the actual temporary nodes,
3653 since we can't have a permanent node keep pointing to them. */
3654 /* We make an exception for inline functions, since it's
3655 normal for a local extern redeclaration of an inline function
3656 to have a copy of the top-level decl's DECL_INLINE. */
3657 if (DECL_INITIAL (decl) != 0 && DECL_INITIAL (decl) != error_mark_node)
3659 /* If this is a const variable, then preserve the
3660 initializer instead of discarding it so that we can optimize
3661 references to it. */
3662 /* This test used to include TREE_STATIC, but this won't be set
3663 for function level initializers. */
3664 if (TREE_READONLY (decl) || ITERATOR_P (decl))
3666 preserve_initializer ();
3667 /* Hack? Set the permanent bit for something that is permanent,
3668 but not on the permanent obstack, so as to convince
3669 output_constant_def to make its rtl on the permanent
3670 obstack. */
3671 TREE_PERMANENT (DECL_INITIAL (decl)) = 1;
3673 /* The initializer and DECL must have the same (or equivalent
3674 types), but if the initializer is a STRING_CST, its type
3675 might not be on the right obstack, so copy the type
3676 of DECL. */
3677 TREE_TYPE (DECL_INITIAL (decl)) = type;
3679 else
3680 DECL_INITIAL (decl) = error_mark_node;
3684 /* If requested, warn about definitions of large data objects. */
3686 if (warn_larger_than
3687 && (TREE_CODE (decl) == VAR_DECL || TREE_CODE (decl) == PARM_DECL)
3688 && !DECL_EXTERNAL (decl))
3690 register tree decl_size = DECL_SIZE (decl);
3692 if (decl_size && TREE_CODE (decl_size) == INTEGER_CST)
3694 unsigned units = TREE_INT_CST_LOW(decl_size) / BITS_PER_UNIT;
3696 if (units > larger_than_size)
3697 warning_with_decl (decl, "size of `%s' is %u bytes", units);
3701 #if 0
3702 /* Resume permanent allocation, if not within a function. */
3703 /* The corresponding push_obstacks_nochange is in start_decl,
3704 and in push_parm_decl and in grokfield. */
3705 pop_obstacks ();
3706 #endif
3708 /* If we have gone back from temporary to permanent allocation,
3709 actually free the temporary space that we no longer need. */
3710 if (temporary && !allocation_temporary_p ())
3711 permanent_allocation (0);
3713 /* At the end of a declaration, throw away any variable type sizes
3714 of types defined inside that declaration. There is no use
3715 computing them in the following function definition. */
3716 if (current_binding_level == global_binding_level)
3717 get_pending_sizes ();
3720 /* If DECL has a cleanup, build and return that cleanup here.
3721 This is a callback called by expand_expr. */
3723 tree
3724 maybe_build_cleanup (decl)
3725 tree decl ATTRIBUTE_UNUSED;
3727 /* There are no cleanups in C. */
3728 return NULL_TREE;
3731 /* Given a parsed parameter declaration,
3732 decode it into a PARM_DECL and push that on the current binding level.
3733 Also, for the sake of forward parm decls,
3734 record the given order of parms in `parm_order'. */
3736 void
3737 push_parm_decl (parm)
3738 tree parm;
3740 tree decl;
3741 int old_immediate_size_expand = immediate_size_expand;
3742 /* Don't try computing parm sizes now -- wait till fn is called. */
3743 immediate_size_expand = 0;
3745 /* The corresponding pop_obstacks is in finish_decl. */
3746 push_obstacks_nochange ();
3748 decl = grokdeclarator (TREE_VALUE (TREE_PURPOSE (parm)),
3749 TREE_PURPOSE (TREE_PURPOSE (parm)), PARM, 0);
3750 decl_attributes (decl, TREE_VALUE (TREE_VALUE (parm)),
3751 TREE_PURPOSE (TREE_VALUE (parm)));
3753 #if 0
3754 if (DECL_NAME (decl))
3756 tree olddecl;
3757 olddecl = lookup_name (DECL_NAME (decl));
3758 if (pedantic && olddecl != 0 && TREE_CODE (olddecl) == TYPE_DECL)
3759 pedwarn_with_decl (decl, "ANSI C forbids parameter `%s' shadowing typedef");
3761 #endif
3763 decl = pushdecl (decl);
3765 immediate_size_expand = old_immediate_size_expand;
3767 current_binding_level->parm_order
3768 = tree_cons (NULL_TREE, decl, current_binding_level->parm_order);
3770 /* Add this decl to the current binding level. */
3771 finish_decl (decl, NULL_TREE, NULL_TREE);
3774 /* Clear the given order of parms in `parm_order'.
3775 Used at start of parm list,
3776 and also at semicolon terminating forward decls. */
3778 void
3779 clear_parm_order ()
3781 current_binding_level->parm_order = NULL_TREE;
3784 /* Make TYPE a complete type based on INITIAL_VALUE.
3785 Return 0 if successful, 1 if INITIAL_VALUE can't be deciphered,
3786 2 if there was no information (in which case assume 1 if DO_DEFAULT). */
3789 complete_array_type (type, initial_value, do_default)
3790 tree type;
3791 tree initial_value;
3792 int do_default;
3794 register tree maxindex = NULL_TREE;
3795 int value = 0;
3797 if (initial_value)
3799 /* Note MAXINDEX is really the maximum index,
3800 one less than the size. */
3801 if (TREE_CODE (initial_value) == STRING_CST)
3803 int eltsize
3804 = int_size_in_bytes (TREE_TYPE (TREE_TYPE (initial_value)));
3805 maxindex = build_int_2 ((TREE_STRING_LENGTH (initial_value)
3806 / eltsize) - 1, 0);
3808 else if (TREE_CODE (initial_value) == CONSTRUCTOR)
3810 tree elts = CONSTRUCTOR_ELTS (initial_value);
3811 maxindex = size_binop (MINUS_EXPR, integer_zero_node, size_one_node);
3812 for (; elts; elts = TREE_CHAIN (elts))
3814 if (TREE_PURPOSE (elts))
3815 maxindex = TREE_PURPOSE (elts);
3816 else
3817 maxindex = size_binop (PLUS_EXPR, maxindex, size_one_node);
3819 maxindex = copy_node (maxindex);
3821 else
3823 /* Make an error message unless that happened already. */
3824 if (initial_value != error_mark_node)
3825 value = 1;
3827 /* Prevent further error messages. */
3828 maxindex = build_int_2 (0, 0);
3832 if (!maxindex)
3834 if (do_default)
3835 maxindex = build_int_2 (0, 0);
3836 value = 2;
3839 if (maxindex)
3841 TYPE_DOMAIN (type) = build_index_type (maxindex);
3842 if (!TREE_TYPE (maxindex))
3843 TREE_TYPE (maxindex) = TYPE_DOMAIN (type);
3846 /* Lay out the type now that we can get the real answer. */
3848 layout_type (type);
3850 return value;
3853 /* Given declspecs and a declarator,
3854 determine the name and type of the object declared
3855 and construct a ..._DECL node for it.
3856 (In one case we can return a ..._TYPE node instead.
3857 For invalid input we sometimes return 0.)
3859 DECLSPECS is a chain of tree_list nodes whose value fields
3860 are the storage classes and type specifiers.
3862 DECL_CONTEXT says which syntactic context this declaration is in:
3863 NORMAL for most contexts. Make a VAR_DECL or FUNCTION_DECL or TYPE_DECL.
3864 FUNCDEF for a function definition. Like NORMAL but a few different
3865 error messages in each case. Return value may be zero meaning
3866 this definition is too screwy to try to parse.
3867 PARM for a parameter declaration (either within a function prototype
3868 or before a function body). Make a PARM_DECL, or return void_type_node.
3869 TYPENAME if for a typename (in a cast or sizeof).
3870 Don't make a DECL node; just return the ..._TYPE node.
3871 FIELD for a struct or union field; make a FIELD_DECL.
3872 BITFIELD for a field with specified width.
3873 INITIALIZED is 1 if the decl has an initializer.
3875 In the TYPENAME case, DECLARATOR is really an absolute declarator.
3876 It may also be so in the PARM case, for a prototype where the
3877 argument type is specified but not the name.
3879 This function is where the complicated C meanings of `static'
3880 and `extern' are interpreted. */
3882 static tree
3883 grokdeclarator (declarator, declspecs, decl_context, initialized)
3884 tree declspecs;
3885 tree declarator;
3886 enum decl_context decl_context;
3887 int initialized;
3889 int specbits = 0;
3890 tree spec;
3891 tree type = NULL_TREE;
3892 int longlong = 0;
3893 int constp;
3894 int restrictp;
3895 int volatilep;
3896 int type_quals = TYPE_UNQUALIFIED;
3897 int inlinep;
3898 int explicit_int = 0;
3899 int explicit_char = 0;
3900 int defaulted_int = 0;
3901 tree typedef_decl = 0;
3902 const char *name;
3903 tree typedef_type = 0;
3904 int funcdef_flag = 0;
3905 enum tree_code innermost_code = ERROR_MARK;
3906 int bitfield = 0;
3907 int size_varies = 0;
3908 tree decl_machine_attr = NULL_TREE;
3910 if (decl_context == BITFIELD)
3911 bitfield = 1, decl_context = FIELD;
3913 if (decl_context == FUNCDEF)
3914 funcdef_flag = 1, decl_context = NORMAL;
3916 push_obstacks_nochange ();
3918 if (flag_traditional && allocation_temporary_p ())
3919 end_temporary_allocation ();
3921 /* Look inside a declarator for the name being declared
3922 and get it as a string, for an error message. */
3924 register tree decl = declarator;
3925 name = 0;
3927 while (decl)
3928 switch (TREE_CODE (decl))
3930 case ARRAY_REF:
3931 case INDIRECT_REF:
3932 case CALL_EXPR:
3933 innermost_code = TREE_CODE (decl);
3934 decl = TREE_OPERAND (decl, 0);
3935 break;
3937 case IDENTIFIER_NODE:
3938 name = IDENTIFIER_POINTER (decl);
3939 decl = 0;
3940 break;
3942 default:
3943 abort ();
3945 if (name == 0)
3946 name = "type name";
3949 /* A function definition's declarator must have the form of
3950 a function declarator. */
3952 if (funcdef_flag && innermost_code != CALL_EXPR)
3953 return 0;
3955 /* Anything declared one level down from the top level
3956 must be one of the parameters of a function
3957 (because the body is at least two levels down). */
3959 /* If this looks like a function definition, make it one,
3960 even if it occurs where parms are expected.
3961 Then store_parm_decls will reject it and not use it as a parm. */
3962 if (decl_context == NORMAL && !funcdef_flag
3963 && current_binding_level->parm_flag)
3964 decl_context = PARM;
3966 /* Look through the decl specs and record which ones appear.
3967 Some typespecs are defined as built-in typenames.
3968 Others, the ones that are modifiers of other types,
3969 are represented by bits in SPECBITS: set the bits for
3970 the modifiers that appear. Storage class keywords are also in SPECBITS.
3972 If there is a typedef name or a type, store the type in TYPE.
3973 This includes builtin typedefs such as `int'.
3975 Set EXPLICIT_INT or EXPLICIT_CHAR if the type is `int' or `char'
3976 and did not come from a user typedef.
3978 Set LONGLONG if `long' is mentioned twice. */
3980 for (spec = declspecs; spec; spec = TREE_CHAIN (spec))
3982 register int i;
3983 register tree id = TREE_VALUE (spec);
3985 if (id == ridpointers[(int) RID_INT])
3986 explicit_int = 1;
3987 if (id == ridpointers[(int) RID_CHAR])
3988 explicit_char = 1;
3990 if (TREE_CODE (id) == IDENTIFIER_NODE)
3991 for (i = (int) RID_FIRST_MODIFIER; i < (int) RID_MAX; i++)
3993 if (ridpointers[i] == id)
3995 if (i == (int) RID_LONG && specbits & (1<<i))
3997 if (longlong)
3998 error ("`long long long' is too long for GCC");
3999 else
4001 if (pedantic && ! in_system_header && warn_long_long)
4002 pedwarn ("ANSI C does not support `long long'");
4003 longlong = 1;
4006 else if (specbits & (1 << i))
4007 pedwarn ("duplicate `%s'", IDENTIFIER_POINTER (id));
4008 specbits |= 1 << i;
4009 goto found;
4012 if (type)
4013 error ("two or more data types in declaration of `%s'", name);
4014 /* Actual typedefs come to us as TYPE_DECL nodes. */
4015 else if (TREE_CODE (id) == TYPE_DECL)
4017 type = TREE_TYPE (id);
4018 decl_machine_attr = DECL_MACHINE_ATTRIBUTES (id);
4019 typedef_decl = id;
4021 /* Built-in types come as identifiers. */
4022 else if (TREE_CODE (id) == IDENTIFIER_NODE)
4024 register tree t = lookup_name (id);
4025 if (TREE_TYPE (t) == error_mark_node)
4027 else if (!t || TREE_CODE (t) != TYPE_DECL)
4028 error ("`%s' fails to be a typedef or built in type",
4029 IDENTIFIER_POINTER (id));
4030 else
4032 type = TREE_TYPE (t);
4033 typedef_decl = t;
4036 else if (TREE_CODE (id) != ERROR_MARK)
4037 type = id;
4039 found: {}
4042 typedef_type = type;
4043 if (type)
4044 size_varies = C_TYPE_VARIABLE_SIZE (type);
4046 /* No type at all: default to `int', and set DEFAULTED_INT
4047 because it was not a user-defined typedef. */
4049 if (type == 0)
4051 if ((! (specbits & ((1 << (int) RID_LONG) | (1 << (int) RID_SHORT)
4052 | (1 << (int) RID_SIGNED)
4053 | (1 << (int) RID_UNSIGNED))))
4054 /* Don't warn about typedef foo = bar. */
4055 && ! (specbits & (1 << (int) RID_TYPEDEF) && initialized)
4056 && ! (in_system_header && ! allocation_temporary_p ()))
4058 /* Issue a warning if this is an ISO C 9x program or if -Wreturn-type
4059 and this is a function, or if -Wimplicit; prefer the former
4060 warning since it is more explicit. */
4061 if ((warn_implicit_int || warn_return_type) && funcdef_flag)
4062 warn_about_return_type = 1;
4063 else if (warn_implicit_int || flag_isoc9x)
4064 warning ("type defaults to `int' in declaration of `%s'", name);
4067 defaulted_int = 1;
4068 type = integer_type_node;
4071 /* Now process the modifiers that were specified
4072 and check for invalid combinations. */
4074 /* Long double is a special combination. */
4076 if ((specbits & 1 << (int) RID_LONG) && ! longlong
4077 && TYPE_MAIN_VARIANT (type) == double_type_node)
4079 specbits &= ~ (1 << (int) RID_LONG);
4080 type = long_double_type_node;
4083 /* Check all other uses of type modifiers. */
4085 if (specbits & ((1 << (int) RID_LONG) | (1 << (int) RID_SHORT)
4086 | (1 << (int) RID_UNSIGNED) | (1 << (int) RID_SIGNED)))
4088 int ok = 0;
4090 if ((specbits & 1 << (int) RID_LONG)
4091 && (specbits & 1 << (int) RID_SHORT))
4092 error ("both long and short specified for `%s'", name);
4093 else if (((specbits & 1 << (int) RID_LONG)
4094 || (specbits & 1 << (int) RID_SHORT))
4095 && explicit_char)
4096 error ("long or short specified with char for `%s'", name);
4097 else if (((specbits & 1 << (int) RID_LONG)
4098 || (specbits & 1 << (int) RID_SHORT))
4099 && TREE_CODE (type) == REAL_TYPE)
4101 static int already = 0;
4103 error ("long or short specified with floating type for `%s'", name);
4104 if (! already && ! pedantic)
4106 error ("the only valid combination is `long double'");
4107 already = 1;
4110 else if ((specbits & 1 << (int) RID_SIGNED)
4111 && (specbits & 1 << (int) RID_UNSIGNED))
4112 error ("both signed and unsigned specified for `%s'", name);
4113 else if (TREE_CODE (type) != INTEGER_TYPE)
4114 error ("long, short, signed or unsigned invalid for `%s'", name);
4115 else
4117 ok = 1;
4118 if (!explicit_int && !defaulted_int && !explicit_char && pedantic)
4120 pedwarn ("long, short, signed or unsigned used invalidly for `%s'",
4121 name);
4122 if (flag_pedantic_errors)
4123 ok = 0;
4127 /* Discard the type modifiers if they are invalid. */
4128 if (! ok)
4130 specbits &= ~((1 << (int) RID_LONG) | (1 << (int) RID_SHORT)
4131 | (1 << (int) RID_UNSIGNED) | (1 << (int) RID_SIGNED));
4132 longlong = 0;
4136 if ((specbits & (1 << (int) RID_COMPLEX))
4137 && TREE_CODE (type) != INTEGER_TYPE && TREE_CODE (type) != REAL_TYPE)
4139 error ("complex invalid for `%s'", name);
4140 specbits &= ~ (1 << (int) RID_COMPLEX);
4143 /* Decide whether an integer type is signed or not.
4144 Optionally treat bitfields as signed by default. */
4145 if (specbits & 1 << (int) RID_UNSIGNED
4146 /* Traditionally, all bitfields are unsigned. */
4147 || (bitfield && flag_traditional
4148 && (! explicit_flag_signed_bitfields || !flag_signed_bitfields))
4149 || (bitfield && ! flag_signed_bitfields
4150 && (explicit_int || defaulted_int || explicit_char
4151 /* A typedef for plain `int' without `signed'
4152 can be controlled just like plain `int'. */
4153 || ! (typedef_decl != 0
4154 && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl)))
4155 && TREE_CODE (type) != ENUMERAL_TYPE
4156 && !(specbits & 1 << (int) RID_SIGNED)))
4158 if (longlong)
4159 type = long_long_unsigned_type_node;
4160 else if (specbits & 1 << (int) RID_LONG)
4161 type = long_unsigned_type_node;
4162 else if (specbits & 1 << (int) RID_SHORT)
4163 type = short_unsigned_type_node;
4164 else if (type == char_type_node)
4165 type = unsigned_char_type_node;
4166 else if (typedef_decl)
4167 type = unsigned_type (type);
4168 else
4169 type = unsigned_type_node;
4171 else if ((specbits & 1 << (int) RID_SIGNED)
4172 && type == char_type_node)
4173 type = signed_char_type_node;
4174 else if (longlong)
4175 type = long_long_integer_type_node;
4176 else if (specbits & 1 << (int) RID_LONG)
4177 type = long_integer_type_node;
4178 else if (specbits & 1 << (int) RID_SHORT)
4179 type = short_integer_type_node;
4181 if (specbits & 1 << (int) RID_COMPLEX)
4183 /* If we just have "complex", it is equivalent to
4184 "complex double", but if any modifiers at all are specified it is
4185 the complex form of TYPE. E.g, "complex short" is
4186 "complex short int". */
4188 if (defaulted_int && ! longlong
4189 && ! (specbits & ((1 << (int) RID_LONG) | (1 << (int) RID_SHORT)
4190 | (1 << (int) RID_SIGNED)
4191 | (1 << (int) RID_UNSIGNED))))
4192 type = complex_double_type_node;
4193 else if (type == integer_type_node)
4194 type = complex_integer_type_node;
4195 else if (type == float_type_node)
4196 type = complex_float_type_node;
4197 else if (type == double_type_node)
4198 type = complex_double_type_node;
4199 else if (type == long_double_type_node)
4200 type = complex_long_double_type_node;
4201 else
4202 type = build_complex_type (type);
4205 /* Figure out the type qualifiers for the declaration. There are
4206 two ways a declaration can become qualified. One is something
4207 like `const int i' where the `const' is explicit. Another is
4208 something like `typedef const int CI; CI i' where the type of the
4209 declaration contains the `const'. */
4210 constp = !! (specbits & 1 << (int) RID_CONST) + TYPE_READONLY (type);
4211 restrictp = !! (specbits & 1 << (int) RID_RESTRICT) + TYPE_RESTRICT (type);
4212 volatilep = !! (specbits & 1 << (int) RID_VOLATILE) + TYPE_VOLATILE (type);
4213 inlinep = !! (specbits & (1 << (int) RID_INLINE));
4214 if (constp > 1)
4215 pedwarn ("duplicate `const'");
4216 if (restrictp > 1)
4217 pedwarn ("duplicate `restrict'");
4218 if (volatilep > 1)
4219 pedwarn ("duplicate `volatile'");
4220 if (! flag_gen_aux_info && (TYPE_QUALS (type)))
4221 type = TYPE_MAIN_VARIANT (type);
4222 type_quals = ((constp ? TYPE_QUAL_CONST : 0)
4223 | (restrictp ? TYPE_QUAL_RESTRICT : 0)
4224 | (volatilep ? TYPE_QUAL_VOLATILE : 0));
4226 /* Warn if two storage classes are given. Default to `auto'. */
4229 int nclasses = 0;
4231 if (specbits & 1 << (int) RID_AUTO) nclasses++;
4232 if (specbits & 1 << (int) RID_STATIC) nclasses++;
4233 if (specbits & 1 << (int) RID_EXTERN) nclasses++;
4234 if (specbits & 1 << (int) RID_REGISTER) nclasses++;
4235 if (specbits & 1 << (int) RID_TYPEDEF) nclasses++;
4236 if (specbits & 1 << (int) RID_ITERATOR) nclasses++;
4238 /* Warn about storage classes that are invalid for certain
4239 kinds of declarations (parameters, typenames, etc.). */
4241 if (nclasses > 1)
4242 error ("multiple storage classes in declaration of `%s'", name);
4243 else if (funcdef_flag
4244 && (specbits
4245 & ((1 << (int) RID_REGISTER)
4246 | (1 << (int) RID_AUTO)
4247 | (1 << (int) RID_TYPEDEF))))
4249 if (specbits & 1 << (int) RID_AUTO
4250 && (pedantic || current_binding_level == global_binding_level))
4251 pedwarn ("function definition declared `auto'");
4252 if (specbits & 1 << (int) RID_REGISTER)
4253 error ("function definition declared `register'");
4254 if (specbits & 1 << (int) RID_TYPEDEF)
4255 error ("function definition declared `typedef'");
4256 specbits &= ~ ((1 << (int) RID_TYPEDEF) | (1 << (int) RID_REGISTER)
4257 | (1 << (int) RID_AUTO));
4259 else if (decl_context != NORMAL && nclasses > 0)
4261 if (decl_context == PARM && specbits & 1 << (int) RID_REGISTER)
4263 else
4265 error ((decl_context == FIELD
4266 ? "storage class specified for structure field `%s'"
4267 : (decl_context == PARM
4268 ? "storage class specified for parameter `%s'"
4269 : "storage class specified for typename")),
4270 name);
4271 specbits &= ~ ((1 << (int) RID_TYPEDEF) | (1 << (int) RID_REGISTER)
4272 | (1 << (int) RID_AUTO) | (1 << (int) RID_STATIC)
4273 | (1 << (int) RID_EXTERN));
4276 else if (specbits & 1 << (int) RID_EXTERN && initialized && ! funcdef_flag)
4278 /* `extern' with initialization is invalid if not at top level. */
4279 if (current_binding_level == global_binding_level)
4280 warning ("`%s' initialized and declared `extern'", name);
4281 else
4282 error ("`%s' has both `extern' and initializer", name);
4284 else if (specbits & 1 << (int) RID_EXTERN && funcdef_flag
4285 && current_binding_level != global_binding_level)
4286 error ("nested function `%s' declared `extern'", name);
4287 else if (current_binding_level == global_binding_level
4288 && specbits & (1 << (int) RID_AUTO))
4289 error ("top-level declaration of `%s' specifies `auto'", name);
4290 else if ((specbits & 1 << (int) RID_ITERATOR)
4291 && TREE_CODE (declarator) != IDENTIFIER_NODE)
4293 error ("iterator `%s' has derived type", name);
4294 type = error_mark_node;
4296 else if ((specbits & 1 << (int) RID_ITERATOR)
4297 && TREE_CODE (type) != INTEGER_TYPE)
4299 error ("iterator `%s' has noninteger type", name);
4300 type = error_mark_node;
4304 /* Now figure out the structure of the declarator proper.
4305 Descend through it, creating more complex types, until we reach
4306 the declared identifier (or NULL_TREE, in an absolute declarator). */
4308 while (declarator && TREE_CODE (declarator) != IDENTIFIER_NODE)
4310 if (type == error_mark_node)
4312 declarator = TREE_OPERAND (declarator, 0);
4313 continue;
4316 /* Each level of DECLARATOR is either an ARRAY_REF (for ...[..]),
4317 an INDIRECT_REF (for *...),
4318 a CALL_EXPR (for ...(...)),
4319 an identifier (for the name being declared)
4320 or a null pointer (for the place in an absolute declarator
4321 where the name was omitted).
4322 For the last two cases, we have just exited the loop.
4324 At this point, TYPE is the type of elements of an array,
4325 or for a function to return, or for a pointer to point to.
4326 After this sequence of ifs, TYPE is the type of the
4327 array or function or pointer, and DECLARATOR has had its
4328 outermost layer removed. */
4330 if (TREE_CODE (declarator) == ARRAY_REF)
4332 register tree itype = NULL_TREE;
4333 register tree size = TREE_OPERAND (declarator, 1);
4334 /* An uninitialized decl with `extern' is a reference. */
4335 int extern_ref = !initialized && (specbits & (1 << (int) RID_EXTERN));
4336 /* The index is a signed object `sizetype' bits wide. */
4337 tree index_type = signed_type (sizetype);
4339 declarator = TREE_OPERAND (declarator, 0);
4341 /* Check for some types that there cannot be arrays of. */
4343 if (TYPE_MAIN_VARIANT (type) == void_type_node)
4345 error ("declaration of `%s' as array of voids", name);
4346 type = error_mark_node;
4349 if (TREE_CODE (type) == FUNCTION_TYPE)
4351 error ("declaration of `%s' as array of functions", name);
4352 type = error_mark_node;
4355 if (size == error_mark_node)
4356 type = error_mark_node;
4358 if (type == error_mark_node)
4359 continue;
4361 /* If this is a block level extern, it must live past the end
4362 of the function so that we can check it against other extern
4363 declarations (IDENTIFIER_LIMBO_VALUE). */
4364 if (extern_ref && allocation_temporary_p ())
4365 end_temporary_allocation ();
4367 /* If size was specified, set ITYPE to a range-type for that size.
4368 Otherwise, ITYPE remains null. finish_decl may figure it out
4369 from an initial value. */
4371 if (size)
4373 /* Strip NON_LVALUE_EXPRs since we aren't using as an lvalue. */
4374 STRIP_TYPE_NOPS (size);
4376 if (TREE_CODE (TREE_TYPE (size)) != INTEGER_TYPE
4377 && TREE_CODE (TREE_TYPE (size)) != ENUMERAL_TYPE)
4379 error ("size of array `%s' has non-integer type", name);
4380 size = integer_one_node;
4383 if (pedantic && integer_zerop (size))
4384 pedwarn ("ANSI C forbids zero-size array `%s'", name);
4386 if (TREE_CODE (size) == INTEGER_CST)
4388 constant_expression_warning (size);
4389 if (tree_int_cst_sgn (size) < 0)
4391 error ("size of array `%s' is negative", name);
4392 size = integer_one_node;
4395 else
4397 /* Make sure the array size remains visibly nonconstant
4398 even if it is (eg) a const variable with known value. */
4399 size_varies = 1;
4401 if (pedantic)
4403 if (TREE_CONSTANT (size))
4404 pedwarn ("ANSI C forbids array `%s' whose size can't be evaluated", name);
4405 else
4406 pedwarn ("ANSI C forbids variable-size array `%s'", name);
4410 /* Convert size to index_type, so that if it is a variable
4411 the computations will be done in the proper mode. */
4412 itype = fold (build (MINUS_EXPR, index_type,
4413 convert (index_type, size),
4414 convert (index_type, size_one_node)));
4416 /* If that overflowed, the array is too big.
4417 ??? While a size of INT_MAX+1 technically shouldn't cause
4418 an overflow (because we subtract 1), the overflow is recorded
4419 during the conversion to index_type, before the subtraction.
4420 Handling this case seems like an unnecessary complication. */
4421 if (TREE_OVERFLOW (itype))
4423 error ("size of array `%s' is too large", name);
4424 type = error_mark_node;
4425 continue;
4428 if (size_varies)
4429 itype = variable_size (itype);
4430 itype = build_index_type (itype);
4433 #if 0 /* This had bad results for pointers to arrays, as in
4434 union incomplete (*foo)[4]; */
4435 /* Complain about arrays of incomplete types, except in typedefs. */
4437 if (TYPE_SIZE (type) == 0
4438 /* Avoid multiple warnings for nested array types. */
4439 && TREE_CODE (type) != ARRAY_TYPE
4440 && !(specbits & (1 << (int) RID_TYPEDEF))
4441 && !C_TYPE_BEING_DEFINED (type))
4442 warning ("array type has incomplete element type");
4443 #endif
4445 #if 0 /* We shouldn't have a function type here at all!
4446 Functions aren't allowed as array elements. */
4447 if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
4448 && (constp || volatilep))
4449 pedwarn ("ANSI C forbids const or volatile function types");
4450 #endif
4452 /* Build the array type itself, then merge any constancy or
4453 volatility into the target type. We must do it in this order
4454 to ensure that the TYPE_MAIN_VARIANT field of the array type
4455 is set correctly. */
4457 type = build_array_type (type, itype);
4458 if (type_quals)
4459 type = c_build_qualified_type (type, type_quals);
4461 #if 0 /* don't clear these; leave them set so that the array type
4462 or the variable is itself const or volatile. */
4463 type_quals = TYPE_UNQUALIFIED;
4464 #endif
4466 if (size_varies)
4467 C_TYPE_VARIABLE_SIZE (type) = 1;
4469 else if (TREE_CODE (declarator) == CALL_EXPR)
4471 int extern_ref = (!(specbits & (1 << (int) RID_AUTO))
4472 || current_binding_level == global_binding_level);
4473 tree arg_types;
4475 /* Declaring a function type.
4476 Make sure we have a valid type for the function to return. */
4477 if (type == error_mark_node)
4478 continue;
4480 size_varies = 0;
4482 /* Warn about some types functions can't return. */
4484 if (TREE_CODE (type) == FUNCTION_TYPE)
4486 error ("`%s' declared as function returning a function", name);
4487 type = integer_type_node;
4489 if (TREE_CODE (type) == ARRAY_TYPE)
4491 error ("`%s' declared as function returning an array", name);
4492 type = integer_type_node;
4495 #ifndef TRADITIONAL_RETURN_FLOAT
4496 /* Traditionally, declaring return type float means double. */
4498 if (flag_traditional && TYPE_MAIN_VARIANT (type) == float_type_node)
4499 type = double_type_node;
4500 #endif /* TRADITIONAL_RETURN_FLOAT */
4502 /* If this is a block level extern, it must live past the end
4503 of the function so that we can check it against other extern
4504 declarations (IDENTIFIER_LIMBO_VALUE). */
4505 if (extern_ref && allocation_temporary_p ())
4506 end_temporary_allocation ();
4508 /* Construct the function type and go to the next
4509 inner layer of declarator. */
4511 arg_types = grokparms (TREE_OPERAND (declarator, 1),
4512 funcdef_flag
4513 /* Say it's a definition
4514 only for the CALL_EXPR
4515 closest to the identifier. */
4516 && TREE_CODE (TREE_OPERAND (declarator, 0)) == IDENTIFIER_NODE);
4517 #if 0 /* This seems to be false. We turn off temporary allocation
4518 above in this function if -traditional.
4519 And this code caused inconsistent results with prototypes:
4520 callers would ignore them, and pass arguments wrong. */
4522 /* Omit the arg types if -traditional, since the arg types
4523 and the list links might not be permanent. */
4524 type = build_function_type (type,
4525 flag_traditional
4526 ? NULL_TREE : arg_types);
4527 #endif
4528 /* Type qualifiers before the return type of the function
4529 qualify the return type, not the function type. */
4530 if (type_quals)
4531 type = c_build_qualified_type (type, type_quals);
4532 type_quals = TYPE_UNQUALIFIED;
4534 type = build_function_type (type, arg_types);
4535 declarator = TREE_OPERAND (declarator, 0);
4537 /* Set the TYPE_CONTEXTs for each tagged type which is local to
4538 the formal parameter list of this FUNCTION_TYPE to point to
4539 the FUNCTION_TYPE node itself. */
4542 register tree link;
4544 for (link = last_function_parm_tags;
4545 link;
4546 link = TREE_CHAIN (link))
4547 TYPE_CONTEXT (TREE_VALUE (link)) = type;
4550 else if (TREE_CODE (declarator) == INDIRECT_REF)
4552 /* Merge any constancy or volatility into the target type
4553 for the pointer. */
4555 if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
4556 && type_quals)
4557 pedwarn ("ANSI C forbids qualified function types");
4558 if (type_quals)
4559 type = c_build_qualified_type (type, type_quals);
4560 type_quals = TYPE_UNQUALIFIED;
4561 size_varies = 0;
4563 type = build_pointer_type (type);
4565 /* Process a list of type modifier keywords
4566 (such as const or volatile) that were given inside the `*'. */
4568 if (TREE_TYPE (declarator))
4570 register tree typemodlist;
4571 int erred = 0;
4573 constp = 0;
4574 volatilep = 0;
4575 restrictp = 0;
4576 for (typemodlist = TREE_TYPE (declarator); typemodlist;
4577 typemodlist = TREE_CHAIN (typemodlist))
4579 tree qualifier = TREE_VALUE (typemodlist);
4581 if (qualifier == ridpointers[(int) RID_CONST])
4582 constp++;
4583 else if (qualifier == ridpointers[(int) RID_VOLATILE])
4584 volatilep++;
4585 else if (qualifier == ridpointers[(int) RID_RESTRICT])
4586 restrictp++;
4587 else if (!erred)
4589 erred = 1;
4590 error ("invalid type modifier within pointer declarator");
4593 if (constp > 1)
4594 pedwarn ("duplicate `const'");
4595 if (volatilep > 1)
4596 pedwarn ("duplicate `volatile'");
4597 if (restrictp > 1)
4598 pedwarn ("duplicate `restrict'");
4600 type_quals = ((constp ? TYPE_QUAL_CONST : 0)
4601 | (restrictp ? TYPE_QUAL_RESTRICT : 0)
4602 | (volatilep ? TYPE_QUAL_VOLATILE : 0));
4605 declarator = TREE_OPERAND (declarator, 0);
4607 else
4608 abort ();
4612 /* Now TYPE has the actual type. */
4614 /* Did array size calculations overflow? */
4616 if (TREE_CODE (type) == ARRAY_TYPE
4617 && TYPE_SIZE (type)
4618 && TREE_OVERFLOW (TYPE_SIZE (type)))
4619 error ("size of array `%s' is too large", name);
4621 /* If this is declaring a typedef name, return a TYPE_DECL. */
4623 if (specbits & (1 << (int) RID_TYPEDEF))
4625 tree decl;
4626 /* Note that the grammar rejects storage classes
4627 in typenames, fields or parameters */
4628 if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
4629 && type_quals)
4630 pedwarn ("ANSI C forbids qualified function types");
4631 if (type_quals)
4632 type = c_build_qualified_type (type, type_quals);
4633 decl = build_decl (TYPE_DECL, declarator, type);
4634 if ((specbits & (1 << (int) RID_SIGNED))
4635 || (typedef_decl && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl)))
4636 C_TYPEDEF_EXPLICITLY_SIGNED (decl) = 1;
4637 pop_obstacks ();
4638 return decl;
4641 /* Detect the case of an array type of unspecified size
4642 which came, as such, direct from a typedef name.
4643 We must copy the type, so that each identifier gets
4644 a distinct type, so that each identifier's size can be
4645 controlled separately by its own initializer. */
4647 if (type != 0 && typedef_type != 0
4648 && TYPE_MAIN_VARIANT (type) == TYPE_MAIN_VARIANT (typedef_type)
4649 && TREE_CODE (type) == ARRAY_TYPE && TYPE_DOMAIN (type) == 0)
4651 type = build_array_type (TREE_TYPE (type), 0);
4652 if (size_varies)
4653 C_TYPE_VARIABLE_SIZE (type) = 1;
4656 /* If this is a type name (such as, in a cast or sizeof),
4657 compute the type and return it now. */
4659 if (decl_context == TYPENAME)
4661 /* Note that the grammar rejects storage classes
4662 in typenames, fields or parameters */
4663 if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
4664 && type_quals)
4665 pedwarn ("ANSI C forbids const or volatile function types");
4666 if (type_quals)
4667 type = c_build_qualified_type (type, type_quals);
4668 pop_obstacks ();
4669 return type;
4672 /* Aside from typedefs and type names (handle above),
4673 `void' at top level (not within pointer)
4674 is allowed only in public variables.
4675 We don't complain about parms either, but that is because
4676 a better error message can be made later. */
4678 if (TYPE_MAIN_VARIANT (type) == void_type_node && decl_context != PARM
4679 && ! ((decl_context != FIELD && TREE_CODE (type) != FUNCTION_TYPE)
4680 && ((specbits & (1 << (int) RID_EXTERN))
4681 || (current_binding_level == global_binding_level
4682 && !(specbits
4683 & ((1 << (int) RID_STATIC) | (1 << (int) RID_REGISTER)))))))
4685 error ("variable or field `%s' declared void", name);
4686 type = integer_type_node;
4689 /* Now create the decl, which may be a VAR_DECL, a PARM_DECL
4690 or a FUNCTION_DECL, depending on DECL_CONTEXT and TYPE. */
4693 register tree decl;
4695 if (decl_context == PARM)
4697 tree type_as_written = type;
4698 tree promoted_type;
4700 /* A parameter declared as an array of T is really a pointer to T.
4701 One declared as a function is really a pointer to a function. */
4703 if (TREE_CODE (type) == ARRAY_TYPE)
4705 /* Transfer const-ness of array into that of type pointed to. */
4706 type = TREE_TYPE (type);
4707 if (type_quals)
4708 type = c_build_qualified_type (type, type_quals);
4709 type = build_pointer_type (type);
4710 type_quals = TYPE_UNQUALIFIED;
4711 size_varies = 0;
4713 else if (TREE_CODE (type) == FUNCTION_TYPE)
4715 if (pedantic && type_quals)
4716 pedwarn ("ANSI C forbids qualified function types");
4717 if (type_quals)
4718 type = c_build_qualified_type (type, type_quals);
4719 type = build_pointer_type (type);
4720 type_quals = TYPE_UNQUALIFIED;
4723 decl = build_decl (PARM_DECL, declarator, type);
4724 if (size_varies)
4725 C_DECL_VARIABLE_SIZE (decl) = 1;
4727 /* Compute the type actually passed in the parmlist,
4728 for the case where there is no prototype.
4729 (For example, shorts and chars are passed as ints.)
4730 When there is a prototype, this is overridden later. */
4732 if (type == error_mark_node)
4733 promoted_type = type;
4734 else
4736 promoted_type = simple_type_promotes_to (type);
4737 if (! promoted_type)
4738 promoted_type = type;
4741 DECL_ARG_TYPE (decl) = promoted_type;
4742 DECL_ARG_TYPE_AS_WRITTEN (decl) = type_as_written;
4744 else if (decl_context == FIELD)
4746 /* Structure field. It may not be a function. */
4748 if (TREE_CODE (type) == FUNCTION_TYPE)
4750 error ("field `%s' declared as a function", name);
4751 type = build_pointer_type (type);
4753 else if (TREE_CODE (type) != ERROR_MARK && TYPE_SIZE (type) == 0)
4755 error ("field `%s' has incomplete type", name);
4756 type = error_mark_node;
4758 /* Move type qualifiers down to element of an array. */
4759 if (TREE_CODE (type) == ARRAY_TYPE && type_quals)
4761 type = build_array_type (c_build_qualified_type (TREE_TYPE (type),
4762 type_quals),
4763 TYPE_DOMAIN (type));
4764 #if 0 /* Leave the field const or volatile as well. */
4765 type_quals = TYPE_UNQUALIFIED;
4766 #endif
4768 decl = build_decl (FIELD_DECL, declarator, type);
4769 if (size_varies)
4770 C_DECL_VARIABLE_SIZE (decl) = 1;
4772 else if (TREE_CODE (type) == FUNCTION_TYPE)
4774 /* Every function declaration is "external"
4775 except for those which are inside a function body
4776 in which `auto' is used.
4777 That is a case not specified by ANSI C,
4778 and we use it for forward declarations for nested functions. */
4779 int extern_ref = (!(specbits & (1 << (int) RID_AUTO))
4780 || current_binding_level == global_binding_level);
4782 if (specbits & (1 << (int) RID_AUTO)
4783 && (pedantic || current_binding_level == global_binding_level))
4784 pedwarn ("invalid storage class for function `%s'", name);
4785 if (specbits & (1 << (int) RID_REGISTER))
4786 error ("invalid storage class for function `%s'", name);
4787 /* Function declaration not at top level.
4788 Storage classes other than `extern' are not allowed
4789 and `extern' makes no difference. */
4790 if (current_binding_level != global_binding_level
4791 && (specbits & ((1 << (int) RID_STATIC) | (1 << (int) RID_INLINE)))
4792 && pedantic)
4793 pedwarn ("invalid storage class for function `%s'", name);
4795 /* If this is a block level extern, it must live past the end
4796 of the function so that we can check it against other
4797 extern declarations (IDENTIFIER_LIMBO_VALUE). */
4798 if (extern_ref && allocation_temporary_p ())
4799 end_temporary_allocation ();
4801 decl = build_decl (FUNCTION_DECL, declarator, type);
4802 decl = build_decl_attribute_variant (decl, decl_machine_attr);
4804 if (pedantic && type_quals && ! DECL_IN_SYSTEM_HEADER (decl))
4805 pedwarn ("ANSI C forbids qualified function types");
4807 if (pedantic
4808 && TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (decl))) == void_type_node
4809 && TYPE_QUALS (TREE_TYPE (TREE_TYPE (decl)))
4810 && ! DECL_IN_SYSTEM_HEADER (decl))
4811 pedwarn ("ANSI C forbids qualified void function return type");
4813 /* GNU C interprets a `volatile void' return type to indicate
4814 that the function does not return. */
4815 if ((type_quals & TYPE_QUAL_VOLATILE)
4816 && TREE_TYPE (TREE_TYPE (decl)) != void_type_node)
4817 warning ("`noreturn' function returns non-void value");
4819 if (extern_ref)
4820 DECL_EXTERNAL (decl) = 1;
4821 /* Record absence of global scope for `static' or `auto'. */
4822 TREE_PUBLIC (decl)
4823 = !(specbits & ((1 << (int) RID_STATIC) | (1 << (int) RID_AUTO)));
4825 /* Record presence of `inline', if it is reasonable. */
4826 if (inlinep)
4828 if (! strcmp (IDENTIFIER_POINTER (declarator), "main"))
4829 warning ("cannot inline function `main'");
4830 else
4831 /* Assume that otherwise the function can be inlined. */
4832 DECL_INLINE (decl) = 1;
4834 if (specbits & (1 << (int) RID_EXTERN))
4835 current_extern_inline = 1;
4838 else
4840 /* It's a variable. */
4841 /* An uninitialized decl with `extern' is a reference. */
4842 int extern_ref = !initialized && (specbits & (1 << (int) RID_EXTERN));
4844 /* Move type qualifiers down to element of an array. */
4845 if (TREE_CODE (type) == ARRAY_TYPE && type_quals)
4847 type = build_array_type (c_build_qualified_type (TREE_TYPE (type),
4848 type_quals),
4849 TYPE_DOMAIN (type));
4850 #if 0 /* Leave the variable const or volatile as well. */
4851 type_quals = TYPE_UNQUALIFIED;
4852 #endif
4855 /* If this is a block level extern, it must live past the end
4856 of the function so that we can check it against other
4857 extern declarations (IDENTIFIER_LIMBO_VALUE). */
4858 if (extern_ref && allocation_temporary_p ())
4859 end_temporary_allocation ();
4861 decl = build_decl (VAR_DECL, declarator, type);
4862 if (size_varies)
4863 C_DECL_VARIABLE_SIZE (decl) = 1;
4865 if (inlinep)
4866 pedwarn_with_decl (decl, "variable `%s' declared `inline'");
4868 DECL_EXTERNAL (decl) = extern_ref;
4869 /* At top level, the presence of a `static' or `register' storage
4870 class specifier, or the absence of all storage class specifiers
4871 makes this declaration a definition (perhaps tentative). Also,
4872 the absence of both `static' and `register' makes it public. */
4873 if (current_binding_level == global_binding_level)
4875 TREE_PUBLIC (decl)
4876 = !(specbits
4877 & ((1 << (int) RID_STATIC) | (1 << (int) RID_REGISTER)));
4878 TREE_STATIC (decl) = ! DECL_EXTERNAL (decl);
4880 /* Not at top level, only `static' makes a static definition. */
4881 else
4883 TREE_STATIC (decl) = (specbits & (1 << (int) RID_STATIC)) != 0;
4884 TREE_PUBLIC (decl) = DECL_EXTERNAL (decl);
4887 if (specbits & 1 << (int) RID_ITERATOR)
4888 ITERATOR_P (decl) = 1;
4891 /* Record `register' declaration for warnings on &
4892 and in case doing stupid register allocation. */
4894 if (specbits & (1 << (int) RID_REGISTER))
4895 DECL_REGISTER (decl) = 1;
4897 /* Record constancy and volatility. */
4898 c_apply_type_quals_to_decl (type_quals, decl);
4900 /* If a type has volatile components, it should be stored in memory.
4901 Otherwise, the fact that those components are volatile
4902 will be ignored, and would even crash the compiler. */
4903 if (C_TYPE_FIELDS_VOLATILE (TREE_TYPE (decl)))
4904 mark_addressable (decl);
4906 pop_obstacks ();
4908 return decl;
4912 /* Decode the parameter-list info for a function type or function definition.
4913 The argument is the value returned by `get_parm_info' (or made in parse.y
4914 if there is an identifier list instead of a parameter decl list).
4915 These two functions are separate because when a function returns
4916 or receives functions then each is called multiple times but the order
4917 of calls is different. The last call to `grokparms' is always the one
4918 that contains the formal parameter names of a function definition.
4920 Store in `last_function_parms' a chain of the decls of parms.
4921 Also store in `last_function_parm_tags' a chain of the struct, union,
4922 and enum tags declared among the parms.
4924 Return a list of arg types to use in the FUNCTION_TYPE for this function.
4926 FUNCDEF_FLAG is nonzero for a function definition, 0 for
4927 a mere declaration. A nonempty identifier-list gets an error message
4928 when FUNCDEF_FLAG is zero. */
4930 static tree
4931 grokparms (parms_info, funcdef_flag)
4932 tree parms_info;
4933 int funcdef_flag;
4935 tree first_parm = TREE_CHAIN (parms_info);
4937 last_function_parms = TREE_PURPOSE (parms_info);
4938 last_function_parm_tags = TREE_VALUE (parms_info);
4940 if (warn_strict_prototypes && first_parm == 0 && !funcdef_flag
4941 && !in_system_header)
4942 warning ("function declaration isn't a prototype");
4944 if (first_parm != 0
4945 && TREE_CODE (TREE_VALUE (first_parm)) == IDENTIFIER_NODE)
4947 if (! funcdef_flag)
4948 pedwarn ("parameter names (without types) in function declaration");
4950 last_function_parms = first_parm;
4951 return 0;
4953 else
4955 tree parm;
4956 tree typelt;
4957 /* We no longer test FUNCDEF_FLAG.
4958 If the arg types are incomplete in a declaration,
4959 they must include undefined tags.
4960 These tags can never be defined in the scope of the declaration,
4961 so the types can never be completed,
4962 and no call can be compiled successfully. */
4963 #if 0
4964 /* In a fcn definition, arg types must be complete. */
4965 if (funcdef_flag)
4966 #endif
4967 for (parm = last_function_parms, typelt = first_parm;
4968 parm;
4969 parm = TREE_CHAIN (parm))
4970 /* Skip over any enumeration constants declared here. */
4971 if (TREE_CODE (parm) == PARM_DECL)
4973 /* Barf if the parameter itself has an incomplete type. */
4974 tree type = TREE_VALUE (typelt);
4975 if (TYPE_SIZE (type) == 0)
4977 if (funcdef_flag && DECL_NAME (parm) != 0)
4978 error ("parameter `%s' has incomplete type",
4979 IDENTIFIER_POINTER (DECL_NAME (parm)));
4980 else
4981 warning ("parameter has incomplete type");
4982 if (funcdef_flag)
4984 TREE_VALUE (typelt) = error_mark_node;
4985 TREE_TYPE (parm) = error_mark_node;
4988 #if 0 /* This has been replaced by parm_tags_warning
4989 which uses a more accurate criterion for what to warn about. */
4990 else
4992 /* Now warn if is a pointer to an incomplete type. */
4993 while (TREE_CODE (type) == POINTER_TYPE
4994 || TREE_CODE (type) == REFERENCE_TYPE)
4995 type = TREE_TYPE (type);
4996 type = TYPE_MAIN_VARIANT (type);
4997 if (TYPE_SIZE (type) == 0)
4999 if (DECL_NAME (parm) != 0)
5000 warning ("parameter `%s' points to incomplete type",
5001 IDENTIFIER_POINTER (DECL_NAME (parm)));
5002 else
5003 warning ("parameter points to incomplete type");
5006 #endif
5007 typelt = TREE_CHAIN (typelt);
5010 /* Allocate the list of types the way we allocate a type. */
5011 if (first_parm && ! TREE_PERMANENT (first_parm))
5013 /* Construct a copy of the list of types
5014 on the saveable obstack. */
5015 tree result = NULL;
5016 for (typelt = first_parm; typelt; typelt = TREE_CHAIN (typelt))
5017 result = saveable_tree_cons (NULL_TREE, TREE_VALUE (typelt),
5018 result);
5019 return nreverse (result);
5021 else
5022 /* The list we have is permanent already. */
5023 return first_parm;
5028 /* Return a tree_list node with info on a parameter list just parsed.
5029 The TREE_PURPOSE is a chain of decls of those parms.
5030 The TREE_VALUE is a list of structure, union and enum tags defined.
5031 The TREE_CHAIN is a list of argument types to go in the FUNCTION_TYPE.
5032 This tree_list node is later fed to `grokparms'.
5034 VOID_AT_END nonzero means append `void' to the end of the type-list.
5035 Zero means the parmlist ended with an ellipsis so don't append `void'. */
5037 tree
5038 get_parm_info (void_at_end)
5039 int void_at_end;
5041 register tree decl, t;
5042 register tree types = 0;
5043 int erred = 0;
5044 tree tags = gettags ();
5045 tree parms = getdecls ();
5046 tree new_parms = 0;
5047 tree order = current_binding_level->parm_order;
5049 /* Just `void' (and no ellipsis) is special. There are really no parms. */
5050 if (void_at_end && parms != 0
5051 && TREE_CHAIN (parms) == 0
5052 && TYPE_MAIN_VARIANT (TREE_TYPE (parms)) == void_type_node
5053 && DECL_NAME (parms) == 0)
5055 parms = NULL_TREE;
5056 storedecls (NULL_TREE);
5057 return saveable_tree_cons (NULL_TREE, NULL_TREE,
5058 saveable_tree_cons (NULL_TREE, void_type_node, NULL_TREE));
5061 /* Extract enumerator values and other non-parms declared with the parms.
5062 Likewise any forward parm decls that didn't have real parm decls. */
5063 for (decl = parms; decl; )
5065 tree next = TREE_CHAIN (decl);
5067 if (TREE_CODE (decl) != PARM_DECL)
5069 TREE_CHAIN (decl) = new_parms;
5070 new_parms = decl;
5072 else if (TREE_ASM_WRITTEN (decl))
5074 error_with_decl (decl, "parameter `%s' has just a forward declaration");
5075 TREE_CHAIN (decl) = new_parms;
5076 new_parms = decl;
5078 decl = next;
5081 /* Put the parm decls back in the order they were in in the parm list. */
5082 for (t = order; t; t = TREE_CHAIN (t))
5084 if (TREE_CHAIN (t))
5085 TREE_CHAIN (TREE_VALUE (t)) = TREE_VALUE (TREE_CHAIN (t));
5086 else
5087 TREE_CHAIN (TREE_VALUE (t)) = 0;
5090 new_parms = chainon (order ? nreverse (TREE_VALUE (order)) : 0,
5091 new_parms);
5093 /* Store the parmlist in the binding level since the old one
5094 is no longer a valid list. (We have changed the chain pointers.) */
5095 storedecls (new_parms);
5097 for (decl = new_parms; decl; decl = TREE_CHAIN (decl))
5098 /* There may also be declarations for enumerators if an enumeration
5099 type is declared among the parms. Ignore them here. */
5100 if (TREE_CODE (decl) == PARM_DECL)
5102 /* Since there is a prototype,
5103 args are passed in their declared types. */
5104 tree type = TREE_TYPE (decl);
5105 DECL_ARG_TYPE (decl) = type;
5106 if (PROMOTE_PROTOTYPES
5107 && (TREE_CODE (type) == INTEGER_TYPE
5108 || TREE_CODE (type) == ENUMERAL_TYPE)
5109 && TYPE_PRECISION (type) < TYPE_PRECISION (integer_type_node))
5110 DECL_ARG_TYPE (decl) = integer_type_node;
5112 types = saveable_tree_cons (NULL_TREE, TREE_TYPE (decl), types);
5113 if (TYPE_MAIN_VARIANT (TREE_VALUE (types)) == void_type_node && ! erred
5114 && DECL_NAME (decl) == 0)
5116 error ("`void' in parameter list must be the entire list");
5117 erred = 1;
5121 if (void_at_end)
5122 return saveable_tree_cons (new_parms, tags,
5123 nreverse (saveable_tree_cons (NULL_TREE, void_type_node, types)));
5125 return saveable_tree_cons (new_parms, tags, nreverse (types));
5128 /* At end of parameter list, warn about any struct, union or enum tags
5129 defined within. Do so because these types cannot ever become complete. */
5131 void
5132 parmlist_tags_warning ()
5134 tree elt;
5135 static int already;
5137 for (elt = current_binding_level->tags; elt; elt = TREE_CHAIN (elt))
5139 enum tree_code code = TREE_CODE (TREE_VALUE (elt));
5140 /* An anonymous union parm type is meaningful as a GNU extension.
5141 So don't warn for that. */
5142 if (code == UNION_TYPE && TREE_PURPOSE (elt) == 0 && !pedantic)
5143 continue;
5144 if (TREE_PURPOSE (elt) != 0)
5145 warning ("`%s %s' declared inside parameter list",
5146 (code == RECORD_TYPE ? "struct"
5147 : code == UNION_TYPE ? "union"
5148 : "enum"),
5149 IDENTIFIER_POINTER (TREE_PURPOSE (elt)));
5150 else
5151 warning ("anonymous %s declared inside parameter list",
5152 (code == RECORD_TYPE ? "struct"
5153 : code == UNION_TYPE ? "union"
5154 : "enum"));
5156 if (! already)
5158 warning ("its scope is only this definition or declaration, which is probably not what you want.");
5159 already = 1;
5164 /* Get the struct, enum or union (CODE says which) with tag NAME.
5165 Define the tag as a forward-reference if it is not defined. */
5167 tree
5168 xref_tag (code, name)
5169 enum tree_code code;
5170 tree name;
5172 int temporary = allocation_temporary_p ();
5174 /* If a cross reference is requested, look up the type
5175 already defined for this tag and return it. */
5177 register tree ref = lookup_tag (code, name, current_binding_level, 0);
5178 /* Even if this is the wrong type of tag, return what we found.
5179 There will be an error message anyway, from pending_xref_error.
5180 If we create an empty xref just for an invalid use of the type,
5181 the main result is to create lots of superfluous error messages. */
5182 if (ref)
5183 return ref;
5185 push_obstacks_nochange ();
5187 if (current_binding_level == global_binding_level && temporary)
5188 end_temporary_allocation ();
5190 /* If no such tag is yet defined, create a forward-reference node
5191 and record it as the "definition".
5192 When a real declaration of this type is found,
5193 the forward-reference will be altered into a real type. */
5195 ref = make_node (code);
5196 if (code == ENUMERAL_TYPE)
5198 /* (In ANSI, Enums can be referred to only if already defined.) */
5199 if (pedantic)
5200 pedwarn ("ANSI C forbids forward references to `enum' types");
5201 /* Give the type a default layout like unsigned int
5202 to avoid crashing if it does not get defined. */
5203 TYPE_MODE (ref) = TYPE_MODE (unsigned_type_node);
5204 TYPE_ALIGN (ref) = TYPE_ALIGN (unsigned_type_node);
5205 TREE_UNSIGNED (ref) = 1;
5206 TYPE_PRECISION (ref) = TYPE_PRECISION (unsigned_type_node);
5207 TYPE_MIN_VALUE (ref) = TYPE_MIN_VALUE (unsigned_type_node);
5208 TYPE_MAX_VALUE (ref) = TYPE_MAX_VALUE (unsigned_type_node);
5211 pushtag (name, ref);
5213 pop_obstacks ();
5215 return ref;
5218 /* Make sure that the tag NAME is defined *in the current binding level*
5219 at least as a forward reference.
5220 CODE says which kind of tag NAME ought to be.
5222 We also do a push_obstacks_nochange
5223 whose matching pop is in finish_struct. */
5225 tree
5226 start_struct (code, name)
5227 enum tree_code code;
5228 tree name;
5230 /* If there is already a tag defined at this binding level
5231 (as a forward reference), just return it. */
5233 register tree ref = 0;
5235 push_obstacks_nochange ();
5236 if (current_binding_level == global_binding_level)
5237 end_temporary_allocation ();
5239 if (name != 0)
5240 ref = lookup_tag (code, name, current_binding_level, 1);
5241 if (ref && TREE_CODE (ref) == code)
5243 C_TYPE_BEING_DEFINED (ref) = 1;
5244 TYPE_PACKED (ref) = flag_pack_struct;
5245 if (TYPE_FIELDS (ref))
5246 error ((code == UNION_TYPE ? "redefinition of `union %s'"
5247 : "redefinition of `struct %s'"),
5248 IDENTIFIER_POINTER (name));
5250 return ref;
5253 /* Otherwise create a forward-reference just so the tag is in scope. */
5255 ref = make_node (code);
5256 pushtag (name, ref);
5257 C_TYPE_BEING_DEFINED (ref) = 1;
5258 TYPE_PACKED (ref) = flag_pack_struct;
5259 return ref;
5262 /* Process the specs, declarator (NULL if omitted) and width (NULL if omitted)
5263 of a structure component, returning a FIELD_DECL node.
5264 WIDTH is non-NULL for bit fields only, and is an INTEGER_CST node.
5266 This is done during the parsing of the struct declaration.
5267 The FIELD_DECL nodes are chained together and the lot of them
5268 are ultimately passed to `build_struct' to make the RECORD_TYPE node. */
5270 tree
5271 grokfield (filename, line, declarator, declspecs, width)
5272 const char *filename ATTRIBUTE_UNUSED;
5273 int line ATTRIBUTE_UNUSED;
5274 tree declarator, declspecs, width;
5276 tree value;
5278 /* The corresponding pop_obstacks is in finish_decl. */
5279 push_obstacks_nochange ();
5281 value = grokdeclarator (declarator, declspecs, width ? BITFIELD : FIELD, 0);
5283 finish_decl (value, NULL_TREE, NULL_TREE);
5284 DECL_INITIAL (value) = width;
5286 maybe_objc_check_decl (value);
5287 return value;
5290 /* Fill in the fields of a RECORD_TYPE or UNION_TYPE node, T.
5291 FIELDLIST is a chain of FIELD_DECL nodes for the fields.
5292 ATTRIBUTES are attributes to be applied to the structure.
5294 We also do a pop_obstacks to match the push in start_struct. */
5296 tree
5297 finish_struct (t, fieldlist, attributes)
5298 tree t;
5299 tree fieldlist;
5300 tree attributes;
5302 register tree x;
5303 int old_momentary;
5304 int toplevel = global_binding_level == current_binding_level;
5306 /* If this type was previously laid out as a forward reference,
5307 make sure we lay it out again. */
5309 TYPE_SIZE (t) = 0;
5311 decl_attributes (t, attributes, NULL_TREE);
5313 /* Nameless union parm types are useful as GCC extension. */
5314 if (! (TREE_CODE (t) == UNION_TYPE && TYPE_NAME (t) == 0) && !pedantic)
5315 /* Otherwise, warn about any struct or union def. in parmlist. */
5316 if (in_parm_level_p ())
5318 if (pedantic)
5319 pedwarn ((TREE_CODE (t) == UNION_TYPE ? "union defined inside parms"
5320 : "structure defined inside parms"));
5321 else if (! flag_traditional)
5322 warning ((TREE_CODE (t) == UNION_TYPE ? "union defined inside parms"
5323 : "structure defined inside parms"));
5326 old_momentary = suspend_momentary ();
5328 if (pedantic)
5330 for (x = fieldlist; x; x = TREE_CHAIN (x))
5331 if (DECL_NAME (x) != 0)
5332 break;
5334 if (x == 0)
5335 pedwarn ((fieldlist
5336 ? "%s has no named members"
5337 : "%s has no members"),
5338 TREE_CODE (t) == UNION_TYPE ? "union" : "struct");
5341 /* Install struct as DECL_CONTEXT of each field decl.
5342 Also process specified field sizes.
5343 Set DECL_FIELD_SIZE to the specified size, or 0 if none specified.
5344 The specified size is found in the DECL_INITIAL.
5345 Store 0 there, except for ": 0" fields (so we can find them
5346 and delete them, below). */
5348 for (x = fieldlist; x; x = TREE_CHAIN (x))
5350 DECL_CONTEXT (x) = t;
5351 DECL_PACKED (x) |= TYPE_PACKED (t);
5352 DECL_FIELD_SIZE (x) = 0;
5354 /* If any field is const, the structure type is pseudo-const. */
5355 if (TREE_READONLY (x))
5356 C_TYPE_FIELDS_READONLY (t) = 1;
5357 else
5359 /* A field that is pseudo-const makes the structure likewise. */
5360 tree t1 = TREE_TYPE (x);
5361 while (TREE_CODE (t1) == ARRAY_TYPE)
5362 t1 = TREE_TYPE (t1);
5363 if ((TREE_CODE (t1) == RECORD_TYPE || TREE_CODE (t1) == UNION_TYPE)
5364 && C_TYPE_FIELDS_READONLY (t1))
5365 C_TYPE_FIELDS_READONLY (t) = 1;
5368 /* Any field that is volatile means variables of this type must be
5369 treated in some ways as volatile. */
5370 if (TREE_THIS_VOLATILE (x))
5371 C_TYPE_FIELDS_VOLATILE (t) = 1;
5373 /* Any field of nominal variable size implies structure is too. */
5374 if (C_DECL_VARIABLE_SIZE (x))
5375 C_TYPE_VARIABLE_SIZE (t) = 1;
5377 /* Detect invalid nested redefinition. */
5378 if (TREE_TYPE (x) == t)
5379 error ("nested redefinition of `%s'",
5380 IDENTIFIER_POINTER (TYPE_NAME (t)));
5382 /* Detect invalid bit-field size. */
5383 if (DECL_INITIAL (x))
5384 STRIP_NOPS (DECL_INITIAL (x));
5385 if (DECL_INITIAL (x))
5387 if (TREE_CODE (DECL_INITIAL (x)) == INTEGER_CST)
5388 constant_expression_warning (DECL_INITIAL (x));
5389 else
5391 error_with_decl (x, "bit-field `%s' width not an integer constant");
5392 DECL_INITIAL (x) = NULL;
5396 /* Detect invalid bit-field type. */
5397 if (DECL_INITIAL (x)
5398 && TREE_CODE (TREE_TYPE (x)) != INTEGER_TYPE
5399 && TREE_CODE (TREE_TYPE (x)) != ENUMERAL_TYPE)
5401 error_with_decl (x, "bit-field `%s' has invalid type");
5402 DECL_INITIAL (x) = NULL;
5404 if (DECL_INITIAL (x) && pedantic
5405 && TYPE_MAIN_VARIANT (TREE_TYPE (x)) != integer_type_node
5406 && TYPE_MAIN_VARIANT (TREE_TYPE (x)) != unsigned_type_node
5407 /* Accept an enum that's equivalent to int or unsigned int. */
5408 && !(TREE_CODE (TREE_TYPE (x)) == ENUMERAL_TYPE
5409 && (TYPE_PRECISION (TREE_TYPE (x))
5410 == TYPE_PRECISION (integer_type_node))))
5411 pedwarn_with_decl (x, "bit-field `%s' type invalid in ANSI C");
5413 /* Detect and ignore out of range field width. */
5414 if (DECL_INITIAL (x))
5416 unsigned HOST_WIDE_INT width = TREE_INT_CST_LOW (DECL_INITIAL (x));
5418 if (tree_int_cst_sgn (DECL_INITIAL (x)) < 0)
5420 DECL_INITIAL (x) = NULL;
5421 error_with_decl (x, "negative width in bit-field `%s'");
5423 else if (TREE_INT_CST_HIGH (DECL_INITIAL (x)) != 0
5424 || width > TYPE_PRECISION (TREE_TYPE (x)))
5426 DECL_INITIAL (x) = NULL;
5427 pedwarn_with_decl (x, "width of `%s' exceeds its type");
5429 else if (width == 0 && DECL_NAME (x) != 0)
5431 error_with_decl (x, "zero width for bit-field `%s'");
5432 DECL_INITIAL (x) = NULL;
5436 /* Process valid field width. */
5437 if (DECL_INITIAL (x))
5439 register int width = TREE_INT_CST_LOW (DECL_INITIAL (x));
5441 if (TREE_CODE (TREE_TYPE (x)) == ENUMERAL_TYPE
5442 && (width < min_precision (TYPE_MIN_VALUE (TREE_TYPE (x)),
5443 TREE_UNSIGNED (TREE_TYPE (x)))
5444 || width < min_precision (TYPE_MAX_VALUE (TREE_TYPE (x)),
5445 TREE_UNSIGNED (TREE_TYPE (x)))))
5446 warning_with_decl (x, "`%s' is narrower than values of its type");
5448 DECL_FIELD_SIZE (x) = width;
5449 DECL_BIT_FIELD (x) = DECL_C_BIT_FIELD (x) = 1;
5450 DECL_INITIAL (x) = NULL;
5452 if (width == 0)
5454 /* field size 0 => force desired amount of alignment. */
5455 #ifdef EMPTY_FIELD_BOUNDARY
5456 DECL_ALIGN (x) = MAX (DECL_ALIGN (x), EMPTY_FIELD_BOUNDARY);
5457 #endif
5458 #ifdef PCC_BITFIELD_TYPE_MATTERS
5459 if (PCC_BITFIELD_TYPE_MATTERS)
5460 DECL_ALIGN (x) = MAX (DECL_ALIGN (x),
5461 TYPE_ALIGN (TREE_TYPE (x)));
5462 #endif
5465 else if (TREE_TYPE (x) != error_mark_node)
5467 unsigned int min_align = (DECL_PACKED (x) ? BITS_PER_UNIT
5468 : TYPE_ALIGN (TREE_TYPE (x)));
5469 /* Non-bit-fields are aligned for their type, except packed
5470 fields which require only BITS_PER_UNIT alignment. */
5471 DECL_ALIGN (x) = MAX (DECL_ALIGN (x), min_align);
5475 /* Now DECL_INITIAL is null on all members. */
5477 /* Delete all duplicate fields from the fieldlist */
5478 for (x = fieldlist; x && TREE_CHAIN (x);)
5479 /* Anonymous fields aren't duplicates. */
5480 if (DECL_NAME (TREE_CHAIN (x)) == 0)
5481 x = TREE_CHAIN (x);
5482 else
5484 register tree y = fieldlist;
5486 while (1)
5488 if (DECL_NAME (y) == DECL_NAME (TREE_CHAIN (x)))
5489 break;
5490 if (y == x)
5491 break;
5492 y = TREE_CHAIN (y);
5494 if (DECL_NAME (y) == DECL_NAME (TREE_CHAIN (x)))
5496 error_with_decl (TREE_CHAIN (x), "duplicate member `%s'");
5497 TREE_CHAIN (x) = TREE_CHAIN (TREE_CHAIN (x));
5499 else x = TREE_CHAIN (x);
5502 /* Now we have the nearly final fieldlist. Record it,
5503 then lay out the structure or union (including the fields). */
5505 TYPE_FIELDS (t) = fieldlist;
5507 layout_type (t);
5509 /* Delete all zero-width bit-fields from the fieldlist */
5511 tree *fieldlistp = &fieldlist;
5512 while (*fieldlistp)
5513 if (TREE_CODE (*fieldlistp) == FIELD_DECL && DECL_INITIAL (*fieldlistp))
5514 *fieldlistp = TREE_CHAIN (*fieldlistp);
5515 else
5516 fieldlistp = &TREE_CHAIN (*fieldlistp);
5519 /* Now we have the truly final field list.
5520 Store it in this type and in the variants. */
5522 TYPE_FIELDS (t) = fieldlist;
5524 for (x = TYPE_MAIN_VARIANT (t); x; x = TYPE_NEXT_VARIANT (x))
5526 TYPE_FIELDS (x) = TYPE_FIELDS (t);
5527 TYPE_LANG_SPECIFIC (x) = TYPE_LANG_SPECIFIC (t);
5528 TYPE_ALIGN (x) = TYPE_ALIGN (t);
5531 /* If this was supposed to be a transparent union, but we can't
5532 make it one, warn and turn off the flag. */
5533 if (TREE_CODE (t) == UNION_TYPE
5534 && TYPE_TRANSPARENT_UNION (t)
5535 && TYPE_MODE (t) != DECL_MODE (TYPE_FIELDS (t)))
5537 TYPE_TRANSPARENT_UNION (t) = 0;
5538 warning ("union cannot be made transparent");
5541 /* If this structure or union completes the type of any previous
5542 variable declaration, lay it out and output its rtl. */
5544 if (current_binding_level->n_incomplete != 0)
5546 tree decl;
5547 for (decl = current_binding_level->names; decl; decl = TREE_CHAIN (decl))
5549 if (TREE_TYPE (decl) == t
5550 && TREE_CODE (decl) != TYPE_DECL)
5552 layout_decl (decl, 0);
5553 /* This is a no-op in c-lang.c or something real in objc-actions.c. */
5554 maybe_objc_check_decl (decl);
5555 rest_of_decl_compilation (decl, NULL_PTR, toplevel, 0);
5556 if (! toplevel)
5557 expand_decl (decl);
5558 --current_binding_level->n_incomplete;
5560 else if (TYPE_SIZE (TREE_TYPE (decl)) == 0
5561 && TREE_CODE (TREE_TYPE (decl)) == ARRAY_TYPE)
5563 tree element = TREE_TYPE (decl);
5564 while (TREE_CODE (element) == ARRAY_TYPE)
5565 element = TREE_TYPE (element);
5566 if (element == t)
5567 layout_array_type (TREE_TYPE (decl));
5572 resume_momentary (old_momentary);
5574 /* Finish debugging output for this type. */
5575 rest_of_type_compilation (t, toplevel);
5577 /* The matching push is in start_struct. */
5578 pop_obstacks ();
5580 return t;
5583 /* Lay out the type T, and its element type, and so on. */
5585 static void
5586 layout_array_type (t)
5587 tree t;
5589 if (TREE_CODE (TREE_TYPE (t)) == ARRAY_TYPE)
5590 layout_array_type (TREE_TYPE (t));
5591 layout_type (t);
5594 /* Begin compiling the definition of an enumeration type.
5595 NAME is its name (or null if anonymous).
5596 Returns the type object, as yet incomplete.
5597 Also records info about it so that build_enumerator
5598 may be used to declare the individual values as they are read. */
5600 tree
5601 start_enum (name)
5602 tree name;
5604 register tree enumtype = 0;
5606 /* If this is the real definition for a previous forward reference,
5607 fill in the contents in the same object that used to be the
5608 forward reference. */
5610 if (name != 0)
5611 enumtype = lookup_tag (ENUMERAL_TYPE, name, current_binding_level, 1);
5613 /* The corresponding pop_obstacks is in finish_enum. */
5614 push_obstacks_nochange ();
5615 /* If these symbols and types are global, make them permanent. */
5616 if (current_binding_level == global_binding_level)
5617 end_temporary_allocation ();
5619 if (enumtype == 0 || TREE_CODE (enumtype) != ENUMERAL_TYPE)
5621 enumtype = make_node (ENUMERAL_TYPE);
5622 pushtag (name, enumtype);
5625 C_TYPE_BEING_DEFINED (enumtype) = 1;
5627 if (TYPE_VALUES (enumtype) != 0)
5629 /* This enum is a named one that has been declared already. */
5630 error ("redeclaration of `enum %s'", IDENTIFIER_POINTER (name));
5632 /* Completely replace its old definition.
5633 The old enumerators remain defined, however. */
5634 TYPE_VALUES (enumtype) = 0;
5637 enum_next_value = integer_zero_node;
5638 enum_overflow = 0;
5640 if (flag_short_enums)
5641 TYPE_PACKED (enumtype) = 1;
5643 return enumtype;
5646 /* After processing and defining all the values of an enumeration type,
5647 install their decls in the enumeration type and finish it off.
5648 ENUMTYPE is the type object, VALUES a list of decl-value pairs,
5649 and ATTRIBUTES are the specified attributes.
5650 Returns ENUMTYPE. */
5652 tree
5653 finish_enum (enumtype, values, attributes)
5654 tree enumtype;
5655 tree values;
5656 tree attributes;
5658 register tree pair, tem;
5659 tree minnode = 0, maxnode = 0;
5660 int lowprec, highprec, precision;
5661 int toplevel = global_binding_level == current_binding_level;
5663 if (in_parm_level_p ())
5664 warning ("enum defined inside parms");
5666 decl_attributes (enumtype, attributes, NULL_TREE);
5668 /* Calculate the maximum value of any enumerator in this type. */
5670 if (values == error_mark_node)
5671 minnode = maxnode = integer_zero_node;
5672 else
5673 for (pair = values; pair; pair = TREE_CHAIN (pair))
5675 tree value = TREE_VALUE (pair);
5676 if (pair == values)
5677 minnode = maxnode = TREE_VALUE (pair);
5678 else
5680 if (tree_int_cst_lt (maxnode, value))
5681 maxnode = value;
5682 if (tree_int_cst_lt (value, minnode))
5683 minnode = value;
5687 TYPE_MIN_VALUE (enumtype) = minnode;
5688 TYPE_MAX_VALUE (enumtype) = maxnode;
5690 /* An enum can have some negative values; then it is signed. */
5691 TREE_UNSIGNED (enumtype) = tree_int_cst_sgn (minnode) >= 0;
5693 /* Determine the precision this type needs. */
5695 lowprec = min_precision (minnode, TREE_UNSIGNED (enumtype));
5696 highprec = min_precision (maxnode, TREE_UNSIGNED (enumtype));
5697 precision = MAX (lowprec, highprec);
5699 if (TYPE_PACKED (enumtype) || precision > TYPE_PRECISION (integer_type_node))
5701 tree narrowest = type_for_size (precision, 1);
5702 if (narrowest == 0)
5704 warning ("enumeration values exceed range of largest integer");
5705 narrowest = long_long_integer_type_node;
5708 TYPE_PRECISION (enumtype) = TYPE_PRECISION (narrowest);
5710 else
5711 TYPE_PRECISION (enumtype) = TYPE_PRECISION (integer_type_node);
5713 TYPE_SIZE (enumtype) = 0;
5714 layout_type (enumtype);
5716 if (values != error_mark_node)
5718 /* Change the type of the enumerators to be the enum type.
5719 Formerly this was done only for enums that fit in an int,
5720 but the comment said it was done only for enums wider than int.
5721 It seems necessary to do this for wide enums,
5722 and best not to change what's done for ordinary narrower ones. */
5723 for (pair = values; pair; pair = TREE_CHAIN (pair))
5725 TREE_TYPE (TREE_PURPOSE (pair)) = enumtype;
5726 DECL_SIZE (TREE_PURPOSE (pair)) = TYPE_SIZE (enumtype);
5727 if (TREE_CODE (TREE_PURPOSE (pair)) != FUNCTION_DECL)
5728 DECL_ALIGN (TREE_PURPOSE (pair)) = TYPE_ALIGN (enumtype);
5731 /* Replace the decl nodes in VALUES with their names. */
5732 for (pair = values; pair; pair = TREE_CHAIN (pair))
5733 TREE_PURPOSE (pair) = DECL_NAME (TREE_PURPOSE (pair));
5735 TYPE_VALUES (enumtype) = values;
5738 /* Fix up all variant types of this enum type. */
5739 for (tem = TYPE_MAIN_VARIANT (enumtype); tem; tem = TYPE_NEXT_VARIANT (tem))
5741 TYPE_VALUES (tem) = TYPE_VALUES (enumtype);
5742 TYPE_MIN_VALUE (tem) = TYPE_MIN_VALUE (enumtype);
5743 TYPE_MAX_VALUE (tem) = TYPE_MAX_VALUE (enumtype);
5744 TYPE_SIZE (tem) = TYPE_SIZE (enumtype);
5745 TYPE_SIZE_UNIT (tem) = TYPE_SIZE_UNIT (enumtype);
5746 TYPE_MODE (tem) = TYPE_MODE (enumtype);
5747 TYPE_PRECISION (tem) = TYPE_PRECISION (enumtype);
5748 TYPE_ALIGN (tem) = TYPE_ALIGN (enumtype);
5749 TREE_UNSIGNED (tem) = TREE_UNSIGNED (enumtype);
5752 /* Finish debugging output for this type. */
5753 rest_of_type_compilation (enumtype, toplevel);
5755 /* This matches a push in start_enum. */
5756 pop_obstacks ();
5758 return enumtype;
5761 /* Build and install a CONST_DECL for one value of the
5762 current enumeration type (one that was begun with start_enum).
5763 Return a tree-list containing the CONST_DECL and its value.
5764 Assignment of sequential values by default is handled here. */
5766 tree
5767 build_enumerator (name, value)
5768 tree name, value;
5770 register tree decl, type;
5772 /* Validate and default VALUE. */
5774 /* Remove no-op casts from the value. */
5775 if (value)
5776 STRIP_TYPE_NOPS (value);
5778 if (value != 0)
5780 if (TREE_CODE (value) == INTEGER_CST)
5782 value = default_conversion (value);
5783 constant_expression_warning (value);
5785 else
5787 error ("enumerator value for `%s' not integer constant",
5788 IDENTIFIER_POINTER (name));
5789 value = 0;
5793 /* Default based on previous value. */
5794 /* It should no longer be possible to have NON_LVALUE_EXPR
5795 in the default. */
5796 if (value == 0)
5798 value = enum_next_value;
5799 if (enum_overflow)
5800 error ("overflow in enumeration values");
5803 if (pedantic && ! int_fits_type_p (value, integer_type_node))
5805 pedwarn ("ANSI C restricts enumerator values to range of `int'");
5806 value = integer_zero_node;
5809 /* Set basis for default for next value. */
5810 enum_next_value = build_binary_op (PLUS_EXPR, value, integer_one_node, 0);
5811 enum_overflow = tree_int_cst_lt (enum_next_value, value);
5813 /* Now create a declaration for the enum value name. */
5815 type = TREE_TYPE (value);
5816 type = type_for_size (MAX (TYPE_PRECISION (type),
5817 TYPE_PRECISION (integer_type_node)),
5818 ((flag_traditional
5819 || TYPE_PRECISION (type) >= TYPE_PRECISION (integer_type_node))
5820 && TREE_UNSIGNED (type)));
5822 decl = build_decl (CONST_DECL, name, type);
5823 DECL_INITIAL (decl) = value;
5824 TREE_TYPE (value) = type;
5825 pushdecl (decl);
5827 return saveable_tree_cons (decl, value, NULL_TREE);
5830 /* Create the FUNCTION_DECL for a function definition.
5831 DECLSPECS, DECLARATOR, PREFIX_ATTRIBUTES and ATTRIBUTES are the parts of
5832 the declaration; they describe the function's name and the type it returns,
5833 but twisted together in a fashion that parallels the syntax of C.
5835 This function creates a binding context for the function body
5836 as well as setting up the FUNCTION_DECL in current_function_decl.
5838 Returns 1 on success. If the DECLARATOR is not suitable for a function
5839 (it defines a datum instead), we return 0, which tells
5840 yyparse to report a parse error.
5842 NESTED is nonzero for a function nested within another function. */
5845 start_function (declspecs, declarator, prefix_attributes, attributes, nested)
5846 tree declarator, declspecs, prefix_attributes, attributes;
5847 int nested;
5849 tree decl1, old_decl;
5850 tree restype;
5851 int old_immediate_size_expand = immediate_size_expand;
5853 current_function_returns_value = 0; /* Assume, until we see it does. */
5854 current_function_returns_null = 0;
5855 warn_about_return_type = 0;
5856 current_extern_inline = 0;
5857 c_function_varargs = 0;
5858 named_labels = 0;
5859 shadowed_labels = 0;
5861 /* Don't expand any sizes in the return type of the function. */
5862 immediate_size_expand = 0;
5864 decl1 = grokdeclarator (declarator, declspecs, FUNCDEF, 1);
5866 /* If the declarator is not suitable for a function definition,
5867 cause a syntax error. */
5868 if (decl1 == 0)
5870 immediate_size_expand = old_immediate_size_expand;
5871 return 0;
5874 decl_attributes (decl1, prefix_attributes, attributes);
5876 announce_function (decl1);
5878 if (TYPE_SIZE (TREE_TYPE (TREE_TYPE (decl1))) == 0)
5880 error ("return-type is an incomplete type");
5881 /* Make it return void instead. */
5882 TREE_TYPE (decl1)
5883 = build_function_type (void_type_node,
5884 TYPE_ARG_TYPES (TREE_TYPE (decl1)));
5887 if (warn_about_return_type)
5888 warning ("return-type defaults to `int'");
5890 /* Save the parm names or decls from this function's declarator
5891 where store_parm_decls will find them. */
5892 current_function_parms = last_function_parms;
5893 current_function_parm_tags = last_function_parm_tags;
5895 /* Make the init_value nonzero so pushdecl knows this is not tentative.
5896 error_mark_node is replaced below (in poplevel) with the BLOCK. */
5897 DECL_INITIAL (decl1) = error_mark_node;
5899 /* If this definition isn't a prototype and we had a prototype declaration
5900 before, copy the arg type info from that prototype.
5901 But not if what we had before was a builtin function. */
5902 old_decl = lookup_name_current_level (DECL_NAME (decl1));
5903 if (old_decl != 0 && TREE_CODE (TREE_TYPE (old_decl)) == FUNCTION_TYPE
5904 && !DECL_BUILT_IN (old_decl)
5905 && (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (decl1)))
5906 == TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (old_decl))))
5907 && TYPE_ARG_TYPES (TREE_TYPE (decl1)) == 0)
5909 TREE_TYPE (decl1) = TREE_TYPE (old_decl);
5910 current_function_prototype_file = DECL_SOURCE_FILE (old_decl);
5911 current_function_prototype_line = DECL_SOURCE_LINE (old_decl);
5914 /* If there is no explicit declaration, look for any out-of-scope implicit
5915 declarations. */
5916 if (old_decl == 0)
5917 old_decl = IDENTIFIER_IMPLICIT_DECL (DECL_NAME (decl1));
5919 /* Optionally warn of old-fashioned def with no previous prototype. */
5920 if (warn_strict_prototypes
5921 && TYPE_ARG_TYPES (TREE_TYPE (decl1)) == 0
5922 && !(old_decl != 0 && TYPE_ARG_TYPES (TREE_TYPE (old_decl)) != 0))
5923 warning ("function declaration isn't a prototype");
5924 /* Optionally warn of any global def with no previous prototype. */
5925 else if (warn_missing_prototypes
5926 && TREE_PUBLIC (decl1)
5927 && !(old_decl != 0 && TYPE_ARG_TYPES (TREE_TYPE (old_decl)) != 0)
5928 && strcmp ("main", IDENTIFIER_POINTER (DECL_NAME (decl1))))
5929 warning_with_decl (decl1, "no previous prototype for `%s'");
5930 /* Optionally warn of any def with no previous prototype
5931 if the function has already been used. */
5932 else if (warn_missing_prototypes
5933 && old_decl != 0 && TREE_USED (old_decl)
5934 && TYPE_ARG_TYPES (TREE_TYPE (old_decl)) == 0)
5935 warning_with_decl (decl1,
5936 "`%s' was used with no prototype before its definition");
5937 /* Optionally warn of any global def with no previous declaration. */
5938 else if (warn_missing_declarations
5939 && TREE_PUBLIC (decl1)
5940 && old_decl == 0
5941 && strcmp ("main", IDENTIFIER_POINTER (DECL_NAME (decl1))))
5942 warning_with_decl (decl1, "no previous declaration for `%s'");
5943 /* Optionally warn of any def with no previous declaration
5944 if the function has already been used. */
5945 else if (warn_missing_declarations
5946 && old_decl != 0 && TREE_USED (old_decl)
5947 && old_decl == IDENTIFIER_IMPLICIT_DECL (DECL_NAME (decl1)))
5948 warning_with_decl (decl1,
5949 "`%s' was used with no declaration before its definition");
5951 /* This is a definition, not a reference.
5952 So normally clear DECL_EXTERNAL.
5953 However, `extern inline' acts like a declaration
5954 except for defining how to inline. So set DECL_EXTERNAL in that case. */
5955 DECL_EXTERNAL (decl1) = current_extern_inline;
5957 #ifdef SET_DEFAULT_DECL_ATTRIBUTES
5958 SET_DEFAULT_DECL_ATTRIBUTES (decl1, attributes);
5959 #endif
5961 /* This function exists in static storage.
5962 (This does not mean `static' in the C sense!) */
5963 TREE_STATIC (decl1) = 1;
5965 /* A nested function is not global. */
5966 if (current_function_decl != 0)
5967 TREE_PUBLIC (decl1) = 0;
5969 /* Warn for unlikely, improbable, or stupid declarations of `main'. */
5970 if (warn_main > 0
5971 && strcmp ("main", IDENTIFIER_POINTER (DECL_NAME (decl1))) == 0)
5973 tree args;
5974 int argct = 0;
5976 if (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (decl1)))
5977 != integer_type_node)
5978 pedwarn_with_decl (decl1, "return type of `%s' is not `int'");
5980 for (args = TYPE_ARG_TYPES (TREE_TYPE (decl1)); args;
5981 args = TREE_CHAIN (args))
5983 tree type = args ? TREE_VALUE (args) : 0;
5985 if (type == void_type_node)
5986 break;
5988 ++argct;
5989 switch (argct)
5991 case 1:
5992 if (TYPE_MAIN_VARIANT (type) != integer_type_node)
5993 pedwarn_with_decl (decl1,
5994 "first argument of `%s' should be `int'");
5995 break;
5997 case 2:
5998 if (TREE_CODE (type) != POINTER_TYPE
5999 || TREE_CODE (TREE_TYPE (type)) != POINTER_TYPE
6000 || (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (type)))
6001 != char_type_node))
6002 pedwarn_with_decl (decl1,
6003 "second argument of `%s' should be `char **'");
6004 break;
6006 case 3:
6007 if (TREE_CODE (type) != POINTER_TYPE
6008 || TREE_CODE (TREE_TYPE (type)) != POINTER_TYPE
6009 || (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (type)))
6010 != char_type_node))
6011 pedwarn_with_decl (decl1,
6012 "third argument of `%s' should probably be `char **'");
6013 break;
6017 /* It is intentional that this message does not mention the third
6018 argument, which is warned for only pedantically, because it's
6019 blessed by mention in an appendix of the standard. */
6020 if (argct > 0 && (argct < 2 || argct > 3))
6021 pedwarn_with_decl (decl1, "`%s' takes only zero or two arguments");
6023 if (argct == 3 && pedantic)
6024 pedwarn_with_decl (decl1, "third argument of `%s' is deprecated");
6026 if (! TREE_PUBLIC (decl1))
6027 pedwarn_with_decl (decl1, "`%s' is normally a non-static function");
6030 /* Record the decl so that the function name is defined.
6031 If we already have a decl for this name, and it is a FUNCTION_DECL,
6032 use the old decl. */
6034 current_function_decl = pushdecl (decl1);
6036 pushlevel (0);
6037 declare_parm_level (1);
6038 current_binding_level->subblocks_tag_transparent = 1;
6040 make_function_rtl (current_function_decl);
6042 restype = TREE_TYPE (TREE_TYPE (current_function_decl));
6043 /* Promote the value to int before returning it. */
6044 if (C_PROMOTING_INTEGER_TYPE_P (restype))
6046 /* It retains unsignedness if traditional
6047 or if not really getting wider. */
6048 if (TREE_UNSIGNED (restype)
6049 && (flag_traditional
6050 || (TYPE_PRECISION (restype)
6051 == TYPE_PRECISION (integer_type_node))))
6052 restype = unsigned_type_node;
6053 else
6054 restype = integer_type_node;
6056 DECL_RESULT (current_function_decl)
6057 = build_decl (RESULT_DECL, NULL_TREE, restype);
6059 if (!nested)
6060 /* Allocate further tree nodes temporarily during compilation
6061 of this function only. */
6062 temporary_allocation ();
6064 /* If this fcn was already referenced via a block-scope `extern' decl
6065 (or an implicit decl), propagate certain information about the usage. */
6066 if (TREE_ADDRESSABLE (DECL_ASSEMBLER_NAME (current_function_decl)))
6067 TREE_ADDRESSABLE (current_function_decl) = 1;
6069 immediate_size_expand = old_immediate_size_expand;
6071 return 1;
6074 /* Record that this function is going to be a varargs function.
6075 This is called before store_parm_decls, which is too early
6076 to call mark_varargs directly. */
6078 void
6079 c_mark_varargs ()
6081 c_function_varargs = 1;
6084 /* Store the parameter declarations into the current function declaration.
6085 This is called after parsing the parameter declarations, before
6086 digesting the body of the function.
6088 For an old-style definition, modify the function's type
6089 to specify at least the number of arguments. */
6091 void
6092 store_parm_decls ()
6094 register tree fndecl = current_function_decl;
6095 register tree parm;
6097 /* This is either a chain of PARM_DECLs (if a prototype was used)
6098 or a list of IDENTIFIER_NODEs (for an old-fashioned C definition). */
6099 tree specparms = current_function_parms;
6101 /* This is a list of types declared among parms in a prototype. */
6102 tree parmtags = current_function_parm_tags;
6104 /* This is a chain of PARM_DECLs from old-style parm declarations. */
6105 register tree parmdecls = getdecls ();
6107 /* This is a chain of any other decls that came in among the parm
6108 declarations. If a parm is declared with enum {foo, bar} x;
6109 then CONST_DECLs for foo and bar are put here. */
6110 tree nonparms = 0;
6112 /* Nonzero if this definition is written with a prototype. */
6113 int prototype = 0;
6115 if (specparms != 0 && TREE_CODE (specparms) != TREE_LIST)
6117 /* This case is when the function was defined with an ANSI prototype.
6118 The parms already have decls, so we need not do anything here
6119 except record them as in effect
6120 and complain if any redundant old-style parm decls were written. */
6122 register tree next;
6123 tree others = 0;
6125 prototype = 1;
6127 if (parmdecls != 0)
6129 tree decl, link;
6131 error_with_decl (fndecl,
6132 "parm types given both in parmlist and separately");
6133 /* Get rid of the erroneous decls; don't keep them on
6134 the list of parms, since they might not be PARM_DECLs. */
6135 for (decl = current_binding_level->names;
6136 decl; decl = TREE_CHAIN (decl))
6137 if (DECL_NAME (decl))
6138 IDENTIFIER_LOCAL_VALUE (DECL_NAME (decl)) = 0;
6139 for (link = current_binding_level->shadowed;
6140 link; link = TREE_CHAIN (link))
6141 IDENTIFIER_LOCAL_VALUE (TREE_PURPOSE (link)) = TREE_VALUE (link);
6142 current_binding_level->names = 0;
6143 current_binding_level->shadowed = 0;
6146 specparms = nreverse (specparms);
6147 for (parm = specparms; parm; parm = next)
6149 next = TREE_CHAIN (parm);
6150 if (TREE_CODE (parm) == PARM_DECL)
6152 if (DECL_NAME (parm) == 0)
6153 error_with_decl (parm, "parameter name omitted");
6154 else if (TYPE_MAIN_VARIANT (TREE_TYPE (parm)) == void_type_node)
6156 error_with_decl (parm, "parameter `%s' declared void");
6157 /* Change the type to error_mark_node so this parameter
6158 will be ignored by assign_parms. */
6159 TREE_TYPE (parm) = error_mark_node;
6161 pushdecl (parm);
6163 else
6165 /* If we find an enum constant or a type tag,
6166 put it aside for the moment. */
6167 TREE_CHAIN (parm) = 0;
6168 others = chainon (others, parm);
6172 /* Get the decls in their original chain order
6173 and record in the function. */
6174 DECL_ARGUMENTS (fndecl) = getdecls ();
6176 #if 0
6177 /* If this function takes a variable number of arguments,
6178 add a phony parameter to the end of the parm list,
6179 to represent the position of the first unnamed argument. */
6180 if (TREE_VALUE (tree_last (TYPE_ARG_TYPES (TREE_TYPE (fndecl))))
6181 != void_type_node)
6183 tree dummy = build_decl (PARM_DECL, NULL_TREE, void_type_node);
6184 /* Let's hope the address of the unnamed parm
6185 won't depend on its type. */
6186 TREE_TYPE (dummy) = integer_type_node;
6187 DECL_ARG_TYPE (dummy) = integer_type_node;
6188 DECL_ARGUMENTS (fndecl)
6189 = chainon (DECL_ARGUMENTS (fndecl), dummy);
6191 #endif
6193 /* Now pushdecl the enum constants. */
6194 for (parm = others; parm; parm = next)
6196 next = TREE_CHAIN (parm);
6197 if (DECL_NAME (parm) == 0)
6199 else if (TYPE_MAIN_VARIANT (TREE_TYPE (parm)) == void_type_node)
6201 else if (TREE_CODE (parm) != PARM_DECL)
6202 pushdecl (parm);
6205 storetags (chainon (parmtags, gettags ()));
6207 else
6209 /* SPECPARMS is an identifier list--a chain of TREE_LIST nodes
6210 each with a parm name as the TREE_VALUE.
6212 PARMDECLS is a chain of declarations for parameters.
6213 Warning! It can also contain CONST_DECLs which are not parameters
6214 but are names of enumerators of any enum types
6215 declared among the parameters.
6217 First match each formal parameter name with its declaration.
6218 Associate decls with the names and store the decls
6219 into the TREE_PURPOSE slots. */
6221 for (parm = parmdecls; parm; parm = TREE_CHAIN (parm))
6222 DECL_RESULT (parm) = 0;
6224 for (parm = specparms; parm; parm = TREE_CHAIN (parm))
6226 register tree tail, found = NULL;
6228 if (TREE_VALUE (parm) == 0)
6230 error_with_decl (fndecl, "parameter name missing from parameter list");
6231 TREE_PURPOSE (parm) = 0;
6232 continue;
6235 /* See if any of the parmdecls specifies this parm by name.
6236 Ignore any enumerator decls. */
6237 for (tail = parmdecls; tail; tail = TREE_CHAIN (tail))
6238 if (DECL_NAME (tail) == TREE_VALUE (parm)
6239 && TREE_CODE (tail) == PARM_DECL)
6241 found = tail;
6242 break;
6245 /* If declaration already marked, we have a duplicate name.
6246 Complain, and don't use this decl twice. */
6247 if (found && DECL_RESULT (found) != 0)
6249 error_with_decl (found, "multiple parameters named `%s'");
6250 found = 0;
6253 /* If the declaration says "void", complain and ignore it. */
6254 if (found && TYPE_MAIN_VARIANT (TREE_TYPE (found)) == void_type_node)
6256 error_with_decl (found, "parameter `%s' declared void");
6257 TREE_TYPE (found) = integer_type_node;
6258 DECL_ARG_TYPE (found) = integer_type_node;
6259 layout_decl (found, 0);
6262 /* Traditionally, a parm declared float is actually a double. */
6263 if (found && flag_traditional
6264 && TYPE_MAIN_VARIANT (TREE_TYPE (found)) == float_type_node)
6266 TREE_TYPE (found) = double_type_node;
6267 DECL_ARG_TYPE (found) = double_type_node;
6268 layout_decl (found, 0);
6271 /* If no declaration found, default to int. */
6272 if (!found)
6274 found = build_decl (PARM_DECL, TREE_VALUE (parm),
6275 integer_type_node);
6276 DECL_ARG_TYPE (found) = TREE_TYPE (found);
6277 DECL_SOURCE_LINE (found) = DECL_SOURCE_LINE (fndecl);
6278 DECL_SOURCE_FILE (found) = DECL_SOURCE_FILE (fndecl);
6279 if (extra_warnings)
6280 warning_with_decl (found, "type of `%s' defaults to `int'");
6281 pushdecl (found);
6284 TREE_PURPOSE (parm) = found;
6286 /* Mark this decl as "already found" -- see test, above.
6287 It is safe to use DECL_RESULT for this
6288 since it is not used in PARM_DECLs or CONST_DECLs. */
6289 DECL_RESULT (found) = error_mark_node;
6292 /* Put anything which is on the parmdecls chain and which is
6293 not a PARM_DECL onto the list NONPARMS. (The types of
6294 non-parm things which might appear on the list include
6295 enumerators and NULL-named TYPE_DECL nodes.) Complain about
6296 any actual PARM_DECLs not matched with any names. */
6298 nonparms = 0;
6299 for (parm = parmdecls; parm; )
6301 tree next = TREE_CHAIN (parm);
6302 TREE_CHAIN (parm) = 0;
6304 if (TREE_CODE (parm) != PARM_DECL)
6305 nonparms = chainon (nonparms, parm);
6306 else
6308 /* Complain about args with incomplete types. */
6309 if (TYPE_SIZE (TREE_TYPE (parm)) == 0)
6311 error_with_decl (parm, "parameter `%s' has incomplete type");
6312 TREE_TYPE (parm) = error_mark_node;
6315 if (DECL_RESULT (parm) == 0)
6317 error_with_decl (parm,
6318 "declaration for parameter `%s' but no such parameter");
6319 /* Pretend the parameter was not missing.
6320 This gets us to a standard state and minimizes
6321 further error messages. */
6322 specparms
6323 = chainon (specparms,
6324 tree_cons (parm, NULL_TREE, NULL_TREE));
6328 parm = next;
6331 /* Chain the declarations together in the order of the list of names. */
6332 /* Store that chain in the function decl, replacing the list of names. */
6333 parm = specparms;
6334 DECL_ARGUMENTS (fndecl) = 0;
6336 register tree last;
6337 for (last = 0; parm; parm = TREE_CHAIN (parm))
6338 if (TREE_PURPOSE (parm))
6340 if (last == 0)
6341 DECL_ARGUMENTS (fndecl) = TREE_PURPOSE (parm);
6342 else
6343 TREE_CHAIN (last) = TREE_PURPOSE (parm);
6344 last = TREE_PURPOSE (parm);
6345 TREE_CHAIN (last) = 0;
6349 /* If there was a previous prototype,
6350 set the DECL_ARG_TYPE of each argument according to
6351 the type previously specified, and report any mismatches. */
6353 if (TYPE_ARG_TYPES (TREE_TYPE (fndecl)))
6355 register tree type;
6356 for (parm = DECL_ARGUMENTS (fndecl),
6357 type = TYPE_ARG_TYPES (TREE_TYPE (fndecl));
6358 parm || (type && (TYPE_MAIN_VARIANT (TREE_VALUE (type))
6359 != void_type_node));
6360 parm = TREE_CHAIN (parm), type = TREE_CHAIN (type))
6362 if (parm == 0 || type == 0
6363 || TYPE_MAIN_VARIANT (TREE_VALUE (type)) == void_type_node)
6365 error ("number of arguments doesn't match prototype");
6366 error_with_file_and_line (current_function_prototype_file,
6367 current_function_prototype_line,
6368 "prototype declaration");
6369 break;
6371 /* Type for passing arg must be consistent
6372 with that declared for the arg. */
6373 if (! comptypes (DECL_ARG_TYPE (parm), TREE_VALUE (type)))
6375 if (TYPE_MAIN_VARIANT (TREE_TYPE (parm))
6376 == TYPE_MAIN_VARIANT (TREE_VALUE (type)))
6378 /* Adjust argument to match prototype. E.g. a previous
6379 `int foo(float);' prototype causes
6380 `int foo(x) float x; {...}' to be treated like
6381 `int foo(float x) {...}'. This is particularly
6382 useful for argument types like uid_t. */
6383 DECL_ARG_TYPE (parm) = TREE_TYPE (parm);
6385 if (PROMOTE_PROTOTYPES
6386 && (TREE_CODE (TREE_TYPE (parm)) == INTEGER_TYPE
6387 || TREE_CODE (TREE_TYPE (parm)) == ENUMERAL_TYPE)
6388 && TYPE_PRECISION (TREE_TYPE (parm))
6389 < TYPE_PRECISION (integer_type_node))
6390 DECL_ARG_TYPE (parm) = integer_type_node;
6392 if (pedantic)
6394 pedwarn ("promoted argument `%s' doesn't match prototype",
6395 IDENTIFIER_POINTER (DECL_NAME (parm)));
6396 warning_with_file_and_line
6397 (current_function_prototype_file,
6398 current_function_prototype_line,
6399 "prototype declaration");
6402 /* If -traditional, allow `int' argument to match
6403 `unsigned' prototype. */
6404 else if (! (flag_traditional
6405 && TYPE_MAIN_VARIANT (TREE_TYPE (parm)) == integer_type_node
6406 && TYPE_MAIN_VARIANT (TREE_VALUE (type)) == unsigned_type_node))
6408 error ("argument `%s' doesn't match prototype",
6409 IDENTIFIER_POINTER (DECL_NAME (parm)));
6410 error_with_file_and_line (current_function_prototype_file,
6411 current_function_prototype_line,
6412 "prototype declaration");
6416 TYPE_ACTUAL_ARG_TYPES (TREE_TYPE (fndecl)) = 0;
6419 /* Otherwise, create a prototype that would match. */
6421 else
6423 tree actual = 0, last = 0, type;
6425 for (parm = DECL_ARGUMENTS (fndecl); parm; parm = TREE_CHAIN (parm))
6427 type = perm_tree_cons (NULL_TREE, DECL_ARG_TYPE (parm),
6428 NULL_TREE);
6429 if (last)
6430 TREE_CHAIN (last) = type;
6431 else
6432 actual = type;
6433 last = type;
6435 type = perm_tree_cons (NULL_TREE, void_type_node, NULL_TREE);
6436 if (last)
6437 TREE_CHAIN (last) = type;
6438 else
6439 actual = type;
6441 /* We are going to assign a new value for the TYPE_ACTUAL_ARG_TYPES
6442 of the type of this function, but we need to avoid having this
6443 affect the types of other similarly-typed functions, so we must
6444 first force the generation of an identical (but separate) type
6445 node for the relevant function type. The new node we create
6446 will be a variant of the main variant of the original function
6447 type. */
6449 TREE_TYPE (fndecl) = build_type_copy (TREE_TYPE (fndecl));
6451 TYPE_ACTUAL_ARG_TYPES (TREE_TYPE (fndecl)) = actual;
6454 /* Now store the final chain of decls for the arguments
6455 as the decl-chain of the current lexical scope.
6456 Put the enumerators in as well, at the front so that
6457 DECL_ARGUMENTS is not modified. */
6459 storedecls (chainon (nonparms, DECL_ARGUMENTS (fndecl)));
6462 /* Make sure the binding level for the top of the function body
6463 gets a BLOCK if there are any in the function.
6464 Otherwise, the dbx output is wrong. */
6466 keep_next_if_subblocks = 1;
6468 /* ??? This might be an improvement,
6469 but needs to be thought about some more. */
6470 #if 0
6471 keep_next_level_flag = 1;
6472 #endif
6474 /* Write a record describing this function definition to the prototypes
6475 file (if requested). */
6477 gen_aux_info_record (fndecl, 1, 0, prototype);
6479 /* Initialize the RTL code for the function. */
6481 init_function_start (fndecl, input_filename, lineno);
6483 /* If this is a varargs function, inform function.c. */
6485 if (c_function_varargs)
6486 mark_varargs ();
6488 /* Declare __FUNCTION__ and __PRETTY_FUNCTION__ for this function. */
6490 declare_function_name ();
6492 /* Set up parameters and prepare for return, for the function. */
6494 expand_function_start (fndecl, 0);
6496 /* If this function is `main', emit a call to `__main'
6497 to run global initializers, etc. */
6498 if (DECL_NAME (fndecl)
6499 && strcmp (IDENTIFIER_POINTER (DECL_NAME (fndecl)), "main") == 0
6500 && DECL_CONTEXT (fndecl) == NULL_TREE)
6501 expand_main_function ();
6504 /* SPECPARMS is an identifier list--a chain of TREE_LIST nodes
6505 each with a parm name as the TREE_VALUE. A null pointer as TREE_VALUE
6506 stands for an ellipsis in the identifier list.
6508 PARMLIST is the data returned by get_parm_info for the
6509 parmlist that follows the semicolon.
6511 We return a value of the same sort that get_parm_info returns,
6512 except that it describes the combination of identifiers and parmlist. */
6514 tree
6515 combine_parm_decls (specparms, parmlist, void_at_end)
6516 tree specparms, parmlist;
6517 int void_at_end;
6519 register tree fndecl = current_function_decl;
6520 register tree parm;
6522 tree parmdecls = TREE_PURPOSE (parmlist);
6524 /* This is a chain of any other decls that came in among the parm
6525 declarations. They were separated already by get_parm_info,
6526 so we just need to keep them separate. */
6527 tree nonparms = TREE_VALUE (parmlist);
6529 tree types = 0;
6531 for (parm = parmdecls; parm; parm = TREE_CHAIN (parm))
6532 DECL_RESULT (parm) = 0;
6534 for (parm = specparms; parm; parm = TREE_CHAIN (parm))
6536 register tree tail, found = NULL;
6538 /* See if any of the parmdecls specifies this parm by name. */
6539 for (tail = parmdecls; tail; tail = TREE_CHAIN (tail))
6540 if (DECL_NAME (tail) == TREE_VALUE (parm))
6542 found = tail;
6543 break;
6546 /* If declaration already marked, we have a duplicate name.
6547 Complain, and don't use this decl twice. */
6548 if (found && DECL_RESULT (found) != 0)
6550 error_with_decl (found, "multiple parameters named `%s'");
6551 found = 0;
6554 /* If the declaration says "void", complain and ignore it. */
6555 if (found && TYPE_MAIN_VARIANT (TREE_TYPE (found)) == void_type_node)
6557 error_with_decl (found, "parameter `%s' declared void");
6558 TREE_TYPE (found) = integer_type_node;
6559 DECL_ARG_TYPE (found) = integer_type_node;
6560 layout_decl (found, 0);
6563 /* Traditionally, a parm declared float is actually a double. */
6564 if (found && flag_traditional
6565 && TYPE_MAIN_VARIANT (TREE_TYPE (found)) == float_type_node)
6567 TREE_TYPE (found) = double_type_node;
6568 DECL_ARG_TYPE (found) = double_type_node;
6569 layout_decl (found, 0);
6572 /* If no declaration found, default to int. */
6573 if (!found)
6575 found = build_decl (PARM_DECL, TREE_VALUE (parm),
6576 integer_type_node);
6577 DECL_ARG_TYPE (found) = TREE_TYPE (found);
6578 DECL_SOURCE_LINE (found) = DECL_SOURCE_LINE (fndecl);
6579 DECL_SOURCE_FILE (found) = DECL_SOURCE_FILE (fndecl);
6580 error_with_decl (found, "type of parameter `%s' is not declared");
6581 pushdecl (found);
6584 TREE_PURPOSE (parm) = found;
6586 /* Mark this decl as "already found" -- see test, above.
6587 It is safe to use DECL_RESULT for this
6588 since it is not used in PARM_DECLs or CONST_DECLs. */
6589 DECL_RESULT (found) = error_mark_node;
6592 /* Complain about any actual PARM_DECLs not matched with any names. */
6594 for (parm = parmdecls; parm; )
6596 tree next = TREE_CHAIN (parm);
6597 TREE_CHAIN (parm) = 0;
6599 /* Complain about args with incomplete types. */
6600 if (TYPE_SIZE (TREE_TYPE (parm)) == 0)
6602 error_with_decl (parm, "parameter `%s' has incomplete type");
6603 TREE_TYPE (parm) = error_mark_node;
6606 if (DECL_RESULT (parm) == 0)
6608 error_with_decl (parm,
6609 "declaration for parameter `%s' but no such parameter");
6610 /* Pretend the parameter was not missing.
6611 This gets us to a standard state and minimizes
6612 further error messages. */
6613 specparms
6614 = chainon (specparms,
6615 tree_cons (parm, NULL_TREE, NULL_TREE));
6618 parm = next;
6621 /* Chain the declarations together in the order of the list of names.
6622 At the same time, build up a list of their types, in reverse order. */
6624 parm = specparms;
6625 parmdecls = 0;
6627 register tree last;
6628 for (last = 0; parm; parm = TREE_CHAIN (parm))
6629 if (TREE_PURPOSE (parm))
6631 if (last == 0)
6632 parmdecls = TREE_PURPOSE (parm);
6633 else
6634 TREE_CHAIN (last) = TREE_PURPOSE (parm);
6635 last = TREE_PURPOSE (parm);
6636 TREE_CHAIN (last) = 0;
6638 types = saveable_tree_cons (NULL_TREE, TREE_TYPE (parm), types);
6642 if (void_at_end)
6643 return saveable_tree_cons (parmdecls, nonparms,
6644 nreverse (saveable_tree_cons (NULL_TREE,
6645 void_type_node,
6646 types)));
6648 return saveable_tree_cons (parmdecls, nonparms, nreverse (types));
6651 /* Finish up a function declaration and compile that function
6652 all the way to assembler language output. The free the storage
6653 for the function definition.
6655 This is called after parsing the body of the function definition.
6657 NESTED is nonzero if the function being finished is nested in another. */
6659 void
6660 finish_function (nested)
6661 int nested;
6663 register tree fndecl = current_function_decl;
6665 /* TREE_READONLY (fndecl) = 1;
6666 This caused &foo to be of type ptr-to-const-function
6667 which then got a warning when stored in a ptr-to-function variable. */
6669 poplevel (1, 0, 1);
6670 BLOCK_SUPERCONTEXT (DECL_INITIAL (fndecl)) = fndecl;
6672 /* Must mark the RESULT_DECL as being in this function. */
6674 DECL_CONTEXT (DECL_RESULT (fndecl)) = fndecl;
6676 /* Obey `register' declarations if `setjmp' is called in this fn. */
6677 if (flag_traditional && current_function_calls_setjmp)
6679 setjmp_protect (DECL_INITIAL (fndecl));
6680 setjmp_protect_args ();
6683 if (! strcmp (IDENTIFIER_POINTER (DECL_NAME (fndecl)), "main"))
6685 if (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (fndecl)))
6686 != integer_type_node)
6688 /* If warn_main is 1 (-Wmain) or 2 (-Wall), we have already warned.
6689 If warn_main is -1 (-Wno-main) we don't want to be warned. */
6690 if (! warn_main)
6691 pedwarn_with_decl (fndecl, "return type of `%s' is not `int'");
6693 else
6695 #ifdef DEFAULT_MAIN_RETURN
6696 /* Make it so that `main' always returns success by default. */
6697 DEFAULT_MAIN_RETURN;
6698 #endif
6702 /* Generate rtl for function exit. */
6703 expand_function_end (input_filename, lineno, 0);
6705 /* So we can tell if jump_optimize sets it to 1. */
6706 can_reach_end = 0;
6708 /* If this is a nested function, protect the local variables in the stack
6709 above us from being collected while we're compiling this function. */
6710 if (ggc_p && nested)
6711 ggc_push_context ();
6713 /* Run the optimizers and output the assembler code for this function. */
6714 rest_of_compilation (fndecl);
6716 /* Undo the GC context switch. */
6717 if (ggc_p && nested)
6718 ggc_pop_context ();
6720 current_function_returns_null |= can_reach_end;
6722 if (warn_missing_noreturn
6723 && !TREE_THIS_VOLATILE (fndecl)
6724 && !current_function_returns_null
6725 && !current_function_returns_value)
6726 warning ("function might be possible candidate for attribute `noreturn'");
6728 if (TREE_THIS_VOLATILE (fndecl) && current_function_returns_null)
6729 warning ("`noreturn' function does return");
6730 else if (warn_return_type && can_reach_end
6731 && TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (fndecl))) != void_type_node)
6732 /* If this function returns non-void and control can drop through,
6733 complain. */
6734 warning ("control reaches end of non-void function");
6735 /* With just -W, complain only if function returns both with
6736 and without a value. */
6737 else if (extra_warnings
6738 && current_function_returns_value && current_function_returns_null)
6739 warning ("this function may return with or without a value");
6741 /* If requested, warn about function definitions where the function will
6742 return a value (usually of some struct or union type) which itself will
6743 take up a lot of stack space. */
6745 if (warn_larger_than && !DECL_EXTERNAL (fndecl) && TREE_TYPE (fndecl))
6747 register tree ret_type = TREE_TYPE (TREE_TYPE (fndecl));
6749 if (ret_type)
6751 register tree ret_type_size = TYPE_SIZE (ret_type);
6753 if (TREE_CODE (ret_type_size) == INTEGER_CST)
6755 unsigned units
6756 = TREE_INT_CST_LOW (ret_type_size) / BITS_PER_UNIT;
6758 if (units > larger_than_size)
6759 warning_with_decl (fndecl,
6760 "size of return value of `%s' is %u bytes",
6761 units);
6766 /* Free all the tree nodes making up this function. */
6767 /* Switch back to allocating nodes permanently
6768 until we start another function. */
6769 if (! nested)
6770 permanent_allocation (1);
6772 if (DECL_SAVED_INSNS (fndecl) == 0 && ! nested)
6774 /* Stop pointing to the local nodes about to be freed. */
6775 /* But DECL_INITIAL must remain nonzero so we know this
6776 was an actual function definition. */
6777 /* For a nested function, this is done in pop_c_function_context. */
6778 /* If rest_of_compilation set this to 0, leave it 0. */
6779 if (DECL_INITIAL (fndecl) != 0)
6780 DECL_INITIAL (fndecl) = error_mark_node;
6781 DECL_ARGUMENTS (fndecl) = 0;
6784 if (DECL_STATIC_CONSTRUCTOR (fndecl))
6786 #ifndef ASM_OUTPUT_CONSTRUCTOR
6787 if (! flag_gnu_linker)
6788 static_ctors = perm_tree_cons (NULL_TREE, fndecl, static_ctors);
6789 else
6790 #endif
6791 assemble_constructor (IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (fndecl)));
6794 if (DECL_STATIC_DESTRUCTOR (fndecl))
6796 #ifndef ASM_OUTPUT_DESTRUCTOR
6797 if (! flag_gnu_linker)
6798 static_dtors = perm_tree_cons (NULL_TREE, fndecl, static_dtors);
6799 else
6800 #endif
6801 assemble_destructor (IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (fndecl)));
6804 if (! nested)
6806 /* Let the error reporting routines know that we're outside a
6807 function. For a nested function, this value is used in
6808 pop_c_function_context and then reset via pop_function_context. */
6809 current_function_decl = NULL;
6813 /* Save and restore the variables in this file and elsewhere
6814 that keep track of the progress of compilation of the current function.
6815 Used for nested functions. */
6817 struct language_function
6819 tree named_labels;
6820 tree shadowed_labels;
6821 int returns_value;
6822 int returns_null;
6823 int warn_about_return_type;
6824 int extern_inline;
6825 struct binding_level *binding_level;
6828 /* Save and reinitialize the variables
6829 used during compilation of a C function. */
6831 void
6832 push_c_function_context (f)
6833 struct function *f;
6835 struct language_function *p;
6836 p = (struct language_function *) xmalloc (sizeof (struct language_function));
6837 f->language = p;
6839 p->named_labels = named_labels;
6840 p->shadowed_labels = shadowed_labels;
6841 p->returns_value = current_function_returns_value;
6842 p->returns_null = current_function_returns_null;
6843 p->warn_about_return_type = warn_about_return_type;
6844 p->extern_inline = current_extern_inline;
6845 p->binding_level = current_binding_level;
6848 /* Restore the variables used during compilation of a C function. */
6850 void
6851 pop_c_function_context (f)
6852 struct function *f;
6854 struct language_function *p = f->language;
6855 tree link;
6857 /* Bring back all the labels that were shadowed. */
6858 for (link = shadowed_labels; link; link = TREE_CHAIN (link))
6859 if (DECL_NAME (TREE_VALUE (link)) != 0)
6860 IDENTIFIER_LABEL_VALUE (DECL_NAME (TREE_VALUE (link)))
6861 = TREE_VALUE (link);
6863 if (DECL_SAVED_INSNS (current_function_decl) == 0)
6865 /* Stop pointing to the local nodes about to be freed. */
6866 /* But DECL_INITIAL must remain nonzero so we know this
6867 was an actual function definition. */
6868 DECL_INITIAL (current_function_decl) = error_mark_node;
6869 DECL_ARGUMENTS (current_function_decl) = 0;
6872 named_labels = p->named_labels;
6873 shadowed_labels = p->shadowed_labels;
6874 current_function_returns_value = p->returns_value;
6875 current_function_returns_null = p->returns_null;
6876 warn_about_return_type = p->warn_about_return_type;
6877 current_extern_inline = p->extern_inline;
6878 current_binding_level = p->binding_level;
6880 free (p);
6881 f->language = 0;
6884 /* Mark the language specific parts of F for GC. */
6885 void
6886 mark_c_function_context (f)
6887 struct function *f;
6889 struct language_function *p = f->language;
6891 if (p == 0)
6892 return;
6894 ggc_mark_tree (p->shadowed_labels);
6895 ggc_mark_tree (p->named_labels);
6896 mark_binding_level (&p->binding_level);
6899 /* integrate_decl_tree calls this function, but since we don't use the
6900 DECL_LANG_SPECIFIC field, this is a no-op. */
6902 void
6903 copy_lang_decl (node)
6904 tree node ATTRIBUTE_UNUSED;
6908 /* Mark ARG for GC. */
6909 void
6910 lang_mark_false_label_stack (arg)
6911 struct label_node *arg;
6913 /* C doesn't use false_label_stack. It better be NULL. */
6914 if (arg != NULL)
6915 abort();
6918 /* Mark the language specific bits in T for GC. */
6919 void
6920 lang_mark_tree (t)
6921 tree t;
6923 if (TREE_CODE (t) == IDENTIFIER_NODE)
6925 struct lang_identifier *i = (struct lang_identifier *) t;
6926 ggc_mark_tree (i->global_value);
6927 ggc_mark_tree (i->local_value);
6928 ggc_mark_tree (i->label_value);
6929 ggc_mark_tree (i->implicit_decl);
6930 ggc_mark_tree (i->error_locus);
6931 ggc_mark_tree (i->limbo_value);
6933 else if (TYPE_P (t) && TYPE_LANG_SPECIFIC (t))
6934 ggc_mark (TYPE_LANG_SPECIFIC (t));