Daily bump.
[official-gcc.git] / gcc / c-decl.c
bloba851ed99360080e9c6a0bd4193db147b27b3d0d9
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"
49 #include "c-pragma.h"
51 /* In grokdeclarator, distinguish syntactic contexts of declarators. */
52 enum decl_context
53 { NORMAL, /* Ordinary declaration */
54 FUNCDEF, /* Function definition */
55 PARM, /* Declaration of parm before function body */
56 FIELD, /* Declaration inside struct or union */
57 BITFIELD, /* Likewise but with specified width */
58 TYPENAME}; /* Typename (inside cast or sizeof) */
61 /* Nonzero if we have seen an invalid cross reference
62 to a struct, union, or enum, but not yet printed the message. */
64 tree pending_invalid_xref;
65 /* File and line to appear in the eventual error message. */
66 const char *pending_invalid_xref_file;
67 int pending_invalid_xref_line;
69 /* While defining an enum type, this is 1 plus the last enumerator
70 constant value. Note that will do not have to save this or `enum_overflow'
71 around nested function definition since such a definition could only
72 occur in an enum value expression and we don't use these variables in
73 that case. */
75 static tree enum_next_value;
77 /* Nonzero means that there was overflow computing enum_next_value. */
79 static int enum_overflow;
81 /* Parsing a function declarator leaves a list of parameter names
82 or a chain or parameter decls here. */
84 static tree last_function_parms;
86 /* Parsing a function declarator leaves here a chain of structure
87 and enum types declared in the parmlist. */
89 static tree last_function_parm_tags;
91 /* After parsing the declarator that starts a function definition,
92 `start_function' puts here the list of parameter names or chain of decls.
93 `store_parm_decls' finds it here. */
95 static tree current_function_parms;
97 /* Similar, for last_function_parm_tags. */
98 static tree current_function_parm_tags;
100 /* Similar, for the file and line that the prototype came from if this is
101 an old-style definition. */
102 static const char *current_function_prototype_file;
103 static int current_function_prototype_line;
105 /* The current statement tree. */
107 static struct stmt_tree_s c_stmt_tree;
109 /* The current scope statement stack. */
111 static tree c_scope_stmt_stack;
113 /* A list (chain of TREE_LIST nodes) of all LABEL_DECLs in the function
114 that have names. Here so we can clear out their names' definitions
115 at the end of the function. */
117 static tree named_labels;
119 /* A list of LABEL_DECLs from outer contexts that are currently shadowed. */
121 static tree shadowed_labels;
123 /* Nonzero when store_parm_decls is called indicates a varargs function.
124 Value not meaningful after store_parm_decls. */
126 static int c_function_varargs;
128 /* Set to 0 at beginning of a function definition, set to 1 if
129 a return statement that specifies a return value is seen. */
131 int current_function_returns_value;
133 /* Set to 0 at beginning of a function definition, set to 1 if
134 a return statement with no argument is seen. */
136 int current_function_returns_null;
138 /* Set to 0 at beginning of a function definition, set to 1 if
139 a call to a noreturn function is seen. */
141 int current_function_returns_abnormally;
143 /* Set to nonzero by `grokdeclarator' for a function
144 whose return type is defaulted, if warnings for this are desired. */
146 static int warn_about_return_type;
148 /* Nonzero when starting a function declared `extern inline'. */
150 static int current_extern_inline;
152 /* For each binding contour we allocate a binding_level structure
153 * which records the names defined in that contour.
154 * Contours include:
155 * 0) the global one
156 * 1) one for each function definition,
157 * where internal declarations of the parameters appear.
158 * 2) one for each compound statement,
159 * to record its declarations.
161 * The current meaning of a name can be found by searching the levels from
162 * the current one out to the global one.
165 /* Note that the information in the `names' component of the global contour
166 is duplicated in the IDENTIFIER_GLOBAL_VALUEs of all identifiers. */
168 struct binding_level
170 /* A chain of _DECL nodes for all variables, constants, functions,
171 and typedef types. These are in the reverse of the order supplied.
173 tree names;
175 /* A list of structure, union and enum definitions,
176 * for looking up tag names.
177 * It is a chain of TREE_LIST nodes, each of whose TREE_PURPOSE is a name,
178 * or NULL_TREE; and whose TREE_VALUE is a RECORD_TYPE, UNION_TYPE,
179 * or ENUMERAL_TYPE node.
181 tree tags;
183 /* For each level, a list of shadowed outer-level local definitions
184 to be restored when this level is popped.
185 Each link is a TREE_LIST whose TREE_PURPOSE is an identifier and
186 whose TREE_VALUE is its old definition (a kind of ..._DECL node). */
187 tree shadowed;
189 /* For each level (except not the global one),
190 a chain of BLOCK nodes for all the levels
191 that were entered and exited one level down. */
192 tree blocks;
194 /* The BLOCK node for this level, if one has been preallocated.
195 If 0, the BLOCK is allocated (if needed) when the level is popped. */
196 tree this_block;
198 /* The binding level which this one is contained in (inherits from). */
199 struct binding_level *level_chain;
201 /* Nonzero for the level that holds the parameters of a function. */
202 char parm_flag;
204 /* Nonzero if this level "doesn't exist" for tags. */
205 char tag_transparent;
207 /* Nonzero if sublevels of this level "don't exist" for tags.
208 This is set in the parm level of a function definition
209 while reading the function body, so that the outermost block
210 of the function body will be tag-transparent. */
211 char subblocks_tag_transparent;
213 /* Nonzero means make a BLOCK for this level regardless of all else. */
214 char keep;
216 /* Nonzero means make a BLOCK if this level has any subblocks. */
217 char keep_if_subblocks;
219 /* Number of decls in `names' that have incomplete
220 structure or union types. */
221 int n_incomplete;
223 /* A list of decls giving the (reversed) specified order of parms,
224 not including any forward-decls in the parmlist.
225 This is so we can put the parms in proper order for assign_parms. */
226 tree parm_order;
229 #define NULL_BINDING_LEVEL (struct binding_level *) NULL
231 /* The binding level currently in effect. */
233 static struct binding_level *current_binding_level;
235 /* A chain of binding_level structures awaiting reuse. */
237 static struct binding_level *free_binding_level;
239 /* The outermost binding level, for names of file scope.
240 This is created when the compiler is started and exists
241 through the entire run. */
243 static struct binding_level *global_binding_level;
245 /* Binding level structures are initialized by copying this one. */
247 static struct binding_level clear_binding_level
248 = {NULL, NULL, NULL, NULL, NULL, NULL_BINDING_LEVEL, 0, 0, 0, 0, 0, 0,
249 NULL};
251 /* Nonzero means unconditionally make a BLOCK for the next level pushed. */
253 static int keep_next_level_flag;
255 /* Nonzero means make a BLOCK for the next level pushed
256 if it has subblocks. */
258 static int keep_next_if_subblocks;
260 /* The chain of outer levels of label scopes.
261 This uses the same data structure used for binding levels,
262 but it works differently: each link in the chain records
263 saved values of named_labels and shadowed_labels for
264 a label binding level outside the current one. */
266 static struct binding_level *label_level_chain;
268 /* Functions called automatically at the beginning and end of execution. */
270 tree static_ctors, static_dtors;
272 /* Forward declarations. */
274 static struct binding_level * make_binding_level PARAMS ((void));
275 static void mark_binding_level PARAMS ((void *));
276 static void clear_limbo_values PARAMS ((tree));
277 static int duplicate_decls PARAMS ((tree, tree, int));
278 static int redeclaration_error_message PARAMS ((tree, tree));
279 static void storedecls PARAMS ((tree));
280 static void storetags PARAMS ((tree));
281 static tree lookup_tag PARAMS ((enum tree_code, tree,
282 struct binding_level *, int));
283 static tree lookup_tag_reverse PARAMS ((tree));
284 static tree grokdeclarator PARAMS ((tree, tree, enum decl_context,
285 int));
286 static tree grokparms PARAMS ((tree, int));
287 static void layout_array_type PARAMS ((tree));
288 static tree c_make_fname_decl PARAMS ((tree, int));
289 static void c_expand_body PARAMS ((tree, int, int));
290 static void warn_if_shadowing PARAMS ((tree, tree));
292 /* C-specific option variables. */
294 /* Nonzero means allow type mismatches in conditional expressions;
295 just make their values `void'. */
297 int flag_cond_mismatch;
299 /* Nonzero means don't recognize the keyword `asm'. */
301 int flag_no_asm;
303 /* Nonzero means do some things the same way PCC does. */
305 int flag_traditional;
307 /* Nonzero means enable C89 Amendment 1 features. */
309 int flag_isoc94 = 0;
311 /* Nonzero means use the ISO C99 dialect of C. */
313 int flag_isoc99 = 0;
315 /* Nonzero means that we have builtin functions, and main is an int */
317 int flag_hosted = 1;
319 /* Nonzero means add default format_arg attributes for functions not
320 in ISO C. */
322 int flag_noniso_default_format_attributes = 1;
324 /* Nonzero means to allow single precision math even if we're generally
325 being traditional. */
326 int flag_allow_single_precision = 0;
328 /* Nonzero means to treat bitfields as signed unless they say `unsigned'. */
330 int flag_signed_bitfields = 1;
331 int explicit_flag_signed_bitfields = 0;
333 /* Nonzero means warn about use of implicit int. */
335 int warn_implicit_int;
337 /* Nonzero means warn about usage of long long when `-pedantic'. */
339 int warn_long_long = 1;
341 /* Nonzero means message about use of implicit function declarations;
342 1 means warning; 2 means error. */
344 int mesg_implicit_function_declaration = -1;
346 /* Nonzero means give string constants the type `const char *'
347 to get extra warnings from them. These warnings will be too numerous
348 to be useful, except in thoroughly ANSIfied programs. */
350 int flag_const_strings;
352 /* Nonzero means warn about pointer casts that can drop a type qualifier
353 from the pointer target type. */
355 int warn_cast_qual;
357 /* Nonzero means warn when casting a function call to a type that does
358 not match the return type (e.g. (float)sqrt() or (anything*)malloc()
359 when there is no previous declaration of sqrt or malloc. */
361 int warn_bad_function_cast;
363 /* Warn about functions which might be candidates for format attributes. */
365 int warn_missing_format_attribute;
367 /* Warn about traditional constructs whose meanings changed in ANSI C. */
369 int warn_traditional;
371 /* Nonzero means warn about sizeof(function) or addition/subtraction
372 of function pointers. */
374 int warn_pointer_arith;
376 /* Nonzero means warn for non-prototype function decls
377 or non-prototyped defs without previous prototype. */
379 int warn_strict_prototypes;
381 /* Nonzero means warn for any global function def
382 without separate previous prototype decl. */
384 int warn_missing_prototypes;
386 /* Nonzero means warn for any global function def
387 without separate previous decl. */
389 int warn_missing_declarations;
391 /* Nonzero means warn about multiple (redundant) decls for the same single
392 variable or function. */
394 int warn_redundant_decls = 0;
396 /* Nonzero means warn about extern declarations of objects not at
397 file-scope level and about *all* declarations of functions (whether
398 extern or static) not at file-scope level. Note that we exclude
399 implicit function declarations. To get warnings about those, use
400 -Wimplicit. */
402 int warn_nested_externs = 0;
404 /* Warn about a subscript that has type char. */
406 int warn_char_subscripts = 0;
408 /* Warn if a type conversion is done that might have confusing results. */
410 int warn_conversion;
412 /* Warn if adding () is suggested. */
414 int warn_parentheses;
416 /* Warn if initializer is not completely bracketed. */
418 int warn_missing_braces;
420 /* Warn if main is suspicious. */
422 int warn_main;
424 /* Warn about #pragma directives that are not recognised. */
426 int warn_unknown_pragmas = 0; /* Tri state variable. */
428 /* Warn about comparison of signed and unsigned values.
429 If -1, neither -Wsign-compare nor -Wno-sign-compare has been specified. */
431 int warn_sign_compare = -1;
433 /* Warn about testing equality of floating point numbers. */
435 int warn_float_equal = 0;
437 /* Nonzero means warn about use of multicharacter literals. */
439 int warn_multichar = 1;
441 /* Nonzero means `$' can be in an identifier. */
443 #ifndef DOLLARS_IN_IDENTIFIERS
444 #define DOLLARS_IN_IDENTIFIERS 1
445 #endif
446 int dollars_in_ident = DOLLARS_IN_IDENTIFIERS;
448 /* States indicating how grokdeclarator() should handle declspecs marked
449 with __attribute__((deprecated)). An object declared as
450 __attribute__((deprecated)) suppresses warnings of uses of other
451 deprecated items. */
453 enum deprecated_states {
454 DEPRECATED_NORMAL,
455 DEPRECATED_SUPPRESS
458 static enum deprecated_states deprecated_state = DEPRECATED_NORMAL;
460 /* Decode the string P as a language-specific option for C.
461 Return the number of strings consumed. Should not complain
462 if it does not recognise the option. */
465 c_decode_option (argc, argv)
466 int argc ATTRIBUTE_UNUSED;
467 char **argv;
469 int strings_processed;
470 char *p = argv[0];
472 strings_processed = cpp_handle_option (parse_in, argc, argv, 0);
474 if (!strcmp (p, "-ftraditional") || !strcmp (p, "-traditional"))
476 warning ("-traditional is deprecated and may be removed");
477 flag_traditional = 1;
478 flag_writable_strings = 1;
480 else if (!strcmp (p, "-fallow-single-precision"))
481 flag_allow_single_precision = 1;
482 else if (!strcmp (p, "-fhosted") || !strcmp (p, "-fno-freestanding"))
484 flag_hosted = 1;
485 flag_no_builtin = 0;
487 else if (!strcmp (p, "-ffreestanding") || !strcmp (p, "-fno-hosted"))
489 flag_hosted = 0;
490 flag_no_builtin = 1;
491 /* warn_main will be 2 if set by -Wall, 1 if set by -Wmain */
492 if (warn_main == 2)
493 warn_main = 0;
495 else if (!strcmp (p, "-fnotraditional") || !strcmp (p, "-fno-traditional"))
497 flag_traditional = 0;
498 flag_writable_strings = 0;
500 else if (!strncmp (p, "-std=", 5))
502 /* Select the appropriate language standard. We currently
503 recognize:
504 -std=iso9899:1990 same as -ansi
505 -std=iso9899:199409 ISO C as modified in amend. 1
506 -std=iso9899:1999 ISO C 99
507 -std=c89 same as -std=iso9899:1990
508 -std=c99 same as -std=iso9899:1999
509 -std=gnu89 default, iso9899:1990 + gnu extensions
510 -std=gnu99 iso9899:1999 + gnu extensions
512 const char *const argstart = &p[5];
514 if (!strcmp (argstart, "iso9899:1990")
515 || !strcmp (argstart, "c89"))
517 iso_1990:
518 flag_isoc94 = 0;
519 iso_1994:
520 flag_traditional = 0;
521 flag_writable_strings = 0;
522 flag_no_asm = 1;
523 flag_no_nonansi_builtin = 1;
524 flag_noniso_default_format_attributes = 0;
525 flag_isoc99 = 0;
527 else if (!strcmp (argstart, "iso9899:199409"))
529 flag_isoc94 = 1;
530 goto iso_1994;
532 else if (!strcmp (argstart, "iso9899:199x")
533 || !strcmp (argstart, "iso9899:1999")
534 || !strcmp (argstart, "c9x")
535 || !strcmp (argstart, "c99"))
537 flag_traditional = 0;
538 flag_writable_strings = 0;
539 flag_no_asm = 1;
540 flag_no_nonansi_builtin = 1;
541 flag_noniso_default_format_attributes = 0;
542 flag_isoc99 = 1;
543 flag_isoc94 = 1;
545 else if (!strcmp (argstart, "gnu89"))
547 flag_traditional = 0;
548 flag_writable_strings = 0;
549 flag_no_asm = 0;
550 flag_no_nonansi_builtin = 0;
551 flag_noniso_default_format_attributes = 1;
552 flag_isoc99 = 0;
553 flag_isoc94 = 0;
555 else if (!strcmp (argstart, "gnu9x") || !strcmp (argstart, "gnu99"))
557 flag_traditional = 0;
558 flag_writable_strings = 0;
559 flag_no_asm = 0;
560 flag_no_nonansi_builtin = 0;
561 flag_noniso_default_format_attributes = 1;
562 flag_isoc99 = 1;
563 flag_isoc94 = 1;
565 else
566 error ("unknown C standard `%s'", argstart);
568 else if (!strcmp (p, "-fdollars-in-identifiers"))
569 dollars_in_ident = 1;
570 else if (!strcmp (p, "-fno-dollars-in-identifiers"))
571 dollars_in_ident = 0;
572 else if (!strcmp (p, "-fsigned-char"))
573 flag_signed_char = 1;
574 else if (!strcmp (p, "-funsigned-char"))
575 flag_signed_char = 0;
576 else if (!strcmp (p, "-fno-signed-char"))
577 flag_signed_char = 0;
578 else if (!strcmp (p, "-fno-unsigned-char"))
579 flag_signed_char = 1;
580 else if (!strcmp (p, "-fsigned-bitfields")
581 || !strcmp (p, "-fno-unsigned-bitfields"))
583 flag_signed_bitfields = 1;
584 explicit_flag_signed_bitfields = 1;
586 else if (!strcmp (p, "-funsigned-bitfields")
587 || !strcmp (p, "-fno-signed-bitfields"))
589 flag_signed_bitfields = 0;
590 explicit_flag_signed_bitfields = 1;
592 else if (!strcmp (p, "-fshort-enums"))
593 flag_short_enums = 1;
594 else if (!strcmp (p, "-fno-short-enums"))
595 flag_short_enums = 0;
596 else if (!strcmp (p, "-fshort-wchar"))
597 flag_short_wchar = 1;
598 else if (!strcmp (p, "-fno-short-wchar"))
599 flag_short_wchar = 0;
600 else if (!strcmp (p, "-fcond-mismatch"))
601 flag_cond_mismatch = 1;
602 else if (!strcmp (p, "-fno-cond-mismatch"))
603 flag_cond_mismatch = 0;
604 else if (!strcmp (p, "-fshort-double"))
605 flag_short_double = 1;
606 else if (!strcmp (p, "-fno-short-double"))
607 flag_short_double = 0;
608 else if (!strcmp (p, "-fasm"))
609 flag_no_asm = 0;
610 else if (!strcmp (p, "-fno-asm"))
611 flag_no_asm = 1;
612 else if (!strcmp (p, "-fbuiltin"))
613 flag_no_builtin = 0;
614 else if (!strcmp (p, "-fno-builtin"))
615 flag_no_builtin = 1;
616 else if (!strncmp (p, "-fno-builtin-", strlen ("-fno-builtin-")))
617 disable_builtin_function (p + strlen ("-fno-builtin-"));
618 else if (p[0] == '-' && p[1] == 'f' && dump_switch_p (p + 2))
620 else if (!strcmp (p, "-ansi"))
621 goto iso_1990;
622 else if (!strcmp (p, "-Werror-implicit-function-declaration"))
623 mesg_implicit_function_declaration = 2;
624 else if (!strcmp (p, "-Wimplicit-function-declaration"))
625 mesg_implicit_function_declaration = 1;
626 else if (!strcmp (p, "-Wno-implicit-function-declaration"))
627 mesg_implicit_function_declaration = 0;
628 else if (!strcmp (p, "-Wimplicit-int"))
629 warn_implicit_int = 1;
630 else if (!strcmp (p, "-Wno-implicit-int"))
631 warn_implicit_int = 0;
632 else if (!strcmp (p, "-Wimplicit"))
634 warn_implicit_int = 1;
635 if (mesg_implicit_function_declaration != 2)
636 mesg_implicit_function_declaration = 1;
638 else if (!strcmp (p, "-Wno-implicit"))
639 warn_implicit_int = 0, mesg_implicit_function_declaration = 0;
640 else if (!strcmp (p, "-Wlong-long"))
641 warn_long_long = 1;
642 else if (!strcmp (p, "-Wno-long-long"))
643 warn_long_long = 0;
644 else if (!strcmp (p, "-Wwrite-strings"))
645 flag_const_strings = 1;
646 else if (!strcmp (p, "-Wno-write-strings"))
647 flag_const_strings = 0;
648 else if (!strcmp (p, "-Wcast-qual"))
649 warn_cast_qual = 1;
650 else if (!strcmp (p, "-Wno-cast-qual"))
651 warn_cast_qual = 0;
652 else if (!strcmp (p, "-Wbad-function-cast"))
653 warn_bad_function_cast = 1;
654 else if (!strcmp (p, "-Wno-bad-function-cast"))
655 warn_bad_function_cast = 0;
656 else if (!strcmp (p, "-Wno-missing-noreturn"))
657 warn_missing_noreturn = 0;
658 else if (!strcmp (p, "-Wmissing-format-attribute"))
659 warn_missing_format_attribute = 1;
660 else if (!strcmp (p, "-Wno-missing-format-attribute"))
661 warn_missing_format_attribute = 0;
662 else if (!strcmp (p, "-Wpointer-arith"))
663 warn_pointer_arith = 1;
664 else if (!strcmp (p, "-Wno-pointer-arith"))
665 warn_pointer_arith = 0;
666 else if (!strcmp (p, "-Wstrict-prototypes"))
667 warn_strict_prototypes = 1;
668 else if (!strcmp (p, "-Wno-strict-prototypes"))
669 warn_strict_prototypes = 0;
670 else if (!strcmp (p, "-Wmissing-prototypes"))
671 warn_missing_prototypes = 1;
672 else if (!strcmp (p, "-Wno-missing-prototypes"))
673 warn_missing_prototypes = 0;
674 else if (!strcmp (p, "-Wmissing-declarations"))
675 warn_missing_declarations = 1;
676 else if (!strcmp (p, "-Wno-missing-declarations"))
677 warn_missing_declarations = 0;
678 else if (!strcmp (p, "-Wredundant-decls"))
679 warn_redundant_decls = 1;
680 else if (!strcmp (p, "-Wno-redundant-decls"))
681 warn_redundant_decls = 0;
682 else if (!strcmp (p, "-Wnested-externs"))
683 warn_nested_externs = 1;
684 else if (!strcmp (p, "-Wno-nested-externs"))
685 warn_nested_externs = 0;
686 else if (!strcmp (p, "-Wtraditional"))
687 warn_traditional = 1;
688 else if (!strcmp (p, "-Wno-traditional"))
689 warn_traditional = 0;
690 else if (!strncmp (p, "-Wformat=", 9))
691 set_Wformat (atoi (p + 9));
692 else if (!strcmp (p, "-Wformat"))
693 set_Wformat (1);
694 else if (!strcmp (p, "-Wno-format"))
695 set_Wformat (0);
696 else if (!strcmp (p, "-Wformat-y2k"))
697 warn_format_y2k = 1;
698 else if (!strcmp (p, "-Wno-format-y2k"))
699 warn_format_y2k = 0;
700 else if (!strcmp (p, "-Wformat-extra-args"))
701 warn_format_extra_args = 1;
702 else if (!strcmp (p, "-Wno-format-extra-args"))
703 warn_format_extra_args = 0;
704 else if (!strcmp (p, "-Wformat-nonliteral"))
705 warn_format_nonliteral = 1;
706 else if (!strcmp (p, "-Wno-format-nonliteral"))
707 warn_format_nonliteral = 0;
708 else if (!strcmp (p, "-Wformat-security"))
709 warn_format_security = 1;
710 else if (!strcmp (p, "-Wno-format-security"))
711 warn_format_security = 0;
712 else if (!strcmp (p, "-Wchar-subscripts"))
713 warn_char_subscripts = 1;
714 else if (!strcmp (p, "-Wno-char-subscripts"))
715 warn_char_subscripts = 0;
716 else if (!strcmp (p, "-Wconversion"))
717 warn_conversion = 1;
718 else if (!strcmp (p, "-Wno-conversion"))
719 warn_conversion = 0;
720 else if (!strcmp (p, "-Wparentheses"))
721 warn_parentheses = 1;
722 else if (!strcmp (p, "-Wno-parentheses"))
723 warn_parentheses = 0;
724 else if (!strcmp (p, "-Wreturn-type"))
725 warn_return_type = 1;
726 else if (!strcmp (p, "-Wno-return-type"))
727 warn_return_type = 0;
728 else if (!strcmp (p, "-Wsequence-point"))
729 warn_sequence_point = 1;
730 else if (!strcmp (p, "-Wno-sequence-point"))
731 warn_sequence_point = 0;
732 else if (!strcmp (p, "-Wcomment"))
733 ; /* cpp handles this one. */
734 else if (!strcmp (p, "-Wno-comment"))
735 ; /* cpp handles this one. */
736 else if (!strcmp (p, "-Wcomments"))
737 ; /* cpp handles this one. */
738 else if (!strcmp (p, "-Wno-comments"))
739 ; /* cpp handles this one. */
740 else if (!strcmp (p, "-Wtrigraphs"))
741 ; /* cpp handles this one. */
742 else if (!strcmp (p, "-Wno-trigraphs"))
743 ; /* cpp handles this one. */
744 else if (!strcmp (p, "-Wundef"))
745 ; /* cpp handles this one. */
746 else if (!strcmp (p, "-Wno-undef"))
747 ; /* cpp handles this one. */
748 else if (!strcmp (p, "-Wimport"))
749 ; /* cpp handles this one. */
750 else if (!strcmp (p, "-Wno-import"))
751 ; /* cpp handles this one. */
752 else if (!strcmp (p, "-Wmissing-braces"))
753 warn_missing_braces = 1;
754 else if (!strcmp (p, "-Wno-missing-braces"))
755 warn_missing_braces = 0;
756 else if (!strcmp (p, "-Wmain"))
757 warn_main = 1;
758 else if (!strcmp (p, "-Wno-main"))
759 warn_main = -1;
760 else if (!strcmp (p, "-Wsign-compare"))
761 warn_sign_compare = 1;
762 else if (!strcmp (p, "-Wno-sign-compare"))
763 warn_sign_compare = 0;
764 else if (!strcmp (p, "-Wfloat-equal"))
765 warn_float_equal = 1;
766 else if (!strcmp (p, "-Wno-float-equal"))
767 warn_float_equal = 0;
768 else if (!strcmp (p, "-Wmultichar"))
769 warn_multichar = 1;
770 else if (!strcmp (p, "-Wno-multichar"))
771 warn_multichar = 0;
772 else if (!strcmp (p, "-Wdiv-by-zero"))
773 warn_div_by_zero = 1;
774 else if (!strcmp (p, "-Wno-div-by-zero"))
775 warn_div_by_zero = 0;
776 else if (!strcmp (p, "-Wunknown-pragmas"))
777 /* Set to greater than 1, so that even unknown pragmas in system
778 headers will be warned about. */
779 warn_unknown_pragmas = 2;
780 else if (!strcmp (p, "-Wno-unknown-pragmas"))
781 warn_unknown_pragmas = 0;
782 else if (!strcmp (p, "-Wall"))
784 /* We save the value of warn_uninitialized, since if they put
785 -Wuninitialized on the command line, we need to generate a
786 warning about not using it without also specifying -O. */
787 if (warn_uninitialized != 1)
788 warn_uninitialized = 2;
789 warn_implicit_int = 1;
790 mesg_implicit_function_declaration = 1;
791 warn_return_type = 1;
792 set_Wunused (1);
793 warn_switch = 1;
794 set_Wformat (1);
795 warn_char_subscripts = 1;
796 warn_parentheses = 1;
797 warn_sequence_point = 1;
798 warn_missing_braces = 1;
799 /* We set this to 2 here, but 1 in -Wmain, so -ffreestanding can turn
800 it off only if it's not explicit. */
801 warn_main = 2;
802 /* Only warn about unknown pragmas that are not in system headers. */
803 warn_unknown_pragmas = 1;
805 else
806 return strings_processed;
808 return 1;
811 void
812 c_print_identifier (file, node, indent)
813 FILE *file;
814 tree node;
815 int indent;
817 print_node (file, "global", IDENTIFIER_GLOBAL_VALUE (node), indent + 4);
818 print_node (file, "local", IDENTIFIER_LOCAL_VALUE (node), indent + 4);
819 print_node (file, "label", IDENTIFIER_LABEL_VALUE (node), indent + 4);
820 print_node (file, "implicit", IDENTIFIER_IMPLICIT_DECL (node), indent + 4);
821 print_node (file, "error locus", IDENTIFIER_ERROR_LOCUS (node), indent + 4);
822 print_node (file, "limbo value", IDENTIFIER_LIMBO_VALUE (node), indent + 4);
823 if (C_IS_RESERVED_WORD (node))
825 tree rid = ridpointers[C_RID_CODE (node)];
826 indent_to (file, indent + 4);
827 fprintf (file, "rid ");
828 fprintf (file, HOST_PTR_PRINTF, (void *)rid);
829 fprintf (file, " \"%s\"", IDENTIFIER_POINTER (rid));
833 /* Hook called at end of compilation to assume 1 elt
834 for a top-level tentative array defn that wasn't complete before. */
836 void
837 finish_incomplete_decl (decl)
838 tree decl;
840 if (TREE_CODE (decl) == VAR_DECL)
842 tree type = TREE_TYPE (decl);
843 if (type != error_mark_node
844 && TREE_CODE (type) == ARRAY_TYPE
845 && ! DECL_EXTERNAL (decl)
846 && TYPE_DOMAIN (type) == 0)
848 warning_with_decl (decl, "array `%s' assumed to have one element");
850 complete_array_type (type, NULL_TREE, 1);
852 layout_decl (decl, 0);
857 /* Create a new `struct binding_level'. */
859 static struct binding_level *
860 make_binding_level ()
862 /* NOSTRICT */
863 return (struct binding_level *) xmalloc (sizeof (struct binding_level));
866 /* Nonzero if we are currently in the global binding level. */
869 global_bindings_p ()
871 return current_binding_level == global_binding_level;
874 void
875 keep_next_level ()
877 keep_next_level_flag = 1;
880 /* Nonzero if the current level needs to have a BLOCK made. */
883 kept_level_p ()
885 return ((current_binding_level->keep_if_subblocks
886 && current_binding_level->blocks != 0)
887 || current_binding_level->keep
888 || current_binding_level->names != 0
889 || (current_binding_level->tags != 0
890 && !current_binding_level->tag_transparent));
893 /* Identify this binding level as a level of parameters.
894 DEFINITION_FLAG is 1 for a definition, 0 for a declaration.
895 But it turns out there is no way to pass the right value for
896 DEFINITION_FLAG, so we ignore it. */
898 void
899 declare_parm_level (definition_flag)
900 int definition_flag ATTRIBUTE_UNUSED;
902 current_binding_level->parm_flag = 1;
905 /* Nonzero if currently making parm declarations. */
908 in_parm_level_p ()
910 return current_binding_level->parm_flag;
913 /* Enter a new binding level.
914 If TAG_TRANSPARENT is nonzero, do so only for the name space of variables,
915 not for that of tags. */
917 void
918 pushlevel (tag_transparent)
919 int tag_transparent;
921 struct binding_level *newlevel = NULL_BINDING_LEVEL;
923 /* If this is the top level of a function,
924 just make sure that NAMED_LABELS is 0. */
926 if (current_binding_level == global_binding_level)
928 named_labels = 0;
931 /* Reuse or create a struct for this binding level. */
933 if (free_binding_level)
935 newlevel = free_binding_level;
936 free_binding_level = free_binding_level->level_chain;
938 else
940 newlevel = make_binding_level ();
943 /* Add this level to the front of the chain (stack) of levels that
944 are active. */
946 *newlevel = clear_binding_level;
947 newlevel->tag_transparent
948 = (tag_transparent
949 || (current_binding_level
950 ? current_binding_level->subblocks_tag_transparent
951 : 0));
952 newlevel->level_chain = current_binding_level;
953 current_binding_level = newlevel;
954 newlevel->keep = keep_next_level_flag;
955 keep_next_level_flag = 0;
956 newlevel->keep_if_subblocks = keep_next_if_subblocks;
957 keep_next_if_subblocks = 0;
960 /* Clear the limbo values of all identifiers defined in BLOCK or a subblock. */
962 static void
963 clear_limbo_values (block)
964 tree block;
966 tree tem;
968 for (tem = BLOCK_VARS (block); tem; tem = TREE_CHAIN (tem))
969 if (DECL_NAME (tem) != 0)
970 IDENTIFIER_LIMBO_VALUE (DECL_NAME (tem)) = 0;
972 for (tem = BLOCK_SUBBLOCKS (block); tem; tem = TREE_CHAIN (tem))
973 clear_limbo_values (tem);
976 /* Exit a binding level.
977 Pop the level off, and restore the state of the identifier-decl mappings
978 that were in effect when this level was entered.
980 If KEEP is nonzero, this level had explicit declarations, so
981 and create a "block" (a BLOCK node) for the level
982 to record its declarations and subblocks for symbol table output.
984 If FUNCTIONBODY is nonzero, this level is the body of a function,
985 so create a block as if KEEP were set and also clear out all
986 label names.
988 If REVERSE is nonzero, reverse the order of decls before putting
989 them into the BLOCK. */
991 tree
992 poplevel (keep, reverse, functionbody)
993 int keep;
994 int reverse;
995 int functionbody;
997 tree link;
998 /* The chain of decls was accumulated in reverse order.
999 Put it into forward order, just for cleanliness. */
1000 tree decls;
1001 tree tags = current_binding_level->tags;
1002 tree subblocks = current_binding_level->blocks;
1003 tree block = 0;
1004 tree decl;
1005 int block_previously_created;
1007 keep |= current_binding_level->keep;
1009 /* This warning is turned off because it causes warnings for
1010 declarations like `extern struct foo *x'. */
1011 #if 0
1012 /* Warn about incomplete structure types in this level. */
1013 for (link = tags; link; link = TREE_CHAIN (link))
1014 if (!COMPLETE_TYPE_P (TREE_VALUE (link)))
1016 tree type = TREE_VALUE (link);
1017 tree type_name = TYPE_NAME (type);
1018 char *id = IDENTIFIER_POINTER (TREE_CODE (type_name) == IDENTIFIER_NODE
1019 ? type_name
1020 : DECL_NAME (type_name));
1021 switch (TREE_CODE (type))
1023 case RECORD_TYPE:
1024 error ("`struct %s' incomplete in scope ending here", id);
1025 break;
1026 case UNION_TYPE:
1027 error ("`union %s' incomplete in scope ending here", id);
1028 break;
1029 case ENUMERAL_TYPE:
1030 error ("`enum %s' incomplete in scope ending here", id);
1031 break;
1034 #endif /* 0 */
1036 /* Get the decls in the order they were written.
1037 Usually current_binding_level->names is in reverse order.
1038 But parameter decls were previously put in forward order. */
1040 if (reverse)
1041 current_binding_level->names
1042 = decls = nreverse (current_binding_level->names);
1043 else
1044 decls = current_binding_level->names;
1046 /* Output any nested inline functions within this block
1047 if they weren't already output. */
1049 for (decl = decls; decl; decl = TREE_CHAIN (decl))
1050 if (TREE_CODE (decl) == FUNCTION_DECL
1051 && ! TREE_ASM_WRITTEN (decl)
1052 && DECL_INITIAL (decl) != 0
1053 && TREE_ADDRESSABLE (decl))
1055 /* If this decl was copied from a file-scope decl
1056 on account of a block-scope extern decl,
1057 propagate TREE_ADDRESSABLE to the file-scope decl.
1059 DECL_ABSTRACT_ORIGIN can be set to itself if warn_return_type is
1060 true, since then the decl goes through save_for_inline_copying. */
1061 if (DECL_ABSTRACT_ORIGIN (decl) != 0
1062 && DECL_ABSTRACT_ORIGIN (decl) != decl)
1063 TREE_ADDRESSABLE (DECL_ABSTRACT_ORIGIN (decl)) = 1;
1066 /* We used to warn about unused variables in expand_end_bindings,
1067 i.e. while generating RTL. But in function-at-a-time mode we may
1068 choose to never expand a function at all (e.g. auto inlining), so
1069 we do this explicitly now. */
1070 warn_about_unused_variables (getdecls ());
1072 /* If there were any declarations or structure tags in that level,
1073 or if this level is a function body,
1074 create a BLOCK to record them for the life of this function. */
1076 block = 0;
1077 block_previously_created = (current_binding_level->this_block != 0);
1078 if (block_previously_created)
1079 block = current_binding_level->this_block;
1080 else if (keep || functionbody
1081 || (current_binding_level->keep_if_subblocks && subblocks != 0))
1082 block = make_node (BLOCK);
1083 if (block != 0)
1085 BLOCK_VARS (block) = decls;
1086 BLOCK_SUBBLOCKS (block) = subblocks;
1089 /* In each subblock, record that this is its superior. */
1091 for (link = subblocks; link; link = TREE_CHAIN (link))
1092 BLOCK_SUPERCONTEXT (link) = block;
1094 /* Clear out the meanings of the local variables of this level. */
1096 for (link = decls; link; link = TREE_CHAIN (link))
1098 if (DECL_NAME (link) != 0)
1100 /* If the ident. was used or addressed via a local extern decl,
1101 don't forget that fact. */
1102 if (DECL_EXTERNAL (link))
1104 if (TREE_USED (link))
1105 TREE_USED (DECL_NAME (link)) = 1;
1106 if (TREE_ADDRESSABLE (link))
1107 TREE_ADDRESSABLE (DECL_ASSEMBLER_NAME (link)) = 1;
1109 IDENTIFIER_LOCAL_VALUE (DECL_NAME (link)) = 0;
1113 /* Restore all name-meanings of the outer levels
1114 that were shadowed by this level. */
1116 for (link = current_binding_level->shadowed; link; link = TREE_CHAIN (link))
1117 IDENTIFIER_LOCAL_VALUE (TREE_PURPOSE (link)) = TREE_VALUE (link);
1119 /* If the level being exited is the top level of a function,
1120 check over all the labels, and clear out the current
1121 (function local) meanings of their names. */
1123 if (functionbody)
1125 clear_limbo_values (block);
1127 /* If this is the top level block of a function,
1128 the vars are the function's parameters.
1129 Don't leave them in the BLOCK because they are
1130 found in the FUNCTION_DECL instead. */
1132 BLOCK_VARS (block) = 0;
1134 /* Clear out the definitions of all label names,
1135 since their scopes end here,
1136 and add them to BLOCK_VARS. */
1138 for (link = named_labels; link; link = TREE_CHAIN (link))
1140 tree label = TREE_VALUE (link);
1142 if (DECL_INITIAL (label) == 0)
1144 error_with_decl (label, "label `%s' used but not defined");
1145 /* Avoid crashing later. */
1146 define_label (input_filename, lineno,
1147 DECL_NAME (label));
1149 else if (warn_unused_label && !TREE_USED (label))
1150 warning_with_decl (label, "label `%s' defined but not used");
1151 IDENTIFIER_LABEL_VALUE (DECL_NAME (label)) = 0;
1153 /* Put the labels into the "variables" of the
1154 top-level block, so debugger can see them. */
1155 TREE_CHAIN (label) = BLOCK_VARS (block);
1156 BLOCK_VARS (block) = label;
1160 /* Pop the current level, and free the structure for reuse. */
1163 struct binding_level *level = current_binding_level;
1164 current_binding_level = current_binding_level->level_chain;
1166 level->level_chain = free_binding_level;
1167 free_binding_level = level;
1170 /* Dispose of the block that we just made inside some higher level. */
1171 if (functionbody)
1172 DECL_INITIAL (current_function_decl) = block;
1173 else if (block)
1175 if (!block_previously_created)
1176 current_binding_level->blocks
1177 = chainon (current_binding_level->blocks, block);
1179 /* If we did not make a block for the level just exited,
1180 any blocks made for inner levels
1181 (since they cannot be recorded as subblocks in that level)
1182 must be carried forward so they will later become subblocks
1183 of something else. */
1184 else if (subblocks)
1185 current_binding_level->blocks
1186 = chainon (current_binding_level->blocks, subblocks);
1188 /* Set the TYPE_CONTEXTs for all of the tagged types belonging to this
1189 binding contour so that they point to the appropriate construct, i.e.
1190 either to the current FUNCTION_DECL node, or else to the BLOCK node
1191 we just constructed.
1193 Note that for tagged types whose scope is just the formal parameter
1194 list for some function type specification, we can't properly set
1195 their TYPE_CONTEXTs here, because we don't have a pointer to the
1196 appropriate FUNCTION_TYPE node readily available to us. For those
1197 cases, the TYPE_CONTEXTs of the relevant tagged type nodes get set
1198 in `grokdeclarator' as soon as we have created the FUNCTION_TYPE
1199 node which will represent the "scope" for these "parameter list local"
1200 tagged types. */
1202 if (functionbody)
1203 for (link = tags; link; link = TREE_CHAIN (link))
1204 TYPE_CONTEXT (TREE_VALUE (link)) = current_function_decl;
1205 else if (block)
1206 for (link = tags; link; link = TREE_CHAIN (link))
1207 TYPE_CONTEXT (TREE_VALUE (link)) = block;
1209 if (block)
1210 TREE_USED (block) = 1;
1212 return block;
1215 /* Insert BLOCK at the end of the list of subblocks of the
1216 current binding level. This is used when a BIND_EXPR is expanded,
1217 to handle the BLOCK node inside the BIND_EXPR. */
1219 void
1220 insert_block (block)
1221 tree block;
1223 TREE_USED (block) = 1;
1224 current_binding_level->blocks
1225 = chainon (current_binding_level->blocks, block);
1228 /* Set the BLOCK node for the innermost scope
1229 (the one we are currently in). */
1231 void
1232 set_block (block)
1233 tree block;
1235 current_binding_level->this_block = block;
1236 current_binding_level->names = chainon (current_binding_level->names,
1237 BLOCK_VARS (block));
1238 current_binding_level->blocks = chainon (current_binding_level->blocks,
1239 BLOCK_SUBBLOCKS (block));
1242 void
1243 push_label_level ()
1245 struct binding_level *newlevel;
1247 /* Reuse or create a struct for this binding level. */
1249 if (free_binding_level)
1251 newlevel = free_binding_level;
1252 free_binding_level = free_binding_level->level_chain;
1254 else
1256 newlevel = make_binding_level ();
1259 /* Add this level to the front of the chain (stack) of label levels. */
1261 newlevel->level_chain = label_level_chain;
1262 label_level_chain = newlevel;
1264 newlevel->names = named_labels;
1265 newlevel->shadowed = shadowed_labels;
1266 named_labels = 0;
1267 shadowed_labels = 0;
1270 void
1271 pop_label_level ()
1273 struct binding_level *level = label_level_chain;
1274 tree link, prev;
1276 /* Clear out the definitions of the declared labels in this level.
1277 Leave in the list any ordinary, non-declared labels. */
1278 for (link = named_labels, prev = 0; link;)
1280 if (C_DECLARED_LABEL_FLAG (TREE_VALUE (link)))
1282 if (DECL_SOURCE_LINE (TREE_VALUE (link)) == 0)
1284 error_with_decl (TREE_VALUE (link),
1285 "label `%s' used but not defined");
1286 /* Avoid crashing later. */
1287 define_label (input_filename, lineno,
1288 DECL_NAME (TREE_VALUE (link)));
1290 else if (warn_unused_label && !TREE_USED (TREE_VALUE (link)))
1291 warning_with_decl (TREE_VALUE (link),
1292 "label `%s' defined but not used");
1293 IDENTIFIER_LABEL_VALUE (DECL_NAME (TREE_VALUE (link))) = 0;
1295 /* Delete this element from the list. */
1296 link = TREE_CHAIN (link);
1297 if (prev)
1298 TREE_CHAIN (prev) = link;
1299 else
1300 named_labels = link;
1302 else
1304 prev = link;
1305 link = TREE_CHAIN (link);
1309 /* Bring back all the labels that were shadowed. */
1310 for (link = shadowed_labels; link; link = TREE_CHAIN (link))
1311 if (DECL_NAME (TREE_VALUE (link)) != 0)
1312 IDENTIFIER_LABEL_VALUE (DECL_NAME (TREE_VALUE (link)))
1313 = TREE_VALUE (link);
1315 named_labels = chainon (named_labels, level->names);
1316 shadowed_labels = level->shadowed;
1318 /* Pop the current level, and free the structure for reuse. */
1319 label_level_chain = label_level_chain->level_chain;
1320 level->level_chain = free_binding_level;
1321 free_binding_level = level;
1324 /* Push a definition or a declaration of struct, union or enum tag "name".
1325 "type" should be the type node.
1326 We assume that the tag "name" is not already defined.
1328 Note that the definition may really be just a forward reference.
1329 In that case, the TYPE_SIZE will be zero. */
1331 void
1332 pushtag (name, type)
1333 tree name, type;
1335 struct binding_level *b;
1337 /* Find the proper binding level for this type tag. */
1339 for (b = current_binding_level; b->tag_transparent; b = b->level_chain)
1340 continue;
1342 if (name)
1344 /* Record the identifier as the type's name if it has none. */
1346 if (TYPE_NAME (type) == 0)
1347 TYPE_NAME (type) = name;
1350 b->tags = tree_cons (name, type, b->tags);
1352 /* Create a fake NULL-named TYPE_DECL node whose TREE_TYPE will be the
1353 tagged type we just added to the current binding level. This fake
1354 NULL-named TYPE_DECL node helps dwarfout.c to know when it needs
1355 to output a representation of a tagged type, and it also gives
1356 us a convenient place to record the "scope start" address for the
1357 tagged type. */
1359 TYPE_STUB_DECL (type) = pushdecl (build_decl (TYPE_DECL, NULL_TREE, type));
1361 /* An approximation for now, so we can tell this is a function-scope tag.
1362 This will be updated in poplevel. */
1363 TYPE_CONTEXT (type) = DECL_CONTEXT (TYPE_STUB_DECL (type));
1366 /* Handle when a new declaration NEWDECL
1367 has the same name as an old one OLDDECL
1368 in the same binding contour.
1369 Prints an error message if appropriate.
1371 If safely possible, alter OLDDECL to look like NEWDECL, and return 1.
1372 Otherwise, return 0.
1374 When DIFFERENT_BINDING_LEVEL is true, NEWDECL is an external declaration,
1375 and OLDDECL is in an outer binding level and should thus not be changed. */
1377 static int
1378 duplicate_decls (newdecl, olddecl, different_binding_level)
1379 tree newdecl, olddecl;
1380 int different_binding_level;
1382 int types_match = comptypes (TREE_TYPE (newdecl), TREE_TYPE (olddecl));
1383 int new_is_definition = (TREE_CODE (newdecl) == FUNCTION_DECL
1384 && DECL_INITIAL (newdecl) != 0);
1385 tree oldtype = TREE_TYPE (olddecl);
1386 tree newtype = TREE_TYPE (newdecl);
1387 int errmsg = 0;
1389 if (DECL_P (olddecl))
1391 if (TREE_CODE (newdecl) == FUNCTION_DECL
1392 && TREE_CODE (olddecl) == FUNCTION_DECL
1393 && (DECL_UNINLINABLE (newdecl) || DECL_UNINLINABLE (olddecl)))
1395 if (DECL_DECLARED_INLINE_P (newdecl)
1396 && DECL_UNINLINABLE (newdecl)
1397 && lookup_attribute ("noinline", DECL_ATTRIBUTES (newdecl)))
1398 /* Already warned elsewhere. */;
1399 else if (DECL_DECLARED_INLINE_P (olddecl)
1400 && DECL_UNINLINABLE (olddecl)
1401 && lookup_attribute ("noinline", DECL_ATTRIBUTES (olddecl)))
1402 /* Already warned. */;
1403 else if (DECL_DECLARED_INLINE_P (newdecl)
1404 && ! DECL_DECLARED_INLINE_P (olddecl)
1405 && DECL_UNINLINABLE (olddecl)
1406 && lookup_attribute ("noinline", DECL_ATTRIBUTES (olddecl)))
1408 warning_with_decl (newdecl,
1409 "function `%s' redeclared as inline");
1410 warning_with_decl (olddecl,
1411 "previous declaration of function `%s' with attribute noinline");
1413 else if (DECL_DECLARED_INLINE_P (olddecl)
1414 && DECL_UNINLINABLE (newdecl)
1415 && lookup_attribute ("noinline", DECL_ATTRIBUTES (newdecl)))
1417 warning_with_decl (newdecl,
1418 "function `%s' redeclared with attribute noinline");
1419 warning_with_decl (olddecl,
1420 "previous declaration of function `%s' was inline");
1424 DECL_ATTRIBUTES (newdecl)
1425 = (*targetm.merge_decl_attributes) (olddecl, newdecl);
1428 if (TREE_CODE (newtype) == ERROR_MARK
1429 || TREE_CODE (oldtype) == ERROR_MARK)
1430 types_match = 0;
1432 /* New decl is completely inconsistent with the old one =>
1433 tell caller to replace the old one.
1434 This is always an error except in the case of shadowing a builtin. */
1435 if (TREE_CODE (olddecl) != TREE_CODE (newdecl))
1437 if (TREE_CODE (olddecl) == FUNCTION_DECL
1438 && (DECL_BUILT_IN (olddecl)
1439 || DECL_BUILT_IN_NONANSI (olddecl)))
1441 /* If you declare a built-in or predefined function name as static,
1442 the old definition is overridden,
1443 but optionally warn this was a bad choice of name. */
1444 if (!TREE_PUBLIC (newdecl))
1446 if (!warn_shadow)
1448 else if (DECL_BUILT_IN (olddecl))
1449 warning_with_decl (newdecl, "shadowing built-in function `%s'");
1450 else
1451 warning_with_decl (newdecl, "shadowing library function `%s'");
1453 /* Likewise, if the built-in is not ansi, then programs can
1454 override it even globally without an error. */
1455 else if (! DECL_BUILT_IN (olddecl))
1456 warning_with_decl (newdecl,
1457 "library function `%s' declared as non-function");
1459 else if (DECL_BUILT_IN_NONANSI (olddecl))
1460 warning_with_decl (newdecl,
1461 "built-in function `%s' declared as non-function");
1462 else
1463 warning_with_decl (newdecl,
1464 "built-in function `%s' declared as non-function");
1466 else
1468 error_with_decl (newdecl, "`%s' redeclared as different kind of symbol");
1469 error_with_decl (olddecl, "previous declaration of `%s'");
1472 return 0;
1475 /* For real parm decl following a forward decl,
1476 return 1 so old decl will be reused. */
1477 if (types_match && TREE_CODE (newdecl) == PARM_DECL
1478 && TREE_ASM_WRITTEN (olddecl) && ! TREE_ASM_WRITTEN (newdecl))
1479 return 1;
1481 /* The new declaration is the same kind of object as the old one.
1482 The declarations may partially match. Print warnings if they don't
1483 match enough. Ultimately, copy most of the information from the new
1484 decl to the old one, and keep using the old one. */
1486 if (flag_traditional && TREE_CODE (newdecl) == FUNCTION_DECL
1487 && IDENTIFIER_IMPLICIT_DECL (DECL_NAME (newdecl)) == olddecl
1488 && DECL_INITIAL (olddecl) == 0)
1489 /* If -traditional, avoid error for redeclaring fcn
1490 after implicit decl. */
1492 else if (TREE_CODE (olddecl) == FUNCTION_DECL
1493 && DECL_BUILT_IN (olddecl))
1495 /* A function declaration for a built-in function. */
1496 if (!TREE_PUBLIC (newdecl))
1498 /* If you declare a built-in function name as static, the
1499 built-in definition is overridden,
1500 but optionally warn this was a bad choice of name. */
1501 if (warn_shadow)
1502 warning_with_decl (newdecl, "shadowing built-in function `%s'");
1503 /* Discard the old built-in function. */
1504 return 0;
1506 else if (!types_match)
1508 /* Accept the return type of the new declaration if same modes. */
1509 tree oldreturntype = TREE_TYPE (oldtype);
1510 tree newreturntype = TREE_TYPE (newtype);
1512 if (TYPE_MODE (oldreturntype) == TYPE_MODE (newreturntype))
1514 /* Function types may be shared, so we can't just modify
1515 the return type of olddecl's function type. */
1516 tree trytype
1517 = build_function_type (newreturntype,
1518 TYPE_ARG_TYPES (oldtype));
1519 trytype = build_type_attribute_variant (trytype,
1520 TYPE_ATTRIBUTES (oldtype));
1522 types_match = comptypes (newtype, trytype);
1523 if (types_match)
1524 oldtype = trytype;
1526 /* Accept harmless mismatch in first argument type also.
1527 This is for the ffs and fprintf builtins. */
1528 if (TYPE_ARG_TYPES (TREE_TYPE (newdecl)) != 0
1529 && TYPE_ARG_TYPES (oldtype) != 0
1530 && TREE_VALUE (TYPE_ARG_TYPES (newtype)) != 0
1531 && TREE_VALUE (TYPE_ARG_TYPES (oldtype)) != 0
1532 && (TYPE_MODE (TREE_VALUE (TYPE_ARG_TYPES (newtype)))
1533 == TYPE_MODE (TREE_VALUE (TYPE_ARG_TYPES (oldtype)))))
1535 /* Function types may be shared, so we can't just modify
1536 the return type of olddecl's function type. */
1537 tree trytype
1538 = build_function_type (TREE_TYPE (oldtype),
1539 tree_cons (NULL_TREE,
1540 TREE_VALUE (TYPE_ARG_TYPES (newtype)),
1541 TREE_CHAIN (TYPE_ARG_TYPES (oldtype))));
1542 trytype = build_type_attribute_variant (trytype,
1543 TYPE_ATTRIBUTES (oldtype));
1545 types_match = comptypes (newtype, trytype);
1546 if (types_match)
1547 oldtype = trytype;
1549 if (! different_binding_level)
1550 TREE_TYPE (olddecl) = oldtype;
1552 else if (TYPE_ARG_TYPES (oldtype) == NULL
1553 && TYPE_ARG_TYPES (newtype) != NULL)
1555 /* For bcmp, bzero, fputs the builtin type has arguments not
1556 specified. Use the ones from the prototype so that type checking
1557 is done for them. */
1558 tree trytype
1559 = build_function_type (TREE_TYPE (oldtype),
1560 TYPE_ARG_TYPES (newtype));
1561 trytype = build_type_attribute_variant (trytype,
1562 TYPE_ATTRIBUTES (oldtype));
1564 oldtype = trytype;
1565 if (! different_binding_level)
1566 TREE_TYPE (olddecl) = oldtype;
1568 if (!types_match)
1570 /* If types don't match for a built-in, throw away the built-in. */
1571 warning_with_decl (newdecl, "conflicting types for built-in function `%s'");
1572 return 0;
1575 else if (TREE_CODE (olddecl) == FUNCTION_DECL
1576 && DECL_SOURCE_LINE (olddecl) == 0)
1578 /* A function declaration for a predeclared function
1579 that isn't actually built in. */
1580 if (!TREE_PUBLIC (newdecl))
1582 /* If you declare it as static, the
1583 default definition is overridden. */
1584 return 0;
1586 else if (!types_match)
1588 /* If the types don't match, preserve volatility indication.
1589 Later on, we will discard everything else about the
1590 default declaration. */
1591 TREE_THIS_VOLATILE (newdecl) |= TREE_THIS_VOLATILE (olddecl);
1594 /* Permit char *foo () to match void *foo (...) if not pedantic,
1595 if one of them came from a system header file. */
1596 else if (!types_match
1597 && TREE_CODE (olddecl) == FUNCTION_DECL
1598 && TREE_CODE (newdecl) == FUNCTION_DECL
1599 && TREE_CODE (TREE_TYPE (oldtype)) == POINTER_TYPE
1600 && TREE_CODE (TREE_TYPE (newtype)) == POINTER_TYPE
1601 && (DECL_IN_SYSTEM_HEADER (olddecl)
1602 || DECL_IN_SYSTEM_HEADER (newdecl))
1603 && ((TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (newtype))) == void_type_node
1604 && TYPE_ARG_TYPES (oldtype) == 0
1605 && self_promoting_args_p (TYPE_ARG_TYPES (newtype))
1606 && TREE_TYPE (TREE_TYPE (oldtype)) == char_type_node)
1608 (TREE_TYPE (TREE_TYPE (newtype)) == char_type_node
1609 && TYPE_ARG_TYPES (newtype) == 0
1610 && self_promoting_args_p (TYPE_ARG_TYPES (oldtype))
1611 && TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (oldtype))) == void_type_node)))
1613 if (pedantic)
1614 pedwarn_with_decl (newdecl, "conflicting types for `%s'");
1615 /* Make sure we keep void * as ret type, not char *. */
1616 if (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (oldtype))) == void_type_node)
1617 TREE_TYPE (newdecl) = newtype = oldtype;
1619 /* Set DECL_IN_SYSTEM_HEADER, so that if we see another declaration
1620 we will come back here again. */
1621 DECL_IN_SYSTEM_HEADER (newdecl) = 1;
1623 else if (!types_match
1624 /* Permit char *foo (int, ...); followed by char *foo ();
1625 if not pedantic. */
1626 && ! (TREE_CODE (olddecl) == FUNCTION_DECL
1627 && ! pedantic
1628 /* Return types must still match. */
1629 && comptypes (TREE_TYPE (oldtype),
1630 TREE_TYPE (newtype))
1631 && TYPE_ARG_TYPES (newtype) == 0))
1633 error_with_decl (newdecl, "conflicting types for `%s'");
1634 /* Check for function type mismatch
1635 involving an empty arglist vs a nonempty one. */
1636 if (TREE_CODE (olddecl) == FUNCTION_DECL
1637 && comptypes (TREE_TYPE (oldtype),
1638 TREE_TYPE (newtype))
1639 && ((TYPE_ARG_TYPES (oldtype) == 0
1640 && DECL_INITIAL (olddecl) == 0)
1642 (TYPE_ARG_TYPES (newtype) == 0
1643 && DECL_INITIAL (newdecl) == 0)))
1645 /* Classify the problem further. */
1646 tree t = TYPE_ARG_TYPES (oldtype);
1647 if (t == 0)
1648 t = TYPE_ARG_TYPES (newtype);
1649 for (; t; t = TREE_CHAIN (t))
1651 tree type = TREE_VALUE (t);
1653 if (TREE_CHAIN (t) == 0
1654 && TYPE_MAIN_VARIANT (type) != void_type_node)
1656 error ("a parameter list with an ellipsis can't match an empty parameter name list declaration");
1657 break;
1660 if (simple_type_promotes_to (type) != NULL_TREE)
1662 error ("an argument type that has a default promotion can't match an empty parameter name list declaration");
1663 break;
1667 error_with_decl (olddecl, "previous declaration of `%s'");
1669 else
1671 errmsg = redeclaration_error_message (newdecl, olddecl);
1672 if (errmsg)
1674 switch (errmsg)
1676 case 1:
1677 error_with_decl (newdecl, "redefinition of `%s'");
1678 break;
1679 case 2:
1680 error_with_decl (newdecl, "redeclaration of `%s'");
1681 break;
1682 case 3:
1683 error_with_decl (newdecl, "conflicting declarations of `%s'");
1684 break;
1685 default:
1686 abort ();
1689 error_with_decl (olddecl,
1690 ((DECL_INITIAL (olddecl)
1691 && current_binding_level == global_binding_level)
1692 ? "`%s' previously defined here"
1693 : "`%s' previously declared here"));
1694 return 0;
1696 else if (TREE_CODE (newdecl) == TYPE_DECL
1697 && (DECL_IN_SYSTEM_HEADER (olddecl)
1698 || DECL_IN_SYSTEM_HEADER (newdecl)))
1700 warning_with_decl (newdecl, "redefinition of `%s'");
1701 warning_with_decl
1702 (olddecl,
1703 ((DECL_INITIAL (olddecl)
1704 && current_binding_level == global_binding_level)
1705 ? "`%s' previously defined here"
1706 : "`%s' previously declared here"));
1708 else if (TREE_CODE (olddecl) == FUNCTION_DECL
1709 && DECL_INITIAL (olddecl) != 0
1710 && TYPE_ARG_TYPES (oldtype) == 0
1711 && TYPE_ARG_TYPES (newtype) != 0
1712 && TYPE_ACTUAL_ARG_TYPES (oldtype) != 0)
1714 tree type, parm;
1715 int nargs;
1716 /* Prototype decl follows defn w/o prototype. */
1718 for (parm = TYPE_ACTUAL_ARG_TYPES (oldtype),
1719 type = TYPE_ARG_TYPES (newtype),
1720 nargs = 1;
1722 parm = TREE_CHAIN (parm), type = TREE_CHAIN (type), nargs++)
1724 if (TYPE_MAIN_VARIANT (TREE_VALUE (parm)) == void_type_node
1725 && TYPE_MAIN_VARIANT (TREE_VALUE (type)) == void_type_node)
1727 warning_with_decl (newdecl, "prototype for `%s' follows");
1728 warning_with_decl (olddecl, "non-prototype definition here");
1729 break;
1731 if (TYPE_MAIN_VARIANT (TREE_VALUE (parm)) == void_type_node
1732 || TYPE_MAIN_VARIANT (TREE_VALUE (type)) == void_type_node)
1734 error_with_decl (newdecl,
1735 "prototype for `%s' follows and number of arguments doesn't match");
1736 error_with_decl (olddecl, "non-prototype definition here");
1737 errmsg = 1;
1738 break;
1740 /* Type for passing arg must be consistent
1741 with that declared for the arg. */
1742 if (! comptypes (TREE_VALUE (parm), TREE_VALUE (type))
1743 /* If -traditional, allow `unsigned int' instead of `int'
1744 in the prototype. */
1745 && (! (flag_traditional
1746 && TYPE_MAIN_VARIANT (TREE_VALUE (parm)) == integer_type_node
1747 && TYPE_MAIN_VARIANT (TREE_VALUE (type)) == unsigned_type_node)))
1749 error_with_decl (newdecl,
1750 "prototype for `%s' follows and argument %d doesn't match",
1751 nargs);
1752 error_with_decl (olddecl, "non-prototype definition here");
1753 errmsg = 1;
1754 break;
1758 /* Warn about mismatches in various flags. */
1759 else
1761 /* Warn if function is now inline
1762 but was previously declared not inline and has been called. */
1763 if (TREE_CODE (olddecl) == FUNCTION_DECL
1764 && ! DECL_DECLARED_INLINE_P (olddecl)
1765 && DECL_DECLARED_INLINE_P (newdecl)
1766 && TREE_USED (olddecl))
1767 warning_with_decl (newdecl,
1768 "`%s' declared inline after being called");
1769 if (TREE_CODE (olddecl) == FUNCTION_DECL
1770 && ! DECL_DECLARED_INLINE_P (olddecl)
1771 && DECL_DECLARED_INLINE_P (newdecl)
1772 && DECL_INITIAL (olddecl) != 0)
1773 warning_with_decl (newdecl,
1774 "`%s' declared inline after its definition");
1776 /* If pedantic, warn when static declaration follows a non-static
1777 declaration. Otherwise, do so only for functions. */
1778 if ((pedantic || TREE_CODE (olddecl) == FUNCTION_DECL)
1779 && TREE_PUBLIC (olddecl)
1780 && !TREE_PUBLIC (newdecl))
1781 warning_with_decl (newdecl, "static declaration for `%s' follows non-static");
1783 /* If warn_traditional, warn when a non-static function
1784 declaration follows a static one. */
1785 if (warn_traditional && !in_system_header
1786 && TREE_CODE (olddecl) == FUNCTION_DECL
1787 && !TREE_PUBLIC (olddecl)
1788 && TREE_PUBLIC (newdecl))
1789 warning_with_decl (newdecl, "non-static declaration for `%s' follows static");
1791 /* Warn when const declaration follows a non-const
1792 declaration, but not for functions. */
1793 if (TREE_CODE (olddecl) != FUNCTION_DECL
1794 && !TREE_READONLY (olddecl)
1795 && TREE_READONLY (newdecl))
1796 warning_with_decl (newdecl, "const declaration for `%s' follows non-const");
1797 /* These bits are logically part of the type, for variables.
1798 But not for functions
1799 (where qualifiers are not valid ANSI anyway). */
1800 else if (pedantic && TREE_CODE (olddecl) != FUNCTION_DECL
1801 && (TREE_READONLY (newdecl) != TREE_READONLY (olddecl)
1802 || TREE_THIS_VOLATILE (newdecl) != TREE_THIS_VOLATILE (olddecl)))
1803 pedwarn_with_decl (newdecl, "type qualifiers for `%s' conflict with previous decl");
1807 /* Optionally warn about more than one declaration for the same name. */
1808 if (errmsg == 0 && warn_redundant_decls && DECL_SOURCE_LINE (olddecl) != 0
1809 /* Don't warn about a function declaration
1810 followed by a definition. */
1811 && !(TREE_CODE (newdecl) == FUNCTION_DECL && DECL_INITIAL (newdecl) != 0
1812 && DECL_INITIAL (olddecl) == 0)
1813 /* Don't warn about extern decl followed by (tentative) definition. */
1814 && !(DECL_EXTERNAL (olddecl) && ! DECL_EXTERNAL (newdecl)))
1816 warning_with_decl (newdecl, "redundant redeclaration of `%s' in same scope");
1817 warning_with_decl (olddecl, "previous declaration of `%s'");
1820 /* Copy all the DECL_... slots specified in the new decl
1821 except for any that we copy here from the old type.
1823 Past this point, we don't change OLDTYPE and NEWTYPE
1824 even if we change the types of NEWDECL and OLDDECL. */
1826 if (types_match)
1828 /* When copying info to olddecl, we store into write_olddecl
1829 instead. This allows us to avoid modifying olddecl when
1830 different_binding_level is true. */
1831 tree write_olddecl = different_binding_level ? newdecl : olddecl;
1833 /* Merge the data types specified in the two decls. */
1834 if (TREE_CODE (newdecl) != FUNCTION_DECL || !DECL_BUILT_IN (olddecl))
1836 if (different_binding_level)
1838 if (TYPE_ARG_TYPES (oldtype) != 0
1839 && TYPE_ARG_TYPES (newtype) == 0)
1840 TREE_TYPE (newdecl) = common_type (newtype, oldtype);
1841 else
1842 TREE_TYPE (newdecl)
1843 = build_type_attribute_variant
1844 (newtype,
1845 merge_attributes (TYPE_ATTRIBUTES (newtype),
1846 TYPE_ATTRIBUTES (oldtype)));
1848 else
1849 TREE_TYPE (newdecl)
1850 = TREE_TYPE (olddecl)
1851 = common_type (newtype, oldtype);
1854 /* Lay the type out, unless already done. */
1855 if (oldtype != TREE_TYPE (newdecl))
1857 if (TREE_TYPE (newdecl) != error_mark_node)
1858 layout_type (TREE_TYPE (newdecl));
1859 if (TREE_CODE (newdecl) != FUNCTION_DECL
1860 && TREE_CODE (newdecl) != TYPE_DECL
1861 && TREE_CODE (newdecl) != CONST_DECL)
1862 layout_decl (newdecl, 0);
1864 else
1866 /* Since the type is OLDDECL's, make OLDDECL's size go with. */
1867 DECL_SIZE (newdecl) = DECL_SIZE (olddecl);
1868 DECL_SIZE_UNIT (newdecl) = DECL_SIZE_UNIT (olddecl);
1869 DECL_MODE (newdecl) = DECL_MODE (olddecl);
1870 if (TREE_CODE (olddecl) != FUNCTION_DECL)
1871 if (DECL_ALIGN (olddecl) > DECL_ALIGN (newdecl))
1873 DECL_ALIGN (newdecl) = DECL_ALIGN (olddecl);
1874 DECL_USER_ALIGN (newdecl) |= DECL_ALIGN (olddecl);
1878 /* Keep the old rtl since we can safely use it. */
1879 COPY_DECL_RTL (olddecl, newdecl);
1881 /* Merge the type qualifiers. */
1882 if (TREE_CODE (olddecl) == FUNCTION_DECL
1883 && DECL_BUILT_IN_NONANSI (olddecl) && TREE_THIS_VOLATILE (olddecl)
1884 && ! TREE_THIS_VOLATILE (newdecl))
1885 TREE_THIS_VOLATILE (write_olddecl) = 0;
1887 if (TREE_READONLY (newdecl))
1888 TREE_READONLY (write_olddecl) = 1;
1890 if (TREE_THIS_VOLATILE (newdecl))
1892 TREE_THIS_VOLATILE (write_olddecl) = 1;
1893 if (TREE_CODE (newdecl) == VAR_DECL
1894 /* If an automatic variable is re-declared in the same
1895 function scope, but the old declaration was not
1896 volatile, make_var_volatile() would crash because the
1897 variable would have been assigned to a pseudo, not a
1898 MEM. Since this duplicate declaration is invalid
1899 anyway, we just skip the call. */
1900 && errmsg == 0)
1901 make_var_volatile (newdecl);
1904 /* Keep source location of definition rather than declaration. */
1905 /* When called with different_binding_level set, keep the old
1906 information so that meaningful diagnostics can be given. */
1907 if (DECL_INITIAL (newdecl) == 0 && DECL_INITIAL (olddecl) != 0
1908 && ! different_binding_level)
1910 DECL_SOURCE_LINE (newdecl) = DECL_SOURCE_LINE (olddecl);
1911 DECL_SOURCE_FILE (newdecl) = DECL_SOURCE_FILE (olddecl);
1914 /* Merge the unused-warning information. */
1915 if (DECL_IN_SYSTEM_HEADER (olddecl))
1916 DECL_IN_SYSTEM_HEADER (newdecl) = 1;
1917 else if (DECL_IN_SYSTEM_HEADER (newdecl))
1918 DECL_IN_SYSTEM_HEADER (write_olddecl) = 1;
1920 /* Merge the initialization information. */
1921 /* When called with different_binding_level set, don't copy over
1922 DECL_INITIAL, so that we don't accidentally change function
1923 declarations into function definitions. */
1924 if (DECL_INITIAL (newdecl) == 0 && ! different_binding_level)
1925 DECL_INITIAL (newdecl) = DECL_INITIAL (olddecl);
1927 /* Merge the section attribute.
1928 We want to issue an error if the sections conflict but that must be
1929 done later in decl_attributes since we are called before attributes
1930 are assigned. */
1931 if (DECL_SECTION_NAME (newdecl) == NULL_TREE)
1932 DECL_SECTION_NAME (newdecl) = DECL_SECTION_NAME (olddecl);
1934 /* Copy the assembler name.
1935 Currently, it can only be defined in the prototype. */
1936 COPY_DECL_ASSEMBLER_NAME (olddecl, newdecl);
1938 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1940 DECL_STATIC_CONSTRUCTOR(newdecl) |= DECL_STATIC_CONSTRUCTOR(olddecl);
1941 DECL_STATIC_DESTRUCTOR (newdecl) |= DECL_STATIC_DESTRUCTOR (olddecl);
1942 DECL_NO_LIMIT_STACK (newdecl) |= DECL_NO_LIMIT_STACK (olddecl);
1943 DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (newdecl)
1944 |= DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (olddecl);
1947 /* If cannot merge, then use the new type and qualifiers,
1948 and don't preserve the old rtl. */
1949 else if (! different_binding_level)
1951 TREE_TYPE (olddecl) = TREE_TYPE (newdecl);
1952 TREE_READONLY (olddecl) = TREE_READONLY (newdecl);
1953 TREE_THIS_VOLATILE (olddecl) = TREE_THIS_VOLATILE (newdecl);
1954 TREE_SIDE_EFFECTS (olddecl) = TREE_SIDE_EFFECTS (newdecl);
1957 /* Merge the storage class information. */
1958 merge_weak (newdecl, olddecl);
1960 /* For functions, static overrides non-static. */
1961 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1963 TREE_PUBLIC (newdecl) &= TREE_PUBLIC (olddecl);
1964 /* This is since we don't automatically
1965 copy the attributes of NEWDECL into OLDDECL. */
1966 /* No need to worry about different_binding_level here because
1967 then TREE_PUBLIC (newdecl) was true. */
1968 TREE_PUBLIC (olddecl) = TREE_PUBLIC (newdecl);
1969 /* If this clears `static', clear it in the identifier too. */
1970 if (! TREE_PUBLIC (olddecl))
1971 TREE_PUBLIC (DECL_NAME (olddecl)) = 0;
1973 if (DECL_EXTERNAL (newdecl))
1975 if (! different_binding_level)
1977 /* Don't mess with these flags on local externs; they remain
1978 external even if there's a declaration at file scope which
1979 isn't. */
1980 TREE_STATIC (newdecl) = TREE_STATIC (olddecl);
1981 DECL_EXTERNAL (newdecl) = DECL_EXTERNAL (olddecl);
1983 /* An extern decl does not override previous storage class. */
1984 TREE_PUBLIC (newdecl) = TREE_PUBLIC (olddecl);
1985 if (! DECL_EXTERNAL (newdecl))
1986 DECL_CONTEXT (newdecl) = DECL_CONTEXT (olddecl);
1988 else
1990 TREE_STATIC (olddecl) = TREE_STATIC (newdecl);
1991 TREE_PUBLIC (olddecl) = TREE_PUBLIC (newdecl);
1994 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1996 /* If we're redefining a function previously defined as extern
1997 inline, make sure we emit debug info for the inline before we
1998 throw it away, in case it was inlined into a function that hasn't
1999 been written out yet. */
2000 if (new_is_definition && DECL_INITIAL (olddecl) && TREE_USED (olddecl))
2002 (*debug_hooks->outlining_inline_function) (olddecl);
2004 /* The new defn must not be inline. */
2005 DECL_INLINE (newdecl) = 0;
2006 DECL_UNINLINABLE (newdecl) = 1;
2008 else
2010 /* If either decl says `inline', this fn is inline,
2011 unless its definition was passed already. */
2012 if (DECL_DECLARED_INLINE_P (newdecl)
2013 || DECL_DECLARED_INLINE_P (olddecl))
2014 DECL_DECLARED_INLINE_P (newdecl) = 1;
2016 DECL_UNINLINABLE (newdecl) = DECL_UNINLINABLE (olddecl)
2017 = (DECL_UNINLINABLE (newdecl) || DECL_UNINLINABLE (olddecl));
2020 if (DECL_BUILT_IN (olddecl))
2022 /* Get rid of any built-in function if new arg types don't match it
2023 or if we have a function definition. */
2024 if (! types_match || new_is_definition)
2026 if (! different_binding_level)
2028 TREE_TYPE (olddecl) = TREE_TYPE (newdecl);
2029 DECL_BUILT_IN_CLASS (olddecl) = NOT_BUILT_IN;
2032 else
2034 /* If redeclaring a builtin function, and not a definition,
2035 it stays built in. */
2036 DECL_BUILT_IN_CLASS (newdecl) = DECL_BUILT_IN_CLASS (olddecl);
2037 DECL_FUNCTION_CODE (newdecl) = DECL_FUNCTION_CODE (olddecl);
2041 /* Also preserve various other info from the definition. */
2042 if (! new_is_definition)
2044 DECL_RESULT (newdecl) = DECL_RESULT (olddecl);
2045 /* When called with different_binding_level set, don't copy over
2046 DECL_INITIAL, so that we don't accidentally change function
2047 declarations into function definitions. */
2048 if (! different_binding_level)
2049 DECL_INITIAL (newdecl) = DECL_INITIAL (olddecl);
2050 DECL_SAVED_INSNS (newdecl) = DECL_SAVED_INSNS (olddecl);
2051 DECL_SAVED_TREE (newdecl) = DECL_SAVED_TREE (olddecl);
2052 DECL_NUM_STMTS (newdecl) = DECL_NUM_STMTS (olddecl);
2053 DECL_ARGUMENTS (newdecl) = DECL_ARGUMENTS (olddecl);
2055 /* Set DECL_INLINE on the declaration if we've got a body
2056 from which to instantiate. */
2057 if (DECL_INLINE (olddecl) && ! DECL_UNINLINABLE (newdecl))
2059 DECL_INLINE (newdecl) = 1;
2060 DECL_ABSTRACT_ORIGIN (newdecl)
2061 = (different_binding_level
2062 ? DECL_ORIGIN (olddecl)
2063 : DECL_ABSTRACT_ORIGIN (olddecl));
2066 else
2068 /* If a previous declaration said inline, mark the
2069 definition as inlinable. */
2070 if (DECL_DECLARED_INLINE_P (newdecl)
2071 && ! DECL_UNINLINABLE (newdecl))
2072 DECL_INLINE (newdecl) = 1;
2075 if (different_binding_level)
2076 return 0;
2078 /* Copy most of the decl-specific fields of NEWDECL into OLDDECL.
2079 But preserve OLDDECL's DECL_UID. */
2081 unsigned olddecl_uid = DECL_UID (olddecl);
2083 memcpy ((char *) olddecl + sizeof (struct tree_common),
2084 (char *) newdecl + sizeof (struct tree_common),
2085 sizeof (struct tree_decl) - sizeof (struct tree_common));
2086 DECL_UID (olddecl) = olddecl_uid;
2089 /* NEWDECL contains the merged attribute lists.
2090 Update OLDDECL to be the same. */
2091 DECL_ATTRIBUTES (olddecl) = DECL_ATTRIBUTES (newdecl);
2093 return 1;
2096 /* Check whether decl-node X shadows an existing declaration.
2097 OLDLOCAL is the old IDENTIFIER_LOCAL_VALUE of the DECL_NAME of X,
2098 which might be a NULL_TREE. */
2099 static void
2100 warn_if_shadowing (x, oldlocal)
2101 tree x, oldlocal;
2103 tree name;
2105 if (DECL_EXTERNAL (x))
2106 return;
2108 name = DECL_NAME (x);
2110 /* Warn if shadowing an argument at the top level of the body. */
2111 if (oldlocal != 0
2112 /* This warning doesn't apply to the parms of a nested fcn. */
2113 && ! current_binding_level->parm_flag
2114 /* Check that this is one level down from the parms. */
2115 && current_binding_level->level_chain->parm_flag
2116 /* Check that the decl being shadowed
2117 comes from the parm level, one level up. */
2118 && chain_member (oldlocal, current_binding_level->level_chain->names))
2120 if (TREE_CODE (oldlocal) == PARM_DECL)
2121 pedwarn ("declaration of `%s' shadows a parameter",
2122 IDENTIFIER_POINTER (name));
2123 else
2124 pedwarn ("declaration of `%s' shadows a symbol from the parameter list",
2125 IDENTIFIER_POINTER (name));
2127 /* Maybe warn if shadowing something else. */
2128 else if (warn_shadow
2129 /* No shadow warnings for internally generated vars. */
2130 && DECL_SOURCE_LINE (x) != 0
2131 /* No shadow warnings for vars made for inlining. */
2132 && ! DECL_FROM_INLINE (x))
2134 if (TREE_CODE (x) == PARM_DECL
2135 && current_binding_level->level_chain->parm_flag)
2136 /* Don't warn about the parm names in function declarator
2137 within a function declarator.
2138 It would be nice to avoid warning in any function
2139 declarator in a declaration, as opposed to a definition,
2140 but there is no way to tell it's not a definition. */
2142 else if (oldlocal)
2144 if (TREE_CODE (oldlocal) == PARM_DECL)
2145 shadow_warning ("a parameter", name, oldlocal);
2146 else
2147 shadow_warning ("a previous local", name, oldlocal);
2149 else if (IDENTIFIER_GLOBAL_VALUE (name) != 0
2150 && IDENTIFIER_GLOBAL_VALUE (name) != error_mark_node)
2151 shadow_warning ("a global declaration", name,
2152 IDENTIFIER_GLOBAL_VALUE (name));
2156 /* Record a decl-node X as belonging to the current lexical scope.
2157 Check for errors (such as an incompatible declaration for the same
2158 name already seen in the same scope).
2160 Returns either X or an old decl for the same name.
2161 If an old decl is returned, it may have been smashed
2162 to agree with what X says. */
2164 tree
2165 pushdecl (x)
2166 tree x;
2168 tree t;
2169 tree name = DECL_NAME (x);
2170 struct binding_level *b = current_binding_level;
2172 /* Functions need the lang_decl data. */
2173 if (TREE_CODE (x) == FUNCTION_DECL && ! DECL_LANG_SPECIFIC (x))
2174 DECL_LANG_SPECIFIC (x) = (struct lang_decl *)
2175 ggc_alloc_cleared (sizeof (struct lang_decl));
2177 DECL_CONTEXT (x) = current_function_decl;
2178 /* A local extern declaration for a function doesn't constitute nesting.
2179 A local auto declaration does, since it's a forward decl
2180 for a nested function coming later. */
2181 if ((TREE_CODE (x) == FUNCTION_DECL || TREE_CODE (x) == VAR_DECL)
2182 && DECL_INITIAL (x) == 0 && DECL_EXTERNAL (x))
2183 DECL_CONTEXT (x) = 0;
2185 if (name)
2187 int different_binding_level = 0;
2189 if (warn_nested_externs
2190 && DECL_EXTERNAL (x)
2191 && b != global_binding_level
2192 && x != IDENTIFIER_IMPLICIT_DECL (name)
2193 /* No error messages for __FUNCTION__ and __PRETTY_FUNCTION__. */
2194 && !DECL_IN_SYSTEM_HEADER (x))
2195 warning ("nested extern declaration of `%s'",
2196 IDENTIFIER_POINTER (name));
2198 t = lookup_name_current_level (name);
2199 /* Don't type check externs here when -traditional. This is so that
2200 code with conflicting declarations inside blocks will get warnings
2201 not errors. X11 for instance depends on this. */
2202 if (! t && DECL_EXTERNAL (x) && TREE_PUBLIC (x) && ! flag_traditional)
2204 t = IDENTIFIER_GLOBAL_VALUE (name);
2205 /* Type decls at global scope don't conflict with externs declared
2206 inside lexical blocks. */
2207 if (! t || TREE_CODE (t) == TYPE_DECL)
2208 /* If there's no visible global declaration, try for an
2209 invisible one. */
2210 t = IDENTIFIER_LIMBO_VALUE (name);
2211 different_binding_level = 1;
2213 if (t != 0 && t == error_mark_node)
2214 /* error_mark_node is 0 for a while during initialization! */
2216 t = 0;
2217 error_with_decl (x, "`%s' used prior to declaration");
2220 /* If this decl is `static' and an implicit decl was seen previously,
2221 warn. But don't complain if -traditional,
2222 since traditional compilers don't complain. */
2223 if (! flag_traditional && TREE_PUBLIC (name)
2224 /* Don't test for DECL_EXTERNAL, because grokdeclarator
2225 sets this for all functions. */
2226 && ! TREE_PUBLIC (x)
2227 && (TREE_CODE (x) == FUNCTION_DECL || b == global_binding_level)
2228 /* We used to warn also for explicit extern followed by static,
2229 but sometimes you need to do it that way. */
2230 && IDENTIFIER_IMPLICIT_DECL (name) != 0)
2232 pedwarn ("`%s' was declared implicitly `extern' and later `static'",
2233 IDENTIFIER_POINTER (name));
2234 pedwarn_with_file_and_line
2235 (DECL_SOURCE_FILE (IDENTIFIER_IMPLICIT_DECL (name)),
2236 DECL_SOURCE_LINE (IDENTIFIER_IMPLICIT_DECL (name)),
2237 "previous declaration of `%s'",
2238 IDENTIFIER_POINTER (name));
2239 TREE_THIS_VOLATILE (name) = 1;
2242 if (t != 0 && duplicate_decls (x, t, different_binding_level))
2244 if (TREE_CODE (t) == PARM_DECL)
2246 /* Don't allow more than one "real" duplicate
2247 of a forward parm decl. */
2248 TREE_ASM_WRITTEN (t) = TREE_ASM_WRITTEN (x);
2249 return t;
2251 return t;
2254 /* If we are processing a typedef statement, generate a whole new
2255 ..._TYPE node (which will be just an variant of the existing
2256 ..._TYPE node with identical properties) and then install the
2257 TYPE_DECL node generated to represent the typedef name as the
2258 TYPE_NAME of this brand new (duplicate) ..._TYPE node.
2260 The whole point here is to end up with a situation where each
2261 and every ..._TYPE node the compiler creates will be uniquely
2262 associated with AT MOST one node representing a typedef name.
2263 This way, even though the compiler substitutes corresponding
2264 ..._TYPE nodes for TYPE_DECL (i.e. "typedef name") nodes very
2265 early on, later parts of the compiler can always do the reverse
2266 translation and get back the corresponding typedef name. For
2267 example, given:
2269 typedef struct S MY_TYPE;
2270 MY_TYPE object;
2272 Later parts of the compiler might only know that `object' was of
2273 type `struct S' if it were not for code just below. With this
2274 code however, later parts of the compiler see something like:
2276 struct S' == struct S
2277 typedef struct S' MY_TYPE;
2278 struct S' object;
2280 And they can then deduce (from the node for type struct S') that
2281 the original object declaration was:
2283 MY_TYPE object;
2285 Being able to do this is important for proper support of protoize,
2286 and also for generating precise symbolic debugging information
2287 which takes full account of the programmer's (typedef) vocabulary.
2289 Obviously, we don't want to generate a duplicate ..._TYPE node if
2290 the TYPE_DECL node that we are now processing really represents a
2291 standard built-in type.
2293 Since all standard types are effectively declared at line zero
2294 in the source file, we can easily check to see if we are working
2295 on a standard type by checking the current value of lineno. */
2297 if (TREE_CODE (x) == TYPE_DECL)
2299 if (DECL_SOURCE_LINE (x) == 0)
2301 if (TYPE_NAME (TREE_TYPE (x)) == 0)
2302 TYPE_NAME (TREE_TYPE (x)) = x;
2304 else if (TREE_TYPE (x) != error_mark_node
2305 && DECL_ORIGINAL_TYPE (x) == NULL_TREE)
2307 tree tt = TREE_TYPE (x);
2308 DECL_ORIGINAL_TYPE (x) = tt;
2309 tt = build_type_copy (tt);
2310 TYPE_NAME (tt) = x;
2311 TREE_USED (tt) = TREE_USED (x);
2312 TREE_TYPE (x) = tt;
2316 /* Multiple external decls of the same identifier ought to match.
2317 Check against both global declarations (when traditional) and out of
2318 scope (limbo) block level declarations.
2320 We get warnings about inline functions where they are defined.
2321 Avoid duplicate warnings where they are used. */
2322 if (TREE_PUBLIC (x)
2323 && ! (TREE_CODE (x) == FUNCTION_DECL && DECL_INLINE (x)))
2325 tree decl;
2327 if (flag_traditional && IDENTIFIER_GLOBAL_VALUE (name) != 0
2328 && (DECL_EXTERNAL (IDENTIFIER_GLOBAL_VALUE (name))
2329 || TREE_PUBLIC (IDENTIFIER_GLOBAL_VALUE (name))))
2330 decl = IDENTIFIER_GLOBAL_VALUE (name);
2331 else if (IDENTIFIER_LIMBO_VALUE (name) != 0)
2332 /* Decls in limbo are always extern, so no need to check that. */
2333 decl = IDENTIFIER_LIMBO_VALUE (name);
2334 else
2335 decl = 0;
2337 if (decl && ! comptypes (TREE_TYPE (x), TREE_TYPE (decl))
2338 /* If old decl is built-in, we already warned if we should. */
2339 && !DECL_BUILT_IN (decl))
2341 pedwarn_with_decl (x,
2342 "type mismatch with previous external decl");
2343 pedwarn_with_decl (decl, "previous external decl of `%s'");
2347 /* If a function has had an implicit declaration, and then is defined,
2348 make sure they are compatible. */
2350 if (IDENTIFIER_IMPLICIT_DECL (name) != 0
2351 && IDENTIFIER_GLOBAL_VALUE (name) == 0
2352 && TREE_CODE (x) == FUNCTION_DECL
2353 && ! comptypes (TREE_TYPE (x),
2354 TREE_TYPE (IDENTIFIER_IMPLICIT_DECL (name))))
2356 warning_with_decl (x, "type mismatch with previous implicit declaration");
2357 warning_with_decl (IDENTIFIER_IMPLICIT_DECL (name),
2358 "previous implicit declaration of `%s'");
2361 /* In PCC-compatibility mode, extern decls of vars with no current decl
2362 take effect at top level no matter where they are. */
2363 if (flag_traditional && DECL_EXTERNAL (x)
2364 && lookup_name (name) == 0)
2366 tree type = TREE_TYPE (x);
2368 /* But don't do this if the type contains temporary nodes. */
2369 while (type)
2371 if (type == error_mark_node)
2372 break;
2373 if (TYPE_CONTEXT (type))
2375 warning_with_decl (x, "type of external `%s' is not global");
2376 /* By exiting the loop early, we leave TYPE nonzero,
2377 and thus prevent globalization of the decl. */
2378 break;
2380 else if (TREE_CODE (type) == FUNCTION_TYPE
2381 && TYPE_ARG_TYPES (type) != 0)
2382 /* The types might not be truly local,
2383 but the list of arg types certainly is temporary.
2384 Since prototypes are nontraditional,
2385 ok not to do the traditional thing. */
2386 break;
2387 type = TREE_TYPE (type);
2390 if (type == 0)
2391 b = global_binding_level;
2394 /* This name is new in its binding level.
2395 Install the new declaration and return it. */
2396 if (b == global_binding_level)
2398 /* Install a global value. */
2400 /* If the first global decl has external linkage,
2401 warn if we later see static one. */
2402 if (IDENTIFIER_GLOBAL_VALUE (name) == 0 && TREE_PUBLIC (x))
2403 TREE_PUBLIC (name) = 1;
2405 IDENTIFIER_GLOBAL_VALUE (name) = x;
2407 /* We no longer care about any previous block level declarations. */
2408 IDENTIFIER_LIMBO_VALUE (name) = 0;
2410 /* Don't forget if the function was used via an implicit decl. */
2411 if (IDENTIFIER_IMPLICIT_DECL (name)
2412 && TREE_USED (IDENTIFIER_IMPLICIT_DECL (name)))
2413 TREE_USED (x) = 1, TREE_USED (name) = 1;
2415 /* Don't forget if its address was taken in that way. */
2416 if (IDENTIFIER_IMPLICIT_DECL (name)
2417 && TREE_ADDRESSABLE (IDENTIFIER_IMPLICIT_DECL (name)))
2418 TREE_ADDRESSABLE (x) = 1;
2420 /* Warn about mismatches against previous implicit decl. */
2421 if (IDENTIFIER_IMPLICIT_DECL (name) != 0
2422 /* If this real decl matches the implicit, don't complain. */
2423 && ! (TREE_CODE (x) == FUNCTION_DECL
2424 && (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (x)))
2425 == integer_type_node)))
2426 pedwarn ("`%s' was previously implicitly declared to return `int'",
2427 IDENTIFIER_POINTER (name));
2429 /* If this decl is `static' and an `extern' was seen previously,
2430 that is erroneous. */
2431 if (TREE_PUBLIC (name)
2432 && ! TREE_PUBLIC (x) && ! DECL_EXTERNAL (x))
2434 /* Okay to redeclare an ANSI built-in as static. */
2435 if (t != 0 && DECL_BUILT_IN (t))
2437 /* Okay to declare a non-ANSI built-in as anything. */
2438 else if (t != 0 && DECL_BUILT_IN_NONANSI (t))
2440 /* Okay to have global type decl after an earlier extern
2441 declaration inside a lexical block. */
2442 else if (TREE_CODE (x) == TYPE_DECL)
2444 else if (IDENTIFIER_IMPLICIT_DECL (name))
2446 if (! TREE_THIS_VOLATILE (name))
2447 pedwarn ("`%s' was declared implicitly `extern' and later `static'",
2448 IDENTIFIER_POINTER (name));
2450 else
2451 pedwarn ("`%s' was declared `extern' and later `static'",
2452 IDENTIFIER_POINTER (name));
2455 else
2457 /* Here to install a non-global value. */
2458 tree oldlocal = IDENTIFIER_LOCAL_VALUE (name);
2459 tree oldglobal = IDENTIFIER_GLOBAL_VALUE (name);
2461 IDENTIFIER_LOCAL_VALUE (name) = x;
2463 /* If this is an extern function declaration, see if we
2464 have a global definition or declaration for the function. */
2465 if (oldlocal == 0
2466 && oldglobal != 0
2467 && TREE_CODE (x) == FUNCTION_DECL
2468 && TREE_CODE (oldglobal) == FUNCTION_DECL
2469 && DECL_EXTERNAL (x)
2470 && ! DECL_DECLARED_INLINE_P (x))
2472 /* We have one. Their types must agree. */
2473 if (! comptypes (TREE_TYPE (x),
2474 TREE_TYPE (IDENTIFIER_GLOBAL_VALUE (name))))
2475 pedwarn_with_decl (x, "extern declaration of `%s' doesn't match global one");
2476 else
2478 /* Inner extern decl is inline if global one is.
2479 Copy enough to really inline it. */
2480 if (DECL_DECLARED_INLINE_P (oldglobal))
2482 DECL_DECLARED_INLINE_P (x)
2483 = DECL_DECLARED_INLINE_P (oldglobal);
2484 DECL_INLINE (x) = DECL_INLINE (oldglobal);
2485 DECL_INITIAL (x) = (current_function_decl == oldglobal
2486 ? 0 : DECL_INITIAL (oldglobal));
2487 DECL_SAVED_INSNS (x) = DECL_SAVED_INSNS (oldglobal);
2488 DECL_NUM_STMTS (x) = DECL_NUM_STMTS (oldglobal);
2489 DECL_ARGUMENTS (x) = DECL_ARGUMENTS (oldglobal);
2490 DECL_RESULT (x) = DECL_RESULT (oldglobal);
2491 TREE_ASM_WRITTEN (x) = TREE_ASM_WRITTEN (oldglobal);
2492 DECL_ABSTRACT_ORIGIN (x)
2493 = DECL_ABSTRACT_ORIGIN (oldglobal);
2495 /* Inner extern decl is built-in if global one is. */
2496 if (DECL_BUILT_IN (oldglobal))
2498 DECL_BUILT_IN_CLASS (x) = DECL_BUILT_IN_CLASS (oldglobal);
2499 DECL_FUNCTION_CODE (x) = DECL_FUNCTION_CODE (oldglobal);
2501 /* Keep the arg types from a file-scope fcn defn. */
2502 if (TYPE_ARG_TYPES (TREE_TYPE (oldglobal)) != 0
2503 && DECL_INITIAL (oldglobal)
2504 && TYPE_ARG_TYPES (TREE_TYPE (x)) == 0)
2505 TREE_TYPE (x) = TREE_TYPE (oldglobal);
2509 #if 0
2510 /* This case is probably sometimes the right thing to do. */
2511 /* If we have a local external declaration,
2512 then any file-scope declaration should not
2513 have been static. */
2514 if (oldlocal == 0 && oldglobal != 0
2515 && !TREE_PUBLIC (oldglobal)
2516 && DECL_EXTERNAL (x) && TREE_PUBLIC (x))
2517 warning ("`%s' locally external but globally static",
2518 IDENTIFIER_POINTER (name));
2519 #endif
2521 /* If we have a local external declaration,
2522 and no file-scope declaration has yet been seen,
2523 then if we later have a file-scope decl it must not be static. */
2524 if (oldlocal == 0
2525 && DECL_EXTERNAL (x)
2526 && TREE_PUBLIC (x))
2528 if (oldglobal == 0)
2529 TREE_PUBLIC (name) = 1;
2531 /* Save this decl, so that we can do type checking against
2532 other decls after it falls out of scope.
2534 Only save it once. This prevents temporary decls created in
2535 expand_inline_function from being used here, since this
2536 will have been set when the inline function was parsed.
2537 It also helps give slightly better warnings. */
2538 if (IDENTIFIER_LIMBO_VALUE (name) == 0)
2539 IDENTIFIER_LIMBO_VALUE (name) = x;
2542 warn_if_shadowing (x, oldlocal);
2544 /* If storing a local value, there may already be one (inherited).
2545 If so, record it for restoration when this binding level ends. */
2546 if (oldlocal != 0)
2547 b->shadowed = tree_cons (name, oldlocal, b->shadowed);
2550 /* Keep count of variables in this level with incomplete type.
2551 If the input is erroneous, we can have error_mark in the type
2552 slot (e.g. "f(void a, ...)") - that doesn't count as an
2553 incomplete type. */
2554 if (TREE_TYPE (x) != error_mark_node
2555 && !COMPLETE_TYPE_P (TREE_TYPE (x)))
2557 tree element = TREE_TYPE (x);
2559 while (TREE_CODE (element) == ARRAY_TYPE)
2560 element = TREE_TYPE (element);
2561 if (TREE_CODE (element) == RECORD_TYPE
2562 || TREE_CODE (element) == UNION_TYPE)
2563 ++b->n_incomplete;
2567 /* Put decls on list in reverse order.
2568 We will reverse them later if necessary. */
2569 TREE_CHAIN (x) = b->names;
2570 b->names = x;
2572 return x;
2575 /* Like pushdecl, only it places X in GLOBAL_BINDING_LEVEL, if appropriate. */
2577 tree
2578 pushdecl_top_level (x)
2579 tree x;
2581 tree t;
2582 struct binding_level *b = current_binding_level;
2584 current_binding_level = global_binding_level;
2585 t = pushdecl (x);
2586 current_binding_level = b;
2587 return t;
2590 /* Generate an implicit declaration for identifier FUNCTIONID
2591 as a function of type int (). Print a warning if appropriate. */
2593 tree
2594 implicitly_declare (functionid)
2595 tree functionid;
2597 tree decl;
2598 int traditional_warning = 0;
2599 /* Only one "implicit declaration" warning per identifier. */
2600 int implicit_warning;
2602 /* We used to reuse an old implicit decl here,
2603 but this loses with inline functions because it can clobber
2604 the saved decl chains. */
2605 #if 0
2606 if (IDENTIFIER_IMPLICIT_DECL (functionid) != 0)
2607 decl = IDENTIFIER_IMPLICIT_DECL (functionid);
2608 else
2609 #endif
2610 decl = build_decl (FUNCTION_DECL, functionid, default_function_type);
2612 /* Warn of implicit decl following explicit local extern decl.
2613 This is probably a program designed for traditional C. */
2614 if (TREE_PUBLIC (functionid) && IDENTIFIER_GLOBAL_VALUE (functionid) == 0)
2615 traditional_warning = 1;
2617 /* Warn once of an implicit declaration. */
2618 implicit_warning = (IDENTIFIER_IMPLICIT_DECL (functionid) == 0);
2620 DECL_EXTERNAL (decl) = 1;
2621 TREE_PUBLIC (decl) = 1;
2623 /* Record that we have an implicit decl and this is it. */
2624 IDENTIFIER_IMPLICIT_DECL (functionid) = decl;
2626 /* ANSI standard says implicit declarations are in the innermost block.
2627 So we record the decl in the standard fashion.
2628 If flag_traditional is set, pushdecl does it top-level. */
2629 pushdecl (decl);
2631 /* This is a no-op in c-lang.c or something real in objc-actions.c. */
2632 maybe_objc_check_decl (decl);
2634 rest_of_decl_compilation (decl, NULL, 0, 0);
2636 if (implicit_warning)
2637 implicit_decl_warning (functionid);
2638 else if (warn_traditional && traditional_warning)
2639 warning ("function `%s' was previously declared within a block",
2640 IDENTIFIER_POINTER (functionid));
2642 /* Write a record describing this implicit function declaration to the
2643 prototypes file (if requested). */
2645 gen_aux_info_record (decl, 0, 1, 0);
2647 /* Possibly apply some default attributes to this implicit declaration. */
2648 decl_attributes (&decl, NULL_TREE, 0);
2650 return decl;
2653 void
2654 implicit_decl_warning (id)
2655 tree id;
2657 const char *name = IDENTIFIER_POINTER (id);
2658 if (mesg_implicit_function_declaration == 2)
2659 error ("implicit declaration of function `%s'", name);
2660 else if (mesg_implicit_function_declaration == 1)
2661 warning ("implicit declaration of function `%s'", name);
2664 /* Return zero if the declaration NEWDECL is valid
2665 when the declaration OLDDECL (assumed to be for the same name)
2666 has already been seen.
2667 Otherwise return 1 if NEWDECL is a redefinition, 2 if it is a redeclaration,
2668 and 3 if it is a conflicting declaration. */
2670 static int
2671 redeclaration_error_message (newdecl, olddecl)
2672 tree newdecl, olddecl;
2674 if (TREE_CODE (newdecl) == TYPE_DECL)
2676 if (flag_traditional && TREE_TYPE (newdecl) == TREE_TYPE (olddecl))
2677 return 0;
2678 /* pushdecl creates distinct types for TYPE_DECLs by calling
2679 build_type_copy, so the above comparison generally fails. We do
2680 another test against the TYPE_MAIN_VARIANT of the olddecl, which
2681 is equivalent to what this code used to do before the build_type_copy
2682 call. The variant type distinction should not matter for traditional
2683 code, because it doesn't have type qualifiers. */
2684 if (flag_traditional
2685 && TYPE_MAIN_VARIANT (TREE_TYPE (olddecl)) == TREE_TYPE (newdecl))
2686 return 0;
2687 if (DECL_IN_SYSTEM_HEADER (olddecl) || DECL_IN_SYSTEM_HEADER (newdecl))
2688 return 0;
2689 return 1;
2691 else if (TREE_CODE (newdecl) == FUNCTION_DECL)
2693 /* Declarations of functions can insist on internal linkage
2694 but they can't be inconsistent with internal linkage,
2695 so there can be no error on that account.
2696 However defining the same name twice is no good. */
2697 if (DECL_INITIAL (olddecl) != 0 && DECL_INITIAL (newdecl) != 0
2698 /* However, defining once as extern inline and a second
2699 time in another way is ok. */
2700 && ! (DECL_DECLARED_INLINE_P (olddecl) && DECL_EXTERNAL (olddecl)
2701 && ! (DECL_DECLARED_INLINE_P (newdecl)
2702 && DECL_EXTERNAL (newdecl))))
2703 return 1;
2704 return 0;
2706 else if (DECL_CONTEXT (newdecl) == NULL_TREE)
2708 /* Objects declared at top level: */
2709 /* If at least one is a reference, it's ok. */
2710 if (DECL_EXTERNAL (newdecl) || DECL_EXTERNAL (olddecl))
2711 return 0;
2712 /* Reject two definitions. */
2713 if (DECL_INITIAL (olddecl) != 0 && DECL_INITIAL (newdecl) != 0)
2714 return 1;
2715 /* Now we have two tentative defs, or one tentative and one real def. */
2716 /* Insist that the linkage match. */
2717 if (TREE_PUBLIC (olddecl) != TREE_PUBLIC (newdecl))
2718 return 3;
2719 return 0;
2721 else if (current_binding_level->parm_flag
2722 && TREE_ASM_WRITTEN (olddecl) && !TREE_ASM_WRITTEN (newdecl))
2723 return 0;
2724 else
2726 /* Newdecl has block scope. If olddecl has block scope also, then
2727 reject two definitions, and reject a definition together with an
2728 external reference. Otherwise, it is OK, because newdecl must
2729 be an extern reference to olddecl. */
2730 if (!(DECL_EXTERNAL (newdecl) && DECL_EXTERNAL (olddecl))
2731 && DECL_CONTEXT (newdecl) == DECL_CONTEXT (olddecl))
2732 return 2;
2733 return 0;
2737 /* Get the LABEL_DECL corresponding to identifier ID as a label.
2738 Create one if none exists so far for the current function.
2739 This function is called for both label definitions and label references. */
2741 tree
2742 lookup_label (id)
2743 tree id;
2745 tree decl = IDENTIFIER_LABEL_VALUE (id);
2747 if (current_function_decl == 0)
2749 error ("label %s referenced outside of any function",
2750 IDENTIFIER_POINTER (id));
2751 return 0;
2754 /* Use a label already defined or ref'd with this name. */
2755 if (decl != 0)
2757 /* But not if it is inherited and wasn't declared to be inheritable. */
2758 if (DECL_CONTEXT (decl) != current_function_decl
2759 && ! C_DECLARED_LABEL_FLAG (decl))
2760 return shadow_label (id);
2761 return decl;
2764 decl = build_decl (LABEL_DECL, id, void_type_node);
2766 /* A label not explicitly declared must be local to where it's ref'd. */
2767 DECL_CONTEXT (decl) = current_function_decl;
2769 DECL_MODE (decl) = VOIDmode;
2771 /* Say where one reference is to the label,
2772 for the sake of the error if it is not defined. */
2773 DECL_SOURCE_LINE (decl) = lineno;
2774 DECL_SOURCE_FILE (decl) = input_filename;
2776 IDENTIFIER_LABEL_VALUE (id) = decl;
2778 named_labels = tree_cons (NULL_TREE, decl, named_labels);
2780 return decl;
2783 /* Make a label named NAME in the current function,
2784 shadowing silently any that may be inherited from containing functions
2785 or containing scopes.
2787 Note that valid use, if the label being shadowed
2788 comes from another scope in the same function,
2789 requires calling declare_nonlocal_label right away. */
2791 tree
2792 shadow_label (name)
2793 tree name;
2795 tree decl = IDENTIFIER_LABEL_VALUE (name);
2797 if (decl != 0)
2799 tree dup;
2801 /* Check to make sure that the label hasn't already been declared
2802 at this label scope */
2803 for (dup = named_labels; dup; dup = TREE_CHAIN (dup))
2804 if (TREE_VALUE (dup) == decl)
2806 error ("duplicate label declaration `%s'",
2807 IDENTIFIER_POINTER (name));
2808 error_with_decl (TREE_VALUE (dup),
2809 "this is a previous declaration");
2810 /* Just use the previous declaration. */
2811 return lookup_label (name);
2814 shadowed_labels = tree_cons (NULL_TREE, decl, shadowed_labels);
2815 IDENTIFIER_LABEL_VALUE (name) = decl = 0;
2818 return lookup_label (name);
2821 /* Define a label, specifying the location in the source file.
2822 Return the LABEL_DECL node for the label, if the definition is valid.
2823 Otherwise return 0. */
2825 tree
2826 define_label (filename, line, name)
2827 const char *filename;
2828 int line;
2829 tree name;
2831 tree decl = lookup_label (name);
2833 /* If label with this name is known from an outer context, shadow it. */
2834 if (decl != 0 && DECL_CONTEXT (decl) != current_function_decl)
2836 shadowed_labels = tree_cons (NULL_TREE, decl, shadowed_labels);
2837 IDENTIFIER_LABEL_VALUE (name) = 0;
2838 decl = lookup_label (name);
2841 if (warn_traditional && !in_system_header && lookup_name (name))
2842 warning_with_file_and_line (filename, line,
2843 "traditional C lacks a separate namespace for labels, identifier `%s' conflicts",
2844 IDENTIFIER_POINTER (name));
2846 if (DECL_INITIAL (decl) != 0)
2848 error_with_file_and_line (filename, line, "duplicate label `%s'",
2849 IDENTIFIER_POINTER (name));
2850 return 0;
2852 else
2854 /* Mark label as having been defined. */
2855 DECL_INITIAL (decl) = error_mark_node;
2856 /* Say where in the source. */
2857 DECL_SOURCE_FILE (decl) = filename;
2858 DECL_SOURCE_LINE (decl) = line;
2859 return decl;
2863 /* Return the list of declarations of the current level.
2864 Note that this list is in reverse order unless/until
2865 you nreverse it; and when you do nreverse it, you must
2866 store the result back using `storedecls' or you will lose. */
2868 tree
2869 getdecls ()
2871 return current_binding_level->names;
2874 /* Return the list of type-tags (for structs, etc) of the current level. */
2876 tree
2877 gettags ()
2879 return current_binding_level->tags;
2882 /* Store the list of declarations of the current level.
2883 This is done for the parameter declarations of a function being defined,
2884 after they are modified in the light of any missing parameters. */
2886 static void
2887 storedecls (decls)
2888 tree decls;
2890 current_binding_level->names = decls;
2893 /* Similarly, store the list of tags of the current level. */
2895 static void
2896 storetags (tags)
2897 tree tags;
2899 current_binding_level->tags = tags;
2902 /* Given NAME, an IDENTIFIER_NODE,
2903 return the structure (or union or enum) definition for that name.
2904 Searches binding levels from BINDING_LEVEL up to the global level.
2905 If THISLEVEL_ONLY is nonzero, searches only the specified context
2906 (but skips any tag-transparent contexts to find one that is
2907 meaningful for tags).
2908 CODE says which kind of type the caller wants;
2909 it is RECORD_TYPE or UNION_TYPE or ENUMERAL_TYPE.
2910 If the wrong kind of type is found, an error is reported. */
2912 static tree
2913 lookup_tag (code, name, binding_level, thislevel_only)
2914 enum tree_code code;
2915 struct binding_level *binding_level;
2916 tree name;
2917 int thislevel_only;
2919 struct binding_level *level;
2920 int thislevel = 1;
2922 for (level = binding_level; level; level = level->level_chain)
2924 tree tail;
2925 for (tail = level->tags; tail; tail = TREE_CHAIN (tail))
2927 if (TREE_PURPOSE (tail) == name)
2929 if (TREE_CODE (TREE_VALUE (tail)) != code)
2931 /* Definition isn't the kind we were looking for. */
2932 pending_invalid_xref = name;
2933 pending_invalid_xref_file = input_filename;
2934 pending_invalid_xref_line = lineno;
2935 /* If in the same binding level as a declaration as a tag
2936 of a different type, this must not be allowed to
2937 shadow that tag, so give the error immediately.
2938 (For example, "struct foo; union foo;" is invalid.) */
2939 if (thislevel)
2940 pending_xref_error ();
2942 return TREE_VALUE (tail);
2945 if (! level->tag_transparent)
2947 if (thislevel_only)
2948 return NULL_TREE;
2949 thislevel = 0;
2952 return NULL_TREE;
2955 /* Print an error message now
2956 for a recent invalid struct, union or enum cross reference.
2957 We don't print them immediately because they are not invalid
2958 when used in the `struct foo;' construct for shadowing. */
2960 void
2961 pending_xref_error ()
2963 if (pending_invalid_xref != 0)
2964 error_with_file_and_line (pending_invalid_xref_file,
2965 pending_invalid_xref_line,
2966 "`%s' defined as wrong kind of tag",
2967 IDENTIFIER_POINTER (pending_invalid_xref));
2968 pending_invalid_xref = 0;
2971 /* Given a type, find the tag that was defined for it and return the tag name.
2972 Otherwise return 0. */
2974 static tree
2975 lookup_tag_reverse (type)
2976 tree type;
2978 struct binding_level *level;
2980 for (level = current_binding_level; level; level = level->level_chain)
2982 tree tail;
2983 for (tail = level->tags; tail; tail = TREE_CHAIN (tail))
2985 if (TREE_VALUE (tail) == type)
2986 return TREE_PURPOSE (tail);
2989 return NULL_TREE;
2992 /* Look up NAME in the current binding level and its superiors
2993 in the namespace of variables, functions and typedefs.
2994 Return a ..._DECL node of some kind representing its definition,
2995 or return 0 if it is undefined. */
2997 tree
2998 lookup_name (name)
2999 tree name;
3001 tree val;
3003 if (current_binding_level != global_binding_level
3004 && IDENTIFIER_LOCAL_VALUE (name))
3005 val = IDENTIFIER_LOCAL_VALUE (name);
3006 else
3007 val = IDENTIFIER_GLOBAL_VALUE (name);
3008 return val;
3011 /* Similar to `lookup_name' but look only at current binding level. */
3013 tree
3014 lookup_name_current_level (name)
3015 tree name;
3017 tree t;
3019 if (current_binding_level == global_binding_level)
3020 return IDENTIFIER_GLOBAL_VALUE (name);
3022 if (IDENTIFIER_LOCAL_VALUE (name) == 0)
3023 return 0;
3025 for (t = current_binding_level->names; t; t = TREE_CHAIN (t))
3026 if (DECL_NAME (t) == name)
3027 break;
3029 return t;
3032 /* Mark ARG for GC. */
3034 static void
3035 mark_binding_level (arg)
3036 void *arg;
3038 struct binding_level *level = *(struct binding_level **) arg;
3040 for (; level != 0; level = level->level_chain)
3042 ggc_mark_tree (level->names);
3043 ggc_mark_tree (level->tags);
3044 ggc_mark_tree (level->shadowed);
3045 ggc_mark_tree (level->blocks);
3046 ggc_mark_tree (level->this_block);
3047 ggc_mark_tree (level->parm_order);
3051 /* Create the predefined scalar types of C,
3052 and some nodes representing standard constants (0, 1, (void *) 0).
3053 Initialize the global binding level.
3054 Make definitions for built-in primitive functions. */
3056 void
3057 c_init_decl_processing ()
3059 tree endlink;
3060 tree ptr_ftype_void, ptr_ftype_ptr;
3062 /* Adds some ggc roots, and reserved words for c-parse.in. */
3063 c_parse_init ();
3065 current_function_decl = NULL;
3066 named_labels = NULL;
3067 current_binding_level = NULL_BINDING_LEVEL;
3068 free_binding_level = NULL_BINDING_LEVEL;
3070 /* Make the binding_level structure for global names. */
3071 pushlevel (0);
3072 global_binding_level = current_binding_level;
3074 build_common_tree_nodes (flag_signed_char);
3076 c_common_nodes_and_builtins ();
3078 boolean_type_node = integer_type_node;
3079 boolean_true_node = integer_one_node;
3080 boolean_false_node = integer_zero_node;
3082 c_bool_type_node = make_unsigned_type (BOOL_TYPE_SIZE);
3083 TREE_SET_CODE (c_bool_type_node, BOOLEAN_TYPE);
3084 TYPE_MAX_VALUE (c_bool_type_node) = build_int_2 (1, 0);
3085 TREE_TYPE (TYPE_MAX_VALUE (c_bool_type_node)) = c_bool_type_node;
3086 TYPE_PRECISION (c_bool_type_node) = 1;
3087 pushdecl (build_decl (TYPE_DECL, get_identifier ("_Bool"),
3088 c_bool_type_node));
3089 c_bool_false_node = build_int_2 (0, 0);
3090 TREE_TYPE (c_bool_false_node) = c_bool_type_node;
3091 c_bool_true_node = build_int_2 (1, 0);
3092 TREE_TYPE (c_bool_true_node) = c_bool_type_node;
3094 endlink = void_list_node;
3095 ptr_ftype_void = build_function_type (ptr_type_node, endlink);
3096 ptr_ftype_ptr
3097 = build_function_type (ptr_type_node,
3098 tree_cons (NULL_TREE, ptr_type_node, endlink));
3100 /* Types which are common to the fortran compiler and libf2c. When
3101 changing these, you also need to be concerned with f/com.h. */
3103 if (TYPE_PRECISION (float_type_node)
3104 == TYPE_PRECISION (long_integer_type_node))
3106 g77_integer_type_node = long_integer_type_node;
3107 g77_uinteger_type_node = long_unsigned_type_node;
3109 else if (TYPE_PRECISION (float_type_node)
3110 == TYPE_PRECISION (integer_type_node))
3112 g77_integer_type_node = integer_type_node;
3113 g77_uinteger_type_node = unsigned_type_node;
3115 else
3116 g77_integer_type_node = g77_uinteger_type_node = NULL_TREE;
3118 if (g77_integer_type_node != NULL_TREE)
3120 pushdecl (build_decl (TYPE_DECL, get_identifier ("__g77_integer"),
3121 g77_integer_type_node));
3122 pushdecl (build_decl (TYPE_DECL, get_identifier ("__g77_uinteger"),
3123 g77_uinteger_type_node));
3126 if (TYPE_PRECISION (float_type_node) * 2
3127 == TYPE_PRECISION (long_integer_type_node))
3129 g77_longint_type_node = long_integer_type_node;
3130 g77_ulongint_type_node = long_unsigned_type_node;
3132 else if (TYPE_PRECISION (float_type_node) * 2
3133 == TYPE_PRECISION (long_long_integer_type_node))
3135 g77_longint_type_node = long_long_integer_type_node;
3136 g77_ulongint_type_node = long_long_unsigned_type_node;
3138 else
3139 g77_longint_type_node = g77_ulongint_type_node = NULL_TREE;
3141 if (g77_longint_type_node != NULL_TREE)
3143 pushdecl (build_decl (TYPE_DECL, get_identifier ("__g77_longint"),
3144 g77_longint_type_node));
3145 pushdecl (build_decl (TYPE_DECL, get_identifier ("__g77_ulongint"),
3146 g77_ulongint_type_node));
3149 pedantic_lvalues = pedantic;
3151 make_fname_decl = c_make_fname_decl;
3152 start_fname_decls ();
3154 incomplete_decl_finalize_hook = finish_incomplete_decl;
3156 /* Record our roots. */
3158 ggc_add_tree_root (c_global_trees, CTI_MAX);
3159 ggc_add_root (&c_stmt_tree, 1, sizeof c_stmt_tree, mark_stmt_tree);
3160 ggc_add_tree_root (&c_scope_stmt_stack, 1);
3161 ggc_add_tree_root (&named_labels, 1);
3162 ggc_add_tree_root (&shadowed_labels, 1);
3163 ggc_add_root (&current_binding_level, 1, sizeof current_binding_level,
3164 mark_binding_level);
3165 ggc_add_root (&label_level_chain, 1, sizeof label_level_chain,
3166 mark_binding_level);
3167 ggc_add_tree_root (&static_ctors, 1);
3168 ggc_add_tree_root (&static_dtors, 1);
3171 /* Create the VAR_DECL for __FUNCTION__ etc. ID is the name to give the
3172 decl, NAME is the initialization string and TYPE_DEP indicates whether
3173 NAME depended on the type of the function. As we don't yet implement
3174 delayed emission of static data, we mark the decl as emitted
3175 so it is not placed in the output. Anything using it must therefore pull
3176 out the STRING_CST initializer directly. This does mean that these names
3177 are string merging candidates, which is wrong for C99's __func__. FIXME. */
3179 static tree
3180 c_make_fname_decl (id, type_dep)
3181 tree id;
3182 int type_dep;
3184 const char *name = fname_as_string (type_dep);
3185 tree decl, type, init;
3186 size_t length = strlen (name);
3188 type = build_array_type
3189 (build_qualified_type (char_type_node, TYPE_QUAL_CONST),
3190 build_index_type (size_int (length)));
3192 decl = build_decl (VAR_DECL, id, type);
3193 /* We don't push the decl, so have to set its context here. */
3194 DECL_CONTEXT (decl) = current_function_decl;
3196 TREE_STATIC (decl) = 1;
3197 TREE_READONLY (decl) = 1;
3198 DECL_ARTIFICIAL (decl) = 1;
3200 init = build_string (length + 1, name);
3201 TREE_TYPE (init) = type;
3202 DECL_INITIAL (decl) = init;
3204 TREE_USED (decl) = 1;
3206 finish_decl (decl, init, NULL_TREE);
3208 return decl;
3211 /* Return a definition for a builtin function named NAME and whose data type
3212 is TYPE. TYPE should be a function type with argument types.
3213 FUNCTION_CODE tells later passes how to compile calls to this function.
3214 See tree.h for its possible values.
3216 If LIBRARY_NAME is nonzero, use that for DECL_ASSEMBLER_NAME,
3217 the name to be called if we can't opencode the function. */
3219 tree
3220 builtin_function (name, type, function_code, class, library_name)
3221 const char *name;
3222 tree type;
3223 int function_code;
3224 enum built_in_class class;
3225 const char *library_name;
3227 tree decl = build_decl (FUNCTION_DECL, get_identifier (name), type);
3228 DECL_EXTERNAL (decl) = 1;
3229 TREE_PUBLIC (decl) = 1;
3230 /* If -traditional, permit redefining a builtin function any way you like.
3231 (Though really, if the program redefines these functions,
3232 it probably won't work right unless compiled with -fno-builtin.) */
3233 if (flag_traditional && name[0] != '_')
3234 DECL_BUILT_IN_NONANSI (decl) = 1;
3235 if (library_name)
3236 SET_DECL_ASSEMBLER_NAME (decl, get_identifier (library_name));
3237 make_decl_rtl (decl, NULL);
3238 pushdecl (decl);
3239 DECL_BUILT_IN_CLASS (decl) = class;
3240 DECL_FUNCTION_CODE (decl) = function_code;
3242 /* The return builtins leave the current function. */
3243 if (function_code == BUILT_IN_RETURN || function_code == BUILT_IN_EH_RETURN)
3244 TREE_THIS_VOLATILE (decl) = 1;
3246 /* Warn if a function in the namespace for users
3247 is used without an occasion to consider it declared. */
3248 if (name[0] != '_' || name[1] != '_')
3249 C_DECL_ANTICIPATED (decl) = 1;
3251 /* Possibly apply some default attributes to this built-in function. */
3252 decl_attributes (&decl, NULL_TREE, 0);
3254 return decl;
3257 /* Apply default attributes to a function, if a system function with default
3258 attributes. */
3260 void
3261 insert_default_attributes (decl)
3262 tree decl;
3264 if (!TREE_PUBLIC (decl))
3265 return;
3266 c_common_insert_default_attributes (decl);
3269 /* Called when a declaration is seen that contains no names to declare.
3270 If its type is a reference to a structure, union or enum inherited
3271 from a containing scope, shadow that tag name for the current scope
3272 with a forward reference.
3273 If its type defines a new named structure or union
3274 or defines an enum, it is valid but we need not do anything here.
3275 Otherwise, it is an error. */
3277 void
3278 shadow_tag (declspecs)
3279 tree declspecs;
3281 shadow_tag_warned (declspecs, 0);
3284 void
3285 shadow_tag_warned (declspecs, warned)
3286 tree declspecs;
3287 int warned;
3288 /* 1 => we have done a pedwarn. 2 => we have done a warning, but
3289 no pedwarn. */
3291 int found_tag = 0;
3292 tree link;
3293 tree specs, attrs;
3295 pending_invalid_xref = 0;
3297 /* Remove the attributes from declspecs, since they will confuse the
3298 following code. */
3299 split_specs_attrs (declspecs, &specs, &attrs);
3301 for (link = specs; link; link = TREE_CHAIN (link))
3303 tree value = TREE_VALUE (link);
3304 enum tree_code code = TREE_CODE (value);
3306 if (code == RECORD_TYPE || code == UNION_TYPE || code == ENUMERAL_TYPE)
3307 /* Used to test also that TYPE_SIZE (value) != 0.
3308 That caused warning for `struct foo;' at top level in the file. */
3310 tree name = lookup_tag_reverse (value);
3311 tree t;
3313 found_tag++;
3315 if (name == 0)
3317 if (warned != 1 && code != ENUMERAL_TYPE)
3318 /* Empty unnamed enum OK */
3320 pedwarn ("unnamed struct/union that defines no instances");
3321 warned = 1;
3324 else
3326 t = lookup_tag (code, name, current_binding_level, 1);
3328 if (t == 0)
3330 t = make_node (code);
3331 pushtag (name, t);
3335 else
3337 if (!warned && ! in_system_header)
3339 warning ("useless keyword or type name in empty declaration");
3340 warned = 2;
3345 if (found_tag > 1)
3346 error ("two types specified in one empty declaration");
3348 if (warned != 1)
3350 if (found_tag == 0)
3351 pedwarn ("empty declaration");
3355 /* Construct an array declarator. EXPR is the expression inside [], or
3356 NULL_TREE. QUALS are the type qualifiers inside the [] (to be applied
3357 to the pointer to which a parameter array is converted). STATIC_P is
3358 non-zero if "static" is inside the [], zero otherwise. VLA_UNSPEC_P
3359 is non-zero is the array is [*], a VLA of unspecified length which is
3360 nevertheless a complete type (not currently implemented by GCC),
3361 zero otherwise. The declarator is constructed as an ARRAY_REF
3362 (to be decoded by grokdeclarator), whose operand 0 is what's on the
3363 left of the [] (filled by in set_array_declarator_type) and operand 1
3364 is the expression inside; whose TREE_TYPE is the type qualifiers and
3365 which has TREE_STATIC set if "static" is used. */
3367 tree
3368 build_array_declarator (expr, quals, static_p, vla_unspec_p)
3369 tree expr;
3370 tree quals;
3371 int static_p;
3372 int vla_unspec_p;
3374 tree decl;
3375 decl = build_nt (ARRAY_REF, NULL_TREE, expr);
3376 TREE_TYPE (decl) = quals;
3377 TREE_STATIC (decl) = (static_p ? 1 : 0);
3378 if (pedantic && !flag_isoc99)
3380 if (static_p || quals != NULL_TREE)
3381 pedwarn ("ISO C89 does not support `static' or type qualifiers in parameter array declarators");
3382 if (vla_unspec_p)
3383 pedwarn ("ISO C89 does not support `[*]' array declarators");
3385 if (vla_unspec_p)
3386 warning ("GCC does not yet properly implement `[*]' array declarators");
3387 return decl;
3390 /* Set the type of an array declarator. DECL is the declarator, as
3391 constructed by build_array_declarator; TYPE is what appears on the left
3392 of the [] and goes in operand 0. ABSTRACT_P is non-zero if it is an
3393 abstract declarator, zero otherwise; this is used to reject static and
3394 type qualifiers in abstract declarators, where they are not in the
3395 C99 grammar. */
3397 tree
3398 set_array_declarator_type (decl, type, abstract_p)
3399 tree decl;
3400 tree type;
3401 int abstract_p;
3403 TREE_OPERAND (decl, 0) = type;
3404 if (abstract_p && (TREE_TYPE (decl) != NULL_TREE || TREE_STATIC (decl)))
3405 error ("static or type qualifiers in abstract declarator");
3406 return decl;
3409 /* Decode a "typename", such as "int **", returning a ..._TYPE node. */
3411 tree
3412 groktypename (typename)
3413 tree typename;
3415 tree specs, attrs;
3417 if (TREE_CODE (typename) != TREE_LIST)
3418 return typename;
3420 split_specs_attrs (TREE_PURPOSE (typename), &specs, &attrs);
3422 typename = grokdeclarator (TREE_VALUE (typename), specs, TYPENAME, 0);
3424 /* Apply attributes. */
3425 decl_attributes (&typename, attrs, 0);
3427 return typename;
3430 /* Return a PARM_DECL node for a given pair of specs and declarator. */
3432 tree
3433 groktypename_in_parm_context (typename)
3434 tree typename;
3436 if (TREE_CODE (typename) != TREE_LIST)
3437 return typename;
3438 return grokdeclarator (TREE_VALUE (typename),
3439 TREE_PURPOSE (typename),
3440 PARM, 0);
3443 /* Decode a declarator in an ordinary declaration or data definition.
3444 This is called as soon as the type information and variable name
3445 have been parsed, before parsing the initializer if any.
3446 Here we create the ..._DECL node, fill in its type,
3447 and put it on the list of decls for the current context.
3448 The ..._DECL node is returned as the value.
3450 Exception: for arrays where the length is not specified,
3451 the type is left null, to be filled in by `finish_decl'.
3453 Function definitions do not come here; they go to start_function
3454 instead. However, external and forward declarations of functions
3455 do go through here. Structure field declarations are done by
3456 grokfield and not through here. */
3458 tree
3459 start_decl (declarator, declspecs, initialized, attributes)
3460 tree declarator, declspecs;
3461 int initialized;
3462 tree attributes;
3464 tree decl;
3465 tree tem;
3467 /* An object declared as __attribute__((deprecated)) suppresses
3468 warnings of uses of other deprecated items. */
3469 if (lookup_attribute ("deprecated", attributes))
3470 deprecated_state = DEPRECATED_SUPPRESS;
3472 decl = grokdeclarator (declarator, declspecs,
3473 NORMAL, initialized);
3475 deprecated_state = DEPRECATED_NORMAL;
3477 if (warn_main > 0 && TREE_CODE (decl) != FUNCTION_DECL
3478 && MAIN_NAME_P (DECL_NAME (decl)))
3479 warning_with_decl (decl, "`%s' is usually a function");
3481 if (initialized)
3482 /* Is it valid for this decl to have an initializer at all?
3483 If not, set INITIALIZED to zero, which will indirectly
3484 tell `finish_decl' to ignore the initializer once it is parsed. */
3485 switch (TREE_CODE (decl))
3487 case TYPE_DECL:
3488 /* typedef foo = bar means give foo the same type as bar.
3489 We haven't parsed bar yet, so `finish_decl' will fix that up.
3490 Any other case of an initialization in a TYPE_DECL is an error. */
3491 if (pedantic || list_length (declspecs) > 1)
3493 error ("typedef `%s' is initialized",
3494 IDENTIFIER_POINTER (DECL_NAME (decl)));
3495 initialized = 0;
3497 break;
3499 case FUNCTION_DECL:
3500 error ("function `%s' is initialized like a variable",
3501 IDENTIFIER_POINTER (DECL_NAME (decl)));
3502 initialized = 0;
3503 break;
3505 case PARM_DECL:
3506 /* DECL_INITIAL in a PARM_DECL is really DECL_ARG_TYPE. */
3507 error ("parameter `%s' is initialized",
3508 IDENTIFIER_POINTER (DECL_NAME (decl)));
3509 initialized = 0;
3510 break;
3512 default:
3513 /* Don't allow initializations for incomplete types
3514 except for arrays which might be completed by the initialization. */
3516 /* This can happen if the array size is an undefined macro. We already
3517 gave a warning, so we don't need another one. */
3518 if (TREE_TYPE (decl) == error_mark_node)
3519 initialized = 0;
3520 else if (COMPLETE_TYPE_P (TREE_TYPE (decl)))
3522 /* A complete type is ok if size is fixed. */
3524 if (TREE_CODE (TYPE_SIZE (TREE_TYPE (decl))) != INTEGER_CST
3525 || C_DECL_VARIABLE_SIZE (decl))
3527 error ("variable-sized object may not be initialized");
3528 initialized = 0;
3531 else if (TREE_CODE (TREE_TYPE (decl)) != ARRAY_TYPE)
3533 error ("variable `%s' has initializer but incomplete type",
3534 IDENTIFIER_POINTER (DECL_NAME (decl)));
3535 initialized = 0;
3537 else if (!COMPLETE_TYPE_P (TREE_TYPE (TREE_TYPE (decl))))
3539 error ("elements of array `%s' have incomplete type",
3540 IDENTIFIER_POINTER (DECL_NAME (decl)));
3541 initialized = 0;
3545 if (initialized)
3547 #if 0
3548 /* Seems redundant with grokdeclarator. */
3549 if (current_binding_level != global_binding_level
3550 && DECL_EXTERNAL (decl)
3551 && TREE_CODE (decl) != FUNCTION_DECL)
3552 warning ("declaration of `%s' has `extern' and is initialized",
3553 IDENTIFIER_POINTER (DECL_NAME (decl)));
3554 #endif
3555 DECL_EXTERNAL (decl) = 0;
3556 if (current_binding_level == global_binding_level)
3557 TREE_STATIC (decl) = 1;
3559 /* Tell `pushdecl' this is an initialized decl
3560 even though we don't yet have the initializer expression.
3561 Also tell `finish_decl' it may store the real initializer. */
3562 DECL_INITIAL (decl) = error_mark_node;
3565 /* If this is a function declaration, write a record describing it to the
3566 prototypes file (if requested). */
3568 if (TREE_CODE (decl) == FUNCTION_DECL)
3569 gen_aux_info_record (decl, 0, 0, TYPE_ARG_TYPES (TREE_TYPE (decl)) != 0);
3571 /* ANSI specifies that a tentative definition which is not merged with
3572 a non-tentative definition behaves exactly like a definition with an
3573 initializer equal to zero. (Section 3.7.2)
3574 -fno-common gives strict ANSI behavior. Usually you don't want it.
3575 This matters only for variables with external linkage. */
3576 if (! flag_no_common || ! TREE_PUBLIC (decl))
3577 DECL_COMMON (decl) = 1;
3579 /* Set attributes here so if duplicate decl, will have proper attributes. */
3580 decl_attributes (&decl, attributes, 0);
3582 /* If #pragma weak was used, mark the decl weak now. */
3583 if (current_binding_level == global_binding_level)
3584 maybe_apply_pragma_weak (decl);
3586 if (TREE_CODE (decl) == FUNCTION_DECL
3587 && DECL_DECLARED_INLINE_P (decl)
3588 && DECL_UNINLINABLE (decl)
3589 && lookup_attribute ("noinline", DECL_ATTRIBUTES (decl)))
3590 warning_with_decl (decl,
3591 "inline function `%s' given attribute noinline");
3593 /* Add this decl to the current binding level.
3594 TEM may equal DECL or it may be a previous decl of the same name. */
3595 tem = pushdecl (decl);
3597 /* For a local variable, define the RTL now. */
3598 if (current_binding_level != global_binding_level
3599 /* But not if this is a duplicate decl
3600 and we preserved the rtl from the previous one
3601 (which may or may not happen). */
3602 && !DECL_RTL_SET_P (tem)
3603 && !DECL_CONTEXT (tem))
3605 if (TREE_TYPE (tem) != error_mark_node
3606 && COMPLETE_TYPE_P (TREE_TYPE (tem)))
3607 expand_decl (tem);
3608 else if (TREE_CODE (TREE_TYPE (tem)) == ARRAY_TYPE
3609 && DECL_INITIAL (tem) != 0)
3610 expand_decl (tem);
3613 return tem;
3616 /* Finish processing of a declaration;
3617 install its initial value.
3618 If the length of an array type is not known before,
3619 it must be determined now, from the initial value, or it is an error. */
3621 void
3622 finish_decl (decl, init, asmspec_tree)
3623 tree decl, init;
3624 tree asmspec_tree;
3626 tree type = TREE_TYPE (decl);
3627 int was_incomplete = (DECL_SIZE (decl) == 0);
3628 const char *asmspec = 0;
3630 /* If a name was specified, get the string. */
3631 if (current_binding_level == global_binding_level)
3632 asmspec_tree = maybe_apply_renaming_pragma (decl, asmspec_tree);
3633 if (asmspec_tree)
3634 asmspec = TREE_STRING_POINTER (asmspec_tree);
3636 /* If `start_decl' didn't like having an initialization, ignore it now. */
3637 if (init != 0 && DECL_INITIAL (decl) == 0)
3638 init = 0;
3640 /* Don't crash if parm is initialized. */
3641 if (TREE_CODE (decl) == PARM_DECL)
3642 init = 0;
3644 if (init)
3646 if (TREE_CODE (decl) != TYPE_DECL)
3647 store_init_value (decl, init);
3648 else
3650 /* typedef foo = bar; store the type of bar as the type of foo. */
3651 TREE_TYPE (decl) = TREE_TYPE (init);
3652 DECL_INITIAL (decl) = init = 0;
3656 /* Deduce size of array from initialization, if not already known */
3657 if (TREE_CODE (type) == ARRAY_TYPE
3658 && TYPE_DOMAIN (type) == 0
3659 && TREE_CODE (decl) != TYPE_DECL)
3661 int do_default
3662 = (TREE_STATIC (decl)
3663 /* Even if pedantic, an external linkage array
3664 may have incomplete type at first. */
3665 ? pedantic && !TREE_PUBLIC (decl)
3666 : !DECL_EXTERNAL (decl));
3667 int failure
3668 = complete_array_type (type, DECL_INITIAL (decl), do_default);
3670 /* Get the completed type made by complete_array_type. */
3671 type = TREE_TYPE (decl);
3673 if (failure == 1)
3674 error_with_decl (decl, "initializer fails to determine size of `%s'");
3676 else if (failure == 2)
3678 if (do_default)
3679 error_with_decl (decl, "array size missing in `%s'");
3680 /* If a `static' var's size isn't known,
3681 make it extern as well as static, so it does not get
3682 allocated.
3683 If it is not `static', then do not mark extern;
3684 finish_incomplete_decl will give it a default size
3685 and it will get allocated. */
3686 else if (!pedantic && TREE_STATIC (decl) && ! TREE_PUBLIC (decl))
3687 DECL_EXTERNAL (decl) = 1;
3690 /* TYPE_MAX_VALUE is always one less than the number of elements
3691 in the array, because we start counting at zero. Therefore,
3692 warn only if the value is less than zero. */
3693 else if (pedantic && TYPE_DOMAIN (type) != 0
3694 && tree_int_cst_sgn (TYPE_MAX_VALUE (TYPE_DOMAIN (type))) < 0)
3695 error_with_decl (decl, "zero or negative size array `%s'");
3697 layout_decl (decl, 0);
3700 if (TREE_CODE (decl) == VAR_DECL)
3702 if (DECL_SIZE (decl) == 0 && TREE_TYPE (decl) != error_mark_node
3703 && COMPLETE_TYPE_P (TREE_TYPE (decl)))
3704 layout_decl (decl, 0);
3706 if (DECL_SIZE (decl) == 0
3707 /* Don't give an error if we already gave one earlier. */
3708 && TREE_TYPE (decl) != error_mark_node
3709 && (TREE_STATIC (decl)
3711 /* A static variable with an incomplete type
3712 is an error if it is initialized.
3713 Also if it is not file scope.
3714 Otherwise, let it through, but if it is not `extern'
3715 then it may cause an error message later. */
3716 (DECL_INITIAL (decl) != 0
3717 || DECL_CONTEXT (decl) != 0)
3719 /* An automatic variable with an incomplete type
3720 is an error. */
3721 !DECL_EXTERNAL (decl)))
3723 error_with_decl (decl, "storage size of `%s' isn't known");
3724 TREE_TYPE (decl) = error_mark_node;
3727 if ((DECL_EXTERNAL (decl) || TREE_STATIC (decl))
3728 && DECL_SIZE (decl) != 0)
3730 if (TREE_CODE (DECL_SIZE (decl)) == INTEGER_CST)
3731 constant_expression_warning (DECL_SIZE (decl));
3732 else
3733 error_with_decl (decl, "storage size of `%s' isn't constant");
3736 if (TREE_USED (type))
3737 TREE_USED (decl) = 1;
3740 /* If this is a function and an assembler name is specified, it isn't
3741 builtin any more. Also reset DECL_RTL so we can give it its new
3742 name. */
3743 if (TREE_CODE (decl) == FUNCTION_DECL && asmspec)
3745 DECL_BUILT_IN_CLASS (decl) = NOT_BUILT_IN;
3746 SET_DECL_RTL (decl, NULL_RTX);
3747 SET_DECL_ASSEMBLER_NAME (decl, get_identifier (asmspec));
3750 /* Output the assembler code and/or RTL code for variables and functions,
3751 unless the type is an undefined structure or union.
3752 If not, it will get done when the type is completed. */
3754 if (TREE_CODE (decl) == VAR_DECL || TREE_CODE (decl) == FUNCTION_DECL)
3756 /* This is a no-op in c-lang.c or something real in objc-actions.c. */
3757 maybe_objc_check_decl (decl);
3759 if (!DECL_CONTEXT (decl))
3761 if (DECL_INITIAL (decl) == NULL_TREE
3762 || DECL_INITIAL (decl) == error_mark_node)
3763 /* Don't output anything
3764 when a tentative file-scope definition is seen.
3765 But at end of compilation, do output code for them. */
3766 DECL_DEFER_OUTPUT (decl) = 1;
3767 rest_of_decl_compilation (decl, asmspec,
3768 (DECL_CONTEXT (decl) == 0
3769 || TREE_ASM_WRITTEN (decl)), 0);
3771 else
3773 /* This is a local variable. If there is an ASMSPEC, the
3774 user has requested that we handle it specially. */
3775 if (asmspec)
3777 /* In conjunction with an ASMSPEC, the `register'
3778 keyword indicates that we should place the variable
3779 in a particular register. */
3780 if (DECL_REGISTER (decl))
3781 DECL_C_HARD_REGISTER (decl) = 1;
3783 /* If this is not a static variable, issue a warning.
3784 It doesn't make any sense to give an ASMSPEC for an
3785 ordinary, non-register local variable. Historically,
3786 GCC has accepted -- but ignored -- the ASMSPEC in
3787 this case. */
3788 if (TREE_CODE (decl) == VAR_DECL
3789 && !DECL_REGISTER (decl)
3790 && !TREE_STATIC (decl))
3791 warning_with_decl (decl,
3792 "ignoring asm-specifier for non-static local variable `%s'");
3793 else
3794 SET_DECL_ASSEMBLER_NAME (decl, get_identifier (asmspec));
3797 if (TREE_CODE (decl) != FUNCTION_DECL)
3798 add_decl_stmt (decl);
3801 if (DECL_CONTEXT (decl) != 0)
3803 /* Recompute the RTL of a local array now
3804 if it used to be an incomplete type. */
3805 if (was_incomplete
3806 && ! TREE_STATIC (decl) && ! DECL_EXTERNAL (decl))
3808 /* If we used it already as memory, it must stay in memory. */
3809 TREE_ADDRESSABLE (decl) = TREE_USED (decl);
3810 /* If it's still incomplete now, no init will save it. */
3811 if (DECL_SIZE (decl) == 0)
3812 DECL_INITIAL (decl) = 0;
3817 if (TREE_CODE (decl) == TYPE_DECL)
3819 /* This is a no-op in c-lang.c or something real in objc-actions.c. */
3820 maybe_objc_check_decl (decl);
3821 rest_of_decl_compilation (decl, NULL, DECL_CONTEXT (decl) == 0, 0);
3824 /* At the end of a declaration, throw away any variable type sizes
3825 of types defined inside that declaration. There is no use
3826 computing them in the following function definition. */
3827 if (current_binding_level == global_binding_level)
3828 get_pending_sizes ();
3831 /* If DECL has a cleanup, build and return that cleanup here.
3832 This is a callback called by expand_expr. */
3834 tree
3835 maybe_build_cleanup (decl)
3836 tree decl ATTRIBUTE_UNUSED;
3838 /* There are no cleanups in C. */
3839 return NULL_TREE;
3842 /* Given a parsed parameter declaration,
3843 decode it into a PARM_DECL and push that on the current binding level.
3844 Also, for the sake of forward parm decls,
3845 record the given order of parms in `parm_order'. */
3847 void
3848 push_parm_decl (parm)
3849 tree parm;
3851 tree decl;
3852 int old_immediate_size_expand = immediate_size_expand;
3853 /* Don't try computing parm sizes now -- wait till fn is called. */
3854 immediate_size_expand = 0;
3856 decl = grokdeclarator (TREE_VALUE (TREE_PURPOSE (parm)),
3857 TREE_PURPOSE (TREE_PURPOSE (parm)), PARM, 0);
3858 decl_attributes (&decl, TREE_VALUE (parm), 0);
3860 #if 0
3861 if (DECL_NAME (decl))
3863 tree olddecl;
3864 olddecl = lookup_name (DECL_NAME (decl));
3865 if (pedantic && olddecl != 0 && TREE_CODE (olddecl) == TYPE_DECL)
3866 pedwarn_with_decl (decl,
3867 "ISO C forbids parameter `%s' shadowing typedef");
3869 #endif
3871 decl = pushdecl (decl);
3873 immediate_size_expand = old_immediate_size_expand;
3875 current_binding_level->parm_order
3876 = tree_cons (NULL_TREE, decl, current_binding_level->parm_order);
3878 /* Add this decl to the current binding level. */
3879 finish_decl (decl, NULL_TREE, NULL_TREE);
3882 /* Clear the given order of parms in `parm_order'.
3883 Used at start of parm list,
3884 and also at semicolon terminating forward decls. */
3886 void
3887 clear_parm_order ()
3889 current_binding_level->parm_order = NULL_TREE;
3892 /* Build a COMPOUND_LITERAL_EXPR. TYPE is the type given in the compound
3893 literal, which may be an incomplete array type completed by the
3894 initializer; INIT is a CONSTRUCTOR that initializes the compound
3895 literal. */
3897 tree
3898 build_compound_literal (type, init)
3899 tree type;
3900 tree init;
3902 /* We do not use start_decl here because we have a type, not a declarator;
3903 and do not use finish_decl because the decl should be stored inside
3904 the COMPOUND_LITERAL_EXPR rather than added elsewhere as a DECL_STMT. */
3905 tree decl = build_decl (VAR_DECL, NULL_TREE, type);
3906 tree complit;
3907 tree stmt;
3908 DECL_EXTERNAL (decl) = 0;
3909 TREE_PUBLIC (decl) = 0;
3910 TREE_STATIC (decl) = (current_binding_level == global_binding_level);
3911 DECL_CONTEXT (decl) = current_function_decl;
3912 TREE_USED (decl) = 1;
3913 TREE_TYPE (decl) = type;
3914 store_init_value (decl, init);
3916 if (TREE_CODE (type) == ARRAY_TYPE && !COMPLETE_TYPE_P (type))
3918 int failure = complete_array_type (type, DECL_INITIAL (decl), 1);
3919 if (failure)
3920 abort ();
3923 type = TREE_TYPE (decl);
3924 if (type == error_mark_node || !COMPLETE_TYPE_P (type))
3925 return error_mark_node;
3927 stmt = build_stmt (DECL_STMT, decl);
3928 complit = build1 (COMPOUND_LITERAL_EXPR, TREE_TYPE (decl), stmt);
3929 TREE_SIDE_EFFECTS (complit) = 1;
3931 layout_decl (decl, 0);
3933 if (TREE_STATIC (decl))
3935 /* This decl needs a name for the assembler output. We also need
3936 a unique suffix to be added to the name, for which DECL_CONTEXT
3937 must be set. */
3938 DECL_NAME (decl) = get_identifier ("__compound_literal");
3939 DECL_CONTEXT (decl) = complit;
3940 rest_of_decl_compilation (decl, NULL, 1, 0);
3941 DECL_CONTEXT (decl) = NULL_TREE;
3944 return complit;
3947 /* Make TYPE a complete type based on INITIAL_VALUE.
3948 Return 0 if successful, 1 if INITIAL_VALUE can't be deciphered,
3949 2 if there was no information (in which case assume 1 if DO_DEFAULT). */
3952 complete_array_type (type, initial_value, do_default)
3953 tree type;
3954 tree initial_value;
3955 int do_default;
3957 tree maxindex = NULL_TREE;
3958 int value = 0;
3960 if (initial_value)
3962 /* Note MAXINDEX is really the maximum index,
3963 one less than the size. */
3964 if (TREE_CODE (initial_value) == STRING_CST)
3966 int eltsize
3967 = int_size_in_bytes (TREE_TYPE (TREE_TYPE (initial_value)));
3968 maxindex = build_int_2 ((TREE_STRING_LENGTH (initial_value)
3969 / eltsize) - 1, 0);
3971 else if (TREE_CODE (initial_value) == CONSTRUCTOR)
3973 tree elts = CONSTRUCTOR_ELTS (initial_value);
3974 maxindex = build_int_2 (-1, -1);
3975 for (; elts; elts = TREE_CHAIN (elts))
3977 if (TREE_PURPOSE (elts))
3978 maxindex = TREE_PURPOSE (elts);
3979 else
3980 maxindex = fold (build (PLUS_EXPR, integer_type_node,
3981 maxindex, integer_one_node));
3983 maxindex = copy_node (maxindex);
3985 else
3987 /* Make an error message unless that happened already. */
3988 if (initial_value != error_mark_node)
3989 value = 1;
3991 /* Prevent further error messages. */
3992 maxindex = build_int_2 (0, 0);
3996 if (!maxindex)
3998 if (do_default)
3999 maxindex = build_int_2 (0, 0);
4000 value = 2;
4003 if (maxindex)
4005 TYPE_DOMAIN (type) = build_index_type (maxindex);
4006 if (!TREE_TYPE (maxindex))
4007 TREE_TYPE (maxindex) = TYPE_DOMAIN (type);
4010 /* Lay out the type now that we can get the real answer. */
4012 layout_type (type);
4014 return value;
4017 /* Given declspecs and a declarator,
4018 determine the name and type of the object declared
4019 and construct a ..._DECL node for it.
4020 (In one case we can return a ..._TYPE node instead.
4021 For invalid input we sometimes return 0.)
4023 DECLSPECS is a chain of tree_list nodes whose value fields
4024 are the storage classes and type specifiers.
4026 DECL_CONTEXT says which syntactic context this declaration is in:
4027 NORMAL for most contexts. Make a VAR_DECL or FUNCTION_DECL or TYPE_DECL.
4028 FUNCDEF for a function definition. Like NORMAL but a few different
4029 error messages in each case. Return value may be zero meaning
4030 this definition is too screwy to try to parse.
4031 PARM for a parameter declaration (either within a function prototype
4032 or before a function body). Make a PARM_DECL, or return void_type_node.
4033 TYPENAME if for a typename (in a cast or sizeof).
4034 Don't make a DECL node; just return the ..._TYPE node.
4035 FIELD for a struct or union field; make a FIELD_DECL.
4036 BITFIELD for a field with specified width.
4037 INITIALIZED is 1 if the decl has an initializer.
4039 In the TYPENAME case, DECLARATOR is really an absolute declarator.
4040 It may also be so in the PARM case, for a prototype where the
4041 argument type is specified but not the name.
4043 This function is where the complicated C meanings of `static'
4044 and `extern' are interpreted. */
4046 static tree
4047 grokdeclarator (declarator, declspecs, decl_context, initialized)
4048 tree declspecs;
4049 tree declarator;
4050 enum decl_context decl_context;
4051 int initialized;
4053 int specbits = 0;
4054 tree spec;
4055 tree type = NULL_TREE;
4056 int longlong = 0;
4057 int constp;
4058 int restrictp;
4059 int volatilep;
4060 int type_quals = TYPE_UNQUALIFIED;
4061 int inlinep;
4062 int explicit_int = 0;
4063 int explicit_char = 0;
4064 int defaulted_int = 0;
4065 tree typedef_decl = 0;
4066 const char *name;
4067 tree typedef_type = 0;
4068 int funcdef_flag = 0;
4069 enum tree_code innermost_code = ERROR_MARK;
4070 int bitfield = 0;
4071 int size_varies = 0;
4072 tree decl_attr = NULL_TREE;
4073 tree array_ptr_quals = NULL_TREE;
4074 int array_parm_static = 0;
4075 tree returned_attrs = NULL_TREE;
4077 if (decl_context == BITFIELD)
4078 bitfield = 1, decl_context = FIELD;
4080 if (decl_context == FUNCDEF)
4081 funcdef_flag = 1, decl_context = NORMAL;
4083 /* Look inside a declarator for the name being declared
4084 and get it as a string, for an error message. */
4086 tree decl = declarator;
4087 name = 0;
4089 while (decl)
4090 switch (TREE_CODE (decl))
4092 case ARRAY_REF:
4093 case INDIRECT_REF:
4094 case CALL_EXPR:
4095 innermost_code = TREE_CODE (decl);
4096 decl = TREE_OPERAND (decl, 0);
4097 break;
4099 case TREE_LIST:
4100 decl = TREE_VALUE (decl);
4101 break;
4103 case IDENTIFIER_NODE:
4104 name = IDENTIFIER_POINTER (decl);
4105 decl = 0;
4106 break;
4108 default:
4109 abort ();
4111 if (name == 0)
4112 name = "type name";
4115 /* A function definition's declarator must have the form of
4116 a function declarator. */
4118 if (funcdef_flag && innermost_code != CALL_EXPR)
4119 return 0;
4121 /* Anything declared one level down from the top level
4122 must be one of the parameters of a function
4123 (because the body is at least two levels down). */
4125 /* If this looks like a function definition, make it one,
4126 even if it occurs where parms are expected.
4127 Then store_parm_decls will reject it and not use it as a parm. */
4128 if (decl_context == NORMAL && !funcdef_flag
4129 && current_binding_level->parm_flag)
4130 decl_context = PARM;
4132 /* Look through the decl specs and record which ones appear.
4133 Some typespecs are defined as built-in typenames.
4134 Others, the ones that are modifiers of other types,
4135 are represented by bits in SPECBITS: set the bits for
4136 the modifiers that appear. Storage class keywords are also in SPECBITS.
4138 If there is a typedef name or a type, store the type in TYPE.
4139 This includes builtin typedefs such as `int'.
4141 Set EXPLICIT_INT or EXPLICIT_CHAR if the type is `int' or `char'
4142 and did not come from a user typedef.
4144 Set LONGLONG if `long' is mentioned twice. */
4146 for (spec = declspecs; spec; spec = TREE_CHAIN (spec))
4148 tree id = TREE_VALUE (spec);
4150 /* If the entire declaration is itself tagged as deprecated then
4151 suppress reports of deprecated items. */
4152 if (id && TREE_DEPRECATED (id))
4154 if (deprecated_state != DEPRECATED_SUPPRESS)
4155 warn_deprecated_use (id);
4158 if (id == ridpointers[(int) RID_INT])
4159 explicit_int = 1;
4160 if (id == ridpointers[(int) RID_CHAR])
4161 explicit_char = 1;
4163 if (TREE_CODE (id) == IDENTIFIER_NODE && C_IS_RESERVED_WORD (id))
4165 enum rid i = C_RID_CODE (id);
4166 if ((int) i <= (int) RID_LAST_MODIFIER)
4168 if (i == RID_LONG && (specbits & (1 << (int) i)))
4170 if (longlong)
4171 error ("`long long long' is too long for GCC");
4172 else
4174 if (pedantic && !flag_isoc99 && ! in_system_header
4175 && warn_long_long)
4176 pedwarn ("ISO C89 does not support `long long'");
4177 longlong = 1;
4180 else if (specbits & (1 << (int) i))
4181 pedwarn ("duplicate `%s'", IDENTIFIER_POINTER (id));
4182 specbits |= 1 << (int) i;
4183 goto found;
4186 if (type)
4187 error ("two or more data types in declaration of `%s'", name);
4188 /* Actual typedefs come to us as TYPE_DECL nodes. */
4189 else if (TREE_CODE (id) == TYPE_DECL)
4191 if (TREE_TYPE (id) == error_mark_node)
4192 ; /* Allow the type to default to int to avoid cascading errors. */
4193 else
4195 type = TREE_TYPE (id);
4196 decl_attr = DECL_ATTRIBUTES (id);
4197 typedef_decl = id;
4200 /* Built-in types come as identifiers. */
4201 else if (TREE_CODE (id) == IDENTIFIER_NODE)
4203 tree t = lookup_name (id);
4204 if (TREE_TYPE (t) == error_mark_node)
4206 else if (!t || TREE_CODE (t) != TYPE_DECL)
4207 error ("`%s' fails to be a typedef or built in type",
4208 IDENTIFIER_POINTER (id));
4209 else
4211 type = TREE_TYPE (t);
4212 typedef_decl = t;
4215 else if (TREE_CODE (id) != ERROR_MARK)
4216 type = id;
4218 found:
4222 typedef_type = type;
4223 if (type)
4224 size_varies = C_TYPE_VARIABLE_SIZE (type);
4226 /* No type at all: default to `int', and set DEFAULTED_INT
4227 because it was not a user-defined typedef. */
4229 if (type == 0)
4231 if ((! (specbits & ((1 << (int) RID_LONG) | (1 << (int) RID_SHORT)
4232 | (1 << (int) RID_SIGNED)
4233 | (1 << (int) RID_UNSIGNED)
4234 | (1 << (int) RID_COMPLEX))))
4235 /* Don't warn about typedef foo = bar. */
4236 && ! (specbits & (1 << (int) RID_TYPEDEF) && initialized)
4237 && ! in_system_header)
4239 /* Issue a warning if this is an ISO C 99 program or if -Wreturn-type
4240 and this is a function, or if -Wimplicit; prefer the former
4241 warning since it is more explicit. */
4242 if ((warn_implicit_int || warn_return_type || flag_isoc99)
4243 && funcdef_flag)
4244 warn_about_return_type = 1;
4245 else if (warn_implicit_int || flag_isoc99)
4246 pedwarn_c99 ("type defaults to `int' in declaration of `%s'",
4247 name);
4250 defaulted_int = 1;
4251 type = integer_type_node;
4254 /* Now process the modifiers that were specified
4255 and check for invalid combinations. */
4257 /* Long double is a special combination. */
4259 if ((specbits & 1 << (int) RID_LONG) && ! longlong
4260 && TYPE_MAIN_VARIANT (type) == double_type_node)
4262 specbits &= ~(1 << (int) RID_LONG);
4263 type = long_double_type_node;
4266 /* Check all other uses of type modifiers. */
4268 if (specbits & ((1 << (int) RID_LONG) | (1 << (int) RID_SHORT)
4269 | (1 << (int) RID_UNSIGNED) | (1 << (int) RID_SIGNED)))
4271 int ok = 0;
4273 if ((specbits & 1 << (int) RID_LONG)
4274 && (specbits & 1 << (int) RID_SHORT))
4275 error ("both long and short specified for `%s'", name);
4276 else if (((specbits & 1 << (int) RID_LONG)
4277 || (specbits & 1 << (int) RID_SHORT))
4278 && explicit_char)
4279 error ("long or short specified with char for `%s'", name);
4280 else if (((specbits & 1 << (int) RID_LONG)
4281 || (specbits & 1 << (int) RID_SHORT))
4282 && TREE_CODE (type) == REAL_TYPE)
4284 static int already = 0;
4286 error ("long or short specified with floating type for `%s'", name);
4287 if (! already && ! pedantic)
4289 error ("the only valid combination is `long double'");
4290 already = 1;
4293 else if ((specbits & 1 << (int) RID_SIGNED)
4294 && (specbits & 1 << (int) RID_UNSIGNED))
4295 error ("both signed and unsigned specified for `%s'", name);
4296 else if (TREE_CODE (type) != INTEGER_TYPE)
4297 error ("long, short, signed or unsigned invalid for `%s'", name);
4298 else
4300 ok = 1;
4301 if (!explicit_int && !defaulted_int && !explicit_char && pedantic)
4303 pedwarn ("long, short, signed or unsigned used invalidly for `%s'",
4304 name);
4305 if (flag_pedantic_errors)
4306 ok = 0;
4310 /* Discard the type modifiers if they are invalid. */
4311 if (! ok)
4313 specbits &= ~((1 << (int) RID_LONG) | (1 << (int) RID_SHORT)
4314 | (1 << (int) RID_UNSIGNED) | (1 << (int) RID_SIGNED));
4315 longlong = 0;
4319 if ((specbits & (1 << (int) RID_COMPLEX))
4320 && TREE_CODE (type) != INTEGER_TYPE && TREE_CODE (type) != REAL_TYPE)
4322 error ("complex invalid for `%s'", name);
4323 specbits &= ~(1 << (int) RID_COMPLEX);
4326 /* Decide whether an integer type is signed or not.
4327 Optionally treat bitfields as signed by default. */
4328 if (specbits & 1 << (int) RID_UNSIGNED
4329 /* Traditionally, all bitfields are unsigned. */
4330 || (bitfield && flag_traditional
4331 && (! explicit_flag_signed_bitfields || !flag_signed_bitfields))
4332 || (bitfield && ! flag_signed_bitfields
4333 && (explicit_int || defaulted_int || explicit_char
4334 /* A typedef for plain `int' without `signed'
4335 can be controlled just like plain `int'. */
4336 || ! (typedef_decl != 0
4337 && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl)))
4338 && TREE_CODE (type) != ENUMERAL_TYPE
4339 && !(specbits & 1 << (int) RID_SIGNED)))
4341 if (longlong)
4342 type = long_long_unsigned_type_node;
4343 else if (specbits & 1 << (int) RID_LONG)
4344 type = long_unsigned_type_node;
4345 else if (specbits & 1 << (int) RID_SHORT)
4346 type = short_unsigned_type_node;
4347 else if (type == char_type_node)
4348 type = unsigned_char_type_node;
4349 else if (typedef_decl)
4350 type = unsigned_type (type);
4351 else
4352 type = unsigned_type_node;
4354 else if ((specbits & 1 << (int) RID_SIGNED)
4355 && type == char_type_node)
4356 type = signed_char_type_node;
4357 else if (longlong)
4358 type = long_long_integer_type_node;
4359 else if (specbits & 1 << (int) RID_LONG)
4360 type = long_integer_type_node;
4361 else if (specbits & 1 << (int) RID_SHORT)
4362 type = short_integer_type_node;
4364 if (specbits & 1 << (int) RID_COMPLEX)
4366 if (pedantic && !flag_isoc99)
4367 pedwarn ("ISO C89 does not support complex types");
4368 /* If we just have "complex", it is equivalent to
4369 "complex double", but if any modifiers at all are specified it is
4370 the complex form of TYPE. E.g, "complex short" is
4371 "complex short int". */
4373 if (defaulted_int && ! longlong
4374 && ! (specbits & ((1 << (int) RID_LONG) | (1 << (int) RID_SHORT)
4375 | (1 << (int) RID_SIGNED)
4376 | (1 << (int) RID_UNSIGNED))))
4378 if (pedantic)
4379 pedwarn ("ISO C does not support plain `complex' meaning `double complex'");
4380 type = complex_double_type_node;
4382 else if (type == integer_type_node)
4384 if (pedantic)
4385 pedwarn ("ISO C does not support complex integer types");
4386 type = complex_integer_type_node;
4388 else if (type == float_type_node)
4389 type = complex_float_type_node;
4390 else if (type == double_type_node)
4391 type = complex_double_type_node;
4392 else if (type == long_double_type_node)
4393 type = complex_long_double_type_node;
4394 else
4396 if (pedantic)
4397 pedwarn ("ISO C does not support complex integer types");
4398 type = build_complex_type (type);
4402 /* Figure out the type qualifiers for the declaration. There are
4403 two ways a declaration can become qualified. One is something
4404 like `const int i' where the `const' is explicit. Another is
4405 something like `typedef const int CI; CI i' where the type of the
4406 declaration contains the `const'. */
4407 constp = !! (specbits & 1 << (int) RID_CONST) + TYPE_READONLY (type);
4408 restrictp = !! (specbits & 1 << (int) RID_RESTRICT) + TYPE_RESTRICT (type);
4409 volatilep = !! (specbits & 1 << (int) RID_VOLATILE) + TYPE_VOLATILE (type);
4410 inlinep = !! (specbits & (1 << (int) RID_INLINE));
4411 if (constp > 1 && ! flag_isoc99)
4412 pedwarn ("duplicate `const'");
4413 if (restrictp > 1 && ! flag_isoc99)
4414 pedwarn ("duplicate `restrict'");
4415 if (volatilep > 1 && ! flag_isoc99)
4416 pedwarn ("duplicate `volatile'");
4417 if (! flag_gen_aux_info && (TYPE_QUALS (type)))
4418 type = TYPE_MAIN_VARIANT (type);
4419 type_quals = ((constp ? TYPE_QUAL_CONST : 0)
4420 | (restrictp ? TYPE_QUAL_RESTRICT : 0)
4421 | (volatilep ? TYPE_QUAL_VOLATILE : 0));
4423 /* Warn if two storage classes are given. Default to `auto'. */
4426 int nclasses = 0;
4428 if (specbits & 1 << (int) RID_AUTO) nclasses++;
4429 if (specbits & 1 << (int) RID_STATIC) nclasses++;
4430 if (specbits & 1 << (int) RID_EXTERN) nclasses++;
4431 if (specbits & 1 << (int) RID_REGISTER) nclasses++;
4432 if (specbits & 1 << (int) RID_TYPEDEF) nclasses++;
4434 /* Warn about storage classes that are invalid for certain
4435 kinds of declarations (parameters, typenames, etc.). */
4437 if (nclasses > 1)
4438 error ("multiple storage classes in declaration of `%s'", name);
4439 else if (funcdef_flag
4440 && (specbits
4441 & ((1 << (int) RID_REGISTER)
4442 | (1 << (int) RID_AUTO)
4443 | (1 << (int) RID_TYPEDEF))))
4445 if (specbits & 1 << (int) RID_AUTO
4446 && (pedantic || current_binding_level == global_binding_level))
4447 pedwarn ("function definition declared `auto'");
4448 if (specbits & 1 << (int) RID_REGISTER)
4449 error ("function definition declared `register'");
4450 if (specbits & 1 << (int) RID_TYPEDEF)
4451 error ("function definition declared `typedef'");
4452 specbits &= ~((1 << (int) RID_TYPEDEF) | (1 << (int) RID_REGISTER)
4453 | (1 << (int) RID_AUTO));
4455 else if (decl_context != NORMAL && nclasses > 0)
4457 if (decl_context == PARM && specbits & 1 << (int) RID_REGISTER)
4459 else
4461 switch (decl_context)
4463 case FIELD:
4464 error ("storage class specified for structure field `%s'",
4465 name);
4466 break;
4467 case PARM:
4468 error ("storage class specified for parameter `%s'", name);
4469 break;
4470 default:
4471 error ("storage class specified for typename");
4472 break;
4474 specbits &= ~((1 << (int) RID_TYPEDEF) | (1 << (int) RID_REGISTER)
4475 | (1 << (int) RID_AUTO) | (1 << (int) RID_STATIC)
4476 | (1 << (int) RID_EXTERN));
4479 else if (specbits & 1 << (int) RID_EXTERN && initialized && ! funcdef_flag)
4481 /* `extern' with initialization is invalid if not at top level. */
4482 if (current_binding_level == global_binding_level)
4483 warning ("`%s' initialized and declared `extern'", name);
4484 else
4485 error ("`%s' has both `extern' and initializer", name);
4487 else if (specbits & 1 << (int) RID_EXTERN && funcdef_flag
4488 && current_binding_level != global_binding_level)
4489 error ("nested function `%s' declared `extern'", name);
4490 else if (current_binding_level == global_binding_level
4491 && specbits & (1 << (int) RID_AUTO))
4492 error ("top-level declaration of `%s' specifies `auto'", name);
4495 /* Now figure out the structure of the declarator proper.
4496 Descend through it, creating more complex types, until we reach
4497 the declared identifier (or NULL_TREE, in an absolute declarator). */
4499 while (declarator && TREE_CODE (declarator) != IDENTIFIER_NODE)
4501 if (type == error_mark_node)
4503 declarator = TREE_OPERAND (declarator, 0);
4504 continue;
4507 /* Each level of DECLARATOR is either an ARRAY_REF (for ...[..]),
4508 an INDIRECT_REF (for *...),
4509 a CALL_EXPR (for ...(...)),
4510 a TREE_LIST (for nested attributes),
4511 an identifier (for the name being declared)
4512 or a null pointer (for the place in an absolute declarator
4513 where the name was omitted).
4514 For the last two cases, we have just exited the loop.
4516 At this point, TYPE is the type of elements of an array,
4517 or for a function to return, or for a pointer to point to.
4518 After this sequence of ifs, TYPE is the type of the
4519 array or function or pointer, and DECLARATOR has had its
4520 outermost layer removed. */
4522 if (array_ptr_quals != NULL_TREE || array_parm_static)
4524 /* Only the innermost declarator (making a parameter be of
4525 array type which is converted to pointer type)
4526 may have static or type qualifiers. */
4527 error ("static or type qualifiers in non-parameter array declarator");
4528 array_ptr_quals = NULL_TREE;
4529 array_parm_static = 0;
4532 if (TREE_CODE (declarator) == TREE_LIST)
4534 /* We encode a declarator with embedded attributes using
4535 a TREE_LIST. */
4536 tree attrs = TREE_PURPOSE (declarator);
4537 tree inner_decl;
4538 int attr_flags = 0;
4539 declarator = TREE_VALUE (declarator);
4540 inner_decl = declarator;
4541 while (inner_decl != NULL_TREE
4542 && TREE_CODE (inner_decl) == TREE_LIST)
4543 inner_decl = TREE_VALUE (inner_decl);
4544 if (inner_decl == NULL_TREE
4545 || TREE_CODE (inner_decl) == IDENTIFIER_NODE)
4546 attr_flags |= (int) ATTR_FLAG_DECL_NEXT;
4547 else if (TREE_CODE (inner_decl) == CALL_EXPR)
4548 attr_flags |= (int) ATTR_FLAG_FUNCTION_NEXT;
4549 else if (TREE_CODE (inner_decl) == ARRAY_REF)
4550 attr_flags |= (int) ATTR_FLAG_ARRAY_NEXT;
4551 returned_attrs = decl_attributes (&type,
4552 chainon (returned_attrs, attrs),
4553 attr_flags);
4555 else if (TREE_CODE (declarator) == ARRAY_REF)
4557 tree itype = NULL_TREE;
4558 tree size = TREE_OPERAND (declarator, 1);
4559 /* The index is a signed object `sizetype' bits wide. */
4560 tree index_type = signed_type (sizetype);
4562 array_ptr_quals = TREE_TYPE (declarator);
4563 array_parm_static = TREE_STATIC (declarator);
4565 declarator = TREE_OPERAND (declarator, 0);
4567 /* Check for some types that there cannot be arrays of. */
4569 if (VOID_TYPE_P (type))
4571 error ("declaration of `%s' as array of voids", name);
4572 type = error_mark_node;
4575 if (TREE_CODE (type) == FUNCTION_TYPE)
4577 error ("declaration of `%s' as array of functions", name);
4578 type = error_mark_node;
4581 if (size == error_mark_node)
4582 type = error_mark_node;
4584 if (type == error_mark_node)
4585 continue;
4587 /* If size was specified, set ITYPE to a range-type for that size.
4588 Otherwise, ITYPE remains null. finish_decl may figure it out
4589 from an initial value. */
4591 if (size)
4593 /* Strip NON_LVALUE_EXPRs since we aren't using as an lvalue. */
4594 STRIP_TYPE_NOPS (size);
4596 if (! INTEGRAL_TYPE_P (TREE_TYPE (size)))
4598 error ("size of array `%s' has non-integer type", name);
4599 size = integer_one_node;
4602 if (pedantic && integer_zerop (size))
4603 pedwarn ("ISO C forbids zero-size array `%s'", name);
4605 if (TREE_CODE (size) == INTEGER_CST)
4607 constant_expression_warning (size);
4608 if (tree_int_cst_sgn (size) < 0)
4610 error ("size of array `%s' is negative", name);
4611 size = integer_one_node;
4614 else
4616 /* Make sure the array size remains visibly nonconstant
4617 even if it is (eg) a const variable with known value. */
4618 size_varies = 1;
4620 if (!flag_isoc99 && pedantic)
4622 if (TREE_CONSTANT (size))
4623 pedwarn ("ISO C89 forbids array `%s' whose size can't be evaluated",
4624 name);
4625 else
4626 pedwarn ("ISO C89 forbids variable-size array `%s'",
4627 name);
4631 if (integer_zerop (size))
4633 /* A zero-length array cannot be represented with an
4634 unsigned index type, which is what we'll get with
4635 build_index_type. Create an open-ended range instead. */
4636 itype = build_range_type (sizetype, size, NULL_TREE);
4638 else
4640 /* Compute the maximum valid index, that is, size - 1.
4641 Do the calculation in index_type, so that if it is
4642 a variable the computations will be done in the
4643 proper mode. */
4644 itype = fold (build (MINUS_EXPR, index_type,
4645 convert (index_type, size),
4646 convert (index_type, size_one_node)));
4648 /* If that overflowed, the array is too big.
4649 ??? While a size of INT_MAX+1 technically shouldn't
4650 cause an overflow (because we subtract 1), the overflow
4651 is recorded during the conversion to index_type, before
4652 the subtraction. Handling this case seems like an
4653 unnecessary complication. */
4654 if (TREE_OVERFLOW (itype))
4656 error ("size of array `%s' is too large", name);
4657 type = error_mark_node;
4658 continue;
4661 if (size_varies)
4662 itype = variable_size (itype);
4663 itype = build_index_type (itype);
4666 else if (decl_context == FIELD)
4668 if (pedantic && !flag_isoc99 && !in_system_header)
4669 pedwarn ("ISO C89 does not support flexible array members");
4671 /* ISO C99 Flexible array members are effectively identical
4672 to GCC's zero-length array extension. */
4673 itype = build_range_type (sizetype, size_zero_node, NULL_TREE);
4676 /* If pedantic, complain about arrays of incomplete types. */
4678 if (pedantic && !COMPLETE_TYPE_P (type))
4679 pedwarn ("array type has incomplete element type");
4681 #if 0
4682 /* We shouldn't have a function type here at all!
4683 Functions aren't allowed as array elements. */
4684 if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
4685 && (constp || volatilep))
4686 pedwarn ("ISO C forbids const or volatile function types");
4687 #endif
4689 /* Build the array type itself, then merge any constancy or
4690 volatility into the target type. We must do it in this order
4691 to ensure that the TYPE_MAIN_VARIANT field of the array type
4692 is set correctly. */
4694 type = build_array_type (type, itype);
4695 if (type_quals)
4696 type = c_build_qualified_type (type, type_quals);
4698 if (size_varies)
4699 C_TYPE_VARIABLE_SIZE (type) = 1;
4701 /* The GCC extension for zero-length arrays differs from
4702 ISO flexible array members in that sizeof yields zero. */
4703 if (size && integer_zerop (size))
4705 layout_type (type);
4706 TYPE_SIZE (type) = bitsize_zero_node;
4707 TYPE_SIZE_UNIT (type) = size_zero_node;
4709 if (decl_context != PARM
4710 && (array_ptr_quals != NULL_TREE || array_parm_static))
4712 error ("static or type qualifiers in non-parameter array declarator");
4713 array_ptr_quals = NULL_TREE;
4714 array_parm_static = 0;
4717 else if (TREE_CODE (declarator) == CALL_EXPR)
4719 tree arg_types;
4721 /* Declaring a function type.
4722 Make sure we have a valid type for the function to return. */
4723 if (type == error_mark_node)
4724 continue;
4726 size_varies = 0;
4728 /* Warn about some types functions can't return. */
4730 if (TREE_CODE (type) == FUNCTION_TYPE)
4732 error ("`%s' declared as function returning a function", name);
4733 type = integer_type_node;
4735 if (TREE_CODE (type) == ARRAY_TYPE)
4737 error ("`%s' declared as function returning an array", name);
4738 type = integer_type_node;
4741 #ifndef TRADITIONAL_RETURN_FLOAT
4742 /* Traditionally, declaring return type float means double. */
4744 if (flag_traditional && TYPE_MAIN_VARIANT (type) == float_type_node)
4745 type = double_type_node;
4746 #endif /* TRADITIONAL_RETURN_FLOAT */
4748 /* Construct the function type and go to the next
4749 inner layer of declarator. */
4751 arg_types = grokparms (TREE_OPERAND (declarator, 1),
4752 funcdef_flag
4753 /* Say it's a definition
4754 only for the CALL_EXPR
4755 closest to the identifier. */
4756 && TREE_CODE (TREE_OPERAND (declarator, 0)) == IDENTIFIER_NODE);
4757 /* Type qualifiers before the return type of the function
4758 qualify the return type, not the function type. */
4759 if (type_quals)
4761 /* Type qualifiers on a function return type are normally
4762 permitted by the standard but have no effect, so give a
4763 warning at -W. Qualifiers on a void return type have
4764 meaning as a GNU extension, and are banned on function
4765 definitions in ISO C. FIXME: strictly we shouldn't
4766 pedwarn for qualified void return types except on function
4767 definitions, but not doing so could lead to the undesirable
4768 state of a "volatile void" function return type not being
4769 warned about, and a use of the function being compiled
4770 with GNU semantics, with no diagnostics under -pedantic. */
4771 if (VOID_TYPE_P (type) && pedantic && !in_system_header)
4772 pedwarn ("ISO C forbids qualified void function return type");
4773 else if (extra_warnings
4774 && !(VOID_TYPE_P (type)
4775 && type_quals == TYPE_QUAL_VOLATILE))
4776 warning ("type qualifiers ignored on function return type");
4778 type = c_build_qualified_type (type, type_quals);
4780 type_quals = TYPE_UNQUALIFIED;
4782 type = build_function_type (type, arg_types);
4783 declarator = TREE_OPERAND (declarator, 0);
4785 /* Set the TYPE_CONTEXTs for each tagged type which is local to
4786 the formal parameter list of this FUNCTION_TYPE to point to
4787 the FUNCTION_TYPE node itself. */
4790 tree link;
4792 for (link = last_function_parm_tags;
4793 link;
4794 link = TREE_CHAIN (link))
4795 TYPE_CONTEXT (TREE_VALUE (link)) = type;
4798 else if (TREE_CODE (declarator) == INDIRECT_REF)
4800 /* Merge any constancy or volatility into the target type
4801 for the pointer. */
4803 if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
4804 && type_quals)
4805 pedwarn ("ISO C forbids qualified function types");
4806 if (type_quals)
4807 type = c_build_qualified_type (type, type_quals);
4808 type_quals = TYPE_UNQUALIFIED;
4809 size_varies = 0;
4811 type = build_pointer_type (type);
4813 /* Process a list of type modifier keywords
4814 (such as const or volatile) that were given inside the `*'. */
4816 if (TREE_TYPE (declarator))
4818 tree typemodlist;
4819 int erred = 0;
4821 constp = 0;
4822 volatilep = 0;
4823 restrictp = 0;
4824 for (typemodlist = TREE_TYPE (declarator); typemodlist;
4825 typemodlist = TREE_CHAIN (typemodlist))
4827 tree qualifier = TREE_VALUE (typemodlist);
4829 if (C_IS_RESERVED_WORD (qualifier))
4831 if (C_RID_CODE (qualifier) == RID_CONST)
4832 constp++;
4833 else if (C_RID_CODE (qualifier) == RID_VOLATILE)
4834 volatilep++;
4835 else if (C_RID_CODE (qualifier) == RID_RESTRICT)
4836 restrictp++;
4837 else
4838 erred++;
4840 else
4841 erred++;
4844 if (erred)
4845 error ("invalid type modifier within pointer declarator");
4846 if (constp > 1 && ! flag_isoc99)
4847 pedwarn ("duplicate `const'");
4848 if (volatilep > 1 && ! flag_isoc99)
4849 pedwarn ("duplicate `volatile'");
4850 if (restrictp > 1 && ! flag_isoc99)
4851 pedwarn ("duplicate `restrict'");
4853 type_quals = ((constp ? TYPE_QUAL_CONST : 0)
4854 | (restrictp ? TYPE_QUAL_RESTRICT : 0)
4855 | (volatilep ? TYPE_QUAL_VOLATILE : 0));
4858 declarator = TREE_OPERAND (declarator, 0);
4860 else
4861 abort ();
4865 /* Now TYPE has the actual type. */
4867 /* Did array size calculations overflow? */
4869 if (TREE_CODE (type) == ARRAY_TYPE
4870 && COMPLETE_TYPE_P (type)
4871 && TREE_OVERFLOW (TYPE_SIZE (type)))
4873 error ("size of array `%s' is too large", name);
4874 /* If we proceed with the array type as it is, we'll eventually
4875 crash in tree_low_cst(). */
4876 type = error_mark_node;
4879 /* If this is declaring a typedef name, return a TYPE_DECL. */
4881 if (specbits & (1 << (int) RID_TYPEDEF))
4883 tree decl;
4884 /* Note that the grammar rejects storage classes
4885 in typenames, fields or parameters */
4886 if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
4887 && type_quals)
4888 pedwarn ("ISO C forbids qualified function types");
4889 if (type_quals)
4890 type = c_build_qualified_type (type, type_quals);
4891 decl = build_decl (TYPE_DECL, declarator, type);
4892 if ((specbits & (1 << (int) RID_SIGNED))
4893 || (typedef_decl && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl)))
4894 C_TYPEDEF_EXPLICITLY_SIGNED (decl) = 1;
4895 decl_attributes (&decl, returned_attrs, 0);
4896 return decl;
4899 /* Detect the case of an array type of unspecified size
4900 which came, as such, direct from a typedef name.
4901 We must copy the type, so that each identifier gets
4902 a distinct type, so that each identifier's size can be
4903 controlled separately by its own initializer. */
4905 if (type != 0 && typedef_type != 0
4906 && TREE_CODE (type) == ARRAY_TYPE && TYPE_DOMAIN (type) == 0
4907 && TYPE_MAIN_VARIANT (type) == TYPE_MAIN_VARIANT (typedef_type))
4909 type = build_array_type (TREE_TYPE (type), 0);
4910 if (size_varies)
4911 C_TYPE_VARIABLE_SIZE (type) = 1;
4914 /* If this is a type name (such as, in a cast or sizeof),
4915 compute the type and return it now. */
4917 if (decl_context == TYPENAME)
4919 /* Note that the grammar rejects storage classes
4920 in typenames, fields or parameters */
4921 if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
4922 && type_quals)
4923 pedwarn ("ISO C forbids const or volatile function types");
4924 if (type_quals)
4925 type = c_build_qualified_type (type, type_quals);
4926 decl_attributes (&type, returned_attrs, 0);
4927 return type;
4930 /* Aside from typedefs and type names (handle above),
4931 `void' at top level (not within pointer)
4932 is allowed only in public variables.
4933 We don't complain about parms either, but that is because
4934 a better error message can be made later. */
4936 if (VOID_TYPE_P (type) && decl_context != PARM
4937 && ! ((decl_context != FIELD && TREE_CODE (type) != FUNCTION_TYPE)
4938 && ((specbits & (1 << (int) RID_EXTERN))
4939 || (current_binding_level == global_binding_level
4940 && !(specbits
4941 & ((1 << (int) RID_STATIC) | (1 << (int) RID_REGISTER)))))))
4943 error ("variable or field `%s' declared void", name);
4944 type = integer_type_node;
4947 /* Now create the decl, which may be a VAR_DECL, a PARM_DECL
4948 or a FUNCTION_DECL, depending on DECL_CONTEXT and TYPE. */
4951 tree decl;
4953 if (decl_context == PARM)
4955 tree type_as_written;
4956 tree promoted_type;
4958 /* A parameter declared as an array of T is really a pointer to T.
4959 One declared as a function is really a pointer to a function. */
4961 if (TREE_CODE (type) == ARRAY_TYPE)
4963 /* Transfer const-ness of array into that of type pointed to. */
4964 type = TREE_TYPE (type);
4965 if (type_quals)
4966 type = c_build_qualified_type (type, type_quals);
4967 type = build_pointer_type (type);
4968 type_quals = TYPE_UNQUALIFIED;
4969 if (array_ptr_quals)
4971 tree new_ptr_quals, new_ptr_attrs;
4972 int erred = 0;
4973 split_specs_attrs (array_ptr_quals, &new_ptr_quals, &new_ptr_attrs);
4974 /* We don't yet implement attributes in this context. */
4975 if (new_ptr_attrs != NULL_TREE)
4976 warning ("attributes in parameter array declarator ignored");
4978 constp = 0;
4979 volatilep = 0;
4980 restrictp = 0;
4981 for (; new_ptr_quals; new_ptr_quals = TREE_CHAIN (new_ptr_quals))
4983 tree qualifier = TREE_VALUE (new_ptr_quals);
4985 if (C_IS_RESERVED_WORD (qualifier))
4987 if (C_RID_CODE (qualifier) == RID_CONST)
4988 constp++;
4989 else if (C_RID_CODE (qualifier) == RID_VOLATILE)
4990 volatilep++;
4991 else if (C_RID_CODE (qualifier) == RID_RESTRICT)
4992 restrictp++;
4993 else
4994 erred++;
4996 else
4997 erred++;
5000 if (erred)
5001 error ("invalid type modifier within array declarator");
5003 type_quals = ((constp ? TYPE_QUAL_CONST : 0)
5004 | (restrictp ? TYPE_QUAL_RESTRICT : 0)
5005 | (volatilep ? TYPE_QUAL_VOLATILE : 0));
5007 size_varies = 0;
5009 else if (TREE_CODE (type) == FUNCTION_TYPE)
5011 if (pedantic && type_quals)
5012 pedwarn ("ISO C forbids qualified function types");
5013 if (type_quals)
5014 type = c_build_qualified_type (type, type_quals);
5015 type = build_pointer_type (type);
5016 type_quals = TYPE_UNQUALIFIED;
5018 else if (type_quals)
5019 type = c_build_qualified_type (type, type_quals);
5021 type_as_written = type;
5023 decl = build_decl (PARM_DECL, declarator, type);
5024 if (size_varies)
5025 C_DECL_VARIABLE_SIZE (decl) = 1;
5027 /* Compute the type actually passed in the parmlist,
5028 for the case where there is no prototype.
5029 (For example, shorts and chars are passed as ints.)
5030 When there is a prototype, this is overridden later. */
5032 if (type == error_mark_node)
5033 promoted_type = type;
5034 else
5036 promoted_type = simple_type_promotes_to (type);
5037 if (! promoted_type)
5038 promoted_type = type;
5041 DECL_ARG_TYPE (decl) = promoted_type;
5042 DECL_ARG_TYPE_AS_WRITTEN (decl) = type_as_written;
5044 else if (decl_context == FIELD)
5046 /* Structure field. It may not be a function. */
5048 if (TREE_CODE (type) == FUNCTION_TYPE)
5050 error ("field `%s' declared as a function", name);
5051 type = build_pointer_type (type);
5053 else if (TREE_CODE (type) != ERROR_MARK
5054 && !COMPLETE_OR_UNBOUND_ARRAY_TYPE_P (type))
5056 error ("field `%s' has incomplete type", name);
5057 type = error_mark_node;
5059 /* Move type qualifiers down to element of an array. */
5060 if (TREE_CODE (type) == ARRAY_TYPE && type_quals)
5062 type = build_array_type (c_build_qualified_type (TREE_TYPE (type),
5063 type_quals),
5064 TYPE_DOMAIN (type));
5065 #if 0
5066 /* Leave the field const or volatile as well. */
5067 type_quals = TYPE_UNQUALIFIED;
5068 #endif
5070 decl = build_decl (FIELD_DECL, declarator, type);
5071 DECL_NONADDRESSABLE_P (decl) = bitfield;
5073 if (size_varies)
5074 C_DECL_VARIABLE_SIZE (decl) = 1;
5076 else if (TREE_CODE (type) == FUNCTION_TYPE)
5078 /* Every function declaration is "external"
5079 except for those which are inside a function body
5080 in which `auto' is used.
5081 That is a case not specified by ANSI C,
5082 and we use it for forward declarations for nested functions. */
5083 int extern_ref = (!(specbits & (1 << (int) RID_AUTO))
5084 || current_binding_level == global_binding_level);
5086 if (specbits & (1 << (int) RID_AUTO)
5087 && (pedantic || current_binding_level == global_binding_level))
5088 pedwarn ("invalid storage class for function `%s'", name);
5089 if (specbits & (1 << (int) RID_REGISTER))
5090 error ("invalid storage class for function `%s'", name);
5091 /* Function declaration not at top level.
5092 Storage classes other than `extern' are not allowed
5093 and `extern' makes no difference. */
5094 if (current_binding_level != global_binding_level
5095 && (specbits & ((1 << (int) RID_STATIC) | (1 << (int) RID_INLINE)))
5096 && pedantic)
5097 pedwarn ("invalid storage class for function `%s'", name);
5099 decl = build_decl (FUNCTION_DECL, declarator, type);
5100 decl = build_decl_attribute_variant (decl, decl_attr);
5102 DECL_LANG_SPECIFIC (decl) = (struct lang_decl *)
5103 ggc_alloc_cleared (sizeof (struct lang_decl));
5105 if (pedantic && type_quals && ! DECL_IN_SYSTEM_HEADER (decl))
5106 pedwarn ("ISO C forbids qualified function types");
5108 /* GNU C interprets a `volatile void' return type to indicate
5109 that the function does not return. */
5110 if ((type_quals & TYPE_QUAL_VOLATILE)
5111 && !VOID_TYPE_P (TREE_TYPE (TREE_TYPE (decl))))
5112 warning ("`noreturn' function returns non-void value");
5114 if (extern_ref)
5115 DECL_EXTERNAL (decl) = 1;
5116 /* Record absence of global scope for `static' or `auto'. */
5117 TREE_PUBLIC (decl)
5118 = !(specbits & ((1 << (int) RID_STATIC) | (1 << (int) RID_AUTO)));
5120 if (defaulted_int)
5121 C_FUNCTION_IMPLICIT_INT (decl) = 1;
5123 /* Record presence of `inline', if it is reasonable. */
5124 if (MAIN_NAME_P (declarator))
5126 if (inlinep)
5127 warning ("cannot inline function `main'");
5129 else if (inlinep)
5131 /* Assume that otherwise the function can be inlined. */
5132 DECL_DECLARED_INLINE_P (decl) = 1;
5134 /* Do not mark bare declarations as DECL_INLINE. Doing so
5135 in the presence of multiple declarations can result in
5136 the abstract origin pointing between the declarations,
5137 which will confuse dwarf2out. */
5138 if (initialized)
5140 DECL_INLINE (decl) = 1;
5141 if (specbits & (1 << (int) RID_EXTERN))
5142 current_extern_inline = 1;
5145 /* If -finline-functions, assume it can be inlined. This does
5146 two things: let the function be deferred until it is actually
5147 needed, and let dwarf2 know that the function is inlinable. */
5148 else if (flag_inline_trees == 2 && initialized)
5150 DECL_INLINE (decl) = 1;
5151 DECL_DECLARED_INLINE_P (decl) = 0;
5154 else
5156 /* It's a variable. */
5157 /* An uninitialized decl with `extern' is a reference. */
5158 int extern_ref = !initialized && (specbits & (1 << (int) RID_EXTERN));
5160 /* Move type qualifiers down to element of an array. */
5161 if (TREE_CODE (type) == ARRAY_TYPE && type_quals)
5163 int saved_align = TYPE_ALIGN(type);
5164 type = build_array_type (c_build_qualified_type (TREE_TYPE (type),
5165 type_quals),
5166 TYPE_DOMAIN (type));
5167 TYPE_ALIGN (type) = saved_align;
5168 #if 0 /* Leave the variable const or volatile as well. */
5169 type_quals = TYPE_UNQUALIFIED;
5170 #endif
5172 else if (type_quals)
5173 type = c_build_qualified_type (type, type_quals);
5175 decl = build_decl (VAR_DECL, declarator, type);
5176 if (size_varies)
5177 C_DECL_VARIABLE_SIZE (decl) = 1;
5179 if (inlinep)
5180 pedwarn_with_decl (decl, "variable `%s' declared `inline'");
5182 DECL_EXTERNAL (decl) = extern_ref;
5183 /* At top level, the presence of a `static' or `register' storage
5184 class specifier, or the absence of all storage class specifiers
5185 makes this declaration a definition (perhaps tentative). Also,
5186 the absence of both `static' and `register' makes it public. */
5187 if (current_binding_level == global_binding_level)
5189 TREE_PUBLIC (decl)
5190 = !(specbits
5191 & ((1 << (int) RID_STATIC) | (1 << (int) RID_REGISTER)));
5192 TREE_STATIC (decl) = ! DECL_EXTERNAL (decl);
5194 /* Not at top level, only `static' makes a static definition. */
5195 else
5197 TREE_STATIC (decl) = (specbits & (1 << (int) RID_STATIC)) != 0;
5198 TREE_PUBLIC (decl) = DECL_EXTERNAL (decl);
5202 /* Record `register' declaration for warnings on &
5203 and in case doing stupid register allocation. */
5205 if (specbits & (1 << (int) RID_REGISTER))
5206 DECL_REGISTER (decl) = 1;
5208 /* Record constancy and volatility. */
5209 c_apply_type_quals_to_decl (type_quals, decl);
5211 /* If a type has volatile components, it should be stored in memory.
5212 Otherwise, the fact that those components are volatile
5213 will be ignored, and would even crash the compiler. */
5214 if (C_TYPE_FIELDS_VOLATILE (TREE_TYPE (decl)))
5215 mark_addressable (decl);
5217 decl_attributes (&decl, returned_attrs, 0);
5219 return decl;
5223 /* Decode the parameter-list info for a function type or function definition.
5224 The argument is the value returned by `get_parm_info' (or made in parse.y
5225 if there is an identifier list instead of a parameter decl list).
5226 These two functions are separate because when a function returns
5227 or receives functions then each is called multiple times but the order
5228 of calls is different. The last call to `grokparms' is always the one
5229 that contains the formal parameter names of a function definition.
5231 Store in `last_function_parms' a chain of the decls of parms.
5232 Also store in `last_function_parm_tags' a chain of the struct, union,
5233 and enum tags declared among the parms.
5235 Return a list of arg types to use in the FUNCTION_TYPE for this function.
5237 FUNCDEF_FLAG is nonzero for a function definition, 0 for
5238 a mere declaration. A nonempty identifier-list gets an error message
5239 when FUNCDEF_FLAG is zero. */
5241 static tree
5242 grokparms (parms_info, funcdef_flag)
5243 tree parms_info;
5244 int funcdef_flag;
5246 tree first_parm = TREE_CHAIN (parms_info);
5248 last_function_parms = TREE_PURPOSE (parms_info);
5249 last_function_parm_tags = TREE_VALUE (parms_info);
5251 if (warn_strict_prototypes && first_parm == 0 && !funcdef_flag
5252 && !in_system_header)
5253 warning ("function declaration isn't a prototype");
5255 if (first_parm != 0
5256 && TREE_CODE (TREE_VALUE (first_parm)) == IDENTIFIER_NODE)
5258 if (! funcdef_flag)
5259 pedwarn ("parameter names (without types) in function declaration");
5261 last_function_parms = first_parm;
5262 return 0;
5264 else
5266 tree parm;
5267 tree typelt;
5268 /* We no longer test FUNCDEF_FLAG.
5269 If the arg types are incomplete in a declaration,
5270 they must include undefined tags.
5271 These tags can never be defined in the scope of the declaration,
5272 so the types can never be completed,
5273 and no call can be compiled successfully. */
5274 #if 0
5275 /* In a fcn definition, arg types must be complete. */
5276 if (funcdef_flag)
5277 #endif
5278 for (parm = last_function_parms, typelt = first_parm;
5279 parm;
5280 parm = TREE_CHAIN (parm))
5281 /* Skip over any enumeration constants declared here. */
5282 if (TREE_CODE (parm) == PARM_DECL)
5284 /* Barf if the parameter itself has an incomplete type. */
5285 tree type = TREE_VALUE (typelt);
5286 if (type == error_mark_node)
5287 continue;
5288 if (!COMPLETE_TYPE_P (type))
5290 if (funcdef_flag && DECL_NAME (parm) != 0)
5291 error ("parameter `%s' has incomplete type",
5292 IDENTIFIER_POINTER (DECL_NAME (parm)));
5293 else
5294 warning ("parameter has incomplete type");
5295 if (funcdef_flag)
5297 TREE_VALUE (typelt) = error_mark_node;
5298 TREE_TYPE (parm) = error_mark_node;
5301 #if 0
5302 /* This has been replaced by parm_tags_warning, which
5303 uses a more accurate criterion for what to warn
5304 about. */
5305 else
5307 /* Now warn if is a pointer to an incomplete type. */
5308 while (TREE_CODE (type) == POINTER_TYPE
5309 || TREE_CODE (type) == REFERENCE_TYPE)
5310 type = TREE_TYPE (type);
5311 type = TYPE_MAIN_VARIANT (type);
5312 if (!COMPLETE_TYPE_P (type))
5314 if (DECL_NAME (parm) != 0)
5315 warning ("parameter `%s' points to incomplete type",
5316 IDENTIFIER_POINTER (DECL_NAME (parm)));
5317 else
5318 warning ("parameter points to incomplete type");
5321 #endif
5322 typelt = TREE_CHAIN (typelt);
5325 return first_parm;
5329 /* Return a tree_list node with info on a parameter list just parsed.
5330 The TREE_PURPOSE is a chain of decls of those parms.
5331 The TREE_VALUE is a list of structure, union and enum tags defined.
5332 The TREE_CHAIN is a list of argument types to go in the FUNCTION_TYPE.
5333 This tree_list node is later fed to `grokparms'.
5335 VOID_AT_END nonzero means append `void' to the end of the type-list.
5336 Zero means the parmlist ended with an ellipsis so don't append `void'. */
5338 tree
5339 get_parm_info (void_at_end)
5340 int void_at_end;
5342 tree decl, t;
5343 tree types = 0;
5344 int erred = 0;
5345 tree tags = gettags ();
5346 tree parms = getdecls ();
5347 tree new_parms = 0;
5348 tree order = current_binding_level->parm_order;
5350 /* Just `void' (and no ellipsis) is special. There are really no parms.
5351 But if the `void' is qualified (by `const' or `volatile') or has a
5352 storage class specifier (`register'), then the behavior is undefined;
5353 by not counting it as the special case of `void' we will cause an
5354 error later. Typedefs for `void' are OK (see DR#157). */
5355 if (void_at_end && parms != 0
5356 && TREE_CHAIN (parms) == 0
5357 && VOID_TYPE_P (TREE_TYPE (parms))
5358 && ! TREE_THIS_VOLATILE (parms)
5359 && ! TREE_READONLY (parms)
5360 && ! DECL_REGISTER (parms)
5361 && DECL_NAME (parms) == 0)
5363 parms = NULL_TREE;
5364 storedecls (NULL_TREE);
5365 return tree_cons (NULL_TREE, NULL_TREE,
5366 tree_cons (NULL_TREE, void_type_node, NULL_TREE));
5369 /* Extract enumerator values and other non-parms declared with the parms.
5370 Likewise any forward parm decls that didn't have real parm decls. */
5371 for (decl = parms; decl;)
5373 tree next = TREE_CHAIN (decl);
5375 if (TREE_CODE (decl) != PARM_DECL)
5377 TREE_CHAIN (decl) = new_parms;
5378 new_parms = decl;
5380 else if (TREE_ASM_WRITTEN (decl))
5382 error_with_decl (decl,
5383 "parameter `%s' has just a forward declaration");
5384 TREE_CHAIN (decl) = new_parms;
5385 new_parms = decl;
5387 decl = next;
5390 /* Put the parm decls back in the order they were in in the parm list. */
5391 for (t = order; t; t = TREE_CHAIN (t))
5393 if (TREE_CHAIN (t))
5394 TREE_CHAIN (TREE_VALUE (t)) = TREE_VALUE (TREE_CHAIN (t));
5395 else
5396 TREE_CHAIN (TREE_VALUE (t)) = 0;
5399 new_parms = chainon (order ? nreverse (TREE_VALUE (order)) : 0,
5400 new_parms);
5402 /* Store the parmlist in the binding level since the old one
5403 is no longer a valid list. (We have changed the chain pointers.) */
5404 storedecls (new_parms);
5406 for (decl = new_parms; decl; decl = TREE_CHAIN (decl))
5407 /* There may also be declarations for enumerators if an enumeration
5408 type is declared among the parms. Ignore them here. */
5409 if (TREE_CODE (decl) == PARM_DECL)
5411 /* Since there is a prototype,
5412 args are passed in their declared types. */
5413 tree type = TREE_TYPE (decl);
5414 DECL_ARG_TYPE (decl) = type;
5415 if (PROMOTE_PROTOTYPES
5416 && INTEGRAL_TYPE_P (type)
5417 && TYPE_PRECISION (type) < TYPE_PRECISION (integer_type_node))
5418 DECL_ARG_TYPE (decl) = integer_type_node;
5420 types = tree_cons (NULL_TREE, TREE_TYPE (decl), types);
5421 if (VOID_TYPE_P (TREE_VALUE (types)) && ! erred
5422 && DECL_NAME (decl) == 0)
5424 error ("`void' in parameter list must be the entire list");
5425 erred = 1;
5429 if (void_at_end)
5430 return tree_cons (new_parms, tags,
5431 nreverse (tree_cons (NULL_TREE, void_type_node, types)));
5433 return tree_cons (new_parms, tags, nreverse (types));
5436 /* At end of parameter list, warn about any struct, union or enum tags
5437 defined within. Do so because these types cannot ever become complete. */
5439 void
5440 parmlist_tags_warning ()
5442 tree elt;
5443 static int already;
5445 for (elt = current_binding_level->tags; elt; elt = TREE_CHAIN (elt))
5447 enum tree_code code = TREE_CODE (TREE_VALUE (elt));
5448 /* An anonymous union parm type is meaningful as a GNU extension.
5449 So don't warn for that. */
5450 if (code == UNION_TYPE && TREE_PURPOSE (elt) == 0 && !pedantic)
5451 continue;
5452 if (TREE_PURPOSE (elt) != 0)
5454 if (code == RECORD_TYPE)
5455 warning ("`struct %s' declared inside parameter list",
5456 IDENTIFIER_POINTER (TREE_PURPOSE (elt)));
5457 else if (code == UNION_TYPE)
5458 warning ("`union %s' declared inside parameter list",
5459 IDENTIFIER_POINTER (TREE_PURPOSE (elt)));
5460 else
5461 warning ("`enum %s' declared inside parameter list",
5462 IDENTIFIER_POINTER (TREE_PURPOSE (elt)));
5464 else
5466 /* For translation these need to be separate warnings */
5467 if (code == RECORD_TYPE)
5468 warning ("anonymous struct declared inside parameter list");
5469 else if (code == UNION_TYPE)
5470 warning ("anonymous union declared inside parameter list");
5471 else
5472 warning ("anonymous enum declared inside parameter list");
5474 if (! already)
5476 warning ("its scope is only this definition or declaration, which is probably not what you want");
5477 already = 1;
5482 /* Get the struct, enum or union (CODE says which) with tag NAME.
5483 Define the tag as a forward-reference if it is not defined. */
5485 tree
5486 xref_tag (code, name)
5487 enum tree_code code;
5488 tree name;
5490 /* If a cross reference is requested, look up the type
5491 already defined for this tag and return it. */
5493 tree ref = lookup_tag (code, name, current_binding_level, 0);
5494 /* If this is the right type of tag, return what we found.
5495 (This reference will be shadowed by shadow_tag later if appropriate.)
5496 If this is the wrong type of tag, do not return it. If it was the
5497 wrong type in the same binding level, we will have had an error
5498 message already; if in a different binding level and declaring
5499 a name, pending_xref_error will give an error message; but if in a
5500 different binding level and not declaring a name, this tag should
5501 shadow the previous declaration of a different type of tag, and
5502 this would not work properly if we return the reference found.
5503 (For example, with "struct foo" in an outer scope, "union foo;"
5504 must shadow that tag with a new one of union type.) */
5505 if (ref && TREE_CODE (ref) == code)
5506 return ref;
5508 /* If no such tag is yet defined, create a forward-reference node
5509 and record it as the "definition".
5510 When a real declaration of this type is found,
5511 the forward-reference will be altered into a real type. */
5513 ref = make_node (code);
5514 if (code == ENUMERAL_TYPE)
5516 /* Give the type a default layout like unsigned int
5517 to avoid crashing if it does not get defined. */
5518 TYPE_MODE (ref) = TYPE_MODE (unsigned_type_node);
5519 TYPE_ALIGN (ref) = TYPE_ALIGN (unsigned_type_node);
5520 TYPE_USER_ALIGN (ref) = 0;
5521 TREE_UNSIGNED (ref) = 1;
5522 TYPE_PRECISION (ref) = TYPE_PRECISION (unsigned_type_node);
5523 TYPE_MIN_VALUE (ref) = TYPE_MIN_VALUE (unsigned_type_node);
5524 TYPE_MAX_VALUE (ref) = TYPE_MAX_VALUE (unsigned_type_node);
5527 pushtag (name, ref);
5529 return ref;
5532 /* Make sure that the tag NAME is defined *in the current binding level*
5533 at least as a forward reference.
5534 CODE says which kind of tag NAME ought to be. */
5536 tree
5537 start_struct (code, name)
5538 enum tree_code code;
5539 tree name;
5541 /* If there is already a tag defined at this binding level
5542 (as a forward reference), just return it. */
5544 tree ref = 0;
5546 if (name != 0)
5547 ref = lookup_tag (code, name, current_binding_level, 1);
5548 if (ref && TREE_CODE (ref) == code)
5550 C_TYPE_BEING_DEFINED (ref) = 1;
5551 TYPE_PACKED (ref) = flag_pack_struct;
5552 if (TYPE_FIELDS (ref))
5554 if (code == UNION_TYPE)
5555 error ("redefinition of `union %s'",
5556 IDENTIFIER_POINTER (name));
5557 else
5558 error ("redefinition of `struct %s'",
5559 IDENTIFIER_POINTER (name));
5562 return ref;
5565 /* Otherwise create a forward-reference just so the tag is in scope. */
5567 ref = make_node (code);
5568 pushtag (name, ref);
5569 C_TYPE_BEING_DEFINED (ref) = 1;
5570 TYPE_PACKED (ref) = flag_pack_struct;
5571 return ref;
5574 /* Process the specs, declarator (NULL if omitted) and width (NULL if omitted)
5575 of a structure component, returning a FIELD_DECL node.
5576 WIDTH is non-NULL for bit fields only, and is an INTEGER_CST node.
5578 This is done during the parsing of the struct declaration.
5579 The FIELD_DECL nodes are chained together and the lot of them
5580 are ultimately passed to `build_struct' to make the RECORD_TYPE node. */
5582 tree
5583 grokfield (filename, line, declarator, declspecs, width)
5584 const char *filename ATTRIBUTE_UNUSED;
5585 int line ATTRIBUTE_UNUSED;
5586 tree declarator, declspecs, width;
5588 tree value;
5590 if (declarator == NULL_TREE && width == NULL_TREE)
5592 /* This is an unnamed decl. We only support unnamed
5593 structs/unions, so check for other things and refuse them. */
5594 tree type = TREE_VALUE (declspecs);
5596 if (TREE_CODE (type) == TYPE_DECL)
5597 type = TREE_TYPE (type);
5598 if (TREE_CODE (type) != RECORD_TYPE && TREE_CODE (type) != UNION_TYPE)
5600 error ("unnamed fields of type other than struct or union are not allowed");
5601 return NULL_TREE;
5605 value = grokdeclarator (declarator, declspecs, width ? BITFIELD : FIELD, 0);
5607 finish_decl (value, NULL_TREE, NULL_TREE);
5608 DECL_INITIAL (value) = width;
5610 maybe_objc_check_decl (value);
5611 return value;
5614 /* Fill in the fields of a RECORD_TYPE or UNION_TYPE node, T.
5615 FIELDLIST is a chain of FIELD_DECL nodes for the fields.
5616 ATTRIBUTES are attributes to be applied to the structure. */
5618 tree
5619 finish_struct (t, fieldlist, attributes)
5620 tree t;
5621 tree fieldlist;
5622 tree attributes;
5624 tree x;
5625 int toplevel = global_binding_level == current_binding_level;
5626 int saw_named_field;
5628 /* If this type was previously laid out as a forward reference,
5629 make sure we lay it out again. */
5631 TYPE_SIZE (t) = 0;
5633 decl_attributes (&t, attributes, (int) ATTR_FLAG_TYPE_IN_PLACE);
5635 /* Nameless union parm types are useful as GCC extension. */
5636 if (! (TREE_CODE (t) == UNION_TYPE && TYPE_NAME (t) == 0) && !pedantic)
5637 /* Otherwise, warn about any struct or union def. in parmlist. */
5638 if (in_parm_level_p ())
5640 if (pedantic)
5641 pedwarn ("%s defined inside parms",
5642 TREE_CODE (t) == UNION_TYPE ? _("union") : _("structure"));
5643 else if (! flag_traditional)
5644 warning ("%s defined inside parms",
5645 TREE_CODE (t) == UNION_TYPE ? _("union") : _("structure"));
5648 if (pedantic)
5650 for (x = fieldlist; x; x = TREE_CHAIN (x))
5651 if (DECL_NAME (x) != 0)
5652 break;
5654 if (x == 0)
5655 pedwarn ("%s has no %s",
5656 TREE_CODE (t) == UNION_TYPE ? _("union") : _("struct"),
5657 fieldlist ? _("named members") : _("members"));
5660 /* Install struct as DECL_CONTEXT of each field decl.
5661 Also process specified field sizes,m which is found in the DECL_INITIAL.
5662 Store 0 there, except for ": 0" fields (so we can find them
5663 and delete them, below). */
5665 saw_named_field = 0;
5666 for (x = fieldlist; x; x = TREE_CHAIN (x))
5668 DECL_CONTEXT (x) = t;
5669 DECL_PACKED (x) |= TYPE_PACKED (t);
5671 /* If any field is const, the structure type is pseudo-const. */
5672 if (TREE_READONLY (x))
5673 C_TYPE_FIELDS_READONLY (t) = 1;
5674 else
5676 /* A field that is pseudo-const makes the structure likewise. */
5677 tree t1 = TREE_TYPE (x);
5678 while (TREE_CODE (t1) == ARRAY_TYPE)
5679 t1 = TREE_TYPE (t1);
5680 if ((TREE_CODE (t1) == RECORD_TYPE || TREE_CODE (t1) == UNION_TYPE)
5681 && C_TYPE_FIELDS_READONLY (t1))
5682 C_TYPE_FIELDS_READONLY (t) = 1;
5685 /* Any field that is volatile means variables of this type must be
5686 treated in some ways as volatile. */
5687 if (TREE_THIS_VOLATILE (x))
5688 C_TYPE_FIELDS_VOLATILE (t) = 1;
5690 /* Any field of nominal variable size implies structure is too. */
5691 if (C_DECL_VARIABLE_SIZE (x))
5692 C_TYPE_VARIABLE_SIZE (t) = 1;
5694 /* Detect invalid nested redefinition. */
5695 if (TREE_TYPE (x) == t)
5696 error ("nested redefinition of `%s'",
5697 IDENTIFIER_POINTER (TYPE_NAME (t)));
5699 /* Detect invalid bit-field size. */
5700 if (DECL_INITIAL (x))
5701 STRIP_NOPS (DECL_INITIAL (x));
5702 if (DECL_INITIAL (x))
5704 if (TREE_CODE (DECL_INITIAL (x)) == INTEGER_CST)
5705 constant_expression_warning (DECL_INITIAL (x));
5706 else
5708 error_with_decl (x,
5709 "bit-field `%s' width not an integer constant");
5710 DECL_INITIAL (x) = NULL;
5714 /* Detect invalid bit-field type. */
5715 if (DECL_INITIAL (x)
5716 && TREE_CODE (TREE_TYPE (x)) != INTEGER_TYPE
5717 && TREE_CODE (TREE_TYPE (x)) != BOOLEAN_TYPE
5718 && TREE_CODE (TREE_TYPE (x)) != ENUMERAL_TYPE)
5720 error_with_decl (x, "bit-field `%s' has invalid type");
5721 DECL_INITIAL (x) = NULL;
5724 if (DECL_INITIAL (x) && pedantic
5725 && TYPE_MAIN_VARIANT (TREE_TYPE (x)) != integer_type_node
5726 && TYPE_MAIN_VARIANT (TREE_TYPE (x)) != unsigned_type_node
5727 && TYPE_MAIN_VARIANT (TREE_TYPE (x)) != c_bool_type_node
5728 /* Accept an enum that's equivalent to int or unsigned int. */
5729 && !(TREE_CODE (TREE_TYPE (x)) == ENUMERAL_TYPE
5730 && (TYPE_PRECISION (TREE_TYPE (x))
5731 == TYPE_PRECISION (integer_type_node))))
5732 pedwarn_with_decl (x, "bit-field `%s' type invalid in ISO C");
5734 /* Detect and ignore out of range field width and process valid
5735 field widths. */
5736 if (DECL_INITIAL (x))
5738 int max_width
5739 = (TYPE_MAIN_VARIANT (TREE_TYPE (x)) == c_bool_type_node
5740 ? CHAR_TYPE_SIZE : TYPE_PRECISION (TREE_TYPE (x)));
5742 if (tree_int_cst_sgn (DECL_INITIAL (x)) < 0)
5743 error_with_decl (x, "negative width in bit-field `%s'");
5744 else if (0 < compare_tree_int (DECL_INITIAL (x), max_width))
5745 pedwarn_with_decl (x, "width of `%s' exceeds its type");
5746 else if (integer_zerop (DECL_INITIAL (x)) && DECL_NAME (x) != 0)
5747 error_with_decl (x, "zero width for bit-field `%s'");
5748 else
5750 /* The test above has assured us that TREE_INT_CST_HIGH is 0. */
5751 unsigned HOST_WIDE_INT width
5752 = tree_low_cst (DECL_INITIAL (x), 1);
5754 if (TREE_CODE (TREE_TYPE (x)) == ENUMERAL_TYPE
5755 && (width < min_precision (TYPE_MIN_VALUE (TREE_TYPE (x)),
5756 TREE_UNSIGNED (TREE_TYPE (x)))
5757 || (width
5758 < min_precision (TYPE_MAX_VALUE (TREE_TYPE (x)),
5759 TREE_UNSIGNED (TREE_TYPE (x))))))
5760 warning_with_decl (x,
5761 "`%s' is narrower than values of its type");
5763 DECL_SIZE (x) = bitsize_int (width);
5764 DECL_BIT_FIELD (x) = 1;
5765 SET_DECL_C_BIT_FIELD (x);
5767 if (width == 0
5768 && ! (* targetm.ms_bitfield_layout_p) (t))
5770 /* field size 0 => force desired amount of alignment. */
5771 #ifdef EMPTY_FIELD_BOUNDARY
5772 DECL_ALIGN (x) = MAX (DECL_ALIGN (x), EMPTY_FIELD_BOUNDARY);
5773 #endif
5774 #ifdef PCC_BITFIELD_TYPE_MATTERS
5775 if (PCC_BITFIELD_TYPE_MATTERS)
5777 DECL_ALIGN (x) = MAX (DECL_ALIGN (x),
5778 TYPE_ALIGN (TREE_TYPE (x)));
5779 DECL_USER_ALIGN (x) |= TYPE_USER_ALIGN (TREE_TYPE (x));
5781 #endif
5786 else if (TREE_TYPE (x) != error_mark_node)
5788 unsigned int min_align = (DECL_PACKED (x) ? BITS_PER_UNIT
5789 : TYPE_ALIGN (TREE_TYPE (x)));
5791 /* Non-bit-fields are aligned for their type, except packed
5792 fields which require only BITS_PER_UNIT alignment. */
5793 DECL_ALIGN (x) = MAX (DECL_ALIGN (x), min_align);
5794 if (! DECL_PACKED (x))
5795 DECL_USER_ALIGN (x) |= TYPE_USER_ALIGN (TREE_TYPE (x));
5798 DECL_INITIAL (x) = 0;
5800 /* Detect flexible array member in an invalid context. */
5801 if (TREE_CODE (TREE_TYPE (x)) == ARRAY_TYPE
5802 && TYPE_SIZE (TREE_TYPE (x)) == NULL_TREE
5803 && TYPE_DOMAIN (TREE_TYPE (x)) != NULL_TREE
5804 && TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (x))) == NULL_TREE)
5806 if (TREE_CODE (t) == UNION_TYPE)
5807 error_with_decl (x, "flexible array member in union");
5808 else if (TREE_CHAIN (x) != NULL_TREE)
5809 error_with_decl (x, "flexible array member not at end of struct");
5810 else if (! saw_named_field)
5811 error_with_decl (x, "flexible array member in otherwise empty struct");
5813 if (DECL_NAME (x))
5814 saw_named_field = 1;
5817 /* Delete all duplicate fields from the fieldlist */
5818 for (x = fieldlist; x && TREE_CHAIN (x);)
5819 /* Anonymous fields aren't duplicates. */
5820 if (DECL_NAME (TREE_CHAIN (x)) == 0)
5821 x = TREE_CHAIN (x);
5822 else
5824 tree y = fieldlist;
5826 while (1)
5828 if (DECL_NAME (y) == DECL_NAME (TREE_CHAIN (x)))
5829 break;
5830 if (y == x)
5831 break;
5832 y = TREE_CHAIN (y);
5834 if (DECL_NAME (y) == DECL_NAME (TREE_CHAIN (x)))
5836 error_with_decl (TREE_CHAIN (x), "duplicate member `%s'");
5837 TREE_CHAIN (x) = TREE_CHAIN (TREE_CHAIN (x));
5839 else
5840 x = TREE_CHAIN (x);
5843 /* Now we have the nearly final fieldlist. Record it,
5844 then lay out the structure or union (including the fields). */
5846 TYPE_FIELDS (t) = fieldlist;
5848 layout_type (t);
5850 /* Delete all zero-width bit-fields from the fieldlist */
5852 tree *fieldlistp = &fieldlist;
5853 while (*fieldlistp)
5854 if (TREE_CODE (*fieldlistp) == FIELD_DECL && DECL_INITIAL (*fieldlistp))
5855 *fieldlistp = TREE_CHAIN (*fieldlistp);
5856 else
5857 fieldlistp = &TREE_CHAIN (*fieldlistp);
5860 /* Now we have the truly final field list.
5861 Store it in this type and in the variants. */
5863 TYPE_FIELDS (t) = fieldlist;
5865 for (x = TYPE_MAIN_VARIANT (t); x; x = TYPE_NEXT_VARIANT (x))
5867 TYPE_FIELDS (x) = TYPE_FIELDS (t);
5868 TYPE_LANG_SPECIFIC (x) = TYPE_LANG_SPECIFIC (t);
5869 TYPE_ALIGN (x) = TYPE_ALIGN (t);
5870 TYPE_USER_ALIGN (x) = TYPE_USER_ALIGN (t);
5873 /* If this was supposed to be a transparent union, but we can't
5874 make it one, warn and turn off the flag. */
5875 if (TREE_CODE (t) == UNION_TYPE
5876 && TYPE_TRANSPARENT_UNION (t)
5877 && TYPE_MODE (t) != DECL_MODE (TYPE_FIELDS (t)))
5879 TYPE_TRANSPARENT_UNION (t) = 0;
5880 warning ("union cannot be made transparent");
5883 /* If this structure or union completes the type of any previous
5884 variable declaration, lay it out and output its rtl. */
5886 if (current_binding_level->n_incomplete != 0)
5888 tree decl;
5889 for (decl = current_binding_level->names; decl; decl = TREE_CHAIN (decl))
5891 if (TYPE_MAIN_VARIANT (TREE_TYPE (decl)) == TYPE_MAIN_VARIANT (t)
5892 && TREE_CODE (decl) != TYPE_DECL)
5894 layout_decl (decl, 0);
5895 /* This is a no-op in c-lang.c or something real in objc-actions.c. */
5896 maybe_objc_check_decl (decl);
5897 rest_of_decl_compilation (decl, NULL, toplevel, 0);
5898 if (! toplevel)
5899 expand_decl (decl);
5900 if (--current_binding_level->n_incomplete == 0)
5901 break;
5903 else if (!COMPLETE_TYPE_P (TREE_TYPE (decl))
5904 && TREE_CODE (TREE_TYPE (decl)) == ARRAY_TYPE)
5906 tree element = TREE_TYPE (decl);
5907 while (TREE_CODE (element) == ARRAY_TYPE)
5908 element = TREE_TYPE (element);
5909 if (element == t)
5911 layout_array_type (TREE_TYPE (decl));
5912 if (TREE_CODE (decl) != TYPE_DECL)
5914 layout_decl (decl, 0);
5915 maybe_objc_check_decl (decl);
5916 rest_of_decl_compilation (decl, NULL, toplevel, 0);
5917 if (! toplevel)
5918 expand_decl (decl);
5920 if (--current_binding_level->n_incomplete == 0)
5921 break;
5927 /* Finish debugging output for this type. */
5928 rest_of_type_compilation (t, toplevel);
5930 return t;
5933 /* Lay out the type T, and its element type, and so on. */
5935 static void
5936 layout_array_type (t)
5937 tree t;
5939 if (TREE_CODE (TREE_TYPE (t)) == ARRAY_TYPE)
5940 layout_array_type (TREE_TYPE (t));
5941 layout_type (t);
5944 /* Begin compiling the definition of an enumeration type.
5945 NAME is its name (or null if anonymous).
5946 Returns the type object, as yet incomplete.
5947 Also records info about it so that build_enumerator
5948 may be used to declare the individual values as they are read. */
5950 tree
5951 start_enum (name)
5952 tree name;
5954 tree enumtype = 0;
5956 /* If this is the real definition for a previous forward reference,
5957 fill in the contents in the same object that used to be the
5958 forward reference. */
5960 if (name != 0)
5961 enumtype = lookup_tag (ENUMERAL_TYPE, name, current_binding_level, 1);
5963 if (enumtype == 0 || TREE_CODE (enumtype) != ENUMERAL_TYPE)
5965 enumtype = make_node (ENUMERAL_TYPE);
5966 pushtag (name, enumtype);
5969 C_TYPE_BEING_DEFINED (enumtype) = 1;
5971 if (TYPE_VALUES (enumtype) != 0)
5973 /* This enum is a named one that has been declared already. */
5974 error ("redeclaration of `enum %s'", IDENTIFIER_POINTER (name));
5976 /* Completely replace its old definition.
5977 The old enumerators remain defined, however. */
5978 TYPE_VALUES (enumtype) = 0;
5981 enum_next_value = integer_zero_node;
5982 enum_overflow = 0;
5984 if (flag_short_enums)
5985 TYPE_PACKED (enumtype) = 1;
5987 return enumtype;
5990 /* After processing and defining all the values of an enumeration type,
5991 install their decls in the enumeration type and finish it off.
5992 ENUMTYPE is the type object, VALUES a list of decl-value pairs,
5993 and ATTRIBUTES are the specified attributes.
5994 Returns ENUMTYPE. */
5996 tree
5997 finish_enum (enumtype, values, attributes)
5998 tree enumtype;
5999 tree values;
6000 tree attributes;
6002 tree pair, tem;
6003 tree minnode = 0, maxnode = 0, enum_value_type;
6004 int precision, unsign;
6005 int toplevel = (global_binding_level == current_binding_level);
6007 if (in_parm_level_p ())
6008 warning ("enum defined inside parms");
6010 decl_attributes (&enumtype, attributes, (int) ATTR_FLAG_TYPE_IN_PLACE);
6012 /* Calculate the maximum value of any enumerator in this type. */
6014 if (values == error_mark_node)
6015 minnode = maxnode = integer_zero_node;
6016 else
6018 minnode = maxnode = TREE_VALUE (values);
6019 for (pair = TREE_CHAIN (values); pair; pair = TREE_CHAIN (pair))
6021 tree value = TREE_VALUE (pair);
6022 if (tree_int_cst_lt (maxnode, value))
6023 maxnode = value;
6024 if (tree_int_cst_lt (value, minnode))
6025 minnode = value;
6029 /* Construct the final type of this enumeration. It is the same
6030 as one of the integral types - the narrowest one that fits, except
6031 that normally we only go as narrow as int - and signed iff any of
6032 the values are negative. */
6033 unsign = (tree_int_cst_sgn (minnode) >= 0);
6034 precision = MAX (min_precision (minnode, unsign),
6035 min_precision (maxnode, unsign));
6036 if (TYPE_PACKED (enumtype) || precision > TYPE_PRECISION (integer_type_node))
6038 tree narrowest = type_for_size (precision, unsign);
6039 if (narrowest == 0)
6041 warning ("enumeration values exceed range of largest integer");
6042 narrowest = long_long_integer_type_node;
6045 precision = TYPE_PRECISION (narrowest);
6047 else
6048 precision = TYPE_PRECISION (integer_type_node);
6050 if (precision == TYPE_PRECISION (integer_type_node))
6051 enum_value_type = type_for_size (precision, 0);
6052 else
6053 enum_value_type = enumtype;
6055 TYPE_MIN_VALUE (enumtype) = minnode;
6056 TYPE_MAX_VALUE (enumtype) = maxnode;
6057 TYPE_PRECISION (enumtype) = precision;
6058 TREE_UNSIGNED (enumtype) = unsign;
6059 TYPE_SIZE (enumtype) = 0;
6060 layout_type (enumtype);
6062 if (values != error_mark_node)
6064 /* Change the type of the enumerators to be the enum type. We
6065 need to do this irrespective of the size of the enum, for
6066 proper type checking. Replace the DECL_INITIALs of the
6067 enumerators, and the value slots of the list, with copies
6068 that have the enum type; they cannot be modified in place
6069 because they may be shared (e.g. integer_zero_node) Finally,
6070 change the purpose slots to point to the names of the decls. */
6071 for (pair = values; pair; pair = TREE_CHAIN (pair))
6073 tree enu = TREE_PURPOSE (pair);
6075 TREE_TYPE (enu) = enumtype;
6076 DECL_SIZE (enu) = TYPE_SIZE (enumtype);
6077 DECL_SIZE_UNIT (enu) = TYPE_SIZE_UNIT (enumtype);
6078 DECL_ALIGN (enu) = TYPE_ALIGN (enumtype);
6079 DECL_USER_ALIGN (enu) = TYPE_USER_ALIGN (enumtype);
6080 DECL_MODE (enu) = TYPE_MODE (enumtype);
6082 /* The ISO C Standard mandates enumerators to have type int,
6083 even though the underlying type of an enum type is
6084 unspecified. Here we convert any enumerators that fit in
6085 an int to type int, to avoid promotions to unsigned types
6086 when comparing integers with enumerators that fit in the
6087 int range. When -pedantic is given, build_enumerator()
6088 would have already taken care of those that don't fit. */
6089 if (int_fits_type_p (DECL_INITIAL (enu), enum_value_type))
6090 DECL_INITIAL (enu) = convert (enum_value_type, DECL_INITIAL (enu));
6091 else
6092 DECL_INITIAL (enu) = convert (enumtype, DECL_INITIAL (enu));
6094 TREE_PURPOSE (pair) = DECL_NAME (enu);
6095 TREE_VALUE (pair) = DECL_INITIAL (enu);
6098 TYPE_VALUES (enumtype) = values;
6101 /* Fix up all variant types of this enum type. */
6102 for (tem = TYPE_MAIN_VARIANT (enumtype); tem; tem = TYPE_NEXT_VARIANT (tem))
6104 if (tem == enumtype)
6105 continue;
6106 TYPE_VALUES (tem) = TYPE_VALUES (enumtype);
6107 TYPE_MIN_VALUE (tem) = TYPE_MIN_VALUE (enumtype);
6108 TYPE_MAX_VALUE (tem) = TYPE_MAX_VALUE (enumtype);
6109 TYPE_SIZE (tem) = TYPE_SIZE (enumtype);
6110 TYPE_SIZE_UNIT (tem) = TYPE_SIZE_UNIT (enumtype);
6111 TYPE_MODE (tem) = TYPE_MODE (enumtype);
6112 TYPE_PRECISION (tem) = TYPE_PRECISION (enumtype);
6113 TYPE_ALIGN (tem) = TYPE_ALIGN (enumtype);
6114 TYPE_USER_ALIGN (tem) = TYPE_USER_ALIGN (enumtype);
6115 TREE_UNSIGNED (tem) = TREE_UNSIGNED (enumtype);
6118 /* Finish debugging output for this type. */
6119 rest_of_type_compilation (enumtype, toplevel);
6121 return enumtype;
6124 /* Build and install a CONST_DECL for one value of the
6125 current enumeration type (one that was begun with start_enum).
6126 Return a tree-list containing the CONST_DECL and its value.
6127 Assignment of sequential values by default is handled here. */
6129 tree
6130 build_enumerator (name, value)
6131 tree name, value;
6133 tree decl, type;
6135 /* Validate and default VALUE. */
6137 /* Remove no-op casts from the value. */
6138 if (value)
6139 STRIP_TYPE_NOPS (value);
6141 if (value != 0)
6143 if (TREE_CODE (value) == INTEGER_CST)
6145 value = default_conversion (value);
6146 constant_expression_warning (value);
6148 else
6150 error ("enumerator value for `%s' not integer constant",
6151 IDENTIFIER_POINTER (name));
6152 value = 0;
6156 /* Default based on previous value. */
6157 /* It should no longer be possible to have NON_LVALUE_EXPR
6158 in the default. */
6159 if (value == 0)
6161 value = enum_next_value;
6162 if (enum_overflow)
6163 error ("overflow in enumeration values");
6166 if (pedantic && ! int_fits_type_p (value, integer_type_node))
6168 pedwarn ("ISO C restricts enumerator values to range of `int'");
6169 value = convert (integer_type_node, value);
6172 /* Set basis for default for next value. */
6173 enum_next_value = build_binary_op (PLUS_EXPR, value, integer_one_node, 0);
6174 enum_overflow = tree_int_cst_lt (enum_next_value, value);
6176 /* Now create a declaration for the enum value name. */
6178 type = TREE_TYPE (value);
6179 type = type_for_size (MAX (TYPE_PRECISION (type),
6180 TYPE_PRECISION (integer_type_node)),
6181 ((flag_traditional
6182 || TYPE_PRECISION (type) >= TYPE_PRECISION (integer_type_node))
6183 && TREE_UNSIGNED (type)));
6185 decl = build_decl (CONST_DECL, name, type);
6186 DECL_INITIAL (decl) = convert (type, value);
6187 pushdecl (decl);
6189 return tree_cons (decl, value, NULL_TREE);
6193 /* Create the FUNCTION_DECL for a function definition.
6194 DECLSPECS, DECLARATOR and ATTRIBUTES are the parts of
6195 the declaration; they describe the function's name and the type it returns,
6196 but twisted together in a fashion that parallels the syntax of C.
6198 This function creates a binding context for the function body
6199 as well as setting up the FUNCTION_DECL in current_function_decl.
6201 Returns 1 on success. If the DECLARATOR is not suitable for a function
6202 (it defines a datum instead), we return 0, which tells
6203 yyparse to report a parse error. */
6206 start_function (declspecs, declarator, attributes)
6207 tree declarator, declspecs, attributes;
6209 tree decl1, old_decl;
6210 tree restype;
6211 int old_immediate_size_expand = immediate_size_expand;
6213 current_function_returns_value = 0; /* Assume, until we see it does. */
6214 current_function_returns_null = 0;
6215 current_function_returns_abnormally = 0;
6216 warn_about_return_type = 0;
6217 current_extern_inline = 0;
6218 c_function_varargs = 0;
6219 named_labels = 0;
6220 shadowed_labels = 0;
6222 /* Don't expand any sizes in the return type of the function. */
6223 immediate_size_expand = 0;
6225 decl1 = grokdeclarator (declarator, declspecs, FUNCDEF, 1);
6227 /* If the declarator is not suitable for a function definition,
6228 cause a syntax error. */
6229 if (decl1 == 0)
6231 immediate_size_expand = old_immediate_size_expand;
6232 return 0;
6235 decl_attributes (&decl1, attributes, 0);
6237 /* If #pragma weak was used, mark the decl weak now. */
6238 if (current_binding_level == global_binding_level)
6239 maybe_apply_pragma_weak (decl1);
6241 if (DECL_DECLARED_INLINE_P (decl1)
6242 && DECL_UNINLINABLE (decl1)
6243 && lookup_attribute ("noinline", DECL_ATTRIBUTES (decl1)))
6244 warning_with_decl (decl1,
6245 "inline function `%s' given attribute noinline");
6247 announce_function (decl1);
6249 if (!COMPLETE_OR_VOID_TYPE_P (TREE_TYPE (TREE_TYPE (decl1))))
6251 error ("return type is an incomplete type");
6252 /* Make it return void instead. */
6253 TREE_TYPE (decl1)
6254 = build_function_type (void_type_node,
6255 TYPE_ARG_TYPES (TREE_TYPE (decl1)));
6258 if (warn_about_return_type)
6259 pedwarn_c99 ("return type defaults to `int'");
6261 /* Save the parm names or decls from this function's declarator
6262 where store_parm_decls will find them. */
6263 current_function_parms = last_function_parms;
6264 current_function_parm_tags = last_function_parm_tags;
6266 /* Make the init_value nonzero so pushdecl knows this is not tentative.
6267 error_mark_node is replaced below (in poplevel) with the BLOCK. */
6268 DECL_INITIAL (decl1) = error_mark_node;
6270 /* If this definition isn't a prototype and we had a prototype declaration
6271 before, copy the arg type info from that prototype.
6272 But not if what we had before was a builtin function. */
6273 old_decl = lookup_name_current_level (DECL_NAME (decl1));
6274 if (old_decl != 0 && TREE_CODE (TREE_TYPE (old_decl)) == FUNCTION_TYPE
6275 && !DECL_BUILT_IN (old_decl)
6276 && (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (decl1)))
6277 == TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (old_decl))))
6278 && TYPE_ARG_TYPES (TREE_TYPE (decl1)) == 0)
6280 TREE_TYPE (decl1) = TREE_TYPE (old_decl);
6281 current_function_prototype_file = DECL_SOURCE_FILE (old_decl);
6282 current_function_prototype_line = DECL_SOURCE_LINE (old_decl);
6285 /* If there is no explicit declaration, look for any out-of-scope implicit
6286 declarations. */
6287 if (old_decl == 0)
6288 old_decl = IDENTIFIER_IMPLICIT_DECL (DECL_NAME (decl1));
6290 /* Optionally warn of old-fashioned def with no previous prototype. */
6291 if (warn_strict_prototypes
6292 && TYPE_ARG_TYPES (TREE_TYPE (decl1)) == 0
6293 && !(old_decl != 0
6294 && (TYPE_ARG_TYPES (TREE_TYPE (old_decl)) != 0
6295 || (DECL_BUILT_IN (old_decl)
6296 && ! C_DECL_ANTICIPATED (old_decl)))))
6297 warning ("function declaration isn't a prototype");
6298 /* Optionally warn of any global def with no previous prototype. */
6299 else if (warn_missing_prototypes
6300 && TREE_PUBLIC (decl1)
6301 && !(old_decl != 0
6302 && (TYPE_ARG_TYPES (TREE_TYPE (old_decl)) != 0
6303 || (DECL_BUILT_IN (old_decl)
6304 && ! C_DECL_ANTICIPATED (old_decl))))
6305 && ! MAIN_NAME_P (DECL_NAME (decl1)))
6306 warning_with_decl (decl1, "no previous prototype for `%s'");
6307 /* Optionally warn of any def with no previous prototype
6308 if the function has already been used. */
6309 else if (warn_missing_prototypes
6310 && old_decl != 0 && TREE_USED (old_decl)
6311 && TYPE_ARG_TYPES (TREE_TYPE (old_decl)) == 0)
6312 warning_with_decl (decl1,
6313 "`%s' was used with no prototype before its definition");
6314 /* Optionally warn of any global def with no previous declaration. */
6315 else if (warn_missing_declarations
6316 && TREE_PUBLIC (decl1)
6317 && old_decl == 0
6318 && ! MAIN_NAME_P (DECL_NAME (decl1)))
6319 warning_with_decl (decl1, "no previous declaration for `%s'");
6320 /* Optionally warn of any def with no previous declaration
6321 if the function has already been used. */
6322 else if (warn_missing_declarations
6323 && old_decl != 0 && TREE_USED (old_decl)
6324 && old_decl == IDENTIFIER_IMPLICIT_DECL (DECL_NAME (decl1)))
6325 warning_with_decl (decl1,
6326 "`%s' was used with no declaration before its definition");
6328 /* This is a definition, not a reference.
6329 So normally clear DECL_EXTERNAL.
6330 However, `extern inline' acts like a declaration
6331 except for defining how to inline. So set DECL_EXTERNAL in that case. */
6332 DECL_EXTERNAL (decl1) = current_extern_inline;
6334 /* This function exists in static storage.
6335 (This does not mean `static' in the C sense!) */
6336 TREE_STATIC (decl1) = 1;
6338 /* A nested function is not global. */
6339 if (current_function_decl != 0)
6340 TREE_PUBLIC (decl1) = 0;
6342 /* Warn for unlikely, improbable, or stupid declarations of `main'. */
6343 if (warn_main > 0 && MAIN_NAME_P (DECL_NAME (decl1)))
6345 tree args;
6346 int argct = 0;
6348 if (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (decl1)))
6349 != integer_type_node)
6350 pedwarn_with_decl (decl1, "return type of `%s' is not `int'");
6352 for (args = TYPE_ARG_TYPES (TREE_TYPE (decl1)); args;
6353 args = TREE_CHAIN (args))
6355 tree type = args ? TREE_VALUE (args) : 0;
6357 if (type == void_type_node)
6358 break;
6360 ++argct;
6361 switch (argct)
6363 case 1:
6364 if (TYPE_MAIN_VARIANT (type) != integer_type_node)
6365 pedwarn_with_decl (decl1,
6366 "first argument of `%s' should be `int'");
6367 break;
6369 case 2:
6370 if (TREE_CODE (type) != POINTER_TYPE
6371 || TREE_CODE (TREE_TYPE (type)) != POINTER_TYPE
6372 || (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (type)))
6373 != char_type_node))
6374 pedwarn_with_decl (decl1,
6375 "second argument of `%s' should be `char **'");
6376 break;
6378 case 3:
6379 if (TREE_CODE (type) != POINTER_TYPE
6380 || TREE_CODE (TREE_TYPE (type)) != POINTER_TYPE
6381 || (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (type)))
6382 != char_type_node))
6383 pedwarn_with_decl (decl1,
6384 "third argument of `%s' should probably be `char **'");
6385 break;
6389 /* It is intentional that this message does not mention the third
6390 argument because it's only mentioned in an appendix of the
6391 standard. */
6392 if (argct > 0 && (argct < 2 || argct > 3))
6393 pedwarn_with_decl (decl1, "`%s' takes only zero or two arguments");
6395 if (! TREE_PUBLIC (decl1))
6396 pedwarn_with_decl (decl1, "`%s' is normally a non-static function");
6399 /* Record the decl so that the function name is defined.
6400 If we already have a decl for this name, and it is a FUNCTION_DECL,
6401 use the old decl. */
6403 current_function_decl = pushdecl (decl1);
6405 pushlevel (0);
6406 declare_parm_level (1);
6407 current_binding_level->subblocks_tag_transparent = 1;
6409 make_decl_rtl (current_function_decl, NULL);
6411 restype = TREE_TYPE (TREE_TYPE (current_function_decl));
6412 /* Promote the value to int before returning it. */
6413 if (c_promoting_integer_type_p (restype))
6415 /* It retains unsignedness if traditional
6416 or if not really getting wider. */
6417 if (TREE_UNSIGNED (restype)
6418 && (flag_traditional
6419 || (TYPE_PRECISION (restype)
6420 == TYPE_PRECISION (integer_type_node))))
6421 restype = unsigned_type_node;
6422 else
6423 restype = integer_type_node;
6425 DECL_RESULT (current_function_decl)
6426 = build_decl (RESULT_DECL, NULL_TREE, restype);
6428 /* If this fcn was already referenced via a block-scope `extern' decl
6429 (or an implicit decl), propagate certain information about the usage. */
6430 if (TREE_ADDRESSABLE (DECL_ASSEMBLER_NAME (current_function_decl)))
6431 TREE_ADDRESSABLE (current_function_decl) = 1;
6433 immediate_size_expand = old_immediate_size_expand;
6435 start_fname_decls ();
6437 return 1;
6440 /* Record that this function is going to be a varargs function.
6441 This is called before store_parm_decls, which is too early
6442 to call mark_varargs directly. */
6444 void
6445 c_mark_varargs ()
6447 c_function_varargs = 1;
6450 /* Store the parameter declarations into the current function declaration.
6451 This is called after parsing the parameter declarations, before
6452 digesting the body of the function.
6454 For an old-style definition, modify the function's type
6455 to specify at least the number of arguments. */
6457 void
6458 store_parm_decls ()
6460 tree fndecl = current_function_decl;
6461 tree parm;
6463 /* This is either a chain of PARM_DECLs (if a prototype was used)
6464 or a list of IDENTIFIER_NODEs (for an old-fashioned C definition). */
6465 tree specparms = current_function_parms;
6467 /* This is a list of types declared among parms in a prototype. */
6468 tree parmtags = current_function_parm_tags;
6470 /* This is a chain of PARM_DECLs from old-style parm declarations. */
6471 tree parmdecls = getdecls ();
6473 /* This is a chain of any other decls that came in among the parm
6474 declarations. If a parm is declared with enum {foo, bar} x;
6475 then CONST_DECLs for foo and bar are put here. */
6476 tree nonparms = 0;
6478 /* The function containing FNDECL, if any. */
6479 tree context = decl_function_context (fndecl);
6481 /* Nonzero if this definition is written with a prototype. */
6482 int prototype = 0;
6484 int saved_warn_shadow = warn_shadow;
6486 /* Don't re-emit shadow warnings. */
6487 warn_shadow = 0;
6489 if (specparms != 0 && TREE_CODE (specparms) != TREE_LIST)
6491 /* This case is when the function was defined with an ANSI prototype.
6492 The parms already have decls, so we need not do anything here
6493 except record them as in effect
6494 and complain if any redundant old-style parm decls were written. */
6496 tree next;
6497 tree others = 0;
6499 prototype = 1;
6501 if (parmdecls != 0)
6503 tree decl, link;
6505 error_with_decl (fndecl,
6506 "parm types given both in parmlist and separately");
6507 /* Get rid of the erroneous decls; don't keep them on
6508 the list of parms, since they might not be PARM_DECLs. */
6509 for (decl = current_binding_level->names;
6510 decl; decl = TREE_CHAIN (decl))
6511 if (DECL_NAME (decl))
6512 IDENTIFIER_LOCAL_VALUE (DECL_NAME (decl)) = 0;
6513 for (link = current_binding_level->shadowed;
6514 link; link = TREE_CHAIN (link))
6515 IDENTIFIER_LOCAL_VALUE (TREE_PURPOSE (link)) = TREE_VALUE (link);
6516 current_binding_level->names = 0;
6517 current_binding_level->shadowed = 0;
6520 specparms = nreverse (specparms);
6521 for (parm = specparms; parm; parm = next)
6523 next = TREE_CHAIN (parm);
6524 if (TREE_CODE (parm) == PARM_DECL)
6526 if (DECL_NAME (parm) == 0)
6527 error_with_decl (parm, "parameter name omitted");
6528 else if (TREE_CODE (TREE_TYPE (parm)) != ERROR_MARK
6529 && VOID_TYPE_P (TREE_TYPE (parm)))
6531 error_with_decl (parm, "parameter `%s' declared void");
6532 /* Change the type to error_mark_node so this parameter
6533 will be ignored by assign_parms. */
6534 TREE_TYPE (parm) = error_mark_node;
6536 pushdecl (parm);
6538 else
6540 /* If we find an enum constant or a type tag,
6541 put it aside for the moment. */
6542 TREE_CHAIN (parm) = 0;
6543 others = chainon (others, parm);
6547 /* Get the decls in their original chain order
6548 and record in the function. */
6549 DECL_ARGUMENTS (fndecl) = getdecls ();
6551 #if 0
6552 /* If this function takes a variable number of arguments,
6553 add a phony parameter to the end of the parm list,
6554 to represent the position of the first unnamed argument. */
6555 if (TREE_VALUE (tree_last (TYPE_ARG_TYPES (TREE_TYPE (fndecl))))
6556 != void_type_node)
6558 tree dummy = build_decl (PARM_DECL, NULL_TREE, void_type_node);
6559 /* Let's hope the address of the unnamed parm
6560 won't depend on its type. */
6561 TREE_TYPE (dummy) = integer_type_node;
6562 DECL_ARG_TYPE (dummy) = integer_type_node;
6563 DECL_ARGUMENTS (fndecl) = chainon (DECL_ARGUMENTS (fndecl), dummy);
6565 #endif
6567 /* Now pushdecl the enum constants. */
6568 for (parm = others; parm; parm = next)
6570 next = TREE_CHAIN (parm);
6571 if (DECL_NAME (parm) == 0)
6573 else if (TYPE_MAIN_VARIANT (TREE_TYPE (parm)) == void_type_node)
6575 else if (TREE_CODE (parm) != PARM_DECL)
6576 pushdecl (parm);
6579 storetags (chainon (parmtags, gettags ()));
6581 else
6583 /* SPECPARMS is an identifier list--a chain of TREE_LIST nodes
6584 each with a parm name as the TREE_VALUE.
6586 PARMDECLS is a chain of declarations for parameters.
6587 Warning! It can also contain CONST_DECLs which are not parameters
6588 but are names of enumerators of any enum types
6589 declared among the parameters.
6591 First match each formal parameter name with its declaration.
6592 Associate decls with the names and store the decls
6593 into the TREE_PURPOSE slots. */
6595 /* We use DECL_WEAK as a flag to show which parameters have been
6596 seen already since it is not used on PARM_DECL or CONST_DECL. */
6597 for (parm = parmdecls; parm; parm = TREE_CHAIN (parm))
6598 DECL_WEAK (parm) = 0;
6600 for (parm = specparms; parm; parm = TREE_CHAIN (parm))
6602 tree tail, found = NULL;
6604 if (TREE_VALUE (parm) == 0)
6606 error_with_decl (fndecl,
6607 "parameter name missing from parameter list");
6608 TREE_PURPOSE (parm) = 0;
6609 continue;
6612 /* See if any of the parmdecls specifies this parm by name.
6613 Ignore any enumerator decls. */
6614 for (tail = parmdecls; tail; tail = TREE_CHAIN (tail))
6615 if (DECL_NAME (tail) == TREE_VALUE (parm)
6616 && TREE_CODE (tail) == PARM_DECL)
6618 found = tail;
6619 break;
6622 /* If declaration already marked, we have a duplicate name.
6623 Complain, and don't use this decl twice. */
6624 if (found && DECL_WEAK (found))
6626 error_with_decl (found, "multiple parameters named `%s'");
6627 found = 0;
6630 /* If the declaration says "void", complain and ignore it. */
6631 if (found && VOID_TYPE_P (TREE_TYPE (found)))
6633 error_with_decl (found, "parameter `%s' declared void");
6634 TREE_TYPE (found) = integer_type_node;
6635 DECL_ARG_TYPE (found) = integer_type_node;
6636 layout_decl (found, 0);
6639 /* Traditionally, a parm declared float is actually a double. */
6640 if (found && flag_traditional
6641 && TYPE_MAIN_VARIANT (TREE_TYPE (found)) == float_type_node)
6643 TREE_TYPE (found) = double_type_node;
6644 DECL_ARG_TYPE (found) = double_type_node;
6645 layout_decl (found, 0);
6648 /* If no declaration found, default to int. */
6649 if (!found)
6651 found = build_decl (PARM_DECL, TREE_VALUE (parm),
6652 integer_type_node);
6653 DECL_ARG_TYPE (found) = TREE_TYPE (found);
6654 DECL_SOURCE_LINE (found) = DECL_SOURCE_LINE (fndecl);
6655 DECL_SOURCE_FILE (found) = DECL_SOURCE_FILE (fndecl);
6656 if (flag_isoc99)
6657 pedwarn_with_decl (found, "type of `%s' defaults to `int'");
6658 else if (extra_warnings)
6659 warning_with_decl (found, "type of `%s' defaults to `int'");
6660 pushdecl (found);
6663 TREE_PURPOSE (parm) = found;
6665 /* Mark this decl as "already found". */
6666 DECL_WEAK (found) = 1;
6669 /* Put anything which is on the parmdecls chain and which is
6670 not a PARM_DECL onto the list NONPARMS. (The types of
6671 non-parm things which might appear on the list include
6672 enumerators and NULL-named TYPE_DECL nodes.) Complain about
6673 any actual PARM_DECLs not matched with any names. */
6675 nonparms = 0;
6676 for (parm = parmdecls; parm;)
6678 tree next = TREE_CHAIN (parm);
6679 TREE_CHAIN (parm) = 0;
6681 if (TREE_CODE (parm) != PARM_DECL)
6682 nonparms = chainon (nonparms, parm);
6683 else
6685 /* Complain about args with incomplete types. */
6686 if (!COMPLETE_TYPE_P (TREE_TYPE (parm)))
6688 error_with_decl (parm, "parameter `%s' has incomplete type");
6689 TREE_TYPE (parm) = error_mark_node;
6692 if (! DECL_WEAK (parm))
6694 error_with_decl (parm,
6695 "declaration for parameter `%s' but no such parameter");
6696 /* Pretend the parameter was not missing.
6697 This gets us to a standard state and minimizes
6698 further error messages. */
6699 specparms
6700 = chainon (specparms,
6701 tree_cons (parm, NULL_TREE, NULL_TREE));
6705 parm = next;
6708 /* Chain the declarations together in the order of the list of
6709 names. Store that chain in the function decl, replacing the
6710 list of names. */
6711 parm = specparms;
6712 DECL_ARGUMENTS (fndecl) = 0;
6714 tree last;
6715 for (last = 0; parm; parm = TREE_CHAIN (parm))
6716 if (TREE_PURPOSE (parm))
6718 if (last == 0)
6719 DECL_ARGUMENTS (fndecl) = TREE_PURPOSE (parm);
6720 else
6721 TREE_CHAIN (last) = TREE_PURPOSE (parm);
6722 last = TREE_PURPOSE (parm);
6723 TREE_CHAIN (last) = 0;
6727 /* If there was a previous prototype,
6728 set the DECL_ARG_TYPE of each argument according to
6729 the type previously specified, and report any mismatches. */
6731 if (TYPE_ARG_TYPES (TREE_TYPE (fndecl)))
6733 tree type;
6734 for (parm = DECL_ARGUMENTS (fndecl),
6735 type = TYPE_ARG_TYPES (TREE_TYPE (fndecl));
6736 parm || (type && (TYPE_MAIN_VARIANT (TREE_VALUE (type))
6737 != void_type_node));
6738 parm = TREE_CHAIN (parm), type = TREE_CHAIN (type))
6740 if (parm == 0 || type == 0
6741 || TYPE_MAIN_VARIANT (TREE_VALUE (type)) == void_type_node)
6743 error ("number of arguments doesn't match prototype");
6744 error_with_file_and_line (current_function_prototype_file,
6745 current_function_prototype_line,
6746 "prototype declaration");
6747 break;
6749 /* Type for passing arg must be consistent with that
6750 declared for the arg. ISO C says we take the unqualified
6751 type for parameters declared with qualified type. */
6752 if (! comptypes (TYPE_MAIN_VARIANT (DECL_ARG_TYPE (parm)),
6753 TYPE_MAIN_VARIANT (TREE_VALUE (type))))
6755 if (TYPE_MAIN_VARIANT (TREE_TYPE (parm))
6756 == TYPE_MAIN_VARIANT (TREE_VALUE (type)))
6758 /* Adjust argument to match prototype. E.g. a previous
6759 `int foo(float);' prototype causes
6760 `int foo(x) float x; {...}' to be treated like
6761 `int foo(float x) {...}'. This is particularly
6762 useful for argument types like uid_t. */
6763 DECL_ARG_TYPE (parm) = TREE_TYPE (parm);
6765 if (PROMOTE_PROTOTYPES
6766 && INTEGRAL_TYPE_P (TREE_TYPE (parm))
6767 && TYPE_PRECISION (TREE_TYPE (parm))
6768 < TYPE_PRECISION (integer_type_node))
6769 DECL_ARG_TYPE (parm) = integer_type_node;
6771 if (pedantic)
6773 pedwarn ("promoted argument `%s' doesn't match prototype",
6774 IDENTIFIER_POINTER (DECL_NAME (parm)));
6775 warning_with_file_and_line
6776 (current_function_prototype_file,
6777 current_function_prototype_line,
6778 "prototype declaration");
6781 /* If -traditional, allow `int' argument to match
6782 `unsigned' prototype. */
6783 else if (! (flag_traditional
6784 && TYPE_MAIN_VARIANT (TREE_TYPE (parm)) == integer_type_node
6785 && TYPE_MAIN_VARIANT (TREE_VALUE (type)) == unsigned_type_node))
6787 error ("argument `%s' doesn't match prototype",
6788 IDENTIFIER_POINTER (DECL_NAME (parm)));
6789 error_with_file_and_line (current_function_prototype_file,
6790 current_function_prototype_line,
6791 "prototype declaration");
6795 TYPE_ACTUAL_ARG_TYPES (TREE_TYPE (fndecl)) = 0;
6798 /* Otherwise, create a prototype that would match. */
6800 else
6802 tree actual = 0, last = 0, type;
6804 for (parm = DECL_ARGUMENTS (fndecl); parm; parm = TREE_CHAIN (parm))
6806 type = tree_cons (NULL_TREE, DECL_ARG_TYPE (parm), NULL_TREE);
6807 if (last)
6808 TREE_CHAIN (last) = type;
6809 else
6810 actual = type;
6811 last = type;
6813 type = tree_cons (NULL_TREE, void_type_node, NULL_TREE);
6814 if (last)
6815 TREE_CHAIN (last) = type;
6816 else
6817 actual = type;
6819 /* We are going to assign a new value for the TYPE_ACTUAL_ARG_TYPES
6820 of the type of this function, but we need to avoid having this
6821 affect the types of other similarly-typed functions, so we must
6822 first force the generation of an identical (but separate) type
6823 node for the relevant function type. The new node we create
6824 will be a variant of the main variant of the original function
6825 type. */
6827 TREE_TYPE (fndecl) = build_type_copy (TREE_TYPE (fndecl));
6829 TYPE_ACTUAL_ARG_TYPES (TREE_TYPE (fndecl)) = actual;
6832 /* Now store the final chain of decls for the arguments
6833 as the decl-chain of the current lexical scope.
6834 Put the enumerators in as well, at the front so that
6835 DECL_ARGUMENTS is not modified. */
6837 storedecls (chainon (nonparms, DECL_ARGUMENTS (fndecl)));
6840 /* Make sure the binding level for the top of the function body
6841 gets a BLOCK if there are any in the function.
6842 Otherwise, the dbx output is wrong. */
6844 keep_next_if_subblocks = 1;
6846 /* ??? This might be an improvement,
6847 but needs to be thought about some more. */
6848 #if 0
6849 keep_next_level_flag = 1;
6850 #endif
6852 /* Write a record describing this function definition to the prototypes
6853 file (if requested). */
6855 gen_aux_info_record (fndecl, 1, 0, prototype);
6857 /* Initialize the RTL code for the function. */
6858 init_function_start (fndecl, input_filename, lineno);
6860 /* Begin the statement tree for this function. */
6861 begin_stmt_tree (&DECL_SAVED_TREE (current_function_decl));
6863 /* If this is a nested function, save away the sizes of any
6864 variable-size types so that we can expand them when generating
6865 RTL. */
6866 if (context)
6868 tree t;
6870 DECL_LANG_SPECIFIC (fndecl)->pending_sizes
6871 = nreverse (get_pending_sizes ());
6872 for (t = DECL_LANG_SPECIFIC (fndecl)->pending_sizes;
6874 t = TREE_CHAIN (t))
6875 SAVE_EXPR_CONTEXT (TREE_VALUE (t)) = context;
6878 /* This function is being processed in whole-function mode. */
6879 cfun->x_whole_function_mode_p = 1;
6881 /* Even though we're inside a function body, we still don't want to
6882 call expand_expr to calculate the size of a variable-sized array.
6883 We haven't necessarily assigned RTL to all variables yet, so it's
6884 not safe to try to expand expressions involving them. */
6885 immediate_size_expand = 0;
6886 cfun->x_dont_save_pending_sizes_p = 1;
6888 warn_shadow = saved_warn_shadow;
6891 /* Finish up a function declaration and compile that function
6892 all the way to assembler language output. The free the storage
6893 for the function definition.
6895 This is called after parsing the body of the function definition.
6897 NESTED is nonzero if the function being finished is nested in another.
6898 CAN_DEFER_P is nonzero if the function may be deferred. */
6900 void
6901 finish_function (nested, can_defer_p)
6902 int nested;
6903 int can_defer_p;
6905 tree fndecl = current_function_decl;
6907 #if 0
6908 /* This caused &foo to be of type ptr-to-const-function which then
6909 got a warning when stored in a ptr-to-function variable. */
6910 TREE_READONLY (fndecl) = 1;
6911 #endif
6913 poplevel (1, 0, 1);
6914 BLOCK_SUPERCONTEXT (DECL_INITIAL (fndecl)) = fndecl;
6916 /* Must mark the RESULT_DECL as being in this function. */
6918 DECL_CONTEXT (DECL_RESULT (fndecl)) = fndecl;
6920 /* Obey `register' declarations if `setjmp' is called in this fn. */
6921 if (flag_traditional && current_function_calls_setjmp)
6923 setjmp_protect (DECL_INITIAL (fndecl));
6924 setjmp_protect_args ();
6927 if (MAIN_NAME_P (DECL_NAME (fndecl)) && flag_hosted)
6929 if (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (fndecl)))
6930 != integer_type_node)
6932 /* If warn_main is 1 (-Wmain) or 2 (-Wall), we have already warned.
6933 If warn_main is -1 (-Wno-main) we don't want to be warned. */
6934 if (! warn_main)
6935 pedwarn_with_decl (fndecl, "return type of `%s' is not `int'");
6937 else
6939 #ifdef DEFAULT_MAIN_RETURN
6940 /* Make it so that `main' always returns success by default. */
6941 DEFAULT_MAIN_RETURN;
6942 #else
6943 if (flag_isoc99)
6944 c_expand_return (integer_zero_node);
6945 #endif
6949 finish_fname_decls ();
6951 /* Tie off the statement tree for this function. */
6952 finish_stmt_tree (&DECL_SAVED_TREE (fndecl));
6954 /* Complain if there's just no return statement. */
6955 if (warn_return_type
6956 && TREE_CODE (TREE_TYPE (TREE_TYPE (fndecl))) != VOID_TYPE
6957 && !current_function_returns_value && !current_function_returns_null
6958 /* Don't complain if we abort. */
6959 && !current_function_returns_abnormally
6960 /* Don't warn for main(). */
6961 && !MAIN_NAME_P (DECL_NAME (fndecl))
6962 /* Or if they didn't actually specify a return type. */
6963 && !C_FUNCTION_IMPLICIT_INT (fndecl)
6964 /* Normally, with -Wreturn-type, flow will complain. Unless we're an
6965 inline function, as we might never be compiled separately. */
6966 && DECL_INLINE (fndecl))
6967 warning ("no return statement in function returning non-void");
6969 /* Clear out memory we no longer need. */
6970 free_after_parsing (cfun);
6971 /* Since we never call rest_of_compilation, we never clear
6972 CFUN. Do so explicitly. */
6973 free_after_compilation (cfun);
6974 cfun = NULL;
6976 if (! nested)
6978 /* Generate RTL for the body of this function. */
6979 c_expand_body (fndecl, nested, can_defer_p);
6981 /* Let the error reporting routines know that we're outside a
6982 function. For a nested function, this value is used in
6983 pop_c_function_context and then reset via pop_function_context. */
6984 current_function_decl = NULL;
6988 /* Generate the RTL for a deferred function FNDECL. */
6990 void
6991 c_expand_deferred_function (fndecl)
6992 tree fndecl;
6994 /* DECL_INLINE or DECL_RESULT might got cleared after the inline
6995 function was deferred, e.g. in duplicate_decls. */
6996 if (DECL_INLINE (fndecl) && DECL_RESULT (fndecl))
6998 c_expand_body (fndecl, 0, 0);
6999 current_function_decl = NULL;
7003 /* Generate the RTL for the body of FNDECL. If NESTED_P is non-zero,
7004 then we are already in the process of generating RTL for another
7005 function. If can_defer_p is zero, we won't attempt to defer the
7006 generation of RTL. */
7008 static void
7009 c_expand_body (fndecl, nested_p, can_defer_p)
7010 tree fndecl;
7011 int nested_p, can_defer_p;
7013 int uninlinable = 1;
7015 /* There's no reason to do any of the work here if we're only doing
7016 semantic analysis; this code just generates RTL. */
7017 if (flag_syntax_only)
7018 return;
7020 if (flag_inline_trees)
7022 /* First, cache whether the current function is inlinable. Some
7023 predicates depend on cfun and current_function_decl to
7024 function completely. */
7025 timevar_push (TV_INTEGRATION);
7026 uninlinable = ! tree_inlinable_function_p (fndecl);
7028 if (! uninlinable && can_defer_p
7029 /* Save function tree for inlining. Should return 0 if the
7030 language does not support function deferring or the
7031 function could not be deferred. */
7032 && defer_fn (fndecl))
7034 /* Let the back-end know that this function exists. */
7035 (*debug_hooks->deferred_inline_function) (fndecl);
7036 timevar_pop (TV_INTEGRATION);
7037 return;
7040 /* Then, inline any functions called in it. */
7041 optimize_inline_calls (fndecl);
7042 timevar_pop (TV_INTEGRATION);
7045 timevar_push (TV_EXPAND);
7047 if (nested_p)
7049 /* Make sure that we will evaluate variable-sized types involved
7050 in our function's type. */
7051 expand_pending_sizes (DECL_LANG_SPECIFIC (fndecl)->pending_sizes);
7052 /* Squirrel away our current state. */
7053 push_function_context ();
7056 /* Initialize the RTL code for the function. */
7057 current_function_decl = fndecl;
7058 input_filename = DECL_SOURCE_FILE (fndecl);
7059 init_function_start (fndecl, input_filename, DECL_SOURCE_LINE (fndecl));
7061 /* This function is being processed in whole-function mode. */
7062 cfun->x_whole_function_mode_p = 1;
7064 /* Even though we're inside a function body, we still don't want to
7065 call expand_expr to calculate the size of a variable-sized array.
7066 We haven't necessarily assigned RTL to all variables yet, so it's
7067 not safe to try to expand expressions involving them. */
7068 immediate_size_expand = 0;
7069 cfun->x_dont_save_pending_sizes_p = 1;
7071 /* If this is a varargs function, inform function.c. */
7072 if (c_function_varargs)
7073 mark_varargs ();
7075 /* Set up parameters and prepare for return, for the function. */
7076 expand_function_start (fndecl, 0);
7078 /* If this function is `main', emit a call to `__main'
7079 to run global initializers, etc. */
7080 if (DECL_NAME (fndecl)
7081 && MAIN_NAME_P (DECL_NAME (fndecl))
7082 && DECL_CONTEXT (fndecl) == NULL_TREE)
7083 expand_main_function ();
7085 /* Generate the RTL for this function. */
7086 expand_stmt (DECL_SAVED_TREE (fndecl));
7087 if (uninlinable)
7089 /* Allow the body of the function to be garbage collected. */
7090 DECL_SAVED_TREE (fndecl) = NULL_TREE;
7093 /* We hard-wired immediate_size_expand to zero above.
7094 expand_function_end will decrement this variable. So, we set the
7095 variable to one here, so that after the decrement it will remain
7096 zero. */
7097 immediate_size_expand = 1;
7099 /* Allow language dialects to perform special processing. */
7100 if (lang_expand_function_end)
7101 (*lang_expand_function_end) ();
7103 /* Generate rtl for function exit. */
7104 expand_function_end (input_filename, lineno, 0);
7106 /* If this is a nested function, protect the local variables in the stack
7107 above us from being collected while we're compiling this function. */
7108 if (nested_p)
7109 ggc_push_context ();
7111 /* Run the optimizers and output the assembler code for this function. */
7112 rest_of_compilation (fndecl);
7114 /* Undo the GC context switch. */
7115 if (nested_p)
7116 ggc_pop_context ();
7118 /* With just -W, complain only if function returns both with
7119 and without a value. */
7120 if (extra_warnings
7121 && current_function_returns_value
7122 && current_function_returns_null)
7123 warning ("this function may return with or without a value");
7125 /* If requested, warn about function definitions where the function will
7126 return a value (usually of some struct or union type) which itself will
7127 take up a lot of stack space. */
7129 if (warn_larger_than && !DECL_EXTERNAL (fndecl) && TREE_TYPE (fndecl))
7131 tree ret_type = TREE_TYPE (TREE_TYPE (fndecl));
7133 if (ret_type && TYPE_SIZE_UNIT (ret_type)
7134 && TREE_CODE (TYPE_SIZE_UNIT (ret_type)) == INTEGER_CST
7135 && 0 < compare_tree_int (TYPE_SIZE_UNIT (ret_type),
7136 larger_than_size))
7138 unsigned int size_as_int
7139 = TREE_INT_CST_LOW (TYPE_SIZE_UNIT (ret_type));
7141 if (compare_tree_int (TYPE_SIZE_UNIT (ret_type), size_as_int) == 0)
7142 warning_with_decl (fndecl,
7143 "size of return value of `%s' is %u bytes",
7144 size_as_int);
7145 else
7146 warning_with_decl (fndecl,
7147 "size of return value of `%s' is larger than %d bytes",
7148 larger_than_size);
7152 if (DECL_SAVED_INSNS (fndecl) == 0 && ! nested_p
7153 && ! flag_inline_trees)
7155 /* Stop pointing to the local nodes about to be freed.
7156 But DECL_INITIAL must remain nonzero so we know this
7157 was an actual function definition.
7158 For a nested function, this is done in pop_c_function_context.
7159 If rest_of_compilation set this to 0, leave it 0. */
7160 if (DECL_INITIAL (fndecl) != 0)
7161 DECL_INITIAL (fndecl) = error_mark_node;
7163 DECL_ARGUMENTS (fndecl) = 0;
7166 if (DECL_STATIC_CONSTRUCTOR (fndecl))
7168 if (targetm.have_ctors_dtors)
7169 (* targetm.asm_out.constructor) (XEXP (DECL_RTL (fndecl), 0),
7170 DEFAULT_INIT_PRIORITY);
7171 else
7172 static_ctors = tree_cons (NULL_TREE, fndecl, static_ctors);
7175 if (DECL_STATIC_DESTRUCTOR (fndecl))
7177 if (targetm.have_ctors_dtors)
7178 (* targetm.asm_out.destructor) (XEXP (DECL_RTL (fndecl), 0),
7179 DEFAULT_INIT_PRIORITY);
7180 else
7181 static_dtors = tree_cons (NULL_TREE, fndecl, static_dtors);
7184 if (nested_p)
7185 /* Return to the enclosing function. */
7186 pop_function_context ();
7187 timevar_pop (TV_EXPAND);
7190 /* Check the declarations given in a for-loop for satisfying the C99
7191 constraints. */
7192 void
7193 check_for_loop_decls ()
7195 tree t;
7197 if (!flag_isoc99)
7199 /* If we get here, declarations have been used in a for loop without
7200 the C99 for loop scope. This doesn't make much sense, so don't
7201 allow it. */
7202 error ("`for' loop initial declaration used outside C99 mode");
7203 return;
7205 /* C99 subclause 6.8.5 paragraph 3:
7207 [#3] The declaration part of a for statement shall only
7208 declare identifiers for objects having storage class auto or
7209 register.
7211 It isn't clear whether, in this sentence, "identifiers" binds to
7212 "shall only declare" or to "objects" - that is, whether all identifiers
7213 declared must be identifiers for objects, or whether the restriction
7214 only applies to those that are. (A question on this in comp.std.c
7215 in November 2000 received no answer.) We implement the strictest
7216 interpretation, to avoid creating an extension which later causes
7217 problems. */
7219 for (t = gettags (); t; t = TREE_CHAIN (t))
7221 if (TREE_PURPOSE (t) != 0)
7223 enum tree_code code = TREE_CODE (TREE_VALUE (t));
7225 if (code == RECORD_TYPE)
7226 error ("`struct %s' declared in `for' loop initial declaration",
7227 IDENTIFIER_POINTER (TREE_PURPOSE (t)));
7228 else if (code == UNION_TYPE)
7229 error ("`union %s' declared in `for' loop initial declaration",
7230 IDENTIFIER_POINTER (TREE_PURPOSE (t)));
7231 else
7232 error ("`enum %s' declared in `for' loop initial declaration",
7233 IDENTIFIER_POINTER (TREE_PURPOSE (t)));
7237 for (t = getdecls (); t; t = TREE_CHAIN (t))
7239 if (TREE_CODE (t) != VAR_DECL && DECL_NAME (t))
7240 error_with_decl (t, "declaration of non-variable `%s' in `for' loop initial declaration");
7241 else if (TREE_STATIC (t))
7242 error_with_decl (t, "declaration of static variable `%s' in `for' loop initial declaration");
7243 else if (DECL_EXTERNAL (t))
7244 error_with_decl (t, "declaration of `extern' variable `%s' in `for' loop initial declaration");
7248 /* Save and restore the variables in this file and elsewhere
7249 that keep track of the progress of compilation of the current function.
7250 Used for nested functions. */
7252 struct c_language_function
7254 struct language_function base;
7255 tree named_labels;
7256 tree shadowed_labels;
7257 int returns_value;
7258 int returns_null;
7259 int returns_abnormally;
7260 int warn_about_return_type;
7261 int extern_inline;
7262 struct binding_level *binding_level;
7265 /* Save and reinitialize the variables
7266 used during compilation of a C function. */
7268 void
7269 push_c_function_context (f)
7270 struct function *f;
7272 struct c_language_function *p;
7273 p = ((struct c_language_function *)
7274 xmalloc (sizeof (struct c_language_function)));
7275 f->language = (struct language_function *) p;
7277 p->base.x_stmt_tree = c_stmt_tree;
7278 p->base.x_scope_stmt_stack = c_scope_stmt_stack;
7279 p->named_labels = named_labels;
7280 p->shadowed_labels = shadowed_labels;
7281 p->returns_value = current_function_returns_value;
7282 p->returns_null = current_function_returns_null;
7283 p->returns_abnormally = current_function_returns_abnormally;
7284 p->warn_about_return_type = warn_about_return_type;
7285 p->extern_inline = current_extern_inline;
7286 p->binding_level = current_binding_level;
7289 /* Restore the variables used during compilation of a C function. */
7291 void
7292 pop_c_function_context (f)
7293 struct function *f;
7295 struct c_language_function *p
7296 = (struct c_language_function *) f->language;
7297 tree link;
7299 /* Bring back all the labels that were shadowed. */
7300 for (link = shadowed_labels; link; link = TREE_CHAIN (link))
7301 if (DECL_NAME (TREE_VALUE (link)) != 0)
7302 IDENTIFIER_LABEL_VALUE (DECL_NAME (TREE_VALUE (link)))
7303 = TREE_VALUE (link);
7305 if (DECL_SAVED_INSNS (current_function_decl) == 0
7306 && DECL_SAVED_TREE (current_function_decl) == NULL_TREE)
7308 /* Stop pointing to the local nodes about to be freed. */
7309 /* But DECL_INITIAL must remain nonzero so we know this
7310 was an actual function definition. */
7311 DECL_INITIAL (current_function_decl) = error_mark_node;
7312 DECL_ARGUMENTS (current_function_decl) = 0;
7315 c_stmt_tree = p->base.x_stmt_tree;
7316 c_scope_stmt_stack = p->base.x_scope_stmt_stack;
7317 named_labels = p->named_labels;
7318 shadowed_labels = p->shadowed_labels;
7319 current_function_returns_value = p->returns_value;
7320 current_function_returns_null = p->returns_null;
7321 current_function_returns_abnormally = p->returns_abnormally;
7322 warn_about_return_type = p->warn_about_return_type;
7323 current_extern_inline = p->extern_inline;
7324 current_binding_level = p->binding_level;
7326 free (p);
7327 f->language = 0;
7330 /* Mark the language specific parts of F for GC. */
7332 void
7333 mark_c_function_context (f)
7334 struct function *f;
7336 struct c_language_function *p
7337 = (struct c_language_function *) f->language;
7339 if (p == 0)
7340 return;
7342 mark_c_language_function (&p->base);
7343 ggc_mark_tree (p->shadowed_labels);
7344 ggc_mark_tree (p->named_labels);
7345 mark_binding_level (&p->binding_level);
7348 /* Copy the DECL_LANG_SPECIFIC data associated with NODE. */
7350 void
7351 copy_lang_decl (decl)
7352 tree decl;
7354 struct lang_decl *ld;
7356 if (!DECL_LANG_SPECIFIC (decl))
7357 return;
7359 ld = (struct lang_decl *) ggc_alloc (sizeof (struct lang_decl));
7360 memcpy ((char *) ld, (char *) DECL_LANG_SPECIFIC (decl),
7361 sizeof (struct lang_decl));
7362 DECL_LANG_SPECIFIC (decl) = ld;
7365 /* Mark the language specific bits in T for GC. */
7367 void
7368 lang_mark_tree (t)
7369 tree t;
7371 if (TREE_CODE (t) == IDENTIFIER_NODE)
7373 struct lang_identifier *i = (struct lang_identifier *) t;
7374 ggc_mark_tree (i->global_value);
7375 ggc_mark_tree (i->local_value);
7376 ggc_mark_tree (i->label_value);
7377 ggc_mark_tree (i->implicit_decl);
7378 ggc_mark_tree (i->error_locus);
7379 ggc_mark_tree (i->limbo_value);
7381 else if (TYPE_P (t) && TYPE_LANG_SPECIFIC (t))
7382 ggc_mark (TYPE_LANG_SPECIFIC (t));
7383 else if (DECL_P (t) && DECL_LANG_SPECIFIC (t))
7385 ggc_mark (DECL_LANG_SPECIFIC (t));
7386 c_mark_lang_decl (&DECL_LANG_SPECIFIC (t)->base);
7387 ggc_mark_tree (DECL_LANG_SPECIFIC (t)->pending_sizes);
7391 /* The functions below are required for functionality of doing
7392 function at once processing in the C front end. Currently these
7393 functions are not called from anywhere in the C front end, but as
7394 these changes continue, that will change. */
7396 /* Returns non-zero if the current statement is a full expression,
7397 i.e. temporaries created during that statement should be destroyed
7398 at the end of the statement. */
7401 stmts_are_full_exprs_p ()
7403 return 0;
7406 /* Returns the stmt_tree (if any) to which statements are currently
7407 being added. If there is no active statement-tree, NULL is
7408 returned. */
7410 stmt_tree
7411 current_stmt_tree ()
7413 return &c_stmt_tree;
7416 /* Returns the stack of SCOPE_STMTs for the current function. */
7418 tree *
7419 current_scope_stmt_stack ()
7421 return &c_scope_stmt_stack;
7424 /* Nonzero if TYPE is an anonymous union or struct type. Always 0 in
7425 C. */
7428 anon_aggr_type_p (node)
7429 tree node ATTRIBUTE_UNUSED;
7431 return 0;
7434 /* Dummy function in place of callback used by C++. */
7436 void
7437 extract_interface_info ()
7441 /* Return a new COMPOUND_STMT, after adding it to the current
7442 statement tree. */
7444 tree
7445 c_begin_compound_stmt ()
7447 tree stmt;
7449 /* Create the COMPOUND_STMT. */
7450 stmt = add_stmt (build_stmt (COMPOUND_STMT, NULL_TREE));
7452 return stmt;
7455 /* Expand T (a DECL_STMT) if it declares an entity not handled by the
7456 common code. */
7458 void
7459 c_expand_decl_stmt (t)
7460 tree t;
7462 tree decl = DECL_STMT_DECL (t);
7464 /* Expand nested functions. */
7465 if (TREE_CODE (decl) == FUNCTION_DECL
7466 && DECL_CONTEXT (decl) == current_function_decl
7467 && DECL_SAVED_TREE (decl))
7468 c_expand_body (decl, /*nested_p=*/1, /*can_defer_p=*/0);
7471 /* Return the IDENTIFIER_GLOBAL_VALUE of T, for use in common code, since
7472 the definition of IDENTIFIER_GLOBAL_VALUE is different for C and C++. */
7474 tree
7475 identifier_global_value (t)
7476 tree t;
7478 return IDENTIFIER_GLOBAL_VALUE (t);
7481 /* Record a builtin type for C. If NAME is non-NULL, it is the name used;
7482 otherwise the name is found in ridpointers from RID_INDEX. */
7484 void
7485 record_builtin_type (rid_index, name, type)
7486 enum rid rid_index;
7487 const char *name;
7488 tree type;
7490 tree id;
7491 if (name == 0)
7492 id = ridpointers[(int) rid_index];
7493 else
7494 id = get_identifier (name);
7495 pushdecl (build_decl (TYPE_DECL, id, type));
7498 /* Build the void_list_node (void_type_node having been created). */
7499 tree
7500 build_void_list_node ()
7502 tree t = build_tree_list (NULL_TREE, void_type_node);
7503 return t;