oops - omitted from previous delta fixing UNIQUE_SECTION
[official-gcc.git] / gcc / c-decl.c
blobed15761ab208fe5d88998b23ed1b48fc1298d342
1 /* Process declarations and variables for C compiler.
2 Copyright (C) 1988, 92-99, 2000 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 PARAMS ((void));
281 static void mark_binding_level PARAMS ((void *));
282 static void clear_limbo_values PARAMS ((tree));
283 static int duplicate_decls PARAMS ((tree, tree, int));
284 static int redeclaration_error_message PARAMS ((tree, tree));
285 static void storedecls PARAMS ((tree));
286 static void storetags PARAMS ((tree));
287 static tree lookup_tag PARAMS ((enum tree_code, tree,
288 struct binding_level *, int));
289 static tree lookup_tag_reverse PARAMS ((tree));
290 static tree grokdeclarator PARAMS ((tree, tree, enum decl_context,
291 int));
292 static tree grokparms PARAMS ((tree, int));
293 static void layout_array_type PARAMS ((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 C99 dialect of C. */
329 int flag_isoc99 = 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:1999 ISO C 99
512 -std=c89 same as -std=iso9899:1990
513 -std=c99 same as -std=iso9899:1999
514 -std=gnu89 default, iso9899:1990 + gnu extensions
515 -std=gnu99 iso9899:1999 + 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_isoc99 = 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, "iso9899:1999")
536 || !strcmp (argstart, "c9x")
537 || !strcmp (argstart, "c99"))
539 flag_traditional = 0;
540 flag_writable_strings = 0;
541 flag_no_asm = 1;
542 flag_no_nonansi_builtin = 1;
543 flag_isoc99 = 1;
545 else if (!strcmp (argstart, "gnu89"))
547 flag_traditional = 0;
548 flag_writable_strings = 0;
549 flag_no_asm = 0;
550 flag_no_nonansi_builtin = 0;
551 flag_isoc99 = 0;
553 else if (!strcmp (argstart, "gnu9x") || !strcmp (argstart, "gnu99"))
555 flag_traditional = 0;
556 flag_writable_strings = 0;
557 flag_no_asm = 0;
558 flag_no_nonansi_builtin = 0;
559 flag_isoc99 = 1;
561 else
562 error ("unknown C standard `%s'", argstart);
564 else if (!strcmp (p, "-fdollars-in-identifiers"))
565 dollars_in_ident = 1;
566 else if (!strcmp (p, "-fno-dollars-in-identifiers"))
567 dollars_in_ident = 0;
568 else if (!strcmp (p, "-fsigned-char"))
569 flag_signed_char = 1;
570 else if (!strcmp (p, "-funsigned-char"))
571 flag_signed_char = 0;
572 else if (!strcmp (p, "-fno-signed-char"))
573 flag_signed_char = 0;
574 else if (!strcmp (p, "-fno-unsigned-char"))
575 flag_signed_char = 1;
576 else if (!strcmp (p, "-fsigned-bitfields")
577 || !strcmp (p, "-fno-unsigned-bitfields"))
579 flag_signed_bitfields = 1;
580 explicit_flag_signed_bitfields = 1;
582 else if (!strcmp (p, "-funsigned-bitfields")
583 || !strcmp (p, "-fno-signed-bitfields"))
585 flag_signed_bitfields = 0;
586 explicit_flag_signed_bitfields = 1;
588 else if (!strcmp (p, "-fshort-enums"))
589 flag_short_enums = 1;
590 else if (!strcmp (p, "-fno-short-enums"))
591 flag_short_enums = 0;
592 else if (!strcmp (p, "-fshort-wchar"))
593 flag_short_wchar = 1;
594 else if (!strcmp (p, "-fno-short-wchar"))
595 flag_short_wchar = 0;
596 else if (!strcmp (p, "-fcond-mismatch"))
597 flag_cond_mismatch = 1;
598 else if (!strcmp (p, "-fno-cond-mismatch"))
599 flag_cond_mismatch = 0;
600 else if (!strcmp (p, "-fshort-double"))
601 flag_short_double = 1;
602 else if (!strcmp (p, "-fno-short-double"))
603 flag_short_double = 0;
604 else if (!strcmp (p, "-fasm"))
605 flag_no_asm = 0;
606 else if (!strcmp (p, "-fno-asm"))
607 flag_no_asm = 1;
608 else if (!strcmp (p, "-fbuiltin"))
609 flag_no_builtin = 0;
610 else if (!strcmp (p, "-fno-builtin"))
611 flag_no_builtin = 1;
612 else if (!strcmp (p, "-ansi"))
613 goto iso_1990;
614 else if (!strcmp (p, "-Werror-implicit-function-declaration"))
615 mesg_implicit_function_declaration = 2;
616 else if (!strcmp (p, "-Wimplicit-function-declaration"))
617 mesg_implicit_function_declaration = 1;
618 else if (!strcmp (p, "-Wno-implicit-function-declaration"))
619 mesg_implicit_function_declaration = 0;
620 else if (!strcmp (p, "-Wimplicit-int"))
621 warn_implicit_int = 1;
622 else if (!strcmp (p, "-Wno-implicit-int"))
623 warn_implicit_int = 0;
624 else if (!strcmp (p, "-Wimplicit"))
626 warn_implicit_int = 1;
627 if (mesg_implicit_function_declaration != 2)
628 mesg_implicit_function_declaration = 1;
630 else if (!strcmp (p, "-Wno-implicit"))
631 warn_implicit_int = 0, mesg_implicit_function_declaration = 0;
632 else if (!strcmp (p, "-Wlong-long"))
633 warn_long_long = 1;
634 else if (!strcmp (p, "-Wno-long-long"))
635 warn_long_long = 0;
636 else if (!strcmp (p, "-Wwrite-strings"))
637 flag_const_strings = 1;
638 else if (!strcmp (p, "-Wno-write-strings"))
639 flag_const_strings = 0;
640 else if (!strcmp (p, "-Wcast-qual"))
641 warn_cast_qual = 1;
642 else if (!strcmp (p, "-Wno-cast-qual"))
643 warn_cast_qual = 0;
644 else if (!strcmp (p, "-Wbad-function-cast"))
645 warn_bad_function_cast = 1;
646 else if (!strcmp (p, "-Wno-bad-function-cast"))
647 warn_bad_function_cast = 0;
648 else if (!strcmp (p, "-Wmissing-noreturn"))
649 warn_missing_noreturn = 1;
650 else if (!strcmp (p, "-Wno-missing-noreturn"))
651 warn_missing_noreturn = 0;
652 else if (!strcmp (p, "-Wpointer-arith"))
653 warn_pointer_arith = 1;
654 else if (!strcmp (p, "-Wno-pointer-arith"))
655 warn_pointer_arith = 0;
656 else if (!strcmp (p, "-Wstrict-prototypes"))
657 warn_strict_prototypes = 1;
658 else if (!strcmp (p, "-Wno-strict-prototypes"))
659 warn_strict_prototypes = 0;
660 else if (!strcmp (p, "-Wmissing-prototypes"))
661 warn_missing_prototypes = 1;
662 else if (!strcmp (p, "-Wno-missing-prototypes"))
663 warn_missing_prototypes = 0;
664 else if (!strcmp (p, "-Wmissing-declarations"))
665 warn_missing_declarations = 1;
666 else if (!strcmp (p, "-Wno-missing-declarations"))
667 warn_missing_declarations = 0;
668 else if (!strcmp (p, "-Wredundant-decls"))
669 warn_redundant_decls = 1;
670 else if (!strcmp (p, "-Wno-redundant-decls"))
671 warn_redundant_decls = 0;
672 else if (!strcmp (p, "-Wnested-externs"))
673 warn_nested_externs = 1;
674 else if (!strcmp (p, "-Wno-nested-externs"))
675 warn_nested_externs = 0;
676 else if (!strcmp (p, "-Wtraditional"))
677 warn_traditional = 1;
678 else if (!strcmp (p, "-Wno-traditional"))
679 warn_traditional = 0;
680 else if (!strncmp (p, "-Wformat=", 9))
681 warn_format = atol (p + 9);
682 else if (!strcmp (p, "-Wformat"))
683 warn_format = 1;
684 else if (!strcmp (p, "-Wno-format"))
685 warn_format = 0;
686 else if (!strcmp (p, "-Wchar-subscripts"))
687 warn_char_subscripts = 1;
688 else if (!strcmp (p, "-Wno-char-subscripts"))
689 warn_char_subscripts = 0;
690 else if (!strcmp (p, "-Wconversion"))
691 warn_conversion = 1;
692 else if (!strcmp (p, "-Wno-conversion"))
693 warn_conversion = 0;
694 else if (!strcmp (p, "-Wparentheses"))
695 warn_parentheses = 1;
696 else if (!strcmp (p, "-Wno-parentheses"))
697 warn_parentheses = 0;
698 else if (!strcmp (p, "-Wreturn-type"))
699 warn_return_type = 1;
700 else if (!strcmp (p, "-Wno-return-type"))
701 warn_return_type = 0;
702 else if (!strcmp (p, "-Wcomment"))
703 ; /* cpp handles this one. */
704 else if (!strcmp (p, "-Wno-comment"))
705 ; /* cpp handles this one. */
706 else if (!strcmp (p, "-Wcomments"))
707 ; /* cpp handles this one. */
708 else if (!strcmp (p, "-Wno-comments"))
709 ; /* cpp handles this one. */
710 else if (!strcmp (p, "-Wtrigraphs"))
711 ; /* cpp handles this one. */
712 else if (!strcmp (p, "-Wno-trigraphs"))
713 ; /* cpp handles this one. */
714 else if (!strcmp (p, "-Wundef"))
715 ; /* cpp handles this one. */
716 else if (!strcmp (p, "-Wno-undef"))
717 ; /* cpp handles this one. */
718 else if (!strcmp (p, "-Wimport"))
719 ; /* cpp handles this one. */
720 else if (!strcmp (p, "-Wno-import"))
721 ; /* cpp handles this one. */
722 else if (!strcmp (p, "-Wmissing-braces"))
723 warn_missing_braces = 1;
724 else if (!strcmp (p, "-Wno-missing-braces"))
725 warn_missing_braces = 0;
726 else if (!strcmp (p, "-Wmain"))
727 warn_main = 1;
728 else if (!strcmp (p, "-Wno-main"))
729 warn_main = -1;
730 else if (!strcmp (p, "-Wsign-compare"))
731 warn_sign_compare = 1;
732 else if (!strcmp (p, "-Wno-sign-compare"))
733 warn_sign_compare = 0;
734 else if (!strcmp (p, "-Wfloat-equal"))
735 warn_float_equal = 1;
736 else if (!strcmp (p, "-Wno-float-equal"))
737 warn_float_equal = 0;
738 else if (!strcmp (p, "-Wmultichar"))
739 warn_multichar = 1;
740 else if (!strcmp (p, "-Wno-multichar"))
741 warn_multichar = 0;
742 else if (!strcmp (p, "-Wunknown-pragmas"))
743 /* Set to greater than 1, so that even unknown pragmas in system
744 headers will be warned about. */
745 warn_unknown_pragmas = 2;
746 else if (!strcmp (p, "-Wno-unknown-pragmas"))
747 warn_unknown_pragmas = 0;
748 else if (!strcmp (p, "-Wall"))
750 /* We save the value of warn_uninitialized, since if they put
751 -Wuninitialized on the command line, we need to generate a
752 warning about not using it without also specifying -O. */
753 if (warn_uninitialized != 1)
754 warn_uninitialized = 2;
755 warn_implicit_int = 1;
756 mesg_implicit_function_declaration = 1;
757 warn_return_type = 1;
758 warn_unused = 1;
759 warn_switch = 1;
760 warn_format = 1;
761 warn_char_subscripts = 1;
762 warn_parentheses = 1;
763 warn_missing_braces = 1;
764 /* We set this to 2 here, but 1 in -Wmain, so -ffreestanding can turn
765 it off only if it's not explicit. */
766 warn_main = 2;
767 /* Only warn about unknown pragmas that are not in system headers. */
768 warn_unknown_pragmas = 1;
770 else
771 return strings_processed;
773 return 1;
776 /* Hooks for print_node. */
778 void
779 print_lang_decl (file, node, indent)
780 FILE *file ATTRIBUTE_UNUSED;
781 tree node ATTRIBUTE_UNUSED;
782 int indent ATTRIBUTE_UNUSED;
786 void
787 print_lang_type (file, node, indent)
788 FILE *file ATTRIBUTE_UNUSED;
789 tree node ATTRIBUTE_UNUSED;
790 int indent ATTRIBUTE_UNUSED;
794 void
795 print_lang_identifier (file, node, indent)
796 FILE *file;
797 tree node;
798 int indent;
800 print_node (file, "global", IDENTIFIER_GLOBAL_VALUE (node), indent + 4);
801 print_node (file, "local", IDENTIFIER_LOCAL_VALUE (node), indent + 4);
802 print_node (file, "label", IDENTIFIER_LABEL_VALUE (node), indent + 4);
803 print_node (file, "implicit", IDENTIFIER_IMPLICIT_DECL (node), indent + 4);
804 print_node (file, "error locus", IDENTIFIER_ERROR_LOCUS (node), indent + 4);
805 print_node (file, "limbo value", IDENTIFIER_LIMBO_VALUE (node), indent + 4);
808 /* Hook called at end of compilation to assume 1 elt
809 for a top-level array decl that wasn't complete before. */
811 void
812 finish_incomplete_decl (decl)
813 tree decl;
815 if (TREE_CODE (decl) == VAR_DECL)
817 tree type = TREE_TYPE (decl);
818 if (type != error_mark_node
819 && TREE_CODE (type) == ARRAY_TYPE
820 && TYPE_DOMAIN (type) == 0)
822 if (! DECL_EXTERNAL (decl))
823 warning_with_decl (decl, "array `%s' assumed to have one element");
825 complete_array_type (type, NULL_TREE, 1);
827 layout_decl (decl, 0);
832 /* Create a new `struct binding_level'. */
834 static
835 struct binding_level *
836 make_binding_level ()
838 /* NOSTRICT */
839 return (struct binding_level *) xmalloc (sizeof (struct binding_level));
842 /* Nonzero if we are currently in the global binding level. */
845 global_bindings_p ()
847 return current_binding_level == global_binding_level;
850 void
851 keep_next_level ()
853 keep_next_level_flag = 1;
856 /* Nonzero if the current level needs to have a BLOCK made. */
859 kept_level_p ()
861 return ((current_binding_level->keep_if_subblocks
862 && current_binding_level->blocks != 0)
863 || current_binding_level->keep
864 || current_binding_level->names != 0
865 || (current_binding_level->tags != 0
866 && !current_binding_level->tag_transparent));
869 /* Identify this binding level as a level of parameters.
870 DEFINITION_FLAG is 1 for a definition, 0 for a declaration.
871 But it turns out there is no way to pass the right value for
872 DEFINITION_FLAG, so we ignore it. */
874 void
875 declare_parm_level (definition_flag)
876 int definition_flag ATTRIBUTE_UNUSED;
878 current_binding_level->parm_flag = 1;
881 /* Nonzero if currently making parm declarations. */
884 in_parm_level_p ()
886 return current_binding_level->parm_flag;
889 /* Enter a new binding level.
890 If TAG_TRANSPARENT is nonzero, do so only for the name space of variables,
891 not for that of tags. */
893 void
894 pushlevel (tag_transparent)
895 int tag_transparent;
897 register struct binding_level *newlevel = NULL_BINDING_LEVEL;
899 /* If this is the top level of a function,
900 just make sure that NAMED_LABELS is 0. */
902 if (current_binding_level == global_binding_level)
904 named_labels = 0;
907 /* Reuse or create a struct for this binding level. */
909 if (free_binding_level)
911 newlevel = free_binding_level;
912 free_binding_level = free_binding_level->level_chain;
914 else
916 newlevel = make_binding_level ();
919 /* Add this level to the front of the chain (stack) of levels that
920 are active. */
922 *newlevel = clear_binding_level;
923 newlevel->tag_transparent
924 = (tag_transparent
925 || (current_binding_level
926 ? current_binding_level->subblocks_tag_transparent
927 : 0));
928 newlevel->level_chain = current_binding_level;
929 current_binding_level = newlevel;
930 newlevel->keep = keep_next_level_flag;
931 keep_next_level_flag = 0;
932 newlevel->keep_if_subblocks = keep_next_if_subblocks;
933 keep_next_if_subblocks = 0;
936 /* Clear the limbo values of all identifiers defined in BLOCK or a subblock. */
938 static void
939 clear_limbo_values (block)
940 tree block;
942 tree tem;
944 for (tem = BLOCK_VARS (block); tem; tem = TREE_CHAIN (tem))
945 if (DECL_NAME (tem) != 0)
946 IDENTIFIER_LIMBO_VALUE (DECL_NAME (tem)) = 0;
948 for (tem = BLOCK_SUBBLOCKS (block); tem; tem = TREE_CHAIN (tem))
949 clear_limbo_values (tem);
952 /* Exit a binding level.
953 Pop the level off, and restore the state of the identifier-decl mappings
954 that were in effect when this level was entered.
956 If KEEP is nonzero, this level had explicit declarations, so
957 and create a "block" (a BLOCK node) for the level
958 to record its declarations and subblocks for symbol table output.
960 If FUNCTIONBODY is nonzero, this level is the body of a function,
961 so create a block as if KEEP were set and also clear out all
962 label names.
964 If REVERSE is nonzero, reverse the order of decls before putting
965 them into the BLOCK. */
967 tree
968 poplevel (keep, reverse, functionbody)
969 int keep;
970 int reverse;
971 int functionbody;
973 register tree link;
974 /* The chain of decls was accumulated in reverse order.
975 Put it into forward order, just for cleanliness. */
976 tree decls;
977 tree tags = current_binding_level->tags;
978 tree subblocks = current_binding_level->blocks;
979 tree block = 0;
980 tree decl;
981 int block_previously_created;
983 keep |= current_binding_level->keep;
985 /* This warning is turned off because it causes warnings for
986 declarations like `extern struct foo *x'. */
987 #if 0
988 /* Warn about incomplete structure types in this level. */
989 for (link = tags; link; link = TREE_CHAIN (link))
990 if (TYPE_SIZE (TREE_VALUE (link)) == 0)
992 tree type = TREE_VALUE (link);
993 tree type_name = TYPE_NAME (type);
994 char *id = IDENTIFIER_POINTER (TREE_CODE (type_name) == IDENTIFIER_NODE
995 ? type_name
996 : DECL_NAME (type_name));
997 switch (TREE_CODE (type))
999 case RECORD_TYPE:
1000 error ("`struct %s' incomplete in scope ending here", id);
1001 break;
1002 case UNION_TYPE:
1003 error ("`union %s' incomplete in scope ending here", id);
1004 break;
1005 case ENUMERAL_TYPE:
1006 error ("`enum %s' incomplete in scope ending here", id);
1007 break;
1010 #endif /* 0 */
1012 /* Get the decls in the order they were written.
1013 Usually current_binding_level->names is in reverse order.
1014 But parameter decls were previously put in forward order. */
1016 if (reverse)
1017 current_binding_level->names
1018 = decls = nreverse (current_binding_level->names);
1019 else
1020 decls = current_binding_level->names;
1022 /* Output any nested inline functions within this block
1023 if they weren't already output. */
1025 for (decl = decls; decl; decl = TREE_CHAIN (decl))
1026 if (TREE_CODE (decl) == FUNCTION_DECL
1027 && ! TREE_ASM_WRITTEN (decl)
1028 && DECL_INITIAL (decl) != 0
1029 && TREE_ADDRESSABLE (decl))
1031 /* If this decl was copied from a file-scope decl
1032 on account of a block-scope extern decl,
1033 propagate TREE_ADDRESSABLE to the file-scope decl.
1035 DECL_ABSTRACT_ORIGIN can be set to itself if warn_return_type is
1036 true, since then the decl goes through save_for_inline_copying. */
1037 if (DECL_ABSTRACT_ORIGIN (decl) != 0
1038 && DECL_ABSTRACT_ORIGIN (decl) != decl)
1039 TREE_ADDRESSABLE (DECL_ABSTRACT_ORIGIN (decl)) = 1;
1040 else if (DECL_SAVED_INSNS (decl) != 0)
1042 push_function_context ();
1043 output_inline_function (decl);
1044 pop_function_context ();
1048 /* If there were any declarations or structure tags in that level,
1049 or if this level is a function body,
1050 create a BLOCK to record them for the life of this function. */
1052 block = 0;
1053 block_previously_created = (current_binding_level->this_block != 0);
1054 if (block_previously_created)
1055 block = current_binding_level->this_block;
1056 else if (keep || functionbody
1057 || (current_binding_level->keep_if_subblocks && subblocks != 0))
1058 block = make_node (BLOCK);
1059 if (block != 0)
1061 BLOCK_VARS (block) = decls;
1062 BLOCK_SUBBLOCKS (block) = subblocks;
1065 /* In each subblock, record that this is its superior. */
1067 for (link = subblocks; link; link = TREE_CHAIN (link))
1068 BLOCK_SUPERCONTEXT (link) = block;
1070 /* Clear out the meanings of the local variables of this level. */
1072 for (link = decls; link; link = TREE_CHAIN (link))
1074 if (DECL_NAME (link) != 0)
1076 /* If the ident. was used or addressed via a local extern decl,
1077 don't forget that fact. */
1078 if (DECL_EXTERNAL (link))
1080 if (TREE_USED (link))
1081 TREE_USED (DECL_NAME (link)) = 1;
1082 if (TREE_ADDRESSABLE (link))
1083 TREE_ADDRESSABLE (DECL_ASSEMBLER_NAME (link)) = 1;
1085 IDENTIFIER_LOCAL_VALUE (DECL_NAME (link)) = 0;
1089 /* Restore all name-meanings of the outer levels
1090 that were shadowed by this level. */
1092 for (link = current_binding_level->shadowed; link; link = TREE_CHAIN (link))
1093 IDENTIFIER_LOCAL_VALUE (TREE_PURPOSE (link)) = TREE_VALUE (link);
1095 /* If the level being exited is the top level of a function,
1096 check over all the labels, and clear out the current
1097 (function local) meanings of their names. */
1099 if (functionbody)
1101 clear_limbo_values (block);
1103 /* If this is the top level block of a function,
1104 the vars are the function's parameters.
1105 Don't leave them in the BLOCK because they are
1106 found in the FUNCTION_DECL instead. */
1108 BLOCK_VARS (block) = 0;
1110 /* Clear out the definitions of all label names,
1111 since their scopes end here,
1112 and add them to BLOCK_VARS. */
1114 for (link = named_labels; link; link = TREE_CHAIN (link))
1116 register tree label = TREE_VALUE (link);
1118 if (DECL_INITIAL (label) == 0)
1120 error_with_decl (label, "label `%s' used but not defined");
1121 /* Avoid crashing later. */
1122 define_label (input_filename, lineno,
1123 DECL_NAME (label));
1125 else if (warn_unused && !TREE_USED (label))
1126 warning_with_decl (label, "label `%s' defined but not used");
1127 IDENTIFIER_LABEL_VALUE (DECL_NAME (label)) = 0;
1129 /* Put the labels into the "variables" of the
1130 top-level block, so debugger can see them. */
1131 TREE_CHAIN (label) = BLOCK_VARS (block);
1132 BLOCK_VARS (block) = label;
1136 /* Pop the current level, and free the structure for reuse. */
1139 register struct binding_level *level = current_binding_level;
1140 current_binding_level = current_binding_level->level_chain;
1142 level->level_chain = free_binding_level;
1143 free_binding_level = level;
1146 /* Dispose of the block that we just made inside some higher level. */
1147 if (functionbody)
1148 DECL_INITIAL (current_function_decl) = block;
1149 else if (block)
1151 if (!block_previously_created)
1152 current_binding_level->blocks
1153 = chainon (current_binding_level->blocks, block);
1155 /* If we did not make a block for the level just exited,
1156 any blocks made for inner levels
1157 (since they cannot be recorded as subblocks in that level)
1158 must be carried forward so they will later become subblocks
1159 of something else. */
1160 else if (subblocks)
1161 current_binding_level->blocks
1162 = chainon (current_binding_level->blocks, subblocks);
1164 /* Set the TYPE_CONTEXTs for all of the tagged types belonging to this
1165 binding contour so that they point to the appropriate construct, i.e.
1166 either to the current FUNCTION_DECL node, or else to the BLOCK node
1167 we just constructed.
1169 Note that for tagged types whose scope is just the formal parameter
1170 list for some function type specification, we can't properly set
1171 their TYPE_CONTEXTs here, because we don't have a pointer to the
1172 appropriate FUNCTION_TYPE node readily available to us. For those
1173 cases, the TYPE_CONTEXTs of the relevant tagged type nodes get set
1174 in `grokdeclarator' as soon as we have created the FUNCTION_TYPE
1175 node which will represent the "scope" for these "parameter list local"
1176 tagged types.
1179 if (functionbody)
1180 for (link = tags; link; link = TREE_CHAIN (link))
1181 TYPE_CONTEXT (TREE_VALUE (link)) = current_function_decl;
1182 else if (block)
1183 for (link = tags; link; link = TREE_CHAIN (link))
1184 TYPE_CONTEXT (TREE_VALUE (link)) = block;
1186 if (block)
1187 TREE_USED (block) = 1;
1188 return block;
1191 /* Delete the node BLOCK from the current binding level.
1192 This is used for the block inside a stmt expr ({...})
1193 so that the block can be reinserted where appropriate. */
1195 void
1196 delete_block (block)
1197 tree block;
1199 tree t;
1200 if (current_binding_level->blocks == block)
1201 current_binding_level->blocks = TREE_CHAIN (block);
1202 for (t = current_binding_level->blocks; t;)
1204 if (TREE_CHAIN (t) == block)
1205 TREE_CHAIN (t) = TREE_CHAIN (block);
1206 else
1207 t = TREE_CHAIN (t);
1209 TREE_CHAIN (block) = NULL;
1210 /* Clear TREE_USED which is always set by poplevel.
1211 The flag is set again if insert_block is called. */
1212 TREE_USED (block) = 0;
1215 /* Insert BLOCK at the end of the list of subblocks of the
1216 current binding level. This is used when a BIND_EXPR is expanded,
1217 to handle the BLOCK node inside the BIND_EXPR. */
1219 void
1220 insert_block (block)
1221 tree block;
1223 TREE_USED (block) = 1;
1224 current_binding_level->blocks
1225 = chainon (current_binding_level->blocks, block);
1228 /* Set the BLOCK node for the innermost scope
1229 (the one we are currently in). */
1231 void
1232 set_block (block)
1233 register tree block;
1235 current_binding_level->this_block = block;
1238 void
1239 push_label_level ()
1241 register struct binding_level *newlevel;
1243 /* Reuse or create a struct for this binding level. */
1245 if (free_binding_level)
1247 newlevel = free_binding_level;
1248 free_binding_level = free_binding_level->level_chain;
1250 else
1252 newlevel = make_binding_level ();
1255 /* Add this level to the front of the chain (stack) of label levels. */
1257 newlevel->level_chain = label_level_chain;
1258 label_level_chain = newlevel;
1260 newlevel->names = named_labels;
1261 newlevel->shadowed = shadowed_labels;
1262 named_labels = 0;
1263 shadowed_labels = 0;
1266 void
1267 pop_label_level ()
1269 register struct binding_level *level = label_level_chain;
1270 tree link, prev;
1272 /* Clear out the definitions of the declared labels in this level.
1273 Leave in the list any ordinary, non-declared labels. */
1274 for (link = named_labels, prev = 0; link;)
1276 if (C_DECLARED_LABEL_FLAG (TREE_VALUE (link)))
1278 if (DECL_SOURCE_LINE (TREE_VALUE (link)) == 0)
1280 error_with_decl (TREE_VALUE (link),
1281 "label `%s' used but not defined");
1282 /* Avoid crashing later. */
1283 define_label (input_filename, lineno,
1284 DECL_NAME (TREE_VALUE (link)));
1286 else if (warn_unused && !TREE_USED (TREE_VALUE (link)))
1287 warning_with_decl (TREE_VALUE (link),
1288 "label `%s' defined but not used");
1289 IDENTIFIER_LABEL_VALUE (DECL_NAME (TREE_VALUE (link))) = 0;
1291 /* Delete this element from the list. */
1292 link = TREE_CHAIN (link);
1293 if (prev)
1294 TREE_CHAIN (prev) = link;
1295 else
1296 named_labels = link;
1298 else
1300 prev = link;
1301 link = TREE_CHAIN (link);
1305 /* Bring back all the labels that were shadowed. */
1306 for (link = shadowed_labels; link; link = TREE_CHAIN (link))
1307 if (DECL_NAME (TREE_VALUE (link)) != 0)
1308 IDENTIFIER_LABEL_VALUE (DECL_NAME (TREE_VALUE (link)))
1309 = TREE_VALUE (link);
1311 named_labels = chainon (named_labels, level->names);
1312 shadowed_labels = level->shadowed;
1314 /* Pop the current level, and free the structure for reuse. */
1315 label_level_chain = label_level_chain->level_chain;
1316 level->level_chain = free_binding_level;
1317 free_binding_level = level;
1320 /* Push a definition or a declaration of struct, union or enum tag "name".
1321 "type" should be the type node.
1322 We assume that the tag "name" is not already defined.
1324 Note that the definition may really be just a forward reference.
1325 In that case, the TYPE_SIZE will be zero. */
1327 void
1328 pushtag (name, type)
1329 tree name, type;
1331 register struct binding_level *b;
1333 /* Find the proper binding level for this type tag. */
1335 for (b = current_binding_level; b->tag_transparent; b = b->level_chain)
1336 continue;
1338 if (name)
1340 /* Record the identifier as the type's name if it has none. */
1342 if (TYPE_NAME (type) == 0)
1343 TYPE_NAME (type) = name;
1346 b->tags = tree_cons (name, type, b->tags);
1348 /* Create a fake NULL-named TYPE_DECL node whose TREE_TYPE will be the
1349 tagged type we just added to the current binding level. This fake
1350 NULL-named TYPE_DECL node helps dwarfout.c to know when it needs
1351 to output a representation of a tagged type, and it also gives
1352 us a convenient place to record the "scope start" address for the
1353 tagged type. */
1355 TYPE_STUB_DECL (type) = pushdecl (build_decl (TYPE_DECL, NULL_TREE, type));
1357 /* An approximation for now, so we can tell this is a function-scope tag.
1358 This will be updated in poplevel. */
1359 TYPE_CONTEXT (type) = DECL_CONTEXT (TYPE_STUB_DECL (type));
1362 /* Handle when a new declaration NEWDECL
1363 has the same name as an old one OLDDECL
1364 in the same binding contour.
1365 Prints an error message if appropriate.
1367 If safely possible, alter OLDDECL to look like NEWDECL, and return 1.
1368 Otherwise, return 0.
1370 When DIFFERENT_BINDING_LEVEL is true, NEWDECL is an external declaration,
1371 and OLDDECL is in an outer binding level and should thus not be changed. */
1373 static int
1374 duplicate_decls (newdecl, olddecl, different_binding_level)
1375 register tree newdecl, olddecl;
1376 int different_binding_level;
1378 int types_match = comptypes (TREE_TYPE (newdecl), TREE_TYPE (olddecl));
1379 int new_is_definition = (TREE_CODE (newdecl) == FUNCTION_DECL
1380 && DECL_INITIAL (newdecl) != 0);
1381 tree oldtype = TREE_TYPE (olddecl);
1382 tree newtype = TREE_TYPE (newdecl);
1383 int errmsg = 0;
1385 if (TREE_CODE_CLASS (TREE_CODE (olddecl)) == 'd')
1386 DECL_MACHINE_ATTRIBUTES (newdecl)
1387 = merge_machine_decl_attributes (olddecl, newdecl);
1389 if (TREE_CODE (newtype) == ERROR_MARK
1390 || TREE_CODE (oldtype) == ERROR_MARK)
1391 types_match = 0;
1393 /* New decl is completely inconsistent with the old one =>
1394 tell caller to replace the old one.
1395 This is always an error except in the case of shadowing a builtin. */
1396 if (TREE_CODE (olddecl) != TREE_CODE (newdecl))
1398 if (TREE_CODE (olddecl) == FUNCTION_DECL
1399 && (DECL_BUILT_IN (olddecl)
1400 || DECL_BUILT_IN_NONANSI (olddecl)))
1402 /* If you declare a built-in or predefined function name as static,
1403 the old definition is overridden,
1404 but optionally warn this was a bad choice of name. */
1405 if (!TREE_PUBLIC (newdecl))
1407 if (!warn_shadow)
1409 else if (DECL_BUILT_IN (olddecl))
1410 warning_with_decl (newdecl, "shadowing built-in function `%s'");
1411 else
1412 warning_with_decl (newdecl, "shadowing library function `%s'");
1414 /* Likewise, if the built-in is not ansi, then programs can
1415 override it even globally without an error. */
1416 else if (! DECL_BUILT_IN (olddecl))
1417 warning_with_decl (newdecl,
1418 "library function `%s' declared as non-function");
1420 else if (DECL_BUILT_IN_NONANSI (olddecl))
1421 warning_with_decl (newdecl,
1422 "built-in function `%s' declared as non-function");
1423 else
1424 warning_with_decl (newdecl,
1425 "built-in function `%s' declared as non-function");
1427 else
1429 error_with_decl (newdecl, "`%s' redeclared as different kind of symbol");
1430 error_with_decl (olddecl, "previous declaration of `%s'");
1433 return 0;
1436 /* For real parm decl following a forward decl,
1437 return 1 so old decl will be reused. */
1438 if (types_match && TREE_CODE (newdecl) == PARM_DECL
1439 && TREE_ASM_WRITTEN (olddecl) && ! TREE_ASM_WRITTEN (newdecl))
1440 return 1;
1442 /* The new declaration is the same kind of object as the old one.
1443 The declarations may partially match. Print warnings if they don't
1444 match enough. Ultimately, copy most of the information from the new
1445 decl to the old one, and keep using the old one. */
1447 if (flag_traditional && TREE_CODE (newdecl) == FUNCTION_DECL
1448 && IDENTIFIER_IMPLICIT_DECL (DECL_NAME (newdecl)) == olddecl
1449 && DECL_INITIAL (olddecl) == 0)
1450 /* If -traditional, avoid error for redeclaring fcn
1451 after implicit decl. */
1453 else if (TREE_CODE (olddecl) == FUNCTION_DECL
1454 && DECL_BUILT_IN (olddecl))
1456 /* A function declaration for a built-in function. */
1457 if (!TREE_PUBLIC (newdecl))
1459 /* If you declare a built-in function name as static, the
1460 built-in definition is overridden,
1461 but optionally warn this was a bad choice of name. */
1462 if (warn_shadow)
1463 warning_with_decl (newdecl, "shadowing built-in function `%s'");
1464 /* Discard the old built-in function. */
1465 return 0;
1467 else if (!types_match)
1469 /* Accept the return type of the new declaration if same modes. */
1470 tree oldreturntype = TREE_TYPE (oldtype);
1471 tree newreturntype = TREE_TYPE (newtype);
1473 if (TYPE_MODE (oldreturntype) == TYPE_MODE (newreturntype))
1475 /* Function types may be shared, so we can't just modify
1476 the return type of olddecl's function type. */
1477 tree trytype
1478 = build_function_type (newreturntype,
1479 TYPE_ARG_TYPES (oldtype));
1481 types_match = comptypes (newtype, trytype);
1482 if (types_match)
1483 oldtype = trytype;
1485 /* Accept harmless mismatch in first argument type also.
1486 This is for ffs. */
1487 if (TYPE_ARG_TYPES (TREE_TYPE (newdecl)) != 0
1488 && TYPE_ARG_TYPES (oldtype) != 0
1489 && TREE_VALUE (TYPE_ARG_TYPES (newtype)) != 0
1490 && TREE_VALUE (TYPE_ARG_TYPES (oldtype)) != 0
1491 && (TYPE_MODE (TREE_VALUE (TYPE_ARG_TYPES (newtype)))
1492 == TYPE_MODE (TREE_VALUE (TYPE_ARG_TYPES (oldtype)))))
1494 /* Function types may be shared, so we can't just modify
1495 the return type of olddecl's function type. */
1496 tree trytype
1497 = build_function_type (TREE_TYPE (oldtype),
1498 tree_cons (NULL_TREE,
1499 TREE_VALUE (TYPE_ARG_TYPES (newtype)),
1500 TREE_CHAIN (TYPE_ARG_TYPES (oldtype))));
1502 types_match = comptypes (newtype, trytype);
1503 if (types_match)
1504 oldtype = trytype;
1506 if (! different_binding_level)
1507 TREE_TYPE (olddecl) = oldtype;
1509 if (!types_match)
1511 /* If types don't match for a built-in, throw away the built-in. */
1512 warning_with_decl (newdecl, "conflicting types for built-in function `%s'");
1513 return 0;
1516 else if (TREE_CODE (olddecl) == FUNCTION_DECL
1517 && DECL_SOURCE_LINE (olddecl) == 0)
1519 /* A function declaration for a predeclared function
1520 that isn't actually built in. */
1521 if (!TREE_PUBLIC (newdecl))
1523 /* If you declare it as static, the
1524 default definition is overridden. */
1525 return 0;
1527 else if (!types_match)
1529 /* If the types don't match, preserve volatility indication.
1530 Later on, we will discard everything else about the
1531 default declaration. */
1532 TREE_THIS_VOLATILE (newdecl) |= TREE_THIS_VOLATILE (olddecl);
1535 /* Permit char *foo () to match void *foo (...) if not pedantic,
1536 if one of them came from a system header file. */
1537 else if (!types_match
1538 && TREE_CODE (olddecl) == FUNCTION_DECL
1539 && TREE_CODE (newdecl) == FUNCTION_DECL
1540 && TREE_CODE (TREE_TYPE (oldtype)) == POINTER_TYPE
1541 && TREE_CODE (TREE_TYPE (newtype)) == POINTER_TYPE
1542 && (DECL_IN_SYSTEM_HEADER (olddecl)
1543 || DECL_IN_SYSTEM_HEADER (newdecl))
1544 && ((TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (newtype))) == void_type_node
1545 && TYPE_ARG_TYPES (oldtype) == 0
1546 && self_promoting_args_p (TYPE_ARG_TYPES (newtype))
1547 && TREE_TYPE (TREE_TYPE (oldtype)) == char_type_node)
1549 (TREE_TYPE (TREE_TYPE (newtype)) == char_type_node
1550 && TYPE_ARG_TYPES (newtype) == 0
1551 && self_promoting_args_p (TYPE_ARG_TYPES (oldtype))
1552 && TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (oldtype))) == void_type_node)))
1554 if (pedantic)
1555 pedwarn_with_decl (newdecl, "conflicting types for `%s'");
1556 /* Make sure we keep void * as ret type, not char *. */
1557 if (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (oldtype))) == void_type_node)
1558 TREE_TYPE (newdecl) = newtype = oldtype;
1560 /* Set DECL_IN_SYSTEM_HEADER, so that if we see another declaration
1561 we will come back here again. */
1562 DECL_IN_SYSTEM_HEADER (newdecl) = 1;
1564 else if (!types_match
1565 /* Permit char *foo (int, ...); followed by char *foo ();
1566 if not pedantic. */
1567 && ! (TREE_CODE (olddecl) == FUNCTION_DECL
1568 && ! pedantic
1569 /* Return types must still match. */
1570 && comptypes (TREE_TYPE (oldtype),
1571 TREE_TYPE (newtype))
1572 && TYPE_ARG_TYPES (newtype) == 0))
1574 error_with_decl (newdecl, "conflicting types for `%s'");
1575 /* Check for function type mismatch
1576 involving an empty arglist vs a nonempty one. */
1577 if (TREE_CODE (olddecl) == FUNCTION_DECL
1578 && comptypes (TREE_TYPE (oldtype),
1579 TREE_TYPE (newtype))
1580 && ((TYPE_ARG_TYPES (oldtype) == 0
1581 && DECL_INITIAL (olddecl) == 0)
1583 (TYPE_ARG_TYPES (newtype) == 0
1584 && DECL_INITIAL (newdecl) == 0)))
1586 /* Classify the problem further. */
1587 register tree t = TYPE_ARG_TYPES (oldtype);
1588 if (t == 0)
1589 t = TYPE_ARG_TYPES (newtype);
1590 for (; t; t = TREE_CHAIN (t))
1592 register tree type = TREE_VALUE (t);
1594 if (TREE_CHAIN (t) == 0
1595 && TYPE_MAIN_VARIANT (type) != void_type_node)
1597 error ("A parameter list with an ellipsis can't match an empty parameter name list declaration.");
1598 break;
1601 if (simple_type_promotes_to (type) != NULL_TREE)
1603 error ("An argument type that has a default promotion can't match an empty parameter name list declaration.");
1604 break;
1608 error_with_decl (olddecl, "previous declaration of `%s'");
1610 else
1612 errmsg = redeclaration_error_message (newdecl, olddecl);
1613 if (errmsg)
1615 switch (errmsg)
1617 case 1:
1618 error_with_decl (newdecl, "redefinition of `%s'");
1619 break;
1620 case 2:
1621 error_with_decl (newdecl, "redeclaration of `%s'");
1622 break;
1623 case 3:
1624 error_with_decl (newdecl, "conflicting declarations of `%s'");
1625 break;
1626 default:
1627 abort ();
1630 error_with_decl (olddecl,
1631 ((DECL_INITIAL (olddecl)
1632 && current_binding_level == global_binding_level)
1633 ? "`%s' previously defined here"
1634 : "`%s' previously declared here"));
1636 else if (TREE_CODE (newdecl) == TYPE_DECL
1637 && (DECL_IN_SYSTEM_HEADER (olddecl)
1638 || DECL_IN_SYSTEM_HEADER (newdecl)))
1640 warning_with_decl (newdecl, "redefinition of `%s'");
1641 warning_with_decl
1642 (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 (olddecl) == FUNCTION_DECL
1649 && DECL_INITIAL (olddecl) != 0
1650 && TYPE_ARG_TYPES (oldtype) == 0
1651 && TYPE_ARG_TYPES (newtype) != 0
1652 && TYPE_ACTUAL_ARG_TYPES (oldtype) != 0)
1654 register tree type, parm;
1655 register int nargs;
1656 /* Prototype decl follows defn w/o prototype. */
1658 for (parm = TYPE_ACTUAL_ARG_TYPES (oldtype),
1659 type = TYPE_ARG_TYPES (newtype),
1660 nargs = 1;
1662 parm = TREE_CHAIN (parm), type = TREE_CHAIN (type), nargs++)
1664 if (TYPE_MAIN_VARIANT (TREE_VALUE (parm)) == void_type_node
1665 && TYPE_MAIN_VARIANT (TREE_VALUE (type)) == void_type_node)
1667 warning_with_decl (newdecl, "prototype for `%s' follows");
1668 warning_with_decl (olddecl, "non-prototype definition here");
1669 break;
1671 if (TYPE_MAIN_VARIANT (TREE_VALUE (parm)) == void_type_node
1672 || TYPE_MAIN_VARIANT (TREE_VALUE (type)) == void_type_node)
1674 error_with_decl (newdecl, "prototype for `%s' follows and number of arguments doesn't match");
1675 error_with_decl (olddecl, "non-prototype definition here");
1676 errmsg = 1;
1677 break;
1679 /* Type for passing arg must be consistent
1680 with that declared for the arg. */
1681 if (! comptypes (TREE_VALUE (parm), TREE_VALUE (type))
1682 /* If -traditional, allow `unsigned int' instead of `int'
1683 in the prototype. */
1684 && (! (flag_traditional
1685 && TYPE_MAIN_VARIANT (TREE_VALUE (parm)) == integer_type_node
1686 && TYPE_MAIN_VARIANT (TREE_VALUE (type)) == unsigned_type_node)))
1688 error_with_decl (newdecl,
1689 "prototype for `%s' follows and argument %d doesn't match",
1690 nargs);
1691 error_with_decl (olddecl, "non-prototype definition here");
1692 errmsg = 1;
1693 break;
1697 /* Warn about mismatches in various flags. */
1698 else
1700 /* Warn if function is now inline
1701 but was previously declared not inline and has been called. */
1702 if (TREE_CODE (olddecl) == FUNCTION_DECL
1703 && ! DECL_INLINE (olddecl) && DECL_INLINE (newdecl)
1704 && TREE_USED (olddecl))
1705 warning_with_decl (newdecl,
1706 "`%s' declared inline after being called");
1707 if (TREE_CODE (olddecl) == FUNCTION_DECL
1708 && ! DECL_INLINE (olddecl) && DECL_INLINE (newdecl)
1709 && DECL_INITIAL (olddecl) != 0)
1710 warning_with_decl (newdecl,
1711 "`%s' declared inline after its definition");
1713 /* If pedantic, warn when static declaration follows a non-static
1714 declaration. Otherwise, do so only for functions. */
1715 if ((pedantic || TREE_CODE (olddecl) == FUNCTION_DECL)
1716 && TREE_PUBLIC (olddecl)
1717 && !TREE_PUBLIC (newdecl))
1718 warning_with_decl (newdecl, "static declaration for `%s' follows non-static");
1720 /* If warn_traditional, warn when a non-static function
1721 declaration follows a static one. */
1722 if (warn_traditional
1723 && TREE_CODE (olddecl) == FUNCTION_DECL
1724 && !TREE_PUBLIC (olddecl)
1725 && TREE_PUBLIC (newdecl))
1726 warning_with_decl (newdecl, "non-static declaration for `%s' follows static");
1728 /* Warn when const declaration follows a non-const
1729 declaration, but not for functions. */
1730 if (TREE_CODE (olddecl) != FUNCTION_DECL
1731 && !TREE_READONLY (olddecl)
1732 && TREE_READONLY (newdecl))
1733 warning_with_decl (newdecl, "const declaration for `%s' follows non-const");
1734 /* These bits are logically part of the type, for variables.
1735 But not for functions
1736 (where qualifiers are not valid ANSI anyway). */
1737 else if (pedantic && TREE_CODE (olddecl) != FUNCTION_DECL
1738 && (TREE_READONLY (newdecl) != TREE_READONLY (olddecl)
1739 || TREE_THIS_VOLATILE (newdecl) != TREE_THIS_VOLATILE (olddecl)))
1740 pedwarn_with_decl (newdecl, "type qualifiers for `%s' conflict with previous decl");
1744 /* Optionally warn about more than one declaration for the same name. */
1745 if (errmsg == 0 && warn_redundant_decls && DECL_SOURCE_LINE (olddecl) != 0
1746 /* Don't warn about a function declaration
1747 followed by a definition. */
1748 && !(TREE_CODE (newdecl) == FUNCTION_DECL && DECL_INITIAL (newdecl) != 0
1749 && DECL_INITIAL (olddecl) == 0)
1750 /* Don't warn about extern decl followed by (tentative) definition. */
1751 && !(DECL_EXTERNAL (olddecl) && ! DECL_EXTERNAL (newdecl)))
1753 warning_with_decl (newdecl, "redundant redeclaration of `%s' in same scope");
1754 warning_with_decl (olddecl, "previous declaration of `%s'");
1757 /* Copy all the DECL_... slots specified in the new decl
1758 except for any that we copy here from the old type.
1760 Past this point, we don't change OLDTYPE and NEWTYPE
1761 even if we change the types of NEWDECL and OLDDECL. */
1763 if (types_match)
1765 /* When copying info to olddecl, we store into write_olddecl
1766 instead. This allows us to avoid modifying olddecl when
1767 different_binding_level is true. */
1768 tree write_olddecl = different_binding_level ? newdecl : olddecl;
1770 /* Merge the data types specified in the two decls. */
1771 if (TREE_CODE (newdecl) != FUNCTION_DECL || !DECL_BUILT_IN (olddecl))
1773 if (different_binding_level)
1774 TREE_TYPE (newdecl)
1775 = build_type_attribute_variant
1776 (newtype,
1777 merge_attributes (TYPE_ATTRIBUTES (newtype),
1778 TYPE_ATTRIBUTES (oldtype)));
1779 else
1780 TREE_TYPE (newdecl)
1781 = TREE_TYPE (olddecl)
1782 = common_type (newtype, oldtype);
1785 /* Lay the type out, unless already done. */
1786 if (oldtype != TREE_TYPE (newdecl))
1788 if (TREE_TYPE (newdecl) != error_mark_node)
1789 layout_type (TREE_TYPE (newdecl));
1790 if (TREE_CODE (newdecl) != FUNCTION_DECL
1791 && TREE_CODE (newdecl) != TYPE_DECL
1792 && TREE_CODE (newdecl) != CONST_DECL)
1793 layout_decl (newdecl, 0);
1795 else
1797 /* Since the type is OLDDECL's, make OLDDECL's size go with. */
1798 DECL_SIZE (newdecl) = DECL_SIZE (olddecl);
1799 DECL_MODE (newdecl) = DECL_MODE (olddecl);
1800 if (TREE_CODE (olddecl) != FUNCTION_DECL)
1801 if (DECL_ALIGN (olddecl) > DECL_ALIGN (newdecl))
1802 DECL_ALIGN (newdecl) = DECL_ALIGN (olddecl);
1805 /* Keep the old rtl since we can safely use it. */
1806 DECL_RTL (newdecl) = DECL_RTL (olddecl);
1808 /* Merge the type qualifiers. */
1809 if (DECL_BUILT_IN_NONANSI (olddecl) && TREE_THIS_VOLATILE (olddecl)
1810 && !TREE_THIS_VOLATILE (newdecl))
1811 TREE_THIS_VOLATILE (write_olddecl) = 0;
1812 if (TREE_READONLY (newdecl))
1813 TREE_READONLY (write_olddecl) = 1;
1814 if (TREE_THIS_VOLATILE (newdecl))
1816 TREE_THIS_VOLATILE (write_olddecl) = 1;
1817 if (TREE_CODE (newdecl) == VAR_DECL)
1818 make_var_volatile (newdecl);
1821 /* Keep source location of definition rather than declaration. */
1822 /* When called with different_binding_level set, keep the old
1823 information so that meaningful diagnostics can be given. */
1824 if (DECL_INITIAL (newdecl) == 0 && DECL_INITIAL (olddecl) != 0
1825 && ! different_binding_level)
1827 DECL_SOURCE_LINE (newdecl) = DECL_SOURCE_LINE (olddecl);
1828 DECL_SOURCE_FILE (newdecl) = DECL_SOURCE_FILE (olddecl);
1831 /* Merge the unused-warning information. */
1832 if (DECL_IN_SYSTEM_HEADER (olddecl))
1833 DECL_IN_SYSTEM_HEADER (newdecl) = 1;
1834 else if (DECL_IN_SYSTEM_HEADER (newdecl))
1835 DECL_IN_SYSTEM_HEADER (write_olddecl) = 1;
1837 /* Merge the initialization information. */
1838 /* When called with different_binding_level set, don't copy over
1839 DECL_INITIAL, so that we don't accidentally change function
1840 declarations into function definitions. */
1841 if (DECL_INITIAL (newdecl) == 0 && ! different_binding_level)
1842 DECL_INITIAL (newdecl) = DECL_INITIAL (olddecl);
1844 /* Merge the section attribute.
1845 We want to issue an error if the sections conflict but that must be
1846 done later in decl_attributes since we are called before attributes
1847 are assigned. */
1848 if (DECL_SECTION_NAME (newdecl) == NULL_TREE)
1849 DECL_SECTION_NAME (newdecl) = DECL_SECTION_NAME (olddecl);
1851 /* Copy the assembler name.
1852 Currently, it can only be defined in the prototype. */
1853 DECL_ASSEMBLER_NAME (newdecl) = DECL_ASSEMBLER_NAME (olddecl);
1855 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1857 DECL_STATIC_CONSTRUCTOR(newdecl) |= DECL_STATIC_CONSTRUCTOR(olddecl);
1858 DECL_STATIC_DESTRUCTOR (newdecl) |= DECL_STATIC_DESTRUCTOR (olddecl);
1860 DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (newdecl)
1861 |= DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (olddecl);
1862 DECL_NO_CHECK_MEMORY_USAGE (newdecl)
1863 |= DECL_NO_CHECK_MEMORY_USAGE (olddecl);
1864 DECL_NO_LIMIT_STACK (newdecl)
1865 |= DECL_NO_LIMIT_STACK (olddecl);
1868 /* If cannot merge, then use the new type and qualifiers,
1869 and don't preserve the old rtl. */
1870 else if (! different_binding_level)
1872 TREE_TYPE (olddecl) = TREE_TYPE (newdecl);
1873 TREE_READONLY (olddecl) = TREE_READONLY (newdecl);
1874 TREE_THIS_VOLATILE (olddecl) = TREE_THIS_VOLATILE (newdecl);
1875 TREE_SIDE_EFFECTS (olddecl) = TREE_SIDE_EFFECTS (newdecl);
1878 /* Merge the storage class information. */
1879 DECL_WEAK (newdecl) |= DECL_WEAK (olddecl);
1880 /* For functions, static overrides non-static. */
1881 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1883 TREE_PUBLIC (newdecl) &= TREE_PUBLIC (olddecl);
1884 /* This is since we don't automatically
1885 copy the attributes of NEWDECL into OLDDECL. */
1886 /* No need to worry about different_binding_level here because
1887 then TREE_PUBLIC (newdecl) was true. */
1888 TREE_PUBLIC (olddecl) = TREE_PUBLIC (newdecl);
1889 /* If this clears `static', clear it in the identifier too. */
1890 if (! TREE_PUBLIC (olddecl))
1891 TREE_PUBLIC (DECL_NAME (olddecl)) = 0;
1893 if (DECL_EXTERNAL (newdecl))
1895 TREE_STATIC (newdecl) = TREE_STATIC (olddecl);
1896 DECL_EXTERNAL (newdecl) = DECL_EXTERNAL (olddecl);
1897 /* An extern decl does not override previous storage class. */
1898 TREE_PUBLIC (newdecl) = TREE_PUBLIC (olddecl);
1899 if (! DECL_EXTERNAL (newdecl))
1900 DECL_CONTEXT (newdecl) = DECL_CONTEXT (olddecl);
1902 else
1904 TREE_STATIC (olddecl) = TREE_STATIC (newdecl);
1905 TREE_PUBLIC (olddecl) = TREE_PUBLIC (newdecl);
1908 /* If either decl says `inline', this fn is inline,
1909 unless its definition was passed already. */
1910 if (DECL_INLINE (newdecl) && DECL_INITIAL (olddecl) == 0)
1911 DECL_INLINE (olddecl) = 1;
1912 DECL_INLINE (newdecl) = DECL_INLINE (olddecl);
1914 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1916 if (DECL_BUILT_IN (olddecl))
1918 /* Get rid of any built-in function if new arg types don't match it
1919 or if we have a function definition. */
1920 if (! types_match || new_is_definition)
1922 if (! different_binding_level)
1924 TREE_TYPE (olddecl) = TREE_TYPE (newdecl);
1925 DECL_BUILT_IN_CLASS (olddecl) = NOT_BUILT_IN;
1928 else
1930 /* If redeclaring a builtin function, and not a definition,
1931 it stays built in. */
1932 DECL_BUILT_IN_CLASS (newdecl) = DECL_BUILT_IN_CLASS (olddecl);
1933 DECL_FUNCTION_CODE (newdecl) = DECL_FUNCTION_CODE (olddecl);
1936 /* Also preserve various other info from the definition. */
1937 else if (! new_is_definition)
1938 DECL_FRAME_SIZE (newdecl) = DECL_FRAME_SIZE (olddecl);
1939 if (! new_is_definition)
1941 DECL_RESULT (newdecl) = DECL_RESULT (olddecl);
1942 /* When called with different_binding_level set, don't copy over
1943 DECL_INITIAL, so that we don't accidentally change function
1944 declarations into function definitions. */
1945 if (! different_binding_level)
1946 DECL_INITIAL (newdecl) = DECL_INITIAL (olddecl);
1947 DECL_SAVED_INSNS (newdecl) = DECL_SAVED_INSNS (olddecl);
1948 DECL_ARGUMENTS (newdecl) = DECL_ARGUMENTS (olddecl);
1949 if (DECL_INLINE (newdecl))
1950 DECL_ABSTRACT_ORIGIN (newdecl) = DECL_ORIGIN (olddecl);
1953 if (different_binding_level)
1955 /* Don't output a duplicate symbol or debugging information for this
1956 declaration.
1958 Do not set TREE_ASM_WRITTEN for a FUNCTION_DECL since we may actually
1959 just have two declarations without a definition. VAR_DECLs may need
1960 the same treatment, I'm not sure. */
1961 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1962 DECL_IGNORED_P (newdecl) = 1;
1963 else
1964 TREE_ASM_WRITTEN (newdecl) = DECL_IGNORED_P (newdecl) = 1;
1965 return 0;
1968 /* Copy most of the decl-specific fields of NEWDECL into OLDDECL.
1969 But preserve OLDDECL's DECL_UID. */
1971 register unsigned olddecl_uid = DECL_UID (olddecl);
1973 bcopy ((char *) newdecl + sizeof (struct tree_common),
1974 (char *) olddecl + sizeof (struct tree_common),
1975 sizeof (struct tree_decl) - sizeof (struct tree_common));
1976 DECL_UID (olddecl) = olddecl_uid;
1979 /* NEWDECL contains the merged attribute lists.
1980 Update OLDDECL to be the same. */
1981 DECL_MACHINE_ATTRIBUTES (olddecl) = DECL_MACHINE_ATTRIBUTES (newdecl);
1983 return 1;
1986 /* Record a decl-node X as belonging to the current lexical scope.
1987 Check for errors (such as an incompatible declaration for the same
1988 name already seen in the same scope).
1990 Returns either X or an old decl for the same name.
1991 If an old decl is returned, it may have been smashed
1992 to agree with what X says. */
1994 tree
1995 pushdecl (x)
1996 tree x;
1998 register tree t;
1999 register tree name = DECL_NAME (x);
2000 register struct binding_level *b = current_binding_level;
2002 DECL_CONTEXT (x) = current_function_decl;
2003 /* A local extern declaration for a function doesn't constitute nesting.
2004 A local auto declaration does, since it's a forward decl
2005 for a nested function coming later. */
2006 if (TREE_CODE (x) == FUNCTION_DECL && DECL_INITIAL (x) == 0
2007 && DECL_EXTERNAL (x))
2008 DECL_CONTEXT (x) = 0;
2010 if (warn_nested_externs && DECL_EXTERNAL (x) && b != global_binding_level
2011 && x != IDENTIFIER_IMPLICIT_DECL (name)
2012 /* Don't print error messages for __FUNCTION__ and __PRETTY_FUNCTION__ */
2013 && !DECL_IN_SYSTEM_HEADER (x))
2014 warning ("nested extern declaration of `%s'", IDENTIFIER_POINTER (name));
2016 if (name)
2018 char *file;
2019 int line;
2020 int different_binding_level = 0;
2022 t = lookup_name_current_level (name);
2023 /* Don't type check externs here when -traditional. This is so that
2024 code with conflicting declarations inside blocks will get warnings
2025 not errors. X11 for instance depends on this. */
2026 if (! t && DECL_EXTERNAL (x) && TREE_PUBLIC (x) && ! flag_traditional)
2028 t = IDENTIFIER_GLOBAL_VALUE (name);
2029 /* Type decls at global scope don't conflict with externs declared
2030 inside lexical blocks. */
2031 if (t && TREE_CODE (t) == TYPE_DECL)
2032 t = 0;
2033 different_binding_level = 1;
2035 if (t != 0 && t == error_mark_node)
2036 /* error_mark_node is 0 for a while during initialization! */
2038 t = 0;
2039 error_with_decl (x, "`%s' used prior to declaration");
2042 if (t != 0)
2044 file = DECL_SOURCE_FILE (t);
2045 line = DECL_SOURCE_LINE (t);
2048 /* If this decl is `static' and an implicit decl was seen previously,
2049 warn. But don't complain if -traditional,
2050 since traditional compilers don't complain. */
2051 if (! flag_traditional && TREE_PUBLIC (name)
2052 /* Don't test for DECL_EXTERNAL, because grokdeclarator
2053 sets this for all functions. */
2054 && ! TREE_PUBLIC (x)
2055 && (TREE_CODE (x) == FUNCTION_DECL || b == global_binding_level)
2056 /* We used to warn also for explicit extern followed by static,
2057 but sometimes you need to do it that way. */
2058 && IDENTIFIER_IMPLICIT_DECL (name) != 0)
2060 pedwarn ("`%s' was declared implicitly `extern' and later `static'",
2061 IDENTIFIER_POINTER (name));
2062 pedwarn_with_file_and_line
2063 (DECL_SOURCE_FILE (IDENTIFIER_IMPLICIT_DECL (name)),
2064 DECL_SOURCE_LINE (IDENTIFIER_IMPLICIT_DECL (name)),
2065 "previous declaration of `%s'",
2066 IDENTIFIER_POINTER (name));
2067 TREE_THIS_VOLATILE (name) = 1;
2070 if (t != 0 && duplicate_decls (x, t, different_binding_level))
2072 if (TREE_CODE (t) == PARM_DECL)
2074 /* Don't allow more than one "real" duplicate
2075 of a forward parm decl. */
2076 TREE_ASM_WRITTEN (t) = TREE_ASM_WRITTEN (x);
2077 return t;
2079 return t;
2082 /* If we are processing a typedef statement, generate a whole new
2083 ..._TYPE node (which will be just an variant of the existing
2084 ..._TYPE node with identical properties) and then install the
2085 TYPE_DECL node generated to represent the typedef name as the
2086 TYPE_NAME of this brand new (duplicate) ..._TYPE node.
2088 The whole point here is to end up with a situation where each
2089 and every ..._TYPE node the compiler creates will be uniquely
2090 associated with AT MOST one node representing a typedef name.
2091 This way, even though the compiler substitutes corresponding
2092 ..._TYPE nodes for TYPE_DECL (i.e. "typedef name") nodes very
2093 early on, later parts of the compiler can always do the reverse
2094 translation and get back the corresponding typedef name. For
2095 example, given:
2097 typedef struct S MY_TYPE;
2098 MY_TYPE object;
2100 Later parts of the compiler might only know that `object' was of
2101 type `struct S' if it were not for code just below. With this
2102 code however, later parts of the compiler see something like:
2104 struct S' == struct S
2105 typedef struct S' MY_TYPE;
2106 struct S' object;
2108 And they can then deduce (from the node for type struct S') that
2109 the original object declaration was:
2111 MY_TYPE object;
2113 Being able to do this is important for proper support of protoize,
2114 and also for generating precise symbolic debugging information
2115 which takes full account of the programmer's (typedef) vocabulary.
2117 Obviously, we don't want to generate a duplicate ..._TYPE node if
2118 the TYPE_DECL node that we are now processing really represents a
2119 standard built-in type.
2121 Since all standard types are effectively declared at line zero
2122 in the source file, we can easily check to see if we are working
2123 on a standard type by checking the current value of lineno. */
2125 if (TREE_CODE (x) == TYPE_DECL)
2127 if (DECL_SOURCE_LINE (x) == 0)
2129 if (TYPE_NAME (TREE_TYPE (x)) == 0)
2130 TYPE_NAME (TREE_TYPE (x)) = x;
2132 else if (TREE_TYPE (x) != error_mark_node
2133 && DECL_ORIGINAL_TYPE (x) == NULL_TREE)
2135 tree tt = TREE_TYPE (x);
2136 DECL_ORIGINAL_TYPE (x) = tt;
2137 tt = build_type_copy (tt);
2138 TYPE_NAME (tt) = x;
2139 TREE_TYPE (x) = tt;
2143 /* Multiple external decls of the same identifier ought to match.
2144 Check against both global declarations (when traditional) and out of
2145 scope (limbo) block level declarations.
2147 We get warnings about inline functions where they are defined.
2148 Avoid duplicate warnings where they are used. */
2149 if (TREE_PUBLIC (x) && ! DECL_INLINE (x))
2151 tree decl;
2153 if (flag_traditional && IDENTIFIER_GLOBAL_VALUE (name) != 0
2154 && (DECL_EXTERNAL (IDENTIFIER_GLOBAL_VALUE (name))
2155 || TREE_PUBLIC (IDENTIFIER_GLOBAL_VALUE (name))))
2156 decl = IDENTIFIER_GLOBAL_VALUE (name);
2157 else if (IDENTIFIER_LIMBO_VALUE (name) != 0)
2158 /* Decls in limbo are always extern, so no need to check that. */
2159 decl = IDENTIFIER_LIMBO_VALUE (name);
2160 else
2161 decl = 0;
2163 if (decl && ! comptypes (TREE_TYPE (x), TREE_TYPE (decl))
2164 /* If old decl is built-in, we already warned if we should. */
2165 && !DECL_BUILT_IN (decl))
2167 pedwarn_with_decl (x,
2168 "type mismatch with previous external decl");
2169 pedwarn_with_decl (decl, "previous external decl of `%s'");
2173 /* If a function has had an implicit declaration, and then is defined,
2174 make sure they are compatible. */
2176 if (IDENTIFIER_IMPLICIT_DECL (name) != 0
2177 && IDENTIFIER_GLOBAL_VALUE (name) == 0
2178 && TREE_CODE (x) == FUNCTION_DECL
2179 && ! comptypes (TREE_TYPE (x),
2180 TREE_TYPE (IDENTIFIER_IMPLICIT_DECL (name))))
2182 warning_with_decl (x, "type mismatch with previous implicit declaration");
2183 warning_with_decl (IDENTIFIER_IMPLICIT_DECL (name),
2184 "previous implicit declaration of `%s'");
2187 /* In PCC-compatibility mode, extern decls of vars with no current decl
2188 take effect at top level no matter where they are. */
2189 if (flag_traditional && DECL_EXTERNAL (x)
2190 && lookup_name (name) == 0)
2192 tree type = TREE_TYPE (x);
2194 /* But don't do this if the type contains temporary nodes. */
2195 while (type)
2197 if (type == error_mark_node)
2198 break;
2199 if (! TYPE_CONTEXT (type))
2201 warning_with_decl (x, "type of external `%s' is not global");
2202 /* By exiting the loop early, we leave TYPE nonzero,
2203 and thus prevent globalization of the decl. */
2204 break;
2206 else if (TREE_CODE (type) == FUNCTION_TYPE
2207 && TYPE_ARG_TYPES (type) != 0)
2208 /* The types might not be truly local,
2209 but the list of arg types certainly is temporary.
2210 Since prototypes are nontraditional,
2211 ok not to do the traditional thing. */
2212 break;
2213 type = TREE_TYPE (type);
2216 if (type == 0)
2217 b = global_binding_level;
2220 /* This name is new in its binding level.
2221 Install the new declaration and return it. */
2222 if (b == global_binding_level)
2224 /* Install a global value. */
2226 /* If the first global decl has external linkage,
2227 warn if we later see static one. */
2228 if (IDENTIFIER_GLOBAL_VALUE (name) == 0 && TREE_PUBLIC (x))
2229 TREE_PUBLIC (name) = 1;
2231 IDENTIFIER_GLOBAL_VALUE (name) = x;
2233 /* We no longer care about any previous block level declarations. */
2234 IDENTIFIER_LIMBO_VALUE (name) = 0;
2236 /* Don't forget if the function was used via an implicit decl. */
2237 if (IDENTIFIER_IMPLICIT_DECL (name)
2238 && TREE_USED (IDENTIFIER_IMPLICIT_DECL (name)))
2239 TREE_USED (x) = 1, TREE_USED (name) = 1;
2241 /* Don't forget if its address was taken in that way. */
2242 if (IDENTIFIER_IMPLICIT_DECL (name)
2243 && TREE_ADDRESSABLE (IDENTIFIER_IMPLICIT_DECL (name)))
2244 TREE_ADDRESSABLE (x) = 1;
2246 /* Warn about mismatches against previous implicit decl. */
2247 if (IDENTIFIER_IMPLICIT_DECL (name) != 0
2248 /* If this real decl matches the implicit, don't complain. */
2249 && ! (TREE_CODE (x) == FUNCTION_DECL
2250 && (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (x)))
2251 == integer_type_node)))
2252 pedwarn ("`%s' was previously implicitly declared to return `int'",
2253 IDENTIFIER_POINTER (name));
2255 /* If this decl is `static' and an `extern' was seen previously,
2256 that is erroneous. */
2257 if (TREE_PUBLIC (name)
2258 && ! TREE_PUBLIC (x) && ! DECL_EXTERNAL (x))
2260 /* Okay to redeclare an ANSI built-in as static. */
2261 if (t != 0 && DECL_BUILT_IN (t))
2263 /* Okay to declare a non-ANSI built-in as anything. */
2264 else if (t != 0 && DECL_BUILT_IN_NONANSI (t))
2266 /* Okay to have global type decl after an earlier extern
2267 declaration inside a lexical block. */
2268 else if (TREE_CODE (x) == TYPE_DECL)
2270 else if (IDENTIFIER_IMPLICIT_DECL (name))
2272 if (! TREE_THIS_VOLATILE (name))
2273 pedwarn ("`%s' was declared implicitly `extern' and later `static'",
2274 IDENTIFIER_POINTER (name));
2276 else
2277 pedwarn ("`%s' was declared `extern' and later `static'",
2278 IDENTIFIER_POINTER (name));
2281 else
2283 /* Here to install a non-global value. */
2284 tree oldlocal = IDENTIFIER_LOCAL_VALUE (name);
2285 tree oldglobal = IDENTIFIER_GLOBAL_VALUE (name);
2286 IDENTIFIER_LOCAL_VALUE (name) = x;
2288 /* If this is an extern function declaration, see if we
2289 have a global definition or declaration for the function. */
2290 if (oldlocal == 0
2291 && DECL_EXTERNAL (x) && !DECL_INLINE (x)
2292 && oldglobal != 0
2293 && TREE_CODE (x) == FUNCTION_DECL
2294 && TREE_CODE (oldglobal) == FUNCTION_DECL)
2296 /* We have one. Their types must agree. */
2297 if (! comptypes (TREE_TYPE (x),
2298 TREE_TYPE (IDENTIFIER_GLOBAL_VALUE (name))))
2299 pedwarn_with_decl (x, "extern declaration of `%s' doesn't match global one");
2300 else
2302 /* Inner extern decl is inline if global one is.
2303 Copy enough to really inline it. */
2304 if (DECL_INLINE (oldglobal))
2306 DECL_INLINE (x) = DECL_INLINE (oldglobal);
2307 DECL_INITIAL (x) = (current_function_decl == oldglobal
2308 ? 0 : DECL_INITIAL (oldglobal));
2309 DECL_SAVED_INSNS (x) = DECL_SAVED_INSNS (oldglobal);
2310 DECL_FRAME_SIZE (x) = DECL_FRAME_SIZE (oldglobal);
2311 DECL_ARGUMENTS (x) = DECL_ARGUMENTS (oldglobal);
2312 DECL_RESULT (x) = DECL_RESULT (oldglobal);
2313 TREE_ASM_WRITTEN (x) = TREE_ASM_WRITTEN (oldglobal);
2314 DECL_ABSTRACT_ORIGIN (x) = DECL_ORIGIN (oldglobal);
2316 /* Inner extern decl is built-in if global one is. */
2317 if (DECL_BUILT_IN (oldglobal))
2319 DECL_BUILT_IN_CLASS (x) = DECL_BUILT_IN_CLASS (oldglobal);
2320 DECL_FUNCTION_CODE (x) = DECL_FUNCTION_CODE (oldglobal);
2322 /* Keep the arg types from a file-scope fcn defn. */
2323 if (TYPE_ARG_TYPES (TREE_TYPE (oldglobal)) != 0
2324 && DECL_INITIAL (oldglobal)
2325 && TYPE_ARG_TYPES (TREE_TYPE (x)) == 0)
2326 TREE_TYPE (x) = TREE_TYPE (oldglobal);
2330 #if 0 /* This case is probably sometimes the right thing to do. */
2331 /* If we have a local external declaration,
2332 then any file-scope declaration should not
2333 have been static. */
2334 if (oldlocal == 0 && oldglobal != 0
2335 && !TREE_PUBLIC (oldglobal)
2336 && DECL_EXTERNAL (x) && TREE_PUBLIC (x))
2337 warning ("`%s' locally external but globally static",
2338 IDENTIFIER_POINTER (name));
2339 #endif
2341 /* If we have a local external declaration,
2342 and no file-scope declaration has yet been seen,
2343 then if we later have a file-scope decl it must not be static. */
2344 if (oldlocal == 0
2345 && DECL_EXTERNAL (x)
2346 && TREE_PUBLIC (x))
2348 if (oldglobal == 0)
2349 TREE_PUBLIC (name) = 1;
2351 /* Save this decl, so that we can do type checking against
2352 other decls after it falls out of scope.
2354 Only save it once. This prevents temporary decls created in
2355 expand_inline_function from being used here, since this
2356 will have been set when the inline function was parsed.
2357 It also helps give slightly better warnings. */
2358 if (IDENTIFIER_LIMBO_VALUE (name) == 0)
2359 IDENTIFIER_LIMBO_VALUE (name) = x;
2362 /* Warn if shadowing an argument at the top level of the body. */
2363 if (oldlocal != 0 && !DECL_EXTERNAL (x)
2364 /* This warning doesn't apply to the parms of a nested fcn. */
2365 && ! current_binding_level->parm_flag
2366 /* Check that this is one level down from the parms. */
2367 && current_binding_level->level_chain->parm_flag
2368 /* Check that the decl being shadowed
2369 comes from the parm level, one level up. */
2370 && chain_member (oldlocal, current_binding_level->level_chain->names))
2372 if (TREE_CODE (oldlocal) == PARM_DECL)
2373 pedwarn ("declaration of `%s' shadows a parameter",
2374 IDENTIFIER_POINTER (name));
2375 else
2376 pedwarn ("declaration of `%s' shadows a symbol from the parameter list",
2377 IDENTIFIER_POINTER (name));
2380 /* Maybe warn if shadowing something else. */
2381 else if (warn_shadow && !DECL_EXTERNAL (x)
2382 /* No shadow warnings for internally generated vars. */
2383 && DECL_SOURCE_LINE (x) != 0
2384 /* No shadow warnings for vars made for inlining. */
2385 && ! DECL_FROM_INLINE (x))
2387 char *id = IDENTIFIER_POINTER (name);
2389 if (TREE_CODE (x) == PARM_DECL
2390 && current_binding_level->level_chain->parm_flag)
2391 /* Don't warn about the parm names in function declarator
2392 within a function declarator.
2393 It would be nice to avoid warning in any function
2394 declarator in a declaration, as opposed to a definition,
2395 but there is no way to tell it's not a definition. */
2397 else if (oldlocal != 0 && TREE_CODE (oldlocal) == PARM_DECL)
2398 warning ("declaration of `%s' shadows a parameter", id);
2399 else if (oldlocal != 0)
2400 warning ("declaration of `%s' shadows previous local", id);
2401 else if (IDENTIFIER_GLOBAL_VALUE (name) != 0
2402 && IDENTIFIER_GLOBAL_VALUE (name) != error_mark_node)
2403 warning ("declaration of `%s' shadows global declaration", id);
2406 /* If storing a local value, there may already be one (inherited).
2407 If so, record it for restoration when this binding level ends. */
2408 if (oldlocal != 0)
2409 b->shadowed = tree_cons (name, oldlocal, b->shadowed);
2412 /* Keep count of variables in this level with incomplete type. */
2413 if (TYPE_SIZE (TREE_TYPE (x)) == 0)
2414 ++b->n_incomplete;
2417 /* Put decls on list in reverse order.
2418 We will reverse them later if necessary. */
2419 TREE_CHAIN (x) = b->names;
2420 b->names = x;
2422 return x;
2425 /* Like pushdecl, only it places X in GLOBAL_BINDING_LEVEL, if appropriate. */
2427 tree
2428 pushdecl_top_level (x)
2429 tree x;
2431 register tree t;
2432 register struct binding_level *b = current_binding_level;
2434 current_binding_level = global_binding_level;
2435 t = pushdecl (x);
2436 current_binding_level = b;
2437 return t;
2440 /* Generate an implicit declaration for identifier FUNCTIONID
2441 as a function of type int (). Print a warning if appropriate. */
2443 tree
2444 implicitly_declare (functionid)
2445 tree functionid;
2447 register tree decl;
2448 int traditional_warning = 0;
2449 /* Only one "implicit declaration" warning per identifier. */
2450 int implicit_warning;
2452 /* We used to reuse an old implicit decl here,
2453 but this loses with inline functions because it can clobber
2454 the saved decl chains. */
2455 /* if (IDENTIFIER_IMPLICIT_DECL (functionid) != 0)
2456 decl = IDENTIFIER_IMPLICIT_DECL (functionid);
2457 else */
2458 decl = build_decl (FUNCTION_DECL, functionid, default_function_type);
2460 /* Warn of implicit decl following explicit local extern decl.
2461 This is probably a program designed for traditional C. */
2462 if (TREE_PUBLIC (functionid) && IDENTIFIER_GLOBAL_VALUE (functionid) == 0)
2463 traditional_warning = 1;
2465 /* Warn once of an implicit declaration. */
2466 implicit_warning = (IDENTIFIER_IMPLICIT_DECL (functionid) == 0);
2468 DECL_EXTERNAL (decl) = 1;
2469 TREE_PUBLIC (decl) = 1;
2471 /* Record that we have an implicit decl and this is it. */
2472 IDENTIFIER_IMPLICIT_DECL (functionid) = decl;
2474 /* ANSI standard says implicit declarations are in the innermost block.
2475 So we record the decl in the standard fashion.
2476 If flag_traditional is set, pushdecl does it top-level. */
2477 pushdecl (decl);
2479 /* This is a no-op in c-lang.c or something real in objc-actions.c. */
2480 maybe_objc_check_decl (decl);
2482 rest_of_decl_compilation (decl, NULL_PTR, 0, 0);
2484 if (mesg_implicit_function_declaration && implicit_warning)
2486 if (mesg_implicit_function_declaration == 2)
2487 error ("implicit declaration of function `%s'",
2488 IDENTIFIER_POINTER (functionid));
2489 else
2490 warning ("implicit declaration of function `%s'",
2491 IDENTIFIER_POINTER (functionid));
2493 else if (warn_traditional && traditional_warning)
2494 warning ("function `%s' was previously declared within a block",
2495 IDENTIFIER_POINTER (functionid));
2497 /* Write a record describing this implicit function declaration to the
2498 prototypes file (if requested). */
2500 gen_aux_info_record (decl, 0, 1, 0);
2502 return decl;
2505 /* Return zero if the declaration NEWDECL is valid
2506 when the declaration OLDDECL (assumed to be for the same name)
2507 has already been seen.
2508 Otherwise return 1 if NEWDECL is a redefinition, 2 if it is a redeclaration,
2509 and 3 if it is a conflicting declaration. */
2511 static int
2512 redeclaration_error_message (newdecl, olddecl)
2513 tree newdecl, olddecl;
2515 if (TREE_CODE (newdecl) == TYPE_DECL)
2517 if (flag_traditional && TREE_TYPE (newdecl) == TREE_TYPE (olddecl))
2518 return 0;
2519 /* pushdecl creates distinct types for TYPE_DECLs by calling
2520 build_type_copy, so the above comparison generally fails. We do
2521 another test against the TYPE_MAIN_VARIANT of the olddecl, which
2522 is equivalent to what this code used to do before the build_type_copy
2523 call. The variant type distinction should not matter for traditional
2524 code, because it doesn't have type qualifiers. */
2525 if (flag_traditional
2526 && TYPE_MAIN_VARIANT (TREE_TYPE (olddecl)) == TREE_TYPE (newdecl))
2527 return 0;
2528 if (DECL_IN_SYSTEM_HEADER (olddecl) || DECL_IN_SYSTEM_HEADER (newdecl))
2529 return 0;
2530 return 1;
2532 else if (TREE_CODE (newdecl) == FUNCTION_DECL)
2534 /* Declarations of functions can insist on internal linkage
2535 but they can't be inconsistent with internal linkage,
2536 so there can be no error on that account.
2537 However defining the same name twice is no good. */
2538 if (DECL_INITIAL (olddecl) != 0 && DECL_INITIAL (newdecl) != 0
2539 /* However, defining once as extern inline and a second
2540 time in another way is ok. */
2541 && !(DECL_INLINE (olddecl) && DECL_EXTERNAL (olddecl)
2542 && !(DECL_INLINE (newdecl) && DECL_EXTERNAL (newdecl))))
2543 return 1;
2544 return 0;
2546 else if (current_binding_level == global_binding_level)
2548 /* Objects declared at top level: */
2549 /* If at least one is a reference, it's ok. */
2550 if (DECL_EXTERNAL (newdecl) || DECL_EXTERNAL (olddecl))
2551 return 0;
2552 /* Reject two definitions. */
2553 if (DECL_INITIAL (olddecl) != 0 && DECL_INITIAL (newdecl) != 0)
2554 return 1;
2555 /* Now we have two tentative defs, or one tentative and one real def. */
2556 /* Insist that the linkage match. */
2557 if (TREE_PUBLIC (olddecl) != TREE_PUBLIC (newdecl))
2558 return 3;
2559 return 0;
2561 else if (current_binding_level->parm_flag
2562 && TREE_ASM_WRITTEN (olddecl) && !TREE_ASM_WRITTEN (newdecl))
2563 return 0;
2564 else
2566 /* Newdecl has block scope. If olddecl has block scope also, then
2567 reject two definitions, and reject a definition together with an
2568 external reference. Otherwise, it is OK, because newdecl must
2569 be an extern reference to olddecl. */
2570 if (!(DECL_EXTERNAL (newdecl) && DECL_EXTERNAL (olddecl))
2571 && DECL_CONTEXT (newdecl) == DECL_CONTEXT (olddecl))
2572 return 2;
2573 return 0;
2577 /* Get the LABEL_DECL corresponding to identifier ID as a label.
2578 Create one if none exists so far for the current function.
2579 This function is called for both label definitions and label references. */
2581 tree
2582 lookup_label (id)
2583 tree id;
2585 register tree decl = IDENTIFIER_LABEL_VALUE (id);
2587 if (current_function_decl == 0)
2589 error ("label %s referenced outside of any function",
2590 IDENTIFIER_POINTER (id));
2591 return 0;
2594 /* Use a label already defined or ref'd with this name. */
2595 if (decl != 0)
2597 /* But not if it is inherited and wasn't declared to be inheritable. */
2598 if (DECL_CONTEXT (decl) != current_function_decl
2599 && ! C_DECLARED_LABEL_FLAG (decl))
2600 return shadow_label (id);
2601 return decl;
2604 decl = build_decl (LABEL_DECL, id, void_type_node);
2606 /* Make sure every label has an rtx. */
2607 label_rtx (decl);
2609 /* A label not explicitly declared must be local to where it's ref'd. */
2610 DECL_CONTEXT (decl) = current_function_decl;
2612 DECL_MODE (decl) = VOIDmode;
2614 /* Say where one reference is to the label,
2615 for the sake of the error if it is not defined. */
2616 DECL_SOURCE_LINE (decl) = lineno;
2617 DECL_SOURCE_FILE (decl) = input_filename;
2619 IDENTIFIER_LABEL_VALUE (id) = decl;
2621 named_labels = tree_cons (NULL_TREE, decl, named_labels);
2623 return decl;
2626 /* Make a label named NAME in the current function,
2627 shadowing silently any that may be inherited from containing functions
2628 or containing scopes.
2630 Note that valid use, if the label being shadowed
2631 comes from another scope in the same function,
2632 requires calling declare_nonlocal_label right away. */
2634 tree
2635 shadow_label (name)
2636 tree name;
2638 register tree decl = IDENTIFIER_LABEL_VALUE (name);
2640 if (decl != 0)
2642 register tree dup;
2644 /* Check to make sure that the label hasn't already been declared
2645 at this label scope */
2646 for (dup = named_labels; dup; dup = TREE_CHAIN (dup))
2647 if (TREE_VALUE (dup) == decl)
2649 error ("duplicate label declaration `%s'",
2650 IDENTIFIER_POINTER (name));
2651 error_with_decl (TREE_VALUE (dup),
2652 "this is a previous declaration");
2653 /* Just use the previous declaration. */
2654 return lookup_label (name);
2657 shadowed_labels = tree_cons (NULL_TREE, decl, shadowed_labels);
2658 IDENTIFIER_LABEL_VALUE (name) = decl = 0;
2661 return lookup_label (name);
2664 /* Define a label, specifying the location in the source file.
2665 Return the LABEL_DECL node for the label, if the definition is valid.
2666 Otherwise return 0. */
2668 tree
2669 define_label (filename, line, name)
2670 char *filename;
2671 int line;
2672 tree name;
2674 tree decl = lookup_label (name);
2676 /* If label with this name is known from an outer context, shadow it. */
2677 if (decl != 0 && DECL_CONTEXT (decl) != current_function_decl)
2679 shadowed_labels = tree_cons (NULL_TREE, decl, shadowed_labels);
2680 IDENTIFIER_LABEL_VALUE (name) = 0;
2681 decl = lookup_label (name);
2684 if (DECL_INITIAL (decl) != 0)
2686 error ("duplicate label `%s'", IDENTIFIER_POINTER (name));
2687 return 0;
2689 else
2691 /* Mark label as having been defined. */
2692 DECL_INITIAL (decl) = error_mark_node;
2693 /* Say where in the source. */
2694 DECL_SOURCE_FILE (decl) = filename;
2695 DECL_SOURCE_LINE (decl) = line;
2696 return decl;
2700 /* Return the list of declarations of the current level.
2701 Note that this list is in reverse order unless/until
2702 you nreverse it; and when you do nreverse it, you must
2703 store the result back using `storedecls' or you will lose. */
2705 tree
2706 getdecls ()
2708 return current_binding_level->names;
2711 /* Return the list of type-tags (for structs, etc) of the current level. */
2713 tree
2714 gettags ()
2716 return current_binding_level->tags;
2719 /* Store the list of declarations of the current level.
2720 This is done for the parameter declarations of a function being defined,
2721 after they are modified in the light of any missing parameters. */
2723 static void
2724 storedecls (decls)
2725 tree decls;
2727 current_binding_level->names = decls;
2730 /* Similarly, store the list of tags of the current level. */
2732 static void
2733 storetags (tags)
2734 tree tags;
2736 current_binding_level->tags = tags;
2739 /* Given NAME, an IDENTIFIER_NODE,
2740 return the structure (or union or enum) definition for that name.
2741 Searches binding levels from BINDING_LEVEL up to the global level.
2742 If THISLEVEL_ONLY is nonzero, searches only the specified context
2743 (but skips any tag-transparent contexts to find one that is
2744 meaningful for tags).
2745 CODE says which kind of type the caller wants;
2746 it is RECORD_TYPE or UNION_TYPE or ENUMERAL_TYPE.
2747 If the wrong kind of type is found, an error is reported. */
2749 static tree
2750 lookup_tag (code, name, binding_level, thislevel_only)
2751 enum tree_code code;
2752 struct binding_level *binding_level;
2753 tree name;
2754 int thislevel_only;
2756 register struct binding_level *level;
2758 for (level = binding_level; level; level = level->level_chain)
2760 register tree tail;
2761 for (tail = level->tags; tail; tail = TREE_CHAIN (tail))
2763 if (TREE_PURPOSE (tail) == name)
2765 if (TREE_CODE (TREE_VALUE (tail)) != code)
2767 /* Definition isn't the kind we were looking for. */
2768 pending_invalid_xref = name;
2769 pending_invalid_xref_file = input_filename;
2770 pending_invalid_xref_line = lineno;
2772 return TREE_VALUE (tail);
2775 if (thislevel_only && ! level->tag_transparent)
2776 return NULL_TREE;
2778 return NULL_TREE;
2781 /* Print an error message now
2782 for a recent invalid struct, union or enum cross reference.
2783 We don't print them immediately because they are not invalid
2784 when used in the `struct foo;' construct for shadowing. */
2786 void
2787 pending_xref_error ()
2789 if (pending_invalid_xref != 0)
2790 error_with_file_and_line (pending_invalid_xref_file,
2791 pending_invalid_xref_line,
2792 "`%s' defined as wrong kind of tag",
2793 IDENTIFIER_POINTER (pending_invalid_xref));
2794 pending_invalid_xref = 0;
2797 /* Given a type, find the tag that was defined for it and return the tag name.
2798 Otherwise return 0. */
2800 static tree
2801 lookup_tag_reverse (type)
2802 tree type;
2804 register struct binding_level *level;
2806 for (level = current_binding_level; level; level = level->level_chain)
2808 register tree tail;
2809 for (tail = level->tags; tail; tail = TREE_CHAIN (tail))
2811 if (TREE_VALUE (tail) == type)
2812 return TREE_PURPOSE (tail);
2815 return NULL_TREE;
2818 /* Look up NAME in the current binding level and its superiors
2819 in the namespace of variables, functions and typedefs.
2820 Return a ..._DECL node of some kind representing its definition,
2821 or return 0 if it is undefined. */
2823 tree
2824 lookup_name (name)
2825 tree name;
2827 register tree val;
2828 if (current_binding_level != global_binding_level
2829 && IDENTIFIER_LOCAL_VALUE (name))
2830 val = IDENTIFIER_LOCAL_VALUE (name);
2831 else
2832 val = IDENTIFIER_GLOBAL_VALUE (name);
2833 return val;
2836 /* Similar to `lookup_name' but look only at current binding level. */
2838 tree
2839 lookup_name_current_level (name)
2840 tree name;
2842 register tree t;
2844 if (current_binding_level == global_binding_level)
2845 return IDENTIFIER_GLOBAL_VALUE (name);
2847 if (IDENTIFIER_LOCAL_VALUE (name) == 0)
2848 return 0;
2850 for (t = current_binding_level->names; t; t = TREE_CHAIN (t))
2851 if (DECL_NAME (t) == name)
2852 break;
2854 return t;
2857 /* Mark ARG for GC. */
2858 static void
2859 mark_binding_level (arg)
2860 void *arg;
2862 struct binding_level *level = *(struct binding_level **) arg;
2864 while (level)
2866 ggc_mark_tree (level->names);
2867 ggc_mark_tree (level->tags);
2868 ggc_mark_tree (level->shadowed);
2869 ggc_mark_tree (level->blocks);
2870 ggc_mark_tree (level->this_block);
2871 ggc_mark_tree (level->parm_order);
2872 level = level->level_chain;
2876 /* Create the predefined scalar types of C,
2877 and some nodes representing standard constants (0, 1, (void *) 0).
2878 Initialize the global binding level.
2879 Make definitions for built-in primitive functions. */
2881 void
2882 init_decl_processing ()
2884 register tree endlink;
2885 tree ptr_ftype_void, ptr_ftype_ptr;
2886 int wchar_type_size;
2887 tree array_domain_type;
2889 current_function_decl = NULL;
2890 named_labels = NULL;
2891 current_binding_level = NULL_BINDING_LEVEL;
2892 free_binding_level = NULL_BINDING_LEVEL;
2893 pushlevel (0); /* make the binding_level structure for global names */
2894 global_binding_level = current_binding_level;
2896 build_common_tree_nodes (flag_signed_char);
2898 /* Define `int' and `char' first so that dbx will output them first. */
2899 pushdecl (build_decl (TYPE_DECL, ridpointers[(int) RID_INT],
2900 integer_type_node));
2901 pushdecl (build_decl (TYPE_DECL, get_identifier ("char"),
2902 char_type_node));
2903 pushdecl (build_decl (TYPE_DECL, get_identifier ("long int"),
2904 long_integer_type_node));
2905 pushdecl (build_decl (TYPE_DECL, get_identifier ("unsigned int"),
2906 unsigned_type_node));
2907 pushdecl (build_decl (TYPE_DECL, get_identifier ("long unsigned int"),
2908 long_unsigned_type_node));
2909 pushdecl (build_decl (TYPE_DECL, get_identifier ("long long int"),
2910 long_long_integer_type_node));
2911 pushdecl (build_decl (TYPE_DECL, get_identifier ("long long unsigned int"),
2912 long_long_unsigned_type_node));
2913 pushdecl (build_decl (TYPE_DECL, get_identifier ("short int"),
2914 short_integer_type_node));
2915 pushdecl (build_decl (TYPE_DECL, get_identifier ("short unsigned int"),
2916 short_unsigned_type_node));
2917 pushdecl (build_decl (TYPE_DECL, get_identifier ("signed char"),
2918 signed_char_type_node));
2919 pushdecl (build_decl (TYPE_DECL, get_identifier ("unsigned char"),
2920 unsigned_char_type_node));
2921 pushdecl (build_decl (TYPE_DECL, NULL_TREE, intQI_type_node));
2922 pushdecl (build_decl (TYPE_DECL, NULL_TREE, intHI_type_node));
2923 pushdecl (build_decl (TYPE_DECL, NULL_TREE, intSI_type_node));
2924 pushdecl (build_decl (TYPE_DECL, NULL_TREE, intDI_type_node));
2925 #if HOST_BITS_PER_WIDE_INT >= 64
2926 pushdecl (build_decl (TYPE_DECL, NULL_TREE, intTI_type_node));
2927 #endif
2928 pushdecl (build_decl (TYPE_DECL, NULL_TREE, unsigned_intQI_type_node));
2929 pushdecl (build_decl (TYPE_DECL, NULL_TREE, unsigned_intHI_type_node));
2930 pushdecl (build_decl (TYPE_DECL, NULL_TREE, unsigned_intSI_type_node));
2931 pushdecl (build_decl (TYPE_DECL, NULL_TREE, unsigned_intDI_type_node));
2932 #if HOST_BITS_PER_WIDE_INT >= 64
2933 pushdecl (build_decl (TYPE_DECL, NULL_TREE, unsigned_intTI_type_node));
2934 #endif
2936 /* `unsigned long' is the standard type for sizeof.
2937 Traditionally, use a signed type.
2938 Note that stddef.h uses `unsigned long',
2939 and this must agree, even if long and int are the same size. */
2940 set_sizetype
2941 (TREE_TYPE (IDENTIFIER_GLOBAL_VALUE (get_identifier (SIZE_TYPE))));
2942 if (flag_traditional && TREE_UNSIGNED (sizetype))
2943 set_sizetype (signed_type (sizetype));
2945 /* Create the widest literal types. */
2946 widest_integer_literal_type_node = make_signed_type (HOST_BITS_PER_WIDE_INT * 2);
2947 widest_unsigned_literal_type_node = make_unsigned_type (HOST_BITS_PER_WIDE_INT * 2);
2948 pushdecl (build_decl (TYPE_DECL, NULL_TREE,
2949 widest_integer_literal_type_node));
2950 pushdecl (build_decl (TYPE_DECL, NULL_TREE,
2951 widest_unsigned_literal_type_node));
2953 build_common_tree_nodes_2 (flag_short_double);
2955 pushdecl (build_decl (TYPE_DECL, ridpointers[(int) RID_FLOAT],
2956 float_type_node));
2957 pushdecl (build_decl (TYPE_DECL, ridpointers[(int) RID_DOUBLE],
2958 double_type_node));
2959 pushdecl (build_decl (TYPE_DECL, get_identifier ("long double"),
2960 long_double_type_node));
2961 pushdecl (build_decl (TYPE_DECL, get_identifier ("complex int"),
2962 complex_integer_type_node));
2963 pushdecl (build_decl (TYPE_DECL, get_identifier ("complex float"),
2964 complex_float_type_node));
2965 pushdecl (build_decl (TYPE_DECL, get_identifier ("complex double"),
2966 complex_double_type_node));
2967 pushdecl (build_decl (TYPE_DECL, get_identifier ("complex long double"),
2968 complex_long_double_type_node));
2969 pushdecl (build_decl (TYPE_DECL,
2970 ridpointers[(int) RID_VOID], void_type_node));
2972 #ifdef MD_INIT_BUILTINS
2973 MD_INIT_BUILTINS;
2974 #endif
2976 wchar_type_node = get_identifier (flag_short_wchar
2977 ? "short unsigned int"
2978 : WCHAR_TYPE);
2979 wchar_type_node = TREE_TYPE (IDENTIFIER_GLOBAL_VALUE (wchar_type_node));
2980 wchar_type_size = TYPE_PRECISION (wchar_type_node);
2981 signed_wchar_type_node = signed_type (wchar_type_node);
2982 unsigned_wchar_type_node = unsigned_type (wchar_type_node);
2984 boolean_type_node = integer_type_node;
2985 boolean_true_node = integer_one_node;
2986 boolean_false_node = integer_zero_node;
2988 string_type_node = build_pointer_type (char_type_node);
2989 const_string_type_node
2990 = build_pointer_type (build_type_variant (char_type_node, 1, 0));
2992 /* Make a type to be the domain of a few array types
2993 whose domains don't really matter.
2994 200 is small enough that it always fits in size_t
2995 and large enough that it can hold most function names for the
2996 initializations of __FUNCTION__ and __PRETTY_FUNCTION__. */
2997 array_domain_type = build_index_type (build_int_2 (200, 0));
2999 /* make a type for arrays of characters.
3000 With luck nothing will ever really depend on the length of this
3001 array type. */
3002 char_array_type_node
3003 = build_array_type (char_type_node, array_domain_type);
3004 /* Likewise for arrays of ints. */
3005 int_array_type_node
3006 = build_array_type (integer_type_node, array_domain_type);
3007 /* This is for wide string constants. */
3008 wchar_array_type_node
3009 = build_array_type (wchar_type_node, array_domain_type);
3011 void_list_node = tree_cons (NULL_TREE, void_type_node, NULL_TREE);
3013 default_function_type
3014 = build_function_type (integer_type_node, NULL_TREE);
3015 ptrdiff_type_node
3016 = TREE_TYPE (IDENTIFIER_GLOBAL_VALUE (get_identifier (PTRDIFF_TYPE)));
3018 c_common_nodes_and_builtins (0, flag_no_builtin, flag_no_nonansi_builtin);
3020 endlink = void_list_node;
3021 ptr_ftype_void = build_function_type (ptr_type_node, endlink);
3022 ptr_ftype_ptr
3023 = build_function_type (ptr_type_node,
3024 tree_cons (NULL_TREE, ptr_type_node, endlink));
3026 builtin_function ("__builtin_aggregate_incoming_address",
3027 build_function_type (ptr_type_node, NULL_TREE),
3028 BUILT_IN_AGGREGATE_INCOMING_ADDRESS,
3029 BUILT_IN_NORMAL, NULL_PTR);
3031 /* Hooks for the DWARF 2 __throw routine. */
3032 builtin_function ("__builtin_unwind_init",
3033 build_function_type (void_type_node, endlink),
3034 BUILT_IN_UNWIND_INIT, BUILT_IN_NORMAL, NULL_PTR);
3035 builtin_function ("__builtin_dwarf_cfa", ptr_ftype_void,
3036 BUILT_IN_DWARF_CFA, BUILT_IN_NORMAL, NULL_PTR);
3037 builtin_function ("__builtin_dwarf_fp_regnum",
3038 build_function_type (unsigned_type_node, endlink),
3039 BUILT_IN_DWARF_FP_REGNUM, BUILT_IN_NORMAL, NULL_PTR);
3040 builtin_function ("__builtin_init_dwarf_reg_size_table", void_ftype_ptr,
3041 BUILT_IN_INIT_DWARF_REG_SIZES, BUILT_IN_NORMAL, NULL_PTR);
3042 builtin_function ("__builtin_frob_return_addr", ptr_ftype_ptr,
3043 BUILT_IN_FROB_RETURN_ADDR, BUILT_IN_NORMAL, NULL_PTR);
3044 builtin_function ("__builtin_extract_return_addr", ptr_ftype_ptr,
3045 BUILT_IN_EXTRACT_RETURN_ADDR, BUILT_IN_NORMAL, NULL_PTR);
3046 builtin_function
3047 ("__builtin_eh_return",
3048 build_function_type (void_type_node,
3049 tree_cons (NULL_TREE, ptr_type_node,
3050 tree_cons (NULL_TREE,
3051 type_for_mode (ptr_mode, 0),
3052 tree_cons (NULL_TREE,
3053 ptr_type_node,
3054 endlink)))),
3055 BUILT_IN_EH_RETURN, BUILT_IN_NORMAL, NULL_PTR);
3057 pedantic_lvalues = pedantic;
3059 /* Create the global bindings for __FUNCTION__ and __PRETTY_FUNCTION__. */
3060 declare_function_name ();
3062 start_identifier_warnings ();
3064 /* Prepare to check format strings against argument lists. */
3065 init_function_format_info ();
3067 init_iterators ();
3069 incomplete_decl_finalize_hook = finish_incomplete_decl;
3071 lang_get_alias_set = c_get_alias_set;
3073 /* Record our roots. */
3075 ggc_add_tree_root (c_global_trees, CTI_MAX);
3076 ggc_add_tree_root (&current_function_decl, 1);
3077 ggc_add_tree_root (&named_labels, 1);
3078 ggc_add_tree_root (&shadowed_labels, 1);
3079 ggc_add_root (&current_binding_level, 1, sizeof current_binding_level,
3080 mark_binding_level);
3081 ggc_add_root (&label_level_chain, 1, sizeof label_level_chain,
3082 mark_binding_level);
3083 ggc_add_tree_root (&static_ctors, 1);
3084 ggc_add_tree_root (&static_dtors, 1);
3087 /* Return a definition for a builtin function named NAME and whose data type
3088 is TYPE. TYPE should be a function type with argument types.
3089 FUNCTION_CODE tells later passes how to compile calls to this function.
3090 See tree.h for its possible values.
3092 If LIBRARY_NAME is nonzero, use that for DECL_ASSEMBLER_NAME,
3093 the name to be called if we can't opencode the function. */
3095 tree
3096 builtin_function (name, type, function_code, class, library_name)
3097 const char *name;
3098 tree type;
3099 int function_code;
3100 enum built_in_class class;
3101 const char *library_name;
3103 tree decl = build_decl (FUNCTION_DECL, get_identifier (name), type);
3104 DECL_EXTERNAL (decl) = 1;
3105 TREE_PUBLIC (decl) = 1;
3106 /* If -traditional, permit redefining a builtin function any way you like.
3107 (Though really, if the program redefines these functions,
3108 it probably won't work right unless compiled with -fno-builtin.) */
3109 if (flag_traditional && name[0] != '_')
3110 DECL_BUILT_IN_NONANSI (decl) = 1;
3111 if (library_name)
3112 DECL_ASSEMBLER_NAME (decl) = get_identifier (library_name);
3113 make_decl_rtl (decl, NULL_PTR, 1);
3114 pushdecl (decl);
3115 DECL_BUILT_IN_CLASS (decl) = class;
3116 DECL_FUNCTION_CODE (decl) = function_code;
3118 /* Warn if a function in the namespace for users
3119 is used without an occasion to consider it declared. */
3120 if (name[0] != '_' || name[1] != '_')
3121 C_DECL_ANTICIPATED (decl) = 1;
3123 return decl;
3126 /* Called when a declaration is seen that contains no names to declare.
3127 If its type is a reference to a structure, union or enum inherited
3128 from a containing scope, shadow that tag name for the current scope
3129 with a forward reference.
3130 If its type defines a new named structure or union
3131 or defines an enum, it is valid but we need not do anything here.
3132 Otherwise, it is an error. */
3134 void
3135 shadow_tag (declspecs)
3136 tree declspecs;
3138 shadow_tag_warned (declspecs, 0);
3141 void
3142 shadow_tag_warned (declspecs, warned)
3143 tree declspecs;
3144 int warned;
3145 /* 1 => we have done a pedwarn. 2 => we have done a warning, but
3146 no pedwarn. */
3148 int found_tag = 0;
3149 register tree link;
3150 tree specs, attrs;
3152 pending_invalid_xref = 0;
3154 /* Remove the attributes from declspecs, since they will confuse the
3155 following code. */
3156 split_specs_attrs (declspecs, &specs, &attrs);
3158 for (link = specs; link; link = TREE_CHAIN (link))
3160 register tree value = TREE_VALUE (link);
3161 register enum tree_code code = TREE_CODE (value);
3163 if (code == RECORD_TYPE || code == UNION_TYPE || code == ENUMERAL_TYPE)
3164 /* Used to test also that TYPE_SIZE (value) != 0.
3165 That caused warning for `struct foo;' at top level in the file. */
3167 register tree name = lookup_tag_reverse (value);
3168 register tree t;
3170 found_tag++;
3172 if (name == 0)
3174 if (warned != 1 && code != ENUMERAL_TYPE)
3175 /* Empty unnamed enum OK */
3177 pedwarn ("unnamed struct/union that defines no instances");
3178 warned = 1;
3181 else
3183 t = lookup_tag (code, name, current_binding_level, 1);
3185 if (t == 0)
3187 t = make_node (code);
3188 pushtag (name, t);
3192 else
3194 if (!warned && ! in_system_header)
3196 warning ("useless keyword or type name in empty declaration");
3197 warned = 2;
3202 if (found_tag > 1)
3203 error ("two types specified in one empty declaration");
3205 if (warned != 1)
3207 if (found_tag == 0)
3208 pedwarn ("empty declaration");
3212 /* Decode a "typename", such as "int **", returning a ..._TYPE node. */
3214 tree
3215 groktypename (typename)
3216 tree typename;
3218 if (TREE_CODE (typename) != TREE_LIST)
3219 return typename;
3220 return grokdeclarator (TREE_VALUE (typename),
3221 TREE_PURPOSE (typename),
3222 TYPENAME, 0);
3225 /* Return a PARM_DECL node for a given pair of specs and declarator. */
3227 tree
3228 groktypename_in_parm_context (typename)
3229 tree typename;
3231 if (TREE_CODE (typename) != TREE_LIST)
3232 return typename;
3233 return grokdeclarator (TREE_VALUE (typename),
3234 TREE_PURPOSE (typename),
3235 PARM, 0);
3238 /* Decode a declarator in an ordinary declaration or data definition.
3239 This is called as soon as the type information and variable name
3240 have been parsed, before parsing the initializer if any.
3241 Here we create the ..._DECL node, fill in its type,
3242 and put it on the list of decls for the current context.
3243 The ..._DECL node is returned as the value.
3245 Exception: for arrays where the length is not specified,
3246 the type is left null, to be filled in by `finish_decl'.
3248 Function definitions do not come here; they go to start_function
3249 instead. However, external and forward declarations of functions
3250 do go through here. Structure field declarations are done by
3251 grokfield and not through here. */
3253 tree
3254 start_decl (declarator, declspecs, initialized, attributes, prefix_attributes)
3255 tree declarator, declspecs;
3256 int initialized;
3257 tree attributes, prefix_attributes;
3259 register tree decl = grokdeclarator (declarator, declspecs,
3260 NORMAL, initialized);
3261 register tree tem;
3263 if (warn_main > 0 && TREE_CODE (decl) != FUNCTION_DECL
3264 && !strcmp (IDENTIFIER_POINTER (DECL_NAME (decl)), "main"))
3265 warning_with_decl (decl, "`%s' is usually a function");
3267 if (initialized)
3268 /* Is it valid for this decl to have an initializer at all?
3269 If not, set INITIALIZED to zero, which will indirectly
3270 tell `finish_decl' to ignore the initializer once it is parsed. */
3271 switch (TREE_CODE (decl))
3273 case TYPE_DECL:
3274 /* typedef foo = bar means give foo the same type as bar.
3275 We haven't parsed bar yet, so `finish_decl' will fix that up.
3276 Any other case of an initialization in a TYPE_DECL is an error. */
3277 if (pedantic || list_length (declspecs) > 1)
3279 error ("typedef `%s' is initialized",
3280 IDENTIFIER_POINTER (DECL_NAME (decl)));
3281 initialized = 0;
3283 break;
3285 case FUNCTION_DECL:
3286 error ("function `%s' is initialized like a variable",
3287 IDENTIFIER_POINTER (DECL_NAME (decl)));
3288 initialized = 0;
3289 break;
3291 case PARM_DECL:
3292 /* DECL_INITIAL in a PARM_DECL is really DECL_ARG_TYPE. */
3293 error ("parameter `%s' is initialized",
3294 IDENTIFIER_POINTER (DECL_NAME (decl)));
3295 initialized = 0;
3296 break;
3298 default:
3299 /* Don't allow initializations for incomplete types
3300 except for arrays which might be completed by the initialization. */
3301 if (TYPE_SIZE (TREE_TYPE (decl)) != 0)
3303 /* A complete type is ok if size is fixed. */
3305 if (TREE_CODE (TYPE_SIZE (TREE_TYPE (decl))) != INTEGER_CST
3306 || C_DECL_VARIABLE_SIZE (decl))
3308 error ("variable-sized object may not be initialized");
3309 initialized = 0;
3312 else if (TREE_CODE (TREE_TYPE (decl)) != ARRAY_TYPE)
3314 error ("variable `%s' has initializer but incomplete type",
3315 IDENTIFIER_POINTER (DECL_NAME (decl)));
3316 initialized = 0;
3318 else if (TYPE_SIZE (TREE_TYPE (TREE_TYPE (decl))) == 0)
3320 error ("elements of array `%s' have incomplete type",
3321 IDENTIFIER_POINTER (DECL_NAME (decl)));
3322 initialized = 0;
3326 if (initialized)
3328 #if 0 /* Seems redundant with grokdeclarator. */
3329 if (current_binding_level != global_binding_level
3330 && DECL_EXTERNAL (decl)
3331 && TREE_CODE (decl) != FUNCTION_DECL)
3332 warning ("declaration of `%s' has `extern' and is initialized",
3333 IDENTIFIER_POINTER (DECL_NAME (decl)));
3334 #endif
3335 DECL_EXTERNAL (decl) = 0;
3336 if (current_binding_level == global_binding_level)
3337 TREE_STATIC (decl) = 1;
3339 /* Tell `pushdecl' this is an initialized decl
3340 even though we don't yet have the initializer expression.
3341 Also tell `finish_decl' it may store the real initializer. */
3342 DECL_INITIAL (decl) = error_mark_node;
3345 /* If this is a function declaration, write a record describing it to the
3346 prototypes file (if requested). */
3348 if (TREE_CODE (decl) == FUNCTION_DECL)
3349 gen_aux_info_record (decl, 0, 0, TYPE_ARG_TYPES (TREE_TYPE (decl)) != 0);
3351 /* ANSI specifies that a tentative definition which is not merged with
3352 a non-tentative definition behaves exactly like a definition with an
3353 initializer equal to zero. (Section 3.7.2)
3354 -fno-common gives strict ANSI behavior. Usually you don't want it.
3355 This matters only for variables with external linkage. */
3356 if (! flag_no_common || ! TREE_PUBLIC (decl))
3357 DECL_COMMON (decl) = 1;
3359 #ifdef SET_DEFAULT_DECL_ATTRIBUTES
3360 SET_DEFAULT_DECL_ATTRIBUTES (decl, attributes);
3361 #endif
3363 /* Set attributes here so if duplicate decl, will have proper attributes. */
3364 decl_attributes (decl, attributes, prefix_attributes);
3366 /* Add this decl to the current binding level.
3367 TEM may equal DECL or it may be a previous decl of the same name. */
3368 tem = pushdecl (decl);
3370 /* For a local variable, define the RTL now. */
3371 if (current_binding_level != global_binding_level
3372 /* But not if this is a duplicate decl
3373 and we preserved the rtl from the previous one
3374 (which may or may not happen). */
3375 && DECL_RTL (tem) == 0)
3377 if (TYPE_SIZE (TREE_TYPE (tem)) != 0)
3378 expand_decl (tem);
3379 else if (TREE_CODE (TREE_TYPE (tem)) == ARRAY_TYPE
3380 && DECL_INITIAL (tem) != 0)
3381 expand_decl (tem);
3384 return tem;
3387 /* Finish processing of a declaration;
3388 install its initial value.
3389 If the length of an array type is not known before,
3390 it must be determined now, from the initial value, or it is an error. */
3392 void
3393 finish_decl (decl, init, asmspec_tree)
3394 tree decl, init;
3395 tree asmspec_tree;
3397 register tree type = TREE_TYPE (decl);
3398 int was_incomplete = (DECL_SIZE (decl) == 0);
3399 char *asmspec = 0;
3401 /* If a name was specified, get the string. */
3402 if (asmspec_tree)
3403 asmspec = TREE_STRING_POINTER (asmspec_tree);
3405 /* If `start_decl' didn't like having an initialization, ignore it now. */
3407 if (init != 0 && DECL_INITIAL (decl) == 0)
3408 init = 0;
3409 /* Don't crash if parm is initialized. */
3410 if (TREE_CODE (decl) == PARM_DECL)
3411 init = 0;
3413 if (ITERATOR_P (decl))
3415 if (init == 0)
3416 error_with_decl (decl, "iterator has no initial value");
3417 else
3418 init = save_expr (init);
3421 if (init)
3423 if (TREE_CODE (decl) != TYPE_DECL)
3424 store_init_value (decl, init);
3425 else
3427 /* typedef foo = bar; store the type of bar as the type of foo. */
3428 TREE_TYPE (decl) = TREE_TYPE (init);
3429 DECL_INITIAL (decl) = init = 0;
3433 /* Deduce size of array from initialization, if not already known */
3435 if (TREE_CODE (type) == ARRAY_TYPE
3436 && TYPE_DOMAIN (type) == 0
3437 && TREE_CODE (decl) != TYPE_DECL)
3439 int do_default
3440 = (TREE_STATIC (decl)
3441 /* Even if pedantic, an external linkage array
3442 may have incomplete type at first. */
3443 ? pedantic && !TREE_PUBLIC (decl)
3444 : !DECL_EXTERNAL (decl));
3445 int failure
3446 = complete_array_type (type, DECL_INITIAL (decl), do_default);
3448 /* Get the completed type made by complete_array_type. */
3449 type = TREE_TYPE (decl);
3451 if (failure == 1)
3452 error_with_decl (decl, "initializer fails to determine size of `%s'");
3454 if (failure == 2)
3456 if (do_default)
3457 error_with_decl (decl, "array size missing in `%s'");
3458 /* If a `static' var's size isn't known,
3459 make it extern as well as static, so it does not get
3460 allocated.
3461 If it is not `static', then do not mark extern;
3462 finish_incomplete_decl will give it a default size
3463 and it will get allocated. */
3464 else if (!pedantic && TREE_STATIC (decl) && ! TREE_PUBLIC (decl))
3465 DECL_EXTERNAL (decl) = 1;
3468 /* TYPE_MAX_VALUE is always one less than the number of elements
3469 in the array, because we start counting at zero. Therefore,
3470 warn only if the value is less than zero. */
3471 if (pedantic && TYPE_DOMAIN (type) != 0
3472 && tree_int_cst_sgn (TYPE_MAX_VALUE (TYPE_DOMAIN (type))) < 0)
3473 error_with_decl (decl, "zero or negative size array `%s'");
3475 layout_decl (decl, 0);
3478 if (TREE_CODE (decl) == VAR_DECL)
3480 if (DECL_SIZE (decl) == 0
3481 && TYPE_SIZE (TREE_TYPE (decl)) != 0)
3482 layout_decl (decl, 0);
3484 if (DECL_SIZE (decl) == 0
3485 && (TREE_STATIC (decl)
3487 /* A static variable with an incomplete type
3488 is an error if it is initialized.
3489 Also if it is not file scope.
3490 Otherwise, let it through, but if it is not `extern'
3491 then it may cause an error message later. */
3492 /* A duplicate_decls call could have changed an extern
3493 declaration into a file scope one. This can be detected
3494 by TREE_ASM_WRITTEN being set. */
3495 (DECL_INITIAL (decl) != 0
3496 || (DECL_CONTEXT (decl) != 0 && ! TREE_ASM_WRITTEN (decl)))
3498 /* An automatic variable with an incomplete type
3499 is an error. */
3500 !DECL_EXTERNAL (decl)))
3502 error_with_decl (decl, "storage size of `%s' isn't known");
3503 TREE_TYPE (decl) = error_mark_node;
3506 if ((DECL_EXTERNAL (decl) || TREE_STATIC (decl))
3507 && DECL_SIZE (decl) != 0)
3509 if (TREE_CODE (DECL_SIZE (decl)) == INTEGER_CST)
3510 constant_expression_warning (DECL_SIZE (decl));
3511 else
3512 error_with_decl (decl, "storage size of `%s' isn't constant");
3515 if (TREE_USED (type))
3516 TREE_USED (decl) = 1;
3519 /* If this is a function and an assembler name is specified, it isn't
3520 builtin any more. Also reset DECL_RTL so we can give it its new
3521 name. */
3522 if (TREE_CODE (decl) == FUNCTION_DECL && asmspec)
3524 DECL_BUILT_IN_CLASS (decl) = NOT_BUILT_IN;
3525 DECL_RTL (decl) = 0;
3526 DECL_ASSEMBLER_NAME (decl) = get_identifier (asmspec);
3529 /* Output the assembler code and/or RTL code for variables and functions,
3530 unless the type is an undefined structure or union.
3531 If not, it will get done when the type is completed. */
3533 if (TREE_CODE (decl) == VAR_DECL || TREE_CODE (decl) == FUNCTION_DECL)
3535 /* This is a no-op in c-lang.c or something real in objc-actions.c. */
3536 maybe_objc_check_decl (decl);
3537 rest_of_decl_compilation (decl, asmspec,
3538 (DECL_CONTEXT (decl) == 0
3539 || TREE_ASM_WRITTEN (decl)), 0);
3541 if (DECL_CONTEXT (decl) != 0)
3543 /* Recompute the RTL of a local array now
3544 if it used to be an incomplete type. */
3545 if (was_incomplete
3546 && ! TREE_STATIC (decl) && ! DECL_EXTERNAL (decl))
3548 /* If we used it already as memory, it must stay in memory. */
3549 TREE_ADDRESSABLE (decl) = TREE_USED (decl);
3550 /* If it's still incomplete now, no init will save it. */
3551 if (DECL_SIZE (decl) == 0)
3552 DECL_INITIAL (decl) = 0;
3553 expand_decl (decl);
3555 /* Compute and store the initial value. */
3556 if (TREE_CODE (decl) != FUNCTION_DECL)
3557 expand_decl_init (decl);
3561 if (TREE_CODE (decl) == TYPE_DECL)
3563 /* This is a no-op in c-lang.c or something real in objc-actions.c. */
3564 maybe_objc_check_decl (decl);
3565 rest_of_decl_compilation (decl, NULL_PTR, DECL_CONTEXT (decl) == 0, 0);
3568 /* If requested, warn about definitions of large data objects. */
3570 if (warn_larger_than
3571 && (TREE_CODE (decl) == VAR_DECL || TREE_CODE (decl) == PARM_DECL)
3572 && !DECL_EXTERNAL (decl))
3574 register tree decl_size = DECL_SIZE (decl);
3576 if (decl_size && TREE_CODE (decl_size) == INTEGER_CST)
3578 unsigned units = TREE_INT_CST_LOW(decl_size) / BITS_PER_UNIT;
3580 if (units > larger_than_size)
3581 warning_with_decl (decl, "size of `%s' is %u bytes", units);
3585 /* At the end of a declaration, throw away any variable type sizes
3586 of types defined inside that declaration. There is no use
3587 computing them in the following function definition. */
3588 if (current_binding_level == global_binding_level)
3589 get_pending_sizes ();
3592 /* If DECL has a cleanup, build and return that cleanup here.
3593 This is a callback called by expand_expr. */
3595 tree
3596 maybe_build_cleanup (decl)
3597 tree decl ATTRIBUTE_UNUSED;
3599 /* There are no cleanups in C. */
3600 return NULL_TREE;
3603 /* Given a parsed parameter declaration,
3604 decode it into a PARM_DECL and push that on the current binding level.
3605 Also, for the sake of forward parm decls,
3606 record the given order of parms in `parm_order'. */
3608 void
3609 push_parm_decl (parm)
3610 tree parm;
3612 tree decl;
3613 int old_immediate_size_expand = immediate_size_expand;
3614 /* Don't try computing parm sizes now -- wait till fn is called. */
3615 immediate_size_expand = 0;
3617 decl = grokdeclarator (TREE_VALUE (TREE_PURPOSE (parm)),
3618 TREE_PURPOSE (TREE_PURPOSE (parm)), PARM, 0);
3619 decl_attributes (decl, TREE_VALUE (TREE_VALUE (parm)),
3620 TREE_PURPOSE (TREE_VALUE (parm)));
3622 #if 0
3623 if (DECL_NAME (decl))
3625 tree olddecl;
3626 olddecl = lookup_name (DECL_NAME (decl));
3627 if (pedantic && olddecl != 0 && TREE_CODE (olddecl) == TYPE_DECL)
3628 pedwarn_with_decl (decl, "ANSI C forbids parameter `%s' shadowing typedef");
3630 #endif
3632 decl = pushdecl (decl);
3634 immediate_size_expand = old_immediate_size_expand;
3636 current_binding_level->parm_order
3637 = tree_cons (NULL_TREE, decl, current_binding_level->parm_order);
3639 /* Add this decl to the current binding level. */
3640 finish_decl (decl, NULL_TREE, NULL_TREE);
3643 /* Clear the given order of parms in `parm_order'.
3644 Used at start of parm list,
3645 and also at semicolon terminating forward decls. */
3647 void
3648 clear_parm_order ()
3650 current_binding_level->parm_order = NULL_TREE;
3653 /* Make TYPE a complete type based on INITIAL_VALUE.
3654 Return 0 if successful, 1 if INITIAL_VALUE can't be deciphered,
3655 2 if there was no information (in which case assume 1 if DO_DEFAULT). */
3658 complete_array_type (type, initial_value, do_default)
3659 tree type;
3660 tree initial_value;
3661 int do_default;
3663 register tree maxindex = NULL_TREE;
3664 int value = 0;
3666 if (initial_value)
3668 /* Note MAXINDEX is really the maximum index,
3669 one less than the size. */
3670 if (TREE_CODE (initial_value) == STRING_CST)
3672 int eltsize
3673 = int_size_in_bytes (TREE_TYPE (TREE_TYPE (initial_value)));
3674 maxindex = build_int_2 ((TREE_STRING_LENGTH (initial_value)
3675 / eltsize) - 1, 0);
3677 else if (TREE_CODE (initial_value) == CONSTRUCTOR)
3679 tree elts = CONSTRUCTOR_ELTS (initial_value);
3680 maxindex = size_binop (MINUS_EXPR, integer_zero_node, size_one_node);
3681 for (; elts; elts = TREE_CHAIN (elts))
3683 if (TREE_PURPOSE (elts))
3684 maxindex = TREE_PURPOSE (elts);
3685 else
3686 maxindex = size_binop (PLUS_EXPR, maxindex, size_one_node);
3688 maxindex = copy_node (maxindex);
3690 else
3692 /* Make an error message unless that happened already. */
3693 if (initial_value != error_mark_node)
3694 value = 1;
3696 /* Prevent further error messages. */
3697 maxindex = build_int_2 (0, 0);
3701 if (!maxindex)
3703 if (do_default)
3704 maxindex = build_int_2 (0, 0);
3705 value = 2;
3708 if (maxindex)
3710 TYPE_DOMAIN (type) = build_index_type (maxindex);
3711 if (!TREE_TYPE (maxindex))
3712 TREE_TYPE (maxindex) = TYPE_DOMAIN (type);
3715 /* Lay out the type now that we can get the real answer. */
3717 layout_type (type);
3719 return value;
3722 /* Given declspecs and a declarator,
3723 determine the name and type of the object declared
3724 and construct a ..._DECL node for it.
3725 (In one case we can return a ..._TYPE node instead.
3726 For invalid input we sometimes return 0.)
3728 DECLSPECS is a chain of tree_list nodes whose value fields
3729 are the storage classes and type specifiers.
3731 DECL_CONTEXT says which syntactic context this declaration is in:
3732 NORMAL for most contexts. Make a VAR_DECL or FUNCTION_DECL or TYPE_DECL.
3733 FUNCDEF for a function definition. Like NORMAL but a few different
3734 error messages in each case. Return value may be zero meaning
3735 this definition is too screwy to try to parse.
3736 PARM for a parameter declaration (either within a function prototype
3737 or before a function body). Make a PARM_DECL, or return void_type_node.
3738 TYPENAME if for a typename (in a cast or sizeof).
3739 Don't make a DECL node; just return the ..._TYPE node.
3740 FIELD for a struct or union field; make a FIELD_DECL.
3741 BITFIELD for a field with specified width.
3742 INITIALIZED is 1 if the decl has an initializer.
3744 In the TYPENAME case, DECLARATOR is really an absolute declarator.
3745 It may also be so in the PARM case, for a prototype where the
3746 argument type is specified but not the name.
3748 This function is where the complicated C meanings of `static'
3749 and `extern' are interpreted. */
3751 static tree
3752 grokdeclarator (declarator, declspecs, decl_context, initialized)
3753 tree declspecs;
3754 tree declarator;
3755 enum decl_context decl_context;
3756 int initialized;
3758 int specbits = 0;
3759 tree spec;
3760 tree type = NULL_TREE;
3761 int longlong = 0;
3762 int constp;
3763 int restrictp;
3764 int volatilep;
3765 int type_quals = TYPE_UNQUALIFIED;
3766 int inlinep;
3767 int explicit_int = 0;
3768 int explicit_char = 0;
3769 int defaulted_int = 0;
3770 tree typedef_decl = 0;
3771 const char *name;
3772 tree typedef_type = 0;
3773 int funcdef_flag = 0;
3774 enum tree_code innermost_code = ERROR_MARK;
3775 int bitfield = 0;
3776 int size_varies = 0;
3777 tree decl_machine_attr = NULL_TREE;
3779 if (decl_context == BITFIELD)
3780 bitfield = 1, decl_context = FIELD;
3782 if (decl_context == FUNCDEF)
3783 funcdef_flag = 1, decl_context = NORMAL;
3785 /* Look inside a declarator for the name being declared
3786 and get it as a string, for an error message. */
3788 register tree decl = declarator;
3789 name = 0;
3791 while (decl)
3792 switch (TREE_CODE (decl))
3794 case ARRAY_REF:
3795 case INDIRECT_REF:
3796 case CALL_EXPR:
3797 innermost_code = TREE_CODE (decl);
3798 decl = TREE_OPERAND (decl, 0);
3799 break;
3801 case IDENTIFIER_NODE:
3802 name = IDENTIFIER_POINTER (decl);
3803 decl = 0;
3804 break;
3806 default:
3807 abort ();
3809 if (name == 0)
3810 name = "type name";
3813 /* A function definition's declarator must have the form of
3814 a function declarator. */
3816 if (funcdef_flag && innermost_code != CALL_EXPR)
3817 return 0;
3819 /* Anything declared one level down from the top level
3820 must be one of the parameters of a function
3821 (because the body is at least two levels down). */
3823 /* If this looks like a function definition, make it one,
3824 even if it occurs where parms are expected.
3825 Then store_parm_decls will reject it and not use it as a parm. */
3826 if (decl_context == NORMAL && !funcdef_flag
3827 && current_binding_level->parm_flag)
3828 decl_context = PARM;
3830 /* Look through the decl specs and record which ones appear.
3831 Some typespecs are defined as built-in typenames.
3832 Others, the ones that are modifiers of other types,
3833 are represented by bits in SPECBITS: set the bits for
3834 the modifiers that appear. Storage class keywords are also in SPECBITS.
3836 If there is a typedef name or a type, store the type in TYPE.
3837 This includes builtin typedefs such as `int'.
3839 Set EXPLICIT_INT or EXPLICIT_CHAR if the type is `int' or `char'
3840 and did not come from a user typedef.
3842 Set LONGLONG if `long' is mentioned twice. */
3844 for (spec = declspecs; spec; spec = TREE_CHAIN (spec))
3846 register int i;
3847 register tree id = TREE_VALUE (spec);
3849 if (id == ridpointers[(int) RID_INT])
3850 explicit_int = 1;
3851 if (id == ridpointers[(int) RID_CHAR])
3852 explicit_char = 1;
3854 if (TREE_CODE (id) == IDENTIFIER_NODE)
3855 for (i = (int) RID_FIRST_MODIFIER; i < (int) RID_MAX; i++)
3857 if (ridpointers[i] == id)
3859 if (i == (int) RID_LONG && specbits & (1<<i))
3861 if (longlong)
3862 error ("`long long long' is too long for GCC");
3863 else
3865 if (pedantic && ! in_system_header && warn_long_long)
3866 pedwarn ("ANSI C does not support `long long'");
3867 longlong = 1;
3870 else if (specbits & (1 << i))
3871 pedwarn ("duplicate `%s'", IDENTIFIER_POINTER (id));
3872 specbits |= 1 << i;
3873 goto found;
3876 if (type)
3877 error ("two or more data types in declaration of `%s'", name);
3878 /* Actual typedefs come to us as TYPE_DECL nodes. */
3879 else if (TREE_CODE (id) == TYPE_DECL)
3881 type = TREE_TYPE (id);
3882 decl_machine_attr = DECL_MACHINE_ATTRIBUTES (id);
3883 typedef_decl = id;
3885 /* Built-in types come as identifiers. */
3886 else if (TREE_CODE (id) == IDENTIFIER_NODE)
3888 register tree t = lookup_name (id);
3889 if (TREE_TYPE (t) == error_mark_node)
3891 else if (!t || TREE_CODE (t) != TYPE_DECL)
3892 error ("`%s' fails to be a typedef or built in type",
3893 IDENTIFIER_POINTER (id));
3894 else
3896 type = TREE_TYPE (t);
3897 typedef_decl = t;
3900 else if (TREE_CODE (id) != ERROR_MARK)
3901 type = id;
3903 found: {}
3906 typedef_type = type;
3907 if (type)
3908 size_varies = C_TYPE_VARIABLE_SIZE (type);
3910 /* No type at all: default to `int', and set DEFAULTED_INT
3911 because it was not a user-defined typedef. */
3913 if (type == 0)
3915 if ((! (specbits & ((1 << (int) RID_LONG) | (1 << (int) RID_SHORT)
3916 | (1 << (int) RID_SIGNED)
3917 | (1 << (int) RID_UNSIGNED))))
3918 /* Don't warn about typedef foo = bar. */
3919 && ! (specbits & (1 << (int) RID_TYPEDEF) && initialized)
3920 && ! in_system_header)
3922 /* Issue a warning if this is an ISO C 99 program or if -Wreturn-type
3923 and this is a function, or if -Wimplicit; prefer the former
3924 warning since it is more explicit. */
3925 if ((warn_implicit_int || warn_return_type) && funcdef_flag)
3926 warn_about_return_type = 1;
3927 else if (warn_implicit_int || flag_isoc99)
3928 warning ("type defaults to `int' in declaration of `%s'", name);
3931 defaulted_int = 1;
3932 type = integer_type_node;
3935 /* Now process the modifiers that were specified
3936 and check for invalid combinations. */
3938 /* Long double is a special combination. */
3940 if ((specbits & 1 << (int) RID_LONG) && ! longlong
3941 && TYPE_MAIN_VARIANT (type) == double_type_node)
3943 specbits &= ~ (1 << (int) RID_LONG);
3944 type = long_double_type_node;
3947 /* Check all other uses of type modifiers. */
3949 if (specbits & ((1 << (int) RID_LONG) | (1 << (int) RID_SHORT)
3950 | (1 << (int) RID_UNSIGNED) | (1 << (int) RID_SIGNED)))
3952 int ok = 0;
3954 if ((specbits & 1 << (int) RID_LONG)
3955 && (specbits & 1 << (int) RID_SHORT))
3956 error ("both long and short specified for `%s'", name);
3957 else if (((specbits & 1 << (int) RID_LONG)
3958 || (specbits & 1 << (int) RID_SHORT))
3959 && explicit_char)
3960 error ("long or short specified with char for `%s'", name);
3961 else if (((specbits & 1 << (int) RID_LONG)
3962 || (specbits & 1 << (int) RID_SHORT))
3963 && TREE_CODE (type) == REAL_TYPE)
3965 static int already = 0;
3967 error ("long or short specified with floating type for `%s'", name);
3968 if (! already && ! pedantic)
3970 error ("the only valid combination is `long double'");
3971 already = 1;
3974 else if ((specbits & 1 << (int) RID_SIGNED)
3975 && (specbits & 1 << (int) RID_UNSIGNED))
3976 error ("both signed and unsigned specified for `%s'", name);
3977 else if (TREE_CODE (type) != INTEGER_TYPE)
3978 error ("long, short, signed or unsigned invalid for `%s'", name);
3979 else
3981 ok = 1;
3982 if (!explicit_int && !defaulted_int && !explicit_char && pedantic)
3984 pedwarn ("long, short, signed or unsigned used invalidly for `%s'",
3985 name);
3986 if (flag_pedantic_errors)
3987 ok = 0;
3991 /* Discard the type modifiers if they are invalid. */
3992 if (! ok)
3994 specbits &= ~((1 << (int) RID_LONG) | (1 << (int) RID_SHORT)
3995 | (1 << (int) RID_UNSIGNED) | (1 << (int) RID_SIGNED));
3996 longlong = 0;
4000 if ((specbits & (1 << (int) RID_COMPLEX))
4001 && TREE_CODE (type) != INTEGER_TYPE && TREE_CODE (type) != REAL_TYPE)
4003 error ("complex invalid for `%s'", name);
4004 specbits &= ~ (1 << (int) RID_COMPLEX);
4007 /* Decide whether an integer type is signed or not.
4008 Optionally treat bitfields as signed by default. */
4009 if (specbits & 1 << (int) RID_UNSIGNED
4010 /* Traditionally, all bitfields are unsigned. */
4011 || (bitfield && flag_traditional
4012 && (! explicit_flag_signed_bitfields || !flag_signed_bitfields))
4013 || (bitfield && ! flag_signed_bitfields
4014 && (explicit_int || defaulted_int || explicit_char
4015 /* A typedef for plain `int' without `signed'
4016 can be controlled just like plain `int'. */
4017 || ! (typedef_decl != 0
4018 && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl)))
4019 && TREE_CODE (type) != ENUMERAL_TYPE
4020 && !(specbits & 1 << (int) RID_SIGNED)))
4022 if (longlong)
4023 type = long_long_unsigned_type_node;
4024 else if (specbits & 1 << (int) RID_LONG)
4025 type = long_unsigned_type_node;
4026 else if (specbits & 1 << (int) RID_SHORT)
4027 type = short_unsigned_type_node;
4028 else if (type == char_type_node)
4029 type = unsigned_char_type_node;
4030 else if (typedef_decl)
4031 type = unsigned_type (type);
4032 else
4033 type = unsigned_type_node;
4035 else if ((specbits & 1 << (int) RID_SIGNED)
4036 && type == char_type_node)
4037 type = signed_char_type_node;
4038 else if (longlong)
4039 type = long_long_integer_type_node;
4040 else if (specbits & 1 << (int) RID_LONG)
4041 type = long_integer_type_node;
4042 else if (specbits & 1 << (int) RID_SHORT)
4043 type = short_integer_type_node;
4045 if (specbits & 1 << (int) RID_COMPLEX)
4047 /* If we just have "complex", it is equivalent to
4048 "complex double", but if any modifiers at all are specified it is
4049 the complex form of TYPE. E.g, "complex short" is
4050 "complex short int". */
4052 if (defaulted_int && ! longlong
4053 && ! (specbits & ((1 << (int) RID_LONG) | (1 << (int) RID_SHORT)
4054 | (1 << (int) RID_SIGNED)
4055 | (1 << (int) RID_UNSIGNED))))
4056 type = complex_double_type_node;
4057 else if (type == integer_type_node)
4058 type = complex_integer_type_node;
4059 else if (type == float_type_node)
4060 type = complex_float_type_node;
4061 else if (type == double_type_node)
4062 type = complex_double_type_node;
4063 else if (type == long_double_type_node)
4064 type = complex_long_double_type_node;
4065 else
4066 type = build_complex_type (type);
4069 /* Figure out the type qualifiers for the declaration. There are
4070 two ways a declaration can become qualified. One is something
4071 like `const int i' where the `const' is explicit. Another is
4072 something like `typedef const int CI; CI i' where the type of the
4073 declaration contains the `const'. */
4074 constp = !! (specbits & 1 << (int) RID_CONST) + TYPE_READONLY (type);
4075 restrictp = !! (specbits & 1 << (int) RID_RESTRICT) + TYPE_RESTRICT (type);
4076 volatilep = !! (specbits & 1 << (int) RID_VOLATILE) + TYPE_VOLATILE (type);
4077 inlinep = !! (specbits & (1 << (int) RID_INLINE));
4078 if (constp > 1)
4079 pedwarn ("duplicate `const'");
4080 if (restrictp > 1)
4081 pedwarn ("duplicate `restrict'");
4082 if (volatilep > 1)
4083 pedwarn ("duplicate `volatile'");
4084 if (! flag_gen_aux_info && (TYPE_QUALS (type)))
4085 type = TYPE_MAIN_VARIANT (type);
4086 type_quals = ((constp ? TYPE_QUAL_CONST : 0)
4087 | (restrictp ? TYPE_QUAL_RESTRICT : 0)
4088 | (volatilep ? TYPE_QUAL_VOLATILE : 0));
4090 /* Warn if two storage classes are given. Default to `auto'. */
4093 int nclasses = 0;
4095 if (specbits & 1 << (int) RID_AUTO) nclasses++;
4096 if (specbits & 1 << (int) RID_STATIC) nclasses++;
4097 if (specbits & 1 << (int) RID_EXTERN) nclasses++;
4098 if (specbits & 1 << (int) RID_REGISTER) nclasses++;
4099 if (specbits & 1 << (int) RID_TYPEDEF) nclasses++;
4100 if (specbits & 1 << (int) RID_ITERATOR) nclasses++;
4102 /* Warn about storage classes that are invalid for certain
4103 kinds of declarations (parameters, typenames, etc.). */
4105 if (nclasses > 1)
4106 error ("multiple storage classes in declaration of `%s'", name);
4107 else if (funcdef_flag
4108 && (specbits
4109 & ((1 << (int) RID_REGISTER)
4110 | (1 << (int) RID_AUTO)
4111 | (1 << (int) RID_TYPEDEF))))
4113 if (specbits & 1 << (int) RID_AUTO
4114 && (pedantic || current_binding_level == global_binding_level))
4115 pedwarn ("function definition declared `auto'");
4116 if (specbits & 1 << (int) RID_REGISTER)
4117 error ("function definition declared `register'");
4118 if (specbits & 1 << (int) RID_TYPEDEF)
4119 error ("function definition declared `typedef'");
4120 specbits &= ~ ((1 << (int) RID_TYPEDEF) | (1 << (int) RID_REGISTER)
4121 | (1 << (int) RID_AUTO));
4123 else if (decl_context != NORMAL && nclasses > 0)
4125 if (decl_context == PARM && specbits & 1 << (int) RID_REGISTER)
4127 else
4129 switch (decl_context)
4131 case FIELD:
4132 error ("storage class specified for structure field `%s'", name);
4133 break;
4134 case PARM:
4135 error ("storage class specified for parameter `%s'", name);
4136 break;
4137 default:
4138 error ("storage class specified for typename");
4139 break;
4141 specbits &= ~ ((1 << (int) RID_TYPEDEF) | (1 << (int) RID_REGISTER)
4142 | (1 << (int) RID_AUTO) | (1 << (int) RID_STATIC)
4143 | (1 << (int) RID_EXTERN));
4146 else if (specbits & 1 << (int) RID_EXTERN && initialized && ! funcdef_flag)
4148 /* `extern' with initialization is invalid if not at top level. */
4149 if (current_binding_level == global_binding_level)
4150 warning ("`%s' initialized and declared `extern'", name);
4151 else
4152 error ("`%s' has both `extern' and initializer", name);
4154 else if (specbits & 1 << (int) RID_EXTERN && funcdef_flag
4155 && current_binding_level != global_binding_level)
4156 error ("nested function `%s' declared `extern'", name);
4157 else if (current_binding_level == global_binding_level
4158 && specbits & (1 << (int) RID_AUTO))
4159 error ("top-level declaration of `%s' specifies `auto'", name);
4160 else if ((specbits & 1 << (int) RID_ITERATOR)
4161 && TREE_CODE (declarator) != IDENTIFIER_NODE)
4163 error ("iterator `%s' has derived type", name);
4164 type = error_mark_node;
4166 else if ((specbits & 1 << (int) RID_ITERATOR)
4167 && TREE_CODE (type) != INTEGER_TYPE)
4169 error ("iterator `%s' has noninteger type", name);
4170 type = error_mark_node;
4174 /* Now figure out the structure of the declarator proper.
4175 Descend through it, creating more complex types, until we reach
4176 the declared identifier (or NULL_TREE, in an absolute declarator). */
4178 while (declarator && TREE_CODE (declarator) != IDENTIFIER_NODE)
4180 if (type == error_mark_node)
4182 declarator = TREE_OPERAND (declarator, 0);
4183 continue;
4186 /* Each level of DECLARATOR is either an ARRAY_REF (for ...[..]),
4187 an INDIRECT_REF (for *...),
4188 a CALL_EXPR (for ...(...)),
4189 an identifier (for the name being declared)
4190 or a null pointer (for the place in an absolute declarator
4191 where the name was omitted).
4192 For the last two cases, we have just exited the loop.
4194 At this point, TYPE is the type of elements of an array,
4195 or for a function to return, or for a pointer to point to.
4196 After this sequence of ifs, TYPE is the type of the
4197 array or function or pointer, and DECLARATOR has had its
4198 outermost layer removed. */
4200 if (TREE_CODE (declarator) == ARRAY_REF)
4202 register tree itype = NULL_TREE;
4203 register tree size = TREE_OPERAND (declarator, 1);
4204 /* The index is a signed object `sizetype' bits wide. */
4205 tree index_type = signed_type (sizetype);
4207 declarator = TREE_OPERAND (declarator, 0);
4209 /* Check for some types that there cannot be arrays of. */
4211 if (TYPE_MAIN_VARIANT (type) == void_type_node)
4213 error ("declaration of `%s' as array of voids", name);
4214 type = error_mark_node;
4217 if (TREE_CODE (type) == FUNCTION_TYPE)
4219 error ("declaration of `%s' as array of functions", name);
4220 type = error_mark_node;
4223 if (size == error_mark_node)
4224 type = error_mark_node;
4226 if (type == error_mark_node)
4227 continue;
4229 /* If size was specified, set ITYPE to a range-type for that size.
4230 Otherwise, ITYPE remains null. finish_decl may figure it out
4231 from an initial value. */
4233 if (size)
4235 /* Strip NON_LVALUE_EXPRs since we aren't using as an lvalue. */
4236 STRIP_TYPE_NOPS (size);
4238 if (TREE_CODE (TREE_TYPE (size)) != INTEGER_TYPE
4239 && TREE_CODE (TREE_TYPE (size)) != ENUMERAL_TYPE)
4241 error ("size of array `%s' has non-integer type", name);
4242 size = integer_one_node;
4245 if (pedantic && integer_zerop (size))
4246 pedwarn ("ANSI C forbids zero-size array `%s'", name);
4248 if (TREE_CODE (size) == INTEGER_CST)
4250 constant_expression_warning (size);
4251 if (tree_int_cst_sgn (size) < 0)
4253 error ("size of array `%s' is negative", name);
4254 size = integer_one_node;
4257 else
4259 /* Make sure the array size remains visibly nonconstant
4260 even if it is (eg) a const variable with known value. */
4261 size_varies = 1;
4263 if (pedantic)
4265 if (TREE_CONSTANT (size))
4266 pedwarn ("ANSI C forbids array `%s' whose size can't be evaluated", name);
4267 else
4268 pedwarn ("ANSI C forbids variable-size array `%s'", name);
4272 /* Convert size to index_type, so that if it is a variable
4273 the computations will be done in the proper mode. */
4274 itype = fold (build (MINUS_EXPR, index_type,
4275 convert (index_type, size),
4276 convert (index_type, size_one_node)));
4278 /* If that overflowed, the array is too big.
4279 ??? While a size of INT_MAX+1 technically shouldn't cause
4280 an overflow (because we subtract 1), the overflow is recorded
4281 during the conversion to index_type, before the subtraction.
4282 Handling this case seems like an unnecessary complication. */
4283 if (TREE_OVERFLOW (itype))
4285 error ("size of array `%s' is too large", name);
4286 type = error_mark_node;
4287 continue;
4290 if (size_varies)
4291 itype = variable_size (itype);
4292 itype = build_index_type (itype);
4295 #if 0 /* This had bad results for pointers to arrays, as in
4296 union incomplete (*foo)[4]; */
4297 /* Complain about arrays of incomplete types, except in typedefs. */
4299 if (TYPE_SIZE (type) == 0
4300 /* Avoid multiple warnings for nested array types. */
4301 && TREE_CODE (type) != ARRAY_TYPE
4302 && !(specbits & (1 << (int) RID_TYPEDEF))
4303 && !C_TYPE_BEING_DEFINED (type))
4304 warning ("array type has incomplete element type");
4305 #endif
4307 #if 0 /* We shouldn't have a function type here at all!
4308 Functions aren't allowed as array elements. */
4309 if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
4310 && (constp || volatilep))
4311 pedwarn ("ANSI C forbids const or volatile function types");
4312 #endif
4314 /* Build the array type itself, then merge any constancy or
4315 volatility into the target type. We must do it in this order
4316 to ensure that the TYPE_MAIN_VARIANT field of the array type
4317 is set correctly. */
4319 type = build_array_type (type, itype);
4320 if (type_quals)
4321 type = c_build_qualified_type (type, type_quals);
4323 #if 0 /* don't clear these; leave them set so that the array type
4324 or the variable is itself const or volatile. */
4325 type_quals = TYPE_UNQUALIFIED;
4326 #endif
4328 if (size_varies)
4329 C_TYPE_VARIABLE_SIZE (type) = 1;
4331 else if (TREE_CODE (declarator) == CALL_EXPR)
4333 tree arg_types;
4335 /* Declaring a function type.
4336 Make sure we have a valid type for the function to return. */
4337 if (type == error_mark_node)
4338 continue;
4340 size_varies = 0;
4342 /* Warn about some types functions can't return. */
4344 if (TREE_CODE (type) == FUNCTION_TYPE)
4346 error ("`%s' declared as function returning a function", name);
4347 type = integer_type_node;
4349 if (TREE_CODE (type) == ARRAY_TYPE)
4351 error ("`%s' declared as function returning an array", name);
4352 type = integer_type_node;
4355 #ifndef TRADITIONAL_RETURN_FLOAT
4356 /* Traditionally, declaring return type float means double. */
4358 if (flag_traditional && TYPE_MAIN_VARIANT (type) == float_type_node)
4359 type = double_type_node;
4360 #endif /* TRADITIONAL_RETURN_FLOAT */
4362 /* Construct the function type and go to the next
4363 inner layer of declarator. */
4365 arg_types = grokparms (TREE_OPERAND (declarator, 1),
4366 funcdef_flag
4367 /* Say it's a definition
4368 only for the CALL_EXPR
4369 closest to the identifier. */
4370 && TREE_CODE (TREE_OPERAND (declarator, 0)) == IDENTIFIER_NODE);
4371 /* Type qualifiers before the return type of the function
4372 qualify the return type, not the function type. */
4373 if (type_quals)
4374 type = c_build_qualified_type (type, type_quals);
4375 type_quals = TYPE_UNQUALIFIED;
4377 type = build_function_type (type, arg_types);
4378 declarator = TREE_OPERAND (declarator, 0);
4380 /* Set the TYPE_CONTEXTs for each tagged type which is local to
4381 the formal parameter list of this FUNCTION_TYPE to point to
4382 the FUNCTION_TYPE node itself. */
4385 register tree link;
4387 for (link = last_function_parm_tags;
4388 link;
4389 link = TREE_CHAIN (link))
4390 TYPE_CONTEXT (TREE_VALUE (link)) = type;
4393 else if (TREE_CODE (declarator) == INDIRECT_REF)
4395 /* Merge any constancy or volatility into the target type
4396 for the pointer. */
4398 if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
4399 && type_quals)
4400 pedwarn ("ANSI C forbids qualified function types");
4401 if (type_quals)
4402 type = c_build_qualified_type (type, type_quals);
4403 type_quals = TYPE_UNQUALIFIED;
4404 size_varies = 0;
4406 type = build_pointer_type (type);
4408 /* Process a list of type modifier keywords
4409 (such as const or volatile) that were given inside the `*'. */
4411 if (TREE_TYPE (declarator))
4413 register tree typemodlist;
4414 int erred = 0;
4416 constp = 0;
4417 volatilep = 0;
4418 restrictp = 0;
4419 for (typemodlist = TREE_TYPE (declarator); typemodlist;
4420 typemodlist = TREE_CHAIN (typemodlist))
4422 tree qualifier = TREE_VALUE (typemodlist);
4424 if (qualifier == ridpointers[(int) RID_CONST])
4425 constp++;
4426 else if (qualifier == ridpointers[(int) RID_VOLATILE])
4427 volatilep++;
4428 else if (qualifier == ridpointers[(int) RID_RESTRICT])
4429 restrictp++;
4430 else if (!erred)
4432 erred = 1;
4433 error ("invalid type modifier within pointer declarator");
4436 if (constp > 1)
4437 pedwarn ("duplicate `const'");
4438 if (volatilep > 1)
4439 pedwarn ("duplicate `volatile'");
4440 if (restrictp > 1)
4441 pedwarn ("duplicate `restrict'");
4443 type_quals = ((constp ? TYPE_QUAL_CONST : 0)
4444 | (restrictp ? TYPE_QUAL_RESTRICT : 0)
4445 | (volatilep ? TYPE_QUAL_VOLATILE : 0));
4448 declarator = TREE_OPERAND (declarator, 0);
4450 else
4451 abort ();
4455 /* Now TYPE has the actual type. */
4457 /* Did array size calculations overflow? */
4459 if (TREE_CODE (type) == ARRAY_TYPE
4460 && TYPE_SIZE (type)
4461 && TREE_OVERFLOW (TYPE_SIZE (type)))
4462 error ("size of array `%s' is too large", name);
4464 /* If this is declaring a typedef name, return a TYPE_DECL. */
4466 if (specbits & (1 << (int) RID_TYPEDEF))
4468 tree decl;
4469 /* Note that the grammar rejects storage classes
4470 in typenames, fields or parameters */
4471 if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
4472 && type_quals)
4473 pedwarn ("ANSI C forbids qualified function types");
4474 if (type_quals)
4475 type = c_build_qualified_type (type, type_quals);
4476 decl = build_decl (TYPE_DECL, declarator, type);
4477 if ((specbits & (1 << (int) RID_SIGNED))
4478 || (typedef_decl && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl)))
4479 C_TYPEDEF_EXPLICITLY_SIGNED (decl) = 1;
4480 return decl;
4483 /* Detect the case of an array type of unspecified size
4484 which came, as such, direct from a typedef name.
4485 We must copy the type, so that each identifier gets
4486 a distinct type, so that each identifier's size can be
4487 controlled separately by its own initializer. */
4489 if (type != 0 && typedef_type != 0
4490 && TYPE_MAIN_VARIANT (type) == TYPE_MAIN_VARIANT (typedef_type)
4491 && TREE_CODE (type) == ARRAY_TYPE && TYPE_DOMAIN (type) == 0)
4493 type = build_array_type (TREE_TYPE (type), 0);
4494 if (size_varies)
4495 C_TYPE_VARIABLE_SIZE (type) = 1;
4498 /* If this is a type name (such as, in a cast or sizeof),
4499 compute the type and return it now. */
4501 if (decl_context == TYPENAME)
4503 /* Note that the grammar rejects storage classes
4504 in typenames, fields or parameters */
4505 if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
4506 && type_quals)
4507 pedwarn ("ANSI C forbids const or volatile function types");
4508 if (type_quals)
4509 type = c_build_qualified_type (type, type_quals);
4510 return type;
4513 /* Aside from typedefs and type names (handle above),
4514 `void' at top level (not within pointer)
4515 is allowed only in public variables.
4516 We don't complain about parms either, but that is because
4517 a better error message can be made later. */
4519 if (TYPE_MAIN_VARIANT (type) == void_type_node && decl_context != PARM
4520 && ! ((decl_context != FIELD && TREE_CODE (type) != FUNCTION_TYPE)
4521 && ((specbits & (1 << (int) RID_EXTERN))
4522 || (current_binding_level == global_binding_level
4523 && !(specbits
4524 & ((1 << (int) RID_STATIC) | (1 << (int) RID_REGISTER)))))))
4526 error ("variable or field `%s' declared void", name);
4527 type = integer_type_node;
4530 /* Now create the decl, which may be a VAR_DECL, a PARM_DECL
4531 or a FUNCTION_DECL, depending on DECL_CONTEXT and TYPE. */
4534 register tree decl;
4536 if (decl_context == PARM)
4538 tree type_as_written = type;
4539 tree promoted_type;
4541 /* A parameter declared as an array of T is really a pointer to T.
4542 One declared as a function is really a pointer to a function. */
4544 if (TREE_CODE (type) == ARRAY_TYPE)
4546 /* Transfer const-ness of array into that of type pointed to. */
4547 type = TREE_TYPE (type);
4548 if (type_quals)
4549 type = c_build_qualified_type (type, type_quals);
4550 type = build_pointer_type (type);
4551 type_quals = TYPE_UNQUALIFIED;
4552 size_varies = 0;
4554 else if (TREE_CODE (type) == FUNCTION_TYPE)
4556 if (pedantic && 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 = build_pointer_type (type);
4561 type_quals = TYPE_UNQUALIFIED;
4564 decl = build_decl (PARM_DECL, declarator, type);
4565 if (size_varies)
4566 C_DECL_VARIABLE_SIZE (decl) = 1;
4568 /* Compute the type actually passed in the parmlist,
4569 for the case where there is no prototype.
4570 (For example, shorts and chars are passed as ints.)
4571 When there is a prototype, this is overridden later. */
4573 if (type == error_mark_node)
4574 promoted_type = type;
4575 else
4577 promoted_type = simple_type_promotes_to (type);
4578 if (! promoted_type)
4579 promoted_type = type;
4582 DECL_ARG_TYPE (decl) = promoted_type;
4583 DECL_ARG_TYPE_AS_WRITTEN (decl) = type_as_written;
4585 else if (decl_context == FIELD)
4587 /* Structure field. It may not be a function. */
4589 if (TREE_CODE (type) == FUNCTION_TYPE)
4591 error ("field `%s' declared as a function", name);
4592 type = build_pointer_type (type);
4594 else if (TREE_CODE (type) != ERROR_MARK && TYPE_SIZE (type) == 0)
4596 error ("field `%s' has incomplete type", name);
4597 type = error_mark_node;
4599 /* Move type qualifiers down to element of an array. */
4600 if (TREE_CODE (type) == ARRAY_TYPE && type_quals)
4602 type = build_array_type (c_build_qualified_type (TREE_TYPE (type),
4603 type_quals),
4604 TYPE_DOMAIN (type));
4605 #if 0 /* Leave the field const or volatile as well. */
4606 type_quals = TYPE_UNQUALIFIED;
4607 #endif
4609 decl = build_decl (FIELD_DECL, declarator, type);
4610 if (size_varies)
4611 C_DECL_VARIABLE_SIZE (decl) = 1;
4613 else if (TREE_CODE (type) == FUNCTION_TYPE)
4615 /* Every function declaration is "external"
4616 except for those which are inside a function body
4617 in which `auto' is used.
4618 That is a case not specified by ANSI C,
4619 and we use it for forward declarations for nested functions. */
4620 int extern_ref = (!(specbits & (1 << (int) RID_AUTO))
4621 || current_binding_level == global_binding_level);
4623 if (specbits & (1 << (int) RID_AUTO)
4624 && (pedantic || current_binding_level == global_binding_level))
4625 pedwarn ("invalid storage class for function `%s'", name);
4626 if (specbits & (1 << (int) RID_REGISTER))
4627 error ("invalid storage class for function `%s'", name);
4628 /* Function declaration not at top level.
4629 Storage classes other than `extern' are not allowed
4630 and `extern' makes no difference. */
4631 if (current_binding_level != global_binding_level
4632 && (specbits & ((1 << (int) RID_STATIC) | (1 << (int) RID_INLINE)))
4633 && pedantic)
4634 pedwarn ("invalid storage class for function `%s'", name);
4636 decl = build_decl (FUNCTION_DECL, declarator, type);
4637 decl = build_decl_attribute_variant (decl, decl_machine_attr);
4639 if (pedantic && type_quals && ! DECL_IN_SYSTEM_HEADER (decl))
4640 pedwarn ("ANSI C forbids qualified function types");
4642 if (pedantic
4643 && TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (decl))) == void_type_node
4644 && TYPE_QUALS (TREE_TYPE (TREE_TYPE (decl)))
4645 && ! DECL_IN_SYSTEM_HEADER (decl))
4646 pedwarn ("ANSI C forbids qualified void function return type");
4648 /* GNU C interprets a `volatile void' return type to indicate
4649 that the function does not return. */
4650 if ((type_quals & TYPE_QUAL_VOLATILE)
4651 && TREE_TYPE (TREE_TYPE (decl)) != void_type_node)
4652 warning ("`noreturn' function returns non-void value");
4654 if (extern_ref)
4655 DECL_EXTERNAL (decl) = 1;
4656 /* Record absence of global scope for `static' or `auto'. */
4657 TREE_PUBLIC (decl)
4658 = !(specbits & ((1 << (int) RID_STATIC) | (1 << (int) RID_AUTO)));
4660 /* Record presence of `inline', if it is reasonable. */
4661 if (inlinep)
4663 if (! strcmp (IDENTIFIER_POINTER (declarator), "main"))
4664 warning ("cannot inline function `main'");
4665 else
4666 /* Assume that otherwise the function can be inlined. */
4667 DECL_INLINE (decl) = 1;
4669 if (specbits & (1 << (int) RID_EXTERN))
4670 current_extern_inline = 1;
4673 else
4675 /* It's a variable. */
4676 /* An uninitialized decl with `extern' is a reference. */
4677 int extern_ref = !initialized && (specbits & (1 << (int) RID_EXTERN));
4679 /* Move type qualifiers down to element of an array. */
4680 if (TREE_CODE (type) == ARRAY_TYPE && type_quals)
4682 type = build_array_type (c_build_qualified_type (TREE_TYPE (type),
4683 type_quals),
4684 TYPE_DOMAIN (type));
4685 #if 0 /* Leave the variable const or volatile as well. */
4686 type_quals = TYPE_UNQUALIFIED;
4687 #endif
4690 decl = build_decl (VAR_DECL, declarator, type);
4691 if (size_varies)
4692 C_DECL_VARIABLE_SIZE (decl) = 1;
4694 if (inlinep)
4695 pedwarn_with_decl (decl, "variable `%s' declared `inline'");
4697 DECL_EXTERNAL (decl) = extern_ref;
4698 /* At top level, the presence of a `static' or `register' storage
4699 class specifier, or the absence of all storage class specifiers
4700 makes this declaration a definition (perhaps tentative). Also,
4701 the absence of both `static' and `register' makes it public. */
4702 if (current_binding_level == global_binding_level)
4704 TREE_PUBLIC (decl)
4705 = !(specbits
4706 & ((1 << (int) RID_STATIC) | (1 << (int) RID_REGISTER)));
4707 TREE_STATIC (decl) = ! DECL_EXTERNAL (decl);
4709 /* Not at top level, only `static' makes a static definition. */
4710 else
4712 TREE_STATIC (decl) = (specbits & (1 << (int) RID_STATIC)) != 0;
4713 TREE_PUBLIC (decl) = DECL_EXTERNAL (decl);
4716 if (specbits & 1 << (int) RID_ITERATOR)
4717 ITERATOR_P (decl) = 1;
4720 /* Record `register' declaration for warnings on &
4721 and in case doing stupid register allocation. */
4723 if (specbits & (1 << (int) RID_REGISTER))
4724 DECL_REGISTER (decl) = 1;
4726 /* Record constancy and volatility. */
4727 c_apply_type_quals_to_decl (type_quals, decl);
4729 /* If a type has volatile components, it should be stored in memory.
4730 Otherwise, the fact that those components are volatile
4731 will be ignored, and would even crash the compiler. */
4732 if (C_TYPE_FIELDS_VOLATILE (TREE_TYPE (decl)))
4733 mark_addressable (decl);
4735 return decl;
4739 /* Decode the parameter-list info for a function type or function definition.
4740 The argument is the value returned by `get_parm_info' (or made in parse.y
4741 if there is an identifier list instead of a parameter decl list).
4742 These two functions are separate because when a function returns
4743 or receives functions then each is called multiple times but the order
4744 of calls is different. The last call to `grokparms' is always the one
4745 that contains the formal parameter names of a function definition.
4747 Store in `last_function_parms' a chain of the decls of parms.
4748 Also store in `last_function_parm_tags' a chain of the struct, union,
4749 and enum tags declared among the parms.
4751 Return a list of arg types to use in the FUNCTION_TYPE for this function.
4753 FUNCDEF_FLAG is nonzero for a function definition, 0 for
4754 a mere declaration. A nonempty identifier-list gets an error message
4755 when FUNCDEF_FLAG is zero. */
4757 static tree
4758 grokparms (parms_info, funcdef_flag)
4759 tree parms_info;
4760 int funcdef_flag;
4762 tree first_parm = TREE_CHAIN (parms_info);
4764 last_function_parms = TREE_PURPOSE (parms_info);
4765 last_function_parm_tags = TREE_VALUE (parms_info);
4767 if (warn_strict_prototypes && first_parm == 0 && !funcdef_flag
4768 && !in_system_header)
4769 warning ("function declaration isn't a prototype");
4771 if (first_parm != 0
4772 && TREE_CODE (TREE_VALUE (first_parm)) == IDENTIFIER_NODE)
4774 if (! funcdef_flag)
4775 pedwarn ("parameter names (without types) in function declaration");
4777 last_function_parms = first_parm;
4778 return 0;
4780 else
4782 tree parm;
4783 tree typelt;
4784 /* We no longer test FUNCDEF_FLAG.
4785 If the arg types are incomplete in a declaration,
4786 they must include undefined tags.
4787 These tags can never be defined in the scope of the declaration,
4788 so the types can never be completed,
4789 and no call can be compiled successfully. */
4790 #if 0
4791 /* In a fcn definition, arg types must be complete. */
4792 if (funcdef_flag)
4793 #endif
4794 for (parm = last_function_parms, typelt = first_parm;
4795 parm;
4796 parm = TREE_CHAIN (parm))
4797 /* Skip over any enumeration constants declared here. */
4798 if (TREE_CODE (parm) == PARM_DECL)
4800 /* Barf if the parameter itself has an incomplete type. */
4801 tree type = TREE_VALUE (typelt);
4802 if (TYPE_SIZE (type) == 0)
4804 if (funcdef_flag && DECL_NAME (parm) != 0)
4805 error ("parameter `%s' has incomplete type",
4806 IDENTIFIER_POINTER (DECL_NAME (parm)));
4807 else
4808 warning ("parameter has incomplete type");
4809 if (funcdef_flag)
4811 TREE_VALUE (typelt) = error_mark_node;
4812 TREE_TYPE (parm) = error_mark_node;
4815 #if 0 /* This has been replaced by parm_tags_warning
4816 which uses a more accurate criterion for what to warn about. */
4817 else
4819 /* Now warn if is a pointer to an incomplete type. */
4820 while (TREE_CODE (type) == POINTER_TYPE
4821 || TREE_CODE (type) == REFERENCE_TYPE)
4822 type = TREE_TYPE (type);
4823 type = TYPE_MAIN_VARIANT (type);
4824 if (TYPE_SIZE (type) == 0)
4826 if (DECL_NAME (parm) != 0)
4827 warning ("parameter `%s' points to incomplete type",
4828 IDENTIFIER_POINTER (DECL_NAME (parm)));
4829 else
4830 warning ("parameter points to incomplete type");
4833 #endif
4834 typelt = TREE_CHAIN (typelt);
4837 return first_parm;
4842 /* Return a tree_list node with info on a parameter list just parsed.
4843 The TREE_PURPOSE is a chain of decls of those parms.
4844 The TREE_VALUE is a list of structure, union and enum tags defined.
4845 The TREE_CHAIN is a list of argument types to go in the FUNCTION_TYPE.
4846 This tree_list node is later fed to `grokparms'.
4848 VOID_AT_END nonzero means append `void' to the end of the type-list.
4849 Zero means the parmlist ended with an ellipsis so don't append `void'. */
4851 tree
4852 get_parm_info (void_at_end)
4853 int void_at_end;
4855 register tree decl, t;
4856 register tree types = 0;
4857 int erred = 0;
4858 tree tags = gettags ();
4859 tree parms = getdecls ();
4860 tree new_parms = 0;
4861 tree order = current_binding_level->parm_order;
4863 /* Just `void' (and no ellipsis) is special. There are really no parms. */
4864 if (void_at_end && parms != 0
4865 && TREE_CHAIN (parms) == 0
4866 && TYPE_MAIN_VARIANT (TREE_TYPE (parms)) == void_type_node
4867 && DECL_NAME (parms) == 0)
4869 parms = NULL_TREE;
4870 storedecls (NULL_TREE);
4871 return tree_cons (NULL_TREE, NULL_TREE,
4872 tree_cons (NULL_TREE, void_type_node, NULL_TREE));
4875 /* Extract enumerator values and other non-parms declared with the parms.
4876 Likewise any forward parm decls that didn't have real parm decls. */
4877 for (decl = parms; decl; )
4879 tree next = TREE_CHAIN (decl);
4881 if (TREE_CODE (decl) != PARM_DECL)
4883 TREE_CHAIN (decl) = new_parms;
4884 new_parms = decl;
4886 else if (TREE_ASM_WRITTEN (decl))
4888 error_with_decl (decl, "parameter `%s' has just a forward declaration");
4889 TREE_CHAIN (decl) = new_parms;
4890 new_parms = decl;
4892 decl = next;
4895 /* Put the parm decls back in the order they were in in the parm list. */
4896 for (t = order; t; t = TREE_CHAIN (t))
4898 if (TREE_CHAIN (t))
4899 TREE_CHAIN (TREE_VALUE (t)) = TREE_VALUE (TREE_CHAIN (t));
4900 else
4901 TREE_CHAIN (TREE_VALUE (t)) = 0;
4904 new_parms = chainon (order ? nreverse (TREE_VALUE (order)) : 0,
4905 new_parms);
4907 /* Store the parmlist in the binding level since the old one
4908 is no longer a valid list. (We have changed the chain pointers.) */
4909 storedecls (new_parms);
4911 for (decl = new_parms; decl; decl = TREE_CHAIN (decl))
4912 /* There may also be declarations for enumerators if an enumeration
4913 type is declared among the parms. Ignore them here. */
4914 if (TREE_CODE (decl) == PARM_DECL)
4916 /* Since there is a prototype,
4917 args are passed in their declared types. */
4918 tree type = TREE_TYPE (decl);
4919 DECL_ARG_TYPE (decl) = type;
4920 if (PROMOTE_PROTOTYPES
4921 && (TREE_CODE (type) == INTEGER_TYPE
4922 || TREE_CODE (type) == ENUMERAL_TYPE)
4923 && TYPE_PRECISION (type) < TYPE_PRECISION (integer_type_node))
4924 DECL_ARG_TYPE (decl) = integer_type_node;
4926 types = tree_cons (NULL_TREE, TREE_TYPE (decl), types);
4927 if (TYPE_MAIN_VARIANT (TREE_VALUE (types)) == void_type_node && ! erred
4928 && DECL_NAME (decl) == 0)
4930 error ("`void' in parameter list must be the entire list");
4931 erred = 1;
4935 if (void_at_end)
4936 return tree_cons (new_parms, tags,
4937 nreverse (tree_cons (NULL_TREE, void_type_node, types)));
4939 return tree_cons (new_parms, tags, nreverse (types));
4942 /* At end of parameter list, warn about any struct, union or enum tags
4943 defined within. Do so because these types cannot ever become complete. */
4945 void
4946 parmlist_tags_warning ()
4948 tree elt;
4949 static int already;
4951 for (elt = current_binding_level->tags; elt; elt = TREE_CHAIN (elt))
4953 enum tree_code code = TREE_CODE (TREE_VALUE (elt));
4954 /* An anonymous union parm type is meaningful as a GNU extension.
4955 So don't warn for that. */
4956 if (code == UNION_TYPE && TREE_PURPOSE (elt) == 0 && !pedantic)
4957 continue;
4958 if (TREE_PURPOSE (elt) != 0)
4959 warning ("`%s %s' declared inside parameter list",
4960 (code == RECORD_TYPE ? "struct"
4961 : code == UNION_TYPE ? "union"
4962 : "enum"),
4963 IDENTIFIER_POINTER (TREE_PURPOSE (elt)));
4964 else
4965 warning ("anonymous %s declared inside parameter list",
4966 (code == RECORD_TYPE ? "struct"
4967 : code == UNION_TYPE ? "union"
4968 : "enum"));
4970 if (! already)
4972 warning ("its scope is only this definition or declaration, which is probably not what you want.");
4973 already = 1;
4978 /* Get the struct, enum or union (CODE says which) with tag NAME.
4979 Define the tag as a forward-reference if it is not defined. */
4981 tree
4982 xref_tag (code, name)
4983 enum tree_code code;
4984 tree name;
4986 /* If a cross reference is requested, look up the type
4987 already defined for this tag and return it. */
4989 register tree ref = lookup_tag (code, name, current_binding_level, 0);
4990 /* Even if this is the wrong type of tag, return what we found.
4991 There will be an error message anyway, from pending_xref_error.
4992 If we create an empty xref just for an invalid use of the type,
4993 the main result is to create lots of superfluous error messages. */
4994 if (ref)
4995 return ref;
4997 /* If no such tag is yet defined, create a forward-reference node
4998 and record it as the "definition".
4999 When a real declaration of this type is found,
5000 the forward-reference will be altered into a real type. */
5002 ref = make_node (code);
5003 if (code == ENUMERAL_TYPE)
5005 /* (In ANSI, Enums can be referred to only if already defined.) */
5006 if (pedantic)
5007 pedwarn ("ANSI C forbids forward references to `enum' types");
5008 /* Give the type a default layout like unsigned int
5009 to avoid crashing if it does not get defined. */
5010 TYPE_MODE (ref) = TYPE_MODE (unsigned_type_node);
5011 TYPE_ALIGN (ref) = TYPE_ALIGN (unsigned_type_node);
5012 TREE_UNSIGNED (ref) = 1;
5013 TYPE_PRECISION (ref) = TYPE_PRECISION (unsigned_type_node);
5014 TYPE_MIN_VALUE (ref) = TYPE_MIN_VALUE (unsigned_type_node);
5015 TYPE_MAX_VALUE (ref) = TYPE_MAX_VALUE (unsigned_type_node);
5018 pushtag (name, ref);
5020 return ref;
5023 /* Make sure that the tag NAME is defined *in the current binding level*
5024 at least as a forward reference.
5025 CODE says which kind of tag NAME ought to be. */
5027 tree
5028 start_struct (code, name)
5029 enum tree_code code;
5030 tree name;
5032 /* If there is already a tag defined at this binding level
5033 (as a forward reference), just return it. */
5035 register tree ref = 0;
5037 if (name != 0)
5038 ref = lookup_tag (code, name, current_binding_level, 1);
5039 if (ref && TREE_CODE (ref) == code)
5041 C_TYPE_BEING_DEFINED (ref) = 1;
5042 TYPE_PACKED (ref) = flag_pack_struct;
5043 if (TYPE_FIELDS (ref))
5044 error ("redefinition of `%s %s'",
5045 code == UNION_TYPE ? "union" : "struct",
5046 IDENTIFIER_POINTER (name));
5048 return ref;
5051 /* Otherwise create a forward-reference just so the tag is in scope. */
5053 ref = make_node (code);
5054 pushtag (name, ref);
5055 C_TYPE_BEING_DEFINED (ref) = 1;
5056 TYPE_PACKED (ref) = flag_pack_struct;
5057 return ref;
5060 /* Process the specs, declarator (NULL if omitted) and width (NULL if omitted)
5061 of a structure component, returning a FIELD_DECL node.
5062 WIDTH is non-NULL for bit fields only, and is an INTEGER_CST node.
5064 This is done during the parsing of the struct declaration.
5065 The FIELD_DECL nodes are chained together and the lot of them
5066 are ultimately passed to `build_struct' to make the RECORD_TYPE node. */
5068 tree
5069 grokfield (filename, line, declarator, declspecs, width)
5070 const char *filename ATTRIBUTE_UNUSED;
5071 int line ATTRIBUTE_UNUSED;
5072 tree declarator, declspecs, width;
5074 tree value;
5076 value = grokdeclarator (declarator, declspecs, width ? BITFIELD : FIELD, 0);
5078 finish_decl (value, NULL_TREE, NULL_TREE);
5079 DECL_INITIAL (value) = width;
5081 maybe_objc_check_decl (value);
5082 return value;
5085 /* Fill in the fields of a RECORD_TYPE or UNION_TYPE node, T.
5086 FIELDLIST is a chain of FIELD_DECL nodes for the fields.
5087 ATTRIBUTES are attributes to be applied to the structure. */
5089 tree
5090 finish_struct (t, fieldlist, attributes)
5091 tree t;
5092 tree fieldlist;
5093 tree attributes;
5095 register tree x;
5096 int toplevel = global_binding_level == current_binding_level;
5098 /* If this type was previously laid out as a forward reference,
5099 make sure we lay it out again. */
5101 TYPE_SIZE (t) = 0;
5103 decl_attributes (t, attributes, NULL_TREE);
5105 /* Nameless union parm types are useful as GCC extension. */
5106 if (! (TREE_CODE (t) == UNION_TYPE && TYPE_NAME (t) == 0) && !pedantic)
5107 /* Otherwise, warn about any struct or union def. in parmlist. */
5108 if (in_parm_level_p ())
5110 if (pedantic)
5111 pedwarn ("%s defined inside parms",
5112 TREE_CODE (t) == UNION_TYPE ? "union" : "structure");
5113 else if (! flag_traditional)
5114 warning ("%s defined inside parms",
5115 TREE_CODE (t) == UNION_TYPE ? "union" : "structure");
5118 if (pedantic)
5120 for (x = fieldlist; x; x = TREE_CHAIN (x))
5121 if (DECL_NAME (x) != 0)
5122 break;
5124 if (x == 0)
5125 pedwarn ("%s has no %smembers",
5126 TREE_CODE (t) == UNION_TYPE ? "union" : "struct",
5127 fieldlist ? "named " : "");
5130 /* Install struct as DECL_CONTEXT of each field decl.
5131 Also process specified field sizes.
5132 Set DECL_FIELD_SIZE to the specified size, or 0 if none specified.
5133 The specified size is found in the DECL_INITIAL.
5134 Store 0 there, except for ": 0" fields (so we can find them
5135 and delete them, below). */
5137 for (x = fieldlist; x; x = TREE_CHAIN (x))
5139 DECL_CONTEXT (x) = t;
5140 DECL_PACKED (x) |= TYPE_PACKED (t);
5141 DECL_FIELD_SIZE (x) = 0;
5143 /* If any field is const, the structure type is pseudo-const. */
5144 if (TREE_READONLY (x))
5145 C_TYPE_FIELDS_READONLY (t) = 1;
5146 else
5148 /* A field that is pseudo-const makes the structure likewise. */
5149 tree t1 = TREE_TYPE (x);
5150 while (TREE_CODE (t1) == ARRAY_TYPE)
5151 t1 = TREE_TYPE (t1);
5152 if ((TREE_CODE (t1) == RECORD_TYPE || TREE_CODE (t1) == UNION_TYPE)
5153 && C_TYPE_FIELDS_READONLY (t1))
5154 C_TYPE_FIELDS_READONLY (t) = 1;
5157 /* Any field that is volatile means variables of this type must be
5158 treated in some ways as volatile. */
5159 if (TREE_THIS_VOLATILE (x))
5160 C_TYPE_FIELDS_VOLATILE (t) = 1;
5162 /* Any field of nominal variable size implies structure is too. */
5163 if (C_DECL_VARIABLE_SIZE (x))
5164 C_TYPE_VARIABLE_SIZE (t) = 1;
5166 /* Detect invalid nested redefinition. */
5167 if (TREE_TYPE (x) == t)
5168 error ("nested redefinition of `%s'",
5169 IDENTIFIER_POINTER (TYPE_NAME (t)));
5171 /* Detect invalid bit-field size. */
5172 if (DECL_INITIAL (x))
5173 STRIP_NOPS (DECL_INITIAL (x));
5174 if (DECL_INITIAL (x))
5176 if (TREE_CODE (DECL_INITIAL (x)) == INTEGER_CST)
5177 constant_expression_warning (DECL_INITIAL (x));
5178 else
5180 error_with_decl (x, "bit-field `%s' width not an integer constant");
5181 DECL_INITIAL (x) = NULL;
5185 /* Detect invalid bit-field type. */
5186 if (DECL_INITIAL (x)
5187 && TREE_CODE (TREE_TYPE (x)) != INTEGER_TYPE
5188 && TREE_CODE (TREE_TYPE (x)) != ENUMERAL_TYPE)
5190 error_with_decl (x, "bit-field `%s' has invalid type");
5191 DECL_INITIAL (x) = NULL;
5193 if (DECL_INITIAL (x) && pedantic
5194 && TYPE_MAIN_VARIANT (TREE_TYPE (x)) != integer_type_node
5195 && TYPE_MAIN_VARIANT (TREE_TYPE (x)) != unsigned_type_node
5196 /* Accept an enum that's equivalent to int or unsigned int. */
5197 && !(TREE_CODE (TREE_TYPE (x)) == ENUMERAL_TYPE
5198 && (TYPE_PRECISION (TREE_TYPE (x))
5199 == TYPE_PRECISION (integer_type_node))))
5200 pedwarn_with_decl (x, "bit-field `%s' type invalid in ANSI C");
5202 /* Detect and ignore out of range field width. */
5203 if (DECL_INITIAL (x))
5205 unsigned HOST_WIDE_INT width = TREE_INT_CST_LOW (DECL_INITIAL (x));
5207 if (tree_int_cst_sgn (DECL_INITIAL (x)) < 0)
5209 DECL_INITIAL (x) = NULL;
5210 error_with_decl (x, "negative width in bit-field `%s'");
5212 else if (TREE_INT_CST_HIGH (DECL_INITIAL (x)) != 0
5213 || width > TYPE_PRECISION (TREE_TYPE (x)))
5215 DECL_INITIAL (x) = NULL;
5216 pedwarn_with_decl (x, "width of `%s' exceeds its type");
5218 else if (width == 0 && DECL_NAME (x) != 0)
5220 error_with_decl (x, "zero width for bit-field `%s'");
5221 DECL_INITIAL (x) = NULL;
5225 /* Process valid field width. */
5226 if (DECL_INITIAL (x))
5228 register int width = TREE_INT_CST_LOW (DECL_INITIAL (x));
5230 if (TREE_CODE (TREE_TYPE (x)) == ENUMERAL_TYPE
5231 && (width < min_precision (TYPE_MIN_VALUE (TREE_TYPE (x)),
5232 TREE_UNSIGNED (TREE_TYPE (x)))
5233 || width < min_precision (TYPE_MAX_VALUE (TREE_TYPE (x)),
5234 TREE_UNSIGNED (TREE_TYPE (x)))))
5235 warning_with_decl (x, "`%s' is narrower than values of its type");
5237 DECL_FIELD_SIZE (x) = width;
5238 DECL_BIT_FIELD (x) = DECL_C_BIT_FIELD (x) = 1;
5239 DECL_INITIAL (x) = NULL;
5241 if (width == 0)
5243 /* field size 0 => force desired amount of alignment. */
5244 #ifdef EMPTY_FIELD_BOUNDARY
5245 DECL_ALIGN (x) = MAX (DECL_ALIGN (x), EMPTY_FIELD_BOUNDARY);
5246 #endif
5247 #ifdef PCC_BITFIELD_TYPE_MATTERS
5248 if (PCC_BITFIELD_TYPE_MATTERS)
5249 DECL_ALIGN (x) = MAX (DECL_ALIGN (x),
5250 TYPE_ALIGN (TREE_TYPE (x)));
5251 #endif
5254 else if (TREE_TYPE (x) != error_mark_node)
5256 unsigned int min_align = (DECL_PACKED (x) ? BITS_PER_UNIT
5257 : TYPE_ALIGN (TREE_TYPE (x)));
5258 /* Non-bit-fields are aligned for their type, except packed
5259 fields which require only BITS_PER_UNIT alignment. */
5260 DECL_ALIGN (x) = MAX (DECL_ALIGN (x), min_align);
5264 /* Now DECL_INITIAL is null on all members. */
5266 /* Delete all duplicate fields from the fieldlist */
5267 for (x = fieldlist; x && TREE_CHAIN (x);)
5268 /* Anonymous fields aren't duplicates. */
5269 if (DECL_NAME (TREE_CHAIN (x)) == 0)
5270 x = TREE_CHAIN (x);
5271 else
5273 register tree y = fieldlist;
5275 while (1)
5277 if (DECL_NAME (y) == DECL_NAME (TREE_CHAIN (x)))
5278 break;
5279 if (y == x)
5280 break;
5281 y = TREE_CHAIN (y);
5283 if (DECL_NAME (y) == DECL_NAME (TREE_CHAIN (x)))
5285 error_with_decl (TREE_CHAIN (x), "duplicate member `%s'");
5286 TREE_CHAIN (x) = TREE_CHAIN (TREE_CHAIN (x));
5288 else x = TREE_CHAIN (x);
5291 /* Now we have the nearly final fieldlist. Record it,
5292 then lay out the structure or union (including the fields). */
5294 TYPE_FIELDS (t) = fieldlist;
5296 layout_type (t);
5298 /* Delete all zero-width bit-fields from the fieldlist */
5300 tree *fieldlistp = &fieldlist;
5301 while (*fieldlistp)
5302 if (TREE_CODE (*fieldlistp) == FIELD_DECL && DECL_INITIAL (*fieldlistp))
5303 *fieldlistp = TREE_CHAIN (*fieldlistp);
5304 else
5305 fieldlistp = &TREE_CHAIN (*fieldlistp);
5308 /* Now we have the truly final field list.
5309 Store it in this type and in the variants. */
5311 TYPE_FIELDS (t) = fieldlist;
5313 for (x = TYPE_MAIN_VARIANT (t); x; x = TYPE_NEXT_VARIANT (x))
5315 TYPE_FIELDS (x) = TYPE_FIELDS (t);
5316 TYPE_LANG_SPECIFIC (x) = TYPE_LANG_SPECIFIC (t);
5317 TYPE_ALIGN (x) = TYPE_ALIGN (t);
5320 /* If this was supposed to be a transparent union, but we can't
5321 make it one, warn and turn off the flag. */
5322 if (TREE_CODE (t) == UNION_TYPE
5323 && TYPE_TRANSPARENT_UNION (t)
5324 && TYPE_MODE (t) != DECL_MODE (TYPE_FIELDS (t)))
5326 TYPE_TRANSPARENT_UNION (t) = 0;
5327 warning ("union cannot be made transparent");
5330 /* If this structure or union completes the type of any previous
5331 variable declaration, lay it out and output its rtl. */
5333 if (current_binding_level->n_incomplete != 0)
5335 tree decl;
5336 for (decl = current_binding_level->names; decl; decl = TREE_CHAIN (decl))
5338 if (TREE_TYPE (decl) == t
5339 && TREE_CODE (decl) != TYPE_DECL)
5341 layout_decl (decl, 0);
5342 /* This is a no-op in c-lang.c or something real in objc-actions.c. */
5343 maybe_objc_check_decl (decl);
5344 rest_of_decl_compilation (decl, NULL_PTR, toplevel, 0);
5345 if (! toplevel)
5346 expand_decl (decl);
5347 --current_binding_level->n_incomplete;
5349 else if (TYPE_SIZE (TREE_TYPE (decl)) == 0
5350 && TREE_CODE (TREE_TYPE (decl)) == ARRAY_TYPE)
5352 tree element = TREE_TYPE (decl);
5353 while (TREE_CODE (element) == ARRAY_TYPE)
5354 element = TREE_TYPE (element);
5355 if (element == t)
5356 layout_array_type (TREE_TYPE (decl));
5361 /* Finish debugging output for this type. */
5362 rest_of_type_compilation (t, toplevel);
5364 return t;
5367 /* Lay out the type T, and its element type, and so on. */
5369 static void
5370 layout_array_type (t)
5371 tree t;
5373 if (TREE_CODE (TREE_TYPE (t)) == ARRAY_TYPE)
5374 layout_array_type (TREE_TYPE (t));
5375 layout_type (t);
5378 /* Begin compiling the definition of an enumeration type.
5379 NAME is its name (or null if anonymous).
5380 Returns the type object, as yet incomplete.
5381 Also records info about it so that build_enumerator
5382 may be used to declare the individual values as they are read. */
5384 tree
5385 start_enum (name)
5386 tree name;
5388 register tree enumtype = 0;
5390 /* If this is the real definition for a previous forward reference,
5391 fill in the contents in the same object that used to be the
5392 forward reference. */
5394 if (name != 0)
5395 enumtype = lookup_tag (ENUMERAL_TYPE, name, current_binding_level, 1);
5397 if (enumtype == 0 || TREE_CODE (enumtype) != ENUMERAL_TYPE)
5399 enumtype = make_node (ENUMERAL_TYPE);
5400 pushtag (name, enumtype);
5403 C_TYPE_BEING_DEFINED (enumtype) = 1;
5405 if (TYPE_VALUES (enumtype) != 0)
5407 /* This enum is a named one that has been declared already. */
5408 error ("redeclaration of `enum %s'", IDENTIFIER_POINTER (name));
5410 /* Completely replace its old definition.
5411 The old enumerators remain defined, however. */
5412 TYPE_VALUES (enumtype) = 0;
5415 enum_next_value = integer_zero_node;
5416 enum_overflow = 0;
5418 if (flag_short_enums)
5419 TYPE_PACKED (enumtype) = 1;
5421 return enumtype;
5424 /* After processing and defining all the values of an enumeration type,
5425 install their decls in the enumeration type and finish it off.
5426 ENUMTYPE is the type object, VALUES a list of decl-value pairs,
5427 and ATTRIBUTES are the specified attributes.
5428 Returns ENUMTYPE. */
5430 tree
5431 finish_enum (enumtype, values, attributes)
5432 tree enumtype;
5433 tree values;
5434 tree attributes;
5436 register tree pair, tem;
5437 tree minnode = 0, maxnode = 0;
5438 int precision, unsign;
5439 int toplevel = (global_binding_level == current_binding_level);
5441 if (in_parm_level_p ())
5442 warning ("enum defined inside parms");
5444 decl_attributes (enumtype, attributes, NULL_TREE);
5446 /* Calculate the maximum value of any enumerator in this type. */
5448 if (values == error_mark_node)
5449 minnode = maxnode = integer_zero_node;
5450 else
5452 minnode = maxnode = TREE_VALUE (values);
5453 for (pair = TREE_CHAIN (values); pair; pair = TREE_CHAIN (pair))
5455 tree value = TREE_VALUE (pair);
5456 if (tree_int_cst_lt (maxnode, value))
5457 maxnode = value;
5458 if (tree_int_cst_lt (value, minnode))
5459 minnode = value;
5463 /* Construct the final type of this enumeration. It is the same
5464 as one of the integral types - the narrowest one that fits, except
5465 that normally we only go as narrow as int - and signed iff any of
5466 the values are negative. */
5467 unsign = (tree_int_cst_sgn (minnode) >= 0);
5468 precision = MAX (min_precision (minnode, unsign),
5469 min_precision (maxnode, unsign));
5470 if (!TYPE_PACKED (enumtype))
5471 precision = MAX (precision, TYPE_PRECISION (integer_type_node));
5472 if (type_for_size (precision, unsign) == 0)
5474 warning ("enumeration values exceed range of largest integer");
5475 precision = TYPE_PRECISION (long_long_integer_type_node);
5478 TYPE_MIN_VALUE (enumtype) = minnode;
5479 TYPE_MAX_VALUE (enumtype) = maxnode;
5480 TYPE_PRECISION (enumtype) = precision;
5481 TREE_UNSIGNED (enumtype) = unsign;
5482 TYPE_SIZE (enumtype) = 0;
5483 layout_type (enumtype);
5485 if (values != error_mark_node)
5487 /* Change the type of the enumerators to be the enum type. We
5488 need to do this irrespective of the size of the enum, for
5489 proper type checking. Replace the DECL_INITIALs of the
5490 enumerators, and the value slots of the list, with copies
5491 that have the enum type; they cannot be modified in place
5492 because they may be shared (e.g. integer_zero_node) Finally,
5493 change the purpose slots to point to the names of the decls. */
5494 for (pair = values; pair; pair = TREE_CHAIN (pair))
5496 tree enu = TREE_PURPOSE (pair);
5498 TREE_TYPE (enu) = enumtype;
5499 DECL_SIZE (enu) = TYPE_SIZE (enumtype);
5500 DECL_ALIGN (enu) = TYPE_ALIGN (enumtype);
5501 DECL_MODE (enu) = TYPE_MODE (enumtype);
5502 DECL_INITIAL (enu) = convert (enumtype, DECL_INITIAL (enu));
5504 TREE_PURPOSE (pair) = DECL_NAME (enu);
5505 TREE_VALUE (pair) = DECL_INITIAL (enu);
5508 TYPE_VALUES (enumtype) = values;
5511 /* Fix up all variant types of this enum type. */
5512 for (tem = TYPE_MAIN_VARIANT (enumtype); tem; tem = TYPE_NEXT_VARIANT (tem))
5514 if (tem == enumtype)
5515 continue;
5516 TYPE_VALUES (tem) = TYPE_VALUES (enumtype);
5517 TYPE_MIN_VALUE (tem) = TYPE_MIN_VALUE (enumtype);
5518 TYPE_MAX_VALUE (tem) = TYPE_MAX_VALUE (enumtype);
5519 TYPE_SIZE (tem) = TYPE_SIZE (enumtype);
5520 TYPE_SIZE_UNIT (tem) = TYPE_SIZE_UNIT (enumtype);
5521 TYPE_MODE (tem) = TYPE_MODE (enumtype);
5522 TYPE_PRECISION (tem) = TYPE_PRECISION (enumtype);
5523 TYPE_ALIGN (tem) = TYPE_ALIGN (enumtype);
5524 TREE_UNSIGNED (tem) = TREE_UNSIGNED (enumtype);
5527 /* Finish debugging output for this type. */
5528 rest_of_type_compilation (enumtype, toplevel);
5530 return enumtype;
5533 /* Build and install a CONST_DECL for one value of the
5534 current enumeration type (one that was begun with start_enum).
5535 Return a tree-list containing the CONST_DECL and its value.
5536 Assignment of sequential values by default is handled here. */
5538 tree
5539 build_enumerator (name, value)
5540 tree name, value;
5542 register tree decl, type;
5544 /* Validate and default VALUE. */
5546 /* Remove no-op casts from the value. */
5547 if (value)
5548 STRIP_TYPE_NOPS (value);
5550 if (value != 0)
5552 if (TREE_CODE (value) == INTEGER_CST)
5554 value = default_conversion (value);
5555 constant_expression_warning (value);
5557 else
5559 error ("enumerator value for `%s' not integer constant",
5560 IDENTIFIER_POINTER (name));
5561 value = 0;
5565 /* Default based on previous value. */
5566 /* It should no longer be possible to have NON_LVALUE_EXPR
5567 in the default. */
5568 if (value == 0)
5570 value = enum_next_value;
5571 if (enum_overflow)
5572 error ("overflow in enumeration values");
5575 if (pedantic && ! int_fits_type_p (value, integer_type_node))
5577 pedwarn ("ANSI C restricts enumerator values to range of `int'");
5578 value = integer_zero_node;
5581 /* Set basis for default for next value. */
5582 enum_next_value = build_binary_op (PLUS_EXPR, value, integer_one_node, 0);
5583 enum_overflow = tree_int_cst_lt (enum_next_value, value);
5585 /* Now create a declaration for the enum value name. */
5587 type = TREE_TYPE (value);
5588 type = type_for_size (MAX (TYPE_PRECISION (type),
5589 TYPE_PRECISION (integer_type_node)),
5590 ((flag_traditional
5591 || TYPE_PRECISION (type) >= TYPE_PRECISION (integer_type_node))
5592 && TREE_UNSIGNED (type)));
5594 decl = build_decl (CONST_DECL, name, type);
5595 DECL_INITIAL (decl) = value;
5596 TREE_TYPE (value) = type;
5597 pushdecl (decl);
5599 return tree_cons (decl, value, NULL_TREE);
5602 /* Create the FUNCTION_DECL for a function definition.
5603 DECLSPECS, DECLARATOR, PREFIX_ATTRIBUTES and ATTRIBUTES are the parts of
5604 the declaration; they describe the function's name and the type it returns,
5605 but twisted together in a fashion that parallels the syntax of C.
5607 This function creates a binding context for the function body
5608 as well as setting up the FUNCTION_DECL in current_function_decl.
5610 Returns 1 on success. If the DECLARATOR is not suitable for a function
5611 (it defines a datum instead), we return 0, which tells
5612 yyparse to report a parse error. */
5615 start_function (declspecs, declarator, prefix_attributes, attributes)
5616 tree declarator, declspecs, prefix_attributes, attributes;
5618 tree decl1, old_decl;
5619 tree restype;
5620 int old_immediate_size_expand = immediate_size_expand;
5622 current_function_returns_value = 0; /* Assume, until we see it does. */
5623 current_function_returns_null = 0;
5624 warn_about_return_type = 0;
5625 current_extern_inline = 0;
5626 c_function_varargs = 0;
5627 named_labels = 0;
5628 shadowed_labels = 0;
5630 /* Don't expand any sizes in the return type of the function. */
5631 immediate_size_expand = 0;
5633 decl1 = grokdeclarator (declarator, declspecs, FUNCDEF, 1);
5635 /* If the declarator is not suitable for a function definition,
5636 cause a syntax error. */
5637 if (decl1 == 0)
5639 immediate_size_expand = old_immediate_size_expand;
5640 return 0;
5643 decl_attributes (decl1, prefix_attributes, attributes);
5645 announce_function (decl1);
5647 if (TYPE_SIZE (TREE_TYPE (TREE_TYPE (decl1))) == 0)
5649 error ("return-type is an incomplete type");
5650 /* Make it return void instead. */
5651 TREE_TYPE (decl1)
5652 = build_function_type (void_type_node,
5653 TYPE_ARG_TYPES (TREE_TYPE (decl1)));
5656 if (warn_about_return_type)
5657 warning ("return-type defaults to `int'");
5659 /* Save the parm names or decls from this function's declarator
5660 where store_parm_decls will find them. */
5661 current_function_parms = last_function_parms;
5662 current_function_parm_tags = last_function_parm_tags;
5664 /* Make the init_value nonzero so pushdecl knows this is not tentative.
5665 error_mark_node is replaced below (in poplevel) with the BLOCK. */
5666 DECL_INITIAL (decl1) = error_mark_node;
5668 /* If this definition isn't a prototype and we had a prototype declaration
5669 before, copy the arg type info from that prototype.
5670 But not if what we had before was a builtin function. */
5671 old_decl = lookup_name_current_level (DECL_NAME (decl1));
5672 if (old_decl != 0 && TREE_CODE (TREE_TYPE (old_decl)) == FUNCTION_TYPE
5673 && !DECL_BUILT_IN (old_decl)
5674 && (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (decl1)))
5675 == TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (old_decl))))
5676 && TYPE_ARG_TYPES (TREE_TYPE (decl1)) == 0)
5678 TREE_TYPE (decl1) = TREE_TYPE (old_decl);
5679 current_function_prototype_file = DECL_SOURCE_FILE (old_decl);
5680 current_function_prototype_line = DECL_SOURCE_LINE (old_decl);
5683 /* If there is no explicit declaration, look for any out-of-scope implicit
5684 declarations. */
5685 if (old_decl == 0)
5686 old_decl = IDENTIFIER_IMPLICIT_DECL (DECL_NAME (decl1));
5688 /* Optionally warn of old-fashioned def with no previous prototype. */
5689 if (warn_strict_prototypes
5690 && TYPE_ARG_TYPES (TREE_TYPE (decl1)) == 0
5691 && !(old_decl != 0 && TYPE_ARG_TYPES (TREE_TYPE (old_decl)) != 0))
5692 warning ("function declaration isn't a prototype");
5693 /* Optionally warn of any global def with no previous prototype. */
5694 else if (warn_missing_prototypes
5695 && TREE_PUBLIC (decl1)
5696 && !(old_decl != 0 && TYPE_ARG_TYPES (TREE_TYPE (old_decl)) != 0)
5697 && strcmp ("main", IDENTIFIER_POINTER (DECL_NAME (decl1))))
5698 warning_with_decl (decl1, "no previous prototype for `%s'");
5699 /* Optionally warn of any def with no previous prototype
5700 if the function has already been used. */
5701 else if (warn_missing_prototypes
5702 && old_decl != 0 && TREE_USED (old_decl)
5703 && TYPE_ARG_TYPES (TREE_TYPE (old_decl)) == 0)
5704 warning_with_decl (decl1,
5705 "`%s' was used with no prototype before its definition");
5706 /* Optionally warn of any global def with no previous declaration. */
5707 else if (warn_missing_declarations
5708 && TREE_PUBLIC (decl1)
5709 && old_decl == 0
5710 && strcmp ("main", IDENTIFIER_POINTER (DECL_NAME (decl1))))
5711 warning_with_decl (decl1, "no previous declaration for `%s'");
5712 /* Optionally warn of any def with no previous declaration
5713 if the function has already been used. */
5714 else if (warn_missing_declarations
5715 && old_decl != 0 && TREE_USED (old_decl)
5716 && old_decl == IDENTIFIER_IMPLICIT_DECL (DECL_NAME (decl1)))
5717 warning_with_decl (decl1,
5718 "`%s' was used with no declaration before its definition");
5720 /* This is a definition, not a reference.
5721 So normally clear DECL_EXTERNAL.
5722 However, `extern inline' acts like a declaration
5723 except for defining how to inline. So set DECL_EXTERNAL in that case. */
5724 DECL_EXTERNAL (decl1) = current_extern_inline;
5726 #ifdef SET_DEFAULT_DECL_ATTRIBUTES
5727 SET_DEFAULT_DECL_ATTRIBUTES (decl1, attributes);
5728 #endif
5730 /* This function exists in static storage.
5731 (This does not mean `static' in the C sense!) */
5732 TREE_STATIC (decl1) = 1;
5734 /* A nested function is not global. */
5735 if (current_function_decl != 0)
5736 TREE_PUBLIC (decl1) = 0;
5738 /* Warn for unlikely, improbable, or stupid declarations of `main'. */
5739 if (warn_main > 0
5740 && strcmp ("main", IDENTIFIER_POINTER (DECL_NAME (decl1))) == 0)
5742 tree args;
5743 int argct = 0;
5745 if (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (decl1)))
5746 != integer_type_node)
5747 pedwarn_with_decl (decl1, "return type of `%s' is not `int'");
5749 for (args = TYPE_ARG_TYPES (TREE_TYPE (decl1)); args;
5750 args = TREE_CHAIN (args))
5752 tree type = args ? TREE_VALUE (args) : 0;
5754 if (type == void_type_node)
5755 break;
5757 ++argct;
5758 switch (argct)
5760 case 1:
5761 if (TYPE_MAIN_VARIANT (type) != integer_type_node)
5762 pedwarn_with_decl (decl1,
5763 "first argument of `%s' should be `int'");
5764 break;
5766 case 2:
5767 if (TREE_CODE (type) != POINTER_TYPE
5768 || TREE_CODE (TREE_TYPE (type)) != POINTER_TYPE
5769 || (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (type)))
5770 != char_type_node))
5771 pedwarn_with_decl (decl1,
5772 "second argument of `%s' should be `char **'");
5773 break;
5775 case 3:
5776 if (TREE_CODE (type) != POINTER_TYPE
5777 || TREE_CODE (TREE_TYPE (type)) != POINTER_TYPE
5778 || (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (type)))
5779 != char_type_node))
5780 pedwarn_with_decl (decl1,
5781 "third argument of `%s' should probably be `char **'");
5782 break;
5786 /* It is intentional that this message does not mention the third
5787 argument, which is warned for only pedantically, because it's
5788 blessed by mention in an appendix of the standard. */
5789 if (argct > 0 && (argct < 2 || argct > 3))
5790 pedwarn_with_decl (decl1, "`%s' takes only zero or two arguments");
5792 if (argct == 3 && pedantic)
5793 pedwarn_with_decl (decl1, "third argument of `%s' is deprecated");
5795 if (! TREE_PUBLIC (decl1))
5796 pedwarn_with_decl (decl1, "`%s' is normally a non-static function");
5799 /* Record the decl so that the function name is defined.
5800 If we already have a decl for this name, and it is a FUNCTION_DECL,
5801 use the old decl. */
5803 current_function_decl = pushdecl (decl1);
5805 pushlevel (0);
5806 declare_parm_level (1);
5807 current_binding_level->subblocks_tag_transparent = 1;
5809 make_function_rtl (current_function_decl);
5811 restype = TREE_TYPE (TREE_TYPE (current_function_decl));
5812 /* Promote the value to int before returning it. */
5813 if (C_PROMOTING_INTEGER_TYPE_P (restype))
5815 /* It retains unsignedness if traditional
5816 or if not really getting wider. */
5817 if (TREE_UNSIGNED (restype)
5818 && (flag_traditional
5819 || (TYPE_PRECISION (restype)
5820 == TYPE_PRECISION (integer_type_node))))
5821 restype = unsigned_type_node;
5822 else
5823 restype = integer_type_node;
5825 DECL_RESULT (current_function_decl)
5826 = build_decl (RESULT_DECL, NULL_TREE, restype);
5828 /* If this fcn was already referenced via a block-scope `extern' decl
5829 (or an implicit decl), propagate certain information about the usage. */
5830 if (TREE_ADDRESSABLE (DECL_ASSEMBLER_NAME (current_function_decl)))
5831 TREE_ADDRESSABLE (current_function_decl) = 1;
5833 immediate_size_expand = old_immediate_size_expand;
5835 return 1;
5838 /* Record that this function is going to be a varargs function.
5839 This is called before store_parm_decls, which is too early
5840 to call mark_varargs directly. */
5842 void
5843 c_mark_varargs ()
5845 c_function_varargs = 1;
5848 /* Store the parameter declarations into the current function declaration.
5849 This is called after parsing the parameter declarations, before
5850 digesting the body of the function.
5852 For an old-style definition, modify the function's type
5853 to specify at least the number of arguments. */
5855 void
5856 store_parm_decls ()
5858 register tree fndecl = current_function_decl;
5859 register tree parm;
5861 /* This is either a chain of PARM_DECLs (if a prototype was used)
5862 or a list of IDENTIFIER_NODEs (for an old-fashioned C definition). */
5863 tree specparms = current_function_parms;
5865 /* This is a list of types declared among parms in a prototype. */
5866 tree parmtags = current_function_parm_tags;
5868 /* This is a chain of PARM_DECLs from old-style parm declarations. */
5869 register tree parmdecls = getdecls ();
5871 /* This is a chain of any other decls that came in among the parm
5872 declarations. If a parm is declared with enum {foo, bar} x;
5873 then CONST_DECLs for foo and bar are put here. */
5874 tree nonparms = 0;
5876 /* Nonzero if this definition is written with a prototype. */
5877 int prototype = 0;
5879 if (specparms != 0 && TREE_CODE (specparms) != TREE_LIST)
5881 /* This case is when the function was defined with an ANSI prototype.
5882 The parms already have decls, so we need not do anything here
5883 except record them as in effect
5884 and complain if any redundant old-style parm decls were written. */
5886 register tree next;
5887 tree others = 0;
5889 prototype = 1;
5891 if (parmdecls != 0)
5893 tree decl, link;
5895 error_with_decl (fndecl,
5896 "parm types given both in parmlist and separately");
5897 /* Get rid of the erroneous decls; don't keep them on
5898 the list of parms, since they might not be PARM_DECLs. */
5899 for (decl = current_binding_level->names;
5900 decl; decl = TREE_CHAIN (decl))
5901 if (DECL_NAME (decl))
5902 IDENTIFIER_LOCAL_VALUE (DECL_NAME (decl)) = 0;
5903 for (link = current_binding_level->shadowed;
5904 link; link = TREE_CHAIN (link))
5905 IDENTIFIER_LOCAL_VALUE (TREE_PURPOSE (link)) = TREE_VALUE (link);
5906 current_binding_level->names = 0;
5907 current_binding_level->shadowed = 0;
5910 specparms = nreverse (specparms);
5911 for (parm = specparms; parm; parm = next)
5913 next = TREE_CHAIN (parm);
5914 if (TREE_CODE (parm) == PARM_DECL)
5916 if (DECL_NAME (parm) == 0)
5917 error_with_decl (parm, "parameter name omitted");
5918 else if (TYPE_MAIN_VARIANT (TREE_TYPE (parm)) == void_type_node)
5920 error_with_decl (parm, "parameter `%s' declared void");
5921 /* Change the type to error_mark_node so this parameter
5922 will be ignored by assign_parms. */
5923 TREE_TYPE (parm) = error_mark_node;
5925 pushdecl (parm);
5927 else
5929 /* If we find an enum constant or a type tag,
5930 put it aside for the moment. */
5931 TREE_CHAIN (parm) = 0;
5932 others = chainon (others, parm);
5936 /* Get the decls in their original chain order
5937 and record in the function. */
5938 DECL_ARGUMENTS (fndecl) = getdecls ();
5940 #if 0
5941 /* If this function takes a variable number of arguments,
5942 add a phony parameter to the end of the parm list,
5943 to represent the position of the first unnamed argument. */
5944 if (TREE_VALUE (tree_last (TYPE_ARG_TYPES (TREE_TYPE (fndecl))))
5945 != void_type_node)
5947 tree dummy = build_decl (PARM_DECL, NULL_TREE, void_type_node);
5948 /* Let's hope the address of the unnamed parm
5949 won't depend on its type. */
5950 TREE_TYPE (dummy) = integer_type_node;
5951 DECL_ARG_TYPE (dummy) = integer_type_node;
5952 DECL_ARGUMENTS (fndecl)
5953 = chainon (DECL_ARGUMENTS (fndecl), dummy);
5955 #endif
5957 /* Now pushdecl the enum constants. */
5958 for (parm = others; parm; parm = next)
5960 next = TREE_CHAIN (parm);
5961 if (DECL_NAME (parm) == 0)
5963 else if (TYPE_MAIN_VARIANT (TREE_TYPE (parm)) == void_type_node)
5965 else if (TREE_CODE (parm) != PARM_DECL)
5966 pushdecl (parm);
5969 storetags (chainon (parmtags, gettags ()));
5971 else
5973 /* SPECPARMS is an identifier list--a chain of TREE_LIST nodes
5974 each with a parm name as the TREE_VALUE.
5976 PARMDECLS is a chain of declarations for parameters.
5977 Warning! It can also contain CONST_DECLs which are not parameters
5978 but are names of enumerators of any enum types
5979 declared among the parameters.
5981 First match each formal parameter name with its declaration.
5982 Associate decls with the names and store the decls
5983 into the TREE_PURPOSE slots. */
5985 for (parm = parmdecls; parm; parm = TREE_CHAIN (parm))
5986 DECL_RESULT (parm) = 0;
5988 for (parm = specparms; parm; parm = TREE_CHAIN (parm))
5990 register tree tail, found = NULL;
5992 if (TREE_VALUE (parm) == 0)
5994 error_with_decl (fndecl, "parameter name missing from parameter list");
5995 TREE_PURPOSE (parm) = 0;
5996 continue;
5999 /* See if any of the parmdecls specifies this parm by name.
6000 Ignore any enumerator decls. */
6001 for (tail = parmdecls; tail; tail = TREE_CHAIN (tail))
6002 if (DECL_NAME (tail) == TREE_VALUE (parm)
6003 && TREE_CODE (tail) == PARM_DECL)
6005 found = tail;
6006 break;
6009 /* If declaration already marked, we have a duplicate name.
6010 Complain, and don't use this decl twice. */
6011 if (found && DECL_RESULT (found) != 0)
6013 error_with_decl (found, "multiple parameters named `%s'");
6014 found = 0;
6017 /* If the declaration says "void", complain and ignore it. */
6018 if (found && TYPE_MAIN_VARIANT (TREE_TYPE (found)) == void_type_node)
6020 error_with_decl (found, "parameter `%s' declared void");
6021 TREE_TYPE (found) = integer_type_node;
6022 DECL_ARG_TYPE (found) = integer_type_node;
6023 layout_decl (found, 0);
6026 /* Traditionally, a parm declared float is actually a double. */
6027 if (found && flag_traditional
6028 && TYPE_MAIN_VARIANT (TREE_TYPE (found)) == float_type_node)
6030 TREE_TYPE (found) = double_type_node;
6031 DECL_ARG_TYPE (found) = double_type_node;
6032 layout_decl (found, 0);
6035 /* If no declaration found, default to int. */
6036 if (!found)
6038 found = build_decl (PARM_DECL, TREE_VALUE (parm),
6039 integer_type_node);
6040 DECL_ARG_TYPE (found) = TREE_TYPE (found);
6041 DECL_SOURCE_LINE (found) = DECL_SOURCE_LINE (fndecl);
6042 DECL_SOURCE_FILE (found) = DECL_SOURCE_FILE (fndecl);
6043 if (extra_warnings)
6044 warning_with_decl (found, "type of `%s' defaults to `int'");
6045 pushdecl (found);
6048 TREE_PURPOSE (parm) = found;
6050 /* Mark this decl as "already found" -- see test, above.
6051 It is safe to use DECL_RESULT for this
6052 since it is not used in PARM_DECLs or CONST_DECLs. */
6053 DECL_RESULT (found) = error_mark_node;
6056 /* Put anything which is on the parmdecls chain and which is
6057 not a PARM_DECL onto the list NONPARMS. (The types of
6058 non-parm things which might appear on the list include
6059 enumerators and NULL-named TYPE_DECL nodes.) Complain about
6060 any actual PARM_DECLs not matched with any names. */
6062 nonparms = 0;
6063 for (parm = parmdecls; parm; )
6065 tree next = TREE_CHAIN (parm);
6066 TREE_CHAIN (parm) = 0;
6068 if (TREE_CODE (parm) != PARM_DECL)
6069 nonparms = chainon (nonparms, parm);
6070 else
6072 /* Complain about args with incomplete types. */
6073 if (TYPE_SIZE (TREE_TYPE (parm)) == 0)
6075 error_with_decl (parm, "parameter `%s' has incomplete type");
6076 TREE_TYPE (parm) = error_mark_node;
6079 if (DECL_RESULT (parm) == 0)
6081 error_with_decl (parm,
6082 "declaration for parameter `%s' but no such parameter");
6083 /* Pretend the parameter was not missing.
6084 This gets us to a standard state and minimizes
6085 further error messages. */
6086 specparms
6087 = chainon (specparms,
6088 tree_cons (parm, NULL_TREE, NULL_TREE));
6092 parm = next;
6095 /* Chain the declarations together in the order of the list of names. */
6096 /* Store that chain in the function decl, replacing the list of names. */
6097 parm = specparms;
6098 DECL_ARGUMENTS (fndecl) = 0;
6100 register tree last;
6101 for (last = 0; parm; parm = TREE_CHAIN (parm))
6102 if (TREE_PURPOSE (parm))
6104 if (last == 0)
6105 DECL_ARGUMENTS (fndecl) = TREE_PURPOSE (parm);
6106 else
6107 TREE_CHAIN (last) = TREE_PURPOSE (parm);
6108 last = TREE_PURPOSE (parm);
6109 TREE_CHAIN (last) = 0;
6113 /* If there was a previous prototype,
6114 set the DECL_ARG_TYPE of each argument according to
6115 the type previously specified, and report any mismatches. */
6117 if (TYPE_ARG_TYPES (TREE_TYPE (fndecl)))
6119 register tree type;
6120 for (parm = DECL_ARGUMENTS (fndecl),
6121 type = TYPE_ARG_TYPES (TREE_TYPE (fndecl));
6122 parm || (type && (TYPE_MAIN_VARIANT (TREE_VALUE (type))
6123 != void_type_node));
6124 parm = TREE_CHAIN (parm), type = TREE_CHAIN (type))
6126 if (parm == 0 || type == 0
6127 || TYPE_MAIN_VARIANT (TREE_VALUE (type)) == void_type_node)
6129 error ("number of arguments doesn't match prototype");
6130 error_with_file_and_line (current_function_prototype_file,
6131 current_function_prototype_line,
6132 "prototype declaration");
6133 break;
6135 /* Type for passing arg must be consistent
6136 with that declared for the arg. */
6137 if (! comptypes (DECL_ARG_TYPE (parm), TREE_VALUE (type)))
6139 if (TYPE_MAIN_VARIANT (TREE_TYPE (parm))
6140 == TYPE_MAIN_VARIANT (TREE_VALUE (type)))
6142 /* Adjust argument to match prototype. E.g. a previous
6143 `int foo(float);' prototype causes
6144 `int foo(x) float x; {...}' to be treated like
6145 `int foo(float x) {...}'. This is particularly
6146 useful for argument types like uid_t. */
6147 DECL_ARG_TYPE (parm) = TREE_TYPE (parm);
6149 if (PROMOTE_PROTOTYPES
6150 && (TREE_CODE (TREE_TYPE (parm)) == INTEGER_TYPE
6151 || TREE_CODE (TREE_TYPE (parm)) == ENUMERAL_TYPE)
6152 && TYPE_PRECISION (TREE_TYPE (parm))
6153 < TYPE_PRECISION (integer_type_node))
6154 DECL_ARG_TYPE (parm) = integer_type_node;
6156 if (pedantic)
6158 pedwarn ("promoted argument `%s' doesn't match prototype",
6159 IDENTIFIER_POINTER (DECL_NAME (parm)));
6160 warning_with_file_and_line
6161 (current_function_prototype_file,
6162 current_function_prototype_line,
6163 "prototype declaration");
6166 /* If -traditional, allow `int' argument to match
6167 `unsigned' prototype. */
6168 else if (! (flag_traditional
6169 && TYPE_MAIN_VARIANT (TREE_TYPE (parm)) == integer_type_node
6170 && TYPE_MAIN_VARIANT (TREE_VALUE (type)) == unsigned_type_node))
6172 error ("argument `%s' doesn't match prototype",
6173 IDENTIFIER_POINTER (DECL_NAME (parm)));
6174 error_with_file_and_line (current_function_prototype_file,
6175 current_function_prototype_line,
6176 "prototype declaration");
6180 TYPE_ACTUAL_ARG_TYPES (TREE_TYPE (fndecl)) = 0;
6183 /* Otherwise, create a prototype that would match. */
6185 else
6187 tree actual = 0, last = 0, type;
6189 for (parm = DECL_ARGUMENTS (fndecl); parm; parm = TREE_CHAIN (parm))
6191 type = tree_cons (NULL_TREE, DECL_ARG_TYPE (parm), NULL_TREE);
6192 if (last)
6193 TREE_CHAIN (last) = type;
6194 else
6195 actual = type;
6196 last = type;
6198 type = tree_cons (NULL_TREE, void_type_node, NULL_TREE);
6199 if (last)
6200 TREE_CHAIN (last) = type;
6201 else
6202 actual = type;
6204 /* We are going to assign a new value for the TYPE_ACTUAL_ARG_TYPES
6205 of the type of this function, but we need to avoid having this
6206 affect the types of other similarly-typed functions, so we must
6207 first force the generation of an identical (but separate) type
6208 node for the relevant function type. The new node we create
6209 will be a variant of the main variant of the original function
6210 type. */
6212 TREE_TYPE (fndecl) = build_type_copy (TREE_TYPE (fndecl));
6214 TYPE_ACTUAL_ARG_TYPES (TREE_TYPE (fndecl)) = actual;
6217 /* Now store the final chain of decls for the arguments
6218 as the decl-chain of the current lexical scope.
6219 Put the enumerators in as well, at the front so that
6220 DECL_ARGUMENTS is not modified. */
6222 storedecls (chainon (nonparms, DECL_ARGUMENTS (fndecl)));
6225 /* Make sure the binding level for the top of the function body
6226 gets a BLOCK if there are any in the function.
6227 Otherwise, the dbx output is wrong. */
6229 keep_next_if_subblocks = 1;
6231 /* ??? This might be an improvement,
6232 but needs to be thought about some more. */
6233 #if 0
6234 keep_next_level_flag = 1;
6235 #endif
6237 /* Write a record describing this function definition to the prototypes
6238 file (if requested). */
6240 gen_aux_info_record (fndecl, 1, 0, prototype);
6242 /* Initialize the RTL code for the function. */
6244 init_function_start (fndecl, input_filename, lineno);
6246 /* If this is a varargs function, inform function.c. */
6248 if (c_function_varargs)
6249 mark_varargs ();
6251 /* Declare __FUNCTION__ and __PRETTY_FUNCTION__ for this function. */
6253 declare_function_name ();
6255 /* Set up parameters and prepare for return, for the function. */
6257 expand_function_start (fndecl, 0);
6259 /* If this function is `main', emit a call to `__main'
6260 to run global initializers, etc. */
6261 if (DECL_NAME (fndecl)
6262 && strcmp (IDENTIFIER_POINTER (DECL_NAME (fndecl)), "main") == 0
6263 && DECL_CONTEXT (fndecl) == NULL_TREE)
6264 expand_main_function ();
6267 /* SPECPARMS is an identifier list--a chain of TREE_LIST nodes
6268 each with a parm name as the TREE_VALUE. A null pointer as TREE_VALUE
6269 stands for an ellipsis in the identifier list.
6271 PARMLIST is the data returned by get_parm_info for the
6272 parmlist that follows the semicolon.
6274 We return a value of the same sort that get_parm_info returns,
6275 except that it describes the combination of identifiers and parmlist. */
6277 tree
6278 combine_parm_decls (specparms, parmlist, void_at_end)
6279 tree specparms, parmlist;
6280 int void_at_end;
6282 register tree fndecl = current_function_decl;
6283 register tree parm;
6285 tree parmdecls = TREE_PURPOSE (parmlist);
6287 /* This is a chain of any other decls that came in among the parm
6288 declarations. They were separated already by get_parm_info,
6289 so we just need to keep them separate. */
6290 tree nonparms = TREE_VALUE (parmlist);
6292 tree types = 0;
6294 for (parm = parmdecls; parm; parm = TREE_CHAIN (parm))
6295 DECL_RESULT (parm) = 0;
6297 for (parm = specparms; parm; parm = TREE_CHAIN (parm))
6299 register tree tail, found = NULL;
6301 /* See if any of the parmdecls specifies this parm by name. */
6302 for (tail = parmdecls; tail; tail = TREE_CHAIN (tail))
6303 if (DECL_NAME (tail) == TREE_VALUE (parm))
6305 found = tail;
6306 break;
6309 /* If declaration already marked, we have a duplicate name.
6310 Complain, and don't use this decl twice. */
6311 if (found && DECL_RESULT (found) != 0)
6313 error_with_decl (found, "multiple parameters named `%s'");
6314 found = 0;
6317 /* If the declaration says "void", complain and ignore it. */
6318 if (found && TYPE_MAIN_VARIANT (TREE_TYPE (found)) == void_type_node)
6320 error_with_decl (found, "parameter `%s' declared void");
6321 TREE_TYPE (found) = integer_type_node;
6322 DECL_ARG_TYPE (found) = integer_type_node;
6323 layout_decl (found, 0);
6326 /* Traditionally, a parm declared float is actually a double. */
6327 if (found && flag_traditional
6328 && TYPE_MAIN_VARIANT (TREE_TYPE (found)) == float_type_node)
6330 TREE_TYPE (found) = double_type_node;
6331 DECL_ARG_TYPE (found) = double_type_node;
6332 layout_decl (found, 0);
6335 /* If no declaration found, default to int. */
6336 if (!found)
6338 found = build_decl (PARM_DECL, TREE_VALUE (parm),
6339 integer_type_node);
6340 DECL_ARG_TYPE (found) = TREE_TYPE (found);
6341 DECL_SOURCE_LINE (found) = DECL_SOURCE_LINE (fndecl);
6342 DECL_SOURCE_FILE (found) = DECL_SOURCE_FILE (fndecl);
6343 error_with_decl (found, "type of parameter `%s' is not declared");
6344 pushdecl (found);
6347 TREE_PURPOSE (parm) = found;
6349 /* Mark this decl as "already found" -- see test, above.
6350 It is safe to use DECL_RESULT for this
6351 since it is not used in PARM_DECLs or CONST_DECLs. */
6352 DECL_RESULT (found) = error_mark_node;
6355 /* Complain about any actual PARM_DECLs not matched with any names. */
6357 for (parm = parmdecls; parm; )
6359 tree next = TREE_CHAIN (parm);
6360 TREE_CHAIN (parm) = 0;
6362 /* Complain about args with incomplete types. */
6363 if (TYPE_SIZE (TREE_TYPE (parm)) == 0)
6365 error_with_decl (parm, "parameter `%s' has incomplete type");
6366 TREE_TYPE (parm) = error_mark_node;
6369 if (DECL_RESULT (parm) == 0)
6371 error_with_decl (parm,
6372 "declaration for parameter `%s' but no such parameter");
6373 /* Pretend the parameter was not missing.
6374 This gets us to a standard state and minimizes
6375 further error messages. */
6376 specparms
6377 = chainon (specparms,
6378 tree_cons (parm, NULL_TREE, NULL_TREE));
6381 parm = next;
6384 /* Chain the declarations together in the order of the list of names.
6385 At the same time, build up a list of their types, in reverse order. */
6387 parm = specparms;
6388 parmdecls = 0;
6390 register tree last;
6391 for (last = 0; parm; parm = TREE_CHAIN (parm))
6392 if (TREE_PURPOSE (parm))
6394 if (last == 0)
6395 parmdecls = TREE_PURPOSE (parm);
6396 else
6397 TREE_CHAIN (last) = TREE_PURPOSE (parm);
6398 last = TREE_PURPOSE (parm);
6399 TREE_CHAIN (last) = 0;
6401 types = tree_cons (NULL_TREE, TREE_TYPE (parm), types);
6405 if (void_at_end)
6406 return tree_cons (parmdecls, nonparms,
6407 nreverse (tree_cons (NULL_TREE, void_type_node, types)));
6409 return tree_cons (parmdecls, nonparms, nreverse (types));
6412 /* Finish up a function declaration and compile that function
6413 all the way to assembler language output. The free the storage
6414 for the function definition.
6416 This is called after parsing the body of the function definition.
6418 NESTED is nonzero if the function being finished is nested in another. */
6420 void
6421 finish_function (nested)
6422 int nested;
6424 register tree fndecl = current_function_decl;
6426 /* TREE_READONLY (fndecl) = 1;
6427 This caused &foo to be of type ptr-to-const-function
6428 which then got a warning when stored in a ptr-to-function variable. */
6430 poplevel (1, 0, 1);
6431 BLOCK_SUPERCONTEXT (DECL_INITIAL (fndecl)) = fndecl;
6433 /* Must mark the RESULT_DECL as being in this function. */
6435 DECL_CONTEXT (DECL_RESULT (fndecl)) = fndecl;
6437 /* Obey `register' declarations if `setjmp' is called in this fn. */
6438 if (flag_traditional && current_function_calls_setjmp)
6440 setjmp_protect (DECL_INITIAL (fndecl));
6441 setjmp_protect_args ();
6444 if (! strcmp (IDENTIFIER_POINTER (DECL_NAME (fndecl)), "main"))
6446 if (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (fndecl)))
6447 != integer_type_node)
6449 /* If warn_main is 1 (-Wmain) or 2 (-Wall), we have already warned.
6450 If warn_main is -1 (-Wno-main) we don't want to be warned. */
6451 if (! warn_main)
6452 pedwarn_with_decl (fndecl, "return type of `%s' is not `int'");
6454 else
6456 #ifdef DEFAULT_MAIN_RETURN
6457 /* Make it so that `main' always returns success by default. */
6458 DEFAULT_MAIN_RETURN;
6459 #endif
6463 /* Generate rtl for function exit. */
6464 expand_function_end (input_filename, lineno, 0);
6466 /* So we can tell if jump_optimize sets it to 1. */
6467 can_reach_end = 0;
6469 /* If this is a nested function, protect the local variables in the stack
6470 above us from being collected while we're compiling this function. */
6471 if (nested)
6472 ggc_push_context ();
6474 /* Run the optimizers and output the assembler code for this function. */
6475 rest_of_compilation (fndecl);
6477 /* Undo the GC context switch. */
6478 if (nested)
6479 ggc_pop_context ();
6481 current_function_returns_null |= can_reach_end;
6483 if (warn_missing_noreturn
6484 && !TREE_THIS_VOLATILE (fndecl)
6485 && !current_function_returns_null
6486 && !current_function_returns_value)
6487 warning ("function might be possible candidate for attribute `noreturn'");
6489 if (TREE_THIS_VOLATILE (fndecl) && current_function_returns_null)
6490 warning ("`noreturn' function does return");
6491 else if (warn_return_type && can_reach_end
6492 && TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (fndecl))) != void_type_node)
6493 /* If this function returns non-void and control can drop through,
6494 complain. */
6495 warning ("control reaches end of non-void function");
6496 /* With just -W, complain only if function returns both with
6497 and without a value. */
6498 else if (extra_warnings
6499 && current_function_returns_value && current_function_returns_null)
6500 warning ("this function may return with or without a value");
6502 /* If requested, warn about function definitions where the function will
6503 return a value (usually of some struct or union type) which itself will
6504 take up a lot of stack space. */
6506 if (warn_larger_than && !DECL_EXTERNAL (fndecl) && TREE_TYPE (fndecl))
6508 register tree ret_type = TREE_TYPE (TREE_TYPE (fndecl));
6510 if (ret_type)
6512 register tree ret_type_size = TYPE_SIZE (ret_type);
6514 if (TREE_CODE (ret_type_size) == INTEGER_CST)
6516 unsigned units
6517 = TREE_INT_CST_LOW (ret_type_size) / BITS_PER_UNIT;
6519 if (units > larger_than_size)
6520 warning_with_decl (fndecl,
6521 "size of return value of `%s' is %u bytes",
6522 units);
6527 if (DECL_SAVED_INSNS (fndecl) == 0 && ! nested)
6529 /* Stop pointing to the local nodes about to be freed. */
6530 /* But DECL_INITIAL must remain nonzero so we know this
6531 was an actual function definition. */
6532 /* For a nested function, this is done in pop_c_function_context. */
6533 /* If rest_of_compilation set this to 0, leave it 0. */
6534 if (DECL_INITIAL (fndecl) != 0)
6535 DECL_INITIAL (fndecl) = error_mark_node;
6536 DECL_ARGUMENTS (fndecl) = 0;
6539 if (DECL_STATIC_CONSTRUCTOR (fndecl))
6541 #ifndef ASM_OUTPUT_CONSTRUCTOR
6542 if (! flag_gnu_linker)
6543 static_ctors = tree_cons (NULL_TREE, fndecl, static_ctors);
6544 else
6545 #endif
6546 assemble_constructor (IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (fndecl)));
6549 if (DECL_STATIC_DESTRUCTOR (fndecl))
6551 #ifndef ASM_OUTPUT_DESTRUCTOR
6552 if (! flag_gnu_linker)
6553 static_dtors = tree_cons (NULL_TREE, fndecl, static_dtors);
6554 else
6555 #endif
6556 assemble_destructor (IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (fndecl)));
6559 if (! nested)
6561 /* Let the error reporting routines know that we're outside a
6562 function. For a nested function, this value is used in
6563 pop_c_function_context and then reset via pop_function_context. */
6564 current_function_decl = NULL;
6568 /* Save and restore the variables in this file and elsewhere
6569 that keep track of the progress of compilation of the current function.
6570 Used for nested functions. */
6572 struct language_function
6574 tree named_labels;
6575 tree shadowed_labels;
6576 int returns_value;
6577 int returns_null;
6578 int warn_about_return_type;
6579 int extern_inline;
6580 struct binding_level *binding_level;
6583 /* Save and reinitialize the variables
6584 used during compilation of a C function. */
6586 void
6587 push_c_function_context (f)
6588 struct function *f;
6590 struct language_function *p;
6591 p = (struct language_function *) xmalloc (sizeof (struct language_function));
6592 f->language = p;
6594 p->named_labels = named_labels;
6595 p->shadowed_labels = shadowed_labels;
6596 p->returns_value = current_function_returns_value;
6597 p->returns_null = current_function_returns_null;
6598 p->warn_about_return_type = warn_about_return_type;
6599 p->extern_inline = current_extern_inline;
6600 p->binding_level = current_binding_level;
6603 /* Restore the variables used during compilation of a C function. */
6605 void
6606 pop_c_function_context (f)
6607 struct function *f;
6609 struct language_function *p = f->language;
6610 tree link;
6612 /* Bring back all the labels that were shadowed. */
6613 for (link = shadowed_labels; link; link = TREE_CHAIN (link))
6614 if (DECL_NAME (TREE_VALUE (link)) != 0)
6615 IDENTIFIER_LABEL_VALUE (DECL_NAME (TREE_VALUE (link)))
6616 = TREE_VALUE (link);
6618 if (DECL_SAVED_INSNS (current_function_decl) == 0)
6620 /* Stop pointing to the local nodes about to be freed. */
6621 /* But DECL_INITIAL must remain nonzero so we know this
6622 was an actual function definition. */
6623 DECL_INITIAL (current_function_decl) = error_mark_node;
6624 DECL_ARGUMENTS (current_function_decl) = 0;
6627 named_labels = p->named_labels;
6628 shadowed_labels = p->shadowed_labels;
6629 current_function_returns_value = p->returns_value;
6630 current_function_returns_null = p->returns_null;
6631 warn_about_return_type = p->warn_about_return_type;
6632 current_extern_inline = p->extern_inline;
6633 current_binding_level = p->binding_level;
6635 free (p);
6636 f->language = 0;
6639 /* Mark the language specific parts of F for GC. */
6640 void
6641 mark_c_function_context (f)
6642 struct function *f;
6644 struct language_function *p = f->language;
6646 if (p == 0)
6647 return;
6649 ggc_mark_tree (p->shadowed_labels);
6650 ggc_mark_tree (p->named_labels);
6651 mark_binding_level (&p->binding_level);
6654 /* integrate_decl_tree calls this function, but since we don't use the
6655 DECL_LANG_SPECIFIC field, this is a no-op. */
6657 void
6658 copy_lang_decl (node)
6659 tree node ATTRIBUTE_UNUSED;
6663 /* Mark ARG for GC. */
6664 void
6665 lang_mark_false_label_stack (arg)
6666 struct label_node *arg;
6668 /* C doesn't use false_label_stack. It better be NULL. */
6669 if (arg != NULL)
6670 abort();
6673 /* Mark the language specific bits in T for GC. */
6674 void
6675 lang_mark_tree (t)
6676 tree t;
6678 if (TREE_CODE (t) == IDENTIFIER_NODE)
6680 struct lang_identifier *i = (struct lang_identifier *) t;
6681 ggc_mark_tree (i->global_value);
6682 ggc_mark_tree (i->local_value);
6683 ggc_mark_tree (i->label_value);
6684 ggc_mark_tree (i->implicit_decl);
6685 ggc_mark_tree (i->error_locus);
6686 ggc_mark_tree (i->limbo_value);
6688 else if (TYPE_P (t) && TYPE_LANG_SPECIFIC (t))
6689 ggc_mark (TYPE_LANG_SPECIFIC (t));