* c-decl.c (duplicate_decls): Copy DECL_SAVED_TREE.
[official-gcc.git] / gcc / c-decl.c
blob04b975023ae42ae33b31b7e54d14534141bdfa24
1 /* Process declarations and variables for C compiler.
2 Copyright (C) 1988, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
3 2001 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"
49 /* In grokdeclarator, distinguish syntactic contexts of declarators. */
50 enum decl_context
51 { NORMAL, /* Ordinary declaration */
52 FUNCDEF, /* Function definition */
53 PARM, /* Declaration of parm before function body */
54 FIELD, /* Declaration inside struct or union */
55 BITFIELD, /* Likewise but with specified width */
56 TYPENAME}; /* Typename (inside cast or sizeof) */
59 /* Nonzero if we have seen an invalid cross reference
60 to a struct, union, or enum, but not yet printed the message. */
62 tree pending_invalid_xref;
63 /* File and line to appear in the eventual error message. */
64 const char *pending_invalid_xref_file;
65 int pending_invalid_xref_line;
67 /* While defining an enum type, this is 1 plus the last enumerator
68 constant value. Note that will do not have to save this or `enum_overflow'
69 around nested function definition since such a definition could only
70 occur in an enum value expression and we don't use these variables in
71 that case. */
73 static tree enum_next_value;
75 /* Nonzero means that there was overflow computing enum_next_value. */
77 static int enum_overflow;
79 /* Parsing a function declarator leaves a list of parameter names
80 or a chain or parameter decls here. */
82 static tree last_function_parms;
84 /* Parsing a function declarator leaves here a chain of structure
85 and enum types declared in the parmlist. */
87 static tree last_function_parm_tags;
89 /* After parsing the declarator that starts a function definition,
90 `start_function' puts here the list of parameter names or chain of decls.
91 `store_parm_decls' finds it here. */
93 static tree current_function_parms;
95 /* Similar, for last_function_parm_tags. */
96 static tree current_function_parm_tags;
98 /* Similar, for the file and line that the prototype came from if this is
99 an old-style definition. */
100 static const char *current_function_prototype_file;
101 static int current_function_prototype_line;
103 /* The current statement tree. */
105 static struct stmt_tree_s c_stmt_tree;
107 /* The current scope statement stack. */
109 static tree c_scope_stmt_stack;
111 /* A list (chain of TREE_LIST nodes) of all LABEL_DECLs in the function
112 that have names. Here so we can clear out their names' definitions
113 at the end of the function. */
115 static tree named_labels;
117 /* A list of LABEL_DECLs from outer contexts that are currently shadowed. */
119 static tree shadowed_labels;
121 /* Nonzero when store_parm_decls is called indicates a varargs function.
122 Value not meaningful after store_parm_decls. */
124 static int c_function_varargs;
126 /* Set to 0 at beginning of a function definition, set to 1 if
127 a return statement that specifies a return value is seen. */
129 int current_function_returns_value;
131 /* Set to 0 at beginning of a function definition, set to 1 if
132 a return statement with no argument is seen. */
134 int current_function_returns_null;
136 /* Set to nonzero by `grokdeclarator' for a function
137 whose return type is defaulted, if warnings for this are desired. */
139 static int warn_about_return_type;
141 /* Nonzero when starting a function declared `extern inline'. */
143 static int current_extern_inline;
145 /* For each binding contour we allocate a binding_level structure
146 * which records the names defined in that contour.
147 * Contours include:
148 * 0) the global one
149 * 1) one for each function definition,
150 * where internal declarations of the parameters appear.
151 * 2) one for each compound statement,
152 * to record its declarations.
154 * The current meaning of a name can be found by searching the levels from
155 * the current one out to the global one.
158 /* Note that the information in the `names' component of the global contour
159 is duplicated in the IDENTIFIER_GLOBAL_VALUEs of all identifiers. */
161 struct binding_level
163 /* A chain of _DECL nodes for all variables, constants, functions,
164 and typedef types. These are in the reverse of the order supplied.
166 tree names;
168 /* A list of structure, union and enum definitions,
169 * for looking up tag names.
170 * It is a chain of TREE_LIST nodes, each of whose TREE_PURPOSE is a name,
171 * or NULL_TREE; and whose TREE_VALUE is a RECORD_TYPE, UNION_TYPE,
172 * or ENUMERAL_TYPE node.
174 tree tags;
176 /* For each level, a list of shadowed outer-level local definitions
177 to be restored when this level is popped.
178 Each link is a TREE_LIST whose TREE_PURPOSE is an identifier and
179 whose TREE_VALUE is its old definition (a kind of ..._DECL node). */
180 tree shadowed;
182 /* For each level (except not the global one),
183 a chain of BLOCK nodes for all the levels
184 that were entered and exited one level down. */
185 tree blocks;
187 /* The BLOCK node for this level, if one has been preallocated.
188 If 0, the BLOCK is allocated (if needed) when the level is popped. */
189 tree this_block;
191 /* The binding level which this one is contained in (inherits from). */
192 struct binding_level *level_chain;
194 /* Nonzero for the level that holds the parameters of a function. */
195 char parm_flag;
197 /* Nonzero if this level "doesn't exist" for tags. */
198 char tag_transparent;
200 /* Nonzero if sublevels of this level "don't exist" for tags.
201 This is set in the parm level of a function definition
202 while reading the function body, so that the outermost block
203 of the function body will be tag-transparent. */
204 char subblocks_tag_transparent;
206 /* Nonzero means make a BLOCK for this level regardless of all else. */
207 char keep;
209 /* Nonzero means make a BLOCK if this level has any subblocks. */
210 char keep_if_subblocks;
212 /* Number of decls in `names' that have incomplete
213 structure or union types. */
214 int n_incomplete;
216 /* A list of decls giving the (reversed) specified order of parms,
217 not including any forward-decls in the parmlist.
218 This is so we can put the parms in proper order for assign_parms. */
219 tree parm_order;
222 #define NULL_BINDING_LEVEL (struct binding_level *) NULL
224 /* The binding level currently in effect. */
226 static struct binding_level *current_binding_level;
228 /* A chain of binding_level structures awaiting reuse. */
230 static struct binding_level *free_binding_level;
232 /* The outermost binding level, for names of file scope.
233 This is created when the compiler is started and exists
234 through the entire run. */
236 static struct binding_level *global_binding_level;
238 /* Binding level structures are initialized by copying this one. */
240 static struct binding_level clear_binding_level
241 = {NULL, NULL, NULL, NULL, NULL, NULL_BINDING_LEVEL, 0, 0, 0, 0, 0, 0,
242 NULL};
244 /* Nonzero means unconditionally make a BLOCK for the next level pushed. */
246 static int keep_next_level_flag;
248 /* Nonzero means make a BLOCK for the next level pushed
249 if it has subblocks. */
251 static int keep_next_if_subblocks;
253 /* The chain of outer levels of label scopes.
254 This uses the same data structure used for binding levels,
255 but it works differently: each link in the chain records
256 saved values of named_labels and shadowed_labels for
257 a label binding level outside the current one. */
259 static struct binding_level *label_level_chain;
261 /* Functions called automatically at the beginning and end of execution. */
263 tree static_ctors, static_dtors;
265 /* Forward declarations. */
267 static struct binding_level * make_binding_level PARAMS ((void));
268 static void mark_binding_level PARAMS ((void *));
269 static void clear_limbo_values PARAMS ((tree));
270 static int duplicate_decls PARAMS ((tree, tree, int));
271 static int redeclaration_error_message PARAMS ((tree, tree));
272 static void storedecls PARAMS ((tree));
273 static void storetags PARAMS ((tree));
274 static tree lookup_tag PARAMS ((enum tree_code, tree,
275 struct binding_level *, int));
276 static tree lookup_tag_reverse PARAMS ((tree));
277 static tree grokdeclarator PARAMS ((tree, tree, enum decl_context,
278 int));
279 static tree grokparms PARAMS ((tree, int));
280 static void layout_array_type PARAMS ((tree));
281 static tree c_make_fname_decl PARAMS ((tree, int));
282 static void c_expand_body PARAMS ((tree, int, int));
284 /* C-specific option variables. */
286 /* Nonzero means allow type mismatches in conditional expressions;
287 just make their values `void'. */
289 int flag_cond_mismatch;
291 /* Nonzero means don't recognize the keyword `asm'. */
293 int flag_no_asm;
295 /* Nonzero means do some things the same way PCC does. */
297 int flag_traditional;
299 /* Nonzero means enable C89 Amendment 1 features. */
301 int flag_isoc94 = 0;
303 /* Nonzero means use the ISO C99 dialect of C. */
305 int flag_isoc99 = 0;
307 /* Nonzero means that we have builtin functions, and main is an int */
309 int flag_hosted = 1;
311 /* Nonzero means add default format_arg attributes for functions not
312 in ISO C. */
314 int flag_noniso_default_format_attributes = 1;
316 /* Nonzero means to allow single precision math even if we're generally
317 being traditional. */
318 int flag_allow_single_precision = 0;
320 /* Nonzero means to treat bitfields as signed unless they say `unsigned'. */
322 int flag_signed_bitfields = 1;
323 int explicit_flag_signed_bitfields = 0;
325 /* Nonzero means warn about use of implicit int. */
327 int warn_implicit_int;
329 /* Nonzero means warn about usage of long long when `-pedantic'. */
331 int warn_long_long = 1;
333 /* Nonzero means message about use of implicit function declarations;
334 1 means warning; 2 means error. */
336 int mesg_implicit_function_declaration = -1;
338 /* Nonzero means give string constants the type `const char *'
339 to get extra warnings from them. These warnings will be too numerous
340 to be useful, except in thoroughly ANSIfied programs. */
342 int flag_const_strings;
344 /* Nonzero means warn about pointer casts that can drop a type qualifier
345 from the pointer target type. */
347 int warn_cast_qual;
349 /* Nonzero means warn when casting a function call to a type that does
350 not match the return type (e.g. (float)sqrt() or (anything*)malloc()
351 when there is no previous declaration of sqrt or malloc. */
353 int warn_bad_function_cast;
355 /* Warn about functions which might be candidates for format attributes. */
357 int warn_missing_format_attribute;
359 /* Warn about traditional constructs whose meanings changed in ANSI C. */
361 int warn_traditional;
363 /* Nonzero means warn about sizeof(function) or addition/subtraction
364 of function pointers. */
366 int warn_pointer_arith;
368 /* Nonzero means warn for non-prototype function decls
369 or non-prototyped defs without previous prototype. */
371 int warn_strict_prototypes;
373 /* Nonzero means warn for any global function def
374 without separate previous prototype decl. */
376 int warn_missing_prototypes;
378 /* Nonzero means warn for any global function def
379 without separate previous decl. */
381 int warn_missing_declarations;
383 /* Nonzero means warn about multiple (redundant) decls for the same single
384 variable or function. */
386 int warn_redundant_decls = 0;
388 /* Nonzero means warn about extern declarations of objects not at
389 file-scope level and about *all* declarations of functions (whether
390 extern or static) not at file-scope level. Note that we exclude
391 implicit function declarations. To get warnings about those, use
392 -Wimplicit. */
394 int warn_nested_externs = 0;
396 /* Warn about a subscript that has type char. */
398 int warn_char_subscripts = 0;
400 /* Warn if a type conversion is done that might have confusing results. */
402 int warn_conversion;
404 /* Warn if adding () is suggested. */
406 int warn_parentheses;
408 /* Warn if initializer is not completely bracketed. */
410 int warn_missing_braces;
412 /* Warn if main is suspicious. */
414 int warn_main;
416 /* Warn about #pragma directives that are not recognised. */
418 int warn_unknown_pragmas = 0; /* Tri state variable. */
420 /* Warn about comparison of signed and unsigned values.
421 If -1, neither -Wsign-compare nor -Wno-sign-compare has been specified. */
423 int warn_sign_compare = -1;
425 /* Warn about testing equality of floating point numbers. */
427 int warn_float_equal = 0;
429 /* Nonzero means warn about use of multicharacter literals. */
431 int warn_multichar = 1;
433 /* The variant of the C language being processed. */
435 c_language_kind c_language = clk_c;
437 /* Nonzero means `$' can be in an identifier. */
439 #ifndef DOLLARS_IN_IDENTIFIERS
440 #define DOLLARS_IN_IDENTIFIERS 1
441 #endif
442 int dollars_in_ident = DOLLARS_IN_IDENTIFIERS;
444 /* Decode the string P as a language-specific option for C.
445 Return the number of strings consumed. Should not complain
446 if it does not recognise the option. */
449 c_decode_option (argc, argv)
450 int argc ATTRIBUTE_UNUSED;
451 char **argv;
453 int strings_processed;
454 char *p = argv[0];
456 strings_processed = cpp_handle_option (parse_in, argc, argv);
458 if (!strcmp (p, "-ftraditional") || !strcmp (p, "-traditional"))
460 warning ("-traditional is deprecated and may be removed");
461 flag_traditional = 1;
462 flag_writable_strings = 1;
464 else if (!strcmp (p, "-fallow-single-precision"))
465 flag_allow_single_precision = 1;
466 else if (!strcmp (p, "-fhosted") || !strcmp (p, "-fno-freestanding"))
468 flag_hosted = 1;
469 flag_no_builtin = 0;
471 else if (!strcmp (p, "-ffreestanding") || !strcmp (p, "-fno-hosted"))
473 flag_hosted = 0;
474 flag_no_builtin = 1;
475 /* warn_main will be 2 if set by -Wall, 1 if set by -Wmain */
476 if (warn_main == 2)
477 warn_main = 0;
479 else if (!strcmp (p, "-fnotraditional") || !strcmp (p, "-fno-traditional"))
481 flag_traditional = 0;
482 flag_writable_strings = 0;
484 else if (!strncmp (p, "-std=", 5))
486 /* Select the appropriate language standard. We currently
487 recognize:
488 -std=iso9899:1990 same as -ansi
489 -std=iso9899:199409 ISO C as modified in amend. 1
490 -std=iso9899:1999 ISO C 99
491 -std=c89 same as -std=iso9899:1990
492 -std=c99 same as -std=iso9899:1999
493 -std=gnu89 default, iso9899:1990 + gnu extensions
494 -std=gnu99 iso9899:1999 + gnu extensions
496 const char *const argstart = &p[5];
498 if (!strcmp (argstart, "iso9899:1990")
499 || !strcmp (argstart, "c89"))
501 iso_1990:
502 flag_isoc94 = 0;
503 iso_1994:
504 flag_traditional = 0;
505 flag_writable_strings = 0;
506 flag_no_asm = 1;
507 flag_no_nonansi_builtin = 1;
508 flag_noniso_default_format_attributes = 0;
509 flag_isoc99 = 0;
511 else if (!strcmp (argstart, "iso9899:199409"))
513 flag_isoc94 = 1;
514 goto iso_1994;
516 else if (!strcmp (argstart, "iso9899:199x")
517 || !strcmp (argstart, "iso9899:1999")
518 || !strcmp (argstart, "c9x")
519 || !strcmp (argstart, "c99"))
521 flag_traditional = 0;
522 flag_writable_strings = 0;
523 flag_no_asm = 1;
524 flag_no_nonansi_builtin = 1;
525 flag_noniso_default_format_attributes = 0;
526 flag_isoc99 = 1;
527 flag_isoc94 = 1;
529 else if (!strcmp (argstart, "gnu89"))
531 flag_traditional = 0;
532 flag_writable_strings = 0;
533 flag_no_asm = 0;
534 flag_no_nonansi_builtin = 0;
535 flag_noniso_default_format_attributes = 1;
536 flag_isoc99 = 0;
537 flag_isoc94 = 0;
539 else if (!strcmp (argstart, "gnu9x") || !strcmp (argstart, "gnu99"))
541 flag_traditional = 0;
542 flag_writable_strings = 0;
543 flag_no_asm = 0;
544 flag_no_nonansi_builtin = 0;
545 flag_noniso_default_format_attributes = 1;
546 flag_isoc99 = 1;
547 flag_isoc94 = 1;
549 else
550 error ("unknown C standard `%s'", argstart);
552 else if (!strcmp (p, "-fdollars-in-identifiers"))
553 dollars_in_ident = 1;
554 else if (!strcmp (p, "-fno-dollars-in-identifiers"))
555 dollars_in_ident = 0;
556 else if (!strcmp (p, "-fsigned-char"))
557 flag_signed_char = 1;
558 else if (!strcmp (p, "-funsigned-char"))
559 flag_signed_char = 0;
560 else if (!strcmp (p, "-fno-signed-char"))
561 flag_signed_char = 0;
562 else if (!strcmp (p, "-fno-unsigned-char"))
563 flag_signed_char = 1;
564 else if (!strcmp (p, "-fsigned-bitfields")
565 || !strcmp (p, "-fno-unsigned-bitfields"))
567 flag_signed_bitfields = 1;
568 explicit_flag_signed_bitfields = 1;
570 else if (!strcmp (p, "-funsigned-bitfields")
571 || !strcmp (p, "-fno-signed-bitfields"))
573 flag_signed_bitfields = 0;
574 explicit_flag_signed_bitfields = 1;
576 else if (!strcmp (p, "-fshort-enums"))
577 flag_short_enums = 1;
578 else if (!strcmp (p, "-fno-short-enums"))
579 flag_short_enums = 0;
580 else if (!strcmp (p, "-fshort-wchar"))
581 flag_short_wchar = 1;
582 else if (!strcmp (p, "-fno-short-wchar"))
583 flag_short_wchar = 0;
584 else if (!strcmp (p, "-fcond-mismatch"))
585 flag_cond_mismatch = 1;
586 else if (!strcmp (p, "-fno-cond-mismatch"))
587 flag_cond_mismatch = 0;
588 else if (!strcmp (p, "-fshort-double"))
589 flag_short_double = 1;
590 else if (!strcmp (p, "-fno-short-double"))
591 flag_short_double = 0;
592 else if (!strcmp (p, "-fasm"))
593 flag_no_asm = 0;
594 else if (!strcmp (p, "-fno-asm"))
595 flag_no_asm = 1;
596 else if (!strcmp (p, "-fbuiltin"))
597 flag_no_builtin = 0;
598 else if (!strcmp (p, "-fno-builtin"))
599 flag_no_builtin = 1;
600 else if (!strncmp (p, "-fno-builtin-", strlen ("-fno-builtin-")))
601 disable_builtin_function (p + strlen ("-fno-builtin-"));
602 else if (p[0] == '-' && p[1] == 'f' && dump_switch_p (p + 2))
604 else if (!strcmp (p, "-ansi"))
605 goto iso_1990;
606 else if (!strcmp (p, "-Werror-implicit-function-declaration"))
607 mesg_implicit_function_declaration = 2;
608 else if (!strcmp (p, "-Wimplicit-function-declaration"))
609 mesg_implicit_function_declaration = 1;
610 else if (!strcmp (p, "-Wno-implicit-function-declaration"))
611 mesg_implicit_function_declaration = 0;
612 else if (!strcmp (p, "-Wimplicit-int"))
613 warn_implicit_int = 1;
614 else if (!strcmp (p, "-Wno-implicit-int"))
615 warn_implicit_int = 0;
616 else if (!strcmp (p, "-Wimplicit"))
618 warn_implicit_int = 1;
619 if (mesg_implicit_function_declaration != 2)
620 mesg_implicit_function_declaration = 1;
622 else if (!strcmp (p, "-Wno-implicit"))
623 warn_implicit_int = 0, mesg_implicit_function_declaration = 0;
624 else if (!strcmp (p, "-Wlong-long"))
625 warn_long_long = 1;
626 else if (!strcmp (p, "-Wno-long-long"))
627 warn_long_long = 0;
628 else if (!strcmp (p, "-Wwrite-strings"))
629 flag_const_strings = 1;
630 else if (!strcmp (p, "-Wno-write-strings"))
631 flag_const_strings = 0;
632 else if (!strcmp (p, "-Wcast-qual"))
633 warn_cast_qual = 1;
634 else if (!strcmp (p, "-Wno-cast-qual"))
635 warn_cast_qual = 0;
636 else if (!strcmp (p, "-Wbad-function-cast"))
637 warn_bad_function_cast = 1;
638 else if (!strcmp (p, "-Wno-bad-function-cast"))
639 warn_bad_function_cast = 0;
640 else if (!strcmp (p, "-Wno-missing-noreturn"))
641 warn_missing_noreturn = 0;
642 else if (!strcmp (p, "-Wmissing-format-attribute"))
643 warn_missing_format_attribute = 1;
644 else if (!strcmp (p, "-Wno-missing-format-attribute"))
645 warn_missing_format_attribute = 0;
646 else if (!strcmp (p, "-Wpointer-arith"))
647 warn_pointer_arith = 1;
648 else if (!strcmp (p, "-Wno-pointer-arith"))
649 warn_pointer_arith = 0;
650 else if (!strcmp (p, "-Wstrict-prototypes"))
651 warn_strict_prototypes = 1;
652 else if (!strcmp (p, "-Wno-strict-prototypes"))
653 warn_strict_prototypes = 0;
654 else if (!strcmp (p, "-Wmissing-prototypes"))
655 warn_missing_prototypes = 1;
656 else if (!strcmp (p, "-Wno-missing-prototypes"))
657 warn_missing_prototypes = 0;
658 else if (!strcmp (p, "-Wmissing-declarations"))
659 warn_missing_declarations = 1;
660 else if (!strcmp (p, "-Wno-missing-declarations"))
661 warn_missing_declarations = 0;
662 else if (!strcmp (p, "-Wredundant-decls"))
663 warn_redundant_decls = 1;
664 else if (!strcmp (p, "-Wno-redundant-decls"))
665 warn_redundant_decls = 0;
666 else if (!strcmp (p, "-Wnested-externs"))
667 warn_nested_externs = 1;
668 else if (!strcmp (p, "-Wno-nested-externs"))
669 warn_nested_externs = 0;
670 else if (!strcmp (p, "-Wtraditional"))
671 warn_traditional = 1;
672 else if (!strcmp (p, "-Wno-traditional"))
673 warn_traditional = 0;
674 else if (!strncmp (p, "-Wformat=", 9))
675 set_Wformat (atoi (p + 9));
676 else if (!strcmp (p, "-Wformat"))
677 set_Wformat (1);
678 else if (!strcmp (p, "-Wno-format"))
679 set_Wformat (0);
680 else if (!strcmp (p, "-Wformat-y2k"))
681 warn_format_y2k = 1;
682 else if (!strcmp (p, "-Wno-format-y2k"))
683 warn_format_y2k = 0;
684 else if (!strcmp (p, "-Wformat-extra-args"))
685 warn_format_extra_args = 1;
686 else if (!strcmp (p, "-Wno-format-extra-args"))
687 warn_format_extra_args = 0;
688 else if (!strcmp (p, "-Wformat-nonliteral"))
689 warn_format_nonliteral = 1;
690 else if (!strcmp (p, "-Wno-format-nonliteral"))
691 warn_format_nonliteral = 0;
692 else if (!strcmp (p, "-Wformat-security"))
693 warn_format_security = 1;
694 else if (!strcmp (p, "-Wno-format-security"))
695 warn_format_security = 0;
696 else if (!strcmp (p, "-Wchar-subscripts"))
697 warn_char_subscripts = 1;
698 else if (!strcmp (p, "-Wno-char-subscripts"))
699 warn_char_subscripts = 0;
700 else if (!strcmp (p, "-Wconversion"))
701 warn_conversion = 1;
702 else if (!strcmp (p, "-Wno-conversion"))
703 warn_conversion = 0;
704 else if (!strcmp (p, "-Wparentheses"))
705 warn_parentheses = 1;
706 else if (!strcmp (p, "-Wno-parentheses"))
707 warn_parentheses = 0;
708 else if (!strcmp (p, "-Wreturn-type"))
709 warn_return_type = 1;
710 else if (!strcmp (p, "-Wno-return-type"))
711 warn_return_type = 0;
712 else if (!strcmp (p, "-Wsequence-point"))
713 warn_sequence_point = 1;
714 else if (!strcmp (p, "-Wno-sequence-point"))
715 warn_sequence_point = 0;
716 else if (!strcmp (p, "-Wcomment"))
717 ; /* cpp handles this one. */
718 else if (!strcmp (p, "-Wno-comment"))
719 ; /* cpp handles this one. */
720 else if (!strcmp (p, "-Wcomments"))
721 ; /* cpp handles this one. */
722 else if (!strcmp (p, "-Wno-comments"))
723 ; /* cpp handles this one. */
724 else if (!strcmp (p, "-Wtrigraphs"))
725 ; /* cpp handles this one. */
726 else if (!strcmp (p, "-Wno-trigraphs"))
727 ; /* cpp handles this one. */
728 else if (!strcmp (p, "-Wundef"))
729 ; /* cpp handles this one. */
730 else if (!strcmp (p, "-Wno-undef"))
731 ; /* cpp handles this one. */
732 else if (!strcmp (p, "-Wimport"))
733 ; /* cpp handles this one. */
734 else if (!strcmp (p, "-Wno-import"))
735 ; /* cpp handles this one. */
736 else if (!strcmp (p, "-Wmissing-braces"))
737 warn_missing_braces = 1;
738 else if (!strcmp (p, "-Wno-missing-braces"))
739 warn_missing_braces = 0;
740 else if (!strcmp (p, "-Wmain"))
741 warn_main = 1;
742 else if (!strcmp (p, "-Wno-main"))
743 warn_main = -1;
744 else if (!strcmp (p, "-Wsign-compare"))
745 warn_sign_compare = 1;
746 else if (!strcmp (p, "-Wno-sign-compare"))
747 warn_sign_compare = 0;
748 else if (!strcmp (p, "-Wfloat-equal"))
749 warn_float_equal = 1;
750 else if (!strcmp (p, "-Wno-float-equal"))
751 warn_float_equal = 0;
752 else if (!strcmp (p, "-Wmultichar"))
753 warn_multichar = 1;
754 else if (!strcmp (p, "-Wno-multichar"))
755 warn_multichar = 0;
756 else if (!strcmp (p, "-Wdiv-by-zero"))
757 warn_div_by_zero = 1;
758 else if (!strcmp (p, "-Wno-div-by-zero"))
759 warn_div_by_zero = 0;
760 else if (!strcmp (p, "-Wunknown-pragmas"))
761 /* Set to greater than 1, so that even unknown pragmas in system
762 headers will be warned about. */
763 warn_unknown_pragmas = 2;
764 else if (!strcmp (p, "-Wno-unknown-pragmas"))
765 warn_unknown_pragmas = 0;
766 else if (!strcmp (p, "-Wall"))
768 /* We save the value of warn_uninitialized, since if they put
769 -Wuninitialized on the command line, we need to generate a
770 warning about not using it without also specifying -O. */
771 if (warn_uninitialized != 1)
772 warn_uninitialized = 2;
773 warn_implicit_int = 1;
774 mesg_implicit_function_declaration = 1;
775 warn_return_type = 1;
776 set_Wunused (1);
777 warn_switch = 1;
778 set_Wformat (1);
779 warn_char_subscripts = 1;
780 warn_parentheses = 1;
781 warn_sequence_point = 1;
782 warn_missing_braces = 1;
783 /* We set this to 2 here, but 1 in -Wmain, so -ffreestanding can turn
784 it off only if it's not explicit. */
785 warn_main = 2;
786 /* Only warn about unknown pragmas that are not in system headers. */
787 warn_unknown_pragmas = 1;
789 else
790 return strings_processed;
792 return 1;
795 void
796 c_print_identifier (file, node, indent)
797 FILE *file;
798 tree node;
799 int indent;
801 print_node (file, "global", IDENTIFIER_GLOBAL_VALUE (node), indent + 4);
802 print_node (file, "local", IDENTIFIER_LOCAL_VALUE (node), indent + 4);
803 print_node (file, "label", IDENTIFIER_LABEL_VALUE (node), indent + 4);
804 print_node (file, "implicit", IDENTIFIER_IMPLICIT_DECL (node), indent + 4);
805 print_node (file, "error locus", IDENTIFIER_ERROR_LOCUS (node), indent + 4);
806 print_node (file, "limbo value", IDENTIFIER_LIMBO_VALUE (node), indent + 4);
807 if (C_IS_RESERVED_WORD (node))
809 tree rid = ridpointers[C_RID_CODE (node)];
810 indent_to (file, indent + 4);
811 fprintf (file, "rid ");
812 fprintf (file, HOST_PTR_PRINTF, (void *)rid);
813 fprintf (file, " \"%s\"", IDENTIFIER_POINTER (rid));
817 /* Hook called at end of compilation to assume 1 elt
818 for a top-level tentative array defn that wasn't complete before. */
820 void
821 finish_incomplete_decl (decl)
822 tree decl;
824 if (TREE_CODE (decl) == VAR_DECL)
826 tree type = TREE_TYPE (decl);
827 if (type != error_mark_node
828 && TREE_CODE (type) == ARRAY_TYPE
829 && ! DECL_EXTERNAL (decl)
830 && TYPE_DOMAIN (type) == 0)
832 warning_with_decl (decl, "array `%s' assumed to have one element");
834 complete_array_type (type, NULL_TREE, 1);
836 layout_decl (decl, 0);
841 /* Create a new `struct binding_level'. */
843 static struct binding_level *
844 make_binding_level ()
846 /* NOSTRICT */
847 return (struct binding_level *) xmalloc (sizeof (struct binding_level));
850 /* Nonzero if we are currently in the global binding level. */
853 global_bindings_p ()
855 return current_binding_level == global_binding_level;
858 void
859 keep_next_level ()
861 keep_next_level_flag = 1;
864 /* Nonzero if the current level needs to have a BLOCK made. */
867 kept_level_p ()
869 return ((current_binding_level->keep_if_subblocks
870 && current_binding_level->blocks != 0)
871 || current_binding_level->keep
872 || current_binding_level->names != 0
873 || (current_binding_level->tags != 0
874 && !current_binding_level->tag_transparent));
877 /* Identify this binding level as a level of parameters.
878 DEFINITION_FLAG is 1 for a definition, 0 for a declaration.
879 But it turns out there is no way to pass the right value for
880 DEFINITION_FLAG, so we ignore it. */
882 void
883 declare_parm_level (definition_flag)
884 int definition_flag ATTRIBUTE_UNUSED;
886 current_binding_level->parm_flag = 1;
889 /* Nonzero if currently making parm declarations. */
892 in_parm_level_p ()
894 return current_binding_level->parm_flag;
897 /* Enter a new binding level.
898 If TAG_TRANSPARENT is nonzero, do so only for the name space of variables,
899 not for that of tags. */
901 void
902 pushlevel (tag_transparent)
903 int tag_transparent;
905 struct binding_level *newlevel = NULL_BINDING_LEVEL;
907 /* If this is the top level of a function,
908 just make sure that NAMED_LABELS is 0. */
910 if (current_binding_level == global_binding_level)
912 named_labels = 0;
915 /* Reuse or create a struct for this binding level. */
917 if (free_binding_level)
919 newlevel = free_binding_level;
920 free_binding_level = free_binding_level->level_chain;
922 else
924 newlevel = make_binding_level ();
927 /* Add this level to the front of the chain (stack) of levels that
928 are active. */
930 *newlevel = clear_binding_level;
931 newlevel->tag_transparent
932 = (tag_transparent
933 || (current_binding_level
934 ? current_binding_level->subblocks_tag_transparent
935 : 0));
936 newlevel->level_chain = current_binding_level;
937 current_binding_level = newlevel;
938 newlevel->keep = keep_next_level_flag;
939 keep_next_level_flag = 0;
940 newlevel->keep_if_subblocks = keep_next_if_subblocks;
941 keep_next_if_subblocks = 0;
944 /* Clear the limbo values of all identifiers defined in BLOCK or a subblock. */
946 static void
947 clear_limbo_values (block)
948 tree block;
950 tree tem;
952 for (tem = BLOCK_VARS (block); tem; tem = TREE_CHAIN (tem))
953 if (DECL_NAME (tem) != 0)
954 IDENTIFIER_LIMBO_VALUE (DECL_NAME (tem)) = 0;
956 for (tem = BLOCK_SUBBLOCKS (block); tem; tem = TREE_CHAIN (tem))
957 clear_limbo_values (tem);
960 /* Exit a binding level.
961 Pop the level off, and restore the state of the identifier-decl mappings
962 that were in effect when this level was entered.
964 If KEEP is nonzero, this level had explicit declarations, so
965 and create a "block" (a BLOCK node) for the level
966 to record its declarations and subblocks for symbol table output.
968 If FUNCTIONBODY is nonzero, this level is the body of a function,
969 so create a block as if KEEP were set and also clear out all
970 label names.
972 If REVERSE is nonzero, reverse the order of decls before putting
973 them into the BLOCK. */
975 tree
976 poplevel (keep, reverse, functionbody)
977 int keep;
978 int reverse;
979 int functionbody;
981 tree link;
982 /* The chain of decls was accumulated in reverse order.
983 Put it into forward order, just for cleanliness. */
984 tree decls;
985 tree tags = current_binding_level->tags;
986 tree subblocks = current_binding_level->blocks;
987 tree block = 0;
988 tree decl;
989 int block_previously_created;
991 keep |= current_binding_level->keep;
993 /* This warning is turned off because it causes warnings for
994 declarations like `extern struct foo *x'. */
995 #if 0
996 /* Warn about incomplete structure types in this level. */
997 for (link = tags; link; link = TREE_CHAIN (link))
998 if (!COMPLETE_TYPE_P (TREE_VALUE (link)))
1000 tree type = TREE_VALUE (link);
1001 tree type_name = TYPE_NAME (type);
1002 char *id = IDENTIFIER_POINTER (TREE_CODE (type_name) == IDENTIFIER_NODE
1003 ? type_name
1004 : DECL_NAME (type_name));
1005 switch (TREE_CODE (type))
1007 case RECORD_TYPE:
1008 error ("`struct %s' incomplete in scope ending here", id);
1009 break;
1010 case UNION_TYPE:
1011 error ("`union %s' incomplete in scope ending here", id);
1012 break;
1013 case ENUMERAL_TYPE:
1014 error ("`enum %s' incomplete in scope ending here", id);
1015 break;
1018 #endif /* 0 */
1020 /* Get the decls in the order they were written.
1021 Usually current_binding_level->names is in reverse order.
1022 But parameter decls were previously put in forward order. */
1024 if (reverse)
1025 current_binding_level->names
1026 = decls = nreverse (current_binding_level->names);
1027 else
1028 decls = current_binding_level->names;
1030 /* Output any nested inline functions within this block
1031 if they weren't already output. */
1033 for (decl = decls; decl; decl = TREE_CHAIN (decl))
1034 if (TREE_CODE (decl) == FUNCTION_DECL
1035 && ! TREE_ASM_WRITTEN (decl)
1036 && DECL_INITIAL (decl) != 0
1037 && TREE_ADDRESSABLE (decl))
1039 /* If this decl was copied from a file-scope decl
1040 on account of a block-scope extern decl,
1041 propagate TREE_ADDRESSABLE to the file-scope decl.
1043 DECL_ABSTRACT_ORIGIN can be set to itself if warn_return_type is
1044 true, since then the decl goes through save_for_inline_copying. */
1045 if (DECL_ABSTRACT_ORIGIN (decl) != 0
1046 && DECL_ABSTRACT_ORIGIN (decl) != decl)
1047 TREE_ADDRESSABLE (DECL_ABSTRACT_ORIGIN (decl)) = 1;
1050 /* We used to warn about unused variables in expand_end_bindings,
1051 i.e. while generating RTL. But in function-at-a-time mode we may
1052 choose to never expand a function at all (e.g. auto inlining), so
1053 we do this explicitly now. */
1054 warn_about_unused_variables (getdecls ());
1056 /* If there were any declarations or structure tags in that level,
1057 or if this level is a function body,
1058 create a BLOCK to record them for the life of this function. */
1060 block = 0;
1061 block_previously_created = (current_binding_level->this_block != 0);
1062 if (block_previously_created)
1063 block = current_binding_level->this_block;
1064 else if (keep || functionbody
1065 || (current_binding_level->keep_if_subblocks && subblocks != 0))
1066 block = make_node (BLOCK);
1067 if (block != 0)
1069 BLOCK_VARS (block) = decls;
1070 BLOCK_SUBBLOCKS (block) = subblocks;
1073 /* In each subblock, record that this is its superior. */
1075 for (link = subblocks; link; link = TREE_CHAIN (link))
1076 BLOCK_SUPERCONTEXT (link) = block;
1078 /* Clear out the meanings of the local variables of this level. */
1080 for (link = decls; link; link = TREE_CHAIN (link))
1082 if (DECL_NAME (link) != 0)
1084 /* If the ident. was used or addressed via a local extern decl,
1085 don't forget that fact. */
1086 if (DECL_EXTERNAL (link))
1088 if (TREE_USED (link))
1089 TREE_USED (DECL_NAME (link)) = 1;
1090 if (TREE_ADDRESSABLE (link))
1091 TREE_ADDRESSABLE (DECL_ASSEMBLER_NAME (link)) = 1;
1093 IDENTIFIER_LOCAL_VALUE (DECL_NAME (link)) = 0;
1097 /* Restore all name-meanings of the outer levels
1098 that were shadowed by this level. */
1100 for (link = current_binding_level->shadowed; link; link = TREE_CHAIN (link))
1101 IDENTIFIER_LOCAL_VALUE (TREE_PURPOSE (link)) = TREE_VALUE (link);
1103 /* If the level being exited is the top level of a function,
1104 check over all the labels, and clear out the current
1105 (function local) meanings of their names. */
1107 if (functionbody)
1109 clear_limbo_values (block);
1111 /* If this is the top level block of a function,
1112 the vars are the function's parameters.
1113 Don't leave them in the BLOCK because they are
1114 found in the FUNCTION_DECL instead. */
1116 BLOCK_VARS (block) = 0;
1118 /* Clear out the definitions of all label names,
1119 since their scopes end here,
1120 and add them to BLOCK_VARS. */
1122 for (link = named_labels; link; link = TREE_CHAIN (link))
1124 tree label = TREE_VALUE (link);
1126 if (DECL_INITIAL (label) == 0)
1128 error_with_decl (label, "label `%s' used but not defined");
1129 /* Avoid crashing later. */
1130 define_label (input_filename, lineno,
1131 DECL_NAME (label));
1133 else if (warn_unused_label && !TREE_USED (label))
1134 warning_with_decl (label, "label `%s' defined but not used");
1135 IDENTIFIER_LABEL_VALUE (DECL_NAME (label)) = 0;
1137 /* Put the labels into the "variables" of the
1138 top-level block, so debugger can see them. */
1139 TREE_CHAIN (label) = BLOCK_VARS (block);
1140 BLOCK_VARS (block) = label;
1144 /* Pop the current level, and free the structure for reuse. */
1147 struct binding_level *level = current_binding_level;
1148 current_binding_level = current_binding_level->level_chain;
1150 level->level_chain = free_binding_level;
1151 free_binding_level = level;
1154 /* Dispose of the block that we just made inside some higher level. */
1155 if (functionbody)
1156 DECL_INITIAL (current_function_decl) = block;
1157 else if (block)
1159 if (!block_previously_created)
1160 current_binding_level->blocks
1161 = chainon (current_binding_level->blocks, block);
1163 /* If we did not make a block for the level just exited,
1164 any blocks made for inner levels
1165 (since they cannot be recorded as subblocks in that level)
1166 must be carried forward so they will later become subblocks
1167 of something else. */
1168 else if (subblocks)
1169 current_binding_level->blocks
1170 = chainon (current_binding_level->blocks, subblocks);
1172 /* Set the TYPE_CONTEXTs for all of the tagged types belonging to this
1173 binding contour so that they point to the appropriate construct, i.e.
1174 either to the current FUNCTION_DECL node, or else to the BLOCK node
1175 we just constructed.
1177 Note that for tagged types whose scope is just the formal parameter
1178 list for some function type specification, we can't properly set
1179 their TYPE_CONTEXTs here, because we don't have a pointer to the
1180 appropriate FUNCTION_TYPE node readily available to us. For those
1181 cases, the TYPE_CONTEXTs of the relevant tagged type nodes get set
1182 in `grokdeclarator' as soon as we have created the FUNCTION_TYPE
1183 node which will represent the "scope" for these "parameter list local"
1184 tagged types. */
1186 if (functionbody)
1187 for (link = tags; link; link = TREE_CHAIN (link))
1188 TYPE_CONTEXT (TREE_VALUE (link)) = current_function_decl;
1189 else if (block)
1190 for (link = tags; link; link = TREE_CHAIN (link))
1191 TYPE_CONTEXT (TREE_VALUE (link)) = block;
1193 if (block)
1194 TREE_USED (block) = 1;
1196 return block;
1199 /* Insert BLOCK at the end of the list of subblocks of the
1200 current binding level. This is used when a BIND_EXPR is expanded,
1201 to handle the BLOCK node inside the BIND_EXPR. */
1203 void
1204 insert_block (block)
1205 tree block;
1207 TREE_USED (block) = 1;
1208 current_binding_level->blocks
1209 = chainon (current_binding_level->blocks, block);
1212 /* Set the BLOCK node for the innermost scope
1213 (the one we are currently in). */
1215 void
1216 set_block (block)
1217 tree block;
1219 current_binding_level->this_block = block;
1220 current_binding_level->names = chainon (current_binding_level->names,
1221 BLOCK_VARS (block));
1222 current_binding_level->blocks = chainon (current_binding_level->blocks,
1223 BLOCK_SUBBLOCKS (block));
1226 void
1227 push_label_level ()
1229 struct binding_level *newlevel;
1231 /* Reuse or create a struct for this binding level. */
1233 if (free_binding_level)
1235 newlevel = free_binding_level;
1236 free_binding_level = free_binding_level->level_chain;
1238 else
1240 newlevel = make_binding_level ();
1243 /* Add this level to the front of the chain (stack) of label levels. */
1245 newlevel->level_chain = label_level_chain;
1246 label_level_chain = newlevel;
1248 newlevel->names = named_labels;
1249 newlevel->shadowed = shadowed_labels;
1250 named_labels = 0;
1251 shadowed_labels = 0;
1254 void
1255 pop_label_level ()
1257 struct binding_level *level = label_level_chain;
1258 tree link, prev;
1260 /* Clear out the definitions of the declared labels in this level.
1261 Leave in the list any ordinary, non-declared labels. */
1262 for (link = named_labels, prev = 0; link;)
1264 if (C_DECLARED_LABEL_FLAG (TREE_VALUE (link)))
1266 if (DECL_SOURCE_LINE (TREE_VALUE (link)) == 0)
1268 error_with_decl (TREE_VALUE (link),
1269 "label `%s' used but not defined");
1270 /* Avoid crashing later. */
1271 define_label (input_filename, lineno,
1272 DECL_NAME (TREE_VALUE (link)));
1274 else if (warn_unused_label && !TREE_USED (TREE_VALUE (link)))
1275 warning_with_decl (TREE_VALUE (link),
1276 "label `%s' defined but not used");
1277 IDENTIFIER_LABEL_VALUE (DECL_NAME (TREE_VALUE (link))) = 0;
1279 /* Delete this element from the list. */
1280 link = TREE_CHAIN (link);
1281 if (prev)
1282 TREE_CHAIN (prev) = link;
1283 else
1284 named_labels = link;
1286 else
1288 prev = link;
1289 link = TREE_CHAIN (link);
1293 /* Bring back all the labels that were shadowed. */
1294 for (link = shadowed_labels; link; link = TREE_CHAIN (link))
1295 if (DECL_NAME (TREE_VALUE (link)) != 0)
1296 IDENTIFIER_LABEL_VALUE (DECL_NAME (TREE_VALUE (link)))
1297 = TREE_VALUE (link);
1299 named_labels = chainon (named_labels, level->names);
1300 shadowed_labels = level->shadowed;
1302 /* Pop the current level, and free the structure for reuse. */
1303 label_level_chain = label_level_chain->level_chain;
1304 level->level_chain = free_binding_level;
1305 free_binding_level = level;
1308 /* Push a definition or a declaration of struct, union or enum tag "name".
1309 "type" should be the type node.
1310 We assume that the tag "name" is not already defined.
1312 Note that the definition may really be just a forward reference.
1313 In that case, the TYPE_SIZE will be zero. */
1315 void
1316 pushtag (name, type)
1317 tree name, type;
1319 struct binding_level *b;
1321 /* Find the proper binding level for this type tag. */
1323 for (b = current_binding_level; b->tag_transparent; b = b->level_chain)
1324 continue;
1326 if (name)
1328 /* Record the identifier as the type's name if it has none. */
1330 if (TYPE_NAME (type) == 0)
1331 TYPE_NAME (type) = name;
1334 b->tags = tree_cons (name, type, b->tags);
1336 /* Create a fake NULL-named TYPE_DECL node whose TREE_TYPE will be the
1337 tagged type we just added to the current binding level. This fake
1338 NULL-named TYPE_DECL node helps dwarfout.c to know when it needs
1339 to output a representation of a tagged type, and it also gives
1340 us a convenient place to record the "scope start" address for the
1341 tagged type. */
1343 TYPE_STUB_DECL (type) = pushdecl (build_decl (TYPE_DECL, NULL_TREE, type));
1345 /* An approximation for now, so we can tell this is a function-scope tag.
1346 This will be updated in poplevel. */
1347 TYPE_CONTEXT (type) = DECL_CONTEXT (TYPE_STUB_DECL (type));
1350 /* Handle when a new declaration NEWDECL
1351 has the same name as an old one OLDDECL
1352 in the same binding contour.
1353 Prints an error message if appropriate.
1355 If safely possible, alter OLDDECL to look like NEWDECL, and return 1.
1356 Otherwise, return 0.
1358 When DIFFERENT_BINDING_LEVEL is true, NEWDECL is an external declaration,
1359 and OLDDECL is in an outer binding level and should thus not be changed. */
1361 static int
1362 duplicate_decls (newdecl, olddecl, different_binding_level)
1363 tree newdecl, olddecl;
1364 int different_binding_level;
1366 int types_match = comptypes (TREE_TYPE (newdecl), TREE_TYPE (olddecl));
1367 int new_is_definition = (TREE_CODE (newdecl) == FUNCTION_DECL
1368 && DECL_INITIAL (newdecl) != 0);
1369 tree oldtype = TREE_TYPE (olddecl);
1370 tree newtype = TREE_TYPE (newdecl);
1371 int errmsg = 0;
1373 if (DECL_P (olddecl))
1375 if (TREE_CODE (newdecl) == FUNCTION_DECL
1376 && TREE_CODE (olddecl) == FUNCTION_DECL
1377 && (DECL_UNINLINABLE (newdecl) || DECL_UNINLINABLE (olddecl)))
1379 if (DECL_DECLARED_INLINE_P (newdecl)
1380 && DECL_UNINLINABLE (newdecl)
1381 && lookup_attribute ("noinline", DECL_ATTRIBUTES (newdecl)))
1382 /* Already warned elsewhere. */;
1383 else if (DECL_DECLARED_INLINE_P (olddecl)
1384 && DECL_UNINLINABLE (olddecl)
1385 && lookup_attribute ("noinline", DECL_ATTRIBUTES (olddecl)))
1386 /* Already warned. */;
1387 else if (DECL_DECLARED_INLINE_P (newdecl)
1388 && ! DECL_DECLARED_INLINE_P (olddecl)
1389 && DECL_UNINLINABLE (olddecl)
1390 && lookup_attribute ("noinline", DECL_ATTRIBUTES (olddecl)))
1392 warning_with_decl (newdecl,
1393 "function `%s' redeclared as inline");
1394 warning_with_decl (olddecl,
1395 "previous declaration of function `%s' with attribute noinline");
1397 else if (DECL_DECLARED_INLINE_P (olddecl)
1398 && DECL_UNINLINABLE (newdecl)
1399 && lookup_attribute ("noinline", DECL_ATTRIBUTES (newdecl)))
1401 warning_with_decl (newdecl,
1402 "function `%s' redeclared with attribute noinline");
1403 warning_with_decl (olddecl,
1404 "previous declaration of function `%s' was inline");
1408 DECL_ATTRIBUTES (newdecl)
1409 = (*targetm.merge_decl_attributes) (olddecl, newdecl);
1412 if (TREE_CODE (newtype) == ERROR_MARK
1413 || TREE_CODE (oldtype) == ERROR_MARK)
1414 types_match = 0;
1416 /* New decl is completely inconsistent with the old one =>
1417 tell caller to replace the old one.
1418 This is always an error except in the case of shadowing a builtin. */
1419 if (TREE_CODE (olddecl) != TREE_CODE (newdecl))
1421 if (TREE_CODE (olddecl) == FUNCTION_DECL
1422 && (DECL_BUILT_IN (olddecl)
1423 || DECL_BUILT_IN_NONANSI (olddecl)))
1425 /* If you declare a built-in or predefined function name as static,
1426 the old definition is overridden,
1427 but optionally warn this was a bad choice of name. */
1428 if (!TREE_PUBLIC (newdecl))
1430 if (!warn_shadow)
1432 else if (DECL_BUILT_IN (olddecl))
1433 warning_with_decl (newdecl, "shadowing built-in function `%s'");
1434 else
1435 warning_with_decl (newdecl, "shadowing library function `%s'");
1437 /* Likewise, if the built-in is not ansi, then programs can
1438 override it even globally without an error. */
1439 else if (! DECL_BUILT_IN (olddecl))
1440 warning_with_decl (newdecl,
1441 "library function `%s' declared as non-function");
1443 else if (DECL_BUILT_IN_NONANSI (olddecl))
1444 warning_with_decl (newdecl,
1445 "built-in function `%s' declared as non-function");
1446 else
1447 warning_with_decl (newdecl,
1448 "built-in function `%s' declared as non-function");
1450 else
1452 error_with_decl (newdecl, "`%s' redeclared as different kind of symbol");
1453 error_with_decl (olddecl, "previous declaration of `%s'");
1456 return 0;
1459 /* For real parm decl following a forward decl,
1460 return 1 so old decl will be reused. */
1461 if (types_match && TREE_CODE (newdecl) == PARM_DECL
1462 && TREE_ASM_WRITTEN (olddecl) && ! TREE_ASM_WRITTEN (newdecl))
1463 return 1;
1465 /* The new declaration is the same kind of object as the old one.
1466 The declarations may partially match. Print warnings if they don't
1467 match enough. Ultimately, copy most of the information from the new
1468 decl to the old one, and keep using the old one. */
1470 if (flag_traditional && TREE_CODE (newdecl) == FUNCTION_DECL
1471 && IDENTIFIER_IMPLICIT_DECL (DECL_NAME (newdecl)) == olddecl
1472 && DECL_INITIAL (olddecl) == 0)
1473 /* If -traditional, avoid error for redeclaring fcn
1474 after implicit decl. */
1476 else if (TREE_CODE (olddecl) == FUNCTION_DECL
1477 && DECL_BUILT_IN (olddecl))
1479 /* A function declaration for a built-in function. */
1480 if (!TREE_PUBLIC (newdecl))
1482 /* If you declare a built-in function name as static, the
1483 built-in definition is overridden,
1484 but optionally warn this was a bad choice of name. */
1485 if (warn_shadow)
1486 warning_with_decl (newdecl, "shadowing built-in function `%s'");
1487 /* Discard the old built-in function. */
1488 return 0;
1490 else if (!types_match)
1492 /* Accept the return type of the new declaration if same modes. */
1493 tree oldreturntype = TREE_TYPE (oldtype);
1494 tree newreturntype = TREE_TYPE (newtype);
1496 if (TYPE_MODE (oldreturntype) == TYPE_MODE (newreturntype))
1498 /* Function types may be shared, so we can't just modify
1499 the return type of olddecl's function type. */
1500 tree trytype
1501 = build_function_type (newreturntype,
1502 TYPE_ARG_TYPES (oldtype));
1503 trytype = build_type_attribute_variant (trytype,
1504 TYPE_ATTRIBUTES (oldtype));
1506 types_match = comptypes (newtype, trytype);
1507 if (types_match)
1508 oldtype = trytype;
1510 /* Accept harmless mismatch in first argument type also.
1511 This is for the ffs and fprintf builtins. */
1512 if (TYPE_ARG_TYPES (TREE_TYPE (newdecl)) != 0
1513 && TYPE_ARG_TYPES (oldtype) != 0
1514 && TREE_VALUE (TYPE_ARG_TYPES (newtype)) != 0
1515 && TREE_VALUE (TYPE_ARG_TYPES (oldtype)) != 0
1516 && (TYPE_MODE (TREE_VALUE (TYPE_ARG_TYPES (newtype)))
1517 == TYPE_MODE (TREE_VALUE (TYPE_ARG_TYPES (oldtype)))))
1519 /* Function types may be shared, so we can't just modify
1520 the return type of olddecl's function type. */
1521 tree trytype
1522 = build_function_type (TREE_TYPE (oldtype),
1523 tree_cons (NULL_TREE,
1524 TREE_VALUE (TYPE_ARG_TYPES (newtype)),
1525 TREE_CHAIN (TYPE_ARG_TYPES (oldtype))));
1526 trytype = build_type_attribute_variant (trytype,
1527 TYPE_ATTRIBUTES (oldtype));
1529 types_match = comptypes (newtype, trytype);
1530 if (types_match)
1531 oldtype = trytype;
1533 if (! different_binding_level)
1534 TREE_TYPE (olddecl) = oldtype;
1536 if (!types_match)
1538 /* If types don't match for a built-in, throw away the built-in. */
1539 warning_with_decl (newdecl, "conflicting types for built-in function `%s'");
1540 return 0;
1543 else if (TREE_CODE (olddecl) == FUNCTION_DECL
1544 && DECL_SOURCE_LINE (olddecl) == 0)
1546 /* A function declaration for a predeclared function
1547 that isn't actually built in. */
1548 if (!TREE_PUBLIC (newdecl))
1550 /* If you declare it as static, the
1551 default definition is overridden. */
1552 return 0;
1554 else if (!types_match)
1556 /* If the types don't match, preserve volatility indication.
1557 Later on, we will discard everything else about the
1558 default declaration. */
1559 TREE_THIS_VOLATILE (newdecl) |= TREE_THIS_VOLATILE (olddecl);
1562 /* Permit char *foo () to match void *foo (...) if not pedantic,
1563 if one of them came from a system header file. */
1564 else if (!types_match
1565 && TREE_CODE (olddecl) == FUNCTION_DECL
1566 && TREE_CODE (newdecl) == FUNCTION_DECL
1567 && TREE_CODE (TREE_TYPE (oldtype)) == POINTER_TYPE
1568 && TREE_CODE (TREE_TYPE (newtype)) == POINTER_TYPE
1569 && (DECL_IN_SYSTEM_HEADER (olddecl)
1570 || DECL_IN_SYSTEM_HEADER (newdecl))
1571 && ((TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (newtype))) == void_type_node
1572 && TYPE_ARG_TYPES (oldtype) == 0
1573 && self_promoting_args_p (TYPE_ARG_TYPES (newtype))
1574 && TREE_TYPE (TREE_TYPE (oldtype)) == char_type_node)
1576 (TREE_TYPE (TREE_TYPE (newtype)) == char_type_node
1577 && TYPE_ARG_TYPES (newtype) == 0
1578 && self_promoting_args_p (TYPE_ARG_TYPES (oldtype))
1579 && TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (oldtype))) == void_type_node)))
1581 if (pedantic)
1582 pedwarn_with_decl (newdecl, "conflicting types for `%s'");
1583 /* Make sure we keep void * as ret type, not char *. */
1584 if (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (oldtype))) == void_type_node)
1585 TREE_TYPE (newdecl) = newtype = oldtype;
1587 /* Set DECL_IN_SYSTEM_HEADER, so that if we see another declaration
1588 we will come back here again. */
1589 DECL_IN_SYSTEM_HEADER (newdecl) = 1;
1591 else if (!types_match
1592 /* Permit char *foo (int, ...); followed by char *foo ();
1593 if not pedantic. */
1594 && ! (TREE_CODE (olddecl) == FUNCTION_DECL
1595 && ! pedantic
1596 /* Return types must still match. */
1597 && comptypes (TREE_TYPE (oldtype),
1598 TREE_TYPE (newtype))
1599 && TYPE_ARG_TYPES (newtype) == 0))
1601 error_with_decl (newdecl, "conflicting types for `%s'");
1602 /* Check for function type mismatch
1603 involving an empty arglist vs a nonempty one. */
1604 if (TREE_CODE (olddecl) == FUNCTION_DECL
1605 && comptypes (TREE_TYPE (oldtype),
1606 TREE_TYPE (newtype))
1607 && ((TYPE_ARG_TYPES (oldtype) == 0
1608 && DECL_INITIAL (olddecl) == 0)
1610 (TYPE_ARG_TYPES (newtype) == 0
1611 && DECL_INITIAL (newdecl) == 0)))
1613 /* Classify the problem further. */
1614 tree t = TYPE_ARG_TYPES (oldtype);
1615 if (t == 0)
1616 t = TYPE_ARG_TYPES (newtype);
1617 for (; t; t = TREE_CHAIN (t))
1619 tree type = TREE_VALUE (t);
1621 if (TREE_CHAIN (t) == 0
1622 && TYPE_MAIN_VARIANT (type) != void_type_node)
1624 error ("A parameter list with an ellipsis can't match an empty parameter name list declaration.");
1625 break;
1628 if (simple_type_promotes_to (type) != NULL_TREE)
1630 error ("An argument type that has a default promotion can't match an empty parameter name list declaration.");
1631 break;
1635 error_with_decl (olddecl, "previous declaration of `%s'");
1637 else
1639 errmsg = redeclaration_error_message (newdecl, olddecl);
1640 if (errmsg)
1642 switch (errmsg)
1644 case 1:
1645 error_with_decl (newdecl, "redefinition of `%s'");
1646 break;
1647 case 2:
1648 error_with_decl (newdecl, "redeclaration of `%s'");
1649 break;
1650 case 3:
1651 error_with_decl (newdecl, "conflicting declarations of `%s'");
1652 break;
1653 default:
1654 abort ();
1657 error_with_decl (olddecl,
1658 ((DECL_INITIAL (olddecl)
1659 && current_binding_level == global_binding_level)
1660 ? "`%s' previously defined here"
1661 : "`%s' previously declared here"));
1663 else if (TREE_CODE (newdecl) == TYPE_DECL
1664 && (DECL_IN_SYSTEM_HEADER (olddecl)
1665 || DECL_IN_SYSTEM_HEADER (newdecl)))
1667 warning_with_decl (newdecl, "redefinition of `%s'");
1668 warning_with_decl
1669 (olddecl,
1670 ((DECL_INITIAL (olddecl)
1671 && current_binding_level == global_binding_level)
1672 ? "`%s' previously defined here"
1673 : "`%s' previously declared here"));
1675 else if (TREE_CODE (olddecl) == FUNCTION_DECL
1676 && DECL_INITIAL (olddecl) != 0
1677 && TYPE_ARG_TYPES (oldtype) == 0
1678 && TYPE_ARG_TYPES (newtype) != 0
1679 && TYPE_ACTUAL_ARG_TYPES (oldtype) != 0)
1681 tree type, parm;
1682 int nargs;
1683 /* Prototype decl follows defn w/o prototype. */
1685 for (parm = TYPE_ACTUAL_ARG_TYPES (oldtype),
1686 type = TYPE_ARG_TYPES (newtype),
1687 nargs = 1;
1689 parm = TREE_CHAIN (parm), type = TREE_CHAIN (type), nargs++)
1691 if (TYPE_MAIN_VARIANT (TREE_VALUE (parm)) == void_type_node
1692 && TYPE_MAIN_VARIANT (TREE_VALUE (type)) == void_type_node)
1694 warning_with_decl (newdecl, "prototype for `%s' follows");
1695 warning_with_decl (olddecl, "non-prototype definition here");
1696 break;
1698 if (TYPE_MAIN_VARIANT (TREE_VALUE (parm)) == void_type_node
1699 || TYPE_MAIN_VARIANT (TREE_VALUE (type)) == void_type_node)
1701 error_with_decl (newdecl,
1702 "prototype for `%s' follows and number of arguments doesn't match");
1703 error_with_decl (olddecl, "non-prototype definition here");
1704 errmsg = 1;
1705 break;
1707 /* Type for passing arg must be consistent
1708 with that declared for the arg. */
1709 if (! comptypes (TREE_VALUE (parm), TREE_VALUE (type))
1710 /* If -traditional, allow `unsigned int' instead of `int'
1711 in the prototype. */
1712 && (! (flag_traditional
1713 && TYPE_MAIN_VARIANT (TREE_VALUE (parm)) == integer_type_node
1714 && TYPE_MAIN_VARIANT (TREE_VALUE (type)) == unsigned_type_node)))
1716 error_with_decl (newdecl,
1717 "prototype for `%s' follows and argument %d doesn't match",
1718 nargs);
1719 error_with_decl (olddecl, "non-prototype definition here");
1720 errmsg = 1;
1721 break;
1725 /* Warn about mismatches in various flags. */
1726 else
1728 /* Warn if function is now inline
1729 but was previously declared not inline and has been called. */
1730 if (TREE_CODE (olddecl) == FUNCTION_DECL
1731 && ! DECL_DECLARED_INLINE_P (olddecl)
1732 && DECL_DECLARED_INLINE_P (newdecl)
1733 && TREE_USED (olddecl))
1734 warning_with_decl (newdecl,
1735 "`%s' declared inline after being called");
1736 if (TREE_CODE (olddecl) == FUNCTION_DECL
1737 && ! DECL_DECLARED_INLINE_P (olddecl)
1738 && DECL_DECLARED_INLINE_P (newdecl)
1739 && DECL_INITIAL (olddecl) != 0)
1740 warning_with_decl (newdecl,
1741 "`%s' declared inline after its definition");
1743 /* If pedantic, warn when static declaration follows a non-static
1744 declaration. Otherwise, do so only for functions. */
1745 if ((pedantic || TREE_CODE (olddecl) == FUNCTION_DECL)
1746 && TREE_PUBLIC (olddecl)
1747 && !TREE_PUBLIC (newdecl))
1748 warning_with_decl (newdecl, "static declaration for `%s' follows non-static");
1750 /* If warn_traditional, warn when a non-static function
1751 declaration follows a static one. */
1752 if (warn_traditional && !in_system_header
1753 && TREE_CODE (olddecl) == FUNCTION_DECL
1754 && !TREE_PUBLIC (olddecl)
1755 && TREE_PUBLIC (newdecl))
1756 warning_with_decl (newdecl, "non-static declaration for `%s' follows static");
1758 /* Warn when const declaration follows a non-const
1759 declaration, but not for functions. */
1760 if (TREE_CODE (olddecl) != FUNCTION_DECL
1761 && !TREE_READONLY (olddecl)
1762 && TREE_READONLY (newdecl))
1763 warning_with_decl (newdecl, "const declaration for `%s' follows non-const");
1764 /* These bits are logically part of the type, for variables.
1765 But not for functions
1766 (where qualifiers are not valid ANSI anyway). */
1767 else if (pedantic && TREE_CODE (olddecl) != FUNCTION_DECL
1768 && (TREE_READONLY (newdecl) != TREE_READONLY (olddecl)
1769 || TREE_THIS_VOLATILE (newdecl) != TREE_THIS_VOLATILE (olddecl)))
1770 pedwarn_with_decl (newdecl, "type qualifiers for `%s' conflict with previous decl");
1774 /* Optionally warn about more than one declaration for the same name. */
1775 if (errmsg == 0 && warn_redundant_decls && DECL_SOURCE_LINE (olddecl) != 0
1776 /* Don't warn about a function declaration
1777 followed by a definition. */
1778 && !(TREE_CODE (newdecl) == FUNCTION_DECL && DECL_INITIAL (newdecl) != 0
1779 && DECL_INITIAL (olddecl) == 0)
1780 /* Don't warn about extern decl followed by (tentative) definition. */
1781 && !(DECL_EXTERNAL (olddecl) && ! DECL_EXTERNAL (newdecl)))
1783 warning_with_decl (newdecl, "redundant redeclaration of `%s' in same scope");
1784 warning_with_decl (olddecl, "previous declaration of `%s'");
1787 /* Copy all the DECL_... slots specified in the new decl
1788 except for any that we copy here from the old type.
1790 Past this point, we don't change OLDTYPE and NEWTYPE
1791 even if we change the types of NEWDECL and OLDDECL. */
1793 if (types_match)
1795 /* When copying info to olddecl, we store into write_olddecl
1796 instead. This allows us to avoid modifying olddecl when
1797 different_binding_level is true. */
1798 tree write_olddecl = different_binding_level ? newdecl : olddecl;
1800 /* Merge the data types specified in the two decls. */
1801 if (TREE_CODE (newdecl) != FUNCTION_DECL || !DECL_BUILT_IN (olddecl))
1803 if (different_binding_level)
1805 if (TYPE_ARG_TYPES (oldtype) != 0
1806 && TYPE_ARG_TYPES (newtype) == 0)
1807 TREE_TYPE (newdecl) = common_type (newtype, oldtype);
1808 else
1809 TREE_TYPE (newdecl)
1810 = build_type_attribute_variant
1811 (newtype,
1812 merge_attributes (TYPE_ATTRIBUTES (newtype),
1813 TYPE_ATTRIBUTES (oldtype)));
1815 else
1816 TREE_TYPE (newdecl)
1817 = TREE_TYPE (olddecl)
1818 = common_type (newtype, oldtype);
1821 /* Lay the type out, unless already done. */
1822 if (oldtype != TREE_TYPE (newdecl))
1824 if (TREE_TYPE (newdecl) != error_mark_node)
1825 layout_type (TREE_TYPE (newdecl));
1826 if (TREE_CODE (newdecl) != FUNCTION_DECL
1827 && TREE_CODE (newdecl) != TYPE_DECL
1828 && TREE_CODE (newdecl) != CONST_DECL)
1829 layout_decl (newdecl, 0);
1831 else
1833 /* Since the type is OLDDECL's, make OLDDECL's size go with. */
1834 DECL_SIZE (newdecl) = DECL_SIZE (olddecl);
1835 DECL_SIZE_UNIT (newdecl) = DECL_SIZE_UNIT (olddecl);
1836 DECL_MODE (newdecl) = DECL_MODE (olddecl);
1837 if (TREE_CODE (olddecl) != FUNCTION_DECL)
1838 if (DECL_ALIGN (olddecl) > DECL_ALIGN (newdecl))
1840 DECL_ALIGN (newdecl) = DECL_ALIGN (olddecl);
1841 DECL_USER_ALIGN (newdecl) |= DECL_ALIGN (olddecl);
1845 /* Keep the old rtl since we can safely use it. */
1846 COPY_DECL_RTL (olddecl, newdecl);
1848 /* Merge the type qualifiers. */
1849 if (TREE_CODE (olddecl) == FUNCTION_DECL
1850 && DECL_BUILT_IN_NONANSI (olddecl) && TREE_THIS_VOLATILE (olddecl)
1851 && ! TREE_THIS_VOLATILE (newdecl))
1852 TREE_THIS_VOLATILE (write_olddecl) = 0;
1854 if (TREE_READONLY (newdecl))
1855 TREE_READONLY (write_olddecl) = 1;
1857 if (TREE_THIS_VOLATILE (newdecl))
1859 TREE_THIS_VOLATILE (write_olddecl) = 1;
1860 if (TREE_CODE (newdecl) == VAR_DECL
1861 /* If an automatic variable is re-declared in the same
1862 function scope, but the old declaration was not
1863 volatile, make_var_volatile() would crash because the
1864 variable would have been assigned to a pseudo, not a
1865 MEM. Since this duplicate declaration is invalid
1866 anyway, we just skip the call. */
1867 && errmsg == 0)
1868 make_var_volatile (newdecl);
1871 /* Keep source location of definition rather than declaration. */
1872 /* When called with different_binding_level set, keep the old
1873 information so that meaningful diagnostics can be given. */
1874 if (DECL_INITIAL (newdecl) == 0 && DECL_INITIAL (olddecl) != 0
1875 && ! different_binding_level)
1877 DECL_SOURCE_LINE (newdecl) = DECL_SOURCE_LINE (olddecl);
1878 DECL_SOURCE_FILE (newdecl) = DECL_SOURCE_FILE (olddecl);
1881 /* Merge the unused-warning information. */
1882 if (DECL_IN_SYSTEM_HEADER (olddecl))
1883 DECL_IN_SYSTEM_HEADER (newdecl) = 1;
1884 else if (DECL_IN_SYSTEM_HEADER (newdecl))
1885 DECL_IN_SYSTEM_HEADER (write_olddecl) = 1;
1887 /* Merge the initialization information. */
1888 /* When called with different_binding_level set, don't copy over
1889 DECL_INITIAL, so that we don't accidentally change function
1890 declarations into function definitions. */
1891 if (DECL_INITIAL (newdecl) == 0 && ! different_binding_level)
1892 DECL_INITIAL (newdecl) = DECL_INITIAL (olddecl);
1894 /* Merge the section attribute.
1895 We want to issue an error if the sections conflict but that must be
1896 done later in decl_attributes since we are called before attributes
1897 are assigned. */
1898 if (DECL_SECTION_NAME (newdecl) == NULL_TREE)
1899 DECL_SECTION_NAME (newdecl) = DECL_SECTION_NAME (olddecl);
1901 /* Copy the assembler name.
1902 Currently, it can only be defined in the prototype. */
1903 COPY_DECL_ASSEMBLER_NAME (olddecl, newdecl);
1905 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1907 DECL_STATIC_CONSTRUCTOR(newdecl) |= DECL_STATIC_CONSTRUCTOR(olddecl);
1908 DECL_STATIC_DESTRUCTOR (newdecl) |= DECL_STATIC_DESTRUCTOR (olddecl);
1910 DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (newdecl)
1911 |= DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (olddecl);
1912 DECL_NO_CHECK_MEMORY_USAGE (newdecl)
1913 |= DECL_NO_CHECK_MEMORY_USAGE (olddecl);
1914 DECL_NO_LIMIT_STACK (newdecl)
1915 |= DECL_NO_LIMIT_STACK (olddecl);
1918 /* If cannot merge, then use the new type and qualifiers,
1919 and don't preserve the old rtl. */
1920 else if (! different_binding_level)
1922 TREE_TYPE (olddecl) = TREE_TYPE (newdecl);
1923 TREE_READONLY (olddecl) = TREE_READONLY (newdecl);
1924 TREE_THIS_VOLATILE (olddecl) = TREE_THIS_VOLATILE (newdecl);
1925 TREE_SIDE_EFFECTS (olddecl) = TREE_SIDE_EFFECTS (newdecl);
1928 /* Merge the storage class information. */
1929 DECL_WEAK (newdecl) |= DECL_WEAK (olddecl);
1930 /* For functions, static overrides non-static. */
1931 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1933 TREE_PUBLIC (newdecl) &= TREE_PUBLIC (olddecl);
1934 /* This is since we don't automatically
1935 copy the attributes of NEWDECL into OLDDECL. */
1936 /* No need to worry about different_binding_level here because
1937 then TREE_PUBLIC (newdecl) was true. */
1938 TREE_PUBLIC (olddecl) = TREE_PUBLIC (newdecl);
1939 /* If this clears `static', clear it in the identifier too. */
1940 if (! TREE_PUBLIC (olddecl))
1941 TREE_PUBLIC (DECL_NAME (olddecl)) = 0;
1943 if (DECL_EXTERNAL (newdecl))
1945 if (! different_binding_level)
1947 /* Don't mess with these flags on local externs; they remain
1948 external even if there's a declaration at file scope which
1949 isn't. */
1950 TREE_STATIC (newdecl) = TREE_STATIC (olddecl);
1951 DECL_EXTERNAL (newdecl) = DECL_EXTERNAL (olddecl);
1953 /* An extern decl does not override previous storage class. */
1954 TREE_PUBLIC (newdecl) = TREE_PUBLIC (olddecl);
1955 if (! DECL_EXTERNAL (newdecl))
1956 DECL_CONTEXT (newdecl) = DECL_CONTEXT (olddecl);
1958 else
1960 TREE_STATIC (olddecl) = TREE_STATIC (newdecl);
1961 TREE_PUBLIC (olddecl) = TREE_PUBLIC (newdecl);
1964 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1966 /* If we're redefining a function previously defined as extern
1967 inline, make sure we emit debug info for the inline before we
1968 throw it away, in case it was inlined into a function that hasn't
1969 been written out yet. */
1970 if (new_is_definition && DECL_INITIAL (olddecl) && TREE_USED (olddecl))
1972 (*debug_hooks->outlining_inline_function) (olddecl);
1974 /* The new defn must not be inline. */
1975 DECL_INLINE (newdecl) = 0;
1976 DECL_UNINLINABLE (newdecl) = 1;
1978 else
1980 /* If either decl says `inline', this fn is inline,
1981 unless its definition was passed already. */
1982 if (DECL_DECLARED_INLINE_P (newdecl)
1983 && DECL_DECLARED_INLINE_P (olddecl) == 0)
1984 DECL_DECLARED_INLINE_P (olddecl) = 1;
1986 DECL_DECLARED_INLINE_P (newdecl) = DECL_DECLARED_INLINE_P (olddecl);
1988 DECL_UNINLINABLE (newdecl) = DECL_UNINLINABLE (olddecl)
1989 = (DECL_UNINLINABLE (newdecl) || DECL_UNINLINABLE (olddecl));
1992 if (DECL_BUILT_IN (olddecl))
1994 /* Get rid of any built-in function if new arg types don't match it
1995 or if we have a function definition. */
1996 if (! types_match || new_is_definition)
1998 if (! different_binding_level)
2000 TREE_TYPE (olddecl) = TREE_TYPE (newdecl);
2001 DECL_BUILT_IN_CLASS (olddecl) = NOT_BUILT_IN;
2004 else
2006 /* If redeclaring a builtin function, and not a definition,
2007 it stays built in. */
2008 DECL_BUILT_IN_CLASS (newdecl) = DECL_BUILT_IN_CLASS (olddecl);
2009 DECL_FUNCTION_CODE (newdecl) = DECL_FUNCTION_CODE (olddecl);
2012 /* Also preserve various other info from the definition. */
2013 else if (! new_is_definition)
2014 DECL_NUM_STMTS (newdecl) = DECL_NUM_STMTS (olddecl);
2015 if (! new_is_definition)
2017 DECL_RESULT (newdecl) = DECL_RESULT (olddecl);
2018 /* When called with different_binding_level set, don't copy over
2019 DECL_INITIAL, so that we don't accidentally change function
2020 declarations into function definitions. */
2021 if (! different_binding_level)
2022 DECL_INITIAL (newdecl) = DECL_INITIAL (olddecl);
2023 DECL_SAVED_INSNS (newdecl) = DECL_SAVED_INSNS (olddecl);
2024 DECL_SAVED_TREE (newdecl) = DECL_SAVED_TREE (olddecl);
2025 DECL_ARGUMENTS (newdecl) = DECL_ARGUMENTS (olddecl);
2026 if (DECL_INLINE (newdecl))
2027 DECL_ABSTRACT_ORIGIN (newdecl) = DECL_ABSTRACT_ORIGIN (olddecl);
2030 if (different_binding_level)
2031 return 0;
2033 /* Copy most of the decl-specific fields of NEWDECL into OLDDECL.
2034 But preserve OLDDECL's DECL_UID. */
2036 unsigned olddecl_uid = DECL_UID (olddecl);
2038 memcpy ((char *) olddecl + sizeof (struct tree_common),
2039 (char *) newdecl + sizeof (struct tree_common),
2040 sizeof (struct tree_decl) - sizeof (struct tree_common));
2041 DECL_UID (olddecl) = olddecl_uid;
2044 /* NEWDECL contains the merged attribute lists.
2045 Update OLDDECL to be the same. */
2046 DECL_ATTRIBUTES (olddecl) = DECL_ATTRIBUTES (newdecl);
2048 return 1;
2051 /* Record a decl-node X as belonging to the current lexical scope.
2052 Check for errors (such as an incompatible declaration for the same
2053 name already seen in the same scope).
2055 Returns either X or an old decl for the same name.
2056 If an old decl is returned, it may have been smashed
2057 to agree with what X says. */
2059 tree
2060 pushdecl (x)
2061 tree x;
2063 tree t;
2064 tree name = DECL_NAME (x);
2065 struct binding_level *b = current_binding_level;
2067 /* Functions need the lang_decl data. */
2068 if (TREE_CODE (x) == FUNCTION_DECL && ! DECL_LANG_SPECIFIC (x))
2069 DECL_LANG_SPECIFIC (x) = (struct lang_decl *)
2070 ggc_alloc_cleared (sizeof (struct lang_decl));
2072 DECL_CONTEXT (x) = current_function_decl;
2073 /* A local extern declaration for a function doesn't constitute nesting.
2074 A local auto declaration does, since it's a forward decl
2075 for a nested function coming later. */
2076 if ((TREE_CODE (x) == FUNCTION_DECL || TREE_CODE (x) == VAR_DECL)
2077 && DECL_INITIAL (x) == 0 && DECL_EXTERNAL (x))
2078 DECL_CONTEXT (x) = 0;
2080 if (name)
2082 int different_binding_level = 0;
2084 if (warn_nested_externs
2085 && DECL_EXTERNAL (x)
2086 && b != global_binding_level
2087 && x != IDENTIFIER_IMPLICIT_DECL (name)
2088 /* No error messages for __FUNCTION__ and __PRETTY_FUNCTION__. */
2089 && !DECL_IN_SYSTEM_HEADER (x))
2090 warning ("nested extern declaration of `%s'",
2091 IDENTIFIER_POINTER (name));
2093 t = lookup_name_current_level (name);
2094 /* Don't type check externs here when -traditional. This is so that
2095 code with conflicting declarations inside blocks will get warnings
2096 not errors. X11 for instance depends on this. */
2097 if (! t && DECL_EXTERNAL (x) && TREE_PUBLIC (x) && ! flag_traditional)
2099 t = lookup_name (name);
2100 /* Type decls at global scope don't conflict with externs declared
2101 inside lexical blocks. */
2102 if (t && TREE_CODE (t) == TYPE_DECL)
2103 t = 0;
2104 different_binding_level = 1;
2106 if (t != 0 && t == error_mark_node)
2107 /* error_mark_node is 0 for a while during initialization! */
2109 t = 0;
2110 error_with_decl (x, "`%s' used prior to declaration");
2113 /* If this decl is `static' and an implicit decl was seen previously,
2114 warn. But don't complain if -traditional,
2115 since traditional compilers don't complain. */
2116 if (! flag_traditional && TREE_PUBLIC (name)
2117 /* Don't test for DECL_EXTERNAL, because grokdeclarator
2118 sets this for all functions. */
2119 && ! TREE_PUBLIC (x)
2120 && (TREE_CODE (x) == FUNCTION_DECL || b == global_binding_level)
2121 /* We used to warn also for explicit extern followed by static,
2122 but sometimes you need to do it that way. */
2123 && IDENTIFIER_IMPLICIT_DECL (name) != 0)
2125 pedwarn ("`%s' was declared implicitly `extern' and later `static'",
2126 IDENTIFIER_POINTER (name));
2127 pedwarn_with_file_and_line
2128 (DECL_SOURCE_FILE (IDENTIFIER_IMPLICIT_DECL (name)),
2129 DECL_SOURCE_LINE (IDENTIFIER_IMPLICIT_DECL (name)),
2130 "previous declaration of `%s'",
2131 IDENTIFIER_POINTER (name));
2132 TREE_THIS_VOLATILE (name) = 1;
2135 if (t != 0 && duplicate_decls (x, t, different_binding_level))
2137 if (TREE_CODE (t) == PARM_DECL)
2139 /* Don't allow more than one "real" duplicate
2140 of a forward parm decl. */
2141 TREE_ASM_WRITTEN (t) = TREE_ASM_WRITTEN (x);
2142 return t;
2144 return t;
2147 /* If we are processing a typedef statement, generate a whole new
2148 ..._TYPE node (which will be just an variant of the existing
2149 ..._TYPE node with identical properties) and then install the
2150 TYPE_DECL node generated to represent the typedef name as the
2151 TYPE_NAME of this brand new (duplicate) ..._TYPE node.
2153 The whole point here is to end up with a situation where each
2154 and every ..._TYPE node the compiler creates will be uniquely
2155 associated with AT MOST one node representing a typedef name.
2156 This way, even though the compiler substitutes corresponding
2157 ..._TYPE nodes for TYPE_DECL (i.e. "typedef name") nodes very
2158 early on, later parts of the compiler can always do the reverse
2159 translation and get back the corresponding typedef name. For
2160 example, given:
2162 typedef struct S MY_TYPE;
2163 MY_TYPE object;
2165 Later parts of the compiler might only know that `object' was of
2166 type `struct S' if it were not for code just below. With this
2167 code however, later parts of the compiler see something like:
2169 struct S' == struct S
2170 typedef struct S' MY_TYPE;
2171 struct S' object;
2173 And they can then deduce (from the node for type struct S') that
2174 the original object declaration was:
2176 MY_TYPE object;
2178 Being able to do this is important for proper support of protoize,
2179 and also for generating precise symbolic debugging information
2180 which takes full account of the programmer's (typedef) vocabulary.
2182 Obviously, we don't want to generate a duplicate ..._TYPE node if
2183 the TYPE_DECL node that we are now processing really represents a
2184 standard built-in type.
2186 Since all standard types are effectively declared at line zero
2187 in the source file, we can easily check to see if we are working
2188 on a standard type by checking the current value of lineno. */
2190 if (TREE_CODE (x) == TYPE_DECL)
2192 if (DECL_SOURCE_LINE (x) == 0)
2194 if (TYPE_NAME (TREE_TYPE (x)) == 0)
2195 TYPE_NAME (TREE_TYPE (x)) = x;
2197 else if (TREE_TYPE (x) != error_mark_node
2198 && DECL_ORIGINAL_TYPE (x) == NULL_TREE)
2200 tree tt = TREE_TYPE (x);
2201 DECL_ORIGINAL_TYPE (x) = tt;
2202 tt = build_type_copy (tt);
2203 TYPE_NAME (tt) = x;
2204 TREE_USED (tt) = TREE_USED (x);
2205 TREE_TYPE (x) = tt;
2209 /* Multiple external decls of the same identifier ought to match.
2210 Check against both global declarations (when traditional) and out of
2211 scope (limbo) block level declarations.
2213 We get warnings about inline functions where they are defined.
2214 Avoid duplicate warnings where they are used. */
2215 if (TREE_PUBLIC (x)
2216 && ! (TREE_CODE (x) == FUNCTION_DECL && DECL_INLINE (x)))
2218 tree decl;
2220 if (flag_traditional && IDENTIFIER_GLOBAL_VALUE (name) != 0
2221 && (DECL_EXTERNAL (IDENTIFIER_GLOBAL_VALUE (name))
2222 || TREE_PUBLIC (IDENTIFIER_GLOBAL_VALUE (name))))
2223 decl = IDENTIFIER_GLOBAL_VALUE (name);
2224 else if (IDENTIFIER_LIMBO_VALUE (name) != 0)
2225 /* Decls in limbo are always extern, so no need to check that. */
2226 decl = IDENTIFIER_LIMBO_VALUE (name);
2227 else
2228 decl = 0;
2230 if (decl && ! comptypes (TREE_TYPE (x), TREE_TYPE (decl))
2231 /* If old decl is built-in, we already warned if we should. */
2232 && !DECL_BUILT_IN (decl))
2234 pedwarn_with_decl (x,
2235 "type mismatch with previous external decl");
2236 pedwarn_with_decl (decl, "previous external decl of `%s'");
2240 /* If a function has had an implicit declaration, and then is defined,
2241 make sure they are compatible. */
2243 if (IDENTIFIER_IMPLICIT_DECL (name) != 0
2244 && IDENTIFIER_GLOBAL_VALUE (name) == 0
2245 && TREE_CODE (x) == FUNCTION_DECL
2246 && ! comptypes (TREE_TYPE (x),
2247 TREE_TYPE (IDENTIFIER_IMPLICIT_DECL (name))))
2249 warning_with_decl (x, "type mismatch with previous implicit declaration");
2250 warning_with_decl (IDENTIFIER_IMPLICIT_DECL (name),
2251 "previous implicit declaration of `%s'");
2254 /* In PCC-compatibility mode, extern decls of vars with no current decl
2255 take effect at top level no matter where they are. */
2256 if (flag_traditional && DECL_EXTERNAL (x)
2257 && lookup_name (name) == 0)
2259 tree type = TREE_TYPE (x);
2261 /* But don't do this if the type contains temporary nodes. */
2262 while (type)
2264 if (type == error_mark_node)
2265 break;
2266 if (TYPE_CONTEXT (type))
2268 warning_with_decl (x, "type of external `%s' is not global");
2269 /* By exiting the loop early, we leave TYPE nonzero,
2270 and thus prevent globalization of the decl. */
2271 break;
2273 else if (TREE_CODE (type) == FUNCTION_TYPE
2274 && TYPE_ARG_TYPES (type) != 0)
2275 /* The types might not be truly local,
2276 but the list of arg types certainly is temporary.
2277 Since prototypes are nontraditional,
2278 ok not to do the traditional thing. */
2279 break;
2280 type = TREE_TYPE (type);
2283 if (type == 0)
2284 b = global_binding_level;
2287 /* This name is new in its binding level.
2288 Install the new declaration and return it. */
2289 if (b == global_binding_level)
2291 /* Install a global value. */
2293 /* If the first global decl has external linkage,
2294 warn if we later see static one. */
2295 if (IDENTIFIER_GLOBAL_VALUE (name) == 0 && TREE_PUBLIC (x))
2296 TREE_PUBLIC (name) = 1;
2298 IDENTIFIER_GLOBAL_VALUE (name) = x;
2300 /* We no longer care about any previous block level declarations. */
2301 IDENTIFIER_LIMBO_VALUE (name) = 0;
2303 /* Don't forget if the function was used via an implicit decl. */
2304 if (IDENTIFIER_IMPLICIT_DECL (name)
2305 && TREE_USED (IDENTIFIER_IMPLICIT_DECL (name)))
2306 TREE_USED (x) = 1, TREE_USED (name) = 1;
2308 /* Don't forget if its address was taken in that way. */
2309 if (IDENTIFIER_IMPLICIT_DECL (name)
2310 && TREE_ADDRESSABLE (IDENTIFIER_IMPLICIT_DECL (name)))
2311 TREE_ADDRESSABLE (x) = 1;
2313 /* Warn about mismatches against previous implicit decl. */
2314 if (IDENTIFIER_IMPLICIT_DECL (name) != 0
2315 /* If this real decl matches the implicit, don't complain. */
2316 && ! (TREE_CODE (x) == FUNCTION_DECL
2317 && (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (x)))
2318 == integer_type_node)))
2319 pedwarn ("`%s' was previously implicitly declared to return `int'",
2320 IDENTIFIER_POINTER (name));
2322 /* If this decl is `static' and an `extern' was seen previously,
2323 that is erroneous. */
2324 if (TREE_PUBLIC (name)
2325 && ! TREE_PUBLIC (x) && ! DECL_EXTERNAL (x))
2327 /* Okay to redeclare an ANSI built-in as static. */
2328 if (t != 0 && DECL_BUILT_IN (t))
2330 /* Okay to declare a non-ANSI built-in as anything. */
2331 else if (t != 0 && DECL_BUILT_IN_NONANSI (t))
2333 /* Okay to have global type decl after an earlier extern
2334 declaration inside a lexical block. */
2335 else if (TREE_CODE (x) == TYPE_DECL)
2337 else if (IDENTIFIER_IMPLICIT_DECL (name))
2339 if (! TREE_THIS_VOLATILE (name))
2340 pedwarn ("`%s' was declared implicitly `extern' and later `static'",
2341 IDENTIFIER_POINTER (name));
2343 else
2344 pedwarn ("`%s' was declared `extern' and later `static'",
2345 IDENTIFIER_POINTER (name));
2348 else
2350 /* Here to install a non-global value. */
2351 tree oldlocal = IDENTIFIER_LOCAL_VALUE (name);
2352 tree oldglobal = IDENTIFIER_GLOBAL_VALUE (name);
2354 IDENTIFIER_LOCAL_VALUE (name) = x;
2356 /* If this is an extern function declaration, see if we
2357 have a global definition or declaration for the function. */
2358 if (oldlocal == 0
2359 && oldglobal != 0
2360 && TREE_CODE (x) == FUNCTION_DECL
2361 && TREE_CODE (oldglobal) == FUNCTION_DECL
2362 && DECL_EXTERNAL (x)
2363 && ! DECL_DECLARED_INLINE_P (x))
2365 /* We have one. Their types must agree. */
2366 if (! comptypes (TREE_TYPE (x),
2367 TREE_TYPE (IDENTIFIER_GLOBAL_VALUE (name))))
2368 pedwarn_with_decl (x, "extern declaration of `%s' doesn't match global one");
2369 else
2371 /* Inner extern decl is inline if global one is.
2372 Copy enough to really inline it. */
2373 if (DECL_DECLARED_INLINE_P (oldglobal))
2375 DECL_DECLARED_INLINE_P (x)
2376 = DECL_DECLARED_INLINE_P (oldglobal);
2377 DECL_INLINE (x) = DECL_INLINE (oldglobal);
2378 DECL_INITIAL (x) = (current_function_decl == oldglobal
2379 ? 0 : DECL_INITIAL (oldglobal));
2380 DECL_SAVED_INSNS (x) = DECL_SAVED_INSNS (oldglobal);
2381 DECL_NUM_STMTS (x) = DECL_NUM_STMTS (oldglobal);
2382 DECL_ARGUMENTS (x) = DECL_ARGUMENTS (oldglobal);
2383 DECL_RESULT (x) = DECL_RESULT (oldglobal);
2384 TREE_ASM_WRITTEN (x) = TREE_ASM_WRITTEN (oldglobal);
2385 DECL_ABSTRACT_ORIGIN (x)
2386 = DECL_ABSTRACT_ORIGIN (oldglobal);
2388 /* Inner extern decl is built-in if global one is. */
2389 if (DECL_BUILT_IN (oldglobal))
2391 DECL_BUILT_IN_CLASS (x) = DECL_BUILT_IN_CLASS (oldglobal);
2392 DECL_FUNCTION_CODE (x) = DECL_FUNCTION_CODE (oldglobal);
2394 /* Keep the arg types from a file-scope fcn defn. */
2395 if (TYPE_ARG_TYPES (TREE_TYPE (oldglobal)) != 0
2396 && DECL_INITIAL (oldglobal)
2397 && TYPE_ARG_TYPES (TREE_TYPE (x)) == 0)
2398 TREE_TYPE (x) = TREE_TYPE (oldglobal);
2402 #if 0
2403 /* This case is probably sometimes the right thing to do. */
2404 /* If we have a local external declaration,
2405 then any file-scope declaration should not
2406 have been static. */
2407 if (oldlocal == 0 && oldglobal != 0
2408 && !TREE_PUBLIC (oldglobal)
2409 && DECL_EXTERNAL (x) && TREE_PUBLIC (x))
2410 warning ("`%s' locally external but globally static",
2411 IDENTIFIER_POINTER (name));
2412 #endif
2414 /* If we have a local external declaration,
2415 and no file-scope declaration has yet been seen,
2416 then if we later have a file-scope decl it must not be static. */
2417 if (oldlocal == 0
2418 && DECL_EXTERNAL (x)
2419 && TREE_PUBLIC (x))
2421 if (oldglobal == 0)
2422 TREE_PUBLIC (name) = 1;
2424 /* Save this decl, so that we can do type checking against
2425 other decls after it falls out of scope.
2427 Only save it once. This prevents temporary decls created in
2428 expand_inline_function from being used here, since this
2429 will have been set when the inline function was parsed.
2430 It also helps give slightly better warnings. */
2431 if (IDENTIFIER_LIMBO_VALUE (name) == 0)
2432 IDENTIFIER_LIMBO_VALUE (name) = x;
2435 /* Warn if shadowing an argument at the top level of the body. */
2436 if (oldlocal != 0 && !DECL_EXTERNAL (x)
2437 /* This warning doesn't apply to the parms of a nested fcn. */
2438 && ! current_binding_level->parm_flag
2439 /* Check that this is one level down from the parms. */
2440 && current_binding_level->level_chain->parm_flag
2441 /* Check that the decl being shadowed
2442 comes from the parm level, one level up. */
2443 && chain_member (oldlocal, current_binding_level->level_chain->names))
2445 if (TREE_CODE (oldlocal) == PARM_DECL)
2446 pedwarn ("declaration of `%s' shadows a parameter",
2447 IDENTIFIER_POINTER (name));
2448 else
2449 pedwarn ("declaration of `%s' shadows a symbol from the parameter list",
2450 IDENTIFIER_POINTER (name));
2453 /* Maybe warn if shadowing something else. */
2454 else if (warn_shadow && !DECL_EXTERNAL (x)
2455 /* No shadow warnings for internally generated vars. */
2456 && DECL_SOURCE_LINE (x) != 0
2457 /* No shadow warnings for vars made for inlining. */
2458 && ! DECL_FROM_INLINE (x))
2460 const char *id = IDENTIFIER_POINTER (name);
2462 if (TREE_CODE (x) == PARM_DECL
2463 && current_binding_level->level_chain->parm_flag)
2464 /* Don't warn about the parm names in function declarator
2465 within a function declarator.
2466 It would be nice to avoid warning in any function
2467 declarator in a declaration, as opposed to a definition,
2468 but there is no way to tell it's not a definition. */
2470 else if (oldlocal != 0 && TREE_CODE (oldlocal) == PARM_DECL)
2471 warning ("declaration of `%s' shadows a parameter", id);
2472 else if (oldlocal != 0)
2473 warning ("declaration of `%s' shadows previous local", id);
2474 else if (IDENTIFIER_GLOBAL_VALUE (name) != 0
2475 && IDENTIFIER_GLOBAL_VALUE (name) != error_mark_node)
2476 warning ("declaration of `%s' shadows global declaration", id);
2479 /* If storing a local value, there may already be one (inherited).
2480 If so, record it for restoration when this binding level ends. */
2481 if (oldlocal != 0)
2482 b->shadowed = tree_cons (name, oldlocal, b->shadowed);
2485 /* Keep count of variables in this level with incomplete type.
2486 If the input is erroneous, we can have error_mark in the type
2487 slot (e.g. "f(void a, ...)") - that doesn't count as an
2488 incomplete type. */
2489 if (TREE_TYPE (x) != error_mark_node
2490 && !COMPLETE_TYPE_P (TREE_TYPE (x)))
2491 ++b->n_incomplete;
2494 /* Put decls on list in reverse order.
2495 We will reverse them later if necessary. */
2496 TREE_CHAIN (x) = b->names;
2497 b->names = x;
2499 return x;
2502 /* Like pushdecl, only it places X in GLOBAL_BINDING_LEVEL, if appropriate. */
2504 tree
2505 pushdecl_top_level (x)
2506 tree x;
2508 tree t;
2509 struct binding_level *b = current_binding_level;
2511 current_binding_level = global_binding_level;
2512 t = pushdecl (x);
2513 current_binding_level = b;
2514 return t;
2517 /* Generate an implicit declaration for identifier FUNCTIONID
2518 as a function of type int (). Print a warning if appropriate. */
2520 tree
2521 implicitly_declare (functionid)
2522 tree functionid;
2524 tree decl;
2525 int traditional_warning = 0;
2526 /* Only one "implicit declaration" warning per identifier. */
2527 int implicit_warning;
2529 /* We used to reuse an old implicit decl here,
2530 but this loses with inline functions because it can clobber
2531 the saved decl chains. */
2532 #if 0
2533 if (IDENTIFIER_IMPLICIT_DECL (functionid) != 0)
2534 decl = IDENTIFIER_IMPLICIT_DECL (functionid);
2535 else
2536 #endif
2537 decl = build_decl (FUNCTION_DECL, functionid, default_function_type);
2539 /* Warn of implicit decl following explicit local extern decl.
2540 This is probably a program designed for traditional C. */
2541 if (TREE_PUBLIC (functionid) && IDENTIFIER_GLOBAL_VALUE (functionid) == 0)
2542 traditional_warning = 1;
2544 /* Warn once of an implicit declaration. */
2545 implicit_warning = (IDENTIFIER_IMPLICIT_DECL (functionid) == 0);
2547 DECL_EXTERNAL (decl) = 1;
2548 TREE_PUBLIC (decl) = 1;
2550 /* Record that we have an implicit decl and this is it. */
2551 IDENTIFIER_IMPLICIT_DECL (functionid) = decl;
2553 /* ANSI standard says implicit declarations are in the innermost block.
2554 So we record the decl in the standard fashion.
2555 If flag_traditional is set, pushdecl does it top-level. */
2556 pushdecl (decl);
2558 /* This is a no-op in c-lang.c or something real in objc-actions.c. */
2559 maybe_objc_check_decl (decl);
2561 rest_of_decl_compilation (decl, NULL, 0, 0);
2563 if (implicit_warning)
2564 implicit_decl_warning (functionid);
2565 else if (warn_traditional && traditional_warning)
2566 warning ("function `%s' was previously declared within a block",
2567 IDENTIFIER_POINTER (functionid));
2569 /* Write a record describing this implicit function declaration to the
2570 prototypes file (if requested). */
2572 gen_aux_info_record (decl, 0, 1, 0);
2574 /* Possibly apply some default attributes to this implicit declaration. */
2575 decl_attributes (&decl, NULL_TREE, 0);
2577 return decl;
2580 void
2581 implicit_decl_warning (id)
2582 tree id;
2584 const char *name = IDENTIFIER_POINTER (id);
2585 if (mesg_implicit_function_declaration == 2)
2586 error ("implicit declaration of function `%s'", name);
2587 else if (mesg_implicit_function_declaration == 1)
2588 warning ("implicit declaration of function `%s'", name);
2591 /* Return zero if the declaration NEWDECL is valid
2592 when the declaration OLDDECL (assumed to be for the same name)
2593 has already been seen.
2594 Otherwise return 1 if NEWDECL is a redefinition, 2 if it is a redeclaration,
2595 and 3 if it is a conflicting declaration. */
2597 static int
2598 redeclaration_error_message (newdecl, olddecl)
2599 tree newdecl, olddecl;
2601 if (TREE_CODE (newdecl) == TYPE_DECL)
2603 if (flag_traditional && TREE_TYPE (newdecl) == TREE_TYPE (olddecl))
2604 return 0;
2605 /* pushdecl creates distinct types for TYPE_DECLs by calling
2606 build_type_copy, so the above comparison generally fails. We do
2607 another test against the TYPE_MAIN_VARIANT of the olddecl, which
2608 is equivalent to what this code used to do before the build_type_copy
2609 call. The variant type distinction should not matter for traditional
2610 code, because it doesn't have type qualifiers. */
2611 if (flag_traditional
2612 && TYPE_MAIN_VARIANT (TREE_TYPE (olddecl)) == TREE_TYPE (newdecl))
2613 return 0;
2614 if (DECL_IN_SYSTEM_HEADER (olddecl) || DECL_IN_SYSTEM_HEADER (newdecl))
2615 return 0;
2616 return 1;
2618 else if (TREE_CODE (newdecl) == FUNCTION_DECL)
2620 /* Declarations of functions can insist on internal linkage
2621 but they can't be inconsistent with internal linkage,
2622 so there can be no error on that account.
2623 However defining the same name twice is no good. */
2624 if (DECL_INITIAL (olddecl) != 0 && DECL_INITIAL (newdecl) != 0
2625 /* However, defining once as extern inline and a second
2626 time in another way is ok. */
2627 && ! (DECL_DECLARED_INLINE_P (olddecl) && DECL_EXTERNAL (olddecl)
2628 && ! (DECL_DECLARED_INLINE_P (newdecl)
2629 && DECL_EXTERNAL (newdecl))))
2630 return 1;
2631 return 0;
2633 else if (DECL_CONTEXT (newdecl) == NULL_TREE)
2635 /* Objects declared at top level: */
2636 /* If at least one is a reference, it's ok. */
2637 if (DECL_EXTERNAL (newdecl) || DECL_EXTERNAL (olddecl))
2638 return 0;
2639 /* Reject two definitions. */
2640 if (DECL_INITIAL (olddecl) != 0 && DECL_INITIAL (newdecl) != 0)
2641 return 1;
2642 /* Now we have two tentative defs, or one tentative and one real def. */
2643 /* Insist that the linkage match. */
2644 if (TREE_PUBLIC (olddecl) != TREE_PUBLIC (newdecl))
2645 return 3;
2646 return 0;
2648 else if (current_binding_level->parm_flag
2649 && TREE_ASM_WRITTEN (olddecl) && !TREE_ASM_WRITTEN (newdecl))
2650 return 0;
2651 else
2653 /* Newdecl has block scope. If olddecl has block scope also, then
2654 reject two definitions, and reject a definition together with an
2655 external reference. Otherwise, it is OK, because newdecl must
2656 be an extern reference to olddecl. */
2657 if (!(DECL_EXTERNAL (newdecl) && DECL_EXTERNAL (olddecl))
2658 && DECL_CONTEXT (newdecl) == DECL_CONTEXT (olddecl))
2659 return 2;
2660 return 0;
2664 /* Get the LABEL_DECL corresponding to identifier ID as a label.
2665 Create one if none exists so far for the current function.
2666 This function is called for both label definitions and label references. */
2668 tree
2669 lookup_label (id)
2670 tree id;
2672 tree decl = IDENTIFIER_LABEL_VALUE (id);
2674 if (current_function_decl == 0)
2676 error ("label %s referenced outside of any function",
2677 IDENTIFIER_POINTER (id));
2678 return 0;
2681 /* Use a label already defined or ref'd with this name. */
2682 if (decl != 0)
2684 /* But not if it is inherited and wasn't declared to be inheritable. */
2685 if (DECL_CONTEXT (decl) != current_function_decl
2686 && ! C_DECLARED_LABEL_FLAG (decl))
2687 return shadow_label (id);
2688 return decl;
2691 decl = build_decl (LABEL_DECL, id, void_type_node);
2693 /* A label not explicitly declared must be local to where it's ref'd. */
2694 DECL_CONTEXT (decl) = current_function_decl;
2696 DECL_MODE (decl) = VOIDmode;
2698 /* Say where one reference is to the label,
2699 for the sake of the error if it is not defined. */
2700 DECL_SOURCE_LINE (decl) = lineno;
2701 DECL_SOURCE_FILE (decl) = input_filename;
2703 IDENTIFIER_LABEL_VALUE (id) = decl;
2705 named_labels = tree_cons (NULL_TREE, decl, named_labels);
2707 return decl;
2710 /* Make a label named NAME in the current function,
2711 shadowing silently any that may be inherited from containing functions
2712 or containing scopes.
2714 Note that valid use, if the label being shadowed
2715 comes from another scope in the same function,
2716 requires calling declare_nonlocal_label right away. */
2718 tree
2719 shadow_label (name)
2720 tree name;
2722 tree decl = IDENTIFIER_LABEL_VALUE (name);
2724 if (decl != 0)
2726 tree dup;
2728 /* Check to make sure that the label hasn't already been declared
2729 at this label scope */
2730 for (dup = named_labels; dup; dup = TREE_CHAIN (dup))
2731 if (TREE_VALUE (dup) == decl)
2733 error ("duplicate label declaration `%s'",
2734 IDENTIFIER_POINTER (name));
2735 error_with_decl (TREE_VALUE (dup),
2736 "this is a previous declaration");
2737 /* Just use the previous declaration. */
2738 return lookup_label (name);
2741 shadowed_labels = tree_cons (NULL_TREE, decl, shadowed_labels);
2742 IDENTIFIER_LABEL_VALUE (name) = decl = 0;
2745 return lookup_label (name);
2748 /* Define a label, specifying the location in the source file.
2749 Return the LABEL_DECL node for the label, if the definition is valid.
2750 Otherwise return 0. */
2752 tree
2753 define_label (filename, line, name)
2754 const char *filename;
2755 int line;
2756 tree name;
2758 tree decl = lookup_label (name);
2760 /* If label with this name is known from an outer context, shadow it. */
2761 if (decl != 0 && DECL_CONTEXT (decl) != current_function_decl)
2763 shadowed_labels = tree_cons (NULL_TREE, decl, shadowed_labels);
2764 IDENTIFIER_LABEL_VALUE (name) = 0;
2765 decl = lookup_label (name);
2768 if (warn_traditional && !in_system_header && lookup_name (name))
2769 warning_with_file_and_line (filename, line,
2770 "traditional C lacks a separate namespace for labels, identifier `%s' conflicts",
2771 IDENTIFIER_POINTER (name));
2773 if (DECL_INITIAL (decl) != 0)
2775 error_with_file_and_line (filename, line, "duplicate label `%s'",
2776 IDENTIFIER_POINTER (name));
2777 return 0;
2779 else
2781 /* Mark label as having been defined. */
2782 DECL_INITIAL (decl) = error_mark_node;
2783 /* Say where in the source. */
2784 DECL_SOURCE_FILE (decl) = filename;
2785 DECL_SOURCE_LINE (decl) = line;
2786 return decl;
2790 /* Return the list of declarations of the current level.
2791 Note that this list is in reverse order unless/until
2792 you nreverse it; and when you do nreverse it, you must
2793 store the result back using `storedecls' or you will lose. */
2795 tree
2796 getdecls ()
2798 return current_binding_level->names;
2801 /* Return the list of type-tags (for structs, etc) of the current level. */
2803 tree
2804 gettags ()
2806 return current_binding_level->tags;
2809 /* Store the list of declarations of the current level.
2810 This is done for the parameter declarations of a function being defined,
2811 after they are modified in the light of any missing parameters. */
2813 static void
2814 storedecls (decls)
2815 tree decls;
2817 current_binding_level->names = decls;
2820 /* Similarly, store the list of tags of the current level. */
2822 static void
2823 storetags (tags)
2824 tree tags;
2826 current_binding_level->tags = tags;
2829 /* Given NAME, an IDENTIFIER_NODE,
2830 return the structure (or union or enum) definition for that name.
2831 Searches binding levels from BINDING_LEVEL up to the global level.
2832 If THISLEVEL_ONLY is nonzero, searches only the specified context
2833 (but skips any tag-transparent contexts to find one that is
2834 meaningful for tags).
2835 CODE says which kind of type the caller wants;
2836 it is RECORD_TYPE or UNION_TYPE or ENUMERAL_TYPE.
2837 If the wrong kind of type is found, an error is reported. */
2839 static tree
2840 lookup_tag (code, name, binding_level, thislevel_only)
2841 enum tree_code code;
2842 struct binding_level *binding_level;
2843 tree name;
2844 int thislevel_only;
2846 struct binding_level *level;
2847 int thislevel = 1;
2849 for (level = binding_level; level; level = level->level_chain)
2851 tree tail;
2852 for (tail = level->tags; tail; tail = TREE_CHAIN (tail))
2854 if (TREE_PURPOSE (tail) == name)
2856 if (TREE_CODE (TREE_VALUE (tail)) != code)
2858 /* Definition isn't the kind we were looking for. */
2859 pending_invalid_xref = name;
2860 pending_invalid_xref_file = input_filename;
2861 pending_invalid_xref_line = lineno;
2862 /* If in the same binding level as a declaration as a tag
2863 of a different type, this must not be allowed to
2864 shadow that tag, so give the error immediately.
2865 (For example, "struct foo; union foo;" is invalid.) */
2866 if (thislevel)
2867 pending_xref_error ();
2869 return TREE_VALUE (tail);
2872 if (! level->tag_transparent)
2874 if (thislevel_only)
2875 return NULL_TREE;
2876 thislevel = 0;
2879 return NULL_TREE;
2882 /* Print an error message now
2883 for a recent invalid struct, union or enum cross reference.
2884 We don't print them immediately because they are not invalid
2885 when used in the `struct foo;' construct for shadowing. */
2887 void
2888 pending_xref_error ()
2890 if (pending_invalid_xref != 0)
2891 error_with_file_and_line (pending_invalid_xref_file,
2892 pending_invalid_xref_line,
2893 "`%s' defined as wrong kind of tag",
2894 IDENTIFIER_POINTER (pending_invalid_xref));
2895 pending_invalid_xref = 0;
2898 /* Given a type, find the tag that was defined for it and return the tag name.
2899 Otherwise return 0. */
2901 static tree
2902 lookup_tag_reverse (type)
2903 tree type;
2905 struct binding_level *level;
2907 for (level = current_binding_level; level; level = level->level_chain)
2909 tree tail;
2910 for (tail = level->tags; tail; tail = TREE_CHAIN (tail))
2912 if (TREE_VALUE (tail) == type)
2913 return TREE_PURPOSE (tail);
2916 return NULL_TREE;
2919 /* Look up NAME in the current binding level and its superiors
2920 in the namespace of variables, functions and typedefs.
2921 Return a ..._DECL node of some kind representing its definition,
2922 or return 0 if it is undefined. */
2924 tree
2925 lookup_name (name)
2926 tree name;
2928 tree val;
2930 if (current_binding_level != global_binding_level
2931 && IDENTIFIER_LOCAL_VALUE (name))
2932 val = IDENTIFIER_LOCAL_VALUE (name);
2933 else
2934 val = IDENTIFIER_GLOBAL_VALUE (name);
2935 return val;
2938 /* Similar to `lookup_name' but look only at current binding level. */
2940 tree
2941 lookup_name_current_level (name)
2942 tree name;
2944 tree t;
2946 if (current_binding_level == global_binding_level)
2947 return IDENTIFIER_GLOBAL_VALUE (name);
2949 if (IDENTIFIER_LOCAL_VALUE (name) == 0)
2950 return 0;
2952 for (t = current_binding_level->names; t; t = TREE_CHAIN (t))
2953 if (DECL_NAME (t) == name)
2954 break;
2956 return t;
2959 /* Mark ARG for GC. */
2961 static void
2962 mark_binding_level (arg)
2963 void *arg;
2965 struct binding_level *level = *(struct binding_level **) arg;
2967 for (; level != 0; level = level->level_chain)
2969 ggc_mark_tree (level->names);
2970 ggc_mark_tree (level->tags);
2971 ggc_mark_tree (level->shadowed);
2972 ggc_mark_tree (level->blocks);
2973 ggc_mark_tree (level->this_block);
2974 ggc_mark_tree (level->parm_order);
2978 /* Create the predefined scalar types of C,
2979 and some nodes representing standard constants (0, 1, (void *) 0).
2980 Initialize the global binding level.
2981 Make definitions for built-in primitive functions. */
2983 void
2984 c_init_decl_processing ()
2986 tree endlink;
2987 tree ptr_ftype_void, ptr_ftype_ptr;
2989 /* Adds some ggc roots, and reserved words for c-parse.in. */
2990 c_parse_init ();
2992 current_function_decl = NULL;
2993 named_labels = NULL;
2994 current_binding_level = NULL_BINDING_LEVEL;
2995 free_binding_level = NULL_BINDING_LEVEL;
2997 /* Make the binding_level structure for global names. */
2998 pushlevel (0);
2999 global_binding_level = current_binding_level;
3001 build_common_tree_nodes (flag_signed_char);
3003 c_common_nodes_and_builtins ();
3005 boolean_type_node = integer_type_node;
3006 boolean_true_node = integer_one_node;
3007 boolean_false_node = integer_zero_node;
3009 /* With GCC, C99's _Bool is always of size 1. */
3010 c_bool_type_node = make_unsigned_type (CHAR_TYPE_SIZE);
3011 TREE_SET_CODE (c_bool_type_node, BOOLEAN_TYPE);
3012 TYPE_MAX_VALUE (c_bool_type_node) = build_int_2 (1, 0);
3013 TREE_TYPE (TYPE_MAX_VALUE (c_bool_type_node)) = c_bool_type_node;
3014 TYPE_PRECISION (c_bool_type_node) = 1;
3015 pushdecl (build_decl (TYPE_DECL, get_identifier ("_Bool"),
3016 c_bool_type_node));
3017 c_bool_false_node = build_int_2 (0, 0);
3018 TREE_TYPE (c_bool_false_node) = c_bool_type_node;
3019 c_bool_true_node = build_int_2 (1, 0);
3020 TREE_TYPE (c_bool_true_node) = c_bool_type_node;
3022 endlink = void_list_node;
3023 ptr_ftype_void = build_function_type (ptr_type_node, endlink);
3024 ptr_ftype_ptr
3025 = build_function_type (ptr_type_node,
3026 tree_cons (NULL_TREE, ptr_type_node, endlink));
3028 /* Types which are common to the fortran compiler and libf2c. When
3029 changing these, you also need to be concerned with f/com.h. */
3031 if (TYPE_PRECISION (float_type_node)
3032 == TYPE_PRECISION (long_integer_type_node))
3034 g77_integer_type_node = long_integer_type_node;
3035 g77_uinteger_type_node = long_unsigned_type_node;
3037 else if (TYPE_PRECISION (float_type_node)
3038 == TYPE_PRECISION (integer_type_node))
3040 g77_integer_type_node = integer_type_node;
3041 g77_uinteger_type_node = unsigned_type_node;
3043 else
3044 g77_integer_type_node = g77_uinteger_type_node = NULL_TREE;
3046 if (g77_integer_type_node != NULL_TREE)
3048 pushdecl (build_decl (TYPE_DECL, get_identifier ("__g77_integer"),
3049 g77_integer_type_node));
3050 pushdecl (build_decl (TYPE_DECL, get_identifier ("__g77_uinteger"),
3051 g77_uinteger_type_node));
3054 if (TYPE_PRECISION (float_type_node) * 2
3055 == TYPE_PRECISION (long_integer_type_node))
3057 g77_longint_type_node = long_integer_type_node;
3058 g77_ulongint_type_node = long_unsigned_type_node;
3060 else if (TYPE_PRECISION (float_type_node) * 2
3061 == TYPE_PRECISION (long_long_integer_type_node))
3063 g77_longint_type_node = long_long_integer_type_node;
3064 g77_ulongint_type_node = long_long_unsigned_type_node;
3066 else
3067 g77_longint_type_node = g77_ulongint_type_node = NULL_TREE;
3069 if (g77_longint_type_node != NULL_TREE)
3071 pushdecl (build_decl (TYPE_DECL, get_identifier ("__g77_longint"),
3072 g77_longint_type_node));
3073 pushdecl (build_decl (TYPE_DECL, get_identifier ("__g77_ulongint"),
3074 g77_ulongint_type_node));
3077 pedantic_lvalues = pedantic;
3079 make_fname_decl = c_make_fname_decl;
3080 start_fname_decls ();
3082 incomplete_decl_finalize_hook = finish_incomplete_decl;
3084 /* Record our roots. */
3086 ggc_add_tree_root (c_global_trees, CTI_MAX);
3087 ggc_add_root (&c_stmt_tree, 1, sizeof c_stmt_tree, mark_stmt_tree);
3088 ggc_add_tree_root (&c_scope_stmt_stack, 1);
3089 ggc_add_tree_root (&named_labels, 1);
3090 ggc_add_tree_root (&shadowed_labels, 1);
3091 ggc_add_root (&current_binding_level, 1, sizeof current_binding_level,
3092 mark_binding_level);
3093 ggc_add_root (&label_level_chain, 1, sizeof label_level_chain,
3094 mark_binding_level);
3095 ggc_add_tree_root (&static_ctors, 1);
3096 ggc_add_tree_root (&static_dtors, 1);
3099 /* Create the VAR_DECL for __FUNCTION__ etc. ID is the name to give the
3100 decl, NAME is the initialization string and TYPE_DEP indicates whether
3101 NAME depended on the type of the function. As we don't yet implement
3102 delayed emission of static data, we mark the decl as emitted
3103 so it is not placed in the output. Anything using it must therefore pull
3104 out the STRING_CST initializer directly. This does mean that these names
3105 are string merging candidates, which is wrong for C99's __func__. FIXME. */
3107 static tree
3108 c_make_fname_decl (id, type_dep)
3109 tree id;
3110 int type_dep;
3112 const char *name = fname_as_string (type_dep);
3113 tree decl, type, init;
3114 size_t length = strlen (name);
3116 type = build_array_type
3117 (build_qualified_type (char_type_node, TYPE_QUAL_CONST),
3118 build_index_type (size_int (length)));
3120 decl = build_decl (VAR_DECL, id, type);
3121 /* We don't push the decl, so have to set its context here. */
3122 DECL_CONTEXT (decl) = current_function_decl;
3124 TREE_STATIC (decl) = 1;
3125 TREE_READONLY (decl) = 1;
3126 DECL_ARTIFICIAL (decl) = 1;
3128 init = build_string (length + 1, name);
3129 TREE_TYPE (init) = type;
3130 DECL_INITIAL (decl) = init;
3132 TREE_USED (decl) = 1;
3134 finish_decl (decl, init, NULL_TREE);
3136 return decl;
3139 /* Return a definition for a builtin function named NAME and whose data type
3140 is TYPE. TYPE should be a function type with argument types.
3141 FUNCTION_CODE tells later passes how to compile calls to this function.
3142 See tree.h for its possible values.
3144 If LIBRARY_NAME is nonzero, use that for DECL_ASSEMBLER_NAME,
3145 the name to be called if we can't opencode the function. */
3147 tree
3148 builtin_function (name, type, function_code, class, library_name)
3149 const char *name;
3150 tree type;
3151 int function_code;
3152 enum built_in_class class;
3153 const char *library_name;
3155 tree decl = build_decl (FUNCTION_DECL, get_identifier (name), type);
3156 DECL_EXTERNAL (decl) = 1;
3157 TREE_PUBLIC (decl) = 1;
3158 /* If -traditional, permit redefining a builtin function any way you like.
3159 (Though really, if the program redefines these functions,
3160 it probably won't work right unless compiled with -fno-builtin.) */
3161 if (flag_traditional && name[0] != '_')
3162 DECL_BUILT_IN_NONANSI (decl) = 1;
3163 if (library_name)
3164 SET_DECL_ASSEMBLER_NAME (decl, get_identifier (library_name));
3165 make_decl_rtl (decl, NULL);
3166 pushdecl (decl);
3167 DECL_BUILT_IN_CLASS (decl) = class;
3168 DECL_FUNCTION_CODE (decl) = function_code;
3170 /* Warn if a function in the namespace for users
3171 is used without an occasion to consider it declared. */
3172 if (name[0] != '_' || name[1] != '_')
3173 C_DECL_ANTICIPATED (decl) = 1;
3175 /* Possibly apply some default attributes to this built-in function. */
3176 decl_attributes (&decl, NULL_TREE, 0);
3178 return decl;
3181 /* Apply default attributes to a function, if a system function with default
3182 attributes. */
3184 void
3185 insert_default_attributes (decl)
3186 tree decl;
3188 if (!TREE_PUBLIC (decl))
3189 return;
3190 c_common_insert_default_attributes (decl);
3193 /* Called when a declaration is seen that contains no names to declare.
3194 If its type is a reference to a structure, union or enum inherited
3195 from a containing scope, shadow that tag name for the current scope
3196 with a forward reference.
3197 If its type defines a new named structure or union
3198 or defines an enum, it is valid but we need not do anything here.
3199 Otherwise, it is an error. */
3201 void
3202 shadow_tag (declspecs)
3203 tree declspecs;
3205 shadow_tag_warned (declspecs, 0);
3208 void
3209 shadow_tag_warned (declspecs, warned)
3210 tree declspecs;
3211 int warned;
3212 /* 1 => we have done a pedwarn. 2 => we have done a warning, but
3213 no pedwarn. */
3215 int found_tag = 0;
3216 tree link;
3217 tree specs, attrs;
3219 pending_invalid_xref = 0;
3221 /* Remove the attributes from declspecs, since they will confuse the
3222 following code. */
3223 split_specs_attrs (declspecs, &specs, &attrs);
3225 for (link = specs; link; link = TREE_CHAIN (link))
3227 tree value = TREE_VALUE (link);
3228 enum tree_code code = TREE_CODE (value);
3230 if (code == RECORD_TYPE || code == UNION_TYPE || code == ENUMERAL_TYPE)
3231 /* Used to test also that TYPE_SIZE (value) != 0.
3232 That caused warning for `struct foo;' at top level in the file. */
3234 tree name = lookup_tag_reverse (value);
3235 tree t;
3237 found_tag++;
3239 if (name == 0)
3241 if (warned != 1 && code != ENUMERAL_TYPE)
3242 /* Empty unnamed enum OK */
3244 pedwarn ("unnamed struct/union that defines no instances");
3245 warned = 1;
3248 else
3250 t = lookup_tag (code, name, current_binding_level, 1);
3252 if (t == 0)
3254 t = make_node (code);
3255 pushtag (name, t);
3259 else
3261 if (!warned && ! in_system_header)
3263 warning ("useless keyword or type name in empty declaration");
3264 warned = 2;
3269 if (found_tag > 1)
3270 error ("two types specified in one empty declaration");
3272 if (warned != 1)
3274 if (found_tag == 0)
3275 pedwarn ("empty declaration");
3279 /* Construct an array declarator. EXPR is the expression inside [], or
3280 NULL_TREE. QUALS are the type qualifiers inside the [] (to be applied
3281 to the pointer to which a parameter array is converted). STATIC_P is
3282 non-zero if "static" is inside the [], zero otherwise. VLA_UNSPEC_P
3283 is non-zero is the array is [*], a VLA of unspecified length which is
3284 nevertheless a complete type (not currently implemented by GCC),
3285 zero otherwise. The declarator is constructed as an ARRAY_REF
3286 (to be decoded by grokdeclarator), whose operand 0 is what's on the
3287 left of the [] (filled by in set_array_declarator_type) and operand 1
3288 is the expression inside; whose TREE_TYPE is the type qualifiers and
3289 which has TREE_STATIC set if "static" is used. */
3291 tree
3292 build_array_declarator (expr, quals, static_p, vla_unspec_p)
3293 tree expr;
3294 tree quals;
3295 int static_p;
3296 int vla_unspec_p;
3298 tree decl;
3299 decl = build_nt (ARRAY_REF, NULL_TREE, expr);
3300 TREE_TYPE (decl) = quals;
3301 TREE_STATIC (decl) = (static_p ? 1 : 0);
3302 if (pedantic && !flag_isoc99)
3304 if (static_p || quals != NULL_TREE)
3305 pedwarn ("ISO C89 does not support `static' or type qualifiers in parameter array declarators");
3306 if (vla_unspec_p)
3307 pedwarn ("ISO C89 does not support `[*]' array declarators");
3309 if (vla_unspec_p)
3310 warning ("GCC does not yet properly implement `[*]' array declarators");
3311 return decl;
3314 /* Set the type of an array declarator. DECL is the declarator, as
3315 constructed by build_array_declarator; TYPE is what appears on the left
3316 of the [] and goes in operand 0. ABSTRACT_P is non-zero if it is an
3317 abstract declarator, zero otherwise; this is used to reject static and
3318 type qualifiers in abstract declarators, where they are not in the
3319 C99 grammar. */
3321 tree
3322 set_array_declarator_type (decl, type, abstract_p)
3323 tree decl;
3324 tree type;
3325 int abstract_p;
3327 TREE_OPERAND (decl, 0) = type;
3328 if (abstract_p && (TREE_TYPE (decl) != NULL_TREE || TREE_STATIC (decl)))
3329 error ("static or type qualifiers in abstract declarator");
3330 return decl;
3333 /* Decode a "typename", such as "int **", returning a ..._TYPE node. */
3335 tree
3336 groktypename (typename)
3337 tree typename;
3339 if (TREE_CODE (typename) != TREE_LIST)
3340 return typename;
3341 return grokdeclarator (TREE_VALUE (typename),
3342 TREE_PURPOSE (typename),
3343 TYPENAME, 0);
3346 /* Return a PARM_DECL node for a given pair of specs and declarator. */
3348 tree
3349 groktypename_in_parm_context (typename)
3350 tree typename;
3352 if (TREE_CODE (typename) != TREE_LIST)
3353 return typename;
3354 return grokdeclarator (TREE_VALUE (typename),
3355 TREE_PURPOSE (typename),
3356 PARM, 0);
3359 /* Decode a declarator in an ordinary declaration or data definition.
3360 This is called as soon as the type information and variable name
3361 have been parsed, before parsing the initializer if any.
3362 Here we create the ..._DECL node, fill in its type,
3363 and put it on the list of decls for the current context.
3364 The ..._DECL node is returned as the value.
3366 Exception: for arrays where the length is not specified,
3367 the type is left null, to be filled in by `finish_decl'.
3369 Function definitions do not come here; they go to start_function
3370 instead. However, external and forward declarations of functions
3371 do go through here. Structure field declarations are done by
3372 grokfield and not through here. */
3374 tree
3375 start_decl (declarator, declspecs, initialized, attributes)
3376 tree declarator, declspecs;
3377 int initialized;
3378 tree attributes;
3380 tree decl = grokdeclarator (declarator, declspecs,
3381 NORMAL, initialized);
3382 tree tem;
3384 if (warn_main > 0 && TREE_CODE (decl) != FUNCTION_DECL
3385 && MAIN_NAME_P (DECL_NAME (decl)))
3386 warning_with_decl (decl, "`%s' is usually a function");
3388 if (initialized)
3389 /* Is it valid for this decl to have an initializer at all?
3390 If not, set INITIALIZED to zero, which will indirectly
3391 tell `finish_decl' to ignore the initializer once it is parsed. */
3392 switch (TREE_CODE (decl))
3394 case TYPE_DECL:
3395 /* typedef foo = bar means give foo the same type as bar.
3396 We haven't parsed bar yet, so `finish_decl' will fix that up.
3397 Any other case of an initialization in a TYPE_DECL is an error. */
3398 if (pedantic || list_length (declspecs) > 1)
3400 error ("typedef `%s' is initialized",
3401 IDENTIFIER_POINTER (DECL_NAME (decl)));
3402 initialized = 0;
3404 break;
3406 case FUNCTION_DECL:
3407 error ("function `%s' is initialized like a variable",
3408 IDENTIFIER_POINTER (DECL_NAME (decl)));
3409 initialized = 0;
3410 break;
3412 case PARM_DECL:
3413 /* DECL_INITIAL in a PARM_DECL is really DECL_ARG_TYPE. */
3414 error ("parameter `%s' is initialized",
3415 IDENTIFIER_POINTER (DECL_NAME (decl)));
3416 initialized = 0;
3417 break;
3419 default:
3420 /* Don't allow initializations for incomplete types
3421 except for arrays which might be completed by the initialization. */
3423 /* This can happen if the array size is an undefined macro. We already
3424 gave a warning, so we don't need another one. */
3425 if (TREE_TYPE (decl) == error_mark_node)
3426 initialized = 0;
3427 else if (COMPLETE_TYPE_P (TREE_TYPE (decl)))
3429 /* A complete type is ok if size is fixed. */
3431 if (TREE_CODE (TYPE_SIZE (TREE_TYPE (decl))) != INTEGER_CST
3432 || C_DECL_VARIABLE_SIZE (decl))
3434 error ("variable-sized object may not be initialized");
3435 initialized = 0;
3438 else if (TREE_CODE (TREE_TYPE (decl)) != ARRAY_TYPE)
3440 error ("variable `%s' has initializer but incomplete type",
3441 IDENTIFIER_POINTER (DECL_NAME (decl)));
3442 initialized = 0;
3444 else if (!COMPLETE_TYPE_P (TREE_TYPE (TREE_TYPE (decl))))
3446 error ("elements of array `%s' have incomplete type",
3447 IDENTIFIER_POINTER (DECL_NAME (decl)));
3448 initialized = 0;
3452 if (initialized)
3454 #if 0
3455 /* Seems redundant with grokdeclarator. */
3456 if (current_binding_level != global_binding_level
3457 && DECL_EXTERNAL (decl)
3458 && TREE_CODE (decl) != FUNCTION_DECL)
3459 warning ("declaration of `%s' has `extern' and is initialized",
3460 IDENTIFIER_POINTER (DECL_NAME (decl)));
3461 #endif
3462 DECL_EXTERNAL (decl) = 0;
3463 if (current_binding_level == global_binding_level)
3464 TREE_STATIC (decl) = 1;
3466 /* Tell `pushdecl' this is an initialized decl
3467 even though we don't yet have the initializer expression.
3468 Also tell `finish_decl' it may store the real initializer. */
3469 DECL_INITIAL (decl) = error_mark_node;
3472 /* If this is a function declaration, write a record describing it to the
3473 prototypes file (if requested). */
3475 if (TREE_CODE (decl) == FUNCTION_DECL)
3476 gen_aux_info_record (decl, 0, 0, TYPE_ARG_TYPES (TREE_TYPE (decl)) != 0);
3478 /* ANSI specifies that a tentative definition which is not merged with
3479 a non-tentative definition behaves exactly like a definition with an
3480 initializer equal to zero. (Section 3.7.2)
3481 -fno-common gives strict ANSI behavior. Usually you don't want it.
3482 This matters only for variables with external linkage. */
3483 if (! flag_no_common || ! TREE_PUBLIC (decl))
3484 DECL_COMMON (decl) = 1;
3486 /* Set attributes here so if duplicate decl, will have proper attributes. */
3487 decl_attributes (&decl, attributes, 0);
3489 if (TREE_CODE (decl) == FUNCTION_DECL
3490 && DECL_DECLARED_INLINE_P (decl)
3491 && DECL_UNINLINABLE (decl)
3492 && lookup_attribute ("noinline", DECL_ATTRIBUTES (decl)))
3493 warning_with_decl (decl,
3494 "inline function `%s' given attribute noinline");
3496 /* Add this decl to the current binding level.
3497 TEM may equal DECL or it may be a previous decl of the same name. */
3498 tem = pushdecl (decl);
3500 /* For a local variable, define the RTL now. */
3501 if (current_binding_level != global_binding_level
3502 /* But not if this is a duplicate decl
3503 and we preserved the rtl from the previous one
3504 (which may or may not happen). */
3505 && !DECL_RTL_SET_P (tem)
3506 && !DECL_CONTEXT (tem))
3508 if (TREE_TYPE (tem) != error_mark_node
3509 && COMPLETE_TYPE_P (TREE_TYPE (tem)))
3510 expand_decl (tem);
3511 else if (TREE_CODE (TREE_TYPE (tem)) == ARRAY_TYPE
3512 && DECL_INITIAL (tem) != 0)
3513 expand_decl (tem);
3516 return tem;
3519 /* Finish processing of a declaration;
3520 install its initial value.
3521 If the length of an array type is not known before,
3522 it must be determined now, from the initial value, or it is an error. */
3524 void
3525 finish_decl (decl, init, asmspec_tree)
3526 tree decl, init;
3527 tree asmspec_tree;
3529 tree type = TREE_TYPE (decl);
3530 int was_incomplete = (DECL_SIZE (decl) == 0);
3531 const char *asmspec = 0;
3533 /* If a name was specified, get the string. */
3534 if (asmspec_tree)
3535 asmspec = TREE_STRING_POINTER (asmspec_tree);
3537 /* If `start_decl' didn't like having an initialization, ignore it now. */
3538 if (init != 0 && DECL_INITIAL (decl) == 0)
3539 init = 0;
3541 /* Don't crash if parm is initialized. */
3542 if (TREE_CODE (decl) == PARM_DECL)
3543 init = 0;
3545 if (init)
3547 if (TREE_CODE (decl) != TYPE_DECL)
3548 store_init_value (decl, init);
3549 else
3551 /* typedef foo = bar; store the type of bar as the type of foo. */
3552 TREE_TYPE (decl) = TREE_TYPE (init);
3553 DECL_INITIAL (decl) = init = 0;
3557 /* Deduce size of array from initialization, if not already known */
3558 if (TREE_CODE (type) == ARRAY_TYPE
3559 && TYPE_DOMAIN (type) == 0
3560 && TREE_CODE (decl) != TYPE_DECL)
3562 int do_default
3563 = (TREE_STATIC (decl)
3564 /* Even if pedantic, an external linkage array
3565 may have incomplete type at first. */
3566 ? pedantic && !TREE_PUBLIC (decl)
3567 : !DECL_EXTERNAL (decl));
3568 int failure
3569 = complete_array_type (type, DECL_INITIAL (decl), do_default);
3571 /* Get the completed type made by complete_array_type. */
3572 type = TREE_TYPE (decl);
3574 if (failure == 1)
3575 error_with_decl (decl, "initializer fails to determine size of `%s'");
3577 else if (failure == 2)
3579 if (do_default)
3580 error_with_decl (decl, "array size missing in `%s'");
3581 /* If a `static' var's size isn't known,
3582 make it extern as well as static, so it does not get
3583 allocated.
3584 If it is not `static', then do not mark extern;
3585 finish_incomplete_decl will give it a default size
3586 and it will get allocated. */
3587 else if (!pedantic && TREE_STATIC (decl) && ! TREE_PUBLIC (decl))
3588 DECL_EXTERNAL (decl) = 1;
3591 /* TYPE_MAX_VALUE is always one less than the number of elements
3592 in the array, because we start counting at zero. Therefore,
3593 warn only if the value is less than zero. */
3594 else if (pedantic && TYPE_DOMAIN (type) != 0
3595 && tree_int_cst_sgn (TYPE_MAX_VALUE (TYPE_DOMAIN (type))) < 0)
3596 error_with_decl (decl, "zero or negative size array `%s'");
3598 layout_decl (decl, 0);
3601 if (TREE_CODE (decl) == VAR_DECL)
3603 if (DECL_SIZE (decl) == 0 && TREE_TYPE (decl) != error_mark_node
3604 && COMPLETE_TYPE_P (TREE_TYPE (decl)))
3605 layout_decl (decl, 0);
3607 if (DECL_SIZE (decl) == 0
3608 /* Don't give an error if we already gave one earlier. */
3609 && TREE_TYPE (decl) != error_mark_node
3610 && (TREE_STATIC (decl)
3612 /* A static variable with an incomplete type
3613 is an error if it is initialized.
3614 Also if it is not file scope.
3615 Otherwise, let it through, but if it is not `extern'
3616 then it may cause an error message later. */
3617 (DECL_INITIAL (decl) != 0
3618 || DECL_CONTEXT (decl) != 0)
3620 /* An automatic variable with an incomplete type
3621 is an error. */
3622 !DECL_EXTERNAL (decl)))
3624 error_with_decl (decl, "storage size of `%s' isn't known");
3625 TREE_TYPE (decl) = error_mark_node;
3628 if ((DECL_EXTERNAL (decl) || TREE_STATIC (decl))
3629 && DECL_SIZE (decl) != 0)
3631 if (TREE_CODE (DECL_SIZE (decl)) == INTEGER_CST)
3632 constant_expression_warning (DECL_SIZE (decl));
3633 else
3634 error_with_decl (decl, "storage size of `%s' isn't constant");
3637 if (TREE_USED (type))
3638 TREE_USED (decl) = 1;
3641 /* If this is a function and an assembler name is specified, it isn't
3642 builtin any more. Also reset DECL_RTL so we can give it its new
3643 name. */
3644 if (TREE_CODE (decl) == FUNCTION_DECL && asmspec)
3646 DECL_BUILT_IN_CLASS (decl) = NOT_BUILT_IN;
3647 SET_DECL_RTL (decl, NULL_RTX);
3648 SET_DECL_ASSEMBLER_NAME (decl, get_identifier (asmspec));
3651 /* Output the assembler code and/or RTL code for variables and functions,
3652 unless the type is an undefined structure or union.
3653 If not, it will get done when the type is completed. */
3655 if (TREE_CODE (decl) == VAR_DECL || TREE_CODE (decl) == FUNCTION_DECL)
3657 /* This is a no-op in c-lang.c or something real in objc-actions.c. */
3658 maybe_objc_check_decl (decl);
3660 if (!DECL_CONTEXT (decl))
3662 if (DECL_INITIAL (decl) == NULL_TREE
3663 || DECL_INITIAL (decl) == error_mark_node)
3664 /* Don't output anything
3665 when a tentative file-scope definition is seen.
3666 But at end of compilation, do output code for them. */
3667 DECL_DEFER_OUTPUT (decl) = 1;
3668 rest_of_decl_compilation (decl, asmspec,
3669 (DECL_CONTEXT (decl) == 0
3670 || TREE_ASM_WRITTEN (decl)), 0);
3672 else
3674 /* This is a local variable. If there is an ASMSPEC, the
3675 user has requested that we handle it specially. */
3676 if (asmspec)
3678 /* In conjunction with an ASMSPEC, the `register'
3679 keyword indicates that we should place the variable
3680 in a particular register. */
3681 if (DECL_REGISTER (decl))
3682 DECL_C_HARD_REGISTER (decl) = 1;
3684 /* If this is not a static variable, issue a warning.
3685 It doesn't make any sense to give an ASMSPEC for an
3686 ordinary, non-register local variable. Historically,
3687 GCC has accepted -- but ignored -- the ASMSPEC in
3688 this case. */
3689 if (TREE_CODE (decl) == VAR_DECL
3690 && !DECL_REGISTER (decl)
3691 && !TREE_STATIC (decl))
3692 warning_with_decl (decl,
3693 "ignoring asm-specifier for non-static local variable `%s'");
3694 else
3695 SET_DECL_ASSEMBLER_NAME (decl, get_identifier (asmspec));
3698 if (TREE_CODE (decl) != FUNCTION_DECL)
3699 add_decl_stmt (decl);
3702 if (DECL_CONTEXT (decl) != 0)
3704 /* Recompute the RTL of a local array now
3705 if it used to be an incomplete type. */
3706 if (was_incomplete
3707 && ! TREE_STATIC (decl) && ! DECL_EXTERNAL (decl))
3709 /* If we used it already as memory, it must stay in memory. */
3710 TREE_ADDRESSABLE (decl) = TREE_USED (decl);
3711 /* If it's still incomplete now, no init will save it. */
3712 if (DECL_SIZE (decl) == 0)
3713 DECL_INITIAL (decl) = 0;
3718 if (TREE_CODE (decl) == TYPE_DECL)
3720 /* This is a no-op in c-lang.c or something real in objc-actions.c. */
3721 maybe_objc_check_decl (decl);
3722 rest_of_decl_compilation (decl, NULL, DECL_CONTEXT (decl) == 0, 0);
3725 /* At the end of a declaration, throw away any variable type sizes
3726 of types defined inside that declaration. There is no use
3727 computing them in the following function definition. */
3728 if (current_binding_level == global_binding_level)
3729 get_pending_sizes ();
3732 /* If DECL has a cleanup, build and return that cleanup here.
3733 This is a callback called by expand_expr. */
3735 tree
3736 maybe_build_cleanup (decl)
3737 tree decl ATTRIBUTE_UNUSED;
3739 /* There are no cleanups in C. */
3740 return NULL_TREE;
3743 /* Given a parsed parameter declaration,
3744 decode it into a PARM_DECL and push that on the current binding level.
3745 Also, for the sake of forward parm decls,
3746 record the given order of parms in `parm_order'. */
3748 void
3749 push_parm_decl (parm)
3750 tree parm;
3752 tree decl;
3753 int old_immediate_size_expand = immediate_size_expand;
3754 /* Don't try computing parm sizes now -- wait till fn is called. */
3755 immediate_size_expand = 0;
3757 decl = grokdeclarator (TREE_VALUE (TREE_PURPOSE (parm)),
3758 TREE_PURPOSE (TREE_PURPOSE (parm)), PARM, 0);
3759 decl_attributes (&decl, TREE_VALUE (parm), 0);
3761 #if 0
3762 if (DECL_NAME (decl))
3764 tree olddecl;
3765 olddecl = lookup_name (DECL_NAME (decl));
3766 if (pedantic && olddecl != 0 && TREE_CODE (olddecl) == TYPE_DECL)
3767 pedwarn_with_decl (decl,
3768 "ANSI C forbids parameter `%s' shadowing typedef");
3770 #endif
3772 decl = pushdecl (decl);
3774 immediate_size_expand = old_immediate_size_expand;
3776 current_binding_level->parm_order
3777 = tree_cons (NULL_TREE, decl, current_binding_level->parm_order);
3779 /* Add this decl to the current binding level. */
3780 finish_decl (decl, NULL_TREE, NULL_TREE);
3783 /* Clear the given order of parms in `parm_order'.
3784 Used at start of parm list,
3785 and also at semicolon terminating forward decls. */
3787 void
3788 clear_parm_order ()
3790 current_binding_level->parm_order = NULL_TREE;
3793 /* Make TYPE a complete type based on INITIAL_VALUE.
3794 Return 0 if successful, 1 if INITIAL_VALUE can't be deciphered,
3795 2 if there was no information (in which case assume 1 if DO_DEFAULT). */
3798 complete_array_type (type, initial_value, do_default)
3799 tree type;
3800 tree initial_value;
3801 int do_default;
3803 tree maxindex = NULL_TREE;
3804 int value = 0;
3806 if (initial_value)
3808 /* Note MAXINDEX is really the maximum index,
3809 one less than the size. */
3810 if (TREE_CODE (initial_value) == STRING_CST)
3812 int eltsize
3813 = int_size_in_bytes (TREE_TYPE (TREE_TYPE (initial_value)));
3814 maxindex = build_int_2 ((TREE_STRING_LENGTH (initial_value)
3815 / eltsize) - 1, 0);
3817 else if (TREE_CODE (initial_value) == CONSTRUCTOR)
3819 tree elts = CONSTRUCTOR_ELTS (initial_value);
3820 maxindex = build_int_2 (-1, -1);
3821 for (; elts; elts = TREE_CHAIN (elts))
3823 if (TREE_PURPOSE (elts))
3824 maxindex = TREE_PURPOSE (elts);
3825 else
3826 maxindex = fold (build (PLUS_EXPR, integer_type_node,
3827 maxindex, integer_one_node));
3829 maxindex = copy_node (maxindex);
3831 else
3833 /* Make an error message unless that happened already. */
3834 if (initial_value != error_mark_node)
3835 value = 1;
3837 /* Prevent further error messages. */
3838 maxindex = build_int_2 (0, 0);
3842 if (!maxindex)
3844 if (do_default)
3845 maxindex = build_int_2 (0, 0);
3846 value = 2;
3849 if (maxindex)
3851 TYPE_DOMAIN (type) = build_index_type (maxindex);
3852 if (!TREE_TYPE (maxindex))
3853 TREE_TYPE (maxindex) = TYPE_DOMAIN (type);
3856 /* Lay out the type now that we can get the real answer. */
3858 layout_type (type);
3860 return value;
3863 /* Given declspecs and a declarator,
3864 determine the name and type of the object declared
3865 and construct a ..._DECL node for it.
3866 (In one case we can return a ..._TYPE node instead.
3867 For invalid input we sometimes return 0.)
3869 DECLSPECS is a chain of tree_list nodes whose value fields
3870 are the storage classes and type specifiers.
3872 DECL_CONTEXT says which syntactic context this declaration is in:
3873 NORMAL for most contexts. Make a VAR_DECL or FUNCTION_DECL or TYPE_DECL.
3874 FUNCDEF for a function definition. Like NORMAL but a few different
3875 error messages in each case. Return value may be zero meaning
3876 this definition is too screwy to try to parse.
3877 PARM for a parameter declaration (either within a function prototype
3878 or before a function body). Make a PARM_DECL, or return void_type_node.
3879 TYPENAME if for a typename (in a cast or sizeof).
3880 Don't make a DECL node; just return the ..._TYPE node.
3881 FIELD for a struct or union field; make a FIELD_DECL.
3882 BITFIELD for a field with specified width.
3883 INITIALIZED is 1 if the decl has an initializer.
3885 In the TYPENAME case, DECLARATOR is really an absolute declarator.
3886 It may also be so in the PARM case, for a prototype where the
3887 argument type is specified but not the name.
3889 This function is where the complicated C meanings of `static'
3890 and `extern' are interpreted. */
3892 static tree
3893 grokdeclarator (declarator, declspecs, decl_context, initialized)
3894 tree declspecs;
3895 tree declarator;
3896 enum decl_context decl_context;
3897 int initialized;
3899 int specbits = 0;
3900 tree spec;
3901 tree type = NULL_TREE;
3902 int longlong = 0;
3903 int constp;
3904 int restrictp;
3905 int volatilep;
3906 int type_quals = TYPE_UNQUALIFIED;
3907 int inlinep;
3908 int explicit_int = 0;
3909 int explicit_char = 0;
3910 int defaulted_int = 0;
3911 tree typedef_decl = 0;
3912 const char *name;
3913 tree typedef_type = 0;
3914 int funcdef_flag = 0;
3915 enum tree_code innermost_code = ERROR_MARK;
3916 int bitfield = 0;
3917 int size_varies = 0;
3918 tree decl_attr = NULL_TREE;
3919 tree array_ptr_quals = NULL_TREE;
3920 int array_parm_static = 0;
3921 tree returned_attrs = NULL_TREE;
3923 if (decl_context == BITFIELD)
3924 bitfield = 1, decl_context = FIELD;
3926 if (decl_context == FUNCDEF)
3927 funcdef_flag = 1, decl_context = NORMAL;
3929 /* Look inside a declarator for the name being declared
3930 and get it as a string, for an error message. */
3932 tree decl = declarator;
3933 name = 0;
3935 while (decl)
3936 switch (TREE_CODE (decl))
3938 case ARRAY_REF:
3939 case INDIRECT_REF:
3940 case CALL_EXPR:
3941 innermost_code = TREE_CODE (decl);
3942 decl = TREE_OPERAND (decl, 0);
3943 break;
3945 case TREE_LIST:
3946 decl = TREE_VALUE (decl);
3947 break;
3949 case IDENTIFIER_NODE:
3950 name = IDENTIFIER_POINTER (decl);
3951 decl = 0;
3952 break;
3954 default:
3955 abort ();
3957 if (name == 0)
3958 name = "type name";
3961 /* A function definition's declarator must have the form of
3962 a function declarator. */
3964 if (funcdef_flag && innermost_code != CALL_EXPR)
3965 return 0;
3967 /* Anything declared one level down from the top level
3968 must be one of the parameters of a function
3969 (because the body is at least two levels down). */
3971 /* If this looks like a function definition, make it one,
3972 even if it occurs where parms are expected.
3973 Then store_parm_decls will reject it and not use it as a parm. */
3974 if (decl_context == NORMAL && !funcdef_flag
3975 && current_binding_level->parm_flag)
3976 decl_context = PARM;
3978 /* Look through the decl specs and record which ones appear.
3979 Some typespecs are defined as built-in typenames.
3980 Others, the ones that are modifiers of other types,
3981 are represented by bits in SPECBITS: set the bits for
3982 the modifiers that appear. Storage class keywords are also in SPECBITS.
3984 If there is a typedef name or a type, store the type in TYPE.
3985 This includes builtin typedefs such as `int'.
3987 Set EXPLICIT_INT or EXPLICIT_CHAR if the type is `int' or `char'
3988 and did not come from a user typedef.
3990 Set LONGLONG if `long' is mentioned twice. */
3992 for (spec = declspecs; spec; spec = TREE_CHAIN (spec))
3994 tree id = TREE_VALUE (spec);
3996 if (id == ridpointers[(int) RID_INT])
3997 explicit_int = 1;
3998 if (id == ridpointers[(int) RID_CHAR])
3999 explicit_char = 1;
4001 if (TREE_CODE (id) == IDENTIFIER_NODE && C_IS_RESERVED_WORD (id))
4003 enum rid i = C_RID_CODE (id);
4004 if ((int) i <= (int) RID_LAST_MODIFIER)
4006 if (i == RID_LONG && (specbits & (1 << (int) i)))
4008 if (longlong)
4009 error ("`long long long' is too long for GCC");
4010 else
4012 if (pedantic && !flag_isoc99 && ! in_system_header
4013 && warn_long_long)
4014 pedwarn ("ISO C89 does not support `long long'");
4015 longlong = 1;
4018 else if (specbits & (1 << (int) i))
4019 pedwarn ("duplicate `%s'", IDENTIFIER_POINTER (id));
4020 specbits |= 1 << (int) i;
4021 goto found;
4024 if (type)
4025 error ("two or more data types in declaration of `%s'", name);
4026 /* Actual typedefs come to us as TYPE_DECL nodes. */
4027 else if (TREE_CODE (id) == TYPE_DECL)
4029 type = TREE_TYPE (id);
4030 decl_attr = DECL_ATTRIBUTES (id);
4031 typedef_decl = id;
4033 /* Built-in types come as identifiers. */
4034 else if (TREE_CODE (id) == IDENTIFIER_NODE)
4036 tree t = lookup_name (id);
4037 if (TREE_TYPE (t) == error_mark_node)
4039 else if (!t || TREE_CODE (t) != TYPE_DECL)
4040 error ("`%s' fails to be a typedef or built in type",
4041 IDENTIFIER_POINTER (id));
4042 else
4044 type = TREE_TYPE (t);
4045 typedef_decl = t;
4048 else if (TREE_CODE (id) != ERROR_MARK)
4049 type = id;
4051 found:
4055 typedef_type = type;
4056 if (type)
4057 size_varies = C_TYPE_VARIABLE_SIZE (type);
4059 /* No type at all: default to `int', and set DEFAULTED_INT
4060 because it was not a user-defined typedef. */
4062 if (type == 0)
4064 if ((! (specbits & ((1 << (int) RID_LONG) | (1 << (int) RID_SHORT)
4065 | (1 << (int) RID_SIGNED)
4066 | (1 << (int) RID_UNSIGNED)
4067 | (1 << (int) RID_COMPLEX))))
4068 /* Don't warn about typedef foo = bar. */
4069 && ! (specbits & (1 << (int) RID_TYPEDEF) && initialized)
4070 && ! in_system_header)
4072 /* Issue a warning if this is an ISO C 99 program or if -Wreturn-type
4073 and this is a function, or if -Wimplicit; prefer the former
4074 warning since it is more explicit. */
4075 if ((warn_implicit_int || warn_return_type || flag_isoc99)
4076 && funcdef_flag)
4077 warn_about_return_type = 1;
4078 else if (warn_implicit_int || flag_isoc99)
4079 pedwarn_c99 ("type defaults to `int' in declaration of `%s'",
4080 name);
4083 defaulted_int = 1;
4084 type = integer_type_node;
4087 /* Now process the modifiers that were specified
4088 and check for invalid combinations. */
4090 /* Long double is a special combination. */
4092 if ((specbits & 1 << (int) RID_LONG) && ! longlong
4093 && TYPE_MAIN_VARIANT (type) == double_type_node)
4095 specbits &= ~(1 << (int) RID_LONG);
4096 type = long_double_type_node;
4099 /* Check all other uses of type modifiers. */
4101 if (specbits & ((1 << (int) RID_LONG) | (1 << (int) RID_SHORT)
4102 | (1 << (int) RID_UNSIGNED) | (1 << (int) RID_SIGNED)))
4104 int ok = 0;
4106 if ((specbits & 1 << (int) RID_LONG)
4107 && (specbits & 1 << (int) RID_SHORT))
4108 error ("both long and short specified for `%s'", name);
4109 else if (((specbits & 1 << (int) RID_LONG)
4110 || (specbits & 1 << (int) RID_SHORT))
4111 && explicit_char)
4112 error ("long or short specified with char for `%s'", name);
4113 else if (((specbits & 1 << (int) RID_LONG)
4114 || (specbits & 1 << (int) RID_SHORT))
4115 && TREE_CODE (type) == REAL_TYPE)
4117 static int already = 0;
4119 error ("long or short specified with floating type for `%s'", name);
4120 if (! already && ! pedantic)
4122 error ("the only valid combination is `long double'");
4123 already = 1;
4126 else if ((specbits & 1 << (int) RID_SIGNED)
4127 && (specbits & 1 << (int) RID_UNSIGNED))
4128 error ("both signed and unsigned specified for `%s'", name);
4129 else if (TREE_CODE (type) != INTEGER_TYPE)
4130 error ("long, short, signed or unsigned invalid for `%s'", name);
4131 else
4133 ok = 1;
4134 if (!explicit_int && !defaulted_int && !explicit_char && pedantic)
4136 pedwarn ("long, short, signed or unsigned used invalidly for `%s'",
4137 name);
4138 if (flag_pedantic_errors)
4139 ok = 0;
4143 /* Discard the type modifiers if they are invalid. */
4144 if (! ok)
4146 specbits &= ~((1 << (int) RID_LONG) | (1 << (int) RID_SHORT)
4147 | (1 << (int) RID_UNSIGNED) | (1 << (int) RID_SIGNED));
4148 longlong = 0;
4152 if ((specbits & (1 << (int) RID_COMPLEX))
4153 && TREE_CODE (type) != INTEGER_TYPE && TREE_CODE (type) != REAL_TYPE)
4155 error ("complex invalid for `%s'", name);
4156 specbits &= ~(1 << (int) RID_COMPLEX);
4159 /* Decide whether an integer type is signed or not.
4160 Optionally treat bitfields as signed by default. */
4161 if (specbits & 1 << (int) RID_UNSIGNED
4162 /* Traditionally, all bitfields are unsigned. */
4163 || (bitfield && flag_traditional
4164 && (! explicit_flag_signed_bitfields || !flag_signed_bitfields))
4165 || (bitfield && ! flag_signed_bitfields
4166 && (explicit_int || defaulted_int || explicit_char
4167 /* A typedef for plain `int' without `signed'
4168 can be controlled just like plain `int'. */
4169 || ! (typedef_decl != 0
4170 && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl)))
4171 && TREE_CODE (type) != ENUMERAL_TYPE
4172 && !(specbits & 1 << (int) RID_SIGNED)))
4174 if (longlong)
4175 type = long_long_unsigned_type_node;
4176 else if (specbits & 1 << (int) RID_LONG)
4177 type = long_unsigned_type_node;
4178 else if (specbits & 1 << (int) RID_SHORT)
4179 type = short_unsigned_type_node;
4180 else if (type == char_type_node)
4181 type = unsigned_char_type_node;
4182 else if (typedef_decl)
4183 type = unsigned_type (type);
4184 else
4185 type = unsigned_type_node;
4187 else if ((specbits & 1 << (int) RID_SIGNED)
4188 && type == char_type_node)
4189 type = signed_char_type_node;
4190 else if (longlong)
4191 type = long_long_integer_type_node;
4192 else if (specbits & 1 << (int) RID_LONG)
4193 type = long_integer_type_node;
4194 else if (specbits & 1 << (int) RID_SHORT)
4195 type = short_integer_type_node;
4197 if (specbits & 1 << (int) RID_COMPLEX)
4199 if (pedantic && !flag_isoc99)
4200 pedwarn ("ISO C89 does not support complex types");
4201 /* If we just have "complex", it is equivalent to
4202 "complex double", but if any modifiers at all are specified it is
4203 the complex form of TYPE. E.g, "complex short" is
4204 "complex short int". */
4206 if (defaulted_int && ! longlong
4207 && ! (specbits & ((1 << (int) RID_LONG) | (1 << (int) RID_SHORT)
4208 | (1 << (int) RID_SIGNED)
4209 | (1 << (int) RID_UNSIGNED))))
4211 if (pedantic)
4212 pedwarn ("ISO C does not support plain `complex' meaning `double complex'");
4213 type = complex_double_type_node;
4215 else if (type == integer_type_node)
4217 if (pedantic)
4218 pedwarn ("ISO C does not support complex integer types");
4219 type = complex_integer_type_node;
4221 else if (type == float_type_node)
4222 type = complex_float_type_node;
4223 else if (type == double_type_node)
4224 type = complex_double_type_node;
4225 else if (type == long_double_type_node)
4226 type = complex_long_double_type_node;
4227 else
4229 if (pedantic)
4230 pedwarn ("ISO C does not support complex integer types");
4231 type = build_complex_type (type);
4235 /* Figure out the type qualifiers for the declaration. There are
4236 two ways a declaration can become qualified. One is something
4237 like `const int i' where the `const' is explicit. Another is
4238 something like `typedef const int CI; CI i' where the type of the
4239 declaration contains the `const'. */
4240 constp = !! (specbits & 1 << (int) RID_CONST) + TYPE_READONLY (type);
4241 restrictp = !! (specbits & 1 << (int) RID_RESTRICT) + TYPE_RESTRICT (type);
4242 volatilep = !! (specbits & 1 << (int) RID_VOLATILE) + TYPE_VOLATILE (type);
4243 inlinep = !! (specbits & (1 << (int) RID_INLINE));
4244 if (constp > 1 && ! flag_isoc99)
4245 pedwarn ("duplicate `const'");
4246 if (restrictp > 1 && ! flag_isoc99)
4247 pedwarn ("duplicate `restrict'");
4248 if (volatilep > 1 && ! flag_isoc99)
4249 pedwarn ("duplicate `volatile'");
4250 if (! flag_gen_aux_info && (TYPE_QUALS (type)))
4251 type = TYPE_MAIN_VARIANT (type);
4252 type_quals = ((constp ? TYPE_QUAL_CONST : 0)
4253 | (restrictp ? TYPE_QUAL_RESTRICT : 0)
4254 | (volatilep ? TYPE_QUAL_VOLATILE : 0));
4256 /* Warn if two storage classes are given. Default to `auto'. */
4259 int nclasses = 0;
4261 if (specbits & 1 << (int) RID_AUTO) nclasses++;
4262 if (specbits & 1 << (int) RID_STATIC) nclasses++;
4263 if (specbits & 1 << (int) RID_EXTERN) nclasses++;
4264 if (specbits & 1 << (int) RID_REGISTER) nclasses++;
4265 if (specbits & 1 << (int) RID_TYPEDEF) nclasses++;
4267 /* Warn about storage classes that are invalid for certain
4268 kinds of declarations (parameters, typenames, etc.). */
4270 if (nclasses > 1)
4271 error ("multiple storage classes in declaration of `%s'", name);
4272 else if (funcdef_flag
4273 && (specbits
4274 & ((1 << (int) RID_REGISTER)
4275 | (1 << (int) RID_AUTO)
4276 | (1 << (int) RID_TYPEDEF))))
4278 if (specbits & 1 << (int) RID_AUTO
4279 && (pedantic || current_binding_level == global_binding_level))
4280 pedwarn ("function definition declared `auto'");
4281 if (specbits & 1 << (int) RID_REGISTER)
4282 error ("function definition declared `register'");
4283 if (specbits & 1 << (int) RID_TYPEDEF)
4284 error ("function definition declared `typedef'");
4285 specbits &= ~((1 << (int) RID_TYPEDEF) | (1 << (int) RID_REGISTER)
4286 | (1 << (int) RID_AUTO));
4288 else if (decl_context != NORMAL && nclasses > 0)
4290 if (decl_context == PARM && specbits & 1 << (int) RID_REGISTER)
4292 else
4294 switch (decl_context)
4296 case FIELD:
4297 error ("storage class specified for structure field `%s'",
4298 name);
4299 break;
4300 case PARM:
4301 error ("storage class specified for parameter `%s'", name);
4302 break;
4303 default:
4304 error ("storage class specified for typename");
4305 break;
4307 specbits &= ~((1 << (int) RID_TYPEDEF) | (1 << (int) RID_REGISTER)
4308 | (1 << (int) RID_AUTO) | (1 << (int) RID_STATIC)
4309 | (1 << (int) RID_EXTERN));
4312 else if (specbits & 1 << (int) RID_EXTERN && initialized && ! funcdef_flag)
4314 /* `extern' with initialization is invalid if not at top level. */
4315 if (current_binding_level == global_binding_level)
4316 warning ("`%s' initialized and declared `extern'", name);
4317 else
4318 error ("`%s' has both `extern' and initializer", name);
4320 else if (specbits & 1 << (int) RID_EXTERN && funcdef_flag
4321 && current_binding_level != global_binding_level)
4322 error ("nested function `%s' declared `extern'", name);
4323 else if (current_binding_level == global_binding_level
4324 && specbits & (1 << (int) RID_AUTO))
4325 error ("top-level declaration of `%s' specifies `auto'", name);
4328 /* Now figure out the structure of the declarator proper.
4329 Descend through it, creating more complex types, until we reach
4330 the declared identifier (or NULL_TREE, in an absolute declarator). */
4332 while (declarator && TREE_CODE (declarator) != IDENTIFIER_NODE)
4334 if (type == error_mark_node)
4336 declarator = TREE_OPERAND (declarator, 0);
4337 continue;
4340 /* Each level of DECLARATOR is either an ARRAY_REF (for ...[..]),
4341 an INDIRECT_REF (for *...),
4342 a CALL_EXPR (for ...(...)),
4343 a TREE_LIST (for nested attributes),
4344 an identifier (for the name being declared)
4345 or a null pointer (for the place in an absolute declarator
4346 where the name was omitted).
4347 For the last two cases, we have just exited the loop.
4349 At this point, TYPE is the type of elements of an array,
4350 or for a function to return, or for a pointer to point to.
4351 After this sequence of ifs, TYPE is the type of the
4352 array or function or pointer, and DECLARATOR has had its
4353 outermost layer removed. */
4355 if (array_ptr_quals != NULL_TREE || array_parm_static)
4357 /* Only the innermost declarator (making a parameter be of
4358 array type which is converted to pointer type)
4359 may have static or type qualifiers. */
4360 error ("static or type qualifiers in non-parameter array declarator");
4361 array_ptr_quals = NULL_TREE;
4362 array_parm_static = 0;
4365 if (TREE_CODE (declarator) == TREE_LIST)
4367 /* We encode a declarator with embedded attributes using
4368 a TREE_LIST. */
4369 tree attrs = TREE_PURPOSE (declarator);
4370 tree inner_decl;
4371 int attr_flags = 0;
4372 declarator = TREE_VALUE (declarator);
4373 inner_decl = declarator;
4374 while (inner_decl != NULL_TREE
4375 && TREE_CODE (inner_decl) == TREE_LIST)
4376 inner_decl = TREE_VALUE (inner_decl);
4377 if (inner_decl == NULL_TREE
4378 || TREE_CODE (inner_decl) == IDENTIFIER_NODE)
4379 attr_flags |= (int) ATTR_FLAG_DECL_NEXT;
4380 if (TREE_CODE (inner_decl) == CALL_EXPR)
4381 attr_flags |= (int) ATTR_FLAG_FUNCTION_NEXT;
4382 if (TREE_CODE (inner_decl) == ARRAY_REF)
4383 attr_flags |= (int) ATTR_FLAG_ARRAY_NEXT;
4384 returned_attrs = decl_attributes (&type,
4385 chainon (returned_attrs, attrs),
4386 attr_flags);
4388 else if (TREE_CODE (declarator) == ARRAY_REF)
4390 tree itype = NULL_TREE;
4391 tree size = TREE_OPERAND (declarator, 1);
4392 /* The index is a signed object `sizetype' bits wide. */
4393 tree index_type = signed_type (sizetype);
4395 array_ptr_quals = TREE_TYPE (declarator);
4396 array_parm_static = TREE_STATIC (declarator);
4398 declarator = TREE_OPERAND (declarator, 0);
4400 /* Check for some types that there cannot be arrays of. */
4402 if (VOID_TYPE_P (type))
4404 error ("declaration of `%s' as array of voids", name);
4405 type = error_mark_node;
4408 if (TREE_CODE (type) == FUNCTION_TYPE)
4410 error ("declaration of `%s' as array of functions", name);
4411 type = error_mark_node;
4414 if (size == error_mark_node)
4415 type = error_mark_node;
4417 if (type == error_mark_node)
4418 continue;
4420 /* If size was specified, set ITYPE to a range-type for that size.
4421 Otherwise, ITYPE remains null. finish_decl may figure it out
4422 from an initial value. */
4424 if (size)
4426 /* Strip NON_LVALUE_EXPRs since we aren't using as an lvalue. */
4427 STRIP_TYPE_NOPS (size);
4429 if (! INTEGRAL_TYPE_P (TREE_TYPE (size)))
4431 error ("size of array `%s' has non-integer type", name);
4432 size = integer_one_node;
4435 if (pedantic && integer_zerop (size))
4436 pedwarn ("ISO C forbids zero-size array `%s'", name);
4438 if (TREE_CODE (size) == INTEGER_CST)
4440 constant_expression_warning (size);
4441 if (tree_int_cst_sgn (size) < 0)
4443 error ("size of array `%s' is negative", name);
4444 size = integer_one_node;
4447 else
4449 /* Make sure the array size remains visibly nonconstant
4450 even if it is (eg) a const variable with known value. */
4451 size_varies = 1;
4453 if (pedantic)
4455 if (TREE_CONSTANT (size))
4456 pedwarn ("ISO C89 forbids array `%s' whose size can't be evaluated",
4457 name);
4458 else
4459 pedwarn ("ISO C89 forbids variable-size array `%s'",
4460 name);
4464 if (integer_zerop (size))
4466 /* A zero-length array cannot be represented with an
4467 unsigned index type, which is what we'll get with
4468 build_index_type. Create an open-ended range instead. */
4469 itype = build_range_type (sizetype, size, NULL_TREE);
4471 else
4473 /* Compute the maximum valid index, that is, size - 1.
4474 Do the calculation in index_type, so that if it is
4475 a variable the computations will be done in the
4476 proper mode. */
4477 itype = fold (build (MINUS_EXPR, index_type,
4478 convert (index_type, size),
4479 convert (index_type, size_one_node)));
4481 /* If that overflowed, the array is too big.
4482 ??? While a size of INT_MAX+1 technically shouldn't
4483 cause an overflow (because we subtract 1), the overflow
4484 is recorded during the conversion to index_type, before
4485 the subtraction. Handling this case seems like an
4486 unnecessary complication. */
4487 if (TREE_OVERFLOW (itype))
4489 error ("size of array `%s' is too large", name);
4490 type = error_mark_node;
4491 continue;
4494 if (size_varies)
4495 itype = variable_size (itype);
4496 itype = build_index_type (itype);
4499 else if (decl_context == FIELD)
4501 /* ??? Need to check somewhere that this is a structure
4502 and not a union, that this field is last, and that
4503 this structure has at least one other named member. */
4505 if (pedantic && !flag_isoc99 && !in_system_header)
4506 pedwarn ("ISO C89 does not support flexible array members");
4508 /* ISO C99 Flexible array members are effectively identical
4509 to GCC's zero-length array extension. */
4510 itype = build_range_type (sizetype, size_zero_node, NULL_TREE);
4513 /* If pedantic, complain about arrays of incomplete types. */
4515 if (pedantic && !COMPLETE_TYPE_P (type))
4516 pedwarn ("array type has incomplete element type");
4518 #if 0
4519 /* We shouldn't have a function type here at all!
4520 Functions aren't allowed as array elements. */
4521 if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
4522 && (constp || volatilep))
4523 pedwarn ("ANSI C forbids const or volatile function types");
4524 #endif
4526 /* Build the array type itself, then merge any constancy or
4527 volatility into the target type. We must do it in this order
4528 to ensure that the TYPE_MAIN_VARIANT field of the array type
4529 is set correctly. */
4531 type = build_array_type (type, itype);
4532 if (type_quals)
4533 type = c_build_qualified_type (type, type_quals);
4535 if (size_varies)
4536 C_TYPE_VARIABLE_SIZE (type) = 1;
4538 /* The GCC extension for zero-length arrays differs from
4539 ISO flexible array members in that sizeof yields zero. */
4540 if (size && integer_zerop (size))
4542 layout_type (type);
4543 TYPE_SIZE (type) = bitsize_zero_node;
4544 TYPE_SIZE_UNIT (type) = size_zero_node;
4546 if (decl_context != PARM
4547 && (array_ptr_quals != NULL_TREE || array_parm_static))
4549 error ("static or type qualifiers in non-parameter array declarator");
4550 array_ptr_quals = NULL_TREE;
4551 array_parm_static = 0;
4554 else if (TREE_CODE (declarator) == CALL_EXPR)
4556 tree arg_types;
4558 /* Declaring a function type.
4559 Make sure we have a valid type for the function to return. */
4560 if (type == error_mark_node)
4561 continue;
4563 size_varies = 0;
4565 /* Warn about some types functions can't return. */
4567 if (TREE_CODE (type) == FUNCTION_TYPE)
4569 error ("`%s' declared as function returning a function", name);
4570 type = integer_type_node;
4572 if (TREE_CODE (type) == ARRAY_TYPE)
4574 error ("`%s' declared as function returning an array", name);
4575 type = integer_type_node;
4578 #ifndef TRADITIONAL_RETURN_FLOAT
4579 /* Traditionally, declaring return type float means double. */
4581 if (flag_traditional && TYPE_MAIN_VARIANT (type) == float_type_node)
4582 type = double_type_node;
4583 #endif /* TRADITIONAL_RETURN_FLOAT */
4585 /* Construct the function type and go to the next
4586 inner layer of declarator. */
4588 arg_types = grokparms (TREE_OPERAND (declarator, 1),
4589 funcdef_flag
4590 /* Say it's a definition
4591 only for the CALL_EXPR
4592 closest to the identifier. */
4593 && TREE_CODE (TREE_OPERAND (declarator, 0)) == IDENTIFIER_NODE);
4594 /* Type qualifiers before the return type of the function
4595 qualify the return type, not the function type. */
4596 if (type_quals)
4598 /* Type qualifiers on a function return type are normally
4599 permitted by the standard but have no effect, so give a
4600 warning at -W. Qualifiers on a void return type have
4601 meaning as a GNU extension, and are banned on function
4602 definitions in ISO C. FIXME: strictly we shouldn't
4603 pedwarn for qualified void return types except on function
4604 definitions, but not doing so could lead to the undesirable
4605 state of a "volatile void" function return type not being
4606 warned about, and a use of the function being compiled
4607 with GNU semantics, with no diagnostics under -pedantic. */
4608 if (VOID_TYPE_P (type) && pedantic && !in_system_header)
4609 pedwarn ("ISO C forbids qualified void function return type");
4610 else if (extra_warnings
4611 && !(VOID_TYPE_P (type)
4612 && type_quals == TYPE_QUAL_VOLATILE))
4613 warning ("type qualifiers ignored on function return type");
4615 type = c_build_qualified_type (type, type_quals);
4617 type_quals = TYPE_UNQUALIFIED;
4619 type = build_function_type (type, arg_types);
4620 declarator = TREE_OPERAND (declarator, 0);
4622 /* Set the TYPE_CONTEXTs for each tagged type which is local to
4623 the formal parameter list of this FUNCTION_TYPE to point to
4624 the FUNCTION_TYPE node itself. */
4627 tree link;
4629 for (link = last_function_parm_tags;
4630 link;
4631 link = TREE_CHAIN (link))
4632 TYPE_CONTEXT (TREE_VALUE (link)) = type;
4635 else if (TREE_CODE (declarator) == INDIRECT_REF)
4637 /* Merge any constancy or volatility into the target type
4638 for the pointer. */
4640 if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
4641 && type_quals)
4642 pedwarn ("ISO C forbids qualified function types");
4643 if (type_quals)
4644 type = c_build_qualified_type (type, type_quals);
4645 type_quals = TYPE_UNQUALIFIED;
4646 size_varies = 0;
4648 type = build_pointer_type (type);
4650 /* Process a list of type modifier keywords
4651 (such as const or volatile) that were given inside the `*'. */
4653 if (TREE_TYPE (declarator))
4655 tree typemodlist;
4656 int erred = 0;
4658 constp = 0;
4659 volatilep = 0;
4660 restrictp = 0;
4661 for (typemodlist = TREE_TYPE (declarator); typemodlist;
4662 typemodlist = TREE_CHAIN (typemodlist))
4664 tree qualifier = TREE_VALUE (typemodlist);
4666 if (C_IS_RESERVED_WORD (qualifier))
4668 if (C_RID_CODE (qualifier) == RID_CONST)
4669 constp++;
4670 else if (C_RID_CODE (qualifier) == RID_VOLATILE)
4671 volatilep++;
4672 else if (C_RID_CODE (qualifier) == RID_RESTRICT)
4673 restrictp++;
4674 else
4675 erred++;
4677 else
4678 erred++;
4681 if (erred)
4682 error ("invalid type modifier within pointer declarator");
4683 if (constp > 1 && ! flag_isoc99)
4684 pedwarn ("duplicate `const'");
4685 if (volatilep > 1 && ! flag_isoc99)
4686 pedwarn ("duplicate `volatile'");
4687 if (restrictp > 1 && ! flag_isoc99)
4688 pedwarn ("duplicate `restrict'");
4690 type_quals = ((constp ? TYPE_QUAL_CONST : 0)
4691 | (restrictp ? TYPE_QUAL_RESTRICT : 0)
4692 | (volatilep ? TYPE_QUAL_VOLATILE : 0));
4695 declarator = TREE_OPERAND (declarator, 0);
4697 else
4698 abort ();
4702 /* Now TYPE has the actual type. */
4704 /* Did array size calculations overflow? */
4706 if (TREE_CODE (type) == ARRAY_TYPE
4707 && COMPLETE_TYPE_P (type)
4708 && TREE_OVERFLOW (TYPE_SIZE (type)))
4710 error ("size of array `%s' is too large", name);
4711 /* If we proceed with the array type as it is, we'll eventually
4712 crash in tree_low_cst(). */
4713 type = error_mark_node;
4716 /* If this is declaring a typedef name, return a TYPE_DECL. */
4718 if (specbits & (1 << (int) RID_TYPEDEF))
4720 tree decl;
4721 /* Note that the grammar rejects storage classes
4722 in typenames, fields or parameters */
4723 if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
4724 && type_quals)
4725 pedwarn ("ISO C forbids qualified function types");
4726 if (type_quals)
4727 type = c_build_qualified_type (type, type_quals);
4728 decl = build_decl (TYPE_DECL, declarator, type);
4729 if ((specbits & (1 << (int) RID_SIGNED))
4730 || (typedef_decl && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl)))
4731 C_TYPEDEF_EXPLICITLY_SIGNED (decl) = 1;
4732 decl_attributes (&decl, returned_attrs, 0);
4733 return decl;
4736 /* Detect the case of an array type of unspecified size
4737 which came, as such, direct from a typedef name.
4738 We must copy the type, so that each identifier gets
4739 a distinct type, so that each identifier's size can be
4740 controlled separately by its own initializer. */
4742 if (type != 0 && typedef_type != 0
4743 && TREE_CODE (type) == ARRAY_TYPE && TYPE_DOMAIN (type) == 0
4744 && TYPE_MAIN_VARIANT (type) == TYPE_MAIN_VARIANT (typedef_type))
4746 type = build_array_type (TREE_TYPE (type), 0);
4747 if (size_varies)
4748 C_TYPE_VARIABLE_SIZE (type) = 1;
4751 /* If this is a type name (such as, in a cast or sizeof),
4752 compute the type and return it now. */
4754 if (decl_context == TYPENAME)
4756 /* Note that the grammar rejects storage classes
4757 in typenames, fields or parameters */
4758 if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
4759 && type_quals)
4760 pedwarn ("ISO C forbids const or volatile function types");
4761 if (type_quals)
4762 type = c_build_qualified_type (type, type_quals);
4763 decl_attributes (&type, returned_attrs, 0);
4764 return type;
4767 /* Aside from typedefs and type names (handle above),
4768 `void' at top level (not within pointer)
4769 is allowed only in public variables.
4770 We don't complain about parms either, but that is because
4771 a better error message can be made later. */
4773 if (VOID_TYPE_P (type) && decl_context != PARM
4774 && ! ((decl_context != FIELD && TREE_CODE (type) != FUNCTION_TYPE)
4775 && ((specbits & (1 << (int) RID_EXTERN))
4776 || (current_binding_level == global_binding_level
4777 && !(specbits
4778 & ((1 << (int) RID_STATIC) | (1 << (int) RID_REGISTER)))))))
4780 error ("variable or field `%s' declared void", name);
4781 type = integer_type_node;
4784 /* Now create the decl, which may be a VAR_DECL, a PARM_DECL
4785 or a FUNCTION_DECL, depending on DECL_CONTEXT and TYPE. */
4788 tree decl;
4790 if (decl_context == PARM)
4792 tree type_as_written;
4793 tree promoted_type;
4795 /* A parameter declared as an array of T is really a pointer to T.
4796 One declared as a function is really a pointer to a function. */
4798 if (TREE_CODE (type) == ARRAY_TYPE)
4800 /* Transfer const-ness of array into that of type pointed to. */
4801 type = TREE_TYPE (type);
4802 if (type_quals)
4803 type = c_build_qualified_type (type, type_quals);
4804 type = build_pointer_type (type);
4805 type_quals = TYPE_UNQUALIFIED;
4806 if (array_ptr_quals)
4808 tree new_ptr_quals, new_ptr_attrs;
4809 int erred = 0;
4810 split_specs_attrs (array_ptr_quals, &new_ptr_quals, &new_ptr_attrs);
4811 /* We don't yet implement attributes in this context. */
4812 if (new_ptr_attrs != NULL_TREE)
4813 warning ("attributes in parameter array declarator ignored");
4815 constp = 0;
4816 volatilep = 0;
4817 restrictp = 0;
4818 for (; new_ptr_quals; new_ptr_quals = TREE_CHAIN (new_ptr_quals))
4820 tree qualifier = TREE_VALUE (new_ptr_quals);
4822 if (C_IS_RESERVED_WORD (qualifier))
4824 if (C_RID_CODE (qualifier) == RID_CONST)
4825 constp++;
4826 else if (C_RID_CODE (qualifier) == RID_VOLATILE)
4827 volatilep++;
4828 else if (C_RID_CODE (qualifier) == RID_RESTRICT)
4829 restrictp++;
4830 else
4831 erred++;
4833 else
4834 erred++;
4837 if (erred)
4838 error ("invalid type modifier within array declarator");
4840 type_quals = ((constp ? TYPE_QUAL_CONST : 0)
4841 | (restrictp ? TYPE_QUAL_RESTRICT : 0)
4842 | (volatilep ? TYPE_QUAL_VOLATILE : 0));
4844 size_varies = 0;
4846 else if (TREE_CODE (type) == FUNCTION_TYPE)
4848 if (pedantic && type_quals)
4849 pedwarn ("ISO C forbids qualified function types");
4850 if (type_quals)
4851 type = c_build_qualified_type (type, type_quals);
4852 type = build_pointer_type (type);
4853 type_quals = TYPE_UNQUALIFIED;
4855 else if (type_quals)
4856 type = c_build_qualified_type (type, type_quals);
4858 type_as_written = type;
4860 decl = build_decl (PARM_DECL, declarator, type);
4861 if (size_varies)
4862 C_DECL_VARIABLE_SIZE (decl) = 1;
4864 /* Compute the type actually passed in the parmlist,
4865 for the case where there is no prototype.
4866 (For example, shorts and chars are passed as ints.)
4867 When there is a prototype, this is overridden later. */
4869 if (type == error_mark_node)
4870 promoted_type = type;
4871 else
4873 promoted_type = simple_type_promotes_to (type);
4874 if (! promoted_type)
4875 promoted_type = type;
4878 DECL_ARG_TYPE (decl) = promoted_type;
4879 DECL_ARG_TYPE_AS_WRITTEN (decl) = type_as_written;
4881 else if (decl_context == FIELD)
4883 /* Structure field. It may not be a function. */
4885 if (TREE_CODE (type) == FUNCTION_TYPE)
4887 error ("field `%s' declared as a function", name);
4888 type = build_pointer_type (type);
4890 else if (TREE_CODE (type) != ERROR_MARK
4891 && !COMPLETE_OR_UNBOUND_ARRAY_TYPE_P (type))
4893 error ("field `%s' has incomplete type", name);
4894 type = error_mark_node;
4896 /* Move type qualifiers down to element of an array. */
4897 if (TREE_CODE (type) == ARRAY_TYPE && type_quals)
4899 type = build_array_type (c_build_qualified_type (TREE_TYPE (type),
4900 type_quals),
4901 TYPE_DOMAIN (type));
4902 #if 0
4903 /* Leave the field const or volatile as well. */
4904 type_quals = TYPE_UNQUALIFIED;
4905 #endif
4907 decl = build_decl (FIELD_DECL, declarator, type);
4908 DECL_NONADDRESSABLE_P (decl) = bitfield;
4910 if (size_varies)
4911 C_DECL_VARIABLE_SIZE (decl) = 1;
4913 else if (TREE_CODE (type) == FUNCTION_TYPE)
4915 /* Every function declaration is "external"
4916 except for those which are inside a function body
4917 in which `auto' is used.
4918 That is a case not specified by ANSI C,
4919 and we use it for forward declarations for nested functions. */
4920 int extern_ref = (!(specbits & (1 << (int) RID_AUTO))
4921 || current_binding_level == global_binding_level);
4923 if (specbits & (1 << (int) RID_AUTO)
4924 && (pedantic || current_binding_level == global_binding_level))
4925 pedwarn ("invalid storage class for function `%s'", name);
4926 if (specbits & (1 << (int) RID_REGISTER))
4927 error ("invalid storage class for function `%s'", name);
4928 /* Function declaration not at top level.
4929 Storage classes other than `extern' are not allowed
4930 and `extern' makes no difference. */
4931 if (current_binding_level != global_binding_level
4932 && (specbits & ((1 << (int) RID_STATIC) | (1 << (int) RID_INLINE)))
4933 && pedantic)
4934 pedwarn ("invalid storage class for function `%s'", name);
4936 decl = build_decl (FUNCTION_DECL, declarator, type);
4937 decl = build_decl_attribute_variant (decl, decl_attr);
4939 DECL_LANG_SPECIFIC (decl) = (struct lang_decl *)
4940 ggc_alloc_cleared (sizeof (struct lang_decl));
4942 if (pedantic && type_quals && ! DECL_IN_SYSTEM_HEADER (decl))
4943 pedwarn ("ISO C forbids qualified function types");
4945 /* GNU C interprets a `volatile void' return type to indicate
4946 that the function does not return. */
4947 if ((type_quals & TYPE_QUAL_VOLATILE)
4948 && !VOID_TYPE_P (TREE_TYPE (TREE_TYPE (decl))))
4949 warning ("`noreturn' function returns non-void value");
4951 if (extern_ref)
4952 DECL_EXTERNAL (decl) = 1;
4953 /* Record absence of global scope for `static' or `auto'. */
4954 TREE_PUBLIC (decl)
4955 = !(specbits & ((1 << (int) RID_STATIC) | (1 << (int) RID_AUTO)));
4957 /* Record presence of `inline', if it is reasonable. */
4958 if (MAIN_NAME_P (declarator))
4960 if (inlinep)
4961 warning ("cannot inline function `main'");
4963 else if (inlinep)
4965 /* Assume that otherwise the function can be inlined. */
4966 DECL_INLINE (decl) = 1;
4967 DECL_DECLARED_INLINE_P (decl) = 1;
4969 if (specbits & (1 << (int) RID_EXTERN))
4970 current_extern_inline = 1;
4972 /* If -finline-functions, assume it can be inlined. This does
4973 two things: let the function be deferred until it is actually
4974 needed, and let dwarf2 know that the function is inlinable. */
4975 else if (flag_inline_trees == 2)
4977 DECL_INLINE (decl) = 1;
4978 DECL_DECLARED_INLINE_P (decl) = 0;
4981 else
4983 /* It's a variable. */
4984 /* An uninitialized decl with `extern' is a reference. */
4985 int extern_ref = !initialized && (specbits & (1 << (int) RID_EXTERN));
4987 /* Move type qualifiers down to element of an array. */
4988 if (TREE_CODE (type) == ARRAY_TYPE && type_quals)
4990 int saved_align = TYPE_ALIGN(type);
4991 type = build_array_type (c_build_qualified_type (TREE_TYPE (type),
4992 type_quals),
4993 TYPE_DOMAIN (type));
4994 TYPE_ALIGN (type) = saved_align;
4995 #if 0 /* Leave the variable const or volatile as well. */
4996 type_quals = TYPE_UNQUALIFIED;
4997 #endif
4999 else if (type_quals)
5000 type = c_build_qualified_type (type, type_quals);
5002 decl = build_decl (VAR_DECL, declarator, type);
5003 if (size_varies)
5004 C_DECL_VARIABLE_SIZE (decl) = 1;
5006 if (inlinep)
5007 pedwarn_with_decl (decl, "variable `%s' declared `inline'");
5009 DECL_EXTERNAL (decl) = extern_ref;
5010 /* At top level, the presence of a `static' or `register' storage
5011 class specifier, or the absence of all storage class specifiers
5012 makes this declaration a definition (perhaps tentative). Also,
5013 the absence of both `static' and `register' makes it public. */
5014 if (current_binding_level == global_binding_level)
5016 TREE_PUBLIC (decl)
5017 = !(specbits
5018 & ((1 << (int) RID_STATIC) | (1 << (int) RID_REGISTER)));
5019 TREE_STATIC (decl) = ! DECL_EXTERNAL (decl);
5021 /* Not at top level, only `static' makes a static definition. */
5022 else
5024 TREE_STATIC (decl) = (specbits & (1 << (int) RID_STATIC)) != 0;
5025 TREE_PUBLIC (decl) = DECL_EXTERNAL (decl);
5029 /* Record `register' declaration for warnings on &
5030 and in case doing stupid register allocation. */
5032 if (specbits & (1 << (int) RID_REGISTER))
5033 DECL_REGISTER (decl) = 1;
5035 /* Record constancy and volatility. */
5036 c_apply_type_quals_to_decl (type_quals, decl);
5038 /* If a type has volatile components, it should be stored in memory.
5039 Otherwise, the fact that those components are volatile
5040 will be ignored, and would even crash the compiler. */
5041 if (C_TYPE_FIELDS_VOLATILE (TREE_TYPE (decl)))
5042 mark_addressable (decl);
5044 decl_attributes (&decl, returned_attrs, 0);
5046 return decl;
5050 /* Decode the parameter-list info for a function type or function definition.
5051 The argument is the value returned by `get_parm_info' (or made in parse.y
5052 if there is an identifier list instead of a parameter decl list).
5053 These two functions are separate because when a function returns
5054 or receives functions then each is called multiple times but the order
5055 of calls is different. The last call to `grokparms' is always the one
5056 that contains the formal parameter names of a function definition.
5058 Store in `last_function_parms' a chain of the decls of parms.
5059 Also store in `last_function_parm_tags' a chain of the struct, union,
5060 and enum tags declared among the parms.
5062 Return a list of arg types to use in the FUNCTION_TYPE for this function.
5064 FUNCDEF_FLAG is nonzero for a function definition, 0 for
5065 a mere declaration. A nonempty identifier-list gets an error message
5066 when FUNCDEF_FLAG is zero. */
5068 static tree
5069 grokparms (parms_info, funcdef_flag)
5070 tree parms_info;
5071 int funcdef_flag;
5073 tree first_parm = TREE_CHAIN (parms_info);
5075 last_function_parms = TREE_PURPOSE (parms_info);
5076 last_function_parm_tags = TREE_VALUE (parms_info);
5078 if (warn_strict_prototypes && first_parm == 0 && !funcdef_flag
5079 && !in_system_header)
5080 warning ("function declaration isn't a prototype");
5082 if (first_parm != 0
5083 && TREE_CODE (TREE_VALUE (first_parm)) == IDENTIFIER_NODE)
5085 if (! funcdef_flag)
5086 pedwarn ("parameter names (without types) in function declaration");
5088 last_function_parms = first_parm;
5089 return 0;
5091 else
5093 tree parm;
5094 tree typelt;
5095 /* We no longer test FUNCDEF_FLAG.
5096 If the arg types are incomplete in a declaration,
5097 they must include undefined tags.
5098 These tags can never be defined in the scope of the declaration,
5099 so the types can never be completed,
5100 and no call can be compiled successfully. */
5101 #if 0
5102 /* In a fcn definition, arg types must be complete. */
5103 if (funcdef_flag)
5104 #endif
5105 for (parm = last_function_parms, typelt = first_parm;
5106 parm;
5107 parm = TREE_CHAIN (parm))
5108 /* Skip over any enumeration constants declared here. */
5109 if (TREE_CODE (parm) == PARM_DECL)
5111 /* Barf if the parameter itself has an incomplete type. */
5112 tree type = TREE_VALUE (typelt);
5113 if (type == error_mark_node)
5114 continue;
5115 if (!COMPLETE_TYPE_P (type))
5117 if (funcdef_flag && DECL_NAME (parm) != 0)
5118 error ("parameter `%s' has incomplete type",
5119 IDENTIFIER_POINTER (DECL_NAME (parm)));
5120 else
5121 warning ("parameter has incomplete type");
5122 if (funcdef_flag)
5124 TREE_VALUE (typelt) = error_mark_node;
5125 TREE_TYPE (parm) = error_mark_node;
5128 #if 0
5129 /* This has been replaced by parm_tags_warning, which
5130 uses a more accurate criterion for what to warn
5131 about. */
5132 else
5134 /* Now warn if is a pointer to an incomplete type. */
5135 while (TREE_CODE (type) == POINTER_TYPE
5136 || TREE_CODE (type) == REFERENCE_TYPE)
5137 type = TREE_TYPE (type);
5138 type = TYPE_MAIN_VARIANT (type);
5139 if (!COMPLETE_TYPE_P (type))
5141 if (DECL_NAME (parm) != 0)
5142 warning ("parameter `%s' points to incomplete type",
5143 IDENTIFIER_POINTER (DECL_NAME (parm)));
5144 else
5145 warning ("parameter points to incomplete type");
5148 #endif
5149 typelt = TREE_CHAIN (typelt);
5152 return first_parm;
5156 /* Return a tree_list node with info on a parameter list just parsed.
5157 The TREE_PURPOSE is a chain of decls of those parms.
5158 The TREE_VALUE is a list of structure, union and enum tags defined.
5159 The TREE_CHAIN is a list of argument types to go in the FUNCTION_TYPE.
5160 This tree_list node is later fed to `grokparms'.
5162 VOID_AT_END nonzero means append `void' to the end of the type-list.
5163 Zero means the parmlist ended with an ellipsis so don't append `void'. */
5165 tree
5166 get_parm_info (void_at_end)
5167 int void_at_end;
5169 tree decl, t;
5170 tree types = 0;
5171 int erred = 0;
5172 tree tags = gettags ();
5173 tree parms = getdecls ();
5174 tree new_parms = 0;
5175 tree order = current_binding_level->parm_order;
5177 /* Just `void' (and no ellipsis) is special. There are really no parms.
5178 But if the `void' is qualified (by `const' or `volatile') or has a
5179 storage class specifier (`register'), then the behavior is undefined;
5180 by not counting it as the special case of `void' we will cause an
5181 error later. Typedefs for `void' are OK (see DR#157). */
5182 if (void_at_end && parms != 0
5183 && TREE_CHAIN (parms) == 0
5184 && VOID_TYPE_P (TREE_TYPE (parms))
5185 && ! TREE_THIS_VOLATILE (parms)
5186 && ! TREE_READONLY (parms)
5187 && ! DECL_REGISTER (parms)
5188 && DECL_NAME (parms) == 0)
5190 parms = NULL_TREE;
5191 storedecls (NULL_TREE);
5192 return tree_cons (NULL_TREE, NULL_TREE,
5193 tree_cons (NULL_TREE, void_type_node, NULL_TREE));
5196 /* Extract enumerator values and other non-parms declared with the parms.
5197 Likewise any forward parm decls that didn't have real parm decls. */
5198 for (decl = parms; decl;)
5200 tree next = TREE_CHAIN (decl);
5202 if (TREE_CODE (decl) != PARM_DECL)
5204 TREE_CHAIN (decl) = new_parms;
5205 new_parms = decl;
5207 else if (TREE_ASM_WRITTEN (decl))
5209 error_with_decl (decl,
5210 "parameter `%s' has just a forward declaration");
5211 TREE_CHAIN (decl) = new_parms;
5212 new_parms = decl;
5214 decl = next;
5217 /* Put the parm decls back in the order they were in in the parm list. */
5218 for (t = order; t; t = TREE_CHAIN (t))
5220 if (TREE_CHAIN (t))
5221 TREE_CHAIN (TREE_VALUE (t)) = TREE_VALUE (TREE_CHAIN (t));
5222 else
5223 TREE_CHAIN (TREE_VALUE (t)) = 0;
5226 new_parms = chainon (order ? nreverse (TREE_VALUE (order)) : 0,
5227 new_parms);
5229 /* Store the parmlist in the binding level since the old one
5230 is no longer a valid list. (We have changed the chain pointers.) */
5231 storedecls (new_parms);
5233 for (decl = new_parms; decl; decl = TREE_CHAIN (decl))
5234 /* There may also be declarations for enumerators if an enumeration
5235 type is declared among the parms. Ignore them here. */
5236 if (TREE_CODE (decl) == PARM_DECL)
5238 /* Since there is a prototype,
5239 args are passed in their declared types. */
5240 tree type = TREE_TYPE (decl);
5241 DECL_ARG_TYPE (decl) = type;
5242 if (PROMOTE_PROTOTYPES
5243 && INTEGRAL_TYPE_P (type)
5244 && TYPE_PRECISION (type) < TYPE_PRECISION (integer_type_node))
5245 DECL_ARG_TYPE (decl) = integer_type_node;
5247 types = tree_cons (NULL_TREE, TREE_TYPE (decl), types);
5248 if (VOID_TYPE_P (TREE_VALUE (types)) && ! erred
5249 && DECL_NAME (decl) == 0)
5251 error ("`void' in parameter list must be the entire list");
5252 erred = 1;
5256 if (void_at_end)
5257 return tree_cons (new_parms, tags,
5258 nreverse (tree_cons (NULL_TREE, void_type_node, types)));
5260 return tree_cons (new_parms, tags, nreverse (types));
5263 /* At end of parameter list, warn about any struct, union or enum tags
5264 defined within. Do so because these types cannot ever become complete. */
5266 void
5267 parmlist_tags_warning ()
5269 tree elt;
5270 static int already;
5272 for (elt = current_binding_level->tags; elt; elt = TREE_CHAIN (elt))
5274 enum tree_code code = TREE_CODE (TREE_VALUE (elt));
5275 /* An anonymous union parm type is meaningful as a GNU extension.
5276 So don't warn for that. */
5277 if (code == UNION_TYPE && TREE_PURPOSE (elt) == 0 && !pedantic)
5278 continue;
5279 if (TREE_PURPOSE (elt) != 0)
5281 if (code == RECORD_TYPE)
5282 warning ("`struct %s' declared inside parameter list",
5283 IDENTIFIER_POINTER (TREE_PURPOSE (elt)));
5284 else if (code == UNION_TYPE)
5285 warning ("`union %s' declared inside parameter list",
5286 IDENTIFIER_POINTER (TREE_PURPOSE (elt)));
5287 else
5288 warning ("`enum %s' declared inside parameter list",
5289 IDENTIFIER_POINTER (TREE_PURPOSE (elt)));
5291 else
5293 /* For translation these need to be separate warnings */
5294 if (code == RECORD_TYPE)
5295 warning ("anonymous struct declared inside parameter list");
5296 else if (code == UNION_TYPE)
5297 warning ("anonymous union declared inside parameter list");
5298 else
5299 warning ("anonymous enum declared inside parameter list");
5301 if (! already)
5303 warning ("its scope is only this definition or declaration, which is probably not what you want.");
5304 already = 1;
5309 /* Get the struct, enum or union (CODE says which) with tag NAME.
5310 Define the tag as a forward-reference if it is not defined. */
5312 tree
5313 xref_tag (code, name)
5314 enum tree_code code;
5315 tree name;
5317 /* If a cross reference is requested, look up the type
5318 already defined for this tag and return it. */
5320 tree ref = lookup_tag (code, name, current_binding_level, 0);
5321 /* If this is the right type of tag, return what we found.
5322 (This reference will be shadowed by shadow_tag later if appropriate.)
5323 If this is the wrong type of tag, do not return it. If it was the
5324 wrong type in the same binding level, we will have had an error
5325 message already; if in a different binding level and declaring
5326 a name, pending_xref_error will give an error message; but if in a
5327 different binding level and not declaring a name, this tag should
5328 shadow the previous declaration of a different type of tag, and
5329 this would not work properly if we return the reference found.
5330 (For example, with "struct foo" in an outer scope, "union foo;"
5331 must shadow that tag with a new one of union type.) */
5332 if (ref && TREE_CODE (ref) == code)
5333 return ref;
5335 /* If no such tag is yet defined, create a forward-reference node
5336 and record it as the "definition".
5337 When a real declaration of this type is found,
5338 the forward-reference will be altered into a real type. */
5340 ref = make_node (code);
5341 if (code == ENUMERAL_TYPE)
5343 /* Give the type a default layout like unsigned int
5344 to avoid crashing if it does not get defined. */
5345 TYPE_MODE (ref) = TYPE_MODE (unsigned_type_node);
5346 TYPE_ALIGN (ref) = TYPE_ALIGN (unsigned_type_node);
5347 TYPE_USER_ALIGN (ref) = 0;
5348 TREE_UNSIGNED (ref) = 1;
5349 TYPE_PRECISION (ref) = TYPE_PRECISION (unsigned_type_node);
5350 TYPE_MIN_VALUE (ref) = TYPE_MIN_VALUE (unsigned_type_node);
5351 TYPE_MAX_VALUE (ref) = TYPE_MAX_VALUE (unsigned_type_node);
5354 pushtag (name, ref);
5356 return ref;
5359 /* Make sure that the tag NAME is defined *in the current binding level*
5360 at least as a forward reference.
5361 CODE says which kind of tag NAME ought to be. */
5363 tree
5364 start_struct (code, name)
5365 enum tree_code code;
5366 tree name;
5368 /* If there is already a tag defined at this binding level
5369 (as a forward reference), just return it. */
5371 tree ref = 0;
5373 if (name != 0)
5374 ref = lookup_tag (code, name, current_binding_level, 1);
5375 if (ref && TREE_CODE (ref) == code)
5377 C_TYPE_BEING_DEFINED (ref) = 1;
5378 TYPE_PACKED (ref) = flag_pack_struct;
5379 if (TYPE_FIELDS (ref))
5381 if (code == UNION_TYPE)
5382 error ("redefinition of `union %s'",
5383 IDENTIFIER_POINTER (name));
5384 else
5385 error ("redefinition of `struct %s'",
5386 IDENTIFIER_POINTER (name));
5389 return ref;
5392 /* Otherwise create a forward-reference just so the tag is in scope. */
5394 ref = make_node (code);
5395 pushtag (name, ref);
5396 C_TYPE_BEING_DEFINED (ref) = 1;
5397 TYPE_PACKED (ref) = flag_pack_struct;
5398 return ref;
5401 /* Process the specs, declarator (NULL if omitted) and width (NULL if omitted)
5402 of a structure component, returning a FIELD_DECL node.
5403 WIDTH is non-NULL for bit fields only, and is an INTEGER_CST node.
5405 This is done during the parsing of the struct declaration.
5406 The FIELD_DECL nodes are chained together and the lot of them
5407 are ultimately passed to `build_struct' to make the RECORD_TYPE node. */
5409 tree
5410 grokfield (filename, line, declarator, declspecs, width)
5411 const char *filename ATTRIBUTE_UNUSED;
5412 int line ATTRIBUTE_UNUSED;
5413 tree declarator, declspecs, width;
5415 tree value;
5417 if (declarator == NULL_TREE && width == NULL_TREE)
5419 /* This is an unnamed decl. We only support unnamed
5420 structs/unions, so check for other things and refuse them. */
5421 if (TREE_CODE (TREE_VALUE (declspecs)) != RECORD_TYPE
5422 && TREE_CODE (TREE_VALUE (declspecs)) != UNION_TYPE)
5424 error ("unnamed fields of type other than struct or union are not allowed");
5425 return NULL_TREE;
5429 value = grokdeclarator (declarator, declspecs, width ? BITFIELD : FIELD, 0);
5431 finish_decl (value, NULL_TREE, NULL_TREE);
5432 DECL_INITIAL (value) = width;
5434 maybe_objc_check_decl (value);
5435 return value;
5438 /* Fill in the fields of a RECORD_TYPE or UNION_TYPE node, T.
5439 FIELDLIST is a chain of FIELD_DECL nodes for the fields.
5440 ATTRIBUTES are attributes to be applied to the structure. */
5442 tree
5443 finish_struct (t, fieldlist, attributes)
5444 tree t;
5445 tree fieldlist;
5446 tree attributes;
5448 tree x;
5449 int toplevel = global_binding_level == current_binding_level;
5450 int saw_named_field;
5452 /* If this type was previously laid out as a forward reference,
5453 make sure we lay it out again. */
5455 TYPE_SIZE (t) = 0;
5457 decl_attributes (&t, attributes, (int) ATTR_FLAG_TYPE_IN_PLACE);
5459 /* Nameless union parm types are useful as GCC extension. */
5460 if (! (TREE_CODE (t) == UNION_TYPE && TYPE_NAME (t) == 0) && !pedantic)
5461 /* Otherwise, warn about any struct or union def. in parmlist. */
5462 if (in_parm_level_p ())
5464 if (pedantic)
5465 pedwarn ("%s defined inside parms",
5466 TREE_CODE (t) == UNION_TYPE ? _("union") : _("structure"));
5467 else if (! flag_traditional)
5468 warning ("%s defined inside parms",
5469 TREE_CODE (t) == UNION_TYPE ? _("union") : _("structure"));
5472 if (pedantic)
5474 for (x = fieldlist; x; x = TREE_CHAIN (x))
5475 if (DECL_NAME (x) != 0)
5476 break;
5478 if (x == 0)
5479 pedwarn ("%s has no %s",
5480 TREE_CODE (t) == UNION_TYPE ? _("union") : _("struct"),
5481 fieldlist ? _("named members") : _("members"));
5484 /* Install struct as DECL_CONTEXT of each field decl.
5485 Also process specified field sizes,m which is found in the DECL_INITIAL.
5486 Store 0 there, except for ": 0" fields (so we can find them
5487 and delete them, below). */
5489 saw_named_field = 0;
5490 for (x = fieldlist; x; x = TREE_CHAIN (x))
5492 DECL_CONTEXT (x) = t;
5493 DECL_PACKED (x) |= TYPE_PACKED (t);
5495 /* If any field is const, the structure type is pseudo-const. */
5496 if (TREE_READONLY (x))
5497 C_TYPE_FIELDS_READONLY (t) = 1;
5498 else
5500 /* A field that is pseudo-const makes the structure likewise. */
5501 tree t1 = TREE_TYPE (x);
5502 while (TREE_CODE (t1) == ARRAY_TYPE)
5503 t1 = TREE_TYPE (t1);
5504 if ((TREE_CODE (t1) == RECORD_TYPE || TREE_CODE (t1) == UNION_TYPE)
5505 && C_TYPE_FIELDS_READONLY (t1))
5506 C_TYPE_FIELDS_READONLY (t) = 1;
5509 /* Any field that is volatile means variables of this type must be
5510 treated in some ways as volatile. */
5511 if (TREE_THIS_VOLATILE (x))
5512 C_TYPE_FIELDS_VOLATILE (t) = 1;
5514 /* Any field of nominal variable size implies structure is too. */
5515 if (C_DECL_VARIABLE_SIZE (x))
5516 C_TYPE_VARIABLE_SIZE (t) = 1;
5518 /* Detect invalid nested redefinition. */
5519 if (TREE_TYPE (x) == t)
5520 error ("nested redefinition of `%s'",
5521 IDENTIFIER_POINTER (TYPE_NAME (t)));
5523 /* Detect invalid bit-field size. */
5524 if (DECL_INITIAL (x))
5525 STRIP_NOPS (DECL_INITIAL (x));
5526 if (DECL_INITIAL (x))
5528 if (TREE_CODE (DECL_INITIAL (x)) == INTEGER_CST)
5529 constant_expression_warning (DECL_INITIAL (x));
5530 else
5532 error_with_decl (x,
5533 "bit-field `%s' width not an integer constant");
5534 DECL_INITIAL (x) = NULL;
5538 /* Detect invalid bit-field type. */
5539 if (DECL_INITIAL (x)
5540 && TREE_CODE (TREE_TYPE (x)) != INTEGER_TYPE
5541 && TREE_CODE (TREE_TYPE (x)) != BOOLEAN_TYPE
5542 && TREE_CODE (TREE_TYPE (x)) != ENUMERAL_TYPE)
5544 error_with_decl (x, "bit-field `%s' has invalid type");
5545 DECL_INITIAL (x) = NULL;
5548 if (DECL_INITIAL (x) && pedantic
5549 && TYPE_MAIN_VARIANT (TREE_TYPE (x)) != integer_type_node
5550 && TYPE_MAIN_VARIANT (TREE_TYPE (x)) != unsigned_type_node
5551 && TYPE_MAIN_VARIANT (TREE_TYPE (x)) != c_bool_type_node
5552 /* Accept an enum that's equivalent to int or unsigned int. */
5553 && !(TREE_CODE (TREE_TYPE (x)) == ENUMERAL_TYPE
5554 && (TYPE_PRECISION (TREE_TYPE (x))
5555 == TYPE_PRECISION (integer_type_node))))
5556 pedwarn_with_decl (x, "bit-field `%s' type invalid in ISO C");
5558 /* Detect and ignore out of range field width and process valid
5559 field widths. */
5560 if (DECL_INITIAL (x))
5562 int max_width;
5563 if (TYPE_MAIN_VARIANT (TREE_TYPE (x)) == c_bool_type_node)
5564 max_width = CHAR_TYPE_SIZE;
5565 else
5566 max_width = TYPE_PRECISION (TREE_TYPE (x));
5567 if (tree_int_cst_sgn (DECL_INITIAL (x)) < 0)
5568 error_with_decl (x, "negative width in bit-field `%s'");
5569 else if (0 < compare_tree_int (DECL_INITIAL (x), max_width))
5570 pedwarn_with_decl (x, "width of `%s' exceeds its type");
5571 else if (integer_zerop (DECL_INITIAL (x)) && DECL_NAME (x) != 0)
5572 error_with_decl (x, "zero width for bit-field `%s'");
5573 else
5575 /* The test above has assured us that TREE_INT_CST_HIGH is 0. */
5576 unsigned HOST_WIDE_INT width
5577 = TREE_INT_CST_LOW (DECL_INITIAL (x));
5579 if (TREE_CODE (TREE_TYPE (x)) == ENUMERAL_TYPE
5580 && (width < min_precision (TYPE_MIN_VALUE (TREE_TYPE (x)),
5581 TREE_UNSIGNED (TREE_TYPE (x)))
5582 || (width
5583 < min_precision (TYPE_MAX_VALUE (TREE_TYPE (x)),
5584 TREE_UNSIGNED (TREE_TYPE (x))))))
5585 warning_with_decl (x,
5586 "`%s' is narrower than values of its type");
5588 DECL_SIZE (x) = bitsize_int (width);
5589 DECL_BIT_FIELD (x) = 1;
5590 SET_DECL_C_BIT_FIELD (x);
5592 if (width == 0)
5594 /* field size 0 => force desired amount of alignment. */
5595 #ifdef EMPTY_FIELD_BOUNDARY
5596 DECL_ALIGN (x) = MAX (DECL_ALIGN (x), EMPTY_FIELD_BOUNDARY);
5597 #endif
5598 #ifdef PCC_BITFIELD_TYPE_MATTERS
5599 if (PCC_BITFIELD_TYPE_MATTERS)
5601 DECL_ALIGN (x) = MAX (DECL_ALIGN (x),
5602 TYPE_ALIGN (TREE_TYPE (x)));
5603 DECL_USER_ALIGN (x) |= TYPE_USER_ALIGN (TREE_TYPE (x));
5605 #endif
5610 else if (TREE_TYPE (x) != error_mark_node)
5612 unsigned int min_align = (DECL_PACKED (x) ? BITS_PER_UNIT
5613 : TYPE_ALIGN (TREE_TYPE (x)));
5615 /* Non-bit-fields are aligned for their type, except packed
5616 fields which require only BITS_PER_UNIT alignment. */
5617 DECL_ALIGN (x) = MAX (DECL_ALIGN (x), min_align);
5618 if (! DECL_PACKED (x))
5619 DECL_USER_ALIGN (x) |= TYPE_USER_ALIGN (TREE_TYPE (x));
5622 DECL_INITIAL (x) = 0;
5624 /* Detect flexible array member in an invalid context. */
5625 if (TREE_CODE (TREE_TYPE (x)) == ARRAY_TYPE
5626 && TYPE_SIZE (TREE_TYPE (x)) == NULL_TREE
5627 && TYPE_DOMAIN (TREE_TYPE (x)) != NULL_TREE
5628 && TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (x))) == NULL_TREE)
5630 if (TREE_CODE (t) == UNION_TYPE)
5631 error_with_decl (x, "flexible array member in union");
5632 else if (TREE_CHAIN (x) != NULL_TREE)
5633 error_with_decl (x, "flexible array member not at end of struct");
5634 else if (! saw_named_field)
5635 error_with_decl (x, "flexible array member in otherwise empty struct");
5637 if (DECL_NAME (x))
5638 saw_named_field = 1;
5641 /* Delete all duplicate fields from the fieldlist */
5642 for (x = fieldlist; x && TREE_CHAIN (x);)
5643 /* Anonymous fields aren't duplicates. */
5644 if (DECL_NAME (TREE_CHAIN (x)) == 0)
5645 x = TREE_CHAIN (x);
5646 else
5648 tree y = fieldlist;
5650 while (1)
5652 if (DECL_NAME (y) == DECL_NAME (TREE_CHAIN (x)))
5653 break;
5654 if (y == x)
5655 break;
5656 y = TREE_CHAIN (y);
5658 if (DECL_NAME (y) == DECL_NAME (TREE_CHAIN (x)))
5660 error_with_decl (TREE_CHAIN (x), "duplicate member `%s'");
5661 TREE_CHAIN (x) = TREE_CHAIN (TREE_CHAIN (x));
5663 else
5664 x = TREE_CHAIN (x);
5667 /* Now we have the nearly final fieldlist. Record it,
5668 then lay out the structure or union (including the fields). */
5670 TYPE_FIELDS (t) = fieldlist;
5672 layout_type (t);
5674 /* Delete all zero-width bit-fields from the fieldlist */
5676 tree *fieldlistp = &fieldlist;
5677 while (*fieldlistp)
5678 if (TREE_CODE (*fieldlistp) == FIELD_DECL && DECL_INITIAL (*fieldlistp))
5679 *fieldlistp = TREE_CHAIN (*fieldlistp);
5680 else
5681 fieldlistp = &TREE_CHAIN (*fieldlistp);
5684 /* Now we have the truly final field list.
5685 Store it in this type and in the variants. */
5687 TYPE_FIELDS (t) = fieldlist;
5689 for (x = TYPE_MAIN_VARIANT (t); x; x = TYPE_NEXT_VARIANT (x))
5691 TYPE_FIELDS (x) = TYPE_FIELDS (t);
5692 TYPE_LANG_SPECIFIC (x) = TYPE_LANG_SPECIFIC (t);
5693 TYPE_ALIGN (x) = TYPE_ALIGN (t);
5694 TYPE_USER_ALIGN (x) = TYPE_USER_ALIGN (t);
5697 /* If this was supposed to be a transparent union, but we can't
5698 make it one, warn and turn off the flag. */
5699 if (TREE_CODE (t) == UNION_TYPE
5700 && TYPE_TRANSPARENT_UNION (t)
5701 && TYPE_MODE (t) != DECL_MODE (TYPE_FIELDS (t)))
5703 TYPE_TRANSPARENT_UNION (t) = 0;
5704 warning ("union cannot be made transparent");
5707 /* If this structure or union completes the type of any previous
5708 variable declaration, lay it out and output its rtl. */
5710 if (current_binding_level->n_incomplete != 0)
5712 tree decl;
5713 for (decl = current_binding_level->names; decl; decl = TREE_CHAIN (decl))
5715 if (TYPE_MAIN_VARIANT (TREE_TYPE (decl)) == TYPE_MAIN_VARIANT (t)
5716 && TREE_CODE (decl) != TYPE_DECL)
5718 layout_decl (decl, 0);
5719 /* This is a no-op in c-lang.c or something real in objc-actions.c. */
5720 maybe_objc_check_decl (decl);
5721 rest_of_decl_compilation (decl, NULL, toplevel, 0);
5722 if (! toplevel)
5723 expand_decl (decl);
5724 --current_binding_level->n_incomplete;
5726 else if (!COMPLETE_TYPE_P (TREE_TYPE (decl))
5727 && TREE_CODE (TREE_TYPE (decl)) == ARRAY_TYPE)
5729 tree element = TREE_TYPE (decl);
5730 while (TREE_CODE (element) == ARRAY_TYPE)
5731 element = TREE_TYPE (element);
5732 if (element == t)
5733 layout_array_type (TREE_TYPE (decl));
5738 /* Finish debugging output for this type. */
5739 rest_of_type_compilation (t, toplevel);
5741 return t;
5744 /* Lay out the type T, and its element type, and so on. */
5746 static void
5747 layout_array_type (t)
5748 tree t;
5750 if (TREE_CODE (TREE_TYPE (t)) == ARRAY_TYPE)
5751 layout_array_type (TREE_TYPE (t));
5752 layout_type (t);
5755 /* Begin compiling the definition of an enumeration type.
5756 NAME is its name (or null if anonymous).
5757 Returns the type object, as yet incomplete.
5758 Also records info about it so that build_enumerator
5759 may be used to declare the individual values as they are read. */
5761 tree
5762 start_enum (name)
5763 tree name;
5765 tree enumtype = 0;
5767 /* If this is the real definition for a previous forward reference,
5768 fill in the contents in the same object that used to be the
5769 forward reference. */
5771 if (name != 0)
5772 enumtype = lookup_tag (ENUMERAL_TYPE, name, current_binding_level, 1);
5774 if (enumtype == 0 || TREE_CODE (enumtype) != ENUMERAL_TYPE)
5776 enumtype = make_node (ENUMERAL_TYPE);
5777 pushtag (name, enumtype);
5780 C_TYPE_BEING_DEFINED (enumtype) = 1;
5782 if (TYPE_VALUES (enumtype) != 0)
5784 /* This enum is a named one that has been declared already. */
5785 error ("redeclaration of `enum %s'", IDENTIFIER_POINTER (name));
5787 /* Completely replace its old definition.
5788 The old enumerators remain defined, however. */
5789 TYPE_VALUES (enumtype) = 0;
5792 enum_next_value = integer_zero_node;
5793 enum_overflow = 0;
5795 if (flag_short_enums)
5796 TYPE_PACKED (enumtype) = 1;
5798 return enumtype;
5801 /* After processing and defining all the values of an enumeration type,
5802 install their decls in the enumeration type and finish it off.
5803 ENUMTYPE is the type object, VALUES a list of decl-value pairs,
5804 and ATTRIBUTES are the specified attributes.
5805 Returns ENUMTYPE. */
5807 tree
5808 finish_enum (enumtype, values, attributes)
5809 tree enumtype;
5810 tree values;
5811 tree attributes;
5813 tree pair, tem;
5814 tree minnode = 0, maxnode = 0, enum_value_type;
5815 int precision, unsign;
5816 int toplevel = (global_binding_level == current_binding_level);
5818 if (in_parm_level_p ())
5819 warning ("enum defined inside parms");
5821 decl_attributes (&enumtype, attributes, (int) ATTR_FLAG_TYPE_IN_PLACE);
5823 /* Calculate the maximum value of any enumerator in this type. */
5825 if (values == error_mark_node)
5826 minnode = maxnode = integer_zero_node;
5827 else
5829 minnode = maxnode = TREE_VALUE (values);
5830 for (pair = TREE_CHAIN (values); pair; pair = TREE_CHAIN (pair))
5832 tree value = TREE_VALUE (pair);
5833 if (tree_int_cst_lt (maxnode, value))
5834 maxnode = value;
5835 if (tree_int_cst_lt (value, minnode))
5836 minnode = value;
5840 /* Construct the final type of this enumeration. It is the same
5841 as one of the integral types - the narrowest one that fits, except
5842 that normally we only go as narrow as int - and signed iff any of
5843 the values are negative. */
5844 unsign = (tree_int_cst_sgn (minnode) >= 0);
5845 precision = MAX (min_precision (minnode, unsign),
5846 min_precision (maxnode, unsign));
5847 if (TYPE_PACKED (enumtype) || precision > TYPE_PRECISION (integer_type_node))
5849 tree narrowest = type_for_size (precision, unsign);
5850 if (narrowest == 0)
5852 warning ("enumeration values exceed range of largest integer");
5853 narrowest = long_long_integer_type_node;
5856 precision = TYPE_PRECISION (narrowest);
5858 else
5859 precision = TYPE_PRECISION (integer_type_node);
5861 if (precision == TYPE_PRECISION (integer_type_node))
5862 enum_value_type = type_for_size (precision, 0);
5863 else
5864 enum_value_type = enumtype;
5866 TYPE_MIN_VALUE (enumtype) = minnode;
5867 TYPE_MAX_VALUE (enumtype) = maxnode;
5868 TYPE_PRECISION (enumtype) = precision;
5869 TREE_UNSIGNED (enumtype) = unsign;
5870 TYPE_SIZE (enumtype) = 0;
5871 layout_type (enumtype);
5873 if (values != error_mark_node)
5875 /* Change the type of the enumerators to be the enum type. We
5876 need to do this irrespective of the size of the enum, for
5877 proper type checking. Replace the DECL_INITIALs of the
5878 enumerators, and the value slots of the list, with copies
5879 that have the enum type; they cannot be modified in place
5880 because they may be shared (e.g. integer_zero_node) Finally,
5881 change the purpose slots to point to the names of the decls. */
5882 for (pair = values; pair; pair = TREE_CHAIN (pair))
5884 tree enu = TREE_PURPOSE (pair);
5886 TREE_TYPE (enu) = enumtype;
5887 DECL_SIZE (enu) = TYPE_SIZE (enumtype);
5888 DECL_SIZE_UNIT (enu) = TYPE_SIZE_UNIT (enumtype);
5889 DECL_ALIGN (enu) = TYPE_ALIGN (enumtype);
5890 DECL_USER_ALIGN (enu) = TYPE_USER_ALIGN (enumtype);
5891 DECL_MODE (enu) = TYPE_MODE (enumtype);
5893 /* The ISO C Standard mandates enumerators to have type int,
5894 even though the underlying type of an enum type is
5895 unspecified. Here we convert any enumerators that fit in
5896 an int to type int, to avoid promotions to unsigned types
5897 when comparing integers with enumerators that fit in the
5898 int range. When -pedantic is given, build_enumerator()
5899 would have already taken care of those that don't fit. */
5900 if (int_fits_type_p (DECL_INITIAL (enu), enum_value_type))
5901 DECL_INITIAL (enu) = convert (enum_value_type, DECL_INITIAL (enu));
5902 else
5903 DECL_INITIAL (enu) = convert (enumtype, DECL_INITIAL (enu));
5905 TREE_PURPOSE (pair) = DECL_NAME (enu);
5906 TREE_VALUE (pair) = DECL_INITIAL (enu);
5909 TYPE_VALUES (enumtype) = values;
5912 /* Fix up all variant types of this enum type. */
5913 for (tem = TYPE_MAIN_VARIANT (enumtype); tem; tem = TYPE_NEXT_VARIANT (tem))
5915 if (tem == enumtype)
5916 continue;
5917 TYPE_VALUES (tem) = TYPE_VALUES (enumtype);
5918 TYPE_MIN_VALUE (tem) = TYPE_MIN_VALUE (enumtype);
5919 TYPE_MAX_VALUE (tem) = TYPE_MAX_VALUE (enumtype);
5920 TYPE_SIZE (tem) = TYPE_SIZE (enumtype);
5921 TYPE_SIZE_UNIT (tem) = TYPE_SIZE_UNIT (enumtype);
5922 TYPE_MODE (tem) = TYPE_MODE (enumtype);
5923 TYPE_PRECISION (tem) = TYPE_PRECISION (enumtype);
5924 TYPE_ALIGN (tem) = TYPE_ALIGN (enumtype);
5925 TYPE_USER_ALIGN (tem) = TYPE_USER_ALIGN (enumtype);
5926 TREE_UNSIGNED (tem) = TREE_UNSIGNED (enumtype);
5929 /* Finish debugging output for this type. */
5930 rest_of_type_compilation (enumtype, toplevel);
5932 return enumtype;
5935 /* Build and install a CONST_DECL for one value of the
5936 current enumeration type (one that was begun with start_enum).
5937 Return a tree-list containing the CONST_DECL and its value.
5938 Assignment of sequential values by default is handled here. */
5940 tree
5941 build_enumerator (name, value)
5942 tree name, value;
5944 tree decl, type;
5946 /* Validate and default VALUE. */
5948 /* Remove no-op casts from the value. */
5949 if (value)
5950 STRIP_TYPE_NOPS (value);
5952 if (value != 0)
5954 if (TREE_CODE (value) == INTEGER_CST)
5956 value = default_conversion (value);
5957 constant_expression_warning (value);
5959 else
5961 error ("enumerator value for `%s' not integer constant",
5962 IDENTIFIER_POINTER (name));
5963 value = 0;
5967 /* Default based on previous value. */
5968 /* It should no longer be possible to have NON_LVALUE_EXPR
5969 in the default. */
5970 if (value == 0)
5972 value = enum_next_value;
5973 if (enum_overflow)
5974 error ("overflow in enumeration values");
5977 if (pedantic && ! int_fits_type_p (value, integer_type_node))
5979 pedwarn ("ISO C restricts enumerator values to range of `int'");
5980 value = convert (integer_type_node, value);
5983 /* Set basis for default for next value. */
5984 enum_next_value = build_binary_op (PLUS_EXPR, value, integer_one_node, 0);
5985 enum_overflow = tree_int_cst_lt (enum_next_value, value);
5987 /* Now create a declaration for the enum value name. */
5989 type = TREE_TYPE (value);
5990 type = type_for_size (MAX (TYPE_PRECISION (type),
5991 TYPE_PRECISION (integer_type_node)),
5992 ((flag_traditional
5993 || TYPE_PRECISION (type) >= TYPE_PRECISION (integer_type_node))
5994 && TREE_UNSIGNED (type)));
5996 decl = build_decl (CONST_DECL, name, type);
5997 DECL_INITIAL (decl) = convert (type, value);
5998 pushdecl (decl);
6000 return tree_cons (decl, value, NULL_TREE);
6004 /* Create the FUNCTION_DECL for a function definition.
6005 DECLSPECS, DECLARATOR and ATTRIBUTES are the parts of
6006 the declaration; they describe the function's name and the type it returns,
6007 but twisted together in a fashion that parallels the syntax of C.
6009 This function creates a binding context for the function body
6010 as well as setting up the FUNCTION_DECL in current_function_decl.
6012 Returns 1 on success. If the DECLARATOR is not suitable for a function
6013 (it defines a datum instead), we return 0, which tells
6014 yyparse to report a parse error. */
6017 start_function (declspecs, declarator, attributes)
6018 tree declarator, declspecs, attributes;
6020 tree decl1, old_decl;
6021 tree restype;
6022 int old_immediate_size_expand = immediate_size_expand;
6024 current_function_returns_value = 0; /* Assume, until we see it does. */
6025 current_function_returns_null = 0;
6026 warn_about_return_type = 0;
6027 current_extern_inline = 0;
6028 c_function_varargs = 0;
6029 named_labels = 0;
6030 shadowed_labels = 0;
6032 /* Don't expand any sizes in the return type of the function. */
6033 immediate_size_expand = 0;
6035 decl1 = grokdeclarator (declarator, declspecs, FUNCDEF, 1);
6037 /* If the declarator is not suitable for a function definition,
6038 cause a syntax error. */
6039 if (decl1 == 0)
6041 immediate_size_expand = old_immediate_size_expand;
6042 return 0;
6045 decl_attributes (&decl1, attributes, 0);
6047 if (DECL_DECLARED_INLINE_P (decl1)
6048 && DECL_UNINLINABLE (decl1)
6049 && lookup_attribute ("noinline", DECL_ATTRIBUTES (decl1)))
6050 warning_with_decl (decl1,
6051 "inline function `%s' given attribute noinline");
6053 announce_function (decl1);
6055 if (!COMPLETE_OR_VOID_TYPE_P (TREE_TYPE (TREE_TYPE (decl1))))
6057 error ("return type is an incomplete type");
6058 /* Make it return void instead. */
6059 TREE_TYPE (decl1)
6060 = build_function_type (void_type_node,
6061 TYPE_ARG_TYPES (TREE_TYPE (decl1)));
6064 if (warn_about_return_type)
6065 pedwarn_c99 ("return type defaults to `int'");
6067 /* Save the parm names or decls from this function's declarator
6068 where store_parm_decls will find them. */
6069 current_function_parms = last_function_parms;
6070 current_function_parm_tags = last_function_parm_tags;
6072 /* Make the init_value nonzero so pushdecl knows this is not tentative.
6073 error_mark_node is replaced below (in poplevel) with the BLOCK. */
6074 DECL_INITIAL (decl1) = error_mark_node;
6076 /* If this definition isn't a prototype and we had a prototype declaration
6077 before, copy the arg type info from that prototype.
6078 But not if what we had before was a builtin function. */
6079 old_decl = lookup_name_current_level (DECL_NAME (decl1));
6080 if (old_decl != 0 && TREE_CODE (TREE_TYPE (old_decl)) == FUNCTION_TYPE
6081 && !DECL_BUILT_IN (old_decl)
6082 && (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (decl1)))
6083 == TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (old_decl))))
6084 && TYPE_ARG_TYPES (TREE_TYPE (decl1)) == 0)
6086 TREE_TYPE (decl1) = TREE_TYPE (old_decl);
6087 current_function_prototype_file = DECL_SOURCE_FILE (old_decl);
6088 current_function_prototype_line = DECL_SOURCE_LINE (old_decl);
6091 /* If there is no explicit declaration, look for any out-of-scope implicit
6092 declarations. */
6093 if (old_decl == 0)
6094 old_decl = IDENTIFIER_IMPLICIT_DECL (DECL_NAME (decl1));
6096 /* Optionally warn of old-fashioned def with no previous prototype. */
6097 if (warn_strict_prototypes
6098 && TYPE_ARG_TYPES (TREE_TYPE (decl1)) == 0
6099 && !(old_decl != 0
6100 && (TYPE_ARG_TYPES (TREE_TYPE (old_decl)) != 0
6101 || (DECL_BUILT_IN (old_decl)
6102 && ! C_DECL_ANTICIPATED (old_decl)))))
6103 warning ("function declaration isn't a prototype");
6104 /* Optionally warn of any global def with no previous prototype. */
6105 else if (warn_missing_prototypes
6106 && TREE_PUBLIC (decl1)
6107 && !(old_decl != 0
6108 && (TYPE_ARG_TYPES (TREE_TYPE (old_decl)) != 0
6109 || (DECL_BUILT_IN (old_decl)
6110 && ! C_DECL_ANTICIPATED (old_decl))))
6111 && ! MAIN_NAME_P (DECL_NAME (decl1)))
6112 warning_with_decl (decl1, "no previous prototype for `%s'");
6113 /* Optionally warn of any def with no previous prototype
6114 if the function has already been used. */
6115 else if (warn_missing_prototypes
6116 && old_decl != 0 && TREE_USED (old_decl)
6117 && TYPE_ARG_TYPES (TREE_TYPE (old_decl)) == 0)
6118 warning_with_decl (decl1,
6119 "`%s' was used with no prototype before its definition");
6120 /* Optionally warn of any global def with no previous declaration. */
6121 else if (warn_missing_declarations
6122 && TREE_PUBLIC (decl1)
6123 && old_decl == 0
6124 && ! MAIN_NAME_P (DECL_NAME (decl1)))
6125 warning_with_decl (decl1, "no previous declaration for `%s'");
6126 /* Optionally warn of any def with no previous declaration
6127 if the function has already been used. */
6128 else if (warn_missing_declarations
6129 && old_decl != 0 && TREE_USED (old_decl)
6130 && old_decl == IDENTIFIER_IMPLICIT_DECL (DECL_NAME (decl1)))
6131 warning_with_decl (decl1,
6132 "`%s' was used with no declaration before its definition");
6134 /* This is a definition, not a reference.
6135 So normally clear DECL_EXTERNAL.
6136 However, `extern inline' acts like a declaration
6137 except for defining how to inline. So set DECL_EXTERNAL in that case. */
6138 DECL_EXTERNAL (decl1) = current_extern_inline;
6140 /* This function exists in static storage.
6141 (This does not mean `static' in the C sense!) */
6142 TREE_STATIC (decl1) = 1;
6144 /* A nested function is not global. */
6145 if (current_function_decl != 0)
6146 TREE_PUBLIC (decl1) = 0;
6148 /* Warn for unlikely, improbable, or stupid declarations of `main'. */
6149 if (warn_main > 0 && MAIN_NAME_P (DECL_NAME (decl1)))
6151 tree args;
6152 int argct = 0;
6154 if (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (decl1)))
6155 != integer_type_node)
6156 pedwarn_with_decl (decl1, "return type of `%s' is not `int'");
6158 for (args = TYPE_ARG_TYPES (TREE_TYPE (decl1)); args;
6159 args = TREE_CHAIN (args))
6161 tree type = args ? TREE_VALUE (args) : 0;
6163 if (type == void_type_node)
6164 break;
6166 ++argct;
6167 switch (argct)
6169 case 1:
6170 if (TYPE_MAIN_VARIANT (type) != integer_type_node)
6171 pedwarn_with_decl (decl1,
6172 "first argument of `%s' should be `int'");
6173 break;
6175 case 2:
6176 if (TREE_CODE (type) != POINTER_TYPE
6177 || TREE_CODE (TREE_TYPE (type)) != POINTER_TYPE
6178 || (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (type)))
6179 != char_type_node))
6180 pedwarn_with_decl (decl1,
6181 "second argument of `%s' should be `char **'");
6182 break;
6184 case 3:
6185 if (TREE_CODE (type) != POINTER_TYPE
6186 || TREE_CODE (TREE_TYPE (type)) != POINTER_TYPE
6187 || (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (type)))
6188 != char_type_node))
6189 pedwarn_with_decl (decl1,
6190 "third argument of `%s' should probably be `char **'");
6191 break;
6195 /* It is intentional that this message does not mention the third
6196 argument because it's only mentioned in an appendix of the
6197 standard. */
6198 if (argct > 0 && (argct < 2 || argct > 3))
6199 pedwarn_with_decl (decl1, "`%s' takes only zero or two arguments");
6201 if (! TREE_PUBLIC (decl1))
6202 pedwarn_with_decl (decl1, "`%s' is normally a non-static function");
6205 /* Record the decl so that the function name is defined.
6206 If we already have a decl for this name, and it is a FUNCTION_DECL,
6207 use the old decl. */
6209 current_function_decl = pushdecl (decl1);
6211 pushlevel (0);
6212 declare_parm_level (1);
6213 current_binding_level->subblocks_tag_transparent = 1;
6215 make_decl_rtl (current_function_decl, NULL);
6217 restype = TREE_TYPE (TREE_TYPE (current_function_decl));
6218 /* Promote the value to int before returning it. */
6219 if (c_promoting_integer_type_p (restype))
6221 /* It retains unsignedness if traditional
6222 or if not really getting wider. */
6223 if (TREE_UNSIGNED (restype)
6224 && (flag_traditional
6225 || (TYPE_PRECISION (restype)
6226 == TYPE_PRECISION (integer_type_node))))
6227 restype = unsigned_type_node;
6228 else
6229 restype = integer_type_node;
6231 DECL_RESULT (current_function_decl)
6232 = build_decl (RESULT_DECL, NULL_TREE, restype);
6234 /* If this fcn was already referenced via a block-scope `extern' decl
6235 (or an implicit decl), propagate certain information about the usage. */
6236 if (TREE_ADDRESSABLE (DECL_ASSEMBLER_NAME (current_function_decl)))
6237 TREE_ADDRESSABLE (current_function_decl) = 1;
6239 immediate_size_expand = old_immediate_size_expand;
6241 start_fname_decls ();
6243 return 1;
6246 /* Record that this function is going to be a varargs function.
6247 This is called before store_parm_decls, which is too early
6248 to call mark_varargs directly. */
6250 void
6251 c_mark_varargs ()
6253 c_function_varargs = 1;
6256 /* Store the parameter declarations into the current function declaration.
6257 This is called after parsing the parameter declarations, before
6258 digesting the body of the function.
6260 For an old-style definition, modify the function's type
6261 to specify at least the number of arguments. */
6263 void
6264 store_parm_decls ()
6266 tree fndecl = current_function_decl;
6267 tree parm;
6269 /* This is either a chain of PARM_DECLs (if a prototype was used)
6270 or a list of IDENTIFIER_NODEs (for an old-fashioned C definition). */
6271 tree specparms = current_function_parms;
6273 /* This is a list of types declared among parms in a prototype. */
6274 tree parmtags = current_function_parm_tags;
6276 /* This is a chain of PARM_DECLs from old-style parm declarations. */
6277 tree parmdecls = getdecls ();
6279 /* This is a chain of any other decls that came in among the parm
6280 declarations. If a parm is declared with enum {foo, bar} x;
6281 then CONST_DECLs for foo and bar are put here. */
6282 tree nonparms = 0;
6284 /* Nonzero if this definition is written with a prototype. */
6285 int prototype = 0;
6287 /* The function containing FNDECL, if any. */
6288 tree context = decl_function_context (fndecl);
6290 if (specparms != 0 && TREE_CODE (specparms) != TREE_LIST)
6292 /* This case is when the function was defined with an ANSI prototype.
6293 The parms already have decls, so we need not do anything here
6294 except record them as in effect
6295 and complain if any redundant old-style parm decls were written. */
6297 tree next;
6298 tree others = 0;
6300 prototype = 1;
6302 if (parmdecls != 0)
6304 tree decl, link;
6306 error_with_decl (fndecl,
6307 "parm types given both in parmlist and separately");
6308 /* Get rid of the erroneous decls; don't keep them on
6309 the list of parms, since they might not be PARM_DECLs. */
6310 for (decl = current_binding_level->names;
6311 decl; decl = TREE_CHAIN (decl))
6312 if (DECL_NAME (decl))
6313 IDENTIFIER_LOCAL_VALUE (DECL_NAME (decl)) = 0;
6314 for (link = current_binding_level->shadowed;
6315 link; link = TREE_CHAIN (link))
6316 IDENTIFIER_LOCAL_VALUE (TREE_PURPOSE (link)) = TREE_VALUE (link);
6317 current_binding_level->names = 0;
6318 current_binding_level->shadowed = 0;
6321 specparms = nreverse (specparms);
6322 for (parm = specparms; parm; parm = next)
6324 next = TREE_CHAIN (parm);
6325 if (TREE_CODE (parm) == PARM_DECL)
6327 if (DECL_NAME (parm) == 0)
6328 error_with_decl (parm, "parameter name omitted");
6329 else if (TREE_CODE (TREE_TYPE (parm)) != ERROR_MARK
6330 && VOID_TYPE_P (TREE_TYPE (parm)))
6332 error_with_decl (parm, "parameter `%s' declared void");
6333 /* Change the type to error_mark_node so this parameter
6334 will be ignored by assign_parms. */
6335 TREE_TYPE (parm) = error_mark_node;
6337 pushdecl (parm);
6339 else
6341 /* If we find an enum constant or a type tag,
6342 put it aside for the moment. */
6343 TREE_CHAIN (parm) = 0;
6344 others = chainon (others, parm);
6348 /* Get the decls in their original chain order
6349 and record in the function. */
6350 DECL_ARGUMENTS (fndecl) = getdecls ();
6352 #if 0
6353 /* If this function takes a variable number of arguments,
6354 add a phony parameter to the end of the parm list,
6355 to represent the position of the first unnamed argument. */
6356 if (TREE_VALUE (tree_last (TYPE_ARG_TYPES (TREE_TYPE (fndecl))))
6357 != void_type_node)
6359 tree dummy = build_decl (PARM_DECL, NULL_TREE, void_type_node);
6360 /* Let's hope the address of the unnamed parm
6361 won't depend on its type. */
6362 TREE_TYPE (dummy) = integer_type_node;
6363 DECL_ARG_TYPE (dummy) = integer_type_node;
6364 DECL_ARGUMENTS (fndecl) = chainon (DECL_ARGUMENTS (fndecl), dummy);
6366 #endif
6368 /* Now pushdecl the enum constants. */
6369 for (parm = others; parm; parm = next)
6371 next = TREE_CHAIN (parm);
6372 if (DECL_NAME (parm) == 0)
6374 else if (TYPE_MAIN_VARIANT (TREE_TYPE (parm)) == void_type_node)
6376 else if (TREE_CODE (parm) != PARM_DECL)
6377 pushdecl (parm);
6380 storetags (chainon (parmtags, gettags ()));
6382 else
6384 /* SPECPARMS is an identifier list--a chain of TREE_LIST nodes
6385 each with a parm name as the TREE_VALUE.
6387 PARMDECLS is a chain of declarations for parameters.
6388 Warning! It can also contain CONST_DECLs which are not parameters
6389 but are names of enumerators of any enum types
6390 declared among the parameters.
6392 First match each formal parameter name with its declaration.
6393 Associate decls with the names and store the decls
6394 into the TREE_PURPOSE slots. */
6396 /* We use DECL_WEAK as a flag to show which parameters have been
6397 seen already since it is not used on PARM_DECL or CONST_DECL. */
6398 for (parm = parmdecls; parm; parm = TREE_CHAIN (parm))
6399 DECL_WEAK (parm) = 0;
6401 for (parm = specparms; parm; parm = TREE_CHAIN (parm))
6403 tree tail, found = NULL;
6405 if (TREE_VALUE (parm) == 0)
6407 error_with_decl (fndecl,
6408 "parameter name missing from parameter list");
6409 TREE_PURPOSE (parm) = 0;
6410 continue;
6413 /* See if any of the parmdecls specifies this parm by name.
6414 Ignore any enumerator decls. */
6415 for (tail = parmdecls; tail; tail = TREE_CHAIN (tail))
6416 if (DECL_NAME (tail) == TREE_VALUE (parm)
6417 && TREE_CODE (tail) == PARM_DECL)
6419 found = tail;
6420 break;
6423 /* If declaration already marked, we have a duplicate name.
6424 Complain, and don't use this decl twice. */
6425 if (found && DECL_WEAK (found))
6427 error_with_decl (found, "multiple parameters named `%s'");
6428 found = 0;
6431 /* If the declaration says "void", complain and ignore it. */
6432 if (found && VOID_TYPE_P (TREE_TYPE (found)))
6434 error_with_decl (found, "parameter `%s' declared void");
6435 TREE_TYPE (found) = integer_type_node;
6436 DECL_ARG_TYPE (found) = integer_type_node;
6437 layout_decl (found, 0);
6440 /* Traditionally, a parm declared float is actually a double. */
6441 if (found && flag_traditional
6442 && TYPE_MAIN_VARIANT (TREE_TYPE (found)) == float_type_node)
6444 TREE_TYPE (found) = double_type_node;
6445 DECL_ARG_TYPE (found) = double_type_node;
6446 layout_decl (found, 0);
6449 /* If no declaration found, default to int. */
6450 if (!found)
6452 found = build_decl (PARM_DECL, TREE_VALUE (parm),
6453 integer_type_node);
6454 DECL_ARG_TYPE (found) = TREE_TYPE (found);
6455 DECL_SOURCE_LINE (found) = DECL_SOURCE_LINE (fndecl);
6456 DECL_SOURCE_FILE (found) = DECL_SOURCE_FILE (fndecl);
6457 if (flag_isoc99)
6458 pedwarn_with_decl (found, "type of `%s' defaults to `int'");
6459 else if (extra_warnings)
6460 warning_with_decl (found, "type of `%s' defaults to `int'");
6461 pushdecl (found);
6464 TREE_PURPOSE (parm) = found;
6466 /* Mark this decl as "already found". */
6467 DECL_WEAK (found) = 1;
6470 /* Put anything which is on the parmdecls chain and which is
6471 not a PARM_DECL onto the list NONPARMS. (The types of
6472 non-parm things which might appear on the list include
6473 enumerators and NULL-named TYPE_DECL nodes.) Complain about
6474 any actual PARM_DECLs not matched with any names. */
6476 nonparms = 0;
6477 for (parm = parmdecls; parm;)
6479 tree next = TREE_CHAIN (parm);
6480 TREE_CHAIN (parm) = 0;
6482 if (TREE_CODE (parm) != PARM_DECL)
6483 nonparms = chainon (nonparms, parm);
6484 else
6486 /* Complain about args with incomplete types. */
6487 if (!COMPLETE_TYPE_P (TREE_TYPE (parm)))
6489 error_with_decl (parm, "parameter `%s' has incomplete type");
6490 TREE_TYPE (parm) = error_mark_node;
6493 if (! DECL_WEAK (parm))
6495 error_with_decl (parm,
6496 "declaration for parameter `%s' but no such parameter");
6497 /* Pretend the parameter was not missing.
6498 This gets us to a standard state and minimizes
6499 further error messages. */
6500 specparms
6501 = chainon (specparms,
6502 tree_cons (parm, NULL_TREE, NULL_TREE));
6506 parm = next;
6509 /* Chain the declarations together in the order of the list of
6510 names. Store that chain in the function decl, replacing the
6511 list of names. */
6512 parm = specparms;
6513 DECL_ARGUMENTS (fndecl) = 0;
6515 tree last;
6516 for (last = 0; parm; parm = TREE_CHAIN (parm))
6517 if (TREE_PURPOSE (parm))
6519 if (last == 0)
6520 DECL_ARGUMENTS (fndecl) = TREE_PURPOSE (parm);
6521 else
6522 TREE_CHAIN (last) = TREE_PURPOSE (parm);
6523 last = TREE_PURPOSE (parm);
6524 TREE_CHAIN (last) = 0;
6528 /* If there was a previous prototype,
6529 set the DECL_ARG_TYPE of each argument according to
6530 the type previously specified, and report any mismatches. */
6532 if (TYPE_ARG_TYPES (TREE_TYPE (fndecl)))
6534 tree type;
6535 for (parm = DECL_ARGUMENTS (fndecl),
6536 type = TYPE_ARG_TYPES (TREE_TYPE (fndecl));
6537 parm || (type && (TYPE_MAIN_VARIANT (TREE_VALUE (type))
6538 != void_type_node));
6539 parm = TREE_CHAIN (parm), type = TREE_CHAIN (type))
6541 if (parm == 0 || type == 0
6542 || TYPE_MAIN_VARIANT (TREE_VALUE (type)) == void_type_node)
6544 error ("number of arguments doesn't match prototype");
6545 error_with_file_and_line (current_function_prototype_file,
6546 current_function_prototype_line,
6547 "prototype declaration");
6548 break;
6550 /* Type for passing arg must be consistent with that
6551 declared for the arg. ISO C says we take the unqualified
6552 type for parameters declared with qualified type. */
6553 if (! comptypes (TYPE_MAIN_VARIANT (DECL_ARG_TYPE (parm)),
6554 TYPE_MAIN_VARIANT (TREE_VALUE (type))))
6556 if (TYPE_MAIN_VARIANT (TREE_TYPE (parm))
6557 == TYPE_MAIN_VARIANT (TREE_VALUE (type)))
6559 /* Adjust argument to match prototype. E.g. a previous
6560 `int foo(float);' prototype causes
6561 `int foo(x) float x; {...}' to be treated like
6562 `int foo(float x) {...}'. This is particularly
6563 useful for argument types like uid_t. */
6564 DECL_ARG_TYPE (parm) = TREE_TYPE (parm);
6566 if (PROMOTE_PROTOTYPES
6567 && INTEGRAL_TYPE_P (TREE_TYPE (parm))
6568 && TYPE_PRECISION (TREE_TYPE (parm))
6569 < TYPE_PRECISION (integer_type_node))
6570 DECL_ARG_TYPE (parm) = integer_type_node;
6572 if (pedantic)
6574 pedwarn ("promoted argument `%s' doesn't match prototype",
6575 IDENTIFIER_POINTER (DECL_NAME (parm)));
6576 warning_with_file_and_line
6577 (current_function_prototype_file,
6578 current_function_prototype_line,
6579 "prototype declaration");
6582 /* If -traditional, allow `int' argument to match
6583 `unsigned' prototype. */
6584 else if (! (flag_traditional
6585 && TYPE_MAIN_VARIANT (TREE_TYPE (parm)) == integer_type_node
6586 && TYPE_MAIN_VARIANT (TREE_VALUE (type)) == unsigned_type_node))
6588 error ("argument `%s' doesn't match prototype",
6589 IDENTIFIER_POINTER (DECL_NAME (parm)));
6590 error_with_file_and_line (current_function_prototype_file,
6591 current_function_prototype_line,
6592 "prototype declaration");
6596 TYPE_ACTUAL_ARG_TYPES (TREE_TYPE (fndecl)) = 0;
6599 /* Otherwise, create a prototype that would match. */
6601 else
6603 tree actual = 0, last = 0, type;
6605 for (parm = DECL_ARGUMENTS (fndecl); parm; parm = TREE_CHAIN (parm))
6607 type = tree_cons (NULL_TREE, DECL_ARG_TYPE (parm), NULL_TREE);
6608 if (last)
6609 TREE_CHAIN (last) = type;
6610 else
6611 actual = type;
6612 last = type;
6614 type = tree_cons (NULL_TREE, void_type_node, NULL_TREE);
6615 if (last)
6616 TREE_CHAIN (last) = type;
6617 else
6618 actual = type;
6620 /* We are going to assign a new value for the TYPE_ACTUAL_ARG_TYPES
6621 of the type of this function, but we need to avoid having this
6622 affect the types of other similarly-typed functions, so we must
6623 first force the generation of an identical (but separate) type
6624 node for the relevant function type. The new node we create
6625 will be a variant of the main variant of the original function
6626 type. */
6628 TREE_TYPE (fndecl) = build_type_copy (TREE_TYPE (fndecl));
6630 TYPE_ACTUAL_ARG_TYPES (TREE_TYPE (fndecl)) = actual;
6633 /* Now store the final chain of decls for the arguments
6634 as the decl-chain of the current lexical scope.
6635 Put the enumerators in as well, at the front so that
6636 DECL_ARGUMENTS is not modified. */
6638 storedecls (chainon (nonparms, DECL_ARGUMENTS (fndecl)));
6641 /* Make sure the binding level for the top of the function body
6642 gets a BLOCK if there are any in the function.
6643 Otherwise, the dbx output is wrong. */
6645 keep_next_if_subblocks = 1;
6647 /* ??? This might be an improvement,
6648 but needs to be thought about some more. */
6649 #if 0
6650 keep_next_level_flag = 1;
6651 #endif
6653 /* Write a record describing this function definition to the prototypes
6654 file (if requested). */
6656 gen_aux_info_record (fndecl, 1, 0, prototype);
6658 /* Initialize the RTL code for the function. */
6659 init_function_start (fndecl, input_filename, lineno);
6661 /* Begin the statement tree for this function. */
6662 begin_stmt_tree (&DECL_SAVED_TREE (current_function_decl));
6664 /* If this is a nested function, save away the sizes of any
6665 variable-size types so that we can expand them when generating
6666 RTL. */
6667 if (context)
6669 tree t;
6671 DECL_LANG_SPECIFIC (fndecl)->pending_sizes
6672 = nreverse (get_pending_sizes ());
6673 for (t = DECL_LANG_SPECIFIC (fndecl)->pending_sizes;
6675 t = TREE_CHAIN (t))
6676 SAVE_EXPR_CONTEXT (TREE_VALUE (t)) = context;
6679 /* This function is being processed in whole-function mode. */
6680 cfun->x_whole_function_mode_p = 1;
6682 /* Even though we're inside a function body, we still don't want to
6683 call expand_expr to calculate the size of a variable-sized array.
6684 We haven't necessarily assigned RTL to all variables yet, so it's
6685 not safe to try to expand expressions involving them. */
6686 immediate_size_expand = 0;
6687 cfun->x_dont_save_pending_sizes_p = 1;
6690 /* Finish up a function declaration and compile that function
6691 all the way to assembler language output. The free the storage
6692 for the function definition.
6694 This is called after parsing the body of the function definition.
6696 NESTED is nonzero if the function being finished is nested in another. */
6698 void
6699 finish_function (nested)
6700 int nested;
6702 tree fndecl = current_function_decl;
6704 /* TREE_READONLY (fndecl) = 1;
6705 This caused &foo to be of type ptr-to-const-function
6706 which then got a warning when stored in a ptr-to-function variable. */
6708 poplevel (1, 0, 1);
6709 BLOCK_SUPERCONTEXT (DECL_INITIAL (fndecl)) = fndecl;
6711 /* Must mark the RESULT_DECL as being in this function. */
6713 DECL_CONTEXT (DECL_RESULT (fndecl)) = fndecl;
6715 /* Obey `register' declarations if `setjmp' is called in this fn. */
6716 if (flag_traditional && current_function_calls_setjmp)
6718 setjmp_protect (DECL_INITIAL (fndecl));
6719 setjmp_protect_args ();
6722 if (MAIN_NAME_P (DECL_NAME (fndecl)) && flag_hosted)
6724 if (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (fndecl)))
6725 != integer_type_node)
6727 /* If warn_main is 1 (-Wmain) or 2 (-Wall), we have already warned.
6728 If warn_main is -1 (-Wno-main) we don't want to be warned. */
6729 if (! warn_main)
6730 pedwarn_with_decl (fndecl, "return type of `%s' is not `int'");
6732 else
6734 #ifdef DEFAULT_MAIN_RETURN
6735 /* Make it so that `main' always returns success by default. */
6736 DEFAULT_MAIN_RETURN;
6737 #else
6738 if (flag_isoc99)
6739 c_expand_return (integer_zero_node);
6740 #endif
6744 finish_fname_decls ();
6746 /* Tie off the statement tree for this function. */
6747 finish_stmt_tree (&DECL_SAVED_TREE (fndecl));
6748 /* Clear out memory we no longer need. */
6749 free_after_parsing (cfun);
6750 /* Since we never call rest_of_compilation, we never clear
6751 CFUN. Do so explicitly. */
6752 free_after_compilation (cfun);
6753 cfun = NULL;
6755 if (! nested)
6757 /* Generate RTL for the body of this function. */
6758 c_expand_body (fndecl, nested, 1);
6759 /* Let the error reporting routines know that we're outside a
6760 function. For a nested function, this value is used in
6761 pop_c_function_context and then reset via pop_function_context. */
6762 current_function_decl = NULL;
6766 /* Generate the RTL for a deferred function FNDECL. */
6768 void
6769 c_expand_deferred_function (fndecl)
6770 tree fndecl;
6772 /* DECL_INLINE or DECL_RESULT might got cleared after the inline
6773 function was deferred, e.g. in duplicate_decls. */
6774 if (DECL_INLINE (fndecl) && DECL_RESULT (fndecl))
6776 c_expand_body (fndecl, 0, 0);
6777 current_function_decl = NULL;
6781 /* Generate the RTL for the body of FNDECL. If NESTED_P is non-zero,
6782 then we are already in the process of generating RTL for another
6783 function. If can_defer_p is zero, we won't attempt to defer the
6784 generation of RTL. */
6786 static void
6787 c_expand_body (fndecl, nested_p, can_defer_p)
6788 tree fndecl;
6789 int nested_p, can_defer_p;
6791 int uninlinable = 1;
6793 /* There's no reason to do any of the work here if we're only doing
6794 semantic analysis; this code just generates RTL. */
6795 if (flag_syntax_only)
6796 return;
6798 if (flag_inline_trees)
6800 /* First, cache whether the current function is inlinable. Some
6801 predicates depend on cfun and current_function_decl to
6802 function completely. */
6803 timevar_push (TV_INTEGRATION);
6804 uninlinable = ! tree_inlinable_function_p (fndecl);
6806 if (! uninlinable && can_defer_p
6807 /* Save function tree for inlining. Should return 0 if the
6808 language does not support function deferring or the
6809 function could not be deferred. */
6810 && defer_fn (fndecl))
6812 /* Let the back-end know that this function exists. */
6813 (*debug_hooks->deferred_inline_function) (fndecl);
6814 timevar_pop (TV_INTEGRATION);
6815 return;
6818 /* Then, inline any functions called in it. */
6819 optimize_inline_calls (fndecl);
6820 timevar_pop (TV_INTEGRATION);
6823 timevar_push (TV_EXPAND);
6825 if (nested_p)
6827 /* Make sure that we will evaluate variable-sized types involved
6828 in our function's type. */
6829 expand_pending_sizes (DECL_LANG_SPECIFIC (fndecl)->pending_sizes);
6830 /* Squirrel away our current state. */
6831 push_function_context ();
6834 /* Initialize the RTL code for the function. */
6835 current_function_decl = fndecl;
6836 init_function_start (fndecl, input_filename, DECL_SOURCE_LINE (fndecl));
6838 /* This function is being processed in whole-function mode. */
6839 cfun->x_whole_function_mode_p = 1;
6841 /* Even though we're inside a function body, we still don't want to
6842 call expand_expr to calculate the size of a variable-sized array.
6843 We haven't necessarily assigned RTL to all variables yet, so it's
6844 not safe to try to expand expressions involving them. */
6845 immediate_size_expand = 0;
6846 cfun->x_dont_save_pending_sizes_p = 1;
6848 /* If this is a varargs function, inform function.c. */
6849 if (c_function_varargs)
6850 mark_varargs ();
6852 /* Set up parameters and prepare for return, for the function. */
6853 expand_function_start (fndecl, 0);
6855 /* If this function is `main', emit a call to `__main'
6856 to run global initializers, etc. */
6857 if (DECL_NAME (fndecl)
6858 && MAIN_NAME_P (DECL_NAME (fndecl))
6859 && DECL_CONTEXT (fndecl) == NULL_TREE)
6860 expand_main_function ();
6862 /* Generate the RTL for this function. */
6863 expand_stmt (DECL_SAVED_TREE (fndecl));
6864 if (uninlinable)
6866 /* Allow the body of the function to be garbage collected. */
6867 DECL_SAVED_TREE (fndecl) = NULL_TREE;
6870 /* We hard-wired immediate_size_expand to zero above.
6871 expand_function_end will decrement this variable. So, we set the
6872 variable to one here, so that after the decrement it will remain
6873 zero. */
6874 immediate_size_expand = 1;
6876 /* Allow language dialects to perform special processing. */
6877 if (lang_expand_function_end)
6878 (*lang_expand_function_end) ();
6880 /* Generate rtl for function exit. */
6881 expand_function_end (input_filename, lineno, 0);
6883 /* If this is a nested function, protect the local variables in the stack
6884 above us from being collected while we're compiling this function. */
6885 if (nested_p)
6886 ggc_push_context ();
6888 /* Run the optimizers and output the assembler code for this function. */
6889 rest_of_compilation (fndecl);
6891 /* Undo the GC context switch. */
6892 if (nested_p)
6893 ggc_pop_context ();
6895 /* With just -W, complain only if function returns both with
6896 and without a value. */
6897 if (extra_warnings
6898 && current_function_returns_value
6899 && current_function_returns_null)
6900 warning ("this function may return with or without a value");
6902 /* If requested, warn about function definitions where the function will
6903 return a value (usually of some struct or union type) which itself will
6904 take up a lot of stack space. */
6906 if (warn_larger_than && !DECL_EXTERNAL (fndecl) && TREE_TYPE (fndecl))
6908 tree ret_type = TREE_TYPE (TREE_TYPE (fndecl));
6910 if (ret_type && TYPE_SIZE_UNIT (ret_type)
6911 && TREE_CODE (TYPE_SIZE_UNIT (ret_type)) == INTEGER_CST
6912 && 0 < compare_tree_int (TYPE_SIZE_UNIT (ret_type),
6913 larger_than_size))
6915 unsigned int size_as_int
6916 = TREE_INT_CST_LOW (TYPE_SIZE_UNIT (ret_type));
6918 if (compare_tree_int (TYPE_SIZE_UNIT (ret_type), size_as_int) == 0)
6919 warning_with_decl (fndecl,
6920 "size of return value of `%s' is %u bytes",
6921 size_as_int);
6922 else
6923 warning_with_decl (fndecl,
6924 "size of return value of `%s' is larger than %d bytes",
6925 larger_than_size);
6929 if (DECL_SAVED_INSNS (fndecl) == 0 && ! nested_p
6930 && ! flag_inline_trees)
6932 /* Stop pointing to the local nodes about to be freed.
6933 But DECL_INITIAL must remain nonzero so we know this
6934 was an actual function definition.
6935 For a nested function, this is done in pop_c_function_context.
6936 If rest_of_compilation set this to 0, leave it 0. */
6937 if (DECL_INITIAL (fndecl) != 0)
6938 DECL_INITIAL (fndecl) = error_mark_node;
6940 DECL_ARGUMENTS (fndecl) = 0;
6943 if (DECL_STATIC_CONSTRUCTOR (fndecl))
6945 if (targetm.have_ctors_dtors)
6946 (* targetm.asm_out.constructor) (XEXP (DECL_RTL (fndecl), 0),
6947 DEFAULT_INIT_PRIORITY);
6948 else
6949 static_ctors = tree_cons (NULL_TREE, fndecl, static_ctors);
6952 if (DECL_STATIC_DESTRUCTOR (fndecl))
6954 if (targetm.have_ctors_dtors)
6955 (* targetm.asm_out.destructor) (XEXP (DECL_RTL (fndecl), 0),
6956 DEFAULT_INIT_PRIORITY);
6957 else
6958 static_dtors = tree_cons (NULL_TREE, fndecl, static_dtors);
6961 if (nested_p)
6962 /* Return to the enclosing function. */
6963 pop_function_context ();
6964 timevar_pop (TV_EXPAND);
6967 /* Check the declarations given in a for-loop for satisfying the C99
6968 constraints. */
6969 void
6970 check_for_loop_decls ()
6972 tree t;
6974 if (!flag_isoc99)
6976 /* If we get here, declarations have been used in a for loop without
6977 the C99 for loop scope. This doesn't make much sense, so don't
6978 allow it. */
6979 error ("`for' loop initial declaration used outside C99 mode");
6980 return;
6982 /* C99 subclause 6.8.5 paragraph 3:
6984 [#3] The declaration part of a for statement shall only
6985 declare identifiers for objects having storage class auto or
6986 register.
6988 It isn't clear whether, in this sentence, "identifiers" binds to
6989 "shall only declare" or to "objects" - that is, whether all identifiers
6990 declared must be identifiers for objects, or whether the restriction
6991 only applies to those that are. (A question on this in comp.std.c
6992 in November 2000 received no answer.) We implement the strictest
6993 interpretation, to avoid creating an extension which later causes
6994 problems. */
6996 for (t = gettags (); t; t = TREE_CHAIN (t))
6998 if (TREE_PURPOSE (t) != 0)
7000 enum tree_code code = TREE_CODE (TREE_VALUE (t));
7002 if (code == RECORD_TYPE)
7003 error ("`struct %s' declared in `for' loop initial declaration",
7004 IDENTIFIER_POINTER (TREE_PURPOSE (t)));
7005 else if (code == UNION_TYPE)
7006 error ("`union %s' declared in `for' loop initial declaration",
7007 IDENTIFIER_POINTER (TREE_PURPOSE (t)));
7008 else
7009 error ("`enum %s' declared in `for' loop initial declaration",
7010 IDENTIFIER_POINTER (TREE_PURPOSE (t)));
7014 for (t = getdecls (); t; t = TREE_CHAIN (t))
7016 if (TREE_CODE (t) != VAR_DECL && DECL_NAME (t))
7017 error_with_decl (t, "declaration of non-variable `%s' in `for' loop initial declaration");
7018 else if (TREE_STATIC (t))
7019 error_with_decl (t, "declaration of static variable `%s' in `for' loop initial declaration");
7020 else if (DECL_EXTERNAL (t))
7021 error_with_decl (t, "declaration of `extern' variable `%s' in `for' loop initial declaration");
7025 /* Save and restore the variables in this file and elsewhere
7026 that keep track of the progress of compilation of the current function.
7027 Used for nested functions. */
7029 struct c_language_function
7031 struct language_function base;
7032 tree named_labels;
7033 tree shadowed_labels;
7034 int returns_value;
7035 int returns_null;
7036 int warn_about_return_type;
7037 int extern_inline;
7038 struct binding_level *binding_level;
7041 /* Save and reinitialize the variables
7042 used during compilation of a C function. */
7044 void
7045 push_c_function_context (f)
7046 struct function *f;
7048 struct c_language_function *p;
7049 p = ((struct c_language_function *)
7050 xmalloc (sizeof (struct c_language_function)));
7051 f->language = (struct language_function *) p;
7053 p->base.x_stmt_tree = c_stmt_tree;
7054 p->base.x_scope_stmt_stack = c_scope_stmt_stack;
7055 p->named_labels = named_labels;
7056 p->shadowed_labels = shadowed_labels;
7057 p->returns_value = current_function_returns_value;
7058 p->returns_null = current_function_returns_null;
7059 p->warn_about_return_type = warn_about_return_type;
7060 p->extern_inline = current_extern_inline;
7061 p->binding_level = current_binding_level;
7064 /* Restore the variables used during compilation of a C function. */
7066 void
7067 pop_c_function_context (f)
7068 struct function *f;
7070 struct c_language_function *p
7071 = (struct c_language_function *) f->language;
7072 tree link;
7074 /* Bring back all the labels that were shadowed. */
7075 for (link = shadowed_labels; link; link = TREE_CHAIN (link))
7076 if (DECL_NAME (TREE_VALUE (link)) != 0)
7077 IDENTIFIER_LABEL_VALUE (DECL_NAME (TREE_VALUE (link)))
7078 = TREE_VALUE (link);
7080 if (DECL_SAVED_INSNS (current_function_decl) == 0
7081 && DECL_SAVED_TREE (current_function_decl) == NULL_TREE)
7083 /* Stop pointing to the local nodes about to be freed. */
7084 /* But DECL_INITIAL must remain nonzero so we know this
7085 was an actual function definition. */
7086 DECL_INITIAL (current_function_decl) = error_mark_node;
7087 DECL_ARGUMENTS (current_function_decl) = 0;
7090 c_stmt_tree = p->base.x_stmt_tree;
7091 c_scope_stmt_stack = p->base.x_scope_stmt_stack;
7092 named_labels = p->named_labels;
7093 shadowed_labels = p->shadowed_labels;
7094 current_function_returns_value = p->returns_value;
7095 current_function_returns_null = p->returns_null;
7096 warn_about_return_type = p->warn_about_return_type;
7097 current_extern_inline = p->extern_inline;
7098 current_binding_level = p->binding_level;
7100 free (p);
7101 f->language = 0;
7104 /* Mark the language specific parts of F for GC. */
7106 void
7107 mark_c_function_context (f)
7108 struct function *f;
7110 struct c_language_function *p
7111 = (struct c_language_function *) f->language;
7113 if (p == 0)
7114 return;
7116 mark_c_language_function (&p->base);
7117 ggc_mark_tree (p->shadowed_labels);
7118 ggc_mark_tree (p->named_labels);
7119 mark_binding_level (&p->binding_level);
7122 /* Copy the DECL_LANG_SPECIFIC data associated with NODE. */
7124 void
7125 copy_lang_decl (decl)
7126 tree decl;
7128 struct lang_decl *ld;
7130 if (!DECL_LANG_SPECIFIC (decl))
7131 return;
7133 ld = (struct lang_decl *) ggc_alloc (sizeof (struct lang_decl));
7134 memcpy ((char *) ld, (char *) DECL_LANG_SPECIFIC (decl),
7135 sizeof (struct lang_decl));
7136 DECL_LANG_SPECIFIC (decl) = ld;
7139 /* Mark the language specific bits in T for GC. */
7141 void
7142 lang_mark_tree (t)
7143 tree t;
7145 if (TREE_CODE (t) == IDENTIFIER_NODE)
7147 struct lang_identifier *i = (struct lang_identifier *) t;
7148 ggc_mark_tree (i->global_value);
7149 ggc_mark_tree (i->local_value);
7150 ggc_mark_tree (i->label_value);
7151 ggc_mark_tree (i->implicit_decl);
7152 ggc_mark_tree (i->error_locus);
7153 ggc_mark_tree (i->limbo_value);
7155 else if (TYPE_P (t) && TYPE_LANG_SPECIFIC (t))
7156 ggc_mark (TYPE_LANG_SPECIFIC (t));
7157 else if (DECL_P (t) && DECL_LANG_SPECIFIC (t))
7159 ggc_mark (DECL_LANG_SPECIFIC (t));
7160 c_mark_lang_decl (&DECL_LANG_SPECIFIC (t)->base);
7161 ggc_mark_tree (DECL_LANG_SPECIFIC (t)->pending_sizes);
7165 /* The functions below are required for functionality of doing
7166 function at once processing in the C front end. Currently these
7167 functions are not called from anywhere in the C front end, but as
7168 these changes continue, that will change. */
7170 /* Returns non-zero if the current statement is a full expression,
7171 i.e. temporaries created during that statement should be destroyed
7172 at the end of the statement. */
7175 stmts_are_full_exprs_p ()
7177 return 0;
7180 /* Returns the stmt_tree (if any) to which statements are currently
7181 being added. If there is no active statement-tree, NULL is
7182 returned. */
7184 stmt_tree
7185 current_stmt_tree ()
7187 return &c_stmt_tree;
7190 /* Returns the stack of SCOPE_STMTs for the current function. */
7192 tree *
7193 current_scope_stmt_stack ()
7195 return &c_scope_stmt_stack;
7198 /* Nonzero if TYPE is an anonymous union or struct type. Always 0 in
7199 C. */
7202 anon_aggr_type_p (node)
7203 tree node ATTRIBUTE_UNUSED;
7205 return 0;
7208 /* Dummy function in place of callback used by C++. */
7210 void
7211 extract_interface_info ()
7215 /* Return a new COMPOUND_STMT, after adding it to the current
7216 statement tree. */
7218 tree
7219 c_begin_compound_stmt ()
7221 tree stmt;
7223 /* Create the COMPOUND_STMT. */
7224 stmt = add_stmt (build_stmt (COMPOUND_STMT, NULL_TREE));
7226 return stmt;
7229 /* Expand T (a DECL_STMT) if it declares an entity not handled by the
7230 common code. */
7232 void
7233 c_expand_decl_stmt (t)
7234 tree t;
7236 tree decl = DECL_STMT_DECL (t);
7238 /* Expand nested functions. */
7239 if (TREE_CODE (decl) == FUNCTION_DECL
7240 && DECL_CONTEXT (decl) == current_function_decl
7241 && DECL_SAVED_TREE (decl))
7242 c_expand_body (decl, /*nested_p=*/1, /*can_defer_p=*/0);
7245 /* Return the IDENTIFIER_GLOBAL_VALUE of T, for use in common code, since
7246 the definition of IDENTIFIER_GLOBAL_VALUE is different for C and C++. */
7248 tree
7249 identifier_global_value (t)
7250 tree t;
7252 return IDENTIFIER_GLOBAL_VALUE (t);
7255 /* Record a builtin type for C. If NAME is non-NULL, it is the name used;
7256 otherwise the name is found in ridpointers from RID_INDEX. */
7258 void
7259 record_builtin_type (rid_index, name, type)
7260 enum rid rid_index;
7261 const char *name;
7262 tree type;
7264 tree id;
7265 if (name == 0)
7266 id = ridpointers[(int) rid_index];
7267 else
7268 id = get_identifier (name);
7269 pushdecl (build_decl (TYPE_DECL, id, type));
7272 /* Build the void_list_node (void_type_node having been created). */
7273 tree
7274 build_void_list_node ()
7276 tree t = build_tree_list (NULL_TREE, void_type_node);
7277 return t;