2002-02-06 Aldy Hernandez <aldyh@redhat.com>
[official-gcc.git] / gcc / c-decl.c
blob746fa470dff44c302c24f5f87b009b77f1556486
1 /* Process declarations and variables for C compiler.
2 Copyright (C) 1988, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
3 2001, 2002 Free Software Foundation, Inc.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2, or (at your option) any later
10 version.
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING. If not, write to the Free
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
20 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 "intl.h"
32 #include "tree.h"
33 #include "tree-inline.h"
34 #include "rtl.h"
35 #include "flags.h"
36 #include "function.h"
37 #include "output.h"
38 #include "expr.h"
39 #include "c-tree.h"
40 #include "c-lex.h"
41 #include "toplev.h"
42 #include "ggc.h"
43 #include "tm_p.h"
44 #include "cpplib.h"
45 #include "target.h"
46 #include "debug.h"
47 #include "timevar.h"
48 #include "c-common.h"
50 /* In grokdeclarator, distinguish syntactic contexts of declarators. */
51 enum decl_context
52 { NORMAL, /* Ordinary declaration */
53 FUNCDEF, /* Function definition */
54 PARM, /* Declaration of parm before function body */
55 FIELD, /* Declaration inside struct or union */
56 BITFIELD, /* Likewise but with specified width */
57 TYPENAME}; /* Typename (inside cast or sizeof) */
60 /* Nonzero if we have seen an invalid cross reference
61 to a struct, union, or enum, but not yet printed the message. */
63 tree pending_invalid_xref;
64 /* File and line to appear in the eventual error message. */
65 const char *pending_invalid_xref_file;
66 int pending_invalid_xref_line;
68 /* While defining an enum type, this is 1 plus the last enumerator
69 constant value. Note that will do not have to save this or `enum_overflow'
70 around nested function definition since such a definition could only
71 occur in an enum value expression and we don't use these variables in
72 that case. */
74 static tree enum_next_value;
76 /* Nonzero means that there was overflow computing enum_next_value. */
78 static int enum_overflow;
80 /* Parsing a function declarator leaves a list of parameter names
81 or a chain or parameter decls here. */
83 static tree last_function_parms;
85 /* Parsing a function declarator leaves here a chain of structure
86 and enum types declared in the parmlist. */
88 static tree last_function_parm_tags;
90 /* After parsing the declarator that starts a function definition,
91 `start_function' puts here the list of parameter names or chain of decls.
92 `store_parm_decls' finds it here. */
94 static tree current_function_parms;
96 /* Similar, for last_function_parm_tags. */
97 static tree current_function_parm_tags;
99 /* Similar, for the file and line that the prototype came from if this is
100 an old-style definition. */
101 static const char *current_function_prototype_file;
102 static int current_function_prototype_line;
104 /* The current statement tree. */
106 static struct stmt_tree_s c_stmt_tree;
108 /* The current scope statement stack. */
110 static tree c_scope_stmt_stack;
112 /* A list (chain of TREE_LIST nodes) of all LABEL_DECLs in the function
113 that have names. Here so we can clear out their names' definitions
114 at the end of the function. */
116 static tree named_labels;
118 /* A list of LABEL_DECLs from outer contexts that are currently shadowed. */
120 static tree shadowed_labels;
122 /* Nonzero when store_parm_decls is called indicates a varargs function.
123 Value not meaningful after store_parm_decls. */
125 static int c_function_varargs;
127 /* Set to 0 at beginning of a function definition, set to 1 if
128 a return statement that specifies a return value is seen. */
130 int current_function_returns_value;
132 /* Set to 0 at beginning of a function definition, set to 1 if
133 a return statement with no argument is seen. */
135 int current_function_returns_null;
137 /* Set to 0 at beginning of a function definition, set to 1 if
138 a call to a noreturn function is seen. */
140 int current_function_returns_abnormally;
142 /* Set to nonzero by `grokdeclarator' for a function
143 whose return type is defaulted, if warnings for this are desired. */
145 static int warn_about_return_type;
147 /* Nonzero when starting a function declared `extern inline'. */
149 static int current_extern_inline;
151 /* For each binding contour we allocate a binding_level structure
152 * which records the names defined in that contour.
153 * Contours include:
154 * 0) the global one
155 * 1) one for each function definition,
156 * where internal declarations of the parameters appear.
157 * 2) one for each compound statement,
158 * to record its declarations.
160 * The current meaning of a name can be found by searching the levels from
161 * the current one out to the global one.
164 /* Note that the information in the `names' component of the global contour
165 is duplicated in the IDENTIFIER_GLOBAL_VALUEs of all identifiers. */
167 struct binding_level
169 /* A chain of _DECL nodes for all variables, constants, functions,
170 and typedef types. These are in the reverse of the order supplied.
172 tree names;
174 /* A list of structure, union and enum definitions,
175 * for looking up tag names.
176 * It is a chain of TREE_LIST nodes, each of whose TREE_PURPOSE is a name,
177 * or NULL_TREE; and whose TREE_VALUE is a RECORD_TYPE, UNION_TYPE,
178 * or ENUMERAL_TYPE node.
180 tree tags;
182 /* For each level, a list of shadowed outer-level local definitions
183 to be restored when this level is popped.
184 Each link is a TREE_LIST whose TREE_PURPOSE is an identifier and
185 whose TREE_VALUE is its old definition (a kind of ..._DECL node). */
186 tree shadowed;
188 /* For each level (except not the global one),
189 a chain of BLOCK nodes for all the levels
190 that were entered and exited one level down. */
191 tree blocks;
193 /* The BLOCK node for this level, if one has been preallocated.
194 If 0, the BLOCK is allocated (if needed) when the level is popped. */
195 tree this_block;
197 /* The binding level which this one is contained in (inherits from). */
198 struct binding_level *level_chain;
200 /* Nonzero for the level that holds the parameters of a function. */
201 char parm_flag;
203 /* Nonzero if this level "doesn't exist" for tags. */
204 char tag_transparent;
206 /* Nonzero if sublevels of this level "don't exist" for tags.
207 This is set in the parm level of a function definition
208 while reading the function body, so that the outermost block
209 of the function body will be tag-transparent. */
210 char subblocks_tag_transparent;
212 /* Nonzero means make a BLOCK for this level regardless of all else. */
213 char keep;
215 /* Nonzero means make a BLOCK if this level has any subblocks. */
216 char keep_if_subblocks;
218 /* Number of decls in `names' that have incomplete
219 structure or union types. */
220 int n_incomplete;
222 /* A list of decls giving the (reversed) specified order of parms,
223 not including any forward-decls in the parmlist.
224 This is so we can put the parms in proper order for assign_parms. */
225 tree parm_order;
228 #define NULL_BINDING_LEVEL (struct binding_level *) NULL
230 /* The binding level currently in effect. */
232 static struct binding_level *current_binding_level;
234 /* A chain of binding_level structures awaiting reuse. */
236 static struct binding_level *free_binding_level;
238 /* The outermost binding level, for names of file scope.
239 This is created when the compiler is started and exists
240 through the entire run. */
242 static struct binding_level *global_binding_level;
244 /* Binding level structures are initialized by copying this one. */
246 static struct binding_level clear_binding_level
247 = {NULL, NULL, NULL, NULL, NULL, NULL_BINDING_LEVEL, 0, 0, 0, 0, 0, 0,
248 NULL};
250 /* Nonzero means unconditionally make a BLOCK for the next level pushed. */
252 static int keep_next_level_flag;
254 /* Nonzero means make a BLOCK for the next level pushed
255 if it has subblocks. */
257 static int keep_next_if_subblocks;
259 /* The chain of outer levels of label scopes.
260 This uses the same data structure used for binding levels,
261 but it works differently: each link in the chain records
262 saved values of named_labels and shadowed_labels for
263 a label binding level outside the current one. */
265 static struct binding_level *label_level_chain;
267 /* Functions called automatically at the beginning and end of execution. */
269 tree static_ctors, static_dtors;
271 /* Forward declarations. */
273 static struct binding_level * make_binding_level PARAMS ((void));
274 static void mark_binding_level PARAMS ((void *));
275 static void clear_limbo_values PARAMS ((tree));
276 static int duplicate_decls PARAMS ((tree, tree, int));
277 static int redeclaration_error_message PARAMS ((tree, tree));
278 static void storedecls PARAMS ((tree));
279 static void storetags PARAMS ((tree));
280 static tree lookup_tag PARAMS ((enum tree_code, tree,
281 struct binding_level *, int));
282 static tree lookup_tag_reverse PARAMS ((tree));
283 static tree grokdeclarator PARAMS ((tree, tree, enum decl_context,
284 int));
285 static tree grokparms PARAMS ((tree, int));
286 static void layout_array_type PARAMS ((tree));
287 static tree c_make_fname_decl PARAMS ((tree, int));
288 static void c_expand_body PARAMS ((tree, int, int));
289 static void warn_if_shadowing PARAMS ((tree, tree));
291 /* C-specific option variables. */
293 /* Nonzero means allow type mismatches in conditional expressions;
294 just make their values `void'. */
296 int flag_cond_mismatch;
298 /* Nonzero means don't recognize the keyword `asm'. */
300 int flag_no_asm;
302 /* Nonzero means do some things the same way PCC does. */
304 int flag_traditional;
306 /* Nonzero means enable C89 Amendment 1 features. */
308 int flag_isoc94 = 0;
310 /* Nonzero means use the ISO C99 dialect of C. */
312 int flag_isoc99 = 0;
314 /* Nonzero means that we have builtin functions, and main is an int */
316 int flag_hosted = 1;
318 /* Nonzero means add default format_arg attributes for functions not
319 in ISO C. */
321 int flag_noniso_default_format_attributes = 1;
323 /* Nonzero means to allow single precision math even if we're generally
324 being traditional. */
325 int flag_allow_single_precision = 0;
327 /* Nonzero means to treat bitfields as signed unless they say `unsigned'. */
329 int flag_signed_bitfields = 1;
330 int explicit_flag_signed_bitfields = 0;
332 /* Nonzero means warn about use of implicit int. */
334 int warn_implicit_int;
336 /* Nonzero means warn about usage of long long when `-pedantic'. */
338 int warn_long_long = 1;
340 /* Nonzero means message about use of implicit function declarations;
341 1 means warning; 2 means error. */
343 int mesg_implicit_function_declaration = -1;
345 /* Nonzero means give string constants the type `const char *'
346 to get extra warnings from them. These warnings will be too numerous
347 to be useful, except in thoroughly ANSIfied programs. */
349 int flag_const_strings;
351 /* Nonzero means warn about pointer casts that can drop a type qualifier
352 from the pointer target type. */
354 int warn_cast_qual;
356 /* Nonzero means warn when casting a function call to a type that does
357 not match the return type (e.g. (float)sqrt() or (anything*)malloc()
358 when there is no previous declaration of sqrt or malloc. */
360 int warn_bad_function_cast;
362 /* Warn about functions which might be candidates for format attributes. */
364 int warn_missing_format_attribute;
366 /* Warn about traditional constructs whose meanings changed in ANSI C. */
368 int warn_traditional;
370 /* Nonzero means warn about sizeof(function) or addition/subtraction
371 of function pointers. */
373 int warn_pointer_arith;
375 /* Nonzero means warn for non-prototype function decls
376 or non-prototyped defs without previous prototype. */
378 int warn_strict_prototypes;
380 /* Nonzero means warn for any global function def
381 without separate previous prototype decl. */
383 int warn_missing_prototypes;
385 /* Nonzero means warn for any global function def
386 without separate previous decl. */
388 int warn_missing_declarations;
390 /* Nonzero means warn about multiple (redundant) decls for the same single
391 variable or function. */
393 int warn_redundant_decls = 0;
395 /* Nonzero means warn about extern declarations of objects not at
396 file-scope level and about *all* declarations of functions (whether
397 extern or static) not at file-scope level. Note that we exclude
398 implicit function declarations. To get warnings about those, use
399 -Wimplicit. */
401 int warn_nested_externs = 0;
403 /* Warn about a subscript that has type char. */
405 int warn_char_subscripts = 0;
407 /* Warn if a type conversion is done that might have confusing results. */
409 int warn_conversion;
411 /* Warn if adding () is suggested. */
413 int warn_parentheses;
415 /* Warn if initializer is not completely bracketed. */
417 int warn_missing_braces;
419 /* Warn if main is suspicious. */
421 int warn_main;
423 /* Warn about #pragma directives that are not recognised. */
425 int warn_unknown_pragmas = 0; /* Tri state variable. */
427 /* Warn about comparison of signed and unsigned values.
428 If -1, neither -Wsign-compare nor -Wno-sign-compare has been specified. */
430 int warn_sign_compare = -1;
432 /* Warn about testing equality of floating point numbers. */
434 int warn_float_equal = 0;
436 /* Nonzero means warn about use of multicharacter literals. */
438 int warn_multichar = 1;
440 /* Nonzero means `$' can be in an identifier. */
442 #ifndef DOLLARS_IN_IDENTIFIERS
443 #define DOLLARS_IN_IDENTIFIERS 1
444 #endif
445 int dollars_in_ident = DOLLARS_IN_IDENTIFIERS;
447 /* States indicating how grokdeclarator() should handle declspecs marked
448 with __attribute__((deprecated)). An object declared as
449 __attribute__((deprecated)) suppresses warnings of uses of other
450 deprecated items. */
452 enum deprecated_states {
453 DEPRECATED_NORMAL,
454 DEPRECATED_SUPPRESS
457 static enum deprecated_states deprecated_state = DEPRECATED_NORMAL;
459 /* Decode the string P as a language-specific option for C.
460 Return the number of strings consumed. Should not complain
461 if it does not recognise the option. */
464 c_decode_option (argc, argv)
465 int argc ATTRIBUTE_UNUSED;
466 char **argv;
468 int strings_processed;
469 char *p = argv[0];
471 strings_processed = cpp_handle_option (parse_in, argc, argv, 0);
473 if (!strcmp (p, "-ftraditional") || !strcmp (p, "-traditional"))
475 warning ("-traditional is deprecated and may be removed");
476 flag_traditional = 1;
477 flag_writable_strings = 1;
479 else if (!strcmp (p, "-fallow-single-precision"))
480 flag_allow_single_precision = 1;
481 else if (!strcmp (p, "-fhosted") || !strcmp (p, "-fno-freestanding"))
483 flag_hosted = 1;
484 flag_no_builtin = 0;
486 else if (!strcmp (p, "-ffreestanding") || !strcmp (p, "-fno-hosted"))
488 flag_hosted = 0;
489 flag_no_builtin = 1;
490 /* warn_main will be 2 if set by -Wall, 1 if set by -Wmain */
491 if (warn_main == 2)
492 warn_main = 0;
494 else if (!strcmp (p, "-fnotraditional") || !strcmp (p, "-fno-traditional"))
496 flag_traditional = 0;
497 flag_writable_strings = 0;
499 else if (!strncmp (p, "-std=", 5))
501 /* Select the appropriate language standard. We currently
502 recognize:
503 -std=iso9899:1990 same as -ansi
504 -std=iso9899:199409 ISO C as modified in amend. 1
505 -std=iso9899:1999 ISO C 99
506 -std=c89 same as -std=iso9899:1990
507 -std=c99 same as -std=iso9899:1999
508 -std=gnu89 default, iso9899:1990 + gnu extensions
509 -std=gnu99 iso9899:1999 + gnu extensions
511 const char *const argstart = &p[5];
513 if (!strcmp (argstart, "iso9899:1990")
514 || !strcmp (argstart, "c89"))
516 iso_1990:
517 flag_isoc94 = 0;
518 iso_1994:
519 flag_traditional = 0;
520 flag_writable_strings = 0;
521 flag_no_asm = 1;
522 flag_no_nonansi_builtin = 1;
523 flag_noniso_default_format_attributes = 0;
524 flag_isoc99 = 0;
526 else if (!strcmp (argstart, "iso9899:199409"))
528 flag_isoc94 = 1;
529 goto iso_1994;
531 else if (!strcmp (argstart, "iso9899:199x")
532 || !strcmp (argstart, "iso9899:1999")
533 || !strcmp (argstart, "c9x")
534 || !strcmp (argstart, "c99"))
536 flag_traditional = 0;
537 flag_writable_strings = 0;
538 flag_no_asm = 1;
539 flag_no_nonansi_builtin = 1;
540 flag_noniso_default_format_attributes = 0;
541 flag_isoc99 = 1;
542 flag_isoc94 = 1;
544 else if (!strcmp (argstart, "gnu89"))
546 flag_traditional = 0;
547 flag_writable_strings = 0;
548 flag_no_asm = 0;
549 flag_no_nonansi_builtin = 0;
550 flag_noniso_default_format_attributes = 1;
551 flag_isoc99 = 0;
552 flag_isoc94 = 0;
554 else if (!strcmp (argstart, "gnu9x") || !strcmp (argstart, "gnu99"))
556 flag_traditional = 0;
557 flag_writable_strings = 0;
558 flag_no_asm = 0;
559 flag_no_nonansi_builtin = 0;
560 flag_noniso_default_format_attributes = 1;
561 flag_isoc99 = 1;
562 flag_isoc94 = 1;
564 else
565 error ("unknown C standard `%s'", argstart);
567 else if (!strcmp (p, "-fdollars-in-identifiers"))
568 dollars_in_ident = 1;
569 else if (!strcmp (p, "-fno-dollars-in-identifiers"))
570 dollars_in_ident = 0;
571 else if (!strcmp (p, "-fsigned-char"))
572 flag_signed_char = 1;
573 else if (!strcmp (p, "-funsigned-char"))
574 flag_signed_char = 0;
575 else if (!strcmp (p, "-fno-signed-char"))
576 flag_signed_char = 0;
577 else if (!strcmp (p, "-fno-unsigned-char"))
578 flag_signed_char = 1;
579 else if (!strcmp (p, "-fsigned-bitfields")
580 || !strcmp (p, "-fno-unsigned-bitfields"))
582 flag_signed_bitfields = 1;
583 explicit_flag_signed_bitfields = 1;
585 else if (!strcmp (p, "-funsigned-bitfields")
586 || !strcmp (p, "-fno-signed-bitfields"))
588 flag_signed_bitfields = 0;
589 explicit_flag_signed_bitfields = 1;
591 else if (!strcmp (p, "-fshort-enums"))
592 flag_short_enums = 1;
593 else if (!strcmp (p, "-fno-short-enums"))
594 flag_short_enums = 0;
595 else if (!strcmp (p, "-fshort-wchar"))
596 flag_short_wchar = 1;
597 else if (!strcmp (p, "-fno-short-wchar"))
598 flag_short_wchar = 0;
599 else if (!strcmp (p, "-fcond-mismatch"))
600 flag_cond_mismatch = 1;
601 else if (!strcmp (p, "-fno-cond-mismatch"))
602 flag_cond_mismatch = 0;
603 else if (!strcmp (p, "-fshort-double"))
604 flag_short_double = 1;
605 else if (!strcmp (p, "-fno-short-double"))
606 flag_short_double = 0;
607 else if (!strcmp (p, "-fasm"))
608 flag_no_asm = 0;
609 else if (!strcmp (p, "-fno-asm"))
610 flag_no_asm = 1;
611 else if (!strcmp (p, "-fbuiltin"))
612 flag_no_builtin = 0;
613 else if (!strcmp (p, "-fno-builtin"))
614 flag_no_builtin = 1;
615 else if (!strncmp (p, "-fno-builtin-", strlen ("-fno-builtin-")))
616 disable_builtin_function (p + strlen ("-fno-builtin-"));
617 else if (p[0] == '-' && p[1] == 'f' && dump_switch_p (p + 2))
619 else if (!strcmp (p, "-ansi"))
620 goto iso_1990;
621 else if (!strcmp (p, "-Werror-implicit-function-declaration"))
622 mesg_implicit_function_declaration = 2;
623 else if (!strcmp (p, "-Wimplicit-function-declaration"))
624 mesg_implicit_function_declaration = 1;
625 else if (!strcmp (p, "-Wno-implicit-function-declaration"))
626 mesg_implicit_function_declaration = 0;
627 else if (!strcmp (p, "-Wimplicit-int"))
628 warn_implicit_int = 1;
629 else if (!strcmp (p, "-Wno-implicit-int"))
630 warn_implicit_int = 0;
631 else if (!strcmp (p, "-Wimplicit"))
633 warn_implicit_int = 1;
634 if (mesg_implicit_function_declaration != 2)
635 mesg_implicit_function_declaration = 1;
637 else if (!strcmp (p, "-Wno-implicit"))
638 warn_implicit_int = 0, mesg_implicit_function_declaration = 0;
639 else if (!strcmp (p, "-Wlong-long"))
640 warn_long_long = 1;
641 else if (!strcmp (p, "-Wno-long-long"))
642 warn_long_long = 0;
643 else if (!strcmp (p, "-Wwrite-strings"))
644 flag_const_strings = 1;
645 else if (!strcmp (p, "-Wno-write-strings"))
646 flag_const_strings = 0;
647 else if (!strcmp (p, "-Wcast-qual"))
648 warn_cast_qual = 1;
649 else if (!strcmp (p, "-Wno-cast-qual"))
650 warn_cast_qual = 0;
651 else if (!strcmp (p, "-Wbad-function-cast"))
652 warn_bad_function_cast = 1;
653 else if (!strcmp (p, "-Wno-bad-function-cast"))
654 warn_bad_function_cast = 0;
655 else if (!strcmp (p, "-Wno-missing-noreturn"))
656 warn_missing_noreturn = 0;
657 else if (!strcmp (p, "-Wmissing-format-attribute"))
658 warn_missing_format_attribute = 1;
659 else if (!strcmp (p, "-Wno-missing-format-attribute"))
660 warn_missing_format_attribute = 0;
661 else if (!strcmp (p, "-Wpointer-arith"))
662 warn_pointer_arith = 1;
663 else if (!strcmp (p, "-Wno-pointer-arith"))
664 warn_pointer_arith = 0;
665 else if (!strcmp (p, "-Wstrict-prototypes"))
666 warn_strict_prototypes = 1;
667 else if (!strcmp (p, "-Wno-strict-prototypes"))
668 warn_strict_prototypes = 0;
669 else if (!strcmp (p, "-Wmissing-prototypes"))
670 warn_missing_prototypes = 1;
671 else if (!strcmp (p, "-Wno-missing-prototypes"))
672 warn_missing_prototypes = 0;
673 else if (!strcmp (p, "-Wmissing-declarations"))
674 warn_missing_declarations = 1;
675 else if (!strcmp (p, "-Wno-missing-declarations"))
676 warn_missing_declarations = 0;
677 else if (!strcmp (p, "-Wredundant-decls"))
678 warn_redundant_decls = 1;
679 else if (!strcmp (p, "-Wno-redundant-decls"))
680 warn_redundant_decls = 0;
681 else if (!strcmp (p, "-Wnested-externs"))
682 warn_nested_externs = 1;
683 else if (!strcmp (p, "-Wno-nested-externs"))
684 warn_nested_externs = 0;
685 else if (!strcmp (p, "-Wtraditional"))
686 warn_traditional = 1;
687 else if (!strcmp (p, "-Wno-traditional"))
688 warn_traditional = 0;
689 else if (!strncmp (p, "-Wformat=", 9))
690 set_Wformat (atoi (p + 9));
691 else if (!strcmp (p, "-Wformat"))
692 set_Wformat (1);
693 else if (!strcmp (p, "-Wno-format"))
694 set_Wformat (0);
695 else if (!strcmp (p, "-Wformat-y2k"))
696 warn_format_y2k = 1;
697 else if (!strcmp (p, "-Wno-format-y2k"))
698 warn_format_y2k = 0;
699 else if (!strcmp (p, "-Wformat-extra-args"))
700 warn_format_extra_args = 1;
701 else if (!strcmp (p, "-Wno-format-extra-args"))
702 warn_format_extra_args = 0;
703 else if (!strcmp (p, "-Wformat-nonliteral"))
704 warn_format_nonliteral = 1;
705 else if (!strcmp (p, "-Wno-format-nonliteral"))
706 warn_format_nonliteral = 0;
707 else if (!strcmp (p, "-Wformat-security"))
708 warn_format_security = 1;
709 else if (!strcmp (p, "-Wno-format-security"))
710 warn_format_security = 0;
711 else if (!strcmp (p, "-Wchar-subscripts"))
712 warn_char_subscripts = 1;
713 else if (!strcmp (p, "-Wno-char-subscripts"))
714 warn_char_subscripts = 0;
715 else if (!strcmp (p, "-Wconversion"))
716 warn_conversion = 1;
717 else if (!strcmp (p, "-Wno-conversion"))
718 warn_conversion = 0;
719 else if (!strcmp (p, "-Wparentheses"))
720 warn_parentheses = 1;
721 else if (!strcmp (p, "-Wno-parentheses"))
722 warn_parentheses = 0;
723 else if (!strcmp (p, "-Wreturn-type"))
724 warn_return_type = 1;
725 else if (!strcmp (p, "-Wno-return-type"))
726 warn_return_type = 0;
727 else if (!strcmp (p, "-Wsequence-point"))
728 warn_sequence_point = 1;
729 else if (!strcmp (p, "-Wno-sequence-point"))
730 warn_sequence_point = 0;
731 else if (!strcmp (p, "-Wcomment"))
732 ; /* cpp handles this one. */
733 else if (!strcmp (p, "-Wno-comment"))
734 ; /* cpp handles this one. */
735 else if (!strcmp (p, "-Wcomments"))
736 ; /* cpp handles this one. */
737 else if (!strcmp (p, "-Wno-comments"))
738 ; /* cpp handles this one. */
739 else if (!strcmp (p, "-Wtrigraphs"))
740 ; /* cpp handles this one. */
741 else if (!strcmp (p, "-Wno-trigraphs"))
742 ; /* cpp handles this one. */
743 else if (!strcmp (p, "-Wundef"))
744 ; /* cpp handles this one. */
745 else if (!strcmp (p, "-Wno-undef"))
746 ; /* cpp handles this one. */
747 else if (!strcmp (p, "-Wimport"))
748 ; /* cpp handles this one. */
749 else if (!strcmp (p, "-Wno-import"))
750 ; /* cpp handles this one. */
751 else if (!strcmp (p, "-Wmissing-braces"))
752 warn_missing_braces = 1;
753 else if (!strcmp (p, "-Wno-missing-braces"))
754 warn_missing_braces = 0;
755 else if (!strcmp (p, "-Wmain"))
756 warn_main = 1;
757 else if (!strcmp (p, "-Wno-main"))
758 warn_main = -1;
759 else if (!strcmp (p, "-Wsign-compare"))
760 warn_sign_compare = 1;
761 else if (!strcmp (p, "-Wno-sign-compare"))
762 warn_sign_compare = 0;
763 else if (!strcmp (p, "-Wfloat-equal"))
764 warn_float_equal = 1;
765 else if (!strcmp (p, "-Wno-float-equal"))
766 warn_float_equal = 0;
767 else if (!strcmp (p, "-Wmultichar"))
768 warn_multichar = 1;
769 else if (!strcmp (p, "-Wno-multichar"))
770 warn_multichar = 0;
771 else if (!strcmp (p, "-Wdiv-by-zero"))
772 warn_div_by_zero = 1;
773 else if (!strcmp (p, "-Wno-div-by-zero"))
774 warn_div_by_zero = 0;
775 else if (!strcmp (p, "-Wunknown-pragmas"))
776 /* Set to greater than 1, so that even unknown pragmas in system
777 headers will be warned about. */
778 warn_unknown_pragmas = 2;
779 else if (!strcmp (p, "-Wno-unknown-pragmas"))
780 warn_unknown_pragmas = 0;
781 else if (!strcmp (p, "-Wall"))
783 /* We save the value of warn_uninitialized, since if they put
784 -Wuninitialized on the command line, we need to generate a
785 warning about not using it without also specifying -O. */
786 if (warn_uninitialized != 1)
787 warn_uninitialized = 2;
788 warn_implicit_int = 1;
789 mesg_implicit_function_declaration = 1;
790 warn_return_type = 1;
791 set_Wunused (1);
792 warn_switch = 1;
793 set_Wformat (1);
794 warn_char_subscripts = 1;
795 warn_parentheses = 1;
796 warn_sequence_point = 1;
797 warn_missing_braces = 1;
798 /* We set this to 2 here, but 1 in -Wmain, so -ffreestanding can turn
799 it off only if it's not explicit. */
800 warn_main = 2;
801 /* Only warn about unknown pragmas that are not in system headers. */
802 warn_unknown_pragmas = 1;
804 else
805 return strings_processed;
807 return 1;
810 void
811 c_print_identifier (file, node, indent)
812 FILE *file;
813 tree node;
814 int indent;
816 print_node (file, "global", IDENTIFIER_GLOBAL_VALUE (node), indent + 4);
817 print_node (file, "local", IDENTIFIER_LOCAL_VALUE (node), indent + 4);
818 print_node (file, "label", IDENTIFIER_LABEL_VALUE (node), indent + 4);
819 print_node (file, "implicit", IDENTIFIER_IMPLICIT_DECL (node), indent + 4);
820 print_node (file, "error locus", IDENTIFIER_ERROR_LOCUS (node), indent + 4);
821 print_node (file, "limbo value", IDENTIFIER_LIMBO_VALUE (node), indent + 4);
822 if (C_IS_RESERVED_WORD (node))
824 tree rid = ridpointers[C_RID_CODE (node)];
825 indent_to (file, indent + 4);
826 fprintf (file, "rid ");
827 fprintf (file, HOST_PTR_PRINTF, (void *)rid);
828 fprintf (file, " \"%s\"", IDENTIFIER_POINTER (rid));
832 /* Hook called at end of compilation to assume 1 elt
833 for a top-level tentative array defn that wasn't complete before. */
835 void
836 finish_incomplete_decl (decl)
837 tree decl;
839 if (TREE_CODE (decl) == VAR_DECL)
841 tree type = TREE_TYPE (decl);
842 if (type != error_mark_node
843 && TREE_CODE (type) == ARRAY_TYPE
844 && ! DECL_EXTERNAL (decl)
845 && TYPE_DOMAIN (type) == 0)
847 warning_with_decl (decl, "array `%s' assumed to have one element");
849 complete_array_type (type, NULL_TREE, 1);
851 layout_decl (decl, 0);
856 /* Create a new `struct binding_level'. */
858 static struct binding_level *
859 make_binding_level ()
861 /* NOSTRICT */
862 return (struct binding_level *) xmalloc (sizeof (struct binding_level));
865 /* Nonzero if we are currently in the global binding level. */
868 global_bindings_p ()
870 return current_binding_level == global_binding_level;
873 void
874 keep_next_level ()
876 keep_next_level_flag = 1;
879 /* Nonzero if the current level needs to have a BLOCK made. */
882 kept_level_p ()
884 return ((current_binding_level->keep_if_subblocks
885 && current_binding_level->blocks != 0)
886 || current_binding_level->keep
887 || current_binding_level->names != 0
888 || (current_binding_level->tags != 0
889 && !current_binding_level->tag_transparent));
892 /* Identify this binding level as a level of parameters.
893 DEFINITION_FLAG is 1 for a definition, 0 for a declaration.
894 But it turns out there is no way to pass the right value for
895 DEFINITION_FLAG, so we ignore it. */
897 void
898 declare_parm_level (definition_flag)
899 int definition_flag ATTRIBUTE_UNUSED;
901 current_binding_level->parm_flag = 1;
904 /* Nonzero if currently making parm declarations. */
907 in_parm_level_p ()
909 return current_binding_level->parm_flag;
912 /* Enter a new binding level.
913 If TAG_TRANSPARENT is nonzero, do so only for the name space of variables,
914 not for that of tags. */
916 void
917 pushlevel (tag_transparent)
918 int tag_transparent;
920 struct binding_level *newlevel = NULL_BINDING_LEVEL;
922 /* If this is the top level of a function,
923 just make sure that NAMED_LABELS is 0. */
925 if (current_binding_level == global_binding_level)
927 named_labels = 0;
930 /* Reuse or create a struct for this binding level. */
932 if (free_binding_level)
934 newlevel = free_binding_level;
935 free_binding_level = free_binding_level->level_chain;
937 else
939 newlevel = make_binding_level ();
942 /* Add this level to the front of the chain (stack) of levels that
943 are active. */
945 *newlevel = clear_binding_level;
946 newlevel->tag_transparent
947 = (tag_transparent
948 || (current_binding_level
949 ? current_binding_level->subblocks_tag_transparent
950 : 0));
951 newlevel->level_chain = current_binding_level;
952 current_binding_level = newlevel;
953 newlevel->keep = keep_next_level_flag;
954 keep_next_level_flag = 0;
955 newlevel->keep_if_subblocks = keep_next_if_subblocks;
956 keep_next_if_subblocks = 0;
959 /* Clear the limbo values of all identifiers defined in BLOCK or a subblock. */
961 static void
962 clear_limbo_values (block)
963 tree block;
965 tree tem;
967 for (tem = BLOCK_VARS (block); tem; tem = TREE_CHAIN (tem))
968 if (DECL_NAME (tem) != 0)
969 IDENTIFIER_LIMBO_VALUE (DECL_NAME (tem)) = 0;
971 for (tem = BLOCK_SUBBLOCKS (block); tem; tem = TREE_CHAIN (tem))
972 clear_limbo_values (tem);
975 /* Exit a binding level.
976 Pop the level off, and restore the state of the identifier-decl mappings
977 that were in effect when this level was entered.
979 If KEEP is nonzero, this level had explicit declarations, so
980 and create a "block" (a BLOCK node) for the level
981 to record its declarations and subblocks for symbol table output.
983 If FUNCTIONBODY is nonzero, this level is the body of a function,
984 so create a block as if KEEP were set and also clear out all
985 label names.
987 If REVERSE is nonzero, reverse the order of decls before putting
988 them into the BLOCK. */
990 tree
991 poplevel (keep, reverse, functionbody)
992 int keep;
993 int reverse;
994 int functionbody;
996 tree link;
997 /* The chain of decls was accumulated in reverse order.
998 Put it into forward order, just for cleanliness. */
999 tree decls;
1000 tree tags = current_binding_level->tags;
1001 tree subblocks = current_binding_level->blocks;
1002 tree block = 0;
1003 tree decl;
1004 int block_previously_created;
1006 keep |= current_binding_level->keep;
1008 /* This warning is turned off because it causes warnings for
1009 declarations like `extern struct foo *x'. */
1010 #if 0
1011 /* Warn about incomplete structure types in this level. */
1012 for (link = tags; link; link = TREE_CHAIN (link))
1013 if (!COMPLETE_TYPE_P (TREE_VALUE (link)))
1015 tree type = TREE_VALUE (link);
1016 tree type_name = TYPE_NAME (type);
1017 char *id = IDENTIFIER_POINTER (TREE_CODE (type_name) == IDENTIFIER_NODE
1018 ? type_name
1019 : DECL_NAME (type_name));
1020 switch (TREE_CODE (type))
1022 case RECORD_TYPE:
1023 error ("`struct %s' incomplete in scope ending here", id);
1024 break;
1025 case UNION_TYPE:
1026 error ("`union %s' incomplete in scope ending here", id);
1027 break;
1028 case ENUMERAL_TYPE:
1029 error ("`enum %s' incomplete in scope ending here", id);
1030 break;
1033 #endif /* 0 */
1035 /* Get the decls in the order they were written.
1036 Usually current_binding_level->names is in reverse order.
1037 But parameter decls were previously put in forward order. */
1039 if (reverse)
1040 current_binding_level->names
1041 = decls = nreverse (current_binding_level->names);
1042 else
1043 decls = current_binding_level->names;
1045 /* Output any nested inline functions within this block
1046 if they weren't already output. */
1048 for (decl = decls; decl; decl = TREE_CHAIN (decl))
1049 if (TREE_CODE (decl) == FUNCTION_DECL
1050 && ! TREE_ASM_WRITTEN (decl)
1051 && DECL_INITIAL (decl) != 0
1052 && TREE_ADDRESSABLE (decl))
1054 /* If this decl was copied from a file-scope decl
1055 on account of a block-scope extern decl,
1056 propagate TREE_ADDRESSABLE to the file-scope decl.
1058 DECL_ABSTRACT_ORIGIN can be set to itself if warn_return_type is
1059 true, since then the decl goes through save_for_inline_copying. */
1060 if (DECL_ABSTRACT_ORIGIN (decl) != 0
1061 && DECL_ABSTRACT_ORIGIN (decl) != decl)
1062 TREE_ADDRESSABLE (DECL_ABSTRACT_ORIGIN (decl)) = 1;
1065 /* We used to warn about unused variables in expand_end_bindings,
1066 i.e. while generating RTL. But in function-at-a-time mode we may
1067 choose to never expand a function at all (e.g. auto inlining), so
1068 we do this explicitly now. */
1069 warn_about_unused_variables (getdecls ());
1071 /* If there were any declarations or structure tags in that level,
1072 or if this level is a function body,
1073 create a BLOCK to record them for the life of this function. */
1075 block = 0;
1076 block_previously_created = (current_binding_level->this_block != 0);
1077 if (block_previously_created)
1078 block = current_binding_level->this_block;
1079 else if (keep || functionbody
1080 || (current_binding_level->keep_if_subblocks && subblocks != 0))
1081 block = make_node (BLOCK);
1082 if (block != 0)
1084 BLOCK_VARS (block) = decls;
1085 BLOCK_SUBBLOCKS (block) = subblocks;
1088 /* In each subblock, record that this is its superior. */
1090 for (link = subblocks; link; link = TREE_CHAIN (link))
1091 BLOCK_SUPERCONTEXT (link) = block;
1093 /* Clear out the meanings of the local variables of this level. */
1095 for (link = decls; link; link = TREE_CHAIN (link))
1097 if (DECL_NAME (link) != 0)
1099 /* If the ident. was used or addressed via a local extern decl,
1100 don't forget that fact. */
1101 if (DECL_EXTERNAL (link))
1103 if (TREE_USED (link))
1104 TREE_USED (DECL_NAME (link)) = 1;
1105 if (TREE_ADDRESSABLE (link))
1106 TREE_ADDRESSABLE (DECL_ASSEMBLER_NAME (link)) = 1;
1108 IDENTIFIER_LOCAL_VALUE (DECL_NAME (link)) = 0;
1112 /* Restore all name-meanings of the outer levels
1113 that were shadowed by this level. */
1115 for (link = current_binding_level->shadowed; link; link = TREE_CHAIN (link))
1116 IDENTIFIER_LOCAL_VALUE (TREE_PURPOSE (link)) = TREE_VALUE (link);
1118 /* If the level being exited is the top level of a function,
1119 check over all the labels, and clear out the current
1120 (function local) meanings of their names. */
1122 if (functionbody)
1124 clear_limbo_values (block);
1126 /* If this is the top level block of a function,
1127 the vars are the function's parameters.
1128 Don't leave them in the BLOCK because they are
1129 found in the FUNCTION_DECL instead. */
1131 BLOCK_VARS (block) = 0;
1133 /* Clear out the definitions of all label names,
1134 since their scopes end here,
1135 and add them to BLOCK_VARS. */
1137 for (link = named_labels; link; link = TREE_CHAIN (link))
1139 tree label = TREE_VALUE (link);
1141 if (DECL_INITIAL (label) == 0)
1143 error_with_decl (label, "label `%s' used but not defined");
1144 /* Avoid crashing later. */
1145 define_label (input_filename, lineno,
1146 DECL_NAME (label));
1148 else if (warn_unused_label && !TREE_USED (label))
1149 warning_with_decl (label, "label `%s' defined but not used");
1150 IDENTIFIER_LABEL_VALUE (DECL_NAME (label)) = 0;
1152 /* Put the labels into the "variables" of the
1153 top-level block, so debugger can see them. */
1154 TREE_CHAIN (label) = BLOCK_VARS (block);
1155 BLOCK_VARS (block) = label;
1159 /* Pop the current level, and free the structure for reuse. */
1162 struct binding_level *level = current_binding_level;
1163 current_binding_level = current_binding_level->level_chain;
1165 level->level_chain = free_binding_level;
1166 free_binding_level = level;
1169 /* Dispose of the block that we just made inside some higher level. */
1170 if (functionbody)
1171 DECL_INITIAL (current_function_decl) = block;
1172 else if (block)
1174 if (!block_previously_created)
1175 current_binding_level->blocks
1176 = chainon (current_binding_level->blocks, block);
1178 /* If we did not make a block for the level just exited,
1179 any blocks made for inner levels
1180 (since they cannot be recorded as subblocks in that level)
1181 must be carried forward so they will later become subblocks
1182 of something else. */
1183 else if (subblocks)
1184 current_binding_level->blocks
1185 = chainon (current_binding_level->blocks, subblocks);
1187 /* Set the TYPE_CONTEXTs for all of the tagged types belonging to this
1188 binding contour so that they point to the appropriate construct, i.e.
1189 either to the current FUNCTION_DECL node, or else to the BLOCK node
1190 we just constructed.
1192 Note that for tagged types whose scope is just the formal parameter
1193 list for some function type specification, we can't properly set
1194 their TYPE_CONTEXTs here, because we don't have a pointer to the
1195 appropriate FUNCTION_TYPE node readily available to us. For those
1196 cases, the TYPE_CONTEXTs of the relevant tagged type nodes get set
1197 in `grokdeclarator' as soon as we have created the FUNCTION_TYPE
1198 node which will represent the "scope" for these "parameter list local"
1199 tagged types. */
1201 if (functionbody)
1202 for (link = tags; link; link = TREE_CHAIN (link))
1203 TYPE_CONTEXT (TREE_VALUE (link)) = current_function_decl;
1204 else if (block)
1205 for (link = tags; link; link = TREE_CHAIN (link))
1206 TYPE_CONTEXT (TREE_VALUE (link)) = block;
1208 if (block)
1209 TREE_USED (block) = 1;
1211 return block;
1214 /* Insert BLOCK at the end of the list of subblocks of the
1215 current binding level. This is used when a BIND_EXPR is expanded,
1216 to handle the BLOCK node inside the BIND_EXPR. */
1218 void
1219 insert_block (block)
1220 tree block;
1222 TREE_USED (block) = 1;
1223 current_binding_level->blocks
1224 = chainon (current_binding_level->blocks, block);
1227 /* Set the BLOCK node for the innermost scope
1228 (the one we are currently in). */
1230 void
1231 set_block (block)
1232 tree block;
1234 current_binding_level->this_block = block;
1235 current_binding_level->names = chainon (current_binding_level->names,
1236 BLOCK_VARS (block));
1237 current_binding_level->blocks = chainon (current_binding_level->blocks,
1238 BLOCK_SUBBLOCKS (block));
1241 void
1242 push_label_level ()
1244 struct binding_level *newlevel;
1246 /* Reuse or create a struct for this binding level. */
1248 if (free_binding_level)
1250 newlevel = free_binding_level;
1251 free_binding_level = free_binding_level->level_chain;
1253 else
1255 newlevel = make_binding_level ();
1258 /* Add this level to the front of the chain (stack) of label levels. */
1260 newlevel->level_chain = label_level_chain;
1261 label_level_chain = newlevel;
1263 newlevel->names = named_labels;
1264 newlevel->shadowed = shadowed_labels;
1265 named_labels = 0;
1266 shadowed_labels = 0;
1269 void
1270 pop_label_level ()
1272 struct binding_level *level = label_level_chain;
1273 tree link, prev;
1275 /* Clear out the definitions of the declared labels in this level.
1276 Leave in the list any ordinary, non-declared labels. */
1277 for (link = named_labels, prev = 0; link;)
1279 if (C_DECLARED_LABEL_FLAG (TREE_VALUE (link)))
1281 if (DECL_SOURCE_LINE (TREE_VALUE (link)) == 0)
1283 error_with_decl (TREE_VALUE (link),
1284 "label `%s' used but not defined");
1285 /* Avoid crashing later. */
1286 define_label (input_filename, lineno,
1287 DECL_NAME (TREE_VALUE (link)));
1289 else if (warn_unused_label && !TREE_USED (TREE_VALUE (link)))
1290 warning_with_decl (TREE_VALUE (link),
1291 "label `%s' defined but not used");
1292 IDENTIFIER_LABEL_VALUE (DECL_NAME (TREE_VALUE (link))) = 0;
1294 /* Delete this element from the list. */
1295 link = TREE_CHAIN (link);
1296 if (prev)
1297 TREE_CHAIN (prev) = link;
1298 else
1299 named_labels = link;
1301 else
1303 prev = link;
1304 link = TREE_CHAIN (link);
1308 /* Bring back all the labels that were shadowed. */
1309 for (link = shadowed_labels; link; link = TREE_CHAIN (link))
1310 if (DECL_NAME (TREE_VALUE (link)) != 0)
1311 IDENTIFIER_LABEL_VALUE (DECL_NAME (TREE_VALUE (link)))
1312 = TREE_VALUE (link);
1314 named_labels = chainon (named_labels, level->names);
1315 shadowed_labels = level->shadowed;
1317 /* Pop the current level, and free the structure for reuse. */
1318 label_level_chain = label_level_chain->level_chain;
1319 level->level_chain = free_binding_level;
1320 free_binding_level = level;
1323 /* Push a definition or a declaration of struct, union or enum tag "name".
1324 "type" should be the type node.
1325 We assume that the tag "name" is not already defined.
1327 Note that the definition may really be just a forward reference.
1328 In that case, the TYPE_SIZE will be zero. */
1330 void
1331 pushtag (name, type)
1332 tree name, type;
1334 struct binding_level *b;
1336 /* Find the proper binding level for this type tag. */
1338 for (b = current_binding_level; b->tag_transparent; b = b->level_chain)
1339 continue;
1341 if (name)
1343 /* Record the identifier as the type's name if it has none. */
1345 if (TYPE_NAME (type) == 0)
1346 TYPE_NAME (type) = name;
1349 b->tags = tree_cons (name, type, b->tags);
1351 /* Create a fake NULL-named TYPE_DECL node whose TREE_TYPE will be the
1352 tagged type we just added to the current binding level. This fake
1353 NULL-named TYPE_DECL node helps dwarfout.c to know when it needs
1354 to output a representation of a tagged type, and it also gives
1355 us a convenient place to record the "scope start" address for the
1356 tagged type. */
1358 TYPE_STUB_DECL (type) = pushdecl (build_decl (TYPE_DECL, NULL_TREE, type));
1360 /* An approximation for now, so we can tell this is a function-scope tag.
1361 This will be updated in poplevel. */
1362 TYPE_CONTEXT (type) = DECL_CONTEXT (TYPE_STUB_DECL (type));
1365 /* Handle when a new declaration NEWDECL
1366 has the same name as an old one OLDDECL
1367 in the same binding contour.
1368 Prints an error message if appropriate.
1370 If safely possible, alter OLDDECL to look like NEWDECL, and return 1.
1371 Otherwise, return 0.
1373 When DIFFERENT_BINDING_LEVEL is true, NEWDECL is an external declaration,
1374 and OLDDECL is in an outer binding level and should thus not be changed. */
1376 static int
1377 duplicate_decls (newdecl, olddecl, different_binding_level)
1378 tree newdecl, olddecl;
1379 int different_binding_level;
1381 int types_match = comptypes (TREE_TYPE (newdecl), TREE_TYPE (olddecl));
1382 int new_is_definition = (TREE_CODE (newdecl) == FUNCTION_DECL
1383 && DECL_INITIAL (newdecl) != 0);
1384 tree oldtype = TREE_TYPE (olddecl);
1385 tree newtype = TREE_TYPE (newdecl);
1386 int errmsg = 0;
1388 if (DECL_P (olddecl))
1390 if (TREE_CODE (newdecl) == FUNCTION_DECL
1391 && TREE_CODE (olddecl) == FUNCTION_DECL
1392 && (DECL_UNINLINABLE (newdecl) || DECL_UNINLINABLE (olddecl)))
1394 if (DECL_DECLARED_INLINE_P (newdecl)
1395 && DECL_UNINLINABLE (newdecl)
1396 && lookup_attribute ("noinline", DECL_ATTRIBUTES (newdecl)))
1397 /* Already warned elsewhere. */;
1398 else if (DECL_DECLARED_INLINE_P (olddecl)
1399 && DECL_UNINLINABLE (olddecl)
1400 && lookup_attribute ("noinline", DECL_ATTRIBUTES (olddecl)))
1401 /* Already warned. */;
1402 else if (DECL_DECLARED_INLINE_P (newdecl)
1403 && ! DECL_DECLARED_INLINE_P (olddecl)
1404 && DECL_UNINLINABLE (olddecl)
1405 && lookup_attribute ("noinline", DECL_ATTRIBUTES (olddecl)))
1407 warning_with_decl (newdecl,
1408 "function `%s' redeclared as inline");
1409 warning_with_decl (olddecl,
1410 "previous declaration of function `%s' with attribute noinline");
1412 else if (DECL_DECLARED_INLINE_P (olddecl)
1413 && DECL_UNINLINABLE (newdecl)
1414 && lookup_attribute ("noinline", DECL_ATTRIBUTES (newdecl)))
1416 warning_with_decl (newdecl,
1417 "function `%s' redeclared with attribute noinline");
1418 warning_with_decl (olddecl,
1419 "previous declaration of function `%s' was inline");
1423 DECL_ATTRIBUTES (newdecl)
1424 = (*targetm.merge_decl_attributes) (olddecl, newdecl);
1427 if (TREE_CODE (newtype) == ERROR_MARK
1428 || TREE_CODE (oldtype) == ERROR_MARK)
1429 types_match = 0;
1431 /* New decl is completely inconsistent with the old one =>
1432 tell caller to replace the old one.
1433 This is always an error except in the case of shadowing a builtin. */
1434 if (TREE_CODE (olddecl) != TREE_CODE (newdecl))
1436 if (TREE_CODE (olddecl) == FUNCTION_DECL
1437 && (DECL_BUILT_IN (olddecl)
1438 || DECL_BUILT_IN_NONANSI (olddecl)))
1440 /* If you declare a built-in or predefined function name as static,
1441 the old definition is overridden,
1442 but optionally warn this was a bad choice of name. */
1443 if (!TREE_PUBLIC (newdecl))
1445 if (!warn_shadow)
1447 else if (DECL_BUILT_IN (olddecl))
1448 warning_with_decl (newdecl, "shadowing built-in function `%s'");
1449 else
1450 warning_with_decl (newdecl, "shadowing library function `%s'");
1452 /* Likewise, if the built-in is not ansi, then programs can
1453 override it even globally without an error. */
1454 else if (! DECL_BUILT_IN (olddecl))
1455 warning_with_decl (newdecl,
1456 "library function `%s' declared as non-function");
1458 else if (DECL_BUILT_IN_NONANSI (olddecl))
1459 warning_with_decl (newdecl,
1460 "built-in function `%s' declared as non-function");
1461 else
1462 warning_with_decl (newdecl,
1463 "built-in function `%s' declared as non-function");
1465 else
1467 error_with_decl (newdecl, "`%s' redeclared as different kind of symbol");
1468 error_with_decl (olddecl, "previous declaration of `%s'");
1471 return 0;
1474 /* For real parm decl following a forward decl,
1475 return 1 so old decl will be reused. */
1476 if (types_match && TREE_CODE (newdecl) == PARM_DECL
1477 && TREE_ASM_WRITTEN (olddecl) && ! TREE_ASM_WRITTEN (newdecl))
1478 return 1;
1480 /* The new declaration is the same kind of object as the old one.
1481 The declarations may partially match. Print warnings if they don't
1482 match enough. Ultimately, copy most of the information from the new
1483 decl to the old one, and keep using the old one. */
1485 if (flag_traditional && TREE_CODE (newdecl) == FUNCTION_DECL
1486 && IDENTIFIER_IMPLICIT_DECL (DECL_NAME (newdecl)) == olddecl
1487 && DECL_INITIAL (olddecl) == 0)
1488 /* If -traditional, avoid error for redeclaring fcn
1489 after implicit decl. */
1491 else if (TREE_CODE (olddecl) == FUNCTION_DECL
1492 && DECL_BUILT_IN (olddecl))
1494 /* A function declaration for a built-in function. */
1495 if (!TREE_PUBLIC (newdecl))
1497 /* If you declare a built-in function name as static, the
1498 built-in definition is overridden,
1499 but optionally warn this was a bad choice of name. */
1500 if (warn_shadow)
1501 warning_with_decl (newdecl, "shadowing built-in function `%s'");
1502 /* Discard the old built-in function. */
1503 return 0;
1505 else if (!types_match)
1507 /* Accept the return type of the new declaration if same modes. */
1508 tree oldreturntype = TREE_TYPE (oldtype);
1509 tree newreturntype = TREE_TYPE (newtype);
1511 if (TYPE_MODE (oldreturntype) == TYPE_MODE (newreturntype))
1513 /* Function types may be shared, so we can't just modify
1514 the return type of olddecl's function type. */
1515 tree trytype
1516 = build_function_type (newreturntype,
1517 TYPE_ARG_TYPES (oldtype));
1518 trytype = build_type_attribute_variant (trytype,
1519 TYPE_ATTRIBUTES (oldtype));
1521 types_match = comptypes (newtype, trytype);
1522 if (types_match)
1523 oldtype = trytype;
1525 /* Accept harmless mismatch in first argument type also.
1526 This is for the ffs and fprintf builtins. */
1527 if (TYPE_ARG_TYPES (TREE_TYPE (newdecl)) != 0
1528 && TYPE_ARG_TYPES (oldtype) != 0
1529 && TREE_VALUE (TYPE_ARG_TYPES (newtype)) != 0
1530 && TREE_VALUE (TYPE_ARG_TYPES (oldtype)) != 0
1531 && (TYPE_MODE (TREE_VALUE (TYPE_ARG_TYPES (newtype)))
1532 == TYPE_MODE (TREE_VALUE (TYPE_ARG_TYPES (oldtype)))))
1534 /* Function types may be shared, so we can't just modify
1535 the return type of olddecl's function type. */
1536 tree trytype
1537 = build_function_type (TREE_TYPE (oldtype),
1538 tree_cons (NULL_TREE,
1539 TREE_VALUE (TYPE_ARG_TYPES (newtype)),
1540 TREE_CHAIN (TYPE_ARG_TYPES (oldtype))));
1541 trytype = build_type_attribute_variant (trytype,
1542 TYPE_ATTRIBUTES (oldtype));
1544 types_match = comptypes (newtype, trytype);
1545 if (types_match)
1546 oldtype = trytype;
1548 if (! different_binding_level)
1549 TREE_TYPE (olddecl) = oldtype;
1551 if (!types_match)
1553 /* If types don't match for a built-in, throw away the built-in. */
1554 warning_with_decl (newdecl, "conflicting types for built-in function `%s'");
1555 return 0;
1558 else if (TREE_CODE (olddecl) == FUNCTION_DECL
1559 && DECL_SOURCE_LINE (olddecl) == 0)
1561 /* A function declaration for a predeclared function
1562 that isn't actually built in. */
1563 if (!TREE_PUBLIC (newdecl))
1565 /* If you declare it as static, the
1566 default definition is overridden. */
1567 return 0;
1569 else if (!types_match)
1571 /* If the types don't match, preserve volatility indication.
1572 Later on, we will discard everything else about the
1573 default declaration. */
1574 TREE_THIS_VOLATILE (newdecl) |= TREE_THIS_VOLATILE (olddecl);
1577 /* Permit char *foo () to match void *foo (...) if not pedantic,
1578 if one of them came from a system header file. */
1579 else if (!types_match
1580 && TREE_CODE (olddecl) == FUNCTION_DECL
1581 && TREE_CODE (newdecl) == FUNCTION_DECL
1582 && TREE_CODE (TREE_TYPE (oldtype)) == POINTER_TYPE
1583 && TREE_CODE (TREE_TYPE (newtype)) == POINTER_TYPE
1584 && (DECL_IN_SYSTEM_HEADER (olddecl)
1585 || DECL_IN_SYSTEM_HEADER (newdecl))
1586 && ((TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (newtype))) == void_type_node
1587 && TYPE_ARG_TYPES (oldtype) == 0
1588 && self_promoting_args_p (TYPE_ARG_TYPES (newtype))
1589 && TREE_TYPE (TREE_TYPE (oldtype)) == char_type_node)
1591 (TREE_TYPE (TREE_TYPE (newtype)) == char_type_node
1592 && TYPE_ARG_TYPES (newtype) == 0
1593 && self_promoting_args_p (TYPE_ARG_TYPES (oldtype))
1594 && TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (oldtype))) == void_type_node)))
1596 if (pedantic)
1597 pedwarn_with_decl (newdecl, "conflicting types for `%s'");
1598 /* Make sure we keep void * as ret type, not char *. */
1599 if (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (oldtype))) == void_type_node)
1600 TREE_TYPE (newdecl) = newtype = oldtype;
1602 /* Set DECL_IN_SYSTEM_HEADER, so that if we see another declaration
1603 we will come back here again. */
1604 DECL_IN_SYSTEM_HEADER (newdecl) = 1;
1606 else if (!types_match
1607 /* Permit char *foo (int, ...); followed by char *foo ();
1608 if not pedantic. */
1609 && ! (TREE_CODE (olddecl) == FUNCTION_DECL
1610 && ! pedantic
1611 /* Return types must still match. */
1612 && comptypes (TREE_TYPE (oldtype),
1613 TREE_TYPE (newtype))
1614 && TYPE_ARG_TYPES (newtype) == 0))
1616 error_with_decl (newdecl, "conflicting types for `%s'");
1617 /* Check for function type mismatch
1618 involving an empty arglist vs a nonempty one. */
1619 if (TREE_CODE (olddecl) == FUNCTION_DECL
1620 && comptypes (TREE_TYPE (oldtype),
1621 TREE_TYPE (newtype))
1622 && ((TYPE_ARG_TYPES (oldtype) == 0
1623 && DECL_INITIAL (olddecl) == 0)
1625 (TYPE_ARG_TYPES (newtype) == 0
1626 && DECL_INITIAL (newdecl) == 0)))
1628 /* Classify the problem further. */
1629 tree t = TYPE_ARG_TYPES (oldtype);
1630 if (t == 0)
1631 t = TYPE_ARG_TYPES (newtype);
1632 for (; t; t = TREE_CHAIN (t))
1634 tree type = TREE_VALUE (t);
1636 if (TREE_CHAIN (t) == 0
1637 && TYPE_MAIN_VARIANT (type) != void_type_node)
1639 error ("a parameter list with an ellipsis can't match an empty parameter name list declaration");
1640 break;
1643 if (simple_type_promotes_to (type) != NULL_TREE)
1645 error ("an argument type that has a default promotion can't match an empty parameter name list declaration");
1646 break;
1650 error_with_decl (olddecl, "previous declaration of `%s'");
1652 else
1654 errmsg = redeclaration_error_message (newdecl, olddecl);
1655 if (errmsg)
1657 switch (errmsg)
1659 case 1:
1660 error_with_decl (newdecl, "redefinition of `%s'");
1661 break;
1662 case 2:
1663 error_with_decl (newdecl, "redeclaration of `%s'");
1664 break;
1665 case 3:
1666 error_with_decl (newdecl, "conflicting declarations of `%s'");
1667 break;
1668 default:
1669 abort ();
1672 error_with_decl (olddecl,
1673 ((DECL_INITIAL (olddecl)
1674 && current_binding_level == global_binding_level)
1675 ? "`%s' previously defined here"
1676 : "`%s' previously declared here"));
1678 else if (TREE_CODE (newdecl) == TYPE_DECL
1679 && (DECL_IN_SYSTEM_HEADER (olddecl)
1680 || DECL_IN_SYSTEM_HEADER (newdecl)))
1682 warning_with_decl (newdecl, "redefinition of `%s'");
1683 warning_with_decl
1684 (olddecl,
1685 ((DECL_INITIAL (olddecl)
1686 && current_binding_level == global_binding_level)
1687 ? "`%s' previously defined here"
1688 : "`%s' previously declared here"));
1690 else if (TREE_CODE (olddecl) == FUNCTION_DECL
1691 && DECL_INITIAL (olddecl) != 0
1692 && TYPE_ARG_TYPES (oldtype) == 0
1693 && TYPE_ARG_TYPES (newtype) != 0
1694 && TYPE_ACTUAL_ARG_TYPES (oldtype) != 0)
1696 tree type, parm;
1697 int nargs;
1698 /* Prototype decl follows defn w/o prototype. */
1700 for (parm = TYPE_ACTUAL_ARG_TYPES (oldtype),
1701 type = TYPE_ARG_TYPES (newtype),
1702 nargs = 1;
1704 parm = TREE_CHAIN (parm), type = TREE_CHAIN (type), nargs++)
1706 if (TYPE_MAIN_VARIANT (TREE_VALUE (parm)) == void_type_node
1707 && TYPE_MAIN_VARIANT (TREE_VALUE (type)) == void_type_node)
1709 warning_with_decl (newdecl, "prototype for `%s' follows");
1710 warning_with_decl (olddecl, "non-prototype definition here");
1711 break;
1713 if (TYPE_MAIN_VARIANT (TREE_VALUE (parm)) == void_type_node
1714 || TYPE_MAIN_VARIANT (TREE_VALUE (type)) == void_type_node)
1716 error_with_decl (newdecl,
1717 "prototype for `%s' follows and number of arguments doesn't match");
1718 error_with_decl (olddecl, "non-prototype definition here");
1719 errmsg = 1;
1720 break;
1722 /* Type for passing arg must be consistent
1723 with that declared for the arg. */
1724 if (! comptypes (TREE_VALUE (parm), TREE_VALUE (type))
1725 /* If -traditional, allow `unsigned int' instead of `int'
1726 in the prototype. */
1727 && (! (flag_traditional
1728 && TYPE_MAIN_VARIANT (TREE_VALUE (parm)) == integer_type_node
1729 && TYPE_MAIN_VARIANT (TREE_VALUE (type)) == unsigned_type_node)))
1731 error_with_decl (newdecl,
1732 "prototype for `%s' follows and argument %d doesn't match",
1733 nargs);
1734 error_with_decl (olddecl, "non-prototype definition here");
1735 errmsg = 1;
1736 break;
1740 /* Warn about mismatches in various flags. */
1741 else
1743 /* Warn if function is now inline
1744 but was previously declared not inline and has been called. */
1745 if (TREE_CODE (olddecl) == FUNCTION_DECL
1746 && ! DECL_DECLARED_INLINE_P (olddecl)
1747 && DECL_DECLARED_INLINE_P (newdecl)
1748 && TREE_USED (olddecl))
1749 warning_with_decl (newdecl,
1750 "`%s' declared inline after being called");
1751 if (TREE_CODE (olddecl) == FUNCTION_DECL
1752 && ! DECL_DECLARED_INLINE_P (olddecl)
1753 && DECL_DECLARED_INLINE_P (newdecl)
1754 && DECL_INITIAL (olddecl) != 0)
1755 warning_with_decl (newdecl,
1756 "`%s' declared inline after its definition");
1758 /* If pedantic, warn when static declaration follows a non-static
1759 declaration. Otherwise, do so only for functions. */
1760 if ((pedantic || TREE_CODE (olddecl) == FUNCTION_DECL)
1761 && TREE_PUBLIC (olddecl)
1762 && !TREE_PUBLIC (newdecl))
1763 warning_with_decl (newdecl, "static declaration for `%s' follows non-static");
1765 /* If warn_traditional, warn when a non-static function
1766 declaration follows a static one. */
1767 if (warn_traditional && !in_system_header
1768 && TREE_CODE (olddecl) == FUNCTION_DECL
1769 && !TREE_PUBLIC (olddecl)
1770 && TREE_PUBLIC (newdecl))
1771 warning_with_decl (newdecl, "non-static declaration for `%s' follows static");
1773 /* Warn when const declaration follows a non-const
1774 declaration, but not for functions. */
1775 if (TREE_CODE (olddecl) != FUNCTION_DECL
1776 && !TREE_READONLY (olddecl)
1777 && TREE_READONLY (newdecl))
1778 warning_with_decl (newdecl, "const declaration for `%s' follows non-const");
1779 /* These bits are logically part of the type, for variables.
1780 But not for functions
1781 (where qualifiers are not valid ANSI anyway). */
1782 else if (pedantic && TREE_CODE (olddecl) != FUNCTION_DECL
1783 && (TREE_READONLY (newdecl) != TREE_READONLY (olddecl)
1784 || TREE_THIS_VOLATILE (newdecl) != TREE_THIS_VOLATILE (olddecl)))
1785 pedwarn_with_decl (newdecl, "type qualifiers for `%s' conflict with previous decl");
1789 /* Optionally warn about more than one declaration for the same name. */
1790 if (errmsg == 0 && warn_redundant_decls && DECL_SOURCE_LINE (olddecl) != 0
1791 /* Don't warn about a function declaration
1792 followed by a definition. */
1793 && !(TREE_CODE (newdecl) == FUNCTION_DECL && DECL_INITIAL (newdecl) != 0
1794 && DECL_INITIAL (olddecl) == 0)
1795 /* Don't warn about extern decl followed by (tentative) definition. */
1796 && !(DECL_EXTERNAL (olddecl) && ! DECL_EXTERNAL (newdecl)))
1798 warning_with_decl (newdecl, "redundant redeclaration of `%s' in same scope");
1799 warning_with_decl (olddecl, "previous declaration of `%s'");
1802 /* Copy all the DECL_... slots specified in the new decl
1803 except for any that we copy here from the old type.
1805 Past this point, we don't change OLDTYPE and NEWTYPE
1806 even if we change the types of NEWDECL and OLDDECL. */
1808 if (types_match)
1810 /* When copying info to olddecl, we store into write_olddecl
1811 instead. This allows us to avoid modifying olddecl when
1812 different_binding_level is true. */
1813 tree write_olddecl = different_binding_level ? newdecl : olddecl;
1815 /* Merge the data types specified in the two decls. */
1816 if (TREE_CODE (newdecl) != FUNCTION_DECL || !DECL_BUILT_IN (olddecl))
1818 if (different_binding_level)
1820 if (TYPE_ARG_TYPES (oldtype) != 0
1821 && TYPE_ARG_TYPES (newtype) == 0)
1822 TREE_TYPE (newdecl) = common_type (newtype, oldtype);
1823 else
1824 TREE_TYPE (newdecl)
1825 = build_type_attribute_variant
1826 (newtype,
1827 merge_attributes (TYPE_ATTRIBUTES (newtype),
1828 TYPE_ATTRIBUTES (oldtype)));
1830 else
1831 TREE_TYPE (newdecl)
1832 = TREE_TYPE (olddecl)
1833 = common_type (newtype, oldtype);
1836 /* Lay the type out, unless already done. */
1837 if (oldtype != TREE_TYPE (newdecl))
1839 if (TREE_TYPE (newdecl) != error_mark_node)
1840 layout_type (TREE_TYPE (newdecl));
1841 if (TREE_CODE (newdecl) != FUNCTION_DECL
1842 && TREE_CODE (newdecl) != TYPE_DECL
1843 && TREE_CODE (newdecl) != CONST_DECL)
1844 layout_decl (newdecl, 0);
1846 else
1848 /* Since the type is OLDDECL's, make OLDDECL's size go with. */
1849 DECL_SIZE (newdecl) = DECL_SIZE (olddecl);
1850 DECL_SIZE_UNIT (newdecl) = DECL_SIZE_UNIT (olddecl);
1851 DECL_MODE (newdecl) = DECL_MODE (olddecl);
1852 if (TREE_CODE (olddecl) != FUNCTION_DECL)
1853 if (DECL_ALIGN (olddecl) > DECL_ALIGN (newdecl))
1855 DECL_ALIGN (newdecl) = DECL_ALIGN (olddecl);
1856 DECL_USER_ALIGN (newdecl) |= DECL_ALIGN (olddecl);
1860 /* Keep the old rtl since we can safely use it. */
1861 COPY_DECL_RTL (olddecl, newdecl);
1863 /* Merge the type qualifiers. */
1864 if (TREE_CODE (olddecl) == FUNCTION_DECL
1865 && DECL_BUILT_IN_NONANSI (olddecl) && TREE_THIS_VOLATILE (olddecl)
1866 && ! TREE_THIS_VOLATILE (newdecl))
1867 TREE_THIS_VOLATILE (write_olddecl) = 0;
1869 if (TREE_READONLY (newdecl))
1870 TREE_READONLY (write_olddecl) = 1;
1872 if (TREE_THIS_VOLATILE (newdecl))
1874 TREE_THIS_VOLATILE (write_olddecl) = 1;
1875 if (TREE_CODE (newdecl) == VAR_DECL
1876 /* If an automatic variable is re-declared in the same
1877 function scope, but the old declaration was not
1878 volatile, make_var_volatile() would crash because the
1879 variable would have been assigned to a pseudo, not a
1880 MEM. Since this duplicate declaration is invalid
1881 anyway, we just skip the call. */
1882 && errmsg == 0)
1883 make_var_volatile (newdecl);
1886 /* Keep source location of definition rather than declaration. */
1887 /* When called with different_binding_level set, keep the old
1888 information so that meaningful diagnostics can be given. */
1889 if (DECL_INITIAL (newdecl) == 0 && DECL_INITIAL (olddecl) != 0
1890 && ! different_binding_level)
1892 DECL_SOURCE_LINE (newdecl) = DECL_SOURCE_LINE (olddecl);
1893 DECL_SOURCE_FILE (newdecl) = DECL_SOURCE_FILE (olddecl);
1896 /* Merge the unused-warning information. */
1897 if (DECL_IN_SYSTEM_HEADER (olddecl))
1898 DECL_IN_SYSTEM_HEADER (newdecl) = 1;
1899 else if (DECL_IN_SYSTEM_HEADER (newdecl))
1900 DECL_IN_SYSTEM_HEADER (write_olddecl) = 1;
1902 /* Merge the initialization information. */
1903 /* When called with different_binding_level set, don't copy over
1904 DECL_INITIAL, so that we don't accidentally change function
1905 declarations into function definitions. */
1906 if (DECL_INITIAL (newdecl) == 0 && ! different_binding_level)
1907 DECL_INITIAL (newdecl) = DECL_INITIAL (olddecl);
1909 /* Merge the section attribute.
1910 We want to issue an error if the sections conflict but that must be
1911 done later in decl_attributes since we are called before attributes
1912 are assigned. */
1913 if (DECL_SECTION_NAME (newdecl) == NULL_TREE)
1914 DECL_SECTION_NAME (newdecl) = DECL_SECTION_NAME (olddecl);
1916 /* Copy the assembler name.
1917 Currently, it can only be defined in the prototype. */
1918 COPY_DECL_ASSEMBLER_NAME (olddecl, newdecl);
1920 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1922 DECL_STATIC_CONSTRUCTOR(newdecl) |= DECL_STATIC_CONSTRUCTOR(olddecl);
1923 DECL_STATIC_DESTRUCTOR (newdecl) |= DECL_STATIC_DESTRUCTOR (olddecl);
1924 DECL_NO_LIMIT_STACK (newdecl) |= DECL_NO_LIMIT_STACK (olddecl);
1925 DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (newdecl)
1926 |= DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (olddecl);
1929 /* If cannot merge, then use the new type and qualifiers,
1930 and don't preserve the old rtl. */
1931 else if (! different_binding_level)
1933 TREE_TYPE (olddecl) = TREE_TYPE (newdecl);
1934 TREE_READONLY (olddecl) = TREE_READONLY (newdecl);
1935 TREE_THIS_VOLATILE (olddecl) = TREE_THIS_VOLATILE (newdecl);
1936 TREE_SIDE_EFFECTS (olddecl) = TREE_SIDE_EFFECTS (newdecl);
1939 /* Merge the storage class information. */
1940 DECL_WEAK (newdecl) |= DECL_WEAK (olddecl);
1941 /* For functions, static overrides non-static. */
1942 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1944 TREE_PUBLIC (newdecl) &= TREE_PUBLIC (olddecl);
1945 /* This is since we don't automatically
1946 copy the attributes of NEWDECL into OLDDECL. */
1947 /* No need to worry about different_binding_level here because
1948 then TREE_PUBLIC (newdecl) was true. */
1949 TREE_PUBLIC (olddecl) = TREE_PUBLIC (newdecl);
1950 /* If this clears `static', clear it in the identifier too. */
1951 if (! TREE_PUBLIC (olddecl))
1952 TREE_PUBLIC (DECL_NAME (olddecl)) = 0;
1954 if (DECL_EXTERNAL (newdecl))
1956 if (! different_binding_level)
1958 /* Don't mess with these flags on local externs; they remain
1959 external even if there's a declaration at file scope which
1960 isn't. */
1961 TREE_STATIC (newdecl) = TREE_STATIC (olddecl);
1962 DECL_EXTERNAL (newdecl) = DECL_EXTERNAL (olddecl);
1964 /* An extern decl does not override previous storage class. */
1965 TREE_PUBLIC (newdecl) = TREE_PUBLIC (olddecl);
1966 if (! DECL_EXTERNAL (newdecl))
1967 DECL_CONTEXT (newdecl) = DECL_CONTEXT (olddecl);
1969 else
1971 TREE_STATIC (olddecl) = TREE_STATIC (newdecl);
1972 TREE_PUBLIC (olddecl) = TREE_PUBLIC (newdecl);
1975 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1977 /* If we're redefining a function previously defined as extern
1978 inline, make sure we emit debug info for the inline before we
1979 throw it away, in case it was inlined into a function that hasn't
1980 been written out yet. */
1981 if (new_is_definition && DECL_INITIAL (olddecl) && TREE_USED (olddecl))
1983 (*debug_hooks->outlining_inline_function) (olddecl);
1985 /* The new defn must not be inline. */
1986 DECL_INLINE (newdecl) = 0;
1987 DECL_UNINLINABLE (newdecl) = 1;
1989 else
1991 /* If either decl says `inline', this fn is inline,
1992 unless its definition was passed already. */
1993 if (DECL_DECLARED_INLINE_P (newdecl)
1994 || DECL_DECLARED_INLINE_P (olddecl))
1995 DECL_DECLARED_INLINE_P (newdecl) = 1;
1997 DECL_UNINLINABLE (newdecl) = DECL_UNINLINABLE (olddecl)
1998 = (DECL_UNINLINABLE (newdecl) || DECL_UNINLINABLE (olddecl));
2001 if (DECL_BUILT_IN (olddecl))
2003 /* Get rid of any built-in function if new arg types don't match it
2004 or if we have a function definition. */
2005 if (! types_match || new_is_definition)
2007 if (! different_binding_level)
2009 TREE_TYPE (olddecl) = TREE_TYPE (newdecl);
2010 DECL_BUILT_IN_CLASS (olddecl) = NOT_BUILT_IN;
2013 else
2015 /* If redeclaring a builtin function, and not a definition,
2016 it stays built in. */
2017 DECL_BUILT_IN_CLASS (newdecl) = DECL_BUILT_IN_CLASS (olddecl);
2018 DECL_FUNCTION_CODE (newdecl) = DECL_FUNCTION_CODE (olddecl);
2022 /* Also preserve various other info from the definition. */
2023 if (! new_is_definition)
2025 DECL_RESULT (newdecl) = DECL_RESULT (olddecl);
2026 /* When called with different_binding_level set, don't copy over
2027 DECL_INITIAL, so that we don't accidentally change function
2028 declarations into function definitions. */
2029 if (! different_binding_level)
2030 DECL_INITIAL (newdecl) = DECL_INITIAL (olddecl);
2031 DECL_SAVED_INSNS (newdecl) = DECL_SAVED_INSNS (olddecl);
2032 DECL_SAVED_TREE (newdecl) = DECL_SAVED_TREE (olddecl);
2033 DECL_NUM_STMTS (newdecl) = DECL_NUM_STMTS (olddecl);
2034 DECL_ARGUMENTS (newdecl) = DECL_ARGUMENTS (olddecl);
2036 /* Set DECL_INLINE on the declaration if we've got a body
2037 from which to instantiate. */
2038 if (DECL_INLINE (olddecl) && ! DECL_UNINLINABLE (newdecl))
2040 DECL_INLINE (newdecl) = 1;
2041 DECL_ABSTRACT_ORIGIN (newdecl)
2042 = (different_binding_level
2043 ? DECL_ORIGIN (olddecl)
2044 : DECL_ABSTRACT_ORIGIN (olddecl));
2047 else
2049 /* If a previous declaration said inline, mark the
2050 definition as inlinable. */
2051 if (DECL_DECLARED_INLINE_P (newdecl)
2052 && ! DECL_UNINLINABLE (newdecl))
2053 DECL_INLINE (newdecl) = 1;
2056 if (different_binding_level)
2057 return 0;
2059 /* Copy most of the decl-specific fields of NEWDECL into OLDDECL.
2060 But preserve OLDDECL's DECL_UID. */
2062 unsigned olddecl_uid = DECL_UID (olddecl);
2064 memcpy ((char *) olddecl + sizeof (struct tree_common),
2065 (char *) newdecl + sizeof (struct tree_common),
2066 sizeof (struct tree_decl) - sizeof (struct tree_common));
2067 DECL_UID (olddecl) = olddecl_uid;
2070 /* NEWDECL contains the merged attribute lists.
2071 Update OLDDECL to be the same. */
2072 DECL_ATTRIBUTES (olddecl) = DECL_ATTRIBUTES (newdecl);
2074 return 1;
2077 /* Check whether decl-node X shadows an existing declaration.
2078 OLDLOCAL is the old IDENTIFIER_LOCAL_VALUE of the DECL_NAME of X,
2079 which might be a NULL_TREE. */
2080 static void
2081 warn_if_shadowing (x, oldlocal)
2082 tree x, oldlocal;
2084 tree name;
2086 if (DECL_EXTERNAL (x))
2087 return;
2089 name = DECL_NAME (x);
2091 /* Warn if shadowing an argument at the top level of the body. */
2092 if (oldlocal != 0
2093 /* This warning doesn't apply to the parms of a nested fcn. */
2094 && ! current_binding_level->parm_flag
2095 /* Check that this is one level down from the parms. */
2096 && current_binding_level->level_chain->parm_flag
2097 /* Check that the decl being shadowed
2098 comes from the parm level, one level up. */
2099 && chain_member (oldlocal, current_binding_level->level_chain->names))
2101 if (TREE_CODE (oldlocal) == PARM_DECL)
2102 pedwarn ("declaration of `%s' shadows a parameter",
2103 IDENTIFIER_POINTER (name));
2104 else
2105 pedwarn ("declaration of `%s' shadows a symbol from the parameter list",
2106 IDENTIFIER_POINTER (name));
2108 /* Maybe warn if shadowing something else. */
2109 else if (warn_shadow
2110 /* No shadow warnings for internally generated vars. */
2111 && DECL_SOURCE_LINE (x) != 0
2112 /* No shadow warnings for vars made for inlining. */
2113 && ! DECL_FROM_INLINE (x))
2115 if (TREE_CODE (x) == PARM_DECL
2116 && current_binding_level->level_chain->parm_flag)
2117 /* Don't warn about the parm names in function declarator
2118 within a function declarator.
2119 It would be nice to avoid warning in any function
2120 declarator in a declaration, as opposed to a definition,
2121 but there is no way to tell it's not a definition. */
2123 else if (oldlocal)
2125 if (TREE_CODE (oldlocal) == PARM_DECL)
2126 shadow_warning ("a parameter", name, oldlocal);
2127 else
2128 shadow_warning ("a previous local", name, oldlocal);
2130 else if (IDENTIFIER_GLOBAL_VALUE (name) != 0
2131 && IDENTIFIER_GLOBAL_VALUE (name) != error_mark_node)
2132 shadow_warning ("a global declaration", name,
2133 IDENTIFIER_GLOBAL_VALUE (name));
2137 /* Record a decl-node X as belonging to the current lexical scope.
2138 Check for errors (such as an incompatible declaration for the same
2139 name already seen in the same scope).
2141 Returns either X or an old decl for the same name.
2142 If an old decl is returned, it may have been smashed
2143 to agree with what X says. */
2145 tree
2146 pushdecl (x)
2147 tree x;
2149 tree t;
2150 tree name = DECL_NAME (x);
2151 struct binding_level *b = current_binding_level;
2153 /* Functions need the lang_decl data. */
2154 if (TREE_CODE (x) == FUNCTION_DECL && ! DECL_LANG_SPECIFIC (x))
2155 DECL_LANG_SPECIFIC (x) = (struct lang_decl *)
2156 ggc_alloc_cleared (sizeof (struct lang_decl));
2158 DECL_CONTEXT (x) = current_function_decl;
2159 /* A local extern declaration for a function doesn't constitute nesting.
2160 A local auto declaration does, since it's a forward decl
2161 for a nested function coming later. */
2162 if ((TREE_CODE (x) == FUNCTION_DECL || TREE_CODE (x) == VAR_DECL)
2163 && DECL_INITIAL (x) == 0 && DECL_EXTERNAL (x))
2164 DECL_CONTEXT (x) = 0;
2166 if (name)
2168 int different_binding_level = 0;
2170 if (warn_nested_externs
2171 && DECL_EXTERNAL (x)
2172 && b != global_binding_level
2173 && x != IDENTIFIER_IMPLICIT_DECL (name)
2174 /* No error messages for __FUNCTION__ and __PRETTY_FUNCTION__. */
2175 && !DECL_IN_SYSTEM_HEADER (x))
2176 warning ("nested extern declaration of `%s'",
2177 IDENTIFIER_POINTER (name));
2179 t = lookup_name_current_level (name);
2180 /* Don't type check externs here when -traditional. This is so that
2181 code with conflicting declarations inside blocks will get warnings
2182 not errors. X11 for instance depends on this. */
2183 if (! t && DECL_EXTERNAL (x) && TREE_PUBLIC (x) && ! flag_traditional)
2185 t = lookup_name (name);
2186 /* Type decls at global scope don't conflict with externs declared
2187 inside lexical blocks. */
2188 if (t && TREE_CODE (t) == TYPE_DECL)
2189 t = 0;
2190 different_binding_level = 1;
2192 if (t != 0 && t == error_mark_node)
2193 /* error_mark_node is 0 for a while during initialization! */
2195 t = 0;
2196 error_with_decl (x, "`%s' used prior to declaration");
2199 /* If this decl is `static' and an implicit decl was seen previously,
2200 warn. But don't complain if -traditional,
2201 since traditional compilers don't complain. */
2202 if (! flag_traditional && TREE_PUBLIC (name)
2203 /* Don't test for DECL_EXTERNAL, because grokdeclarator
2204 sets this for all functions. */
2205 && ! TREE_PUBLIC (x)
2206 && (TREE_CODE (x) == FUNCTION_DECL || b == global_binding_level)
2207 /* We used to warn also for explicit extern followed by static,
2208 but sometimes you need to do it that way. */
2209 && IDENTIFIER_IMPLICIT_DECL (name) != 0)
2211 pedwarn ("`%s' was declared implicitly `extern' and later `static'",
2212 IDENTIFIER_POINTER (name));
2213 pedwarn_with_file_and_line
2214 (DECL_SOURCE_FILE (IDENTIFIER_IMPLICIT_DECL (name)),
2215 DECL_SOURCE_LINE (IDENTIFIER_IMPLICIT_DECL (name)),
2216 "previous declaration of `%s'",
2217 IDENTIFIER_POINTER (name));
2218 TREE_THIS_VOLATILE (name) = 1;
2221 if (t != 0 && duplicate_decls (x, t, different_binding_level))
2223 if (TREE_CODE (t) == PARM_DECL)
2225 /* Don't allow more than one "real" duplicate
2226 of a forward parm decl. */
2227 TREE_ASM_WRITTEN (t) = TREE_ASM_WRITTEN (x);
2228 return t;
2230 return t;
2233 /* If we are processing a typedef statement, generate a whole new
2234 ..._TYPE node (which will be just an variant of the existing
2235 ..._TYPE node with identical properties) and then install the
2236 TYPE_DECL node generated to represent the typedef name as the
2237 TYPE_NAME of this brand new (duplicate) ..._TYPE node.
2239 The whole point here is to end up with a situation where each
2240 and every ..._TYPE node the compiler creates will be uniquely
2241 associated with AT MOST one node representing a typedef name.
2242 This way, even though the compiler substitutes corresponding
2243 ..._TYPE nodes for TYPE_DECL (i.e. "typedef name") nodes very
2244 early on, later parts of the compiler can always do the reverse
2245 translation and get back the corresponding typedef name. For
2246 example, given:
2248 typedef struct S MY_TYPE;
2249 MY_TYPE object;
2251 Later parts of the compiler might only know that `object' was of
2252 type `struct S' if it were not for code just below. With this
2253 code however, later parts of the compiler see something like:
2255 struct S' == struct S
2256 typedef struct S' MY_TYPE;
2257 struct S' object;
2259 And they can then deduce (from the node for type struct S') that
2260 the original object declaration was:
2262 MY_TYPE object;
2264 Being able to do this is important for proper support of protoize,
2265 and also for generating precise symbolic debugging information
2266 which takes full account of the programmer's (typedef) vocabulary.
2268 Obviously, we don't want to generate a duplicate ..._TYPE node if
2269 the TYPE_DECL node that we are now processing really represents a
2270 standard built-in type.
2272 Since all standard types are effectively declared at line zero
2273 in the source file, we can easily check to see if we are working
2274 on a standard type by checking the current value of lineno. */
2276 if (TREE_CODE (x) == TYPE_DECL)
2278 if (DECL_SOURCE_LINE (x) == 0)
2280 if (TYPE_NAME (TREE_TYPE (x)) == 0)
2281 TYPE_NAME (TREE_TYPE (x)) = x;
2283 else if (TREE_TYPE (x) != error_mark_node
2284 && DECL_ORIGINAL_TYPE (x) == NULL_TREE)
2286 tree tt = TREE_TYPE (x);
2287 DECL_ORIGINAL_TYPE (x) = tt;
2288 tt = build_type_copy (tt);
2289 TYPE_NAME (tt) = x;
2290 TREE_USED (tt) = TREE_USED (x);
2291 TREE_TYPE (x) = tt;
2295 /* Multiple external decls of the same identifier ought to match.
2296 Check against both global declarations (when traditional) and out of
2297 scope (limbo) block level declarations.
2299 We get warnings about inline functions where they are defined.
2300 Avoid duplicate warnings where they are used. */
2301 if (TREE_PUBLIC (x)
2302 && ! (TREE_CODE (x) == FUNCTION_DECL && DECL_INLINE (x)))
2304 tree decl;
2306 if (flag_traditional && IDENTIFIER_GLOBAL_VALUE (name) != 0
2307 && (DECL_EXTERNAL (IDENTIFIER_GLOBAL_VALUE (name))
2308 || TREE_PUBLIC (IDENTIFIER_GLOBAL_VALUE (name))))
2309 decl = IDENTIFIER_GLOBAL_VALUE (name);
2310 else if (IDENTIFIER_LIMBO_VALUE (name) != 0)
2311 /* Decls in limbo are always extern, so no need to check that. */
2312 decl = IDENTIFIER_LIMBO_VALUE (name);
2313 else
2314 decl = 0;
2316 if (decl && ! comptypes (TREE_TYPE (x), TREE_TYPE (decl))
2317 /* If old decl is built-in, we already warned if we should. */
2318 && !DECL_BUILT_IN (decl))
2320 pedwarn_with_decl (x,
2321 "type mismatch with previous external decl");
2322 pedwarn_with_decl (decl, "previous external decl of `%s'");
2326 /* If a function has had an implicit declaration, and then is defined,
2327 make sure they are compatible. */
2329 if (IDENTIFIER_IMPLICIT_DECL (name) != 0
2330 && IDENTIFIER_GLOBAL_VALUE (name) == 0
2331 && TREE_CODE (x) == FUNCTION_DECL
2332 && ! comptypes (TREE_TYPE (x),
2333 TREE_TYPE (IDENTIFIER_IMPLICIT_DECL (name))))
2335 warning_with_decl (x, "type mismatch with previous implicit declaration");
2336 warning_with_decl (IDENTIFIER_IMPLICIT_DECL (name),
2337 "previous implicit declaration of `%s'");
2340 /* In PCC-compatibility mode, extern decls of vars with no current decl
2341 take effect at top level no matter where they are. */
2342 if (flag_traditional && DECL_EXTERNAL (x)
2343 && lookup_name (name) == 0)
2345 tree type = TREE_TYPE (x);
2347 /* But don't do this if the type contains temporary nodes. */
2348 while (type)
2350 if (type == error_mark_node)
2351 break;
2352 if (TYPE_CONTEXT (type))
2354 warning_with_decl (x, "type of external `%s' is not global");
2355 /* By exiting the loop early, we leave TYPE nonzero,
2356 and thus prevent globalization of the decl. */
2357 break;
2359 else if (TREE_CODE (type) == FUNCTION_TYPE
2360 && TYPE_ARG_TYPES (type) != 0)
2361 /* The types might not be truly local,
2362 but the list of arg types certainly is temporary.
2363 Since prototypes are nontraditional,
2364 ok not to do the traditional thing. */
2365 break;
2366 type = TREE_TYPE (type);
2369 if (type == 0)
2370 b = global_binding_level;
2373 /* This name is new in its binding level.
2374 Install the new declaration and return it. */
2375 if (b == global_binding_level)
2377 /* Install a global value. */
2379 /* If the first global decl has external linkage,
2380 warn if we later see static one. */
2381 if (IDENTIFIER_GLOBAL_VALUE (name) == 0 && TREE_PUBLIC (x))
2382 TREE_PUBLIC (name) = 1;
2384 IDENTIFIER_GLOBAL_VALUE (name) = x;
2386 /* We no longer care about any previous block level declarations. */
2387 IDENTIFIER_LIMBO_VALUE (name) = 0;
2389 /* Don't forget if the function was used via an implicit decl. */
2390 if (IDENTIFIER_IMPLICIT_DECL (name)
2391 && TREE_USED (IDENTIFIER_IMPLICIT_DECL (name)))
2392 TREE_USED (x) = 1, TREE_USED (name) = 1;
2394 /* Don't forget if its address was taken in that way. */
2395 if (IDENTIFIER_IMPLICIT_DECL (name)
2396 && TREE_ADDRESSABLE (IDENTIFIER_IMPLICIT_DECL (name)))
2397 TREE_ADDRESSABLE (x) = 1;
2399 /* Warn about mismatches against previous implicit decl. */
2400 if (IDENTIFIER_IMPLICIT_DECL (name) != 0
2401 /* If this real decl matches the implicit, don't complain. */
2402 && ! (TREE_CODE (x) == FUNCTION_DECL
2403 && (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (x)))
2404 == integer_type_node)))
2405 pedwarn ("`%s' was previously implicitly declared to return `int'",
2406 IDENTIFIER_POINTER (name));
2408 /* If this decl is `static' and an `extern' was seen previously,
2409 that is erroneous. */
2410 if (TREE_PUBLIC (name)
2411 && ! TREE_PUBLIC (x) && ! DECL_EXTERNAL (x))
2413 /* Okay to redeclare an ANSI built-in as static. */
2414 if (t != 0 && DECL_BUILT_IN (t))
2416 /* Okay to declare a non-ANSI built-in as anything. */
2417 else if (t != 0 && DECL_BUILT_IN_NONANSI (t))
2419 /* Okay to have global type decl after an earlier extern
2420 declaration inside a lexical block. */
2421 else if (TREE_CODE (x) == TYPE_DECL)
2423 else if (IDENTIFIER_IMPLICIT_DECL (name))
2425 if (! TREE_THIS_VOLATILE (name))
2426 pedwarn ("`%s' was declared implicitly `extern' and later `static'",
2427 IDENTIFIER_POINTER (name));
2429 else
2430 pedwarn ("`%s' was declared `extern' and later `static'",
2431 IDENTIFIER_POINTER (name));
2434 else
2436 /* Here to install a non-global value. */
2437 tree oldlocal = IDENTIFIER_LOCAL_VALUE (name);
2438 tree oldglobal = IDENTIFIER_GLOBAL_VALUE (name);
2440 IDENTIFIER_LOCAL_VALUE (name) = x;
2442 /* If this is an extern function declaration, see if we
2443 have a global definition or declaration for the function. */
2444 if (oldlocal == 0
2445 && oldglobal != 0
2446 && TREE_CODE (x) == FUNCTION_DECL
2447 && TREE_CODE (oldglobal) == FUNCTION_DECL
2448 && DECL_EXTERNAL (x)
2449 && ! DECL_DECLARED_INLINE_P (x))
2451 /* We have one. Their types must agree. */
2452 if (! comptypes (TREE_TYPE (x),
2453 TREE_TYPE (IDENTIFIER_GLOBAL_VALUE (name))))
2454 pedwarn_with_decl (x, "extern declaration of `%s' doesn't match global one");
2455 else
2457 /* Inner extern decl is inline if global one is.
2458 Copy enough to really inline it. */
2459 if (DECL_DECLARED_INLINE_P (oldglobal))
2461 DECL_DECLARED_INLINE_P (x)
2462 = DECL_DECLARED_INLINE_P (oldglobal);
2463 DECL_INLINE (x) = DECL_INLINE (oldglobal);
2464 DECL_INITIAL (x) = (current_function_decl == oldglobal
2465 ? 0 : DECL_INITIAL (oldglobal));
2466 DECL_SAVED_INSNS (x) = DECL_SAVED_INSNS (oldglobal);
2467 DECL_NUM_STMTS (x) = DECL_NUM_STMTS (oldglobal);
2468 DECL_ARGUMENTS (x) = DECL_ARGUMENTS (oldglobal);
2469 DECL_RESULT (x) = DECL_RESULT (oldglobal);
2470 TREE_ASM_WRITTEN (x) = TREE_ASM_WRITTEN (oldglobal);
2471 DECL_ABSTRACT_ORIGIN (x)
2472 = DECL_ABSTRACT_ORIGIN (oldglobal);
2474 /* Inner extern decl is built-in if global one is. */
2475 if (DECL_BUILT_IN (oldglobal))
2477 DECL_BUILT_IN_CLASS (x) = DECL_BUILT_IN_CLASS (oldglobal);
2478 DECL_FUNCTION_CODE (x) = DECL_FUNCTION_CODE (oldglobal);
2480 /* Keep the arg types from a file-scope fcn defn. */
2481 if (TYPE_ARG_TYPES (TREE_TYPE (oldglobal)) != 0
2482 && DECL_INITIAL (oldglobal)
2483 && TYPE_ARG_TYPES (TREE_TYPE (x)) == 0)
2484 TREE_TYPE (x) = TREE_TYPE (oldglobal);
2488 #if 0
2489 /* This case is probably sometimes the right thing to do. */
2490 /* If we have a local external declaration,
2491 then any file-scope declaration should not
2492 have been static. */
2493 if (oldlocal == 0 && oldglobal != 0
2494 && !TREE_PUBLIC (oldglobal)
2495 && DECL_EXTERNAL (x) && TREE_PUBLIC (x))
2496 warning ("`%s' locally external but globally static",
2497 IDENTIFIER_POINTER (name));
2498 #endif
2500 /* If we have a local external declaration,
2501 and no file-scope declaration has yet been seen,
2502 then if we later have a file-scope decl it must not be static. */
2503 if (oldlocal == 0
2504 && DECL_EXTERNAL (x)
2505 && TREE_PUBLIC (x))
2507 if (oldglobal == 0)
2508 TREE_PUBLIC (name) = 1;
2510 /* Save this decl, so that we can do type checking against
2511 other decls after it falls out of scope.
2513 Only save it once. This prevents temporary decls created in
2514 expand_inline_function from being used here, since this
2515 will have been set when the inline function was parsed.
2516 It also helps give slightly better warnings. */
2517 if (IDENTIFIER_LIMBO_VALUE (name) == 0)
2518 IDENTIFIER_LIMBO_VALUE (name) = x;
2521 warn_if_shadowing (x, oldlocal);
2523 /* If storing a local value, there may already be one (inherited).
2524 If so, record it for restoration when this binding level ends. */
2525 if (oldlocal != 0)
2526 b->shadowed = tree_cons (name, oldlocal, b->shadowed);
2529 /* Keep count of variables in this level with incomplete type.
2530 If the input is erroneous, we can have error_mark in the type
2531 slot (e.g. "f(void a, ...)") - that doesn't count as an
2532 incomplete type. */
2533 if (TREE_TYPE (x) != error_mark_node
2534 && !COMPLETE_TYPE_P (TREE_TYPE (x)))
2536 tree element = TREE_TYPE (x);
2538 while (TREE_CODE (element) == ARRAY_TYPE)
2539 element = TREE_TYPE (element);
2540 if (TREE_CODE (element) == RECORD_TYPE
2541 || TREE_CODE (element) == UNION_TYPE)
2542 ++b->n_incomplete;
2546 /* Put decls on list in reverse order.
2547 We will reverse them later if necessary. */
2548 TREE_CHAIN (x) = b->names;
2549 b->names = x;
2551 return x;
2554 /* Like pushdecl, only it places X in GLOBAL_BINDING_LEVEL, if appropriate. */
2556 tree
2557 pushdecl_top_level (x)
2558 tree x;
2560 tree t;
2561 struct binding_level *b = current_binding_level;
2563 current_binding_level = global_binding_level;
2564 t = pushdecl (x);
2565 current_binding_level = b;
2566 return t;
2569 /* Generate an implicit declaration for identifier FUNCTIONID
2570 as a function of type int (). Print a warning if appropriate. */
2572 tree
2573 implicitly_declare (functionid)
2574 tree functionid;
2576 tree decl;
2577 int traditional_warning = 0;
2578 /* Only one "implicit declaration" warning per identifier. */
2579 int implicit_warning;
2581 /* We used to reuse an old implicit decl here,
2582 but this loses with inline functions because it can clobber
2583 the saved decl chains. */
2584 #if 0
2585 if (IDENTIFIER_IMPLICIT_DECL (functionid) != 0)
2586 decl = IDENTIFIER_IMPLICIT_DECL (functionid);
2587 else
2588 #endif
2589 decl = build_decl (FUNCTION_DECL, functionid, default_function_type);
2591 /* Warn of implicit decl following explicit local extern decl.
2592 This is probably a program designed for traditional C. */
2593 if (TREE_PUBLIC (functionid) && IDENTIFIER_GLOBAL_VALUE (functionid) == 0)
2594 traditional_warning = 1;
2596 /* Warn once of an implicit declaration. */
2597 implicit_warning = (IDENTIFIER_IMPLICIT_DECL (functionid) == 0);
2599 DECL_EXTERNAL (decl) = 1;
2600 TREE_PUBLIC (decl) = 1;
2602 /* Record that we have an implicit decl and this is it. */
2603 IDENTIFIER_IMPLICIT_DECL (functionid) = decl;
2605 /* ANSI standard says implicit declarations are in the innermost block.
2606 So we record the decl in the standard fashion.
2607 If flag_traditional is set, pushdecl does it top-level. */
2608 pushdecl (decl);
2610 /* This is a no-op in c-lang.c or something real in objc-actions.c. */
2611 maybe_objc_check_decl (decl);
2613 rest_of_decl_compilation (decl, NULL, 0, 0);
2615 if (implicit_warning)
2616 implicit_decl_warning (functionid);
2617 else if (warn_traditional && traditional_warning)
2618 warning ("function `%s' was previously declared within a block",
2619 IDENTIFIER_POINTER (functionid));
2621 /* Write a record describing this implicit function declaration to the
2622 prototypes file (if requested). */
2624 gen_aux_info_record (decl, 0, 1, 0);
2626 /* Possibly apply some default attributes to this implicit declaration. */
2627 decl_attributes (&decl, NULL_TREE, 0);
2629 return decl;
2632 void
2633 implicit_decl_warning (id)
2634 tree id;
2636 const char *name = IDENTIFIER_POINTER (id);
2637 if (mesg_implicit_function_declaration == 2)
2638 error ("implicit declaration of function `%s'", name);
2639 else if (mesg_implicit_function_declaration == 1)
2640 warning ("implicit declaration of function `%s'", name);
2643 /* Return zero if the declaration NEWDECL is valid
2644 when the declaration OLDDECL (assumed to be for the same name)
2645 has already been seen.
2646 Otherwise return 1 if NEWDECL is a redefinition, 2 if it is a redeclaration,
2647 and 3 if it is a conflicting declaration. */
2649 static int
2650 redeclaration_error_message (newdecl, olddecl)
2651 tree newdecl, olddecl;
2653 if (TREE_CODE (newdecl) == TYPE_DECL)
2655 if (flag_traditional && TREE_TYPE (newdecl) == TREE_TYPE (olddecl))
2656 return 0;
2657 /* pushdecl creates distinct types for TYPE_DECLs by calling
2658 build_type_copy, so the above comparison generally fails. We do
2659 another test against the TYPE_MAIN_VARIANT of the olddecl, which
2660 is equivalent to what this code used to do before the build_type_copy
2661 call. The variant type distinction should not matter for traditional
2662 code, because it doesn't have type qualifiers. */
2663 if (flag_traditional
2664 && TYPE_MAIN_VARIANT (TREE_TYPE (olddecl)) == TREE_TYPE (newdecl))
2665 return 0;
2666 if (DECL_IN_SYSTEM_HEADER (olddecl) || DECL_IN_SYSTEM_HEADER (newdecl))
2667 return 0;
2668 return 1;
2670 else if (TREE_CODE (newdecl) == FUNCTION_DECL)
2672 /* Declarations of functions can insist on internal linkage
2673 but they can't be inconsistent with internal linkage,
2674 so there can be no error on that account.
2675 However defining the same name twice is no good. */
2676 if (DECL_INITIAL (olddecl) != 0 && DECL_INITIAL (newdecl) != 0
2677 /* However, defining once as extern inline and a second
2678 time in another way is ok. */
2679 && ! (DECL_DECLARED_INLINE_P (olddecl) && DECL_EXTERNAL (olddecl)
2680 && ! (DECL_DECLARED_INLINE_P (newdecl)
2681 && DECL_EXTERNAL (newdecl))))
2682 return 1;
2683 return 0;
2685 else if (DECL_CONTEXT (newdecl) == NULL_TREE)
2687 /* Objects declared at top level: */
2688 /* If at least one is a reference, it's ok. */
2689 if (DECL_EXTERNAL (newdecl) || DECL_EXTERNAL (olddecl))
2690 return 0;
2691 /* Reject two definitions. */
2692 if (DECL_INITIAL (olddecl) != 0 && DECL_INITIAL (newdecl) != 0)
2693 return 1;
2694 /* Now we have two tentative defs, or one tentative and one real def. */
2695 /* Insist that the linkage match. */
2696 if (TREE_PUBLIC (olddecl) != TREE_PUBLIC (newdecl))
2697 return 3;
2698 return 0;
2700 else if (current_binding_level->parm_flag
2701 && TREE_ASM_WRITTEN (olddecl) && !TREE_ASM_WRITTEN (newdecl))
2702 return 0;
2703 else
2705 /* Newdecl has block scope. If olddecl has block scope also, then
2706 reject two definitions, and reject a definition together with an
2707 external reference. Otherwise, it is OK, because newdecl must
2708 be an extern reference to olddecl. */
2709 if (!(DECL_EXTERNAL (newdecl) && DECL_EXTERNAL (olddecl))
2710 && DECL_CONTEXT (newdecl) == DECL_CONTEXT (olddecl))
2711 return 2;
2712 return 0;
2716 /* Get the LABEL_DECL corresponding to identifier ID as a label.
2717 Create one if none exists so far for the current function.
2718 This function is called for both label definitions and label references. */
2720 tree
2721 lookup_label (id)
2722 tree id;
2724 tree decl = IDENTIFIER_LABEL_VALUE (id);
2726 if (current_function_decl == 0)
2728 error ("label %s referenced outside of any function",
2729 IDENTIFIER_POINTER (id));
2730 return 0;
2733 /* Use a label already defined or ref'd with this name. */
2734 if (decl != 0)
2736 /* But not if it is inherited and wasn't declared to be inheritable. */
2737 if (DECL_CONTEXT (decl) != current_function_decl
2738 && ! C_DECLARED_LABEL_FLAG (decl))
2739 return shadow_label (id);
2740 return decl;
2743 decl = build_decl (LABEL_DECL, id, void_type_node);
2745 /* A label not explicitly declared must be local to where it's ref'd. */
2746 DECL_CONTEXT (decl) = current_function_decl;
2748 DECL_MODE (decl) = VOIDmode;
2750 /* Say where one reference is to the label,
2751 for the sake of the error if it is not defined. */
2752 DECL_SOURCE_LINE (decl) = lineno;
2753 DECL_SOURCE_FILE (decl) = input_filename;
2755 IDENTIFIER_LABEL_VALUE (id) = decl;
2757 named_labels = tree_cons (NULL_TREE, decl, named_labels);
2759 return decl;
2762 /* Make a label named NAME in the current function,
2763 shadowing silently any that may be inherited from containing functions
2764 or containing scopes.
2766 Note that valid use, if the label being shadowed
2767 comes from another scope in the same function,
2768 requires calling declare_nonlocal_label right away. */
2770 tree
2771 shadow_label (name)
2772 tree name;
2774 tree decl = IDENTIFIER_LABEL_VALUE (name);
2776 if (decl != 0)
2778 tree dup;
2780 /* Check to make sure that the label hasn't already been declared
2781 at this label scope */
2782 for (dup = named_labels; dup; dup = TREE_CHAIN (dup))
2783 if (TREE_VALUE (dup) == decl)
2785 error ("duplicate label declaration `%s'",
2786 IDENTIFIER_POINTER (name));
2787 error_with_decl (TREE_VALUE (dup),
2788 "this is a previous declaration");
2789 /* Just use the previous declaration. */
2790 return lookup_label (name);
2793 shadowed_labels = tree_cons (NULL_TREE, decl, shadowed_labels);
2794 IDENTIFIER_LABEL_VALUE (name) = decl = 0;
2797 return lookup_label (name);
2800 /* Define a label, specifying the location in the source file.
2801 Return the LABEL_DECL node for the label, if the definition is valid.
2802 Otherwise return 0. */
2804 tree
2805 define_label (filename, line, name)
2806 const char *filename;
2807 int line;
2808 tree name;
2810 tree decl = lookup_label (name);
2812 /* If label with this name is known from an outer context, shadow it. */
2813 if (decl != 0 && DECL_CONTEXT (decl) != current_function_decl)
2815 shadowed_labels = tree_cons (NULL_TREE, decl, shadowed_labels);
2816 IDENTIFIER_LABEL_VALUE (name) = 0;
2817 decl = lookup_label (name);
2820 if (warn_traditional && !in_system_header && lookup_name (name))
2821 warning_with_file_and_line (filename, line,
2822 "traditional C lacks a separate namespace for labels, identifier `%s' conflicts",
2823 IDENTIFIER_POINTER (name));
2825 if (DECL_INITIAL (decl) != 0)
2827 error_with_file_and_line (filename, line, "duplicate label `%s'",
2828 IDENTIFIER_POINTER (name));
2829 return 0;
2831 else
2833 /* Mark label as having been defined. */
2834 DECL_INITIAL (decl) = error_mark_node;
2835 /* Say where in the source. */
2836 DECL_SOURCE_FILE (decl) = filename;
2837 DECL_SOURCE_LINE (decl) = line;
2838 return decl;
2842 /* Return the list of declarations of the current level.
2843 Note that this list is in reverse order unless/until
2844 you nreverse it; and when you do nreverse it, you must
2845 store the result back using `storedecls' or you will lose. */
2847 tree
2848 getdecls ()
2850 return current_binding_level->names;
2853 /* Return the list of type-tags (for structs, etc) of the current level. */
2855 tree
2856 gettags ()
2858 return current_binding_level->tags;
2861 /* Store the list of declarations of the current level.
2862 This is done for the parameter declarations of a function being defined,
2863 after they are modified in the light of any missing parameters. */
2865 static void
2866 storedecls (decls)
2867 tree decls;
2869 current_binding_level->names = decls;
2872 /* Similarly, store the list of tags of the current level. */
2874 static void
2875 storetags (tags)
2876 tree tags;
2878 current_binding_level->tags = tags;
2881 /* Given NAME, an IDENTIFIER_NODE,
2882 return the structure (or union or enum) definition for that name.
2883 Searches binding levels from BINDING_LEVEL up to the global level.
2884 If THISLEVEL_ONLY is nonzero, searches only the specified context
2885 (but skips any tag-transparent contexts to find one that is
2886 meaningful for tags).
2887 CODE says which kind of type the caller wants;
2888 it is RECORD_TYPE or UNION_TYPE or ENUMERAL_TYPE.
2889 If the wrong kind of type is found, an error is reported. */
2891 static tree
2892 lookup_tag (code, name, binding_level, thislevel_only)
2893 enum tree_code code;
2894 struct binding_level *binding_level;
2895 tree name;
2896 int thislevel_only;
2898 struct binding_level *level;
2899 int thislevel = 1;
2901 for (level = binding_level; level; level = level->level_chain)
2903 tree tail;
2904 for (tail = level->tags; tail; tail = TREE_CHAIN (tail))
2906 if (TREE_PURPOSE (tail) == name)
2908 if (TREE_CODE (TREE_VALUE (tail)) != code)
2910 /* Definition isn't the kind we were looking for. */
2911 pending_invalid_xref = name;
2912 pending_invalid_xref_file = input_filename;
2913 pending_invalid_xref_line = lineno;
2914 /* If in the same binding level as a declaration as a tag
2915 of a different type, this must not be allowed to
2916 shadow that tag, so give the error immediately.
2917 (For example, "struct foo; union foo;" is invalid.) */
2918 if (thislevel)
2919 pending_xref_error ();
2921 return TREE_VALUE (tail);
2924 if (! level->tag_transparent)
2926 if (thislevel_only)
2927 return NULL_TREE;
2928 thislevel = 0;
2931 return NULL_TREE;
2934 /* Print an error message now
2935 for a recent invalid struct, union or enum cross reference.
2936 We don't print them immediately because they are not invalid
2937 when used in the `struct foo;' construct for shadowing. */
2939 void
2940 pending_xref_error ()
2942 if (pending_invalid_xref != 0)
2943 error_with_file_and_line (pending_invalid_xref_file,
2944 pending_invalid_xref_line,
2945 "`%s' defined as wrong kind of tag",
2946 IDENTIFIER_POINTER (pending_invalid_xref));
2947 pending_invalid_xref = 0;
2950 /* Given a type, find the tag that was defined for it and return the tag name.
2951 Otherwise return 0. */
2953 static tree
2954 lookup_tag_reverse (type)
2955 tree type;
2957 struct binding_level *level;
2959 for (level = current_binding_level; level; level = level->level_chain)
2961 tree tail;
2962 for (tail = level->tags; tail; tail = TREE_CHAIN (tail))
2964 if (TREE_VALUE (tail) == type)
2965 return TREE_PURPOSE (tail);
2968 return NULL_TREE;
2971 /* Look up NAME in the current binding level and its superiors
2972 in the namespace of variables, functions and typedefs.
2973 Return a ..._DECL node of some kind representing its definition,
2974 or return 0 if it is undefined. */
2976 tree
2977 lookup_name (name)
2978 tree name;
2980 tree val;
2982 if (current_binding_level != global_binding_level
2983 && IDENTIFIER_LOCAL_VALUE (name))
2984 val = IDENTIFIER_LOCAL_VALUE (name);
2985 else
2986 val = IDENTIFIER_GLOBAL_VALUE (name);
2987 return val;
2990 /* Similar to `lookup_name' but look only at current binding level. */
2992 tree
2993 lookup_name_current_level (name)
2994 tree name;
2996 tree t;
2998 if (current_binding_level == global_binding_level)
2999 return IDENTIFIER_GLOBAL_VALUE (name);
3001 if (IDENTIFIER_LOCAL_VALUE (name) == 0)
3002 return 0;
3004 for (t = current_binding_level->names; t; t = TREE_CHAIN (t))
3005 if (DECL_NAME (t) == name)
3006 break;
3008 return t;
3011 /* Mark ARG for GC. */
3013 static void
3014 mark_binding_level (arg)
3015 void *arg;
3017 struct binding_level *level = *(struct binding_level **) arg;
3019 for (; level != 0; level = level->level_chain)
3021 ggc_mark_tree (level->names);
3022 ggc_mark_tree (level->tags);
3023 ggc_mark_tree (level->shadowed);
3024 ggc_mark_tree (level->blocks);
3025 ggc_mark_tree (level->this_block);
3026 ggc_mark_tree (level->parm_order);
3030 /* Create the predefined scalar types of C,
3031 and some nodes representing standard constants (0, 1, (void *) 0).
3032 Initialize the global binding level.
3033 Make definitions for built-in primitive functions. */
3035 void
3036 c_init_decl_processing ()
3038 tree endlink;
3039 tree ptr_ftype_void, ptr_ftype_ptr;
3041 /* Adds some ggc roots, and reserved words for c-parse.in. */
3042 c_parse_init ();
3044 current_function_decl = NULL;
3045 named_labels = NULL;
3046 current_binding_level = NULL_BINDING_LEVEL;
3047 free_binding_level = NULL_BINDING_LEVEL;
3049 /* Make the binding_level structure for global names. */
3050 pushlevel (0);
3051 global_binding_level = current_binding_level;
3053 build_common_tree_nodes (flag_signed_char);
3055 c_common_nodes_and_builtins ();
3057 boolean_type_node = integer_type_node;
3058 boolean_true_node = integer_one_node;
3059 boolean_false_node = integer_zero_node;
3061 /* With GCC, C99's _Bool is always of size 1. */
3062 c_bool_type_node = make_unsigned_type (CHAR_TYPE_SIZE);
3063 TREE_SET_CODE (c_bool_type_node, BOOLEAN_TYPE);
3064 TYPE_MAX_VALUE (c_bool_type_node) = build_int_2 (1, 0);
3065 TREE_TYPE (TYPE_MAX_VALUE (c_bool_type_node)) = c_bool_type_node;
3066 TYPE_PRECISION (c_bool_type_node) = 1;
3067 pushdecl (build_decl (TYPE_DECL, get_identifier ("_Bool"),
3068 c_bool_type_node));
3069 c_bool_false_node = build_int_2 (0, 0);
3070 TREE_TYPE (c_bool_false_node) = c_bool_type_node;
3071 c_bool_true_node = build_int_2 (1, 0);
3072 TREE_TYPE (c_bool_true_node) = c_bool_type_node;
3074 endlink = void_list_node;
3075 ptr_ftype_void = build_function_type (ptr_type_node, endlink);
3076 ptr_ftype_ptr
3077 = build_function_type (ptr_type_node,
3078 tree_cons (NULL_TREE, ptr_type_node, endlink));
3080 /* Types which are common to the fortran compiler and libf2c. When
3081 changing these, you also need to be concerned with f/com.h. */
3083 if (TYPE_PRECISION (float_type_node)
3084 == TYPE_PRECISION (long_integer_type_node))
3086 g77_integer_type_node = long_integer_type_node;
3087 g77_uinteger_type_node = long_unsigned_type_node;
3089 else if (TYPE_PRECISION (float_type_node)
3090 == TYPE_PRECISION (integer_type_node))
3092 g77_integer_type_node = integer_type_node;
3093 g77_uinteger_type_node = unsigned_type_node;
3095 else
3096 g77_integer_type_node = g77_uinteger_type_node = NULL_TREE;
3098 if (g77_integer_type_node != NULL_TREE)
3100 pushdecl (build_decl (TYPE_DECL, get_identifier ("__g77_integer"),
3101 g77_integer_type_node));
3102 pushdecl (build_decl (TYPE_DECL, get_identifier ("__g77_uinteger"),
3103 g77_uinteger_type_node));
3106 if (TYPE_PRECISION (float_type_node) * 2
3107 == TYPE_PRECISION (long_integer_type_node))
3109 g77_longint_type_node = long_integer_type_node;
3110 g77_ulongint_type_node = long_unsigned_type_node;
3112 else if (TYPE_PRECISION (float_type_node) * 2
3113 == TYPE_PRECISION (long_long_integer_type_node))
3115 g77_longint_type_node = long_long_integer_type_node;
3116 g77_ulongint_type_node = long_long_unsigned_type_node;
3118 else
3119 g77_longint_type_node = g77_ulongint_type_node = NULL_TREE;
3121 if (g77_longint_type_node != NULL_TREE)
3123 pushdecl (build_decl (TYPE_DECL, get_identifier ("__g77_longint"),
3124 g77_longint_type_node));
3125 pushdecl (build_decl (TYPE_DECL, get_identifier ("__g77_ulongint"),
3126 g77_ulongint_type_node));
3129 pedantic_lvalues = pedantic;
3131 make_fname_decl = c_make_fname_decl;
3132 start_fname_decls ();
3134 incomplete_decl_finalize_hook = finish_incomplete_decl;
3136 /* Record our roots. */
3138 ggc_add_tree_root (c_global_trees, CTI_MAX);
3139 ggc_add_root (&c_stmt_tree, 1, sizeof c_stmt_tree, mark_stmt_tree);
3140 ggc_add_tree_root (&c_scope_stmt_stack, 1);
3141 ggc_add_tree_root (&named_labels, 1);
3142 ggc_add_tree_root (&shadowed_labels, 1);
3143 ggc_add_root (&current_binding_level, 1, sizeof current_binding_level,
3144 mark_binding_level);
3145 ggc_add_root (&label_level_chain, 1, sizeof label_level_chain,
3146 mark_binding_level);
3147 ggc_add_tree_root (&static_ctors, 1);
3148 ggc_add_tree_root (&static_dtors, 1);
3151 /* Create the VAR_DECL for __FUNCTION__ etc. ID is the name to give the
3152 decl, NAME is the initialization string and TYPE_DEP indicates whether
3153 NAME depended on the type of the function. As we don't yet implement
3154 delayed emission of static data, we mark the decl as emitted
3155 so it is not placed in the output. Anything using it must therefore pull
3156 out the STRING_CST initializer directly. This does mean that these names
3157 are string merging candidates, which is wrong for C99's __func__. FIXME. */
3159 static tree
3160 c_make_fname_decl (id, type_dep)
3161 tree id;
3162 int type_dep;
3164 const char *name = fname_as_string (type_dep);
3165 tree decl, type, init;
3166 size_t length = strlen (name);
3168 type = build_array_type
3169 (build_qualified_type (char_type_node, TYPE_QUAL_CONST),
3170 build_index_type (size_int (length)));
3172 decl = build_decl (VAR_DECL, id, type);
3173 /* We don't push the decl, so have to set its context here. */
3174 DECL_CONTEXT (decl) = current_function_decl;
3176 TREE_STATIC (decl) = 1;
3177 TREE_READONLY (decl) = 1;
3178 DECL_ARTIFICIAL (decl) = 1;
3180 init = build_string (length + 1, name);
3181 TREE_TYPE (init) = type;
3182 DECL_INITIAL (decl) = init;
3184 TREE_USED (decl) = 1;
3186 finish_decl (decl, init, NULL_TREE);
3188 return decl;
3191 /* Return a definition for a builtin function named NAME and whose data type
3192 is TYPE. TYPE should be a function type with argument types.
3193 FUNCTION_CODE tells later passes how to compile calls to this function.
3194 See tree.h for its possible values.
3196 If LIBRARY_NAME is nonzero, use that for DECL_ASSEMBLER_NAME,
3197 the name to be called if we can't opencode the function. */
3199 tree
3200 builtin_function (name, type, function_code, class, library_name)
3201 const char *name;
3202 tree type;
3203 int function_code;
3204 enum built_in_class class;
3205 const char *library_name;
3207 tree decl = build_decl (FUNCTION_DECL, get_identifier (name), type);
3208 DECL_EXTERNAL (decl) = 1;
3209 TREE_PUBLIC (decl) = 1;
3210 /* If -traditional, permit redefining a builtin function any way you like.
3211 (Though really, if the program redefines these functions,
3212 it probably won't work right unless compiled with -fno-builtin.) */
3213 if (flag_traditional && name[0] != '_')
3214 DECL_BUILT_IN_NONANSI (decl) = 1;
3215 if (library_name)
3216 SET_DECL_ASSEMBLER_NAME (decl, get_identifier (library_name));
3217 make_decl_rtl (decl, NULL);
3218 pushdecl (decl);
3219 DECL_BUILT_IN_CLASS (decl) = class;
3220 DECL_FUNCTION_CODE (decl) = function_code;
3222 /* The return builtins leave the current function. */
3223 if (function_code == BUILT_IN_RETURN || function_code == BUILT_IN_EH_RETURN)
3224 TREE_THIS_VOLATILE (decl) = 1;
3226 /* Warn if a function in the namespace for users
3227 is used without an occasion to consider it declared. */
3228 if (name[0] != '_' || name[1] != '_')
3229 C_DECL_ANTICIPATED (decl) = 1;
3231 /* Possibly apply some default attributes to this built-in function. */
3232 decl_attributes (&decl, NULL_TREE, 0);
3234 return decl;
3237 /* Apply default attributes to a function, if a system function with default
3238 attributes. */
3240 void
3241 insert_default_attributes (decl)
3242 tree decl;
3244 if (!TREE_PUBLIC (decl))
3245 return;
3246 c_common_insert_default_attributes (decl);
3249 /* Called when a declaration is seen that contains no names to declare.
3250 If its type is a reference to a structure, union or enum inherited
3251 from a containing scope, shadow that tag name for the current scope
3252 with a forward reference.
3253 If its type defines a new named structure or union
3254 or defines an enum, it is valid but we need not do anything here.
3255 Otherwise, it is an error. */
3257 void
3258 shadow_tag (declspecs)
3259 tree declspecs;
3261 shadow_tag_warned (declspecs, 0);
3264 void
3265 shadow_tag_warned (declspecs, warned)
3266 tree declspecs;
3267 int warned;
3268 /* 1 => we have done a pedwarn. 2 => we have done a warning, but
3269 no pedwarn. */
3271 int found_tag = 0;
3272 tree link;
3273 tree specs, attrs;
3275 pending_invalid_xref = 0;
3277 /* Remove the attributes from declspecs, since they will confuse the
3278 following code. */
3279 split_specs_attrs (declspecs, &specs, &attrs);
3281 for (link = specs; link; link = TREE_CHAIN (link))
3283 tree value = TREE_VALUE (link);
3284 enum tree_code code = TREE_CODE (value);
3286 if (code == RECORD_TYPE || code == UNION_TYPE || code == ENUMERAL_TYPE)
3287 /* Used to test also that TYPE_SIZE (value) != 0.
3288 That caused warning for `struct foo;' at top level in the file. */
3290 tree name = lookup_tag_reverse (value);
3291 tree t;
3293 found_tag++;
3295 if (name == 0)
3297 if (warned != 1 && code != ENUMERAL_TYPE)
3298 /* Empty unnamed enum OK */
3300 pedwarn ("unnamed struct/union that defines no instances");
3301 warned = 1;
3304 else
3306 t = lookup_tag (code, name, current_binding_level, 1);
3308 if (t == 0)
3310 t = make_node (code);
3311 pushtag (name, t);
3315 else
3317 if (!warned && ! in_system_header)
3319 warning ("useless keyword or type name in empty declaration");
3320 warned = 2;
3325 if (found_tag > 1)
3326 error ("two types specified in one empty declaration");
3328 if (warned != 1)
3330 if (found_tag == 0)
3331 pedwarn ("empty declaration");
3335 /* Construct an array declarator. EXPR is the expression inside [], or
3336 NULL_TREE. QUALS are the type qualifiers inside the [] (to be applied
3337 to the pointer to which a parameter array is converted). STATIC_P is
3338 non-zero if "static" is inside the [], zero otherwise. VLA_UNSPEC_P
3339 is non-zero is the array is [*], a VLA of unspecified length which is
3340 nevertheless a complete type (not currently implemented by GCC),
3341 zero otherwise. The declarator is constructed as an ARRAY_REF
3342 (to be decoded by grokdeclarator), whose operand 0 is what's on the
3343 left of the [] (filled by in set_array_declarator_type) and operand 1
3344 is the expression inside; whose TREE_TYPE is the type qualifiers and
3345 which has TREE_STATIC set if "static" is used. */
3347 tree
3348 build_array_declarator (expr, quals, static_p, vla_unspec_p)
3349 tree expr;
3350 tree quals;
3351 int static_p;
3352 int vla_unspec_p;
3354 tree decl;
3355 decl = build_nt (ARRAY_REF, NULL_TREE, expr);
3356 TREE_TYPE (decl) = quals;
3357 TREE_STATIC (decl) = (static_p ? 1 : 0);
3358 if (pedantic && !flag_isoc99)
3360 if (static_p || quals != NULL_TREE)
3361 pedwarn ("ISO C89 does not support `static' or type qualifiers in parameter array declarators");
3362 if (vla_unspec_p)
3363 pedwarn ("ISO C89 does not support `[*]' array declarators");
3365 if (vla_unspec_p)
3366 warning ("GCC does not yet properly implement `[*]' array declarators");
3367 return decl;
3370 /* Set the type of an array declarator. DECL is the declarator, as
3371 constructed by build_array_declarator; TYPE is what appears on the left
3372 of the [] and goes in operand 0. ABSTRACT_P is non-zero if it is an
3373 abstract declarator, zero otherwise; this is used to reject static and
3374 type qualifiers in abstract declarators, where they are not in the
3375 C99 grammar. */
3377 tree
3378 set_array_declarator_type (decl, type, abstract_p)
3379 tree decl;
3380 tree type;
3381 int abstract_p;
3383 TREE_OPERAND (decl, 0) = type;
3384 if (abstract_p && (TREE_TYPE (decl) != NULL_TREE || TREE_STATIC (decl)))
3385 error ("static or type qualifiers in abstract declarator");
3386 return decl;
3389 /* Decode a "typename", such as "int **", returning a ..._TYPE node. */
3391 tree
3392 groktypename (typename)
3393 tree typename;
3395 tree specs, attrs;
3397 if (TREE_CODE (typename) != TREE_LIST)
3398 return typename;
3400 split_specs_attrs (TREE_PURPOSE (typename), &specs, &attrs);
3402 typename = grokdeclarator (TREE_VALUE (typename), specs, TYPENAME, 0);
3404 /* Apply attributes. */
3405 decl_attributes (&typename, attrs, 0);
3407 return typename;
3410 /* Return a PARM_DECL node for a given pair of specs and declarator. */
3412 tree
3413 groktypename_in_parm_context (typename)
3414 tree typename;
3416 if (TREE_CODE (typename) != TREE_LIST)
3417 return typename;
3418 return grokdeclarator (TREE_VALUE (typename),
3419 TREE_PURPOSE (typename),
3420 PARM, 0);
3423 /* Decode a declarator in an ordinary declaration or data definition.
3424 This is called as soon as the type information and variable name
3425 have been parsed, before parsing the initializer if any.
3426 Here we create the ..._DECL node, fill in its type,
3427 and put it on the list of decls for the current context.
3428 The ..._DECL node is returned as the value.
3430 Exception: for arrays where the length is not specified,
3431 the type is left null, to be filled in by `finish_decl'.
3433 Function definitions do not come here; they go to start_function
3434 instead. However, external and forward declarations of functions
3435 do go through here. Structure field declarations are done by
3436 grokfield and not through here. */
3438 tree
3439 start_decl (declarator, declspecs, initialized, attributes)
3440 tree declarator, declspecs;
3441 int initialized;
3442 tree attributes;
3444 tree decl;
3445 tree tem;
3447 /* An object declared as __attribute__((deprecated)) suppresses
3448 warnings of uses of other deprecated items. */
3449 if (lookup_attribute ("deprecated", attributes))
3450 deprecated_state = DEPRECATED_SUPPRESS;
3452 decl = grokdeclarator (declarator, declspecs,
3453 NORMAL, initialized);
3455 deprecated_state = DEPRECATED_NORMAL;
3457 if (warn_main > 0 && TREE_CODE (decl) != FUNCTION_DECL
3458 && MAIN_NAME_P (DECL_NAME (decl)))
3459 warning_with_decl (decl, "`%s' is usually a function");
3461 if (initialized)
3462 /* Is it valid for this decl to have an initializer at all?
3463 If not, set INITIALIZED to zero, which will indirectly
3464 tell `finish_decl' to ignore the initializer once it is parsed. */
3465 switch (TREE_CODE (decl))
3467 case TYPE_DECL:
3468 /* typedef foo = bar means give foo the same type as bar.
3469 We haven't parsed bar yet, so `finish_decl' will fix that up.
3470 Any other case of an initialization in a TYPE_DECL is an error. */
3471 if (pedantic || list_length (declspecs) > 1)
3473 error ("typedef `%s' is initialized",
3474 IDENTIFIER_POINTER (DECL_NAME (decl)));
3475 initialized = 0;
3477 break;
3479 case FUNCTION_DECL:
3480 error ("function `%s' is initialized like a variable",
3481 IDENTIFIER_POINTER (DECL_NAME (decl)));
3482 initialized = 0;
3483 break;
3485 case PARM_DECL:
3486 /* DECL_INITIAL in a PARM_DECL is really DECL_ARG_TYPE. */
3487 error ("parameter `%s' is initialized",
3488 IDENTIFIER_POINTER (DECL_NAME (decl)));
3489 initialized = 0;
3490 break;
3492 default:
3493 /* Don't allow initializations for incomplete types
3494 except for arrays which might be completed by the initialization. */
3496 /* This can happen if the array size is an undefined macro. We already
3497 gave a warning, so we don't need another one. */
3498 if (TREE_TYPE (decl) == error_mark_node)
3499 initialized = 0;
3500 else if (COMPLETE_TYPE_P (TREE_TYPE (decl)))
3502 /* A complete type is ok if size is fixed. */
3504 if (TREE_CODE (TYPE_SIZE (TREE_TYPE (decl))) != INTEGER_CST
3505 || C_DECL_VARIABLE_SIZE (decl))
3507 error ("variable-sized object may not be initialized");
3508 initialized = 0;
3511 else if (TREE_CODE (TREE_TYPE (decl)) != ARRAY_TYPE)
3513 error ("variable `%s' has initializer but incomplete type",
3514 IDENTIFIER_POINTER (DECL_NAME (decl)));
3515 initialized = 0;
3517 else if (!COMPLETE_TYPE_P (TREE_TYPE (TREE_TYPE (decl))))
3519 error ("elements of array `%s' have incomplete type",
3520 IDENTIFIER_POINTER (DECL_NAME (decl)));
3521 initialized = 0;
3525 if (initialized)
3527 #if 0
3528 /* Seems redundant with grokdeclarator. */
3529 if (current_binding_level != global_binding_level
3530 && DECL_EXTERNAL (decl)
3531 && TREE_CODE (decl) != FUNCTION_DECL)
3532 warning ("declaration of `%s' has `extern' and is initialized",
3533 IDENTIFIER_POINTER (DECL_NAME (decl)));
3534 #endif
3535 DECL_EXTERNAL (decl) = 0;
3536 if (current_binding_level == global_binding_level)
3537 TREE_STATIC (decl) = 1;
3539 /* Tell `pushdecl' this is an initialized decl
3540 even though we don't yet have the initializer expression.
3541 Also tell `finish_decl' it may store the real initializer. */
3542 DECL_INITIAL (decl) = error_mark_node;
3545 /* If this is a function declaration, write a record describing it to the
3546 prototypes file (if requested). */
3548 if (TREE_CODE (decl) == FUNCTION_DECL)
3549 gen_aux_info_record (decl, 0, 0, TYPE_ARG_TYPES (TREE_TYPE (decl)) != 0);
3551 /* ANSI specifies that a tentative definition which is not merged with
3552 a non-tentative definition behaves exactly like a definition with an
3553 initializer equal to zero. (Section 3.7.2)
3554 -fno-common gives strict ANSI behavior. Usually you don't want it.
3555 This matters only for variables with external linkage. */
3556 if (! flag_no_common || ! TREE_PUBLIC (decl))
3557 DECL_COMMON (decl) = 1;
3559 /* Set attributes here so if duplicate decl, will have proper attributes. */
3560 decl_attributes (&decl, attributes, 0);
3562 if (TREE_CODE (decl) == FUNCTION_DECL
3563 && DECL_DECLARED_INLINE_P (decl)
3564 && DECL_UNINLINABLE (decl)
3565 && lookup_attribute ("noinline", DECL_ATTRIBUTES (decl)))
3566 warning_with_decl (decl,
3567 "inline function `%s' given attribute noinline");
3569 /* Add this decl to the current binding level.
3570 TEM may equal DECL or it may be a previous decl of the same name. */
3571 tem = pushdecl (decl);
3573 /* For a local variable, define the RTL now. */
3574 if (current_binding_level != global_binding_level
3575 /* But not if this is a duplicate decl
3576 and we preserved the rtl from the previous one
3577 (which may or may not happen). */
3578 && !DECL_RTL_SET_P (tem)
3579 && !DECL_CONTEXT (tem))
3581 if (TREE_TYPE (tem) != error_mark_node
3582 && COMPLETE_TYPE_P (TREE_TYPE (tem)))
3583 expand_decl (tem);
3584 else if (TREE_CODE (TREE_TYPE (tem)) == ARRAY_TYPE
3585 && DECL_INITIAL (tem) != 0)
3586 expand_decl (tem);
3589 return tem;
3592 /* Finish processing of a declaration;
3593 install its initial value.
3594 If the length of an array type is not known before,
3595 it must be determined now, from the initial value, or it is an error. */
3597 void
3598 finish_decl (decl, init, asmspec_tree)
3599 tree decl, init;
3600 tree asmspec_tree;
3602 tree type = TREE_TYPE (decl);
3603 int was_incomplete = (DECL_SIZE (decl) == 0);
3604 const char *asmspec = 0;
3606 /* If a name was specified, get the string. */
3607 if (asmspec_tree)
3608 asmspec = TREE_STRING_POINTER (asmspec_tree);
3610 /* If `start_decl' didn't like having an initialization, ignore it now. */
3611 if (init != 0 && DECL_INITIAL (decl) == 0)
3612 init = 0;
3614 /* Don't crash if parm is initialized. */
3615 if (TREE_CODE (decl) == PARM_DECL)
3616 init = 0;
3618 if (init)
3620 if (TREE_CODE (decl) != TYPE_DECL)
3621 store_init_value (decl, init);
3622 else
3624 /* typedef foo = bar; store the type of bar as the type of foo. */
3625 TREE_TYPE (decl) = TREE_TYPE (init);
3626 DECL_INITIAL (decl) = init = 0;
3630 /* Deduce size of array from initialization, if not already known */
3631 if (TREE_CODE (type) == ARRAY_TYPE
3632 && TYPE_DOMAIN (type) == 0
3633 && TREE_CODE (decl) != TYPE_DECL)
3635 int do_default
3636 = (TREE_STATIC (decl)
3637 /* Even if pedantic, an external linkage array
3638 may have incomplete type at first. */
3639 ? pedantic && !TREE_PUBLIC (decl)
3640 : !DECL_EXTERNAL (decl));
3641 int failure
3642 = complete_array_type (type, DECL_INITIAL (decl), do_default);
3644 /* Get the completed type made by complete_array_type. */
3645 type = TREE_TYPE (decl);
3647 if (failure == 1)
3648 error_with_decl (decl, "initializer fails to determine size of `%s'");
3650 else if (failure == 2)
3652 if (do_default)
3653 error_with_decl (decl, "array size missing in `%s'");
3654 /* If a `static' var's size isn't known,
3655 make it extern as well as static, so it does not get
3656 allocated.
3657 If it is not `static', then do not mark extern;
3658 finish_incomplete_decl will give it a default size
3659 and it will get allocated. */
3660 else if (!pedantic && TREE_STATIC (decl) && ! TREE_PUBLIC (decl))
3661 DECL_EXTERNAL (decl) = 1;
3664 /* TYPE_MAX_VALUE is always one less than the number of elements
3665 in the array, because we start counting at zero. Therefore,
3666 warn only if the value is less than zero. */
3667 else if (pedantic && TYPE_DOMAIN (type) != 0
3668 && tree_int_cst_sgn (TYPE_MAX_VALUE (TYPE_DOMAIN (type))) < 0)
3669 error_with_decl (decl, "zero or negative size array `%s'");
3671 layout_decl (decl, 0);
3674 if (TREE_CODE (decl) == VAR_DECL)
3676 if (DECL_SIZE (decl) == 0 && TREE_TYPE (decl) != error_mark_node
3677 && COMPLETE_TYPE_P (TREE_TYPE (decl)))
3678 layout_decl (decl, 0);
3680 if (DECL_SIZE (decl) == 0
3681 /* Don't give an error if we already gave one earlier. */
3682 && TREE_TYPE (decl) != error_mark_node
3683 && (TREE_STATIC (decl)
3685 /* A static variable with an incomplete type
3686 is an error if it is initialized.
3687 Also if it is not file scope.
3688 Otherwise, let it through, but if it is not `extern'
3689 then it may cause an error message later. */
3690 (DECL_INITIAL (decl) != 0
3691 || DECL_CONTEXT (decl) != 0)
3693 /* An automatic variable with an incomplete type
3694 is an error. */
3695 !DECL_EXTERNAL (decl)))
3697 error_with_decl (decl, "storage size of `%s' isn't known");
3698 TREE_TYPE (decl) = error_mark_node;
3701 if ((DECL_EXTERNAL (decl) || TREE_STATIC (decl))
3702 && DECL_SIZE (decl) != 0)
3704 if (TREE_CODE (DECL_SIZE (decl)) == INTEGER_CST)
3705 constant_expression_warning (DECL_SIZE (decl));
3706 else
3707 error_with_decl (decl, "storage size of `%s' isn't constant");
3710 if (TREE_USED (type))
3711 TREE_USED (decl) = 1;
3714 /* If this is a function and an assembler name is specified, it isn't
3715 builtin any more. Also reset DECL_RTL so we can give it its new
3716 name. */
3717 if (TREE_CODE (decl) == FUNCTION_DECL && asmspec)
3719 DECL_BUILT_IN_CLASS (decl) = NOT_BUILT_IN;
3720 SET_DECL_RTL (decl, NULL_RTX);
3721 SET_DECL_ASSEMBLER_NAME (decl, get_identifier (asmspec));
3724 /* Output the assembler code and/or RTL code for variables and functions,
3725 unless the type is an undefined structure or union.
3726 If not, it will get done when the type is completed. */
3728 if (TREE_CODE (decl) == VAR_DECL || TREE_CODE (decl) == FUNCTION_DECL)
3730 /* This is a no-op in c-lang.c or something real in objc-actions.c. */
3731 maybe_objc_check_decl (decl);
3733 if (!DECL_CONTEXT (decl))
3735 if (DECL_INITIAL (decl) == NULL_TREE
3736 || DECL_INITIAL (decl) == error_mark_node)
3737 /* Don't output anything
3738 when a tentative file-scope definition is seen.
3739 But at end of compilation, do output code for them. */
3740 DECL_DEFER_OUTPUT (decl) = 1;
3741 rest_of_decl_compilation (decl, asmspec,
3742 (DECL_CONTEXT (decl) == 0
3743 || TREE_ASM_WRITTEN (decl)), 0);
3745 else
3747 /* This is a local variable. If there is an ASMSPEC, the
3748 user has requested that we handle it specially. */
3749 if (asmspec)
3751 /* In conjunction with an ASMSPEC, the `register'
3752 keyword indicates that we should place the variable
3753 in a particular register. */
3754 if (DECL_REGISTER (decl))
3755 DECL_C_HARD_REGISTER (decl) = 1;
3757 /* If this is not a static variable, issue a warning.
3758 It doesn't make any sense to give an ASMSPEC for an
3759 ordinary, non-register local variable. Historically,
3760 GCC has accepted -- but ignored -- the ASMSPEC in
3761 this case. */
3762 if (TREE_CODE (decl) == VAR_DECL
3763 && !DECL_REGISTER (decl)
3764 && !TREE_STATIC (decl))
3765 warning_with_decl (decl,
3766 "ignoring asm-specifier for non-static local variable `%s'");
3767 else
3768 SET_DECL_ASSEMBLER_NAME (decl, get_identifier (asmspec));
3771 if (TREE_CODE (decl) != FUNCTION_DECL)
3772 add_decl_stmt (decl);
3775 if (DECL_CONTEXT (decl) != 0)
3777 /* Recompute the RTL of a local array now
3778 if it used to be an incomplete type. */
3779 if (was_incomplete
3780 && ! TREE_STATIC (decl) && ! DECL_EXTERNAL (decl))
3782 /* If we used it already as memory, it must stay in memory. */
3783 TREE_ADDRESSABLE (decl) = TREE_USED (decl);
3784 /* If it's still incomplete now, no init will save it. */
3785 if (DECL_SIZE (decl) == 0)
3786 DECL_INITIAL (decl) = 0;
3791 if (TREE_CODE (decl) == TYPE_DECL)
3793 /* This is a no-op in c-lang.c or something real in objc-actions.c. */
3794 maybe_objc_check_decl (decl);
3795 rest_of_decl_compilation (decl, NULL, DECL_CONTEXT (decl) == 0, 0);
3798 /* At the end of a declaration, throw away any variable type sizes
3799 of types defined inside that declaration. There is no use
3800 computing them in the following function definition. */
3801 if (current_binding_level == global_binding_level)
3802 get_pending_sizes ();
3805 /* If DECL has a cleanup, build and return that cleanup here.
3806 This is a callback called by expand_expr. */
3808 tree
3809 maybe_build_cleanup (decl)
3810 tree decl ATTRIBUTE_UNUSED;
3812 /* There are no cleanups in C. */
3813 return NULL_TREE;
3816 /* Given a parsed parameter declaration,
3817 decode it into a PARM_DECL and push that on the current binding level.
3818 Also, for the sake of forward parm decls,
3819 record the given order of parms in `parm_order'. */
3821 void
3822 push_parm_decl (parm)
3823 tree parm;
3825 tree decl;
3826 int old_immediate_size_expand = immediate_size_expand;
3827 /* Don't try computing parm sizes now -- wait till fn is called. */
3828 immediate_size_expand = 0;
3830 decl = grokdeclarator (TREE_VALUE (TREE_PURPOSE (parm)),
3831 TREE_PURPOSE (TREE_PURPOSE (parm)), PARM, 0);
3832 decl_attributes (&decl, TREE_VALUE (parm), 0);
3834 #if 0
3835 if (DECL_NAME (decl))
3837 tree olddecl;
3838 olddecl = lookup_name (DECL_NAME (decl));
3839 if (pedantic && olddecl != 0 && TREE_CODE (olddecl) == TYPE_DECL)
3840 pedwarn_with_decl (decl,
3841 "ISO C forbids parameter `%s' shadowing typedef");
3843 #endif
3845 decl = pushdecl (decl);
3847 immediate_size_expand = old_immediate_size_expand;
3849 current_binding_level->parm_order
3850 = tree_cons (NULL_TREE, decl, current_binding_level->parm_order);
3852 /* Add this decl to the current binding level. */
3853 finish_decl (decl, NULL_TREE, NULL_TREE);
3856 /* Clear the given order of parms in `parm_order'.
3857 Used at start of parm list,
3858 and also at semicolon terminating forward decls. */
3860 void
3861 clear_parm_order ()
3863 current_binding_level->parm_order = NULL_TREE;
3866 /* Build a COMPOUND_LITERAL_EXPR. TYPE is the type given in the compound
3867 literal, which may be an incomplete array type completed by the
3868 initializer; INIT is a CONSTRUCTOR that initializes the compound
3869 literal. */
3871 tree
3872 build_compound_literal (type, init)
3873 tree type;
3874 tree init;
3876 /* We do not use start_decl here because we have a type, not a declarator;
3877 and do not use finish_decl because the decl should be stored inside
3878 the COMPOUND_LITERAL_EXPR rather than added elsewhere as a DECL_STMT. */
3879 tree decl = build_decl (VAR_DECL, NULL_TREE, type);
3880 tree complit;
3881 tree stmt;
3882 DECL_EXTERNAL (decl) = 0;
3883 TREE_PUBLIC (decl) = 0;
3884 TREE_STATIC (decl) = (current_binding_level == global_binding_level);
3885 DECL_CONTEXT (decl) = current_function_decl;
3886 TREE_USED (decl) = 1;
3887 TREE_TYPE (decl) = type;
3888 store_init_value (decl, init);
3890 if (TREE_CODE (type) == ARRAY_TYPE && !COMPLETE_TYPE_P (type))
3892 int failure = complete_array_type (type, DECL_INITIAL (decl), 1);
3893 if (failure)
3894 abort ();
3897 type = TREE_TYPE (decl);
3898 if (type == error_mark_node || !COMPLETE_TYPE_P (type))
3899 return error_mark_node;
3901 stmt = build_stmt (DECL_STMT, decl);
3902 complit = build1 (COMPOUND_LITERAL_EXPR, TREE_TYPE (decl), stmt);
3903 TREE_SIDE_EFFECTS (complit) = 1;
3905 layout_decl (decl, 0);
3907 if (TREE_STATIC (decl))
3909 /* This decl needs a name for the assembler output. We also need
3910 a unique suffix to be added to the name, for which DECL_CONTEXT
3911 must be set. */
3912 DECL_NAME (decl) = get_identifier ("__compound_literal");
3913 DECL_CONTEXT (decl) = complit;
3914 rest_of_decl_compilation (decl, NULL, 1, 0);
3915 DECL_CONTEXT (decl) = NULL_TREE;
3918 return complit;
3921 /* Make TYPE a complete type based on INITIAL_VALUE.
3922 Return 0 if successful, 1 if INITIAL_VALUE can't be deciphered,
3923 2 if there was no information (in which case assume 1 if DO_DEFAULT). */
3926 complete_array_type (type, initial_value, do_default)
3927 tree type;
3928 tree initial_value;
3929 int do_default;
3931 tree maxindex = NULL_TREE;
3932 int value = 0;
3934 if (initial_value)
3936 /* Note MAXINDEX is really the maximum index,
3937 one less than the size. */
3938 if (TREE_CODE (initial_value) == STRING_CST)
3940 int eltsize
3941 = int_size_in_bytes (TREE_TYPE (TREE_TYPE (initial_value)));
3942 maxindex = build_int_2 ((TREE_STRING_LENGTH (initial_value)
3943 / eltsize) - 1, 0);
3945 else if (TREE_CODE (initial_value) == CONSTRUCTOR)
3947 tree elts = CONSTRUCTOR_ELTS (initial_value);
3948 maxindex = build_int_2 (-1, -1);
3949 for (; elts; elts = TREE_CHAIN (elts))
3951 if (TREE_PURPOSE (elts))
3952 maxindex = TREE_PURPOSE (elts);
3953 else
3954 maxindex = fold (build (PLUS_EXPR, integer_type_node,
3955 maxindex, integer_one_node));
3957 maxindex = copy_node (maxindex);
3959 else
3961 /* Make an error message unless that happened already. */
3962 if (initial_value != error_mark_node)
3963 value = 1;
3965 /* Prevent further error messages. */
3966 maxindex = build_int_2 (0, 0);
3970 if (!maxindex)
3972 if (do_default)
3973 maxindex = build_int_2 (0, 0);
3974 value = 2;
3977 if (maxindex)
3979 TYPE_DOMAIN (type) = build_index_type (maxindex);
3980 if (!TREE_TYPE (maxindex))
3981 TREE_TYPE (maxindex) = TYPE_DOMAIN (type);
3984 /* Lay out the type now that we can get the real answer. */
3986 layout_type (type);
3988 return value;
3991 /* Given declspecs and a declarator,
3992 determine the name and type of the object declared
3993 and construct a ..._DECL node for it.
3994 (In one case we can return a ..._TYPE node instead.
3995 For invalid input we sometimes return 0.)
3997 DECLSPECS is a chain of tree_list nodes whose value fields
3998 are the storage classes and type specifiers.
4000 DECL_CONTEXT says which syntactic context this declaration is in:
4001 NORMAL for most contexts. Make a VAR_DECL or FUNCTION_DECL or TYPE_DECL.
4002 FUNCDEF for a function definition. Like NORMAL but a few different
4003 error messages in each case. Return value may be zero meaning
4004 this definition is too screwy to try to parse.
4005 PARM for a parameter declaration (either within a function prototype
4006 or before a function body). Make a PARM_DECL, or return void_type_node.
4007 TYPENAME if for a typename (in a cast or sizeof).
4008 Don't make a DECL node; just return the ..._TYPE node.
4009 FIELD for a struct or union field; make a FIELD_DECL.
4010 BITFIELD for a field with specified width.
4011 INITIALIZED is 1 if the decl has an initializer.
4013 In the TYPENAME case, DECLARATOR is really an absolute declarator.
4014 It may also be so in the PARM case, for a prototype where the
4015 argument type is specified but not the name.
4017 This function is where the complicated C meanings of `static'
4018 and `extern' are interpreted. */
4020 static tree
4021 grokdeclarator (declarator, declspecs, decl_context, initialized)
4022 tree declspecs;
4023 tree declarator;
4024 enum decl_context decl_context;
4025 int initialized;
4027 int specbits = 0;
4028 tree spec;
4029 tree type = NULL_TREE;
4030 int longlong = 0;
4031 int constp;
4032 int restrictp;
4033 int volatilep;
4034 int type_quals = TYPE_UNQUALIFIED;
4035 int inlinep;
4036 int explicit_int = 0;
4037 int explicit_char = 0;
4038 int defaulted_int = 0;
4039 tree typedef_decl = 0;
4040 const char *name;
4041 tree typedef_type = 0;
4042 int funcdef_flag = 0;
4043 enum tree_code innermost_code = ERROR_MARK;
4044 int bitfield = 0;
4045 int size_varies = 0;
4046 tree decl_attr = NULL_TREE;
4047 tree array_ptr_quals = NULL_TREE;
4048 int array_parm_static = 0;
4049 tree returned_attrs = NULL_TREE;
4051 if (decl_context == BITFIELD)
4052 bitfield = 1, decl_context = FIELD;
4054 if (decl_context == FUNCDEF)
4055 funcdef_flag = 1, decl_context = NORMAL;
4057 /* Look inside a declarator for the name being declared
4058 and get it as a string, for an error message. */
4060 tree decl = declarator;
4061 name = 0;
4063 while (decl)
4064 switch (TREE_CODE (decl))
4066 case ARRAY_REF:
4067 case INDIRECT_REF:
4068 case CALL_EXPR:
4069 innermost_code = TREE_CODE (decl);
4070 decl = TREE_OPERAND (decl, 0);
4071 break;
4073 case TREE_LIST:
4074 decl = TREE_VALUE (decl);
4075 break;
4077 case IDENTIFIER_NODE:
4078 name = IDENTIFIER_POINTER (decl);
4079 decl = 0;
4080 break;
4082 default:
4083 abort ();
4085 if (name == 0)
4086 name = "type name";
4089 /* A function definition's declarator must have the form of
4090 a function declarator. */
4092 if (funcdef_flag && innermost_code != CALL_EXPR)
4093 return 0;
4095 /* Anything declared one level down from the top level
4096 must be one of the parameters of a function
4097 (because the body is at least two levels down). */
4099 /* If this looks like a function definition, make it one,
4100 even if it occurs where parms are expected.
4101 Then store_parm_decls will reject it and not use it as a parm. */
4102 if (decl_context == NORMAL && !funcdef_flag
4103 && current_binding_level->parm_flag)
4104 decl_context = PARM;
4106 /* Look through the decl specs and record which ones appear.
4107 Some typespecs are defined as built-in typenames.
4108 Others, the ones that are modifiers of other types,
4109 are represented by bits in SPECBITS: set the bits for
4110 the modifiers that appear. Storage class keywords are also in SPECBITS.
4112 If there is a typedef name or a type, store the type in TYPE.
4113 This includes builtin typedefs such as `int'.
4115 Set EXPLICIT_INT or EXPLICIT_CHAR if the type is `int' or `char'
4116 and did not come from a user typedef.
4118 Set LONGLONG if `long' is mentioned twice. */
4120 for (spec = declspecs; spec; spec = TREE_CHAIN (spec))
4122 tree id = TREE_VALUE (spec);
4124 /* If the entire declaration is itself tagged as deprecated then
4125 suppress reports of deprecated items. */
4126 if (id && TREE_DEPRECATED (id))
4128 if (deprecated_state != DEPRECATED_SUPPRESS)
4129 warn_deprecated_use (id);
4132 if (id == ridpointers[(int) RID_INT])
4133 explicit_int = 1;
4134 if (id == ridpointers[(int) RID_CHAR])
4135 explicit_char = 1;
4137 if (TREE_CODE (id) == IDENTIFIER_NODE && C_IS_RESERVED_WORD (id))
4139 enum rid i = C_RID_CODE (id);
4140 if ((int) i <= (int) RID_LAST_MODIFIER)
4142 if (i == RID_LONG && (specbits & (1 << (int) i)))
4144 if (longlong)
4145 error ("`long long long' is too long for GCC");
4146 else
4148 if (pedantic && !flag_isoc99 && ! in_system_header
4149 && warn_long_long)
4150 pedwarn ("ISO C89 does not support `long long'");
4151 longlong = 1;
4154 else if (specbits & (1 << (int) i))
4155 pedwarn ("duplicate `%s'", IDENTIFIER_POINTER (id));
4156 specbits |= 1 << (int) i;
4157 goto found;
4160 if (type)
4161 error ("two or more data types in declaration of `%s'", name);
4162 /* Actual typedefs come to us as TYPE_DECL nodes. */
4163 else if (TREE_CODE (id) == TYPE_DECL)
4165 if (TREE_TYPE (id) == error_mark_node)
4166 ; /* Allow the type to default to int to avoid cascading errors. */
4167 else
4169 type = TREE_TYPE (id);
4170 decl_attr = DECL_ATTRIBUTES (id);
4171 typedef_decl = id;
4174 /* Built-in types come as identifiers. */
4175 else if (TREE_CODE (id) == IDENTIFIER_NODE)
4177 tree t = lookup_name (id);
4178 if (TREE_TYPE (t) == error_mark_node)
4180 else if (!t || TREE_CODE (t) != TYPE_DECL)
4181 error ("`%s' fails to be a typedef or built in type",
4182 IDENTIFIER_POINTER (id));
4183 else
4185 type = TREE_TYPE (t);
4186 typedef_decl = t;
4189 else if (TREE_CODE (id) != ERROR_MARK)
4190 type = id;
4192 found:
4196 typedef_type = type;
4197 if (type)
4198 size_varies = C_TYPE_VARIABLE_SIZE (type);
4200 /* No type at all: default to `int', and set DEFAULTED_INT
4201 because it was not a user-defined typedef. */
4203 if (type == 0)
4205 if ((! (specbits & ((1 << (int) RID_LONG) | (1 << (int) RID_SHORT)
4206 | (1 << (int) RID_SIGNED)
4207 | (1 << (int) RID_UNSIGNED)
4208 | (1 << (int) RID_COMPLEX))))
4209 /* Don't warn about typedef foo = bar. */
4210 && ! (specbits & (1 << (int) RID_TYPEDEF) && initialized)
4211 && ! in_system_header)
4213 /* Issue a warning if this is an ISO C 99 program or if -Wreturn-type
4214 and this is a function, or if -Wimplicit; prefer the former
4215 warning since it is more explicit. */
4216 if ((warn_implicit_int || warn_return_type || flag_isoc99)
4217 && funcdef_flag)
4218 warn_about_return_type = 1;
4219 else if (warn_implicit_int || flag_isoc99)
4220 pedwarn_c99 ("type defaults to `int' in declaration of `%s'",
4221 name);
4224 defaulted_int = 1;
4225 type = integer_type_node;
4228 /* Now process the modifiers that were specified
4229 and check for invalid combinations. */
4231 /* Long double is a special combination. */
4233 if ((specbits & 1 << (int) RID_LONG) && ! longlong
4234 && TYPE_MAIN_VARIANT (type) == double_type_node)
4236 specbits &= ~(1 << (int) RID_LONG);
4237 type = long_double_type_node;
4240 /* Check all other uses of type modifiers. */
4242 if (specbits & ((1 << (int) RID_LONG) | (1 << (int) RID_SHORT)
4243 | (1 << (int) RID_UNSIGNED) | (1 << (int) RID_SIGNED)))
4245 int ok = 0;
4247 if ((specbits & 1 << (int) RID_LONG)
4248 && (specbits & 1 << (int) RID_SHORT))
4249 error ("both long and short specified for `%s'", name);
4250 else if (((specbits & 1 << (int) RID_LONG)
4251 || (specbits & 1 << (int) RID_SHORT))
4252 && explicit_char)
4253 error ("long or short specified with char for `%s'", name);
4254 else if (((specbits & 1 << (int) RID_LONG)
4255 || (specbits & 1 << (int) RID_SHORT))
4256 && TREE_CODE (type) == REAL_TYPE)
4258 static int already = 0;
4260 error ("long or short specified with floating type for `%s'", name);
4261 if (! already && ! pedantic)
4263 error ("the only valid combination is `long double'");
4264 already = 1;
4267 else if ((specbits & 1 << (int) RID_SIGNED)
4268 && (specbits & 1 << (int) RID_UNSIGNED))
4269 error ("both signed and unsigned specified for `%s'", name);
4270 else if (TREE_CODE (type) != INTEGER_TYPE)
4271 error ("long, short, signed or unsigned invalid for `%s'", name);
4272 else
4274 ok = 1;
4275 if (!explicit_int && !defaulted_int && !explicit_char && pedantic)
4277 pedwarn ("long, short, signed or unsigned used invalidly for `%s'",
4278 name);
4279 if (flag_pedantic_errors)
4280 ok = 0;
4284 /* Discard the type modifiers if they are invalid. */
4285 if (! ok)
4287 specbits &= ~((1 << (int) RID_LONG) | (1 << (int) RID_SHORT)
4288 | (1 << (int) RID_UNSIGNED) | (1 << (int) RID_SIGNED));
4289 longlong = 0;
4293 if ((specbits & (1 << (int) RID_COMPLEX))
4294 && TREE_CODE (type) != INTEGER_TYPE && TREE_CODE (type) != REAL_TYPE)
4296 error ("complex invalid for `%s'", name);
4297 specbits &= ~(1 << (int) RID_COMPLEX);
4300 /* Decide whether an integer type is signed or not.
4301 Optionally treat bitfields as signed by default. */
4302 if (specbits & 1 << (int) RID_UNSIGNED
4303 /* Traditionally, all bitfields are unsigned. */
4304 || (bitfield && flag_traditional
4305 && (! explicit_flag_signed_bitfields || !flag_signed_bitfields))
4306 || (bitfield && ! flag_signed_bitfields
4307 && (explicit_int || defaulted_int || explicit_char
4308 /* A typedef for plain `int' without `signed'
4309 can be controlled just like plain `int'. */
4310 || ! (typedef_decl != 0
4311 && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl)))
4312 && TREE_CODE (type) != ENUMERAL_TYPE
4313 && !(specbits & 1 << (int) RID_SIGNED)))
4315 if (longlong)
4316 type = long_long_unsigned_type_node;
4317 else if (specbits & 1 << (int) RID_LONG)
4318 type = long_unsigned_type_node;
4319 else if (specbits & 1 << (int) RID_SHORT)
4320 type = short_unsigned_type_node;
4321 else if (type == char_type_node)
4322 type = unsigned_char_type_node;
4323 else if (typedef_decl)
4324 type = unsigned_type (type);
4325 else
4326 type = unsigned_type_node;
4328 else if ((specbits & 1 << (int) RID_SIGNED)
4329 && type == char_type_node)
4330 type = signed_char_type_node;
4331 else if (longlong)
4332 type = long_long_integer_type_node;
4333 else if (specbits & 1 << (int) RID_LONG)
4334 type = long_integer_type_node;
4335 else if (specbits & 1 << (int) RID_SHORT)
4336 type = short_integer_type_node;
4338 if (specbits & 1 << (int) RID_COMPLEX)
4340 if (pedantic && !flag_isoc99)
4341 pedwarn ("ISO C89 does not support complex types");
4342 /* If we just have "complex", it is equivalent to
4343 "complex double", but if any modifiers at all are specified it is
4344 the complex form of TYPE. E.g, "complex short" is
4345 "complex short int". */
4347 if (defaulted_int && ! longlong
4348 && ! (specbits & ((1 << (int) RID_LONG) | (1 << (int) RID_SHORT)
4349 | (1 << (int) RID_SIGNED)
4350 | (1 << (int) RID_UNSIGNED))))
4352 if (pedantic)
4353 pedwarn ("ISO C does not support plain `complex' meaning `double complex'");
4354 type = complex_double_type_node;
4356 else if (type == integer_type_node)
4358 if (pedantic)
4359 pedwarn ("ISO C does not support complex integer types");
4360 type = complex_integer_type_node;
4362 else if (type == float_type_node)
4363 type = complex_float_type_node;
4364 else if (type == double_type_node)
4365 type = complex_double_type_node;
4366 else if (type == long_double_type_node)
4367 type = complex_long_double_type_node;
4368 else
4370 if (pedantic)
4371 pedwarn ("ISO C does not support complex integer types");
4372 type = build_complex_type (type);
4376 /* Figure out the type qualifiers for the declaration. There are
4377 two ways a declaration can become qualified. One is something
4378 like `const int i' where the `const' is explicit. Another is
4379 something like `typedef const int CI; CI i' where the type of the
4380 declaration contains the `const'. */
4381 constp = !! (specbits & 1 << (int) RID_CONST) + TYPE_READONLY (type);
4382 restrictp = !! (specbits & 1 << (int) RID_RESTRICT) + TYPE_RESTRICT (type);
4383 volatilep = !! (specbits & 1 << (int) RID_VOLATILE) + TYPE_VOLATILE (type);
4384 inlinep = !! (specbits & (1 << (int) RID_INLINE));
4385 if (constp > 1 && ! flag_isoc99)
4386 pedwarn ("duplicate `const'");
4387 if (restrictp > 1 && ! flag_isoc99)
4388 pedwarn ("duplicate `restrict'");
4389 if (volatilep > 1 && ! flag_isoc99)
4390 pedwarn ("duplicate `volatile'");
4391 if (! flag_gen_aux_info && (TYPE_QUALS (type)))
4392 type = TYPE_MAIN_VARIANT (type);
4393 type_quals = ((constp ? TYPE_QUAL_CONST : 0)
4394 | (restrictp ? TYPE_QUAL_RESTRICT : 0)
4395 | (volatilep ? TYPE_QUAL_VOLATILE : 0));
4397 /* Warn if two storage classes are given. Default to `auto'. */
4400 int nclasses = 0;
4402 if (specbits & 1 << (int) RID_AUTO) nclasses++;
4403 if (specbits & 1 << (int) RID_STATIC) nclasses++;
4404 if (specbits & 1 << (int) RID_EXTERN) nclasses++;
4405 if (specbits & 1 << (int) RID_REGISTER) nclasses++;
4406 if (specbits & 1 << (int) RID_TYPEDEF) nclasses++;
4408 /* Warn about storage classes that are invalid for certain
4409 kinds of declarations (parameters, typenames, etc.). */
4411 if (nclasses > 1)
4412 error ("multiple storage classes in declaration of `%s'", name);
4413 else if (funcdef_flag
4414 && (specbits
4415 & ((1 << (int) RID_REGISTER)
4416 | (1 << (int) RID_AUTO)
4417 | (1 << (int) RID_TYPEDEF))))
4419 if (specbits & 1 << (int) RID_AUTO
4420 && (pedantic || current_binding_level == global_binding_level))
4421 pedwarn ("function definition declared `auto'");
4422 if (specbits & 1 << (int) RID_REGISTER)
4423 error ("function definition declared `register'");
4424 if (specbits & 1 << (int) RID_TYPEDEF)
4425 error ("function definition declared `typedef'");
4426 specbits &= ~((1 << (int) RID_TYPEDEF) | (1 << (int) RID_REGISTER)
4427 | (1 << (int) RID_AUTO));
4429 else if (decl_context != NORMAL && nclasses > 0)
4431 if (decl_context == PARM && specbits & 1 << (int) RID_REGISTER)
4433 else
4435 switch (decl_context)
4437 case FIELD:
4438 error ("storage class specified for structure field `%s'",
4439 name);
4440 break;
4441 case PARM:
4442 error ("storage class specified for parameter `%s'", name);
4443 break;
4444 default:
4445 error ("storage class specified for typename");
4446 break;
4448 specbits &= ~((1 << (int) RID_TYPEDEF) | (1 << (int) RID_REGISTER)
4449 | (1 << (int) RID_AUTO) | (1 << (int) RID_STATIC)
4450 | (1 << (int) RID_EXTERN));
4453 else if (specbits & 1 << (int) RID_EXTERN && initialized && ! funcdef_flag)
4455 /* `extern' with initialization is invalid if not at top level. */
4456 if (current_binding_level == global_binding_level)
4457 warning ("`%s' initialized and declared `extern'", name);
4458 else
4459 error ("`%s' has both `extern' and initializer", name);
4461 else if (specbits & 1 << (int) RID_EXTERN && funcdef_flag
4462 && current_binding_level != global_binding_level)
4463 error ("nested function `%s' declared `extern'", name);
4464 else if (current_binding_level == global_binding_level
4465 && specbits & (1 << (int) RID_AUTO))
4466 error ("top-level declaration of `%s' specifies `auto'", name);
4469 /* Now figure out the structure of the declarator proper.
4470 Descend through it, creating more complex types, until we reach
4471 the declared identifier (or NULL_TREE, in an absolute declarator). */
4473 while (declarator && TREE_CODE (declarator) != IDENTIFIER_NODE)
4475 if (type == error_mark_node)
4477 declarator = TREE_OPERAND (declarator, 0);
4478 continue;
4481 /* Each level of DECLARATOR is either an ARRAY_REF (for ...[..]),
4482 an INDIRECT_REF (for *...),
4483 a CALL_EXPR (for ...(...)),
4484 a TREE_LIST (for nested attributes),
4485 an identifier (for the name being declared)
4486 or a null pointer (for the place in an absolute declarator
4487 where the name was omitted).
4488 For the last two cases, we have just exited the loop.
4490 At this point, TYPE is the type of elements of an array,
4491 or for a function to return, or for a pointer to point to.
4492 After this sequence of ifs, TYPE is the type of the
4493 array or function or pointer, and DECLARATOR has had its
4494 outermost layer removed. */
4496 if (array_ptr_quals != NULL_TREE || array_parm_static)
4498 /* Only the innermost declarator (making a parameter be of
4499 array type which is converted to pointer type)
4500 may have static or type qualifiers. */
4501 error ("static or type qualifiers in non-parameter array declarator");
4502 array_ptr_quals = NULL_TREE;
4503 array_parm_static = 0;
4506 if (TREE_CODE (declarator) == TREE_LIST)
4508 /* We encode a declarator with embedded attributes using
4509 a TREE_LIST. */
4510 tree attrs = TREE_PURPOSE (declarator);
4511 tree inner_decl;
4512 int attr_flags = 0;
4513 declarator = TREE_VALUE (declarator);
4514 inner_decl = declarator;
4515 while (inner_decl != NULL_TREE
4516 && TREE_CODE (inner_decl) == TREE_LIST)
4517 inner_decl = TREE_VALUE (inner_decl);
4518 if (inner_decl == NULL_TREE
4519 || TREE_CODE (inner_decl) == IDENTIFIER_NODE)
4520 attr_flags |= (int) ATTR_FLAG_DECL_NEXT;
4521 if (TREE_CODE (inner_decl) == CALL_EXPR)
4522 attr_flags |= (int) ATTR_FLAG_FUNCTION_NEXT;
4523 if (TREE_CODE (inner_decl) == ARRAY_REF)
4524 attr_flags |= (int) ATTR_FLAG_ARRAY_NEXT;
4525 returned_attrs = decl_attributes (&type,
4526 chainon (returned_attrs, attrs),
4527 attr_flags);
4529 else if (TREE_CODE (declarator) == ARRAY_REF)
4531 tree itype = NULL_TREE;
4532 tree size = TREE_OPERAND (declarator, 1);
4533 /* The index is a signed object `sizetype' bits wide. */
4534 tree index_type = signed_type (sizetype);
4536 array_ptr_quals = TREE_TYPE (declarator);
4537 array_parm_static = TREE_STATIC (declarator);
4539 declarator = TREE_OPERAND (declarator, 0);
4541 /* Check for some types that there cannot be arrays of. */
4543 if (VOID_TYPE_P (type))
4545 error ("declaration of `%s' as array of voids", name);
4546 type = error_mark_node;
4549 if (TREE_CODE (type) == FUNCTION_TYPE)
4551 error ("declaration of `%s' as array of functions", name);
4552 type = error_mark_node;
4555 if (size == error_mark_node)
4556 type = error_mark_node;
4558 if (type == error_mark_node)
4559 continue;
4561 /* If size was specified, set ITYPE to a range-type for that size.
4562 Otherwise, ITYPE remains null. finish_decl may figure it out
4563 from an initial value. */
4565 if (size)
4567 /* Strip NON_LVALUE_EXPRs since we aren't using as an lvalue. */
4568 STRIP_TYPE_NOPS (size);
4570 if (! INTEGRAL_TYPE_P (TREE_TYPE (size)))
4572 error ("size of array `%s' has non-integer type", name);
4573 size = integer_one_node;
4576 if (pedantic && integer_zerop (size))
4577 pedwarn ("ISO C forbids zero-size array `%s'", name);
4579 if (TREE_CODE (size) == INTEGER_CST)
4581 constant_expression_warning (size);
4582 if (tree_int_cst_sgn (size) < 0)
4584 error ("size of array `%s' is negative", name);
4585 size = integer_one_node;
4588 else
4590 /* Make sure the array size remains visibly nonconstant
4591 even if it is (eg) a const variable with known value. */
4592 size_varies = 1;
4594 if (pedantic)
4596 if (TREE_CONSTANT (size))
4597 pedwarn ("ISO C89 forbids array `%s' whose size can't be evaluated",
4598 name);
4599 else
4600 pedwarn ("ISO C89 forbids variable-size array `%s'",
4601 name);
4605 if (integer_zerop (size))
4607 /* A zero-length array cannot be represented with an
4608 unsigned index type, which is what we'll get with
4609 build_index_type. Create an open-ended range instead. */
4610 itype = build_range_type (sizetype, size, NULL_TREE);
4612 else
4614 /* Compute the maximum valid index, that is, size - 1.
4615 Do the calculation in index_type, so that if it is
4616 a variable the computations will be done in the
4617 proper mode. */
4618 itype = fold (build (MINUS_EXPR, index_type,
4619 convert (index_type, size),
4620 convert (index_type, size_one_node)));
4622 /* If that overflowed, the array is too big.
4623 ??? While a size of INT_MAX+1 technically shouldn't
4624 cause an overflow (because we subtract 1), the overflow
4625 is recorded during the conversion to index_type, before
4626 the subtraction. Handling this case seems like an
4627 unnecessary complication. */
4628 if (TREE_OVERFLOW (itype))
4630 error ("size of array `%s' is too large", name);
4631 type = error_mark_node;
4632 continue;
4635 if (size_varies)
4636 itype = variable_size (itype);
4637 itype = build_index_type (itype);
4640 else if (decl_context == FIELD)
4642 /* ??? Need to check somewhere that this is a structure
4643 and not a union, that this field is last, and that
4644 this structure has at least one other named member. */
4646 if (pedantic && !flag_isoc99 && !in_system_header)
4647 pedwarn ("ISO C89 does not support flexible array members");
4649 /* ISO C99 Flexible array members are effectively identical
4650 to GCC's zero-length array extension. */
4651 itype = build_range_type (sizetype, size_zero_node, NULL_TREE);
4654 /* If pedantic, complain about arrays of incomplete types. */
4656 if (pedantic && !COMPLETE_TYPE_P (type))
4657 pedwarn ("array type has incomplete element type");
4659 #if 0
4660 /* We shouldn't have a function type here at all!
4661 Functions aren't allowed as array elements. */
4662 if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
4663 && (constp || volatilep))
4664 pedwarn ("ISO C forbids const or volatile function types");
4665 #endif
4667 /* Build the array type itself, then merge any constancy or
4668 volatility into the target type. We must do it in this order
4669 to ensure that the TYPE_MAIN_VARIANT field of the array type
4670 is set correctly. */
4672 type = build_array_type (type, itype);
4673 if (type_quals)
4674 type = c_build_qualified_type (type, type_quals);
4676 if (size_varies)
4677 C_TYPE_VARIABLE_SIZE (type) = 1;
4679 /* The GCC extension for zero-length arrays differs from
4680 ISO flexible array members in that sizeof yields zero. */
4681 if (size && integer_zerop (size))
4683 layout_type (type);
4684 TYPE_SIZE (type) = bitsize_zero_node;
4685 TYPE_SIZE_UNIT (type) = size_zero_node;
4687 if (decl_context != PARM
4688 && (array_ptr_quals != NULL_TREE || array_parm_static))
4690 error ("static or type qualifiers in non-parameter array declarator");
4691 array_ptr_quals = NULL_TREE;
4692 array_parm_static = 0;
4695 else if (TREE_CODE (declarator) == CALL_EXPR)
4697 tree arg_types;
4699 /* Declaring a function type.
4700 Make sure we have a valid type for the function to return. */
4701 if (type == error_mark_node)
4702 continue;
4704 size_varies = 0;
4706 /* Warn about some types functions can't return. */
4708 if (TREE_CODE (type) == FUNCTION_TYPE)
4710 error ("`%s' declared as function returning a function", name);
4711 type = integer_type_node;
4713 if (TREE_CODE (type) == ARRAY_TYPE)
4715 error ("`%s' declared as function returning an array", name);
4716 type = integer_type_node;
4719 #ifndef TRADITIONAL_RETURN_FLOAT
4720 /* Traditionally, declaring return type float means double. */
4722 if (flag_traditional && TYPE_MAIN_VARIANT (type) == float_type_node)
4723 type = double_type_node;
4724 #endif /* TRADITIONAL_RETURN_FLOAT */
4726 /* Construct the function type and go to the next
4727 inner layer of declarator. */
4729 arg_types = grokparms (TREE_OPERAND (declarator, 1),
4730 funcdef_flag
4731 /* Say it's a definition
4732 only for the CALL_EXPR
4733 closest to the identifier. */
4734 && TREE_CODE (TREE_OPERAND (declarator, 0)) == IDENTIFIER_NODE);
4735 /* Type qualifiers before the return type of the function
4736 qualify the return type, not the function type. */
4737 if (type_quals)
4739 /* Type qualifiers on a function return type are normally
4740 permitted by the standard but have no effect, so give a
4741 warning at -W. Qualifiers on a void return type have
4742 meaning as a GNU extension, and are banned on function
4743 definitions in ISO C. FIXME: strictly we shouldn't
4744 pedwarn for qualified void return types except on function
4745 definitions, but not doing so could lead to the undesirable
4746 state of a "volatile void" function return type not being
4747 warned about, and a use of the function being compiled
4748 with GNU semantics, with no diagnostics under -pedantic. */
4749 if (VOID_TYPE_P (type) && pedantic && !in_system_header)
4750 pedwarn ("ISO C forbids qualified void function return type");
4751 else if (extra_warnings
4752 && !(VOID_TYPE_P (type)
4753 && type_quals == TYPE_QUAL_VOLATILE))
4754 warning ("type qualifiers ignored on function return type");
4756 type = c_build_qualified_type (type, type_quals);
4758 type_quals = TYPE_UNQUALIFIED;
4760 type = build_function_type (type, arg_types);
4761 declarator = TREE_OPERAND (declarator, 0);
4763 /* Set the TYPE_CONTEXTs for each tagged type which is local to
4764 the formal parameter list of this FUNCTION_TYPE to point to
4765 the FUNCTION_TYPE node itself. */
4768 tree link;
4770 for (link = last_function_parm_tags;
4771 link;
4772 link = TREE_CHAIN (link))
4773 TYPE_CONTEXT (TREE_VALUE (link)) = type;
4776 else if (TREE_CODE (declarator) == INDIRECT_REF)
4778 /* Merge any constancy or volatility into the target type
4779 for the pointer. */
4781 if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
4782 && type_quals)
4783 pedwarn ("ISO C forbids qualified function types");
4784 if (type_quals)
4785 type = c_build_qualified_type (type, type_quals);
4786 type_quals = TYPE_UNQUALIFIED;
4787 size_varies = 0;
4789 type = build_pointer_type (type);
4791 /* Process a list of type modifier keywords
4792 (such as const or volatile) that were given inside the `*'. */
4794 if (TREE_TYPE (declarator))
4796 tree typemodlist;
4797 int erred = 0;
4799 constp = 0;
4800 volatilep = 0;
4801 restrictp = 0;
4802 for (typemodlist = TREE_TYPE (declarator); typemodlist;
4803 typemodlist = TREE_CHAIN (typemodlist))
4805 tree qualifier = TREE_VALUE (typemodlist);
4807 if (C_IS_RESERVED_WORD (qualifier))
4809 if (C_RID_CODE (qualifier) == RID_CONST)
4810 constp++;
4811 else if (C_RID_CODE (qualifier) == RID_VOLATILE)
4812 volatilep++;
4813 else if (C_RID_CODE (qualifier) == RID_RESTRICT)
4814 restrictp++;
4815 else
4816 erred++;
4818 else
4819 erred++;
4822 if (erred)
4823 error ("invalid type modifier within pointer declarator");
4824 if (constp > 1 && ! flag_isoc99)
4825 pedwarn ("duplicate `const'");
4826 if (volatilep > 1 && ! flag_isoc99)
4827 pedwarn ("duplicate `volatile'");
4828 if (restrictp > 1 && ! flag_isoc99)
4829 pedwarn ("duplicate `restrict'");
4831 type_quals = ((constp ? TYPE_QUAL_CONST : 0)
4832 | (restrictp ? TYPE_QUAL_RESTRICT : 0)
4833 | (volatilep ? TYPE_QUAL_VOLATILE : 0));
4836 declarator = TREE_OPERAND (declarator, 0);
4838 else
4839 abort ();
4843 /* Now TYPE has the actual type. */
4845 /* Did array size calculations overflow? */
4847 if (TREE_CODE (type) == ARRAY_TYPE
4848 && COMPLETE_TYPE_P (type)
4849 && TREE_OVERFLOW (TYPE_SIZE (type)))
4851 error ("size of array `%s' is too large", name);
4852 /* If we proceed with the array type as it is, we'll eventually
4853 crash in tree_low_cst(). */
4854 type = error_mark_node;
4857 /* If this is declaring a typedef name, return a TYPE_DECL. */
4859 if (specbits & (1 << (int) RID_TYPEDEF))
4861 tree decl;
4862 /* Note that the grammar rejects storage classes
4863 in typenames, fields or parameters */
4864 if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
4865 && type_quals)
4866 pedwarn ("ISO C forbids qualified function types");
4867 if (type_quals)
4868 type = c_build_qualified_type (type, type_quals);
4869 decl = build_decl (TYPE_DECL, declarator, type);
4870 if ((specbits & (1 << (int) RID_SIGNED))
4871 || (typedef_decl && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl)))
4872 C_TYPEDEF_EXPLICITLY_SIGNED (decl) = 1;
4873 decl_attributes (&decl, returned_attrs, 0);
4874 return decl;
4877 /* Detect the case of an array type of unspecified size
4878 which came, as such, direct from a typedef name.
4879 We must copy the type, so that each identifier gets
4880 a distinct type, so that each identifier's size can be
4881 controlled separately by its own initializer. */
4883 if (type != 0 && typedef_type != 0
4884 && TREE_CODE (type) == ARRAY_TYPE && TYPE_DOMAIN (type) == 0
4885 && TYPE_MAIN_VARIANT (type) == TYPE_MAIN_VARIANT (typedef_type))
4887 type = build_array_type (TREE_TYPE (type), 0);
4888 if (size_varies)
4889 C_TYPE_VARIABLE_SIZE (type) = 1;
4892 /* If this is a type name (such as, in a cast or sizeof),
4893 compute the type and return it now. */
4895 if (decl_context == TYPENAME)
4897 /* Note that the grammar rejects storage classes
4898 in typenames, fields or parameters */
4899 if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
4900 && type_quals)
4901 pedwarn ("ISO C forbids const or volatile function types");
4902 if (type_quals)
4903 type = c_build_qualified_type (type, type_quals);
4904 decl_attributes (&type, returned_attrs, 0);
4905 return type;
4908 /* Aside from typedefs and type names (handle above),
4909 `void' at top level (not within pointer)
4910 is allowed only in public variables.
4911 We don't complain about parms either, but that is because
4912 a better error message can be made later. */
4914 if (VOID_TYPE_P (type) && decl_context != PARM
4915 && ! ((decl_context != FIELD && TREE_CODE (type) != FUNCTION_TYPE)
4916 && ((specbits & (1 << (int) RID_EXTERN))
4917 || (current_binding_level == global_binding_level
4918 && !(specbits
4919 & ((1 << (int) RID_STATIC) | (1 << (int) RID_REGISTER)))))))
4921 error ("variable or field `%s' declared void", name);
4922 type = integer_type_node;
4925 /* Now create the decl, which may be a VAR_DECL, a PARM_DECL
4926 or a FUNCTION_DECL, depending on DECL_CONTEXT and TYPE. */
4929 tree decl;
4931 if (decl_context == PARM)
4933 tree type_as_written;
4934 tree promoted_type;
4936 /* A parameter declared as an array of T is really a pointer to T.
4937 One declared as a function is really a pointer to a function. */
4939 if (TREE_CODE (type) == ARRAY_TYPE)
4941 /* Transfer const-ness of array into that of type pointed to. */
4942 type = TREE_TYPE (type);
4943 if (type_quals)
4944 type = c_build_qualified_type (type, type_quals);
4945 type = build_pointer_type (type);
4946 type_quals = TYPE_UNQUALIFIED;
4947 if (array_ptr_quals)
4949 tree new_ptr_quals, new_ptr_attrs;
4950 int erred = 0;
4951 split_specs_attrs (array_ptr_quals, &new_ptr_quals, &new_ptr_attrs);
4952 /* We don't yet implement attributes in this context. */
4953 if (new_ptr_attrs != NULL_TREE)
4954 warning ("attributes in parameter array declarator ignored");
4956 constp = 0;
4957 volatilep = 0;
4958 restrictp = 0;
4959 for (; new_ptr_quals; new_ptr_quals = TREE_CHAIN (new_ptr_quals))
4961 tree qualifier = TREE_VALUE (new_ptr_quals);
4963 if (C_IS_RESERVED_WORD (qualifier))
4965 if (C_RID_CODE (qualifier) == RID_CONST)
4966 constp++;
4967 else if (C_RID_CODE (qualifier) == RID_VOLATILE)
4968 volatilep++;
4969 else if (C_RID_CODE (qualifier) == RID_RESTRICT)
4970 restrictp++;
4971 else
4972 erred++;
4974 else
4975 erred++;
4978 if (erred)
4979 error ("invalid type modifier within array declarator");
4981 type_quals = ((constp ? TYPE_QUAL_CONST : 0)
4982 | (restrictp ? TYPE_QUAL_RESTRICT : 0)
4983 | (volatilep ? TYPE_QUAL_VOLATILE : 0));
4985 size_varies = 0;
4987 else if (TREE_CODE (type) == FUNCTION_TYPE)
4989 if (pedantic && type_quals)
4990 pedwarn ("ISO C forbids qualified function types");
4991 if (type_quals)
4992 type = c_build_qualified_type (type, type_quals);
4993 type = build_pointer_type (type);
4994 type_quals = TYPE_UNQUALIFIED;
4996 else if (type_quals)
4997 type = c_build_qualified_type (type, type_quals);
4999 type_as_written = type;
5001 decl = build_decl (PARM_DECL, declarator, type);
5002 if (size_varies)
5003 C_DECL_VARIABLE_SIZE (decl) = 1;
5005 /* Compute the type actually passed in the parmlist,
5006 for the case where there is no prototype.
5007 (For example, shorts and chars are passed as ints.)
5008 When there is a prototype, this is overridden later. */
5010 if (type == error_mark_node)
5011 promoted_type = type;
5012 else
5014 promoted_type = simple_type_promotes_to (type);
5015 if (! promoted_type)
5016 promoted_type = type;
5019 DECL_ARG_TYPE (decl) = promoted_type;
5020 DECL_ARG_TYPE_AS_WRITTEN (decl) = type_as_written;
5022 else if (decl_context == FIELD)
5024 /* Structure field. It may not be a function. */
5026 if (TREE_CODE (type) == FUNCTION_TYPE)
5028 error ("field `%s' declared as a function", name);
5029 type = build_pointer_type (type);
5031 else if (TREE_CODE (type) != ERROR_MARK
5032 && !COMPLETE_OR_UNBOUND_ARRAY_TYPE_P (type))
5034 error ("field `%s' has incomplete type", name);
5035 type = error_mark_node;
5037 /* Move type qualifiers down to element of an array. */
5038 if (TREE_CODE (type) == ARRAY_TYPE && type_quals)
5040 type = build_array_type (c_build_qualified_type (TREE_TYPE (type),
5041 type_quals),
5042 TYPE_DOMAIN (type));
5043 #if 0
5044 /* Leave the field const or volatile as well. */
5045 type_quals = TYPE_UNQUALIFIED;
5046 #endif
5048 decl = build_decl (FIELD_DECL, declarator, type);
5049 DECL_NONADDRESSABLE_P (decl) = bitfield;
5051 if (size_varies)
5052 C_DECL_VARIABLE_SIZE (decl) = 1;
5054 else if (TREE_CODE (type) == FUNCTION_TYPE)
5056 /* Every function declaration is "external"
5057 except for those which are inside a function body
5058 in which `auto' is used.
5059 That is a case not specified by ANSI C,
5060 and we use it for forward declarations for nested functions. */
5061 int extern_ref = (!(specbits & (1 << (int) RID_AUTO))
5062 || current_binding_level == global_binding_level);
5064 if (specbits & (1 << (int) RID_AUTO)
5065 && (pedantic || current_binding_level == global_binding_level))
5066 pedwarn ("invalid storage class for function `%s'", name);
5067 if (specbits & (1 << (int) RID_REGISTER))
5068 error ("invalid storage class for function `%s'", name);
5069 /* Function declaration not at top level.
5070 Storage classes other than `extern' are not allowed
5071 and `extern' makes no difference. */
5072 if (current_binding_level != global_binding_level
5073 && (specbits & ((1 << (int) RID_STATIC) | (1 << (int) RID_INLINE)))
5074 && pedantic)
5075 pedwarn ("invalid storage class for function `%s'", name);
5077 decl = build_decl (FUNCTION_DECL, declarator, type);
5078 decl = build_decl_attribute_variant (decl, decl_attr);
5080 DECL_LANG_SPECIFIC (decl) = (struct lang_decl *)
5081 ggc_alloc_cleared (sizeof (struct lang_decl));
5083 if (pedantic && type_quals && ! DECL_IN_SYSTEM_HEADER (decl))
5084 pedwarn ("ISO C forbids qualified function types");
5086 /* GNU C interprets a `volatile void' return type to indicate
5087 that the function does not return. */
5088 if ((type_quals & TYPE_QUAL_VOLATILE)
5089 && !VOID_TYPE_P (TREE_TYPE (TREE_TYPE (decl))))
5090 warning ("`noreturn' function returns non-void value");
5092 if (extern_ref)
5093 DECL_EXTERNAL (decl) = 1;
5094 /* Record absence of global scope for `static' or `auto'. */
5095 TREE_PUBLIC (decl)
5096 = !(specbits & ((1 << (int) RID_STATIC) | (1 << (int) RID_AUTO)));
5098 if (defaulted_int)
5099 C_FUNCTION_IMPLICIT_INT (decl) = 1;
5101 /* Record presence of `inline', if it is reasonable. */
5102 if (MAIN_NAME_P (declarator))
5104 if (inlinep)
5105 warning ("cannot inline function `main'");
5107 else if (inlinep)
5109 /* Assume that otherwise the function can be inlined. */
5110 DECL_DECLARED_INLINE_P (decl) = 1;
5112 /* Do not mark bare declarations as DECL_INLINE. Doing so
5113 in the presence of multiple declarations can result in
5114 the abstract origin pointing between the declarations,
5115 which will confuse dwarf2out. */
5116 if (initialized)
5118 DECL_INLINE (decl) = 1;
5119 if (specbits & (1 << (int) RID_EXTERN))
5120 current_extern_inline = 1;
5123 /* If -finline-functions, assume it can be inlined. This does
5124 two things: let the function be deferred until it is actually
5125 needed, and let dwarf2 know that the function is inlinable. */
5126 else if (flag_inline_trees == 2 && initialized)
5128 DECL_INLINE (decl) = 1;
5129 DECL_DECLARED_INLINE_P (decl) = 0;
5132 else
5134 /* It's a variable. */
5135 /* An uninitialized decl with `extern' is a reference. */
5136 int extern_ref = !initialized && (specbits & (1 << (int) RID_EXTERN));
5138 /* Move type qualifiers down to element of an array. */
5139 if (TREE_CODE (type) == ARRAY_TYPE && type_quals)
5141 int saved_align = TYPE_ALIGN(type);
5142 type = build_array_type (c_build_qualified_type (TREE_TYPE (type),
5143 type_quals),
5144 TYPE_DOMAIN (type));
5145 TYPE_ALIGN (type) = saved_align;
5146 #if 0 /* Leave the variable const or volatile as well. */
5147 type_quals = TYPE_UNQUALIFIED;
5148 #endif
5150 else if (type_quals)
5151 type = c_build_qualified_type (type, type_quals);
5153 decl = build_decl (VAR_DECL, declarator, type);
5154 if (size_varies)
5155 C_DECL_VARIABLE_SIZE (decl) = 1;
5157 if (inlinep)
5158 pedwarn_with_decl (decl, "variable `%s' declared `inline'");
5160 DECL_EXTERNAL (decl) = extern_ref;
5161 /* At top level, the presence of a `static' or `register' storage
5162 class specifier, or the absence of all storage class specifiers
5163 makes this declaration a definition (perhaps tentative). Also,
5164 the absence of both `static' and `register' makes it public. */
5165 if (current_binding_level == global_binding_level)
5167 TREE_PUBLIC (decl)
5168 = !(specbits
5169 & ((1 << (int) RID_STATIC) | (1 << (int) RID_REGISTER)));
5170 TREE_STATIC (decl) = ! DECL_EXTERNAL (decl);
5172 /* Not at top level, only `static' makes a static definition. */
5173 else
5175 TREE_STATIC (decl) = (specbits & (1 << (int) RID_STATIC)) != 0;
5176 TREE_PUBLIC (decl) = DECL_EXTERNAL (decl);
5180 /* Record `register' declaration for warnings on &
5181 and in case doing stupid register allocation. */
5183 if (specbits & (1 << (int) RID_REGISTER))
5184 DECL_REGISTER (decl) = 1;
5186 /* Record constancy and volatility. */
5187 c_apply_type_quals_to_decl (type_quals, decl);
5189 /* If a type has volatile components, it should be stored in memory.
5190 Otherwise, the fact that those components are volatile
5191 will be ignored, and would even crash the compiler. */
5192 if (C_TYPE_FIELDS_VOLATILE (TREE_TYPE (decl)))
5193 mark_addressable (decl);
5195 decl_attributes (&decl, returned_attrs, 0);
5197 return decl;
5201 /* Decode the parameter-list info for a function type or function definition.
5202 The argument is the value returned by `get_parm_info' (or made in parse.y
5203 if there is an identifier list instead of a parameter decl list).
5204 These two functions are separate because when a function returns
5205 or receives functions then each is called multiple times but the order
5206 of calls is different. The last call to `grokparms' is always the one
5207 that contains the formal parameter names of a function definition.
5209 Store in `last_function_parms' a chain of the decls of parms.
5210 Also store in `last_function_parm_tags' a chain of the struct, union,
5211 and enum tags declared among the parms.
5213 Return a list of arg types to use in the FUNCTION_TYPE for this function.
5215 FUNCDEF_FLAG is nonzero for a function definition, 0 for
5216 a mere declaration. A nonempty identifier-list gets an error message
5217 when FUNCDEF_FLAG is zero. */
5219 static tree
5220 grokparms (parms_info, funcdef_flag)
5221 tree parms_info;
5222 int funcdef_flag;
5224 tree first_parm = TREE_CHAIN (parms_info);
5226 last_function_parms = TREE_PURPOSE (parms_info);
5227 last_function_parm_tags = TREE_VALUE (parms_info);
5229 if (warn_strict_prototypes && first_parm == 0 && !funcdef_flag
5230 && !in_system_header)
5231 warning ("function declaration isn't a prototype");
5233 if (first_parm != 0
5234 && TREE_CODE (TREE_VALUE (first_parm)) == IDENTIFIER_NODE)
5236 if (! funcdef_flag)
5237 pedwarn ("parameter names (without types) in function declaration");
5239 last_function_parms = first_parm;
5240 return 0;
5242 else
5244 tree parm;
5245 tree typelt;
5246 /* We no longer test FUNCDEF_FLAG.
5247 If the arg types are incomplete in a declaration,
5248 they must include undefined tags.
5249 These tags can never be defined in the scope of the declaration,
5250 so the types can never be completed,
5251 and no call can be compiled successfully. */
5252 #if 0
5253 /* In a fcn definition, arg types must be complete. */
5254 if (funcdef_flag)
5255 #endif
5256 for (parm = last_function_parms, typelt = first_parm;
5257 parm;
5258 parm = TREE_CHAIN (parm))
5259 /* Skip over any enumeration constants declared here. */
5260 if (TREE_CODE (parm) == PARM_DECL)
5262 /* Barf if the parameter itself has an incomplete type. */
5263 tree type = TREE_VALUE (typelt);
5264 if (type == error_mark_node)
5265 continue;
5266 if (!COMPLETE_TYPE_P (type))
5268 if (funcdef_flag && DECL_NAME (parm) != 0)
5269 error ("parameter `%s' has incomplete type",
5270 IDENTIFIER_POINTER (DECL_NAME (parm)));
5271 else
5272 warning ("parameter has incomplete type");
5273 if (funcdef_flag)
5275 TREE_VALUE (typelt) = error_mark_node;
5276 TREE_TYPE (parm) = error_mark_node;
5279 #if 0
5280 /* This has been replaced by parm_tags_warning, which
5281 uses a more accurate criterion for what to warn
5282 about. */
5283 else
5285 /* Now warn if is a pointer to an incomplete type. */
5286 while (TREE_CODE (type) == POINTER_TYPE
5287 || TREE_CODE (type) == REFERENCE_TYPE)
5288 type = TREE_TYPE (type);
5289 type = TYPE_MAIN_VARIANT (type);
5290 if (!COMPLETE_TYPE_P (type))
5292 if (DECL_NAME (parm) != 0)
5293 warning ("parameter `%s' points to incomplete type",
5294 IDENTIFIER_POINTER (DECL_NAME (parm)));
5295 else
5296 warning ("parameter points to incomplete type");
5299 #endif
5300 typelt = TREE_CHAIN (typelt);
5303 return first_parm;
5307 /* Return a tree_list node with info on a parameter list just parsed.
5308 The TREE_PURPOSE is a chain of decls of those parms.
5309 The TREE_VALUE is a list of structure, union and enum tags defined.
5310 The TREE_CHAIN is a list of argument types to go in the FUNCTION_TYPE.
5311 This tree_list node is later fed to `grokparms'.
5313 VOID_AT_END nonzero means append `void' to the end of the type-list.
5314 Zero means the parmlist ended with an ellipsis so don't append `void'. */
5316 tree
5317 get_parm_info (void_at_end)
5318 int void_at_end;
5320 tree decl, t;
5321 tree types = 0;
5322 int erred = 0;
5323 tree tags = gettags ();
5324 tree parms = getdecls ();
5325 tree new_parms = 0;
5326 tree order = current_binding_level->parm_order;
5328 /* Just `void' (and no ellipsis) is special. There are really no parms.
5329 But if the `void' is qualified (by `const' or `volatile') or has a
5330 storage class specifier (`register'), then the behavior is undefined;
5331 by not counting it as the special case of `void' we will cause an
5332 error later. Typedefs for `void' are OK (see DR#157). */
5333 if (void_at_end && parms != 0
5334 && TREE_CHAIN (parms) == 0
5335 && VOID_TYPE_P (TREE_TYPE (parms))
5336 && ! TREE_THIS_VOLATILE (parms)
5337 && ! TREE_READONLY (parms)
5338 && ! DECL_REGISTER (parms)
5339 && DECL_NAME (parms) == 0)
5341 parms = NULL_TREE;
5342 storedecls (NULL_TREE);
5343 return tree_cons (NULL_TREE, NULL_TREE,
5344 tree_cons (NULL_TREE, void_type_node, NULL_TREE));
5347 /* Extract enumerator values and other non-parms declared with the parms.
5348 Likewise any forward parm decls that didn't have real parm decls. */
5349 for (decl = parms; decl;)
5351 tree next = TREE_CHAIN (decl);
5353 if (TREE_CODE (decl) != PARM_DECL)
5355 TREE_CHAIN (decl) = new_parms;
5356 new_parms = decl;
5358 else if (TREE_ASM_WRITTEN (decl))
5360 error_with_decl (decl,
5361 "parameter `%s' has just a forward declaration");
5362 TREE_CHAIN (decl) = new_parms;
5363 new_parms = decl;
5365 decl = next;
5368 /* Put the parm decls back in the order they were in in the parm list. */
5369 for (t = order; t; t = TREE_CHAIN (t))
5371 if (TREE_CHAIN (t))
5372 TREE_CHAIN (TREE_VALUE (t)) = TREE_VALUE (TREE_CHAIN (t));
5373 else
5374 TREE_CHAIN (TREE_VALUE (t)) = 0;
5377 new_parms = chainon (order ? nreverse (TREE_VALUE (order)) : 0,
5378 new_parms);
5380 /* Store the parmlist in the binding level since the old one
5381 is no longer a valid list. (We have changed the chain pointers.) */
5382 storedecls (new_parms);
5384 for (decl = new_parms; decl; decl = TREE_CHAIN (decl))
5385 /* There may also be declarations for enumerators if an enumeration
5386 type is declared among the parms. Ignore them here. */
5387 if (TREE_CODE (decl) == PARM_DECL)
5389 /* Since there is a prototype,
5390 args are passed in their declared types. */
5391 tree type = TREE_TYPE (decl);
5392 DECL_ARG_TYPE (decl) = type;
5393 if (PROMOTE_PROTOTYPES
5394 && INTEGRAL_TYPE_P (type)
5395 && TYPE_PRECISION (type) < TYPE_PRECISION (integer_type_node))
5396 DECL_ARG_TYPE (decl) = integer_type_node;
5398 types = tree_cons (NULL_TREE, TREE_TYPE (decl), types);
5399 if (VOID_TYPE_P (TREE_VALUE (types)) && ! erred
5400 && DECL_NAME (decl) == 0)
5402 error ("`void' in parameter list must be the entire list");
5403 erred = 1;
5407 if (void_at_end)
5408 return tree_cons (new_parms, tags,
5409 nreverse (tree_cons (NULL_TREE, void_type_node, types)));
5411 return tree_cons (new_parms, tags, nreverse (types));
5414 /* At end of parameter list, warn about any struct, union or enum tags
5415 defined within. Do so because these types cannot ever become complete. */
5417 void
5418 parmlist_tags_warning ()
5420 tree elt;
5421 static int already;
5423 for (elt = current_binding_level->tags; elt; elt = TREE_CHAIN (elt))
5425 enum tree_code code = TREE_CODE (TREE_VALUE (elt));
5426 /* An anonymous union parm type is meaningful as a GNU extension.
5427 So don't warn for that. */
5428 if (code == UNION_TYPE && TREE_PURPOSE (elt) == 0 && !pedantic)
5429 continue;
5430 if (TREE_PURPOSE (elt) != 0)
5432 if (code == RECORD_TYPE)
5433 warning ("`struct %s' declared inside parameter list",
5434 IDENTIFIER_POINTER (TREE_PURPOSE (elt)));
5435 else if (code == UNION_TYPE)
5436 warning ("`union %s' declared inside parameter list",
5437 IDENTIFIER_POINTER (TREE_PURPOSE (elt)));
5438 else
5439 warning ("`enum %s' declared inside parameter list",
5440 IDENTIFIER_POINTER (TREE_PURPOSE (elt)));
5442 else
5444 /* For translation these need to be separate warnings */
5445 if (code == RECORD_TYPE)
5446 warning ("anonymous struct declared inside parameter list");
5447 else if (code == UNION_TYPE)
5448 warning ("anonymous union declared inside parameter list");
5449 else
5450 warning ("anonymous enum declared inside parameter list");
5452 if (! already)
5454 warning ("its scope is only this definition or declaration, which is probably not what you want");
5455 already = 1;
5460 /* Get the struct, enum or union (CODE says which) with tag NAME.
5461 Define the tag as a forward-reference if it is not defined. */
5463 tree
5464 xref_tag (code, name)
5465 enum tree_code code;
5466 tree name;
5468 /* If a cross reference is requested, look up the type
5469 already defined for this tag and return it. */
5471 tree ref = lookup_tag (code, name, current_binding_level, 0);
5472 /* If this is the right type of tag, return what we found.
5473 (This reference will be shadowed by shadow_tag later if appropriate.)
5474 If this is the wrong type of tag, do not return it. If it was the
5475 wrong type in the same binding level, we will have had an error
5476 message already; if in a different binding level and declaring
5477 a name, pending_xref_error will give an error message; but if in a
5478 different binding level and not declaring a name, this tag should
5479 shadow the previous declaration of a different type of tag, and
5480 this would not work properly if we return the reference found.
5481 (For example, with "struct foo" in an outer scope, "union foo;"
5482 must shadow that tag with a new one of union type.) */
5483 if (ref && TREE_CODE (ref) == code)
5484 return ref;
5486 /* If no such tag is yet defined, create a forward-reference node
5487 and record it as the "definition".
5488 When a real declaration of this type is found,
5489 the forward-reference will be altered into a real type. */
5491 ref = make_node (code);
5492 if (code == ENUMERAL_TYPE)
5494 /* Give the type a default layout like unsigned int
5495 to avoid crashing if it does not get defined. */
5496 TYPE_MODE (ref) = TYPE_MODE (unsigned_type_node);
5497 TYPE_ALIGN (ref) = TYPE_ALIGN (unsigned_type_node);
5498 TYPE_USER_ALIGN (ref) = 0;
5499 TREE_UNSIGNED (ref) = 1;
5500 TYPE_PRECISION (ref) = TYPE_PRECISION (unsigned_type_node);
5501 TYPE_MIN_VALUE (ref) = TYPE_MIN_VALUE (unsigned_type_node);
5502 TYPE_MAX_VALUE (ref) = TYPE_MAX_VALUE (unsigned_type_node);
5505 pushtag (name, ref);
5507 return ref;
5510 /* Make sure that the tag NAME is defined *in the current binding level*
5511 at least as a forward reference.
5512 CODE says which kind of tag NAME ought to be. */
5514 tree
5515 start_struct (code, name)
5516 enum tree_code code;
5517 tree name;
5519 /* If there is already a tag defined at this binding level
5520 (as a forward reference), just return it. */
5522 tree ref = 0;
5524 if (name != 0)
5525 ref = lookup_tag (code, name, current_binding_level, 1);
5526 if (ref && TREE_CODE (ref) == code)
5528 C_TYPE_BEING_DEFINED (ref) = 1;
5529 TYPE_PACKED (ref) = flag_pack_struct;
5530 if (TYPE_FIELDS (ref))
5532 if (code == UNION_TYPE)
5533 error ("redefinition of `union %s'",
5534 IDENTIFIER_POINTER (name));
5535 else
5536 error ("redefinition of `struct %s'",
5537 IDENTIFIER_POINTER (name));
5540 return ref;
5543 /* Otherwise create a forward-reference just so the tag is in scope. */
5545 ref = make_node (code);
5546 pushtag (name, ref);
5547 C_TYPE_BEING_DEFINED (ref) = 1;
5548 TYPE_PACKED (ref) = flag_pack_struct;
5549 return ref;
5552 /* Process the specs, declarator (NULL if omitted) and width (NULL if omitted)
5553 of a structure component, returning a FIELD_DECL node.
5554 WIDTH is non-NULL for bit fields only, and is an INTEGER_CST node.
5556 This is done during the parsing of the struct declaration.
5557 The FIELD_DECL nodes are chained together and the lot of them
5558 are ultimately passed to `build_struct' to make the RECORD_TYPE node. */
5560 tree
5561 grokfield (filename, line, declarator, declspecs, width)
5562 const char *filename ATTRIBUTE_UNUSED;
5563 int line ATTRIBUTE_UNUSED;
5564 tree declarator, declspecs, width;
5566 tree value;
5568 if (declarator == NULL_TREE && width == NULL_TREE)
5570 /* This is an unnamed decl. We only support unnamed
5571 structs/unions, so check for other things and refuse them. */
5572 if (TREE_CODE (TREE_VALUE (declspecs)) != RECORD_TYPE
5573 && TREE_CODE (TREE_VALUE (declspecs)) != UNION_TYPE)
5575 error ("unnamed fields of type other than struct or union are not allowed");
5576 return NULL_TREE;
5580 value = grokdeclarator (declarator, declspecs, width ? BITFIELD : FIELD, 0);
5582 finish_decl (value, NULL_TREE, NULL_TREE);
5583 DECL_INITIAL (value) = width;
5585 maybe_objc_check_decl (value);
5586 return value;
5589 /* Fill in the fields of a RECORD_TYPE or UNION_TYPE node, T.
5590 FIELDLIST is a chain of FIELD_DECL nodes for the fields.
5591 ATTRIBUTES are attributes to be applied to the structure. */
5593 tree
5594 finish_struct (t, fieldlist, attributes)
5595 tree t;
5596 tree fieldlist;
5597 tree attributes;
5599 tree x;
5600 int toplevel = global_binding_level == current_binding_level;
5601 int saw_named_field;
5603 /* If this type was previously laid out as a forward reference,
5604 make sure we lay it out again. */
5606 TYPE_SIZE (t) = 0;
5608 decl_attributes (&t, attributes, (int) ATTR_FLAG_TYPE_IN_PLACE);
5610 /* Nameless union parm types are useful as GCC extension. */
5611 if (! (TREE_CODE (t) == UNION_TYPE && TYPE_NAME (t) == 0) && !pedantic)
5612 /* Otherwise, warn about any struct or union def. in parmlist. */
5613 if (in_parm_level_p ())
5615 if (pedantic)
5616 pedwarn ("%s defined inside parms",
5617 TREE_CODE (t) == UNION_TYPE ? _("union") : _("structure"));
5618 else if (! flag_traditional)
5619 warning ("%s defined inside parms",
5620 TREE_CODE (t) == UNION_TYPE ? _("union") : _("structure"));
5623 if (pedantic)
5625 for (x = fieldlist; x; x = TREE_CHAIN (x))
5626 if (DECL_NAME (x) != 0)
5627 break;
5629 if (x == 0)
5630 pedwarn ("%s has no %s",
5631 TREE_CODE (t) == UNION_TYPE ? _("union") : _("struct"),
5632 fieldlist ? _("named members") : _("members"));
5635 /* Install struct as DECL_CONTEXT of each field decl.
5636 Also process specified field sizes,m which is found in the DECL_INITIAL.
5637 Store 0 there, except for ": 0" fields (so we can find them
5638 and delete them, below). */
5640 saw_named_field = 0;
5641 for (x = fieldlist; x; x = TREE_CHAIN (x))
5643 DECL_CONTEXT (x) = t;
5644 DECL_PACKED (x) |= TYPE_PACKED (t);
5646 /* If any field is const, the structure type is pseudo-const. */
5647 if (TREE_READONLY (x))
5648 C_TYPE_FIELDS_READONLY (t) = 1;
5649 else
5651 /* A field that is pseudo-const makes the structure likewise. */
5652 tree t1 = TREE_TYPE (x);
5653 while (TREE_CODE (t1) == ARRAY_TYPE)
5654 t1 = TREE_TYPE (t1);
5655 if ((TREE_CODE (t1) == RECORD_TYPE || TREE_CODE (t1) == UNION_TYPE)
5656 && C_TYPE_FIELDS_READONLY (t1))
5657 C_TYPE_FIELDS_READONLY (t) = 1;
5660 /* Any field that is volatile means variables of this type must be
5661 treated in some ways as volatile. */
5662 if (TREE_THIS_VOLATILE (x))
5663 C_TYPE_FIELDS_VOLATILE (t) = 1;
5665 /* Any field of nominal variable size implies structure is too. */
5666 if (C_DECL_VARIABLE_SIZE (x))
5667 C_TYPE_VARIABLE_SIZE (t) = 1;
5669 /* Detect invalid nested redefinition. */
5670 if (TREE_TYPE (x) == t)
5671 error ("nested redefinition of `%s'",
5672 IDENTIFIER_POINTER (TYPE_NAME (t)));
5674 /* Detect invalid bit-field size. */
5675 if (DECL_INITIAL (x))
5676 STRIP_NOPS (DECL_INITIAL (x));
5677 if (DECL_INITIAL (x))
5679 if (TREE_CODE (DECL_INITIAL (x)) == INTEGER_CST)
5680 constant_expression_warning (DECL_INITIAL (x));
5681 else
5683 error_with_decl (x,
5684 "bit-field `%s' width not an integer constant");
5685 DECL_INITIAL (x) = NULL;
5689 /* Detect invalid bit-field type. */
5690 if (DECL_INITIAL (x)
5691 && TREE_CODE (TREE_TYPE (x)) != INTEGER_TYPE
5692 && TREE_CODE (TREE_TYPE (x)) != BOOLEAN_TYPE
5693 && TREE_CODE (TREE_TYPE (x)) != ENUMERAL_TYPE)
5695 error_with_decl (x, "bit-field `%s' has invalid type");
5696 DECL_INITIAL (x) = NULL;
5699 if (DECL_INITIAL (x) && pedantic
5700 && TYPE_MAIN_VARIANT (TREE_TYPE (x)) != integer_type_node
5701 && TYPE_MAIN_VARIANT (TREE_TYPE (x)) != unsigned_type_node
5702 && TYPE_MAIN_VARIANT (TREE_TYPE (x)) != c_bool_type_node
5703 /* Accept an enum that's equivalent to int or unsigned int. */
5704 && !(TREE_CODE (TREE_TYPE (x)) == ENUMERAL_TYPE
5705 && (TYPE_PRECISION (TREE_TYPE (x))
5706 == TYPE_PRECISION (integer_type_node))))
5707 pedwarn_with_decl (x, "bit-field `%s' type invalid in ISO C");
5709 /* Detect and ignore out of range field width and process valid
5710 field widths. */
5711 if (DECL_INITIAL (x))
5713 int max_width
5714 = (TYPE_MAIN_VARIANT (TREE_TYPE (x)) == c_bool_type_node
5715 ? CHAR_TYPE_SIZE : TYPE_PRECISION (TREE_TYPE (x)));
5717 if (tree_int_cst_sgn (DECL_INITIAL (x)) < 0)
5718 error_with_decl (x, "negative width in bit-field `%s'");
5719 else if (0 < compare_tree_int (DECL_INITIAL (x), max_width))
5720 pedwarn_with_decl (x, "width of `%s' exceeds its type");
5721 else if (integer_zerop (DECL_INITIAL (x)) && DECL_NAME (x) != 0)
5722 error_with_decl (x, "zero width for bit-field `%s'");
5723 else
5725 /* The test above has assured us that TREE_INT_CST_HIGH is 0. */
5726 unsigned HOST_WIDE_INT width
5727 = tree_low_cst (DECL_INITIAL (x), 1);
5729 if (TREE_CODE (TREE_TYPE (x)) == ENUMERAL_TYPE
5730 && (width < min_precision (TYPE_MIN_VALUE (TREE_TYPE (x)),
5731 TREE_UNSIGNED (TREE_TYPE (x)))
5732 || (width
5733 < min_precision (TYPE_MAX_VALUE (TREE_TYPE (x)),
5734 TREE_UNSIGNED (TREE_TYPE (x))))))
5735 warning_with_decl (x,
5736 "`%s' is narrower than values of its type");
5738 DECL_SIZE (x) = bitsize_int (width);
5739 DECL_BIT_FIELD (x) = 1;
5740 SET_DECL_C_BIT_FIELD (x);
5742 if (width == 0
5743 && ! (* targetm.ms_bitfield_layout_p) (t))
5745 /* field size 0 => force desired amount of alignment. */
5746 #ifdef EMPTY_FIELD_BOUNDARY
5747 DECL_ALIGN (x) = MAX (DECL_ALIGN (x), EMPTY_FIELD_BOUNDARY);
5748 #endif
5749 #ifdef PCC_BITFIELD_TYPE_MATTERS
5750 if (PCC_BITFIELD_TYPE_MATTERS)
5752 DECL_ALIGN (x) = MAX (DECL_ALIGN (x),
5753 TYPE_ALIGN (TREE_TYPE (x)));
5754 DECL_USER_ALIGN (x) |= TYPE_USER_ALIGN (TREE_TYPE (x));
5756 #endif
5761 else if (TREE_TYPE (x) != error_mark_node)
5763 unsigned int min_align = (DECL_PACKED (x) ? BITS_PER_UNIT
5764 : TYPE_ALIGN (TREE_TYPE (x)));
5766 /* Non-bit-fields are aligned for their type, except packed
5767 fields which require only BITS_PER_UNIT alignment. */
5768 DECL_ALIGN (x) = MAX (DECL_ALIGN (x), min_align);
5769 if (! DECL_PACKED (x))
5770 DECL_USER_ALIGN (x) |= TYPE_USER_ALIGN (TREE_TYPE (x));
5773 DECL_INITIAL (x) = 0;
5775 /* Detect flexible array member in an invalid context. */
5776 if (TREE_CODE (TREE_TYPE (x)) == ARRAY_TYPE
5777 && TYPE_SIZE (TREE_TYPE (x)) == NULL_TREE
5778 && TYPE_DOMAIN (TREE_TYPE (x)) != NULL_TREE
5779 && TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (x))) == NULL_TREE)
5781 if (TREE_CODE (t) == UNION_TYPE)
5782 error_with_decl (x, "flexible array member in union");
5783 else if (TREE_CHAIN (x) != NULL_TREE)
5784 error_with_decl (x, "flexible array member not at end of struct");
5785 else if (! saw_named_field)
5786 error_with_decl (x, "flexible array member in otherwise empty struct");
5788 if (DECL_NAME (x))
5789 saw_named_field = 1;
5792 /* Delete all duplicate fields from the fieldlist */
5793 for (x = fieldlist; x && TREE_CHAIN (x);)
5794 /* Anonymous fields aren't duplicates. */
5795 if (DECL_NAME (TREE_CHAIN (x)) == 0)
5796 x = TREE_CHAIN (x);
5797 else
5799 tree y = fieldlist;
5801 while (1)
5803 if (DECL_NAME (y) == DECL_NAME (TREE_CHAIN (x)))
5804 break;
5805 if (y == x)
5806 break;
5807 y = TREE_CHAIN (y);
5809 if (DECL_NAME (y) == DECL_NAME (TREE_CHAIN (x)))
5811 error_with_decl (TREE_CHAIN (x), "duplicate member `%s'");
5812 TREE_CHAIN (x) = TREE_CHAIN (TREE_CHAIN (x));
5814 else
5815 x = TREE_CHAIN (x);
5818 /* Now we have the nearly final fieldlist. Record it,
5819 then lay out the structure or union (including the fields). */
5821 TYPE_FIELDS (t) = fieldlist;
5823 layout_type (t);
5825 /* Delete all zero-width bit-fields from the fieldlist */
5827 tree *fieldlistp = &fieldlist;
5828 while (*fieldlistp)
5829 if (TREE_CODE (*fieldlistp) == FIELD_DECL && DECL_INITIAL (*fieldlistp))
5830 *fieldlistp = TREE_CHAIN (*fieldlistp);
5831 else
5832 fieldlistp = &TREE_CHAIN (*fieldlistp);
5835 /* Now we have the truly final field list.
5836 Store it in this type and in the variants. */
5838 TYPE_FIELDS (t) = fieldlist;
5840 for (x = TYPE_MAIN_VARIANT (t); x; x = TYPE_NEXT_VARIANT (x))
5842 TYPE_FIELDS (x) = TYPE_FIELDS (t);
5843 TYPE_LANG_SPECIFIC (x) = TYPE_LANG_SPECIFIC (t);
5844 TYPE_ALIGN (x) = TYPE_ALIGN (t);
5845 TYPE_USER_ALIGN (x) = TYPE_USER_ALIGN (t);
5848 /* If this was supposed to be a transparent union, but we can't
5849 make it one, warn and turn off the flag. */
5850 if (TREE_CODE (t) == UNION_TYPE
5851 && TYPE_TRANSPARENT_UNION (t)
5852 && TYPE_MODE (t) != DECL_MODE (TYPE_FIELDS (t)))
5854 TYPE_TRANSPARENT_UNION (t) = 0;
5855 warning ("union cannot be made transparent");
5858 /* If this structure or union completes the type of any previous
5859 variable declaration, lay it out and output its rtl. */
5861 if (current_binding_level->n_incomplete != 0)
5863 tree decl;
5864 for (decl = current_binding_level->names; decl; decl = TREE_CHAIN (decl))
5866 if (TYPE_MAIN_VARIANT (TREE_TYPE (decl)) == TYPE_MAIN_VARIANT (t)
5867 && TREE_CODE (decl) != TYPE_DECL)
5869 layout_decl (decl, 0);
5870 /* This is a no-op in c-lang.c or something real in objc-actions.c. */
5871 maybe_objc_check_decl (decl);
5872 rest_of_decl_compilation (decl, NULL, toplevel, 0);
5873 if (! toplevel)
5874 expand_decl (decl);
5875 if (--current_binding_level->n_incomplete == 0)
5876 break;
5878 else if (!COMPLETE_TYPE_P (TREE_TYPE (decl))
5879 && TREE_CODE (TREE_TYPE (decl)) == ARRAY_TYPE)
5881 tree element = TREE_TYPE (decl);
5882 while (TREE_CODE (element) == ARRAY_TYPE)
5883 element = TREE_TYPE (element);
5884 if (element == t)
5886 layout_array_type (TREE_TYPE (decl));
5887 if (TREE_CODE (decl) != TYPE_DECL)
5889 layout_decl (decl, 0);
5890 maybe_objc_check_decl (decl);
5891 rest_of_decl_compilation (decl, NULL, toplevel, 0);
5892 if (! toplevel)
5893 expand_decl (decl);
5895 if (--current_binding_level->n_incomplete == 0)
5896 break;
5902 /* Finish debugging output for this type. */
5903 rest_of_type_compilation (t, toplevel);
5905 return t;
5908 /* Lay out the type T, and its element type, and so on. */
5910 static void
5911 layout_array_type (t)
5912 tree t;
5914 if (TREE_CODE (TREE_TYPE (t)) == ARRAY_TYPE)
5915 layout_array_type (TREE_TYPE (t));
5916 layout_type (t);
5919 /* Begin compiling the definition of an enumeration type.
5920 NAME is its name (or null if anonymous).
5921 Returns the type object, as yet incomplete.
5922 Also records info about it so that build_enumerator
5923 may be used to declare the individual values as they are read. */
5925 tree
5926 start_enum (name)
5927 tree name;
5929 tree enumtype = 0;
5931 /* If this is the real definition for a previous forward reference,
5932 fill in the contents in the same object that used to be the
5933 forward reference. */
5935 if (name != 0)
5936 enumtype = lookup_tag (ENUMERAL_TYPE, name, current_binding_level, 1);
5938 if (enumtype == 0 || TREE_CODE (enumtype) != ENUMERAL_TYPE)
5940 enumtype = make_node (ENUMERAL_TYPE);
5941 pushtag (name, enumtype);
5944 C_TYPE_BEING_DEFINED (enumtype) = 1;
5946 if (TYPE_VALUES (enumtype) != 0)
5948 /* This enum is a named one that has been declared already. */
5949 error ("redeclaration of `enum %s'", IDENTIFIER_POINTER (name));
5951 /* Completely replace its old definition.
5952 The old enumerators remain defined, however. */
5953 TYPE_VALUES (enumtype) = 0;
5956 enum_next_value = integer_zero_node;
5957 enum_overflow = 0;
5959 if (flag_short_enums)
5960 TYPE_PACKED (enumtype) = 1;
5962 return enumtype;
5965 /* After processing and defining all the values of an enumeration type,
5966 install their decls in the enumeration type and finish it off.
5967 ENUMTYPE is the type object, VALUES a list of decl-value pairs,
5968 and ATTRIBUTES are the specified attributes.
5969 Returns ENUMTYPE. */
5971 tree
5972 finish_enum (enumtype, values, attributes)
5973 tree enumtype;
5974 tree values;
5975 tree attributes;
5977 tree pair, tem;
5978 tree minnode = 0, maxnode = 0, enum_value_type;
5979 int precision, unsign;
5980 int toplevel = (global_binding_level == current_binding_level);
5982 if (in_parm_level_p ())
5983 warning ("enum defined inside parms");
5985 decl_attributes (&enumtype, attributes, (int) ATTR_FLAG_TYPE_IN_PLACE);
5987 /* Calculate the maximum value of any enumerator in this type. */
5989 if (values == error_mark_node)
5990 minnode = maxnode = integer_zero_node;
5991 else
5993 minnode = maxnode = TREE_VALUE (values);
5994 for (pair = TREE_CHAIN (values); pair; pair = TREE_CHAIN (pair))
5996 tree value = TREE_VALUE (pair);
5997 if (tree_int_cst_lt (maxnode, value))
5998 maxnode = value;
5999 if (tree_int_cst_lt (value, minnode))
6000 minnode = value;
6004 /* Construct the final type of this enumeration. It is the same
6005 as one of the integral types - the narrowest one that fits, except
6006 that normally we only go as narrow as int - and signed iff any of
6007 the values are negative. */
6008 unsign = (tree_int_cst_sgn (minnode) >= 0);
6009 precision = MAX (min_precision (minnode, unsign),
6010 min_precision (maxnode, unsign));
6011 if (TYPE_PACKED (enumtype) || precision > TYPE_PRECISION (integer_type_node))
6013 tree narrowest = type_for_size (precision, unsign);
6014 if (narrowest == 0)
6016 warning ("enumeration values exceed range of largest integer");
6017 narrowest = long_long_integer_type_node;
6020 precision = TYPE_PRECISION (narrowest);
6022 else
6023 precision = TYPE_PRECISION (integer_type_node);
6025 if (precision == TYPE_PRECISION (integer_type_node))
6026 enum_value_type = type_for_size (precision, 0);
6027 else
6028 enum_value_type = enumtype;
6030 TYPE_MIN_VALUE (enumtype) = minnode;
6031 TYPE_MAX_VALUE (enumtype) = maxnode;
6032 TYPE_PRECISION (enumtype) = precision;
6033 TREE_UNSIGNED (enumtype) = unsign;
6034 TYPE_SIZE (enumtype) = 0;
6035 layout_type (enumtype);
6037 if (values != error_mark_node)
6039 /* Change the type of the enumerators to be the enum type. We
6040 need to do this irrespective of the size of the enum, for
6041 proper type checking. Replace the DECL_INITIALs of the
6042 enumerators, and the value slots of the list, with copies
6043 that have the enum type; they cannot be modified in place
6044 because they may be shared (e.g. integer_zero_node) Finally,
6045 change the purpose slots to point to the names of the decls. */
6046 for (pair = values; pair; pair = TREE_CHAIN (pair))
6048 tree enu = TREE_PURPOSE (pair);
6050 TREE_TYPE (enu) = enumtype;
6051 DECL_SIZE (enu) = TYPE_SIZE (enumtype);
6052 DECL_SIZE_UNIT (enu) = TYPE_SIZE_UNIT (enumtype);
6053 DECL_ALIGN (enu) = TYPE_ALIGN (enumtype);
6054 DECL_USER_ALIGN (enu) = TYPE_USER_ALIGN (enumtype);
6055 DECL_MODE (enu) = TYPE_MODE (enumtype);
6057 /* The ISO C Standard mandates enumerators to have type int,
6058 even though the underlying type of an enum type is
6059 unspecified. Here we convert any enumerators that fit in
6060 an int to type int, to avoid promotions to unsigned types
6061 when comparing integers with enumerators that fit in the
6062 int range. When -pedantic is given, build_enumerator()
6063 would have already taken care of those that don't fit. */
6064 if (int_fits_type_p (DECL_INITIAL (enu), enum_value_type))
6065 DECL_INITIAL (enu) = convert (enum_value_type, DECL_INITIAL (enu));
6066 else
6067 DECL_INITIAL (enu) = convert (enumtype, DECL_INITIAL (enu));
6069 TREE_PURPOSE (pair) = DECL_NAME (enu);
6070 TREE_VALUE (pair) = DECL_INITIAL (enu);
6073 TYPE_VALUES (enumtype) = values;
6076 /* Fix up all variant types of this enum type. */
6077 for (tem = TYPE_MAIN_VARIANT (enumtype); tem; tem = TYPE_NEXT_VARIANT (tem))
6079 if (tem == enumtype)
6080 continue;
6081 TYPE_VALUES (tem) = TYPE_VALUES (enumtype);
6082 TYPE_MIN_VALUE (tem) = TYPE_MIN_VALUE (enumtype);
6083 TYPE_MAX_VALUE (tem) = TYPE_MAX_VALUE (enumtype);
6084 TYPE_SIZE (tem) = TYPE_SIZE (enumtype);
6085 TYPE_SIZE_UNIT (tem) = TYPE_SIZE_UNIT (enumtype);
6086 TYPE_MODE (tem) = TYPE_MODE (enumtype);
6087 TYPE_PRECISION (tem) = TYPE_PRECISION (enumtype);
6088 TYPE_ALIGN (tem) = TYPE_ALIGN (enumtype);
6089 TYPE_USER_ALIGN (tem) = TYPE_USER_ALIGN (enumtype);
6090 TREE_UNSIGNED (tem) = TREE_UNSIGNED (enumtype);
6093 /* Finish debugging output for this type. */
6094 rest_of_type_compilation (enumtype, toplevel);
6096 return enumtype;
6099 /* Build and install a CONST_DECL for one value of the
6100 current enumeration type (one that was begun with start_enum).
6101 Return a tree-list containing the CONST_DECL and its value.
6102 Assignment of sequential values by default is handled here. */
6104 tree
6105 build_enumerator (name, value)
6106 tree name, value;
6108 tree decl, type;
6110 /* Validate and default VALUE. */
6112 /* Remove no-op casts from the value. */
6113 if (value)
6114 STRIP_TYPE_NOPS (value);
6116 if (value != 0)
6118 if (TREE_CODE (value) == INTEGER_CST)
6120 value = default_conversion (value);
6121 constant_expression_warning (value);
6123 else
6125 error ("enumerator value for `%s' not integer constant",
6126 IDENTIFIER_POINTER (name));
6127 value = 0;
6131 /* Default based on previous value. */
6132 /* It should no longer be possible to have NON_LVALUE_EXPR
6133 in the default. */
6134 if (value == 0)
6136 value = enum_next_value;
6137 if (enum_overflow)
6138 error ("overflow in enumeration values");
6141 if (pedantic && ! int_fits_type_p (value, integer_type_node))
6143 pedwarn ("ISO C restricts enumerator values to range of `int'");
6144 value = convert (integer_type_node, value);
6147 /* Set basis for default for next value. */
6148 enum_next_value = build_binary_op (PLUS_EXPR, value, integer_one_node, 0);
6149 enum_overflow = tree_int_cst_lt (enum_next_value, value);
6151 /* Now create a declaration for the enum value name. */
6153 type = TREE_TYPE (value);
6154 type = type_for_size (MAX (TYPE_PRECISION (type),
6155 TYPE_PRECISION (integer_type_node)),
6156 ((flag_traditional
6157 || TYPE_PRECISION (type) >= TYPE_PRECISION (integer_type_node))
6158 && TREE_UNSIGNED (type)));
6160 decl = build_decl (CONST_DECL, name, type);
6161 DECL_INITIAL (decl) = convert (type, value);
6162 pushdecl (decl);
6164 return tree_cons (decl, value, NULL_TREE);
6168 /* Create the FUNCTION_DECL for a function definition.
6169 DECLSPECS, DECLARATOR and ATTRIBUTES are the parts of
6170 the declaration; they describe the function's name and the type it returns,
6171 but twisted together in a fashion that parallels the syntax of C.
6173 This function creates a binding context for the function body
6174 as well as setting up the FUNCTION_DECL in current_function_decl.
6176 Returns 1 on success. If the DECLARATOR is not suitable for a function
6177 (it defines a datum instead), we return 0, which tells
6178 yyparse to report a parse error. */
6181 start_function (declspecs, declarator, attributes)
6182 tree declarator, declspecs, attributes;
6184 tree decl1, old_decl;
6185 tree restype;
6186 int old_immediate_size_expand = immediate_size_expand;
6188 current_function_returns_value = 0; /* Assume, until we see it does. */
6189 current_function_returns_null = 0;
6190 current_function_returns_abnormally = 0;
6191 warn_about_return_type = 0;
6192 current_extern_inline = 0;
6193 c_function_varargs = 0;
6194 named_labels = 0;
6195 shadowed_labels = 0;
6197 /* Don't expand any sizes in the return type of the function. */
6198 immediate_size_expand = 0;
6200 decl1 = grokdeclarator (declarator, declspecs, FUNCDEF, 1);
6202 /* If the declarator is not suitable for a function definition,
6203 cause a syntax error. */
6204 if (decl1 == 0)
6206 immediate_size_expand = old_immediate_size_expand;
6207 return 0;
6210 decl_attributes (&decl1, attributes, 0);
6212 if (DECL_DECLARED_INLINE_P (decl1)
6213 && DECL_UNINLINABLE (decl1)
6214 && lookup_attribute ("noinline", DECL_ATTRIBUTES (decl1)))
6215 warning_with_decl (decl1,
6216 "inline function `%s' given attribute noinline");
6218 announce_function (decl1);
6220 if (!COMPLETE_OR_VOID_TYPE_P (TREE_TYPE (TREE_TYPE (decl1))))
6222 error ("return type is an incomplete type");
6223 /* Make it return void instead. */
6224 TREE_TYPE (decl1)
6225 = build_function_type (void_type_node,
6226 TYPE_ARG_TYPES (TREE_TYPE (decl1)));
6229 if (warn_about_return_type)
6230 pedwarn_c99 ("return type defaults to `int'");
6232 /* Save the parm names or decls from this function's declarator
6233 where store_parm_decls will find them. */
6234 current_function_parms = last_function_parms;
6235 current_function_parm_tags = last_function_parm_tags;
6237 /* Make the init_value nonzero so pushdecl knows this is not tentative.
6238 error_mark_node is replaced below (in poplevel) with the BLOCK. */
6239 DECL_INITIAL (decl1) = error_mark_node;
6241 /* If this definition isn't a prototype and we had a prototype declaration
6242 before, copy the arg type info from that prototype.
6243 But not if what we had before was a builtin function. */
6244 old_decl = lookup_name_current_level (DECL_NAME (decl1));
6245 if (old_decl != 0 && TREE_CODE (TREE_TYPE (old_decl)) == FUNCTION_TYPE
6246 && !DECL_BUILT_IN (old_decl)
6247 && (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (decl1)))
6248 == TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (old_decl))))
6249 && TYPE_ARG_TYPES (TREE_TYPE (decl1)) == 0)
6251 TREE_TYPE (decl1) = TREE_TYPE (old_decl);
6252 current_function_prototype_file = DECL_SOURCE_FILE (old_decl);
6253 current_function_prototype_line = DECL_SOURCE_LINE (old_decl);
6256 /* If there is no explicit declaration, look for any out-of-scope implicit
6257 declarations. */
6258 if (old_decl == 0)
6259 old_decl = IDENTIFIER_IMPLICIT_DECL (DECL_NAME (decl1));
6261 /* Optionally warn of old-fashioned def with no previous prototype. */
6262 if (warn_strict_prototypes
6263 && TYPE_ARG_TYPES (TREE_TYPE (decl1)) == 0
6264 && !(old_decl != 0
6265 && (TYPE_ARG_TYPES (TREE_TYPE (old_decl)) != 0
6266 || (DECL_BUILT_IN (old_decl)
6267 && ! C_DECL_ANTICIPATED (old_decl)))))
6268 warning ("function declaration isn't a prototype");
6269 /* Optionally warn of any global def with no previous prototype. */
6270 else if (warn_missing_prototypes
6271 && TREE_PUBLIC (decl1)
6272 && !(old_decl != 0
6273 && (TYPE_ARG_TYPES (TREE_TYPE (old_decl)) != 0
6274 || (DECL_BUILT_IN (old_decl)
6275 && ! C_DECL_ANTICIPATED (old_decl))))
6276 && ! MAIN_NAME_P (DECL_NAME (decl1)))
6277 warning_with_decl (decl1, "no previous prototype for `%s'");
6278 /* Optionally warn of any def with no previous prototype
6279 if the function has already been used. */
6280 else if (warn_missing_prototypes
6281 && old_decl != 0 && TREE_USED (old_decl)
6282 && TYPE_ARG_TYPES (TREE_TYPE (old_decl)) == 0)
6283 warning_with_decl (decl1,
6284 "`%s' was used with no prototype before its definition");
6285 /* Optionally warn of any global def with no previous declaration. */
6286 else if (warn_missing_declarations
6287 && TREE_PUBLIC (decl1)
6288 && old_decl == 0
6289 && ! MAIN_NAME_P (DECL_NAME (decl1)))
6290 warning_with_decl (decl1, "no previous declaration for `%s'");
6291 /* Optionally warn of any def with no previous declaration
6292 if the function has already been used. */
6293 else if (warn_missing_declarations
6294 && old_decl != 0 && TREE_USED (old_decl)
6295 && old_decl == IDENTIFIER_IMPLICIT_DECL (DECL_NAME (decl1)))
6296 warning_with_decl (decl1,
6297 "`%s' was used with no declaration before its definition");
6299 /* This is a definition, not a reference.
6300 So normally clear DECL_EXTERNAL.
6301 However, `extern inline' acts like a declaration
6302 except for defining how to inline. So set DECL_EXTERNAL in that case. */
6303 DECL_EXTERNAL (decl1) = current_extern_inline;
6305 /* This function exists in static storage.
6306 (This does not mean `static' in the C sense!) */
6307 TREE_STATIC (decl1) = 1;
6309 /* A nested function is not global. */
6310 if (current_function_decl != 0)
6311 TREE_PUBLIC (decl1) = 0;
6313 /* Warn for unlikely, improbable, or stupid declarations of `main'. */
6314 if (warn_main > 0 && MAIN_NAME_P (DECL_NAME (decl1)))
6316 tree args;
6317 int argct = 0;
6319 if (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (decl1)))
6320 != integer_type_node)
6321 pedwarn_with_decl (decl1, "return type of `%s' is not `int'");
6323 for (args = TYPE_ARG_TYPES (TREE_TYPE (decl1)); args;
6324 args = TREE_CHAIN (args))
6326 tree type = args ? TREE_VALUE (args) : 0;
6328 if (type == void_type_node)
6329 break;
6331 ++argct;
6332 switch (argct)
6334 case 1:
6335 if (TYPE_MAIN_VARIANT (type) != integer_type_node)
6336 pedwarn_with_decl (decl1,
6337 "first argument of `%s' should be `int'");
6338 break;
6340 case 2:
6341 if (TREE_CODE (type) != POINTER_TYPE
6342 || TREE_CODE (TREE_TYPE (type)) != POINTER_TYPE
6343 || (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (type)))
6344 != char_type_node))
6345 pedwarn_with_decl (decl1,
6346 "second argument of `%s' should be `char **'");
6347 break;
6349 case 3:
6350 if (TREE_CODE (type) != POINTER_TYPE
6351 || TREE_CODE (TREE_TYPE (type)) != POINTER_TYPE
6352 || (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (type)))
6353 != char_type_node))
6354 pedwarn_with_decl (decl1,
6355 "third argument of `%s' should probably be `char **'");
6356 break;
6360 /* It is intentional that this message does not mention the third
6361 argument because it's only mentioned in an appendix of the
6362 standard. */
6363 if (argct > 0 && (argct < 2 || argct > 3))
6364 pedwarn_with_decl (decl1, "`%s' takes only zero or two arguments");
6366 if (! TREE_PUBLIC (decl1))
6367 pedwarn_with_decl (decl1, "`%s' is normally a non-static function");
6370 /* Record the decl so that the function name is defined.
6371 If we already have a decl for this name, and it is a FUNCTION_DECL,
6372 use the old decl. */
6374 current_function_decl = pushdecl (decl1);
6376 pushlevel (0);
6377 declare_parm_level (1);
6378 current_binding_level->subblocks_tag_transparent = 1;
6380 make_decl_rtl (current_function_decl, NULL);
6382 restype = TREE_TYPE (TREE_TYPE (current_function_decl));
6383 /* Promote the value to int before returning it. */
6384 if (c_promoting_integer_type_p (restype))
6386 /* It retains unsignedness if traditional
6387 or if not really getting wider. */
6388 if (TREE_UNSIGNED (restype)
6389 && (flag_traditional
6390 || (TYPE_PRECISION (restype)
6391 == TYPE_PRECISION (integer_type_node))))
6392 restype = unsigned_type_node;
6393 else
6394 restype = integer_type_node;
6396 DECL_RESULT (current_function_decl)
6397 = build_decl (RESULT_DECL, NULL_TREE, restype);
6399 /* If this fcn was already referenced via a block-scope `extern' decl
6400 (or an implicit decl), propagate certain information about the usage. */
6401 if (TREE_ADDRESSABLE (DECL_ASSEMBLER_NAME (current_function_decl)))
6402 TREE_ADDRESSABLE (current_function_decl) = 1;
6404 immediate_size_expand = old_immediate_size_expand;
6406 start_fname_decls ();
6408 return 1;
6411 /* Record that this function is going to be a varargs function.
6412 This is called before store_parm_decls, which is too early
6413 to call mark_varargs directly. */
6415 void
6416 c_mark_varargs ()
6418 c_function_varargs = 1;
6421 /* Store the parameter declarations into the current function declaration.
6422 This is called after parsing the parameter declarations, before
6423 digesting the body of the function.
6425 For an old-style definition, modify the function's type
6426 to specify at least the number of arguments. */
6428 void
6429 store_parm_decls ()
6431 tree fndecl = current_function_decl;
6432 tree parm;
6434 /* This is either a chain of PARM_DECLs (if a prototype was used)
6435 or a list of IDENTIFIER_NODEs (for an old-fashioned C definition). */
6436 tree specparms = current_function_parms;
6438 /* This is a list of types declared among parms in a prototype. */
6439 tree parmtags = current_function_parm_tags;
6441 /* This is a chain of PARM_DECLs from old-style parm declarations. */
6442 tree parmdecls = getdecls ();
6444 /* This is a chain of any other decls that came in among the parm
6445 declarations. If a parm is declared with enum {foo, bar} x;
6446 then CONST_DECLs for foo and bar are put here. */
6447 tree nonparms = 0;
6449 /* The function containing FNDECL, if any. */
6450 tree context = decl_function_context (fndecl);
6452 /* Nonzero if this definition is written with a prototype. */
6453 int prototype = 0;
6455 int saved_warn_shadow = warn_shadow;
6457 /* Don't re-emit shadow warnings. */
6458 warn_shadow = 0;
6460 if (specparms != 0 && TREE_CODE (specparms) != TREE_LIST)
6462 /* This case is when the function was defined with an ANSI prototype.
6463 The parms already have decls, so we need not do anything here
6464 except record them as in effect
6465 and complain if any redundant old-style parm decls were written. */
6467 tree next;
6468 tree others = 0;
6470 prototype = 1;
6472 if (parmdecls != 0)
6474 tree decl, link;
6476 error_with_decl (fndecl,
6477 "parm types given both in parmlist and separately");
6478 /* Get rid of the erroneous decls; don't keep them on
6479 the list of parms, since they might not be PARM_DECLs. */
6480 for (decl = current_binding_level->names;
6481 decl; decl = TREE_CHAIN (decl))
6482 if (DECL_NAME (decl))
6483 IDENTIFIER_LOCAL_VALUE (DECL_NAME (decl)) = 0;
6484 for (link = current_binding_level->shadowed;
6485 link; link = TREE_CHAIN (link))
6486 IDENTIFIER_LOCAL_VALUE (TREE_PURPOSE (link)) = TREE_VALUE (link);
6487 current_binding_level->names = 0;
6488 current_binding_level->shadowed = 0;
6491 specparms = nreverse (specparms);
6492 for (parm = specparms; parm; parm = next)
6494 next = TREE_CHAIN (parm);
6495 if (TREE_CODE (parm) == PARM_DECL)
6497 if (DECL_NAME (parm) == 0)
6498 error_with_decl (parm, "parameter name omitted");
6499 else if (TREE_CODE (TREE_TYPE (parm)) != ERROR_MARK
6500 && VOID_TYPE_P (TREE_TYPE (parm)))
6502 error_with_decl (parm, "parameter `%s' declared void");
6503 /* Change the type to error_mark_node so this parameter
6504 will be ignored by assign_parms. */
6505 TREE_TYPE (parm) = error_mark_node;
6507 pushdecl (parm);
6509 else
6511 /* If we find an enum constant or a type tag,
6512 put it aside for the moment. */
6513 TREE_CHAIN (parm) = 0;
6514 others = chainon (others, parm);
6518 /* Get the decls in their original chain order
6519 and record in the function. */
6520 DECL_ARGUMENTS (fndecl) = getdecls ();
6522 #if 0
6523 /* If this function takes a variable number of arguments,
6524 add a phony parameter to the end of the parm list,
6525 to represent the position of the first unnamed argument. */
6526 if (TREE_VALUE (tree_last (TYPE_ARG_TYPES (TREE_TYPE (fndecl))))
6527 != void_type_node)
6529 tree dummy = build_decl (PARM_DECL, NULL_TREE, void_type_node);
6530 /* Let's hope the address of the unnamed parm
6531 won't depend on its type. */
6532 TREE_TYPE (dummy) = integer_type_node;
6533 DECL_ARG_TYPE (dummy) = integer_type_node;
6534 DECL_ARGUMENTS (fndecl) = chainon (DECL_ARGUMENTS (fndecl), dummy);
6536 #endif
6538 /* Now pushdecl the enum constants. */
6539 for (parm = others; parm; parm = next)
6541 next = TREE_CHAIN (parm);
6542 if (DECL_NAME (parm) == 0)
6544 else if (TYPE_MAIN_VARIANT (TREE_TYPE (parm)) == void_type_node)
6546 else if (TREE_CODE (parm) != PARM_DECL)
6547 pushdecl (parm);
6550 storetags (chainon (parmtags, gettags ()));
6552 else
6554 /* SPECPARMS is an identifier list--a chain of TREE_LIST nodes
6555 each with a parm name as the TREE_VALUE.
6557 PARMDECLS is a chain of declarations for parameters.
6558 Warning! It can also contain CONST_DECLs which are not parameters
6559 but are names of enumerators of any enum types
6560 declared among the parameters.
6562 First match each formal parameter name with its declaration.
6563 Associate decls with the names and store the decls
6564 into the TREE_PURPOSE slots. */
6566 /* We use DECL_WEAK as a flag to show which parameters have been
6567 seen already since it is not used on PARM_DECL or CONST_DECL. */
6568 for (parm = parmdecls; parm; parm = TREE_CHAIN (parm))
6569 DECL_WEAK (parm) = 0;
6571 for (parm = specparms; parm; parm = TREE_CHAIN (parm))
6573 tree tail, found = NULL;
6575 if (TREE_VALUE (parm) == 0)
6577 error_with_decl (fndecl,
6578 "parameter name missing from parameter list");
6579 TREE_PURPOSE (parm) = 0;
6580 continue;
6583 /* See if any of the parmdecls specifies this parm by name.
6584 Ignore any enumerator decls. */
6585 for (tail = parmdecls; tail; tail = TREE_CHAIN (tail))
6586 if (DECL_NAME (tail) == TREE_VALUE (parm)
6587 && TREE_CODE (tail) == PARM_DECL)
6589 found = tail;
6590 break;
6593 /* If declaration already marked, we have a duplicate name.
6594 Complain, and don't use this decl twice. */
6595 if (found && DECL_WEAK (found))
6597 error_with_decl (found, "multiple parameters named `%s'");
6598 found = 0;
6601 /* If the declaration says "void", complain and ignore it. */
6602 if (found && VOID_TYPE_P (TREE_TYPE (found)))
6604 error_with_decl (found, "parameter `%s' declared void");
6605 TREE_TYPE (found) = integer_type_node;
6606 DECL_ARG_TYPE (found) = integer_type_node;
6607 layout_decl (found, 0);
6610 /* Traditionally, a parm declared float is actually a double. */
6611 if (found && flag_traditional
6612 && TYPE_MAIN_VARIANT (TREE_TYPE (found)) == float_type_node)
6614 TREE_TYPE (found) = double_type_node;
6615 DECL_ARG_TYPE (found) = double_type_node;
6616 layout_decl (found, 0);
6619 /* If no declaration found, default to int. */
6620 if (!found)
6622 found = build_decl (PARM_DECL, TREE_VALUE (parm),
6623 integer_type_node);
6624 DECL_ARG_TYPE (found) = TREE_TYPE (found);
6625 DECL_SOURCE_LINE (found) = DECL_SOURCE_LINE (fndecl);
6626 DECL_SOURCE_FILE (found) = DECL_SOURCE_FILE (fndecl);
6627 if (flag_isoc99)
6628 pedwarn_with_decl (found, "type of `%s' defaults to `int'");
6629 else if (extra_warnings)
6630 warning_with_decl (found, "type of `%s' defaults to `int'");
6631 pushdecl (found);
6634 TREE_PURPOSE (parm) = found;
6636 /* Mark this decl as "already found". */
6637 DECL_WEAK (found) = 1;
6640 /* Put anything which is on the parmdecls chain and which is
6641 not a PARM_DECL onto the list NONPARMS. (The types of
6642 non-parm things which might appear on the list include
6643 enumerators and NULL-named TYPE_DECL nodes.) Complain about
6644 any actual PARM_DECLs not matched with any names. */
6646 nonparms = 0;
6647 for (parm = parmdecls; parm;)
6649 tree next = TREE_CHAIN (parm);
6650 TREE_CHAIN (parm) = 0;
6652 if (TREE_CODE (parm) != PARM_DECL)
6653 nonparms = chainon (nonparms, parm);
6654 else
6656 /* Complain about args with incomplete types. */
6657 if (!COMPLETE_TYPE_P (TREE_TYPE (parm)))
6659 error_with_decl (parm, "parameter `%s' has incomplete type");
6660 TREE_TYPE (parm) = error_mark_node;
6663 if (! DECL_WEAK (parm))
6665 error_with_decl (parm,
6666 "declaration for parameter `%s' but no such parameter");
6667 /* Pretend the parameter was not missing.
6668 This gets us to a standard state and minimizes
6669 further error messages. */
6670 specparms
6671 = chainon (specparms,
6672 tree_cons (parm, NULL_TREE, NULL_TREE));
6676 parm = next;
6679 /* Chain the declarations together in the order of the list of
6680 names. Store that chain in the function decl, replacing the
6681 list of names. */
6682 parm = specparms;
6683 DECL_ARGUMENTS (fndecl) = 0;
6685 tree last;
6686 for (last = 0; parm; parm = TREE_CHAIN (parm))
6687 if (TREE_PURPOSE (parm))
6689 if (last == 0)
6690 DECL_ARGUMENTS (fndecl) = TREE_PURPOSE (parm);
6691 else
6692 TREE_CHAIN (last) = TREE_PURPOSE (parm);
6693 last = TREE_PURPOSE (parm);
6694 TREE_CHAIN (last) = 0;
6698 /* If there was a previous prototype,
6699 set the DECL_ARG_TYPE of each argument according to
6700 the type previously specified, and report any mismatches. */
6702 if (TYPE_ARG_TYPES (TREE_TYPE (fndecl)))
6704 tree type;
6705 for (parm = DECL_ARGUMENTS (fndecl),
6706 type = TYPE_ARG_TYPES (TREE_TYPE (fndecl));
6707 parm || (type && (TYPE_MAIN_VARIANT (TREE_VALUE (type))
6708 != void_type_node));
6709 parm = TREE_CHAIN (parm), type = TREE_CHAIN (type))
6711 if (parm == 0 || type == 0
6712 || TYPE_MAIN_VARIANT (TREE_VALUE (type)) == void_type_node)
6714 error ("number of arguments doesn't match prototype");
6715 error_with_file_and_line (current_function_prototype_file,
6716 current_function_prototype_line,
6717 "prototype declaration");
6718 break;
6720 /* Type for passing arg must be consistent with that
6721 declared for the arg. ISO C says we take the unqualified
6722 type for parameters declared with qualified type. */
6723 if (! comptypes (TYPE_MAIN_VARIANT (DECL_ARG_TYPE (parm)),
6724 TYPE_MAIN_VARIANT (TREE_VALUE (type))))
6726 if (TYPE_MAIN_VARIANT (TREE_TYPE (parm))
6727 == TYPE_MAIN_VARIANT (TREE_VALUE (type)))
6729 /* Adjust argument to match prototype. E.g. a previous
6730 `int foo(float);' prototype causes
6731 `int foo(x) float x; {...}' to be treated like
6732 `int foo(float x) {...}'. This is particularly
6733 useful for argument types like uid_t. */
6734 DECL_ARG_TYPE (parm) = TREE_TYPE (parm);
6736 if (PROMOTE_PROTOTYPES
6737 && INTEGRAL_TYPE_P (TREE_TYPE (parm))
6738 && TYPE_PRECISION (TREE_TYPE (parm))
6739 < TYPE_PRECISION (integer_type_node))
6740 DECL_ARG_TYPE (parm) = integer_type_node;
6742 if (pedantic)
6744 pedwarn ("promoted argument `%s' doesn't match prototype",
6745 IDENTIFIER_POINTER (DECL_NAME (parm)));
6746 warning_with_file_and_line
6747 (current_function_prototype_file,
6748 current_function_prototype_line,
6749 "prototype declaration");
6752 /* If -traditional, allow `int' argument to match
6753 `unsigned' prototype. */
6754 else if (! (flag_traditional
6755 && TYPE_MAIN_VARIANT (TREE_TYPE (parm)) == integer_type_node
6756 && TYPE_MAIN_VARIANT (TREE_VALUE (type)) == unsigned_type_node))
6758 error ("argument `%s' doesn't match prototype",
6759 IDENTIFIER_POINTER (DECL_NAME (parm)));
6760 error_with_file_and_line (current_function_prototype_file,
6761 current_function_prototype_line,
6762 "prototype declaration");
6766 TYPE_ACTUAL_ARG_TYPES (TREE_TYPE (fndecl)) = 0;
6769 /* Otherwise, create a prototype that would match. */
6771 else
6773 tree actual = 0, last = 0, type;
6775 for (parm = DECL_ARGUMENTS (fndecl); parm; parm = TREE_CHAIN (parm))
6777 type = tree_cons (NULL_TREE, DECL_ARG_TYPE (parm), NULL_TREE);
6778 if (last)
6779 TREE_CHAIN (last) = type;
6780 else
6781 actual = type;
6782 last = type;
6784 type = tree_cons (NULL_TREE, void_type_node, NULL_TREE);
6785 if (last)
6786 TREE_CHAIN (last) = type;
6787 else
6788 actual = type;
6790 /* We are going to assign a new value for the TYPE_ACTUAL_ARG_TYPES
6791 of the type of this function, but we need to avoid having this
6792 affect the types of other similarly-typed functions, so we must
6793 first force the generation of an identical (but separate) type
6794 node for the relevant function type. The new node we create
6795 will be a variant of the main variant of the original function
6796 type. */
6798 TREE_TYPE (fndecl) = build_type_copy (TREE_TYPE (fndecl));
6800 TYPE_ACTUAL_ARG_TYPES (TREE_TYPE (fndecl)) = actual;
6803 /* Now store the final chain of decls for the arguments
6804 as the decl-chain of the current lexical scope.
6805 Put the enumerators in as well, at the front so that
6806 DECL_ARGUMENTS is not modified. */
6808 storedecls (chainon (nonparms, DECL_ARGUMENTS (fndecl)));
6811 /* Make sure the binding level for the top of the function body
6812 gets a BLOCK if there are any in the function.
6813 Otherwise, the dbx output is wrong. */
6815 keep_next_if_subblocks = 1;
6817 /* ??? This might be an improvement,
6818 but needs to be thought about some more. */
6819 #if 0
6820 keep_next_level_flag = 1;
6821 #endif
6823 /* Write a record describing this function definition to the prototypes
6824 file (if requested). */
6826 gen_aux_info_record (fndecl, 1, 0, prototype);
6828 /* Initialize the RTL code for the function. */
6829 init_function_start (fndecl, input_filename, lineno);
6831 /* Begin the statement tree for this function. */
6832 begin_stmt_tree (&DECL_SAVED_TREE (current_function_decl));
6834 /* If this is a nested function, save away the sizes of any
6835 variable-size types so that we can expand them when generating
6836 RTL. */
6837 if (context)
6839 tree t;
6841 DECL_LANG_SPECIFIC (fndecl)->pending_sizes
6842 = nreverse (get_pending_sizes ());
6843 for (t = DECL_LANG_SPECIFIC (fndecl)->pending_sizes;
6845 t = TREE_CHAIN (t))
6846 SAVE_EXPR_CONTEXT (TREE_VALUE (t)) = context;
6849 /* This function is being processed in whole-function mode. */
6850 cfun->x_whole_function_mode_p = 1;
6852 /* Even though we're inside a function body, we still don't want to
6853 call expand_expr to calculate the size of a variable-sized array.
6854 We haven't necessarily assigned RTL to all variables yet, so it's
6855 not safe to try to expand expressions involving them. */
6856 immediate_size_expand = 0;
6857 cfun->x_dont_save_pending_sizes_p = 1;
6859 warn_shadow = saved_warn_shadow;
6862 /* Finish up a function declaration and compile that function
6863 all the way to assembler language output. The free the storage
6864 for the function definition.
6866 This is called after parsing the body of the function definition.
6868 NESTED is nonzero if the function being finished is nested in another. */
6870 void
6871 finish_function (nested)
6872 int nested;
6874 tree fndecl = current_function_decl;
6876 /* TREE_READONLY (fndecl) = 1;
6877 This caused &foo to be of type ptr-to-const-function
6878 which then got a warning when stored in a ptr-to-function variable. */
6880 poplevel (1, 0, 1);
6881 BLOCK_SUPERCONTEXT (DECL_INITIAL (fndecl)) = fndecl;
6883 /* Must mark the RESULT_DECL as being in this function. */
6885 DECL_CONTEXT (DECL_RESULT (fndecl)) = fndecl;
6887 /* Obey `register' declarations if `setjmp' is called in this fn. */
6888 if (flag_traditional && current_function_calls_setjmp)
6890 setjmp_protect (DECL_INITIAL (fndecl));
6891 setjmp_protect_args ();
6894 if (MAIN_NAME_P (DECL_NAME (fndecl)) && flag_hosted)
6896 if (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (fndecl)))
6897 != integer_type_node)
6899 /* If warn_main is 1 (-Wmain) or 2 (-Wall), we have already warned.
6900 If warn_main is -1 (-Wno-main) we don't want to be warned. */
6901 if (! warn_main)
6902 pedwarn_with_decl (fndecl, "return type of `%s' is not `int'");
6904 else
6906 #ifdef DEFAULT_MAIN_RETURN
6907 /* Make it so that `main' always returns success by default. */
6908 DEFAULT_MAIN_RETURN;
6909 #else
6910 if (flag_isoc99)
6911 c_expand_return (integer_zero_node);
6912 #endif
6916 finish_fname_decls ();
6918 /* Tie off the statement tree for this function. */
6919 finish_stmt_tree (&DECL_SAVED_TREE (fndecl));
6921 /* Complain if there's just no return statement. */
6922 if (TREE_CODE (TREE_TYPE (TREE_TYPE (fndecl))) != VOID_TYPE
6923 && !current_function_returns_value && !current_function_returns_null
6924 /* Don't complain if we abort. */
6925 && !current_function_returns_abnormally
6926 /* Don't warn for main(). */
6927 && !MAIN_NAME_P (DECL_NAME (fndecl))
6928 /* Or if they didn't actually specify a return type. */
6929 && !C_FUNCTION_IMPLICIT_INT (fndecl)
6930 /* If we have -Wreturn-type, let flow complain. Unless we're an
6931 inline function, as we might never be compiled separately. */
6932 && (!warn_return_type || DECL_INLINE (fndecl)))
6933 warning ("no return statement in function returning non-void");
6935 /* Clear out memory we no longer need. */
6936 free_after_parsing (cfun);
6937 /* Since we never call rest_of_compilation, we never clear
6938 CFUN. Do so explicitly. */
6939 free_after_compilation (cfun);
6940 cfun = NULL;
6942 if (! nested)
6944 /* Generate RTL for the body of this function. */
6945 c_expand_body (fndecl, nested, 1);
6946 /* Let the error reporting routines know that we're outside a
6947 function. For a nested function, this value is used in
6948 pop_c_function_context and then reset via pop_function_context. */
6949 current_function_decl = NULL;
6953 /* Generate the RTL for a deferred function FNDECL. */
6955 void
6956 c_expand_deferred_function (fndecl)
6957 tree fndecl;
6959 /* DECL_INLINE or DECL_RESULT might got cleared after the inline
6960 function was deferred, e.g. in duplicate_decls. */
6961 if (DECL_INLINE (fndecl) && DECL_RESULT (fndecl))
6963 c_expand_body (fndecl, 0, 0);
6964 current_function_decl = NULL;
6968 /* Generate the RTL for the body of FNDECL. If NESTED_P is non-zero,
6969 then we are already in the process of generating RTL for another
6970 function. If can_defer_p is zero, we won't attempt to defer the
6971 generation of RTL. */
6973 static void
6974 c_expand_body (fndecl, nested_p, can_defer_p)
6975 tree fndecl;
6976 int nested_p, can_defer_p;
6978 int uninlinable = 1;
6980 /* There's no reason to do any of the work here if we're only doing
6981 semantic analysis; this code just generates RTL. */
6982 if (flag_syntax_only)
6983 return;
6985 if (flag_inline_trees)
6987 /* First, cache whether the current function is inlinable. Some
6988 predicates depend on cfun and current_function_decl to
6989 function completely. */
6990 timevar_push (TV_INTEGRATION);
6991 uninlinable = ! tree_inlinable_function_p (fndecl);
6993 if (! uninlinable && can_defer_p
6994 /* Save function tree for inlining. Should return 0 if the
6995 language does not support function deferring or the
6996 function could not be deferred. */
6997 && defer_fn (fndecl))
6999 /* Let the back-end know that this function exists. */
7000 (*debug_hooks->deferred_inline_function) (fndecl);
7001 timevar_pop (TV_INTEGRATION);
7002 return;
7005 /* Then, inline any functions called in it. */
7006 optimize_inline_calls (fndecl);
7007 timevar_pop (TV_INTEGRATION);
7010 timevar_push (TV_EXPAND);
7012 if (nested_p)
7014 /* Make sure that we will evaluate variable-sized types involved
7015 in our function's type. */
7016 expand_pending_sizes (DECL_LANG_SPECIFIC (fndecl)->pending_sizes);
7017 /* Squirrel away our current state. */
7018 push_function_context ();
7021 /* Initialize the RTL code for the function. */
7022 current_function_decl = fndecl;
7023 input_filename = DECL_SOURCE_FILE (fndecl);
7024 init_function_start (fndecl, input_filename, DECL_SOURCE_LINE (fndecl));
7026 /* This function is being processed in whole-function mode. */
7027 cfun->x_whole_function_mode_p = 1;
7029 /* Even though we're inside a function body, we still don't want to
7030 call expand_expr to calculate the size of a variable-sized array.
7031 We haven't necessarily assigned RTL to all variables yet, so it's
7032 not safe to try to expand expressions involving them. */
7033 immediate_size_expand = 0;
7034 cfun->x_dont_save_pending_sizes_p = 1;
7036 /* If this is a varargs function, inform function.c. */
7037 if (c_function_varargs)
7038 mark_varargs ();
7040 /* Set up parameters and prepare for return, for the function. */
7041 expand_function_start (fndecl, 0);
7043 /* If this function is `main', emit a call to `__main'
7044 to run global initializers, etc. */
7045 if (DECL_NAME (fndecl)
7046 && MAIN_NAME_P (DECL_NAME (fndecl))
7047 && DECL_CONTEXT (fndecl) == NULL_TREE)
7048 expand_main_function ();
7050 /* Generate the RTL for this function. */
7051 expand_stmt (DECL_SAVED_TREE (fndecl));
7052 if (uninlinable)
7054 /* Allow the body of the function to be garbage collected. */
7055 DECL_SAVED_TREE (fndecl) = NULL_TREE;
7058 /* We hard-wired immediate_size_expand to zero above.
7059 expand_function_end will decrement this variable. So, we set the
7060 variable to one here, so that after the decrement it will remain
7061 zero. */
7062 immediate_size_expand = 1;
7064 /* Allow language dialects to perform special processing. */
7065 if (lang_expand_function_end)
7066 (*lang_expand_function_end) ();
7068 /* Generate rtl for function exit. */
7069 expand_function_end (input_filename, lineno, 0);
7071 /* If this is a nested function, protect the local variables in the stack
7072 above us from being collected while we're compiling this function. */
7073 if (nested_p)
7074 ggc_push_context ();
7076 /* Run the optimizers and output the assembler code for this function. */
7077 rest_of_compilation (fndecl);
7079 /* Undo the GC context switch. */
7080 if (nested_p)
7081 ggc_pop_context ();
7083 /* With just -W, complain only if function returns both with
7084 and without a value. */
7085 if (extra_warnings
7086 && current_function_returns_value
7087 && current_function_returns_null)
7088 warning ("this function may return with or without a value");
7090 /* If requested, warn about function definitions where the function will
7091 return a value (usually of some struct or union type) which itself will
7092 take up a lot of stack space. */
7094 if (warn_larger_than && !DECL_EXTERNAL (fndecl) && TREE_TYPE (fndecl))
7096 tree ret_type = TREE_TYPE (TREE_TYPE (fndecl));
7098 if (ret_type && TYPE_SIZE_UNIT (ret_type)
7099 && TREE_CODE (TYPE_SIZE_UNIT (ret_type)) == INTEGER_CST
7100 && 0 < compare_tree_int (TYPE_SIZE_UNIT (ret_type),
7101 larger_than_size))
7103 unsigned int size_as_int
7104 = TREE_INT_CST_LOW (TYPE_SIZE_UNIT (ret_type));
7106 if (compare_tree_int (TYPE_SIZE_UNIT (ret_type), size_as_int) == 0)
7107 warning_with_decl (fndecl,
7108 "size of return value of `%s' is %u bytes",
7109 size_as_int);
7110 else
7111 warning_with_decl (fndecl,
7112 "size of return value of `%s' is larger than %d bytes",
7113 larger_than_size);
7117 if (DECL_SAVED_INSNS (fndecl) == 0 && ! nested_p
7118 && ! flag_inline_trees)
7120 /* Stop pointing to the local nodes about to be freed.
7121 But DECL_INITIAL must remain nonzero so we know this
7122 was an actual function definition.
7123 For a nested function, this is done in pop_c_function_context.
7124 If rest_of_compilation set this to 0, leave it 0. */
7125 if (DECL_INITIAL (fndecl) != 0)
7126 DECL_INITIAL (fndecl) = error_mark_node;
7128 DECL_ARGUMENTS (fndecl) = 0;
7131 if (DECL_STATIC_CONSTRUCTOR (fndecl))
7133 if (targetm.have_ctors_dtors)
7134 (* targetm.asm_out.constructor) (XEXP (DECL_RTL (fndecl), 0),
7135 DEFAULT_INIT_PRIORITY);
7136 else
7137 static_ctors = tree_cons (NULL_TREE, fndecl, static_ctors);
7140 if (DECL_STATIC_DESTRUCTOR (fndecl))
7142 if (targetm.have_ctors_dtors)
7143 (* targetm.asm_out.destructor) (XEXP (DECL_RTL (fndecl), 0),
7144 DEFAULT_INIT_PRIORITY);
7145 else
7146 static_dtors = tree_cons (NULL_TREE, fndecl, static_dtors);
7149 if (nested_p)
7150 /* Return to the enclosing function. */
7151 pop_function_context ();
7152 timevar_pop (TV_EXPAND);
7155 /* Check the declarations given in a for-loop for satisfying the C99
7156 constraints. */
7157 void
7158 check_for_loop_decls ()
7160 tree t;
7162 if (!flag_isoc99)
7164 /* If we get here, declarations have been used in a for loop without
7165 the C99 for loop scope. This doesn't make much sense, so don't
7166 allow it. */
7167 error ("`for' loop initial declaration used outside C99 mode");
7168 return;
7170 /* C99 subclause 6.8.5 paragraph 3:
7172 [#3] The declaration part of a for statement shall only
7173 declare identifiers for objects having storage class auto or
7174 register.
7176 It isn't clear whether, in this sentence, "identifiers" binds to
7177 "shall only declare" or to "objects" - that is, whether all identifiers
7178 declared must be identifiers for objects, or whether the restriction
7179 only applies to those that are. (A question on this in comp.std.c
7180 in November 2000 received no answer.) We implement the strictest
7181 interpretation, to avoid creating an extension which later causes
7182 problems. */
7184 for (t = gettags (); t; t = TREE_CHAIN (t))
7186 if (TREE_PURPOSE (t) != 0)
7188 enum tree_code code = TREE_CODE (TREE_VALUE (t));
7190 if (code == RECORD_TYPE)
7191 error ("`struct %s' declared in `for' loop initial declaration",
7192 IDENTIFIER_POINTER (TREE_PURPOSE (t)));
7193 else if (code == UNION_TYPE)
7194 error ("`union %s' declared in `for' loop initial declaration",
7195 IDENTIFIER_POINTER (TREE_PURPOSE (t)));
7196 else
7197 error ("`enum %s' declared in `for' loop initial declaration",
7198 IDENTIFIER_POINTER (TREE_PURPOSE (t)));
7202 for (t = getdecls (); t; t = TREE_CHAIN (t))
7204 if (TREE_CODE (t) != VAR_DECL && DECL_NAME (t))
7205 error_with_decl (t, "declaration of non-variable `%s' in `for' loop initial declaration");
7206 else if (TREE_STATIC (t))
7207 error_with_decl (t, "declaration of static variable `%s' in `for' loop initial declaration");
7208 else if (DECL_EXTERNAL (t))
7209 error_with_decl (t, "declaration of `extern' variable `%s' in `for' loop initial declaration");
7213 /* Save and restore the variables in this file and elsewhere
7214 that keep track of the progress of compilation of the current function.
7215 Used for nested functions. */
7217 struct c_language_function
7219 struct language_function base;
7220 tree named_labels;
7221 tree shadowed_labels;
7222 int returns_value;
7223 int returns_null;
7224 int returns_abnormally;
7225 int warn_about_return_type;
7226 int extern_inline;
7227 struct binding_level *binding_level;
7230 /* Save and reinitialize the variables
7231 used during compilation of a C function. */
7233 void
7234 push_c_function_context (f)
7235 struct function *f;
7237 struct c_language_function *p;
7238 p = ((struct c_language_function *)
7239 xmalloc (sizeof (struct c_language_function)));
7240 f->language = (struct language_function *) p;
7242 p->base.x_stmt_tree = c_stmt_tree;
7243 p->base.x_scope_stmt_stack = c_scope_stmt_stack;
7244 p->named_labels = named_labels;
7245 p->shadowed_labels = shadowed_labels;
7246 p->returns_value = current_function_returns_value;
7247 p->returns_null = current_function_returns_null;
7248 p->returns_abnormally = current_function_returns_abnormally;
7249 p->warn_about_return_type = warn_about_return_type;
7250 p->extern_inline = current_extern_inline;
7251 p->binding_level = current_binding_level;
7254 /* Restore the variables used during compilation of a C function. */
7256 void
7257 pop_c_function_context (f)
7258 struct function *f;
7260 struct c_language_function *p
7261 = (struct c_language_function *) f->language;
7262 tree link;
7264 /* Bring back all the labels that were shadowed. */
7265 for (link = shadowed_labels; link; link = TREE_CHAIN (link))
7266 if (DECL_NAME (TREE_VALUE (link)) != 0)
7267 IDENTIFIER_LABEL_VALUE (DECL_NAME (TREE_VALUE (link)))
7268 = TREE_VALUE (link);
7270 if (DECL_SAVED_INSNS (current_function_decl) == 0
7271 && DECL_SAVED_TREE (current_function_decl) == NULL_TREE)
7273 /* Stop pointing to the local nodes about to be freed. */
7274 /* But DECL_INITIAL must remain nonzero so we know this
7275 was an actual function definition. */
7276 DECL_INITIAL (current_function_decl) = error_mark_node;
7277 DECL_ARGUMENTS (current_function_decl) = 0;
7280 c_stmt_tree = p->base.x_stmt_tree;
7281 c_scope_stmt_stack = p->base.x_scope_stmt_stack;
7282 named_labels = p->named_labels;
7283 shadowed_labels = p->shadowed_labels;
7284 current_function_returns_value = p->returns_value;
7285 current_function_returns_null = p->returns_null;
7286 current_function_returns_abnormally = p->returns_abnormally;
7287 warn_about_return_type = p->warn_about_return_type;
7288 current_extern_inline = p->extern_inline;
7289 current_binding_level = p->binding_level;
7291 free (p);
7292 f->language = 0;
7295 /* Mark the language specific parts of F for GC. */
7297 void
7298 mark_c_function_context (f)
7299 struct function *f;
7301 struct c_language_function *p
7302 = (struct c_language_function *) f->language;
7304 if (p == 0)
7305 return;
7307 mark_c_language_function (&p->base);
7308 ggc_mark_tree (p->shadowed_labels);
7309 ggc_mark_tree (p->named_labels);
7310 mark_binding_level (&p->binding_level);
7313 /* Copy the DECL_LANG_SPECIFIC data associated with NODE. */
7315 void
7316 copy_lang_decl (decl)
7317 tree decl;
7319 struct lang_decl *ld;
7321 if (!DECL_LANG_SPECIFIC (decl))
7322 return;
7324 ld = (struct lang_decl *) ggc_alloc (sizeof (struct lang_decl));
7325 memcpy ((char *) ld, (char *) DECL_LANG_SPECIFIC (decl),
7326 sizeof (struct lang_decl));
7327 DECL_LANG_SPECIFIC (decl) = ld;
7330 /* Mark the language specific bits in T for GC. */
7332 void
7333 lang_mark_tree (t)
7334 tree t;
7336 if (TREE_CODE (t) == IDENTIFIER_NODE)
7338 struct lang_identifier *i = (struct lang_identifier *) t;
7339 ggc_mark_tree (i->global_value);
7340 ggc_mark_tree (i->local_value);
7341 ggc_mark_tree (i->label_value);
7342 ggc_mark_tree (i->implicit_decl);
7343 ggc_mark_tree (i->error_locus);
7344 ggc_mark_tree (i->limbo_value);
7346 else if (TYPE_P (t) && TYPE_LANG_SPECIFIC (t))
7347 ggc_mark (TYPE_LANG_SPECIFIC (t));
7348 else if (DECL_P (t) && DECL_LANG_SPECIFIC (t))
7350 ggc_mark (DECL_LANG_SPECIFIC (t));
7351 c_mark_lang_decl (&DECL_LANG_SPECIFIC (t)->base);
7352 ggc_mark_tree (DECL_LANG_SPECIFIC (t)->pending_sizes);
7356 /* The functions below are required for functionality of doing
7357 function at once processing in the C front end. Currently these
7358 functions are not called from anywhere in the C front end, but as
7359 these changes continue, that will change. */
7361 /* Returns non-zero if the current statement is a full expression,
7362 i.e. temporaries created during that statement should be destroyed
7363 at the end of the statement. */
7366 stmts_are_full_exprs_p ()
7368 return 0;
7371 /* Returns the stmt_tree (if any) to which statements are currently
7372 being added. If there is no active statement-tree, NULL is
7373 returned. */
7375 stmt_tree
7376 current_stmt_tree ()
7378 return &c_stmt_tree;
7381 /* Returns the stack of SCOPE_STMTs for the current function. */
7383 tree *
7384 current_scope_stmt_stack ()
7386 return &c_scope_stmt_stack;
7389 /* Nonzero if TYPE is an anonymous union or struct type. Always 0 in
7390 C. */
7393 anon_aggr_type_p (node)
7394 tree node ATTRIBUTE_UNUSED;
7396 return 0;
7399 /* Dummy function in place of callback used by C++. */
7401 void
7402 extract_interface_info ()
7406 /* Return a new COMPOUND_STMT, after adding it to the current
7407 statement tree. */
7409 tree
7410 c_begin_compound_stmt ()
7412 tree stmt;
7414 /* Create the COMPOUND_STMT. */
7415 stmt = add_stmt (build_stmt (COMPOUND_STMT, NULL_TREE));
7417 return stmt;
7420 /* Expand T (a DECL_STMT) if it declares an entity not handled by the
7421 common code. */
7423 void
7424 c_expand_decl_stmt (t)
7425 tree t;
7427 tree decl = DECL_STMT_DECL (t);
7429 /* Expand nested functions. */
7430 if (TREE_CODE (decl) == FUNCTION_DECL
7431 && DECL_CONTEXT (decl) == current_function_decl
7432 && DECL_SAVED_TREE (decl))
7433 c_expand_body (decl, /*nested_p=*/1, /*can_defer_p=*/0);
7436 /* Return the IDENTIFIER_GLOBAL_VALUE of T, for use in common code, since
7437 the definition of IDENTIFIER_GLOBAL_VALUE is different for C and C++. */
7439 tree
7440 identifier_global_value (t)
7441 tree t;
7443 return IDENTIFIER_GLOBAL_VALUE (t);
7446 /* Record a builtin type for C. If NAME is non-NULL, it is the name used;
7447 otherwise the name is found in ridpointers from RID_INDEX. */
7449 void
7450 record_builtin_type (rid_index, name, type)
7451 enum rid rid_index;
7452 const char *name;
7453 tree type;
7455 tree id;
7456 if (name == 0)
7457 id = ridpointers[(int) rid_index];
7458 else
7459 id = get_identifier (name);
7460 pushdecl (build_decl (TYPE_DECL, id, type));
7463 /* Build the void_list_node (void_type_node having been created). */
7464 tree
7465 build_void_list_node ()
7467 tree t = build_tree_list (NULL_TREE, void_type_node);
7468 return t;