Add config suport for s390
[official-gcc.git] / gcc / c-decl.c
blobf0d229db69dca944fbf874be14bfeea826c100b9
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 GNU CC.
7 GNU CC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
12 GNU CC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU CC; see the file COPYING. If not, write to
19 the Free Software Foundation, 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
22 /* Process declarations and symbol lookup for C front end.
23 Also constructs types; the standard scalar types at initialization,
24 and structure, union, array and enum types when they are declared. */
26 /* ??? not all decl nodes are given the most useful possible
27 line numbers. For example, the CONST_DECLs for enum values. */
29 #include "config.h"
30 #include "system.h"
31 #include "intl.h"
32 #include "tree.h"
33 #include "rtl.h"
34 #include "flags.h"
35 #include "function.h"
36 #include "output.h"
37 #include "expr.h"
38 #include "c-tree.h"
39 #include "c-lex.h"
40 #include "toplev.h"
41 #include "ggc.h"
42 #include "tm_p.h"
43 #include "cpplib.h"
45 /* In grokdeclarator, distinguish syntactic contexts of declarators. */
46 enum decl_context
47 { NORMAL, /* Ordinary declaration */
48 FUNCDEF, /* Function definition */
49 PARM, /* Declaration of parm before function body */
50 FIELD, /* Declaration inside struct or union */
51 BITFIELD, /* Likewise but with specified width */
52 TYPENAME}; /* Typename (inside cast or sizeof) */
55 /* Nonzero if we have seen an invalid cross reference
56 to a struct, union, or enum, but not yet printed the message. */
58 tree pending_invalid_xref;
59 /* File and line to appear in the eventual error message. */
60 const char *pending_invalid_xref_file;
61 int pending_invalid_xref_line;
63 /* While defining an enum type, this is 1 plus the last enumerator
64 constant value. Note that will do not have to save this or `enum_overflow'
65 around nested function definition since such a definition could only
66 occur in an enum value expression and we don't use these variables in
67 that case. */
69 static tree enum_next_value;
71 /* Nonzero means that there was overflow computing enum_next_value. */
73 static int enum_overflow;
75 /* Parsing a function declarator leaves a list of parameter names
76 or a chain or parameter decls here. */
78 static tree last_function_parms;
80 /* Parsing a function declarator leaves here a chain of structure
81 and enum types declared in the parmlist. */
83 static tree last_function_parm_tags;
85 /* After parsing the declarator that starts a function definition,
86 `start_function' puts here the list of parameter names or chain of decls.
87 `store_parm_decls' finds it here. */
89 static tree current_function_parms;
91 /* Similar, for last_function_parm_tags. */
92 static tree current_function_parm_tags;
94 /* Similar, for the file and line that the prototype came from if this is
95 an old-style definition. */
96 static const char *current_function_prototype_file;
97 static int current_function_prototype_line;
99 /* The current statement tree. */
101 static struct stmt_tree_s c_stmt_tree;
103 /* The current scope statement stack. */
105 static tree c_scope_stmt_stack;
107 /* Nonzero if __FUNCTION__ and its ilk have been declared in this
108 function. */
110 static int c_function_name_declared_p;
112 /* A list (chain of TREE_LIST nodes) of all LABEL_DECLs in the function
113 that have names. Here so we can clear out their names' definitions
114 at the end of the function. */
116 static tree named_labels;
118 /* A list of LABEL_DECLs from outer contexts that are currently shadowed. */
120 static tree shadowed_labels;
122 /* Nonzero when store_parm_decls is called indicates a varargs function.
123 Value not meaningful after store_parm_decls. */
125 static int c_function_varargs;
127 /* Set to 0 at beginning of a function definition, set to 1 if
128 a return statement that specifies a return value is seen. */
130 int current_function_returns_value;
132 /* Set to 0 at beginning of a function definition, set to 1 if
133 a return statement with no argument is seen. */
135 int current_function_returns_null;
137 /* Set to nonzero by `grokdeclarator' for a function
138 whose return type is defaulted, if warnings for this are desired. */
140 static int warn_about_return_type;
142 /* Nonzero when starting a function declared `extern inline'. */
144 static int current_extern_inline;
146 /* For each binding contour we allocate a binding_level structure
147 * which records the names defined in that contour.
148 * Contours include:
149 * 0) the global one
150 * 1) one for each function definition,
151 * where internal declarations of the parameters appear.
152 * 2) one for each compound statement,
153 * to record its declarations.
155 * The current meaning of a name can be found by searching the levels from
156 * the current one out to the global one.
159 /* Note that the information in the `names' component of the global contour
160 is duplicated in the IDENTIFIER_GLOBAL_VALUEs of all identifiers. */
162 struct binding_level
164 /* A chain of _DECL nodes for all variables, constants, functions,
165 and typedef types. These are in the reverse of the order supplied.
167 tree names;
169 /* A list of structure, union and enum definitions,
170 * for looking up tag names.
171 * It is a chain of TREE_LIST nodes, each of whose TREE_PURPOSE is a name,
172 * or NULL_TREE; and whose TREE_VALUE is a RECORD_TYPE, UNION_TYPE,
173 * or ENUMERAL_TYPE node.
175 tree tags;
177 /* For each level, a list of shadowed outer-level local definitions
178 to be restored when this level is popped.
179 Each link is a TREE_LIST whose TREE_PURPOSE is an identifier and
180 whose TREE_VALUE is its old definition (a kind of ..._DECL node). */
181 tree shadowed;
183 /* For each level (except not the global one),
184 a chain of BLOCK nodes for all the levels
185 that were entered and exited one level down. */
186 tree blocks;
188 /* The BLOCK node for this level, if one has been preallocated.
189 If 0, the BLOCK is allocated (if needed) when the level is popped. */
190 tree this_block;
192 /* The binding level which this one is contained in (inherits from). */
193 struct binding_level *level_chain;
195 /* Nonzero for the level that holds the parameters of a function. */
196 char parm_flag;
198 /* Nonzero if this level "doesn't exist" for tags. */
199 char tag_transparent;
201 /* Nonzero if sublevels of this level "don't exist" for tags.
202 This is set in the parm level of a function definition
203 while reading the function body, so that the outermost block
204 of the function body will be tag-transparent. */
205 char subblocks_tag_transparent;
207 /* Nonzero means make a BLOCK for this level regardless of all else. */
208 char keep;
210 /* Nonzero means make a BLOCK if this level has any subblocks. */
211 char keep_if_subblocks;
213 /* Number of decls in `names' that have incomplete
214 structure or union types. */
215 int n_incomplete;
217 /* A list of decls giving the (reversed) specified order of parms,
218 not including any forward-decls in the parmlist.
219 This is so we can put the parms in proper order for assign_parms. */
220 tree parm_order;
223 #define NULL_BINDING_LEVEL (struct binding_level *) NULL
225 /* The binding level currently in effect. */
227 static struct binding_level *current_binding_level;
229 /* A chain of binding_level structures awaiting reuse. */
231 static struct binding_level *free_binding_level;
233 /* The outermost binding level, for names of file scope.
234 This is created when the compiler is started and exists
235 through the entire run. */
237 static struct binding_level *global_binding_level;
239 /* Binding level structures are initialized by copying this one. */
241 static struct binding_level clear_binding_level
242 = {NULL, NULL, NULL, NULL, NULL, NULL_BINDING_LEVEL, 0, 0, 0, 0, 0, 0,
243 NULL};
245 /* Nonzero means unconditionally make a BLOCK for the next level pushed. */
247 static int keep_next_level_flag;
249 /* Nonzero means make a BLOCK for the next level pushed
250 if it has subblocks. */
252 static int keep_next_if_subblocks;
254 /* The chain of outer levels of label scopes.
255 This uses the same data structure used for binding levels,
256 but it works differently: each link in the chain records
257 saved values of named_labels and shadowed_labels for
258 a label binding level outside the current one. */
260 static struct binding_level *label_level_chain;
262 /* Functions called automatically at the beginning and end of execution. */
264 tree static_ctors, static_dtors;
266 /* Forward declarations. */
268 static struct binding_level * make_binding_level PARAMS ((void));
269 static void mark_binding_level PARAMS ((void *));
270 static void clear_limbo_values PARAMS ((tree));
271 static int duplicate_decls PARAMS ((tree, tree, int));
272 static int redeclaration_error_message PARAMS ((tree, tree));
273 static void storedecls PARAMS ((tree));
274 static void storetags PARAMS ((tree));
275 static tree lookup_tag PARAMS ((enum tree_code, tree,
276 struct binding_level *, int));
277 static tree lookup_tag_reverse PARAMS ((tree));
278 static tree grokdeclarator PARAMS ((tree, tree, enum decl_context,
279 int));
280 static tree grokparms PARAMS ((tree, int));
281 static void layout_array_type PARAMS ((tree));
282 static tree c_make_fname_decl PARAMS ((tree, const char *, int));
283 static void c_expand_body PARAMS ((tree, int));
285 /* C-specific option variables. */
287 /* Nonzero means allow type mismatches in conditional expressions;
288 just make their values `void'. */
290 int flag_cond_mismatch;
292 /* Nonzero means don't recognize the keyword `asm'. */
294 int flag_no_asm;
296 /* Nonzero means do some things the same way PCC does. */
298 int flag_traditional;
300 /* Nonzero means enable C89 Amendment 1 features. */
302 int flag_isoc94 = 0;
304 /* Nonzero means use the ISO C99 dialect of C. */
306 int flag_isoc99 = 0;
308 /* Nonzero means that we have builtin functions, and main is an int */
310 int flag_hosted = 1;
312 /* Nonzero means add default format_arg attributes for functions not
313 in ISO C. */
315 int flag_noniso_default_format_attributes = 1;
317 /* Nonzero means to allow single precision math even if we're generally
318 being traditional. */
319 int flag_allow_single_precision = 0;
321 /* Nonzero means to treat bitfields as signed unless they say `unsigned'. */
323 int flag_signed_bitfields = 1;
324 int explicit_flag_signed_bitfields = 0;
326 /* Nonzero means warn about use of implicit int. */
328 int warn_implicit_int;
330 /* Nonzero means warn about usage of long long when `-pedantic'. */
332 int warn_long_long = 1;
334 /* Nonzero means message about use of implicit function declarations;
335 1 means warning; 2 means error. */
337 int mesg_implicit_function_declaration = -1;
339 /* Nonzero means give string constants the type `const char *'
340 to get extra warnings from them. These warnings will be too numerous
341 to be useful, except in thoroughly ANSIfied programs. */
343 int flag_const_strings;
345 /* Nonzero means warn about pointer casts that can drop a type qualifier
346 from the pointer target type. */
348 int warn_cast_qual;
350 /* Nonzero means warn when casting a function call to a type that does
351 not match the return type (e.g. (float)sqrt() or (anything*)malloc()
352 when there is no previous declaration of sqrt or malloc. */
354 int warn_bad_function_cast;
356 /* Warn about functions which might be candidates for format attributes. */
358 int warn_missing_format_attribute;
360 /* Warn about traditional constructs whose meanings changed in ANSI C. */
362 int warn_traditional;
364 /* Nonzero means warn about sizeof(function) or addition/subtraction
365 of function pointers. */
367 int warn_pointer_arith;
369 /* Nonzero means warn for non-prototype function decls
370 or non-prototyped defs without previous prototype. */
372 int warn_strict_prototypes;
374 /* Nonzero means warn for any global function def
375 without separate previous prototype decl. */
377 int warn_missing_prototypes;
379 /* Nonzero means warn for any global function def
380 without separate previous decl. */
382 int warn_missing_declarations;
384 /* Nonzero means warn about multiple (redundant) decls for the same single
385 variable or function. */
387 int warn_redundant_decls = 0;
389 /* Nonzero means warn about extern declarations of objects not at
390 file-scope level and about *all* declarations of functions (whether
391 extern or static) not at file-scope level. Note that we exclude
392 implicit function declarations. To get warnings about those, use
393 -Wimplicit. */
395 int warn_nested_externs = 0;
397 /* Warn about a subscript that has type char. */
399 int warn_char_subscripts = 0;
401 /* Warn if a type conversion is done that might have confusing results. */
403 int warn_conversion;
405 /* Warn if adding () is suggested. */
407 int warn_parentheses;
409 /* Warn if initializer is not completely bracketed. */
411 int warn_missing_braces;
413 /* Warn if main is suspicious. */
415 int warn_main;
417 /* Warn about #pragma directives that are not recognised. */
419 int warn_unknown_pragmas = 0; /* Tri state variable. */
421 /* Warn about comparison of signed and unsigned values.
422 If -1, neither -Wsign-compare nor -Wno-sign-compare has been specified. */
424 int warn_sign_compare = -1;
426 /* Warn about testing equality of floating point numbers. */
428 int warn_float_equal = 0;
430 /* Nonzero means warn about use of multicharacter literals. */
432 int warn_multichar = 1;
434 /* The variant of the C language being processed. */
436 c_language_kind c_language = clk_c;
438 /* Nonzero means `$' can be in an identifier. */
440 #ifndef DOLLARS_IN_IDENTIFIERS
441 #define DOLLARS_IN_IDENTIFIERS 1
442 #endif
443 int dollars_in_ident = DOLLARS_IN_IDENTIFIERS;
445 /* Decode the string P as a language-specific option for C.
446 Return the number of strings consumed. Should not complain
447 if it does not recognise the option. */
450 c_decode_option (argc, argv)
451 int argc ATTRIBUTE_UNUSED;
452 char **argv;
454 int strings_processed;
455 const char *option_value = NULL;
456 char *p = argv[0];
458 strings_processed = cpp_handle_option (parse_in, argc, argv);
460 if (!strcmp (p, "-ftraditional") || !strcmp (p, "-traditional"))
462 flag_traditional = 1;
463 flag_writable_strings = 1;
465 else if (!strcmp (p, "-fallow-single-precision"))
466 flag_allow_single_precision = 1;
467 else if (!strcmp (p, "-fhosted") || !strcmp (p, "-fno-freestanding"))
469 flag_hosted = 1;
470 flag_no_builtin = 0;
472 else if (!strcmp (p, "-ffreestanding") || !strcmp (p, "-fno-hosted"))
474 flag_hosted = 0;
475 flag_no_builtin = 1;
476 /* warn_main will be 2 if set by -Wall, 1 if set by -Wmain */
477 if (warn_main == 2)
478 warn_main = 0;
480 else if (!strcmp (p, "-fnotraditional") || !strcmp (p, "-fno-traditional"))
482 flag_traditional = 0;
483 flag_writable_strings = 0;
485 else if (!strncmp (p, "-std=", 5))
487 /* Select the appropriate language standard. We currently
488 recognize:
489 -std=iso9899:1990 same as -ansi
490 -std=iso9899:199409 ISO C as modified in amend. 1
491 -std=iso9899:1999 ISO C 99
492 -std=c89 same as -std=iso9899:1990
493 -std=c99 same as -std=iso9899:1999
494 -std=gnu89 default, iso9899:1990 + gnu extensions
495 -std=gnu99 iso9899:1999 + gnu extensions
497 const char *argstart = &p[5];
499 if (!strcmp (argstart, "iso9899:1990")
500 || !strcmp (argstart, "c89"))
502 iso_1990:
503 flag_isoc94 = 0;
504 iso_1994:
505 flag_traditional = 0;
506 flag_writable_strings = 0;
507 flag_no_asm = 1;
508 flag_no_nonansi_builtin = 1;
509 flag_noniso_default_format_attributes = 0;
510 flag_isoc99 = 0;
512 else if (!strcmp (argstart, "iso9899:199409"))
514 flag_isoc94 = 1;
515 goto iso_1994;
517 else if (!strcmp (argstart, "iso9899:199x")
518 || !strcmp (argstart, "iso9899:1999")
519 || !strcmp (argstart, "c9x")
520 || !strcmp (argstart, "c99"))
522 flag_traditional = 0;
523 flag_writable_strings = 0;
524 flag_no_asm = 1;
525 flag_no_nonansi_builtin = 1;
526 flag_noniso_default_format_attributes = 0;
527 flag_isoc99 = 1;
528 flag_isoc94 = 1;
530 else if (!strcmp (argstart, "gnu89"))
532 flag_traditional = 0;
533 flag_writable_strings = 0;
534 flag_no_asm = 0;
535 flag_no_nonansi_builtin = 0;
536 flag_noniso_default_format_attributes = 1;
537 flag_isoc99 = 0;
538 flag_isoc94 = 0;
540 else if (!strcmp (argstart, "gnu9x") || !strcmp (argstart, "gnu99"))
542 flag_traditional = 0;
543 flag_writable_strings = 0;
544 flag_no_asm = 0;
545 flag_no_nonansi_builtin = 0;
546 flag_noniso_default_format_attributes = 1;
547 flag_isoc99 = 1;
548 flag_isoc94 = 1;
550 else
551 error ("unknown C standard `%s'", argstart);
553 else if (!strcmp (p, "-fdollars-in-identifiers"))
554 dollars_in_ident = 1;
555 else if (!strcmp (p, "-fno-dollars-in-identifiers"))
556 dollars_in_ident = 0;
557 else if (!strcmp (p, "-fsigned-char"))
558 flag_signed_char = 1;
559 else if (!strcmp (p, "-funsigned-char"))
560 flag_signed_char = 0;
561 else if (!strcmp (p, "-fno-signed-char"))
562 flag_signed_char = 0;
563 else if (!strcmp (p, "-fno-unsigned-char"))
564 flag_signed_char = 1;
565 else if (!strcmp (p, "-fsigned-bitfields")
566 || !strcmp (p, "-fno-unsigned-bitfields"))
568 flag_signed_bitfields = 1;
569 explicit_flag_signed_bitfields = 1;
571 else if (!strcmp (p, "-funsigned-bitfields")
572 || !strcmp (p, "-fno-signed-bitfields"))
574 flag_signed_bitfields = 0;
575 explicit_flag_signed_bitfields = 1;
577 else if (!strcmp (p, "-fshort-enums"))
578 flag_short_enums = 1;
579 else if (!strcmp (p, "-fno-short-enums"))
580 flag_short_enums = 0;
581 else if (!strcmp (p, "-fshort-wchar"))
582 flag_short_wchar = 1;
583 else if (!strcmp (p, "-fno-short-wchar"))
584 flag_short_wchar = 0;
585 else if (!strcmp (p, "-fcond-mismatch"))
586 flag_cond_mismatch = 1;
587 else if (!strcmp (p, "-fno-cond-mismatch"))
588 flag_cond_mismatch = 0;
589 else if (!strcmp (p, "-fshort-double"))
590 flag_short_double = 1;
591 else if (!strcmp (p, "-fno-short-double"))
592 flag_short_double = 0;
593 else if (!strcmp (p, "-fasm"))
594 flag_no_asm = 0;
595 else if (!strcmp (p, "-fno-asm"))
596 flag_no_asm = 1;
597 else if (!strcmp (p, "-fbuiltin"))
598 flag_no_builtin = 0;
599 else if (!strcmp (p, "-fno-builtin"))
600 flag_no_builtin = 1;
601 else if ((option_value
602 = skip_leading_substring (p, "-fdump-translation-unit-")))
604 if (p[22] == '\0')
605 error ("no file specified with -fdump-translation-unit");
606 else
607 flag_dump_translation_unit = option_value;
609 else if (!strcmp (p, "-ansi"))
610 goto iso_1990;
611 else if (!strcmp (p, "-Werror-implicit-function-declaration"))
612 mesg_implicit_function_declaration = 2;
613 else if (!strcmp (p, "-Wimplicit-function-declaration"))
614 mesg_implicit_function_declaration = 1;
615 else if (!strcmp (p, "-Wno-implicit-function-declaration"))
616 mesg_implicit_function_declaration = 0;
617 else if (!strcmp (p, "-Wimplicit-int"))
618 warn_implicit_int = 1;
619 else if (!strcmp (p, "-Wno-implicit-int"))
620 warn_implicit_int = 0;
621 else if (!strcmp (p, "-Wimplicit"))
623 warn_implicit_int = 1;
624 if (mesg_implicit_function_declaration != 2)
625 mesg_implicit_function_declaration = 1;
627 else if (!strcmp (p, "-Wno-implicit"))
628 warn_implicit_int = 0, mesg_implicit_function_declaration = 0;
629 else if (!strcmp (p, "-Wlong-long"))
630 warn_long_long = 1;
631 else if (!strcmp (p, "-Wno-long-long"))
632 warn_long_long = 0;
633 else if (!strcmp (p, "-Wwrite-strings"))
634 flag_const_strings = 1;
635 else if (!strcmp (p, "-Wno-write-strings"))
636 flag_const_strings = 0;
637 else if (!strcmp (p, "-Wcast-qual"))
638 warn_cast_qual = 1;
639 else if (!strcmp (p, "-Wno-cast-qual"))
640 warn_cast_qual = 0;
641 else if (!strcmp (p, "-Wbad-function-cast"))
642 warn_bad_function_cast = 1;
643 else if (!strcmp (p, "-Wno-bad-function-cast"))
644 warn_bad_function_cast = 0;
645 else if (!strcmp (p, "-Wno-missing-noreturn"))
646 warn_missing_noreturn = 0;
647 else if (!strcmp (p, "-Wmissing-format-attribute"))
648 warn_missing_format_attribute = 1;
649 else if (!strcmp (p, "-Wno-missing-format-attribute"))
650 warn_missing_format_attribute = 0;
651 else if (!strcmp (p, "-Wpointer-arith"))
652 warn_pointer_arith = 1;
653 else if (!strcmp (p, "-Wno-pointer-arith"))
654 warn_pointer_arith = 0;
655 else if (!strcmp (p, "-Wstrict-prototypes"))
656 warn_strict_prototypes = 1;
657 else if (!strcmp (p, "-Wno-strict-prototypes"))
658 warn_strict_prototypes = 0;
659 else if (!strcmp (p, "-Wmissing-prototypes"))
660 warn_missing_prototypes = 1;
661 else if (!strcmp (p, "-Wno-missing-prototypes"))
662 warn_missing_prototypes = 0;
663 else if (!strcmp (p, "-Wmissing-declarations"))
664 warn_missing_declarations = 1;
665 else if (!strcmp (p, "-Wno-missing-declarations"))
666 warn_missing_declarations = 0;
667 else if (!strcmp (p, "-Wredundant-decls"))
668 warn_redundant_decls = 1;
669 else if (!strcmp (p, "-Wno-redundant-decls"))
670 warn_redundant_decls = 0;
671 else if (!strcmp (p, "-Wnested-externs"))
672 warn_nested_externs = 1;
673 else if (!strcmp (p, "-Wno-nested-externs"))
674 warn_nested_externs = 0;
675 else if (!strcmp (p, "-Wtraditional"))
676 warn_traditional = 1;
677 else if (!strcmp (p, "-Wno-traditional"))
678 warn_traditional = 0;
679 else if (!strncmp (p, "-Wformat=", 9))
680 set_Wformat (atoi (p + 9));
681 else if (!strcmp (p, "-Wformat"))
682 set_Wformat (1);
683 else if (!strcmp (p, "-Wno-format"))
684 set_Wformat (0);
685 else if (!strcmp (p, "-Wformat-y2k"))
686 warn_format_y2k = 1;
687 else if (!strcmp (p, "-Wno-format-y2k"))
688 warn_format_y2k = 0;
689 else if (!strcmp (p, "-Wformat-extra-args"))
690 warn_format_extra_args = 1;
691 else if (!strcmp (p, "-Wno-format-extra-args"))
692 warn_format_extra_args = 0;
693 else if (!strcmp (p, "-Wformat-nonliteral"))
694 warn_format_nonliteral = 1;
695 else if (!strcmp (p, "-Wno-format-nonliteral"))
696 warn_format_nonliteral = 0;
697 else if (!strcmp (p, "-Wformat-security"))
698 warn_format_security = 1;
699 else if (!strcmp (p, "-Wno-format-security"))
700 warn_format_security = 0;
701 else if (!strcmp (p, "-Wchar-subscripts"))
702 warn_char_subscripts = 1;
703 else if (!strcmp (p, "-Wno-char-subscripts"))
704 warn_char_subscripts = 0;
705 else if (!strcmp (p, "-Wconversion"))
706 warn_conversion = 1;
707 else if (!strcmp (p, "-Wno-conversion"))
708 warn_conversion = 0;
709 else if (!strcmp (p, "-Wparentheses"))
710 warn_parentheses = 1;
711 else if (!strcmp (p, "-Wno-parentheses"))
712 warn_parentheses = 0;
713 else if (!strcmp (p, "-Wreturn-type"))
714 warn_return_type = 1;
715 else if (!strcmp (p, "-Wno-return-type"))
716 warn_return_type = 0;
717 else if (!strcmp (p, "-Wsequence-point"))
718 warn_sequence_point = 1;
719 else if (!strcmp (p, "-Wno-sequence-point"))
720 warn_sequence_point = 0;
721 else if (!strcmp (p, "-Wcomment"))
722 ; /* cpp handles this one. */
723 else if (!strcmp (p, "-Wno-comment"))
724 ; /* cpp handles this one. */
725 else if (!strcmp (p, "-Wcomments"))
726 ; /* cpp handles this one. */
727 else if (!strcmp (p, "-Wno-comments"))
728 ; /* cpp handles this one. */
729 else if (!strcmp (p, "-Wtrigraphs"))
730 ; /* cpp handles this one. */
731 else if (!strcmp (p, "-Wno-trigraphs"))
732 ; /* cpp handles this one. */
733 else if (!strcmp (p, "-Wundef"))
734 ; /* cpp handles this one. */
735 else if (!strcmp (p, "-Wno-undef"))
736 ; /* cpp handles this one. */
737 else if (!strcmp (p, "-Wimport"))
738 ; /* cpp handles this one. */
739 else if (!strcmp (p, "-Wno-import"))
740 ; /* cpp handles this one. */
741 else if (!strcmp (p, "-Wmissing-braces"))
742 warn_missing_braces = 1;
743 else if (!strcmp (p, "-Wno-missing-braces"))
744 warn_missing_braces = 0;
745 else if (!strcmp (p, "-Wmain"))
746 warn_main = 1;
747 else if (!strcmp (p, "-Wno-main"))
748 warn_main = -1;
749 else if (!strcmp (p, "-Wsign-compare"))
750 warn_sign_compare = 1;
751 else if (!strcmp (p, "-Wno-sign-compare"))
752 warn_sign_compare = 0;
753 else if (!strcmp (p, "-Wfloat-equal"))
754 warn_float_equal = 1;
755 else if (!strcmp (p, "-Wno-float-equal"))
756 warn_float_equal = 0;
757 else if (!strcmp (p, "-Wmultichar"))
758 warn_multichar = 1;
759 else if (!strcmp (p, "-Wno-multichar"))
760 warn_multichar = 0;
761 else if (!strcmp (p, "-Wunknown-pragmas"))
762 /* Set to greater than 1, so that even unknown pragmas in system
763 headers will be warned about. */
764 warn_unknown_pragmas = 2;
765 else if (!strcmp (p, "-Wno-unknown-pragmas"))
766 warn_unknown_pragmas = 0;
767 else if (!strcmp (p, "-Wall"))
769 /* We save the value of warn_uninitialized, since if they put
770 -Wuninitialized on the command line, we need to generate a
771 warning about not using it without also specifying -O. */
772 if (warn_uninitialized != 1)
773 warn_uninitialized = 2;
774 warn_implicit_int = 1;
775 mesg_implicit_function_declaration = 1;
776 warn_return_type = 1;
777 set_Wunused (1);
778 warn_switch = 1;
779 set_Wformat (1);
780 warn_char_subscripts = 1;
781 warn_parentheses = 1;
782 warn_sequence_point = 1;
783 warn_missing_braces = 1;
784 /* We set this to 2 here, but 1 in -Wmain, so -ffreestanding can turn
785 it off only if it's not explicit. */
786 warn_main = 2;
787 /* Only warn about unknown pragmas that are not in system headers. */
788 warn_unknown_pragmas = 1;
790 else
791 return strings_processed;
793 return 1;
796 /* Hooks for print_node. */
798 void
799 print_lang_decl (file, node, indent)
800 FILE *file ATTRIBUTE_UNUSED;
801 tree node ATTRIBUTE_UNUSED;
802 int indent ATTRIBUTE_UNUSED;
806 void
807 print_lang_type (file, node, indent)
808 FILE *file ATTRIBUTE_UNUSED;
809 tree node ATTRIBUTE_UNUSED;
810 int indent ATTRIBUTE_UNUSED;
814 void
815 print_lang_identifier (file, node, indent)
816 FILE *file;
817 tree node;
818 int indent;
820 print_node (file, "global", IDENTIFIER_GLOBAL_VALUE (node), indent + 4);
821 print_node (file, "local", IDENTIFIER_LOCAL_VALUE (node), indent + 4);
822 print_node (file, "label", IDENTIFIER_LABEL_VALUE (node), indent + 4);
823 print_node (file, "implicit", IDENTIFIER_IMPLICIT_DECL (node), indent + 4);
824 print_node (file, "error locus", IDENTIFIER_ERROR_LOCUS (node), indent + 4);
825 print_node (file, "limbo value", IDENTIFIER_LIMBO_VALUE (node), indent + 4);
826 if (C_IS_RESERVED_WORD (node))
828 tree rid = ridpointers[C_RID_CODE (node)];
829 indent_to (file, indent + 4);
830 fprintf (file, "rid ");
831 fprintf (file, HOST_PTR_PRINTF, (void *)rid);
832 fprintf (file, " \"%s\"", IDENTIFIER_POINTER (rid));
836 /* Hook called at end of compilation to assume 1 elt
837 for a top-level tentative array defn that wasn't complete before. */
839 void
840 finish_incomplete_decl (decl)
841 tree decl;
843 if (TREE_CODE (decl) == VAR_DECL)
845 tree type = TREE_TYPE (decl);
846 if (type != error_mark_node
847 && TREE_CODE (type) == ARRAY_TYPE
848 && ! DECL_EXTERNAL (decl)
849 && TYPE_DOMAIN (type) == 0)
851 warning_with_decl (decl, "array `%s' assumed to have one element");
853 complete_array_type (type, NULL_TREE, 1);
855 layout_decl (decl, 0);
860 /* Create a new `struct binding_level'. */
862 static struct binding_level *
863 make_binding_level ()
865 /* NOSTRICT */
866 return (struct binding_level *) xmalloc (sizeof (struct binding_level));
869 /* Nonzero if we are currently in the global binding level. */
872 global_bindings_p ()
874 return current_binding_level == global_binding_level;
877 void
878 keep_next_level ()
880 keep_next_level_flag = 1;
883 /* Nonzero if the current level needs to have a BLOCK made. */
886 kept_level_p ()
888 return ((current_binding_level->keep_if_subblocks
889 && current_binding_level->blocks != 0)
890 || current_binding_level->keep
891 || current_binding_level->names != 0
892 || (current_binding_level->tags != 0
893 && !current_binding_level->tag_transparent));
896 /* Identify this binding level as a level of parameters.
897 DEFINITION_FLAG is 1 for a definition, 0 for a declaration.
898 But it turns out there is no way to pass the right value for
899 DEFINITION_FLAG, so we ignore it. */
901 void
902 declare_parm_level (definition_flag)
903 int definition_flag ATTRIBUTE_UNUSED;
905 current_binding_level->parm_flag = 1;
908 /* Nonzero if currently making parm declarations. */
911 in_parm_level_p ()
913 return current_binding_level->parm_flag;
916 /* Enter a new binding level.
917 If TAG_TRANSPARENT is nonzero, do so only for the name space of variables,
918 not for that of tags. */
920 void
921 pushlevel (tag_transparent)
922 int tag_transparent;
924 register struct binding_level *newlevel = NULL_BINDING_LEVEL;
926 /* If this is the top level of a function,
927 just make sure that NAMED_LABELS is 0. */
929 if (current_binding_level == global_binding_level)
931 named_labels = 0;
934 /* Reuse or create a struct for this binding level. */
936 if (free_binding_level)
938 newlevel = free_binding_level;
939 free_binding_level = free_binding_level->level_chain;
941 else
943 newlevel = make_binding_level ();
946 /* Add this level to the front of the chain (stack) of levels that
947 are active. */
949 *newlevel = clear_binding_level;
950 newlevel->tag_transparent
951 = (tag_transparent
952 || (current_binding_level
953 ? current_binding_level->subblocks_tag_transparent
954 : 0));
955 newlevel->level_chain = current_binding_level;
956 current_binding_level = newlevel;
957 newlevel->keep = keep_next_level_flag;
958 keep_next_level_flag = 0;
959 newlevel->keep_if_subblocks = keep_next_if_subblocks;
960 keep_next_if_subblocks = 0;
963 /* Clear the limbo values of all identifiers defined in BLOCK or a subblock. */
965 static void
966 clear_limbo_values (block)
967 tree block;
969 tree tem;
971 for (tem = BLOCK_VARS (block); tem; tem = TREE_CHAIN (tem))
972 if (DECL_NAME (tem) != 0)
973 IDENTIFIER_LIMBO_VALUE (DECL_NAME (tem)) = 0;
975 for (tem = BLOCK_SUBBLOCKS (block); tem; tem = TREE_CHAIN (tem))
976 clear_limbo_values (tem);
979 /* Exit a binding level.
980 Pop the level off, and restore the state of the identifier-decl mappings
981 that were in effect when this level was entered.
983 If KEEP is nonzero, this level had explicit declarations, so
984 and create a "block" (a BLOCK node) for the level
985 to record its declarations and subblocks for symbol table output.
987 If FUNCTIONBODY is nonzero, this level is the body of a function,
988 so create a block as if KEEP were set and also clear out all
989 label names.
991 If REVERSE is nonzero, reverse the order of decls before putting
992 them into the BLOCK. */
994 tree
995 poplevel (keep, reverse, functionbody)
996 int keep;
997 int reverse;
998 int functionbody;
1000 register tree link;
1001 /* The chain of decls was accumulated in reverse order.
1002 Put it into forward order, just for cleanliness. */
1003 tree decls;
1004 tree tags = current_binding_level->tags;
1005 tree subblocks = current_binding_level->blocks;
1006 tree block = 0;
1007 tree decl;
1008 int block_previously_created;
1010 keep |= current_binding_level->keep;
1012 /* This warning is turned off because it causes warnings for
1013 declarations like `extern struct foo *x'. */
1014 #if 0
1015 /* Warn about incomplete structure types in this level. */
1016 for (link = tags; link; link = TREE_CHAIN (link))
1017 if (!COMPLETE_TYPE_P (TREE_VALUE (link)))
1019 tree type = TREE_VALUE (link);
1020 tree type_name = TYPE_NAME (type);
1021 char *id = IDENTIFIER_POINTER (TREE_CODE (type_name) == IDENTIFIER_NODE
1022 ? type_name
1023 : DECL_NAME (type_name));
1024 switch (TREE_CODE (type))
1026 case RECORD_TYPE:
1027 error ("`struct %s' incomplete in scope ending here", id);
1028 break;
1029 case UNION_TYPE:
1030 error ("`union %s' incomplete in scope ending here", id);
1031 break;
1032 case ENUMERAL_TYPE:
1033 error ("`enum %s' incomplete in scope ending here", id);
1034 break;
1037 #endif /* 0 */
1039 /* Get the decls in the order they were written.
1040 Usually current_binding_level->names is in reverse order.
1041 But parameter decls were previously put in forward order. */
1043 if (reverse)
1044 current_binding_level->names
1045 = decls = nreverse (current_binding_level->names);
1046 else
1047 decls = current_binding_level->names;
1049 /* Output any nested inline functions within this block
1050 if they weren't already output. */
1052 for (decl = decls; decl; decl = TREE_CHAIN (decl))
1053 if (TREE_CODE (decl) == FUNCTION_DECL
1054 && ! TREE_ASM_WRITTEN (decl)
1055 && DECL_INITIAL (decl) != 0
1056 && TREE_ADDRESSABLE (decl))
1058 /* If this decl was copied from a file-scope decl
1059 on account of a block-scope extern decl,
1060 propagate TREE_ADDRESSABLE to the file-scope decl.
1062 DECL_ABSTRACT_ORIGIN can be set to itself if warn_return_type is
1063 true, since then the decl goes through save_for_inline_copying. */
1064 if (DECL_ABSTRACT_ORIGIN (decl) != 0
1065 && DECL_ABSTRACT_ORIGIN (decl) != decl)
1066 TREE_ADDRESSABLE (DECL_ABSTRACT_ORIGIN (decl)) = 1;
1069 /* We used to warn about unused variables in expand_end_bindings,
1070 i.e. while generating RTL. But in function-at-a-time mode we may
1071 choose to never expand a function at all (e.g. auto inlining), so
1072 we do this explicitly now. */
1073 warn_about_unused_variables (getdecls ());
1075 /* If there were any declarations or structure tags in that level,
1076 or if this level is a function body,
1077 create a BLOCK to record them for the life of this function. */
1079 block = 0;
1080 block_previously_created = (current_binding_level->this_block != 0);
1081 if (block_previously_created)
1082 block = current_binding_level->this_block;
1083 else if (keep || functionbody
1084 || (current_binding_level->keep_if_subblocks && subblocks != 0))
1085 block = make_node (BLOCK);
1086 if (block != 0)
1088 BLOCK_VARS (block) = decls;
1089 BLOCK_SUBBLOCKS (block) = subblocks;
1092 /* In each subblock, record that this is its superior. */
1094 for (link = subblocks; link; link = TREE_CHAIN (link))
1095 BLOCK_SUPERCONTEXT (link) = block;
1097 /* Clear out the meanings of the local variables of this level. */
1099 for (link = decls; link; link = TREE_CHAIN (link))
1101 if (DECL_NAME (link) != 0)
1103 /* If the ident. was used or addressed via a local extern decl,
1104 don't forget that fact. */
1105 if (DECL_EXTERNAL (link))
1107 if (TREE_USED (link))
1108 TREE_USED (DECL_NAME (link)) = 1;
1109 if (TREE_ADDRESSABLE (link))
1110 TREE_ADDRESSABLE (DECL_ASSEMBLER_NAME (link)) = 1;
1112 IDENTIFIER_LOCAL_VALUE (DECL_NAME (link)) = 0;
1116 /* Restore all name-meanings of the outer levels
1117 that were shadowed by this level. */
1119 for (link = current_binding_level->shadowed; link; link = TREE_CHAIN (link))
1120 IDENTIFIER_LOCAL_VALUE (TREE_PURPOSE (link)) = TREE_VALUE (link);
1122 /* If the level being exited is the top level of a function,
1123 check over all the labels, and clear out the current
1124 (function local) meanings of their names. */
1126 if (functionbody)
1128 clear_limbo_values (block);
1130 /* If this is the top level block of a function,
1131 the vars are the function's parameters.
1132 Don't leave them in the BLOCK because they are
1133 found in the FUNCTION_DECL instead. */
1135 BLOCK_VARS (block) = 0;
1137 /* Clear out the definitions of all label names,
1138 since their scopes end here,
1139 and add them to BLOCK_VARS. */
1141 for (link = named_labels; link; link = TREE_CHAIN (link))
1143 register tree label = TREE_VALUE (link);
1145 if (DECL_INITIAL (label) == 0)
1147 error_with_decl (label, "label `%s' used but not defined");
1148 /* Avoid crashing later. */
1149 define_label (input_filename, lineno,
1150 DECL_NAME (label));
1152 else if (warn_unused_label && !TREE_USED (label))
1153 warning_with_decl (label, "label `%s' defined but not used");
1154 IDENTIFIER_LABEL_VALUE (DECL_NAME (label)) = 0;
1156 /* Put the labels into the "variables" of the
1157 top-level block, so debugger can see them. */
1158 TREE_CHAIN (label) = BLOCK_VARS (block);
1159 BLOCK_VARS (block) = label;
1163 /* Pop the current level, and free the structure for reuse. */
1166 register struct binding_level *level = current_binding_level;
1167 current_binding_level = current_binding_level->level_chain;
1169 level->level_chain = free_binding_level;
1170 free_binding_level = level;
1173 /* Dispose of the block that we just made inside some higher level. */
1174 if (functionbody)
1175 DECL_INITIAL (current_function_decl) = block;
1176 else if (block)
1178 if (!block_previously_created)
1179 current_binding_level->blocks
1180 = chainon (current_binding_level->blocks, block);
1182 /* If we did not make a block for the level just exited,
1183 any blocks made for inner levels
1184 (since they cannot be recorded as subblocks in that level)
1185 must be carried forward so they will later become subblocks
1186 of something else. */
1187 else if (subblocks)
1188 current_binding_level->blocks
1189 = chainon (current_binding_level->blocks, subblocks);
1191 /* Set the TYPE_CONTEXTs for all of the tagged types belonging to this
1192 binding contour so that they point to the appropriate construct, i.e.
1193 either to the current FUNCTION_DECL node, or else to the BLOCK node
1194 we just constructed.
1196 Note that for tagged types whose scope is just the formal parameter
1197 list for some function type specification, we can't properly set
1198 their TYPE_CONTEXTs here, because we don't have a pointer to the
1199 appropriate FUNCTION_TYPE node readily available to us. For those
1200 cases, the TYPE_CONTEXTs of the relevant tagged type nodes get set
1201 in `grokdeclarator' as soon as we have created the FUNCTION_TYPE
1202 node which will represent the "scope" for these "parameter list local"
1203 tagged types. */
1205 if (functionbody)
1206 for (link = tags; link; link = TREE_CHAIN (link))
1207 TYPE_CONTEXT (TREE_VALUE (link)) = current_function_decl;
1208 else if (block)
1209 for (link = tags; link; link = TREE_CHAIN (link))
1210 TYPE_CONTEXT (TREE_VALUE (link)) = block;
1212 if (block)
1213 TREE_USED (block) = 1;
1215 return block;
1218 /* Delete the node BLOCK from the current binding level.
1219 This is used for the block inside a stmt expr ({...})
1220 so that the block can be reinserted where appropriate. */
1222 void
1223 delete_block (block)
1224 tree block;
1226 tree t;
1227 if (current_binding_level->blocks == block)
1228 current_binding_level->blocks = TREE_CHAIN (block);
1229 for (t = current_binding_level->blocks; t;)
1231 if (TREE_CHAIN (t) == block)
1232 TREE_CHAIN (t) = TREE_CHAIN (block);
1233 else
1234 t = TREE_CHAIN (t);
1236 TREE_CHAIN (block) = NULL;
1237 /* Clear TREE_USED which is always set by poplevel.
1238 The flag is set again if insert_block is called. */
1239 TREE_USED (block) = 0;
1242 /* Insert BLOCK at the end of the list of subblocks of the
1243 current binding level. This is used when a BIND_EXPR is expanded,
1244 to handle the BLOCK node inside the BIND_EXPR. */
1246 void
1247 insert_block (block)
1248 tree block;
1250 TREE_USED (block) = 1;
1251 current_binding_level->blocks
1252 = chainon (current_binding_level->blocks, block);
1255 /* Set the BLOCK node for the innermost scope
1256 (the one we are currently in). */
1258 void
1259 set_block (block)
1260 register tree block;
1262 current_binding_level->this_block = block;
1265 void
1266 push_label_level ()
1268 register struct binding_level *newlevel;
1270 /* Reuse or create a struct for this binding level. */
1272 if (free_binding_level)
1274 newlevel = free_binding_level;
1275 free_binding_level = free_binding_level->level_chain;
1277 else
1279 newlevel = make_binding_level ();
1282 /* Add this level to the front of the chain (stack) of label levels. */
1284 newlevel->level_chain = label_level_chain;
1285 label_level_chain = newlevel;
1287 newlevel->names = named_labels;
1288 newlevel->shadowed = shadowed_labels;
1289 named_labels = 0;
1290 shadowed_labels = 0;
1293 void
1294 pop_label_level ()
1296 register struct binding_level *level = label_level_chain;
1297 tree link, prev;
1299 /* Clear out the definitions of the declared labels in this level.
1300 Leave in the list any ordinary, non-declared labels. */
1301 for (link = named_labels, prev = 0; link;)
1303 if (C_DECLARED_LABEL_FLAG (TREE_VALUE (link)))
1305 if (DECL_SOURCE_LINE (TREE_VALUE (link)) == 0)
1307 error_with_decl (TREE_VALUE (link),
1308 "label `%s' used but not defined");
1309 /* Avoid crashing later. */
1310 define_label (input_filename, lineno,
1311 DECL_NAME (TREE_VALUE (link)));
1313 else if (warn_unused_label && !TREE_USED (TREE_VALUE (link)))
1314 warning_with_decl (TREE_VALUE (link),
1315 "label `%s' defined but not used");
1316 IDENTIFIER_LABEL_VALUE (DECL_NAME (TREE_VALUE (link))) = 0;
1318 /* Delete this element from the list. */
1319 link = TREE_CHAIN (link);
1320 if (prev)
1321 TREE_CHAIN (prev) = link;
1322 else
1323 named_labels = link;
1325 else
1327 prev = link;
1328 link = TREE_CHAIN (link);
1332 /* Bring back all the labels that were shadowed. */
1333 for (link = shadowed_labels; link; link = TREE_CHAIN (link))
1334 if (DECL_NAME (TREE_VALUE (link)) != 0)
1335 IDENTIFIER_LABEL_VALUE (DECL_NAME (TREE_VALUE (link)))
1336 = TREE_VALUE (link);
1338 named_labels = chainon (named_labels, level->names);
1339 shadowed_labels = level->shadowed;
1341 /* Pop the current level, and free the structure for reuse. */
1342 label_level_chain = label_level_chain->level_chain;
1343 level->level_chain = free_binding_level;
1344 free_binding_level = level;
1347 /* Push a definition or a declaration of struct, union or enum tag "name".
1348 "type" should be the type node.
1349 We assume that the tag "name" is not already defined.
1351 Note that the definition may really be just a forward reference.
1352 In that case, the TYPE_SIZE will be zero. */
1354 void
1355 pushtag (name, type)
1356 tree name, type;
1358 register struct binding_level *b;
1360 /* Find the proper binding level for this type tag. */
1362 for (b = current_binding_level; b->tag_transparent; b = b->level_chain)
1363 continue;
1365 if (name)
1367 /* Record the identifier as the type's name if it has none. */
1369 if (TYPE_NAME (type) == 0)
1370 TYPE_NAME (type) = name;
1373 b->tags = tree_cons (name, type, b->tags);
1375 /* Create a fake NULL-named TYPE_DECL node whose TREE_TYPE will be the
1376 tagged type we just added to the current binding level. This fake
1377 NULL-named TYPE_DECL node helps dwarfout.c to know when it needs
1378 to output a representation of a tagged type, and it also gives
1379 us a convenient place to record the "scope start" address for the
1380 tagged type. */
1382 TYPE_STUB_DECL (type) = pushdecl (build_decl (TYPE_DECL, NULL_TREE, type));
1384 /* An approximation for now, so we can tell this is a function-scope tag.
1385 This will be updated in poplevel. */
1386 TYPE_CONTEXT (type) = DECL_CONTEXT (TYPE_STUB_DECL (type));
1389 /* Handle when a new declaration NEWDECL
1390 has the same name as an old one OLDDECL
1391 in the same binding contour.
1392 Prints an error message if appropriate.
1394 If safely possible, alter OLDDECL to look like NEWDECL, and return 1.
1395 Otherwise, return 0.
1397 When DIFFERENT_BINDING_LEVEL is true, NEWDECL is an external declaration,
1398 and OLDDECL is in an outer binding level and should thus not be changed. */
1400 static int
1401 duplicate_decls (newdecl, olddecl, different_binding_level)
1402 register tree newdecl, olddecl;
1403 int different_binding_level;
1405 int types_match = comptypes (TREE_TYPE (newdecl), TREE_TYPE (olddecl));
1406 int new_is_definition = (TREE_CODE (newdecl) == FUNCTION_DECL
1407 && DECL_INITIAL (newdecl) != 0);
1408 tree oldtype = TREE_TYPE (olddecl);
1409 tree newtype = TREE_TYPE (newdecl);
1410 int errmsg = 0;
1412 if (DECL_P (olddecl))
1413 DECL_MACHINE_ATTRIBUTES (newdecl)
1414 = merge_machine_decl_attributes (olddecl, newdecl);
1416 if (TREE_CODE (newtype) == ERROR_MARK
1417 || TREE_CODE (oldtype) == ERROR_MARK)
1418 types_match = 0;
1420 /* New decl is completely inconsistent with the old one =>
1421 tell caller to replace the old one.
1422 This is always an error except in the case of shadowing a builtin. */
1423 if (TREE_CODE (olddecl) != TREE_CODE (newdecl))
1425 if (TREE_CODE (olddecl) == FUNCTION_DECL
1426 && (DECL_BUILT_IN (olddecl)
1427 || DECL_BUILT_IN_NONANSI (olddecl)))
1429 /* If you declare a built-in or predefined function name as static,
1430 the old definition is overridden,
1431 but optionally warn this was a bad choice of name. */
1432 if (!TREE_PUBLIC (newdecl))
1434 if (!warn_shadow)
1436 else if (DECL_BUILT_IN (olddecl))
1437 warning_with_decl (newdecl, "shadowing built-in function `%s'");
1438 else
1439 warning_with_decl (newdecl, "shadowing library function `%s'");
1441 /* Likewise, if the built-in is not ansi, then programs can
1442 override it even globally without an error. */
1443 else if (! DECL_BUILT_IN (olddecl))
1444 warning_with_decl (newdecl,
1445 "library function `%s' declared as non-function");
1447 else if (DECL_BUILT_IN_NONANSI (olddecl))
1448 warning_with_decl (newdecl,
1449 "built-in function `%s' declared as non-function");
1450 else
1451 warning_with_decl (newdecl,
1452 "built-in function `%s' declared as non-function");
1454 else
1456 error_with_decl (newdecl, "`%s' redeclared as different kind of symbol");
1457 error_with_decl (olddecl, "previous declaration of `%s'");
1460 return 0;
1463 /* For real parm decl following a forward decl,
1464 return 1 so old decl will be reused. */
1465 if (types_match && TREE_CODE (newdecl) == PARM_DECL
1466 && TREE_ASM_WRITTEN (olddecl) && ! TREE_ASM_WRITTEN (newdecl))
1467 return 1;
1469 /* The new declaration is the same kind of object as the old one.
1470 The declarations may partially match. Print warnings if they don't
1471 match enough. Ultimately, copy most of the information from the new
1472 decl to the old one, and keep using the old one. */
1474 if (flag_traditional && TREE_CODE (newdecl) == FUNCTION_DECL
1475 && IDENTIFIER_IMPLICIT_DECL (DECL_NAME (newdecl)) == olddecl
1476 && DECL_INITIAL (olddecl) == 0)
1477 /* If -traditional, avoid error for redeclaring fcn
1478 after implicit decl. */
1480 else if (TREE_CODE (olddecl) == FUNCTION_DECL
1481 && DECL_BUILT_IN (olddecl))
1483 /* A function declaration for a built-in function. */
1484 if (!TREE_PUBLIC (newdecl))
1486 /* If you declare a built-in function name as static, the
1487 built-in definition is overridden,
1488 but optionally warn this was a bad choice of name. */
1489 if (warn_shadow)
1490 warning_with_decl (newdecl, "shadowing built-in function `%s'");
1491 /* Discard the old built-in function. */
1492 return 0;
1494 else if (!types_match)
1496 /* Accept the return type of the new declaration if same modes. */
1497 tree oldreturntype = TREE_TYPE (oldtype);
1498 tree newreturntype = TREE_TYPE (newtype);
1500 if (TYPE_MODE (oldreturntype) == TYPE_MODE (newreturntype))
1502 /* Function types may be shared, so we can't just modify
1503 the return type of olddecl's function type. */
1504 tree trytype
1505 = build_function_type (newreturntype,
1506 TYPE_ARG_TYPES (oldtype));
1508 types_match = comptypes (newtype, trytype);
1509 if (types_match)
1510 oldtype = trytype;
1512 /* Accept harmless mismatch in first argument type also.
1513 This is for the ffs and fprintf builtins. */
1514 if (TYPE_ARG_TYPES (TREE_TYPE (newdecl)) != 0
1515 && TYPE_ARG_TYPES (oldtype) != 0
1516 && TREE_VALUE (TYPE_ARG_TYPES (newtype)) != 0
1517 && TREE_VALUE (TYPE_ARG_TYPES (oldtype)) != 0
1518 && (TYPE_MODE (TREE_VALUE (TYPE_ARG_TYPES (newtype)))
1519 == TYPE_MODE (TREE_VALUE (TYPE_ARG_TYPES (oldtype)))))
1521 /* Function types may be shared, so we can't just modify
1522 the return type of olddecl's function type. */
1523 tree trytype
1524 = build_function_type (TREE_TYPE (oldtype),
1525 tree_cons (NULL_TREE,
1526 TREE_VALUE (TYPE_ARG_TYPES (newtype)),
1527 TREE_CHAIN (TYPE_ARG_TYPES (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 register tree t = TYPE_ARG_TYPES (oldtype);
1615 if (t == 0)
1616 t = TYPE_ARG_TYPES (newtype);
1617 for (; t; t = TREE_CHAIN (t))
1619 register 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 register tree type, parm;
1682 register 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_INLINE (olddecl) && DECL_INLINE (newdecl)
1732 && TREE_USED (olddecl))
1733 warning_with_decl (newdecl,
1734 "`%s' declared inline after being called");
1735 if (TREE_CODE (olddecl) == FUNCTION_DECL
1736 && ! DECL_INLINE (olddecl) && DECL_INLINE (newdecl)
1737 && DECL_INITIAL (olddecl) != 0)
1738 warning_with_decl (newdecl,
1739 "`%s' declared inline after its definition");
1741 /* If pedantic, warn when static declaration follows a non-static
1742 declaration. Otherwise, do so only for functions. */
1743 if ((pedantic || TREE_CODE (olddecl) == FUNCTION_DECL)
1744 && TREE_PUBLIC (olddecl)
1745 && !TREE_PUBLIC (newdecl))
1746 warning_with_decl (newdecl, "static declaration for `%s' follows non-static");
1748 /* If warn_traditional, warn when a non-static function
1749 declaration follows a static one. */
1750 if (warn_traditional && !in_system_header
1751 && TREE_CODE (olddecl) == FUNCTION_DECL
1752 && !TREE_PUBLIC (olddecl)
1753 && TREE_PUBLIC (newdecl))
1754 warning_with_decl (newdecl, "non-static declaration for `%s' follows static");
1756 /* Warn when const declaration follows a non-const
1757 declaration, but not for functions. */
1758 if (TREE_CODE (olddecl) != FUNCTION_DECL
1759 && !TREE_READONLY (olddecl)
1760 && TREE_READONLY (newdecl))
1761 warning_with_decl (newdecl, "const declaration for `%s' follows non-const");
1762 /* These bits are logically part of the type, for variables.
1763 But not for functions
1764 (where qualifiers are not valid ANSI anyway). */
1765 else if (pedantic && TREE_CODE (olddecl) != FUNCTION_DECL
1766 && (TREE_READONLY (newdecl) != TREE_READONLY (olddecl)
1767 || TREE_THIS_VOLATILE (newdecl) != TREE_THIS_VOLATILE (olddecl)))
1768 pedwarn_with_decl (newdecl, "type qualifiers for `%s' conflict with previous decl");
1772 /* Optionally warn about more than one declaration for the same name. */
1773 if (errmsg == 0 && warn_redundant_decls && DECL_SOURCE_LINE (olddecl) != 0
1774 /* Don't warn about a function declaration
1775 followed by a definition. */
1776 && !(TREE_CODE (newdecl) == FUNCTION_DECL && DECL_INITIAL (newdecl) != 0
1777 && DECL_INITIAL (olddecl) == 0)
1778 /* Don't warn about extern decl followed by (tentative) definition. */
1779 && !(DECL_EXTERNAL (olddecl) && ! DECL_EXTERNAL (newdecl)))
1781 warning_with_decl (newdecl, "redundant redeclaration of `%s' in same scope");
1782 warning_with_decl (olddecl, "previous declaration of `%s'");
1785 /* Copy all the DECL_... slots specified in the new decl
1786 except for any that we copy here from the old type.
1788 Past this point, we don't change OLDTYPE and NEWTYPE
1789 even if we change the types of NEWDECL and OLDDECL. */
1791 if (types_match)
1793 /* When copying info to olddecl, we store into write_olddecl
1794 instead. This allows us to avoid modifying olddecl when
1795 different_binding_level is true. */
1796 tree write_olddecl = different_binding_level ? newdecl : olddecl;
1798 /* Merge the data types specified in the two decls. */
1799 if (TREE_CODE (newdecl) != FUNCTION_DECL || !DECL_BUILT_IN (olddecl))
1801 if (different_binding_level)
1803 if (TYPE_ARG_TYPES (oldtype) != 0
1804 && TYPE_ARG_TYPES (newtype) == 0)
1805 TREE_TYPE (newdecl) = common_type (newtype, oldtype);
1806 else
1807 TREE_TYPE (newdecl)
1808 = build_type_attribute_variant
1809 (newtype,
1810 merge_attributes (TYPE_ATTRIBUTES (newtype),
1811 TYPE_ATTRIBUTES (oldtype)));
1813 else
1814 TREE_TYPE (newdecl)
1815 = TREE_TYPE (olddecl)
1816 = common_type (newtype, oldtype);
1819 /* Lay the type out, unless already done. */
1820 if (oldtype != TREE_TYPE (newdecl))
1822 if (TREE_TYPE (newdecl) != error_mark_node)
1823 layout_type (TREE_TYPE (newdecl));
1824 if (TREE_CODE (newdecl) != FUNCTION_DECL
1825 && TREE_CODE (newdecl) != TYPE_DECL
1826 && TREE_CODE (newdecl) != CONST_DECL)
1827 layout_decl (newdecl, 0);
1829 else
1831 /* Since the type is OLDDECL's, make OLDDECL's size go with. */
1832 DECL_SIZE (newdecl) = DECL_SIZE (olddecl);
1833 DECL_SIZE_UNIT (newdecl) = DECL_SIZE_UNIT (olddecl);
1834 DECL_MODE (newdecl) = DECL_MODE (olddecl);
1835 if (TREE_CODE (olddecl) != FUNCTION_DECL)
1836 if (DECL_ALIGN (olddecl) > DECL_ALIGN (newdecl))
1838 DECL_ALIGN (newdecl) = DECL_ALIGN (olddecl);
1839 DECL_USER_ALIGN (newdecl) |= DECL_ALIGN (olddecl);
1843 /* Keep the old rtl since we can safely use it. */
1844 DECL_RTL (newdecl) = DECL_RTL (olddecl);
1846 /* Merge the type qualifiers. */
1847 if (TREE_CODE (olddecl) == FUNCTION_DECL
1848 && DECL_BUILT_IN_NONANSI (olddecl) && TREE_THIS_VOLATILE (olddecl)
1849 && ! TREE_THIS_VOLATILE (newdecl))
1850 TREE_THIS_VOLATILE (write_olddecl) = 0;
1852 if (TREE_READONLY (newdecl))
1853 TREE_READONLY (write_olddecl) = 1;
1855 if (TREE_THIS_VOLATILE (newdecl))
1857 TREE_THIS_VOLATILE (write_olddecl) = 1;
1858 if (TREE_CODE (newdecl) == VAR_DECL
1859 /* If an automatic variable is re-declared in the same
1860 function scope, but the old declaration was not
1861 volatile, make_var_volatile() would crash because the
1862 variable would have been assigned to a pseudo, not a
1863 MEM. Since this duplicate declaration is invalid
1864 anyway, we just skip the call. */
1865 && errmsg == 0)
1866 make_var_volatile (newdecl);
1869 /* Keep source location of definition rather than declaration. */
1870 /* When called with different_binding_level set, keep the old
1871 information so that meaningful diagnostics can be given. */
1872 if (DECL_INITIAL (newdecl) == 0 && DECL_INITIAL (olddecl) != 0
1873 && ! different_binding_level)
1875 DECL_SOURCE_LINE (newdecl) = DECL_SOURCE_LINE (olddecl);
1876 DECL_SOURCE_FILE (newdecl) = DECL_SOURCE_FILE (olddecl);
1879 /* Merge the unused-warning information. */
1880 if (DECL_IN_SYSTEM_HEADER (olddecl))
1881 DECL_IN_SYSTEM_HEADER (newdecl) = 1;
1882 else if (DECL_IN_SYSTEM_HEADER (newdecl))
1883 DECL_IN_SYSTEM_HEADER (write_olddecl) = 1;
1885 /* Merge the initialization information. */
1886 /* When called with different_binding_level set, don't copy over
1887 DECL_INITIAL, so that we don't accidentally change function
1888 declarations into function definitions. */
1889 if (DECL_INITIAL (newdecl) == 0 && ! different_binding_level)
1890 DECL_INITIAL (newdecl) = DECL_INITIAL (olddecl);
1892 /* Merge the section attribute.
1893 We want to issue an error if the sections conflict but that must be
1894 done later in decl_attributes since we are called before attributes
1895 are assigned. */
1896 if (DECL_SECTION_NAME (newdecl) == NULL_TREE)
1897 DECL_SECTION_NAME (newdecl) = DECL_SECTION_NAME (olddecl);
1899 /* Copy the assembler name.
1900 Currently, it can only be defined in the prototype. */
1901 DECL_ASSEMBLER_NAME (newdecl) = DECL_ASSEMBLER_NAME (olddecl);
1903 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1905 DECL_STATIC_CONSTRUCTOR(newdecl) |= DECL_STATIC_CONSTRUCTOR(olddecl);
1906 DECL_STATIC_DESTRUCTOR (newdecl) |= DECL_STATIC_DESTRUCTOR (olddecl);
1908 DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (newdecl)
1909 |= DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (olddecl);
1910 DECL_NO_CHECK_MEMORY_USAGE (newdecl)
1911 |= DECL_NO_CHECK_MEMORY_USAGE (olddecl);
1912 DECL_NO_LIMIT_STACK (newdecl)
1913 |= DECL_NO_LIMIT_STACK (olddecl);
1916 /* If cannot merge, then use the new type and qualifiers,
1917 and don't preserve the old rtl. */
1918 else if (! different_binding_level)
1920 TREE_TYPE (olddecl) = TREE_TYPE (newdecl);
1921 TREE_READONLY (olddecl) = TREE_READONLY (newdecl);
1922 TREE_THIS_VOLATILE (olddecl) = TREE_THIS_VOLATILE (newdecl);
1923 TREE_SIDE_EFFECTS (olddecl) = TREE_SIDE_EFFECTS (newdecl);
1926 /* Merge the storage class information. */
1927 DECL_WEAK (newdecl) |= DECL_WEAK (olddecl);
1928 /* For functions, static overrides non-static. */
1929 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1931 TREE_PUBLIC (newdecl) &= TREE_PUBLIC (olddecl);
1932 /* This is since we don't automatically
1933 copy the attributes of NEWDECL into OLDDECL. */
1934 /* No need to worry about different_binding_level here because
1935 then TREE_PUBLIC (newdecl) was true. */
1936 TREE_PUBLIC (olddecl) = TREE_PUBLIC (newdecl);
1937 /* If this clears `static', clear it in the identifier too. */
1938 if (! TREE_PUBLIC (olddecl))
1939 TREE_PUBLIC (DECL_NAME (olddecl)) = 0;
1941 if (DECL_EXTERNAL (newdecl))
1943 if (! different_binding_level)
1945 /* Don't mess with these flags on local externs; they remain
1946 external even if there's a declaration at file scope which
1947 isn't. */
1948 TREE_STATIC (newdecl) = TREE_STATIC (olddecl);
1949 DECL_EXTERNAL (newdecl) = DECL_EXTERNAL (olddecl);
1951 /* An extern decl does not override previous storage class. */
1952 TREE_PUBLIC (newdecl) = TREE_PUBLIC (olddecl);
1953 if (! DECL_EXTERNAL (newdecl))
1954 DECL_CONTEXT (newdecl) = DECL_CONTEXT (olddecl);
1956 else
1958 TREE_STATIC (olddecl) = TREE_STATIC (newdecl);
1959 TREE_PUBLIC (olddecl) = TREE_PUBLIC (newdecl);
1962 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1964 /* If either decl says `inline', this fn is inline,
1965 unless its definition was passed already. */
1966 if (DECL_INLINE (newdecl) && DECL_INITIAL (olddecl) == 0)
1967 DECL_INLINE (olddecl) = 1;
1969 DECL_INLINE (newdecl) = DECL_INLINE (olddecl);
1971 if (DECL_BUILT_IN (olddecl))
1973 /* Get rid of any built-in function if new arg types don't match it
1974 or if we have a function definition. */
1975 if (! types_match || new_is_definition)
1977 if (! different_binding_level)
1979 TREE_TYPE (olddecl) = TREE_TYPE (newdecl);
1980 DECL_BUILT_IN_CLASS (olddecl) = NOT_BUILT_IN;
1983 else
1985 /* If redeclaring a builtin function, and not a definition,
1986 it stays built in. */
1987 DECL_BUILT_IN_CLASS (newdecl) = DECL_BUILT_IN_CLASS (olddecl);
1988 DECL_FUNCTION_CODE (newdecl) = DECL_FUNCTION_CODE (olddecl);
1991 /* Also preserve various other info from the definition. */
1992 else if (! new_is_definition)
1993 DECL_FRAME_SIZE (newdecl) = DECL_FRAME_SIZE (olddecl);
1994 if (! new_is_definition)
1996 DECL_RESULT (newdecl) = DECL_RESULT (olddecl);
1997 /* When called with different_binding_level set, don't copy over
1998 DECL_INITIAL, so that we don't accidentally change function
1999 declarations into function definitions. */
2000 if (! different_binding_level)
2001 DECL_INITIAL (newdecl) = DECL_INITIAL (olddecl);
2002 DECL_SAVED_INSNS (newdecl) = DECL_SAVED_INSNS (olddecl);
2003 DECL_ARGUMENTS (newdecl) = DECL_ARGUMENTS (olddecl);
2004 if (DECL_INLINE (newdecl))
2005 DECL_ABSTRACT_ORIGIN (newdecl) = DECL_ABSTRACT_ORIGIN (olddecl);
2008 if (different_binding_level)
2009 return 0;
2011 /* Copy most of the decl-specific fields of NEWDECL into OLDDECL.
2012 But preserve OLDDECL's DECL_UID. */
2014 register unsigned olddecl_uid = DECL_UID (olddecl);
2016 memcpy ((char *) olddecl + sizeof (struct tree_common),
2017 (char *) newdecl + sizeof (struct tree_common),
2018 sizeof (struct tree_decl) - sizeof (struct tree_common));
2019 DECL_UID (olddecl) = olddecl_uid;
2022 /* NEWDECL contains the merged attribute lists.
2023 Update OLDDECL to be the same. */
2024 DECL_MACHINE_ATTRIBUTES (olddecl) = DECL_MACHINE_ATTRIBUTES (newdecl);
2026 return 1;
2029 /* Record a decl-node X as belonging to the current lexical scope.
2030 Check for errors (such as an incompatible declaration for the same
2031 name already seen in the same scope).
2033 Returns either X or an old decl for the same name.
2034 If an old decl is returned, it may have been smashed
2035 to agree with what X says. */
2037 tree
2038 pushdecl (x)
2039 tree x;
2041 register tree t;
2042 register tree name = DECL_NAME (x);
2043 register struct binding_level *b = current_binding_level;
2045 DECL_CONTEXT (x) = current_function_decl;
2046 /* A local extern declaration for a function doesn't constitute nesting.
2047 A local auto declaration does, since it's a forward decl
2048 for a nested function coming later. */
2049 if ((TREE_CODE (x) == FUNCTION_DECL || TREE_CODE (x) == VAR_DECL)
2050 && DECL_INITIAL (x) == 0 && DECL_EXTERNAL (x))
2051 DECL_CONTEXT (x) = 0;
2053 if (warn_nested_externs && DECL_EXTERNAL (x) && b != global_binding_level
2054 && x != IDENTIFIER_IMPLICIT_DECL (name)
2055 /* Don't print error messages for __FUNCTION__ and __PRETTY_FUNCTION__ */
2056 && !DECL_IN_SYSTEM_HEADER (x))
2057 warning ("nested extern declaration of `%s'", IDENTIFIER_POINTER (name));
2059 if (name)
2061 const char *file;
2062 int line;
2063 int different_binding_level = 0;
2065 t = lookup_name_current_level (name);
2066 /* Don't type check externs here when -traditional. This is so that
2067 code with conflicting declarations inside blocks will get warnings
2068 not errors. X11 for instance depends on this. */
2069 if (! t && DECL_EXTERNAL (x) && TREE_PUBLIC (x) && ! flag_traditional)
2071 t = IDENTIFIER_GLOBAL_VALUE (name);
2072 /* Type decls at global scope don't conflict with externs declared
2073 inside lexical blocks. */
2074 if (t && TREE_CODE (t) == TYPE_DECL)
2075 t = 0;
2076 different_binding_level = 1;
2078 if (t != 0 && t == error_mark_node)
2079 /* error_mark_node is 0 for a while during initialization! */
2081 t = 0;
2082 error_with_decl (x, "`%s' used prior to declaration");
2085 if (t != 0)
2087 file = DECL_SOURCE_FILE (t);
2088 line = DECL_SOURCE_LINE (t);
2091 /* If this decl is `static' and an implicit decl was seen previously,
2092 warn. But don't complain if -traditional,
2093 since traditional compilers don't complain. */
2094 if (! flag_traditional && TREE_PUBLIC (name)
2095 /* Don't test for DECL_EXTERNAL, because grokdeclarator
2096 sets this for all functions. */
2097 && ! TREE_PUBLIC (x)
2098 && (TREE_CODE (x) == FUNCTION_DECL || b == global_binding_level)
2099 /* We used to warn also for explicit extern followed by static,
2100 but sometimes you need to do it that way. */
2101 && IDENTIFIER_IMPLICIT_DECL (name) != 0)
2103 pedwarn ("`%s' was declared implicitly `extern' and later `static'",
2104 IDENTIFIER_POINTER (name));
2105 pedwarn_with_file_and_line
2106 (DECL_SOURCE_FILE (IDENTIFIER_IMPLICIT_DECL (name)),
2107 DECL_SOURCE_LINE (IDENTIFIER_IMPLICIT_DECL (name)),
2108 "previous declaration of `%s'",
2109 IDENTIFIER_POINTER (name));
2110 TREE_THIS_VOLATILE (name) = 1;
2113 if (t != 0 && duplicate_decls (x, t, different_binding_level))
2115 if (TREE_CODE (t) == PARM_DECL)
2117 /* Don't allow more than one "real" duplicate
2118 of a forward parm decl. */
2119 TREE_ASM_WRITTEN (t) = TREE_ASM_WRITTEN (x);
2120 return t;
2122 return t;
2125 /* If we are processing a typedef statement, generate a whole new
2126 ..._TYPE node (which will be just an variant of the existing
2127 ..._TYPE node with identical properties) and then install the
2128 TYPE_DECL node generated to represent the typedef name as the
2129 TYPE_NAME of this brand new (duplicate) ..._TYPE node.
2131 The whole point here is to end up with a situation where each
2132 and every ..._TYPE node the compiler creates will be uniquely
2133 associated with AT MOST one node representing a typedef name.
2134 This way, even though the compiler substitutes corresponding
2135 ..._TYPE nodes for TYPE_DECL (i.e. "typedef name") nodes very
2136 early on, later parts of the compiler can always do the reverse
2137 translation and get back the corresponding typedef name. For
2138 example, given:
2140 typedef struct S MY_TYPE;
2141 MY_TYPE object;
2143 Later parts of the compiler might only know that `object' was of
2144 type `struct S' if it were not for code just below. With this
2145 code however, later parts of the compiler see something like:
2147 struct S' == struct S
2148 typedef struct S' MY_TYPE;
2149 struct S' object;
2151 And they can then deduce (from the node for type struct S') that
2152 the original object declaration was:
2154 MY_TYPE object;
2156 Being able to do this is important for proper support of protoize,
2157 and also for generating precise symbolic debugging information
2158 which takes full account of the programmer's (typedef) vocabulary.
2160 Obviously, we don't want to generate a duplicate ..._TYPE node if
2161 the TYPE_DECL node that we are now processing really represents a
2162 standard built-in type.
2164 Since all standard types are effectively declared at line zero
2165 in the source file, we can easily check to see if we are working
2166 on a standard type by checking the current value of lineno. */
2168 if (TREE_CODE (x) == TYPE_DECL)
2170 if (DECL_SOURCE_LINE (x) == 0)
2172 if (TYPE_NAME (TREE_TYPE (x)) == 0)
2173 TYPE_NAME (TREE_TYPE (x)) = x;
2175 else if (TREE_TYPE (x) != error_mark_node
2176 && DECL_ORIGINAL_TYPE (x) == NULL_TREE)
2178 tree tt = TREE_TYPE (x);
2179 DECL_ORIGINAL_TYPE (x) = tt;
2180 tt = build_type_copy (tt);
2181 TYPE_NAME (tt) = x;
2182 TREE_USED (tt) = TREE_USED (x);
2183 TREE_TYPE (x) = tt;
2187 /* Multiple external decls of the same identifier ought to match.
2188 Check against both global declarations (when traditional) and out of
2189 scope (limbo) block level declarations.
2191 We get warnings about inline functions where they are defined.
2192 Avoid duplicate warnings where they are used. */
2193 if (TREE_PUBLIC (x)
2194 && ! (TREE_CODE (x) == FUNCTION_DECL && DECL_INLINE (x)))
2196 tree decl;
2198 if (flag_traditional && IDENTIFIER_GLOBAL_VALUE (name) != 0
2199 && (DECL_EXTERNAL (IDENTIFIER_GLOBAL_VALUE (name))
2200 || TREE_PUBLIC (IDENTIFIER_GLOBAL_VALUE (name))))
2201 decl = IDENTIFIER_GLOBAL_VALUE (name);
2202 else if (IDENTIFIER_LIMBO_VALUE (name) != 0)
2203 /* Decls in limbo are always extern, so no need to check that. */
2204 decl = IDENTIFIER_LIMBO_VALUE (name);
2205 else
2206 decl = 0;
2208 if (decl && ! comptypes (TREE_TYPE (x), TREE_TYPE (decl))
2209 /* If old decl is built-in, we already warned if we should. */
2210 && !DECL_BUILT_IN (decl))
2212 pedwarn_with_decl (x,
2213 "type mismatch with previous external decl");
2214 pedwarn_with_decl (decl, "previous external decl of `%s'");
2218 /* If a function has had an implicit declaration, and then is defined,
2219 make sure they are compatible. */
2221 if (IDENTIFIER_IMPLICIT_DECL (name) != 0
2222 && IDENTIFIER_GLOBAL_VALUE (name) == 0
2223 && TREE_CODE (x) == FUNCTION_DECL
2224 && ! comptypes (TREE_TYPE (x),
2225 TREE_TYPE (IDENTIFIER_IMPLICIT_DECL (name))))
2227 warning_with_decl (x, "type mismatch with previous implicit declaration");
2228 warning_with_decl (IDENTIFIER_IMPLICIT_DECL (name),
2229 "previous implicit declaration of `%s'");
2232 /* In PCC-compatibility mode, extern decls of vars with no current decl
2233 take effect at top level no matter where they are. */
2234 if (flag_traditional && DECL_EXTERNAL (x)
2235 && lookup_name (name) == 0)
2237 tree type = TREE_TYPE (x);
2239 /* But don't do this if the type contains temporary nodes. */
2240 while (type)
2242 if (type == error_mark_node)
2243 break;
2244 if (TYPE_CONTEXT (type))
2246 warning_with_decl (x, "type of external `%s' is not global");
2247 /* By exiting the loop early, we leave TYPE nonzero,
2248 and thus prevent globalization of the decl. */
2249 break;
2251 else if (TREE_CODE (type) == FUNCTION_TYPE
2252 && TYPE_ARG_TYPES (type) != 0)
2253 /* The types might not be truly local,
2254 but the list of arg types certainly is temporary.
2255 Since prototypes are nontraditional,
2256 ok not to do the traditional thing. */
2257 break;
2258 type = TREE_TYPE (type);
2261 if (type == 0)
2262 b = global_binding_level;
2265 /* This name is new in its binding level.
2266 Install the new declaration and return it. */
2267 if (b == global_binding_level)
2269 /* Install a global value. */
2271 /* If the first global decl has external linkage,
2272 warn if we later see static one. */
2273 if (IDENTIFIER_GLOBAL_VALUE (name) == 0 && TREE_PUBLIC (x))
2274 TREE_PUBLIC (name) = 1;
2276 IDENTIFIER_GLOBAL_VALUE (name) = x;
2278 /* We no longer care about any previous block level declarations. */
2279 IDENTIFIER_LIMBO_VALUE (name) = 0;
2281 /* Don't forget if the function was used via an implicit decl. */
2282 if (IDENTIFIER_IMPLICIT_DECL (name)
2283 && TREE_USED (IDENTIFIER_IMPLICIT_DECL (name)))
2284 TREE_USED (x) = 1, TREE_USED (name) = 1;
2286 /* Don't forget if its address was taken in that way. */
2287 if (IDENTIFIER_IMPLICIT_DECL (name)
2288 && TREE_ADDRESSABLE (IDENTIFIER_IMPLICIT_DECL (name)))
2289 TREE_ADDRESSABLE (x) = 1;
2291 /* Warn about mismatches against previous implicit decl. */
2292 if (IDENTIFIER_IMPLICIT_DECL (name) != 0
2293 /* If this real decl matches the implicit, don't complain. */
2294 && ! (TREE_CODE (x) == FUNCTION_DECL
2295 && (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (x)))
2296 == integer_type_node)))
2297 pedwarn ("`%s' was previously implicitly declared to return `int'",
2298 IDENTIFIER_POINTER (name));
2300 /* If this decl is `static' and an `extern' was seen previously,
2301 that is erroneous. */
2302 if (TREE_PUBLIC (name)
2303 && ! TREE_PUBLIC (x) && ! DECL_EXTERNAL (x))
2305 /* Okay to redeclare an ANSI built-in as static. */
2306 if (t != 0 && DECL_BUILT_IN (t))
2308 /* Okay to declare a non-ANSI built-in as anything. */
2309 else if (t != 0 && DECL_BUILT_IN_NONANSI (t))
2311 /* Okay to have global type decl after an earlier extern
2312 declaration inside a lexical block. */
2313 else if (TREE_CODE (x) == TYPE_DECL)
2315 else if (IDENTIFIER_IMPLICIT_DECL (name))
2317 if (! TREE_THIS_VOLATILE (name))
2318 pedwarn ("`%s' was declared implicitly `extern' and later `static'",
2319 IDENTIFIER_POINTER (name));
2321 else
2322 pedwarn ("`%s' was declared `extern' and later `static'",
2323 IDENTIFIER_POINTER (name));
2326 else
2328 /* Here to install a non-global value. */
2329 tree oldlocal = IDENTIFIER_LOCAL_VALUE (name);
2330 tree oldglobal = IDENTIFIER_GLOBAL_VALUE (name);
2332 IDENTIFIER_LOCAL_VALUE (name) = x;
2334 /* If this is an extern function declaration, see if we
2335 have a global definition or declaration for the function. */
2336 if (oldlocal == 0
2337 && oldglobal != 0
2338 && TREE_CODE (x) == FUNCTION_DECL
2339 && TREE_CODE (oldglobal) == FUNCTION_DECL
2340 && DECL_EXTERNAL (x) && ! DECL_INLINE (x))
2342 /* We have one. Their types must agree. */
2343 if (! comptypes (TREE_TYPE (x),
2344 TREE_TYPE (IDENTIFIER_GLOBAL_VALUE (name))))
2345 pedwarn_with_decl (x, "extern declaration of `%s' doesn't match global one");
2346 else
2348 /* Inner extern decl is inline if global one is.
2349 Copy enough to really inline it. */
2350 if (DECL_INLINE (oldglobal))
2352 DECL_INLINE (x) = DECL_INLINE (oldglobal);
2353 DECL_INITIAL (x) = (current_function_decl == oldglobal
2354 ? 0 : DECL_INITIAL (oldglobal));
2355 DECL_SAVED_INSNS (x) = DECL_SAVED_INSNS (oldglobal);
2356 DECL_FRAME_SIZE (x) = DECL_FRAME_SIZE (oldglobal);
2357 DECL_ARGUMENTS (x) = DECL_ARGUMENTS (oldglobal);
2358 DECL_RESULT (x) = DECL_RESULT (oldglobal);
2359 TREE_ASM_WRITTEN (x) = TREE_ASM_WRITTEN (oldglobal);
2360 DECL_ABSTRACT_ORIGIN (x)
2361 = DECL_ABSTRACT_ORIGIN (oldglobal);
2363 /* Inner extern decl is built-in if global one is. */
2364 if (DECL_BUILT_IN (oldglobal))
2366 DECL_BUILT_IN_CLASS (x) = DECL_BUILT_IN_CLASS (oldglobal);
2367 DECL_FUNCTION_CODE (x) = DECL_FUNCTION_CODE (oldglobal);
2369 /* Keep the arg types from a file-scope fcn defn. */
2370 if (TYPE_ARG_TYPES (TREE_TYPE (oldglobal)) != 0
2371 && DECL_INITIAL (oldglobal)
2372 && TYPE_ARG_TYPES (TREE_TYPE (x)) == 0)
2373 TREE_TYPE (x) = TREE_TYPE (oldglobal);
2377 #if 0
2378 /* This case is probably sometimes the right thing to do. */
2379 /* If we have a local external declaration,
2380 then any file-scope declaration should not
2381 have been static. */
2382 if (oldlocal == 0 && oldglobal != 0
2383 && !TREE_PUBLIC (oldglobal)
2384 && DECL_EXTERNAL (x) && TREE_PUBLIC (x))
2385 warning ("`%s' locally external but globally static",
2386 IDENTIFIER_POINTER (name));
2387 #endif
2389 /* If we have a local external declaration,
2390 and no file-scope declaration has yet been seen,
2391 then if we later have a file-scope decl it must not be static. */
2392 if (oldlocal == 0
2393 && DECL_EXTERNAL (x)
2394 && TREE_PUBLIC (x))
2396 if (oldglobal == 0)
2397 TREE_PUBLIC (name) = 1;
2399 /* Save this decl, so that we can do type checking against
2400 other decls after it falls out of scope.
2402 Only save it once. This prevents temporary decls created in
2403 expand_inline_function from being used here, since this
2404 will have been set when the inline function was parsed.
2405 It also helps give slightly better warnings. */
2406 if (IDENTIFIER_LIMBO_VALUE (name) == 0)
2407 IDENTIFIER_LIMBO_VALUE (name) = x;
2410 /* Warn if shadowing an argument at the top level of the body. */
2411 if (oldlocal != 0 && !DECL_EXTERNAL (x)
2412 /* This warning doesn't apply to the parms of a nested fcn. */
2413 && ! current_binding_level->parm_flag
2414 /* Check that this is one level down from the parms. */
2415 && current_binding_level->level_chain->parm_flag
2416 /* Check that the decl being shadowed
2417 comes from the parm level, one level up. */
2418 && chain_member (oldlocal, current_binding_level->level_chain->names))
2420 if (TREE_CODE (oldlocal) == PARM_DECL)
2421 pedwarn ("declaration of `%s' shadows a parameter",
2422 IDENTIFIER_POINTER (name));
2423 else
2424 pedwarn ("declaration of `%s' shadows a symbol from the parameter list",
2425 IDENTIFIER_POINTER (name));
2428 /* Maybe warn if shadowing something else. */
2429 else if (warn_shadow && !DECL_EXTERNAL (x)
2430 /* No shadow warnings for internally generated vars. */
2431 && DECL_SOURCE_LINE (x) != 0
2432 /* No shadow warnings for vars made for inlining. */
2433 && ! DECL_FROM_INLINE (x))
2435 const char *id = IDENTIFIER_POINTER (name);
2437 if (TREE_CODE (x) == PARM_DECL
2438 && current_binding_level->level_chain->parm_flag)
2439 /* Don't warn about the parm names in function declarator
2440 within a function declarator.
2441 It would be nice to avoid warning in any function
2442 declarator in a declaration, as opposed to a definition,
2443 but there is no way to tell it's not a definition. */
2445 else if (oldlocal != 0 && TREE_CODE (oldlocal) == PARM_DECL)
2446 warning ("declaration of `%s' shadows a parameter", id);
2447 else if (oldlocal != 0)
2448 warning ("declaration of `%s' shadows previous local", id);
2449 else if (IDENTIFIER_GLOBAL_VALUE (name) != 0
2450 && IDENTIFIER_GLOBAL_VALUE (name) != error_mark_node)
2451 warning ("declaration of `%s' shadows global declaration", id);
2454 /* If storing a local value, there may already be one (inherited).
2455 If so, record it for restoration when this binding level ends. */
2456 if (oldlocal != 0)
2457 b->shadowed = tree_cons (name, oldlocal, b->shadowed);
2460 /* Keep count of variables in this level with incomplete type.
2461 If the input is erroneous, we can have error_mark in the type
2462 slot (e.g. "f(void a, ...)") - that doesn't count as an
2463 incomplete type. */
2464 if (TREE_TYPE (x) != error_mark_node
2465 && !COMPLETE_TYPE_P (TREE_TYPE (x)))
2466 ++b->n_incomplete;
2469 /* Put decls on list in reverse order.
2470 We will reverse them later if necessary. */
2471 TREE_CHAIN (x) = b->names;
2472 b->names = x;
2474 return x;
2477 /* Like pushdecl, only it places X in GLOBAL_BINDING_LEVEL, if appropriate. */
2479 tree
2480 pushdecl_top_level (x)
2481 tree x;
2483 register tree t;
2484 register struct binding_level *b = current_binding_level;
2486 current_binding_level = global_binding_level;
2487 t = pushdecl (x);
2488 current_binding_level = b;
2489 return t;
2492 /* Generate an implicit declaration for identifier FUNCTIONID
2493 as a function of type int (). Print a warning if appropriate. */
2495 tree
2496 implicitly_declare (functionid)
2497 tree functionid;
2499 register tree decl;
2500 int traditional_warning = 0;
2501 /* Only one "implicit declaration" warning per identifier. */
2502 int implicit_warning;
2504 /* We used to reuse an old implicit decl here,
2505 but this loses with inline functions because it can clobber
2506 the saved decl chains. */
2507 #if 0
2508 if (IDENTIFIER_IMPLICIT_DECL (functionid) != 0)
2509 decl = IDENTIFIER_IMPLICIT_DECL (functionid);
2510 else
2511 #endif
2512 decl = build_decl (FUNCTION_DECL, functionid, default_function_type);
2514 /* Warn of implicit decl following explicit local extern decl.
2515 This is probably a program designed for traditional C. */
2516 if (TREE_PUBLIC (functionid) && IDENTIFIER_GLOBAL_VALUE (functionid) == 0)
2517 traditional_warning = 1;
2519 /* Warn once of an implicit declaration. */
2520 implicit_warning = (IDENTIFIER_IMPLICIT_DECL (functionid) == 0);
2522 DECL_EXTERNAL (decl) = 1;
2523 TREE_PUBLIC (decl) = 1;
2525 /* Record that we have an implicit decl and this is it. */
2526 IDENTIFIER_IMPLICIT_DECL (functionid) = decl;
2528 /* ANSI standard says implicit declarations are in the innermost block.
2529 So we record the decl in the standard fashion.
2530 If flag_traditional is set, pushdecl does it top-level. */
2531 pushdecl (decl);
2533 /* This is a no-op in c-lang.c or something real in objc-actions.c. */
2534 maybe_objc_check_decl (decl);
2536 rest_of_decl_compilation (decl, NULL_PTR, 0, 0);
2538 if (implicit_warning)
2539 implicit_decl_warning (functionid);
2540 else if (warn_traditional && traditional_warning)
2541 warning ("function `%s' was previously declared within a block",
2542 IDENTIFIER_POINTER (functionid));
2544 /* Write a record describing this implicit function declaration to the
2545 prototypes file (if requested). */
2547 gen_aux_info_record (decl, 0, 1, 0);
2549 return decl;
2552 void
2553 implicit_decl_warning (id)
2554 tree id;
2556 const char *name = IDENTIFIER_POINTER (id);
2557 if (mesg_implicit_function_declaration == 2)
2558 error ("implicit declaration of function `%s'", name);
2559 else if (mesg_implicit_function_declaration == 1)
2560 warning ("implicit declaration of function `%s'", name);
2563 /* Return zero if the declaration NEWDECL is valid
2564 when the declaration OLDDECL (assumed to be for the same name)
2565 has already been seen.
2566 Otherwise return 1 if NEWDECL is a redefinition, 2 if it is a redeclaration,
2567 and 3 if it is a conflicting declaration. */
2569 static int
2570 redeclaration_error_message (newdecl, olddecl)
2571 tree newdecl, olddecl;
2573 if (TREE_CODE (newdecl) == TYPE_DECL)
2575 if (flag_traditional && TREE_TYPE (newdecl) == TREE_TYPE (olddecl))
2576 return 0;
2577 /* pushdecl creates distinct types for TYPE_DECLs by calling
2578 build_type_copy, so the above comparison generally fails. We do
2579 another test against the TYPE_MAIN_VARIANT of the olddecl, which
2580 is equivalent to what this code used to do before the build_type_copy
2581 call. The variant type distinction should not matter for traditional
2582 code, because it doesn't have type qualifiers. */
2583 if (flag_traditional
2584 && TYPE_MAIN_VARIANT (TREE_TYPE (olddecl)) == TREE_TYPE (newdecl))
2585 return 0;
2586 if (DECL_IN_SYSTEM_HEADER (olddecl) || DECL_IN_SYSTEM_HEADER (newdecl))
2587 return 0;
2588 return 1;
2590 else if (TREE_CODE (newdecl) == FUNCTION_DECL)
2592 /* Declarations of functions can insist on internal linkage
2593 but they can't be inconsistent with internal linkage,
2594 so there can be no error on that account.
2595 However defining the same name twice is no good. */
2596 if (DECL_INITIAL (olddecl) != 0 && DECL_INITIAL (newdecl) != 0
2597 /* However, defining once as extern inline and a second
2598 time in another way is ok. */
2599 && ! (DECL_INLINE (olddecl) && DECL_EXTERNAL (olddecl)
2600 && ! (DECL_INLINE (newdecl) && DECL_EXTERNAL (newdecl))))
2601 return 1;
2602 return 0;
2604 else if (DECL_CONTEXT (newdecl) == NULL_TREE)
2606 /* Objects declared at top level: */
2607 /* If at least one is a reference, it's ok. */
2608 if (DECL_EXTERNAL (newdecl) || DECL_EXTERNAL (olddecl))
2609 return 0;
2610 /* Reject two definitions. */
2611 if (DECL_INITIAL (olddecl) != 0 && DECL_INITIAL (newdecl) != 0)
2612 return 1;
2613 /* Now we have two tentative defs, or one tentative and one real def. */
2614 /* Insist that the linkage match. */
2615 if (TREE_PUBLIC (olddecl) != TREE_PUBLIC (newdecl))
2616 return 3;
2617 return 0;
2619 else if (current_binding_level->parm_flag
2620 && TREE_ASM_WRITTEN (olddecl) && !TREE_ASM_WRITTEN (newdecl))
2621 return 0;
2622 else
2624 /* Newdecl has block scope. If olddecl has block scope also, then
2625 reject two definitions, and reject a definition together with an
2626 external reference. Otherwise, it is OK, because newdecl must
2627 be an extern reference to olddecl. */
2628 if (!(DECL_EXTERNAL (newdecl) && DECL_EXTERNAL (olddecl))
2629 && DECL_CONTEXT (newdecl) == DECL_CONTEXT (olddecl))
2630 return 2;
2631 return 0;
2635 /* Get the LABEL_DECL corresponding to identifier ID as a label.
2636 Create one if none exists so far for the current function.
2637 This function is called for both label definitions and label references. */
2639 tree
2640 lookup_label (id)
2641 tree id;
2643 register tree decl = IDENTIFIER_LABEL_VALUE (id);
2645 if (current_function_decl == 0)
2647 error ("label %s referenced outside of any function",
2648 IDENTIFIER_POINTER (id));
2649 return 0;
2652 /* Use a label already defined or ref'd with this name. */
2653 if (decl != 0)
2655 /* But not if it is inherited and wasn't declared to be inheritable. */
2656 if (DECL_CONTEXT (decl) != current_function_decl
2657 && ! C_DECLARED_LABEL_FLAG (decl))
2658 return shadow_label (id);
2659 return decl;
2662 decl = build_decl (LABEL_DECL, id, void_type_node);
2664 /* A label not explicitly declared must be local to where it's ref'd. */
2665 DECL_CONTEXT (decl) = current_function_decl;
2667 DECL_MODE (decl) = VOIDmode;
2669 /* Say where one reference is to the label,
2670 for the sake of the error if it is not defined. */
2671 DECL_SOURCE_LINE (decl) = lineno;
2672 DECL_SOURCE_FILE (decl) = input_filename;
2674 IDENTIFIER_LABEL_VALUE (id) = decl;
2676 named_labels = tree_cons (NULL_TREE, decl, named_labels);
2678 return decl;
2681 /* Make a label named NAME in the current function,
2682 shadowing silently any that may be inherited from containing functions
2683 or containing scopes.
2685 Note that valid use, if the label being shadowed
2686 comes from another scope in the same function,
2687 requires calling declare_nonlocal_label right away. */
2689 tree
2690 shadow_label (name)
2691 tree name;
2693 register tree decl = IDENTIFIER_LABEL_VALUE (name);
2695 if (decl != 0)
2697 register tree dup;
2699 /* Check to make sure that the label hasn't already been declared
2700 at this label scope */
2701 for (dup = named_labels; dup; dup = TREE_CHAIN (dup))
2702 if (TREE_VALUE (dup) == decl)
2704 error ("duplicate label declaration `%s'",
2705 IDENTIFIER_POINTER (name));
2706 error_with_decl (TREE_VALUE (dup),
2707 "this is a previous declaration");
2708 /* Just use the previous declaration. */
2709 return lookup_label (name);
2712 shadowed_labels = tree_cons (NULL_TREE, decl, shadowed_labels);
2713 IDENTIFIER_LABEL_VALUE (name) = decl = 0;
2716 return lookup_label (name);
2719 /* Define a label, specifying the location in the source file.
2720 Return the LABEL_DECL node for the label, if the definition is valid.
2721 Otherwise return 0. */
2723 tree
2724 define_label (filename, line, name)
2725 const char *filename;
2726 int line;
2727 tree name;
2729 tree decl = lookup_label (name);
2731 /* If label with this name is known from an outer context, shadow it. */
2732 if (decl != 0 && DECL_CONTEXT (decl) != current_function_decl)
2734 shadowed_labels = tree_cons (NULL_TREE, decl, shadowed_labels);
2735 IDENTIFIER_LABEL_VALUE (name) = 0;
2736 decl = lookup_label (name);
2739 if (warn_traditional && !in_system_header && lookup_name (name))
2740 warning_with_file_and_line (filename, line,
2741 "traditional C lacks a separate namespace for labels, identifier `%s' conflicts",
2742 IDENTIFIER_POINTER (name));
2744 if (DECL_INITIAL (decl) != 0)
2746 error_with_file_and_line (filename, line, "duplicate label `%s'",
2747 IDENTIFIER_POINTER (name));
2748 return 0;
2750 else
2752 /* Mark label as having been defined. */
2753 DECL_INITIAL (decl) = error_mark_node;
2754 /* Say where in the source. */
2755 DECL_SOURCE_FILE (decl) = filename;
2756 DECL_SOURCE_LINE (decl) = line;
2757 return decl;
2761 /* Return the list of declarations of the current level.
2762 Note that this list is in reverse order unless/until
2763 you nreverse it; and when you do nreverse it, you must
2764 store the result back using `storedecls' or you will lose. */
2766 tree
2767 getdecls ()
2769 return current_binding_level->names;
2772 /* Return the list of type-tags (for structs, etc) of the current level. */
2774 tree
2775 gettags ()
2777 return current_binding_level->tags;
2780 /* Store the list of declarations of the current level.
2781 This is done for the parameter declarations of a function being defined,
2782 after they are modified in the light of any missing parameters. */
2784 static void
2785 storedecls (decls)
2786 tree decls;
2788 current_binding_level->names = decls;
2791 /* Similarly, store the list of tags of the current level. */
2793 static void
2794 storetags (tags)
2795 tree tags;
2797 current_binding_level->tags = tags;
2800 /* Given NAME, an IDENTIFIER_NODE,
2801 return the structure (or union or enum) definition for that name.
2802 Searches binding levels from BINDING_LEVEL up to the global level.
2803 If THISLEVEL_ONLY is nonzero, searches only the specified context
2804 (but skips any tag-transparent contexts to find one that is
2805 meaningful for tags).
2806 CODE says which kind of type the caller wants;
2807 it is RECORD_TYPE or UNION_TYPE or ENUMERAL_TYPE.
2808 If the wrong kind of type is found, an error is reported. */
2810 static tree
2811 lookup_tag (code, name, binding_level, thislevel_only)
2812 enum tree_code code;
2813 struct binding_level *binding_level;
2814 tree name;
2815 int thislevel_only;
2817 register struct binding_level *level;
2818 int thislevel = 1;
2820 for (level = binding_level; level; level = level->level_chain)
2822 register tree tail;
2823 for (tail = level->tags; tail; tail = TREE_CHAIN (tail))
2825 if (TREE_PURPOSE (tail) == name)
2827 if (TREE_CODE (TREE_VALUE (tail)) != code)
2829 /* Definition isn't the kind we were looking for. */
2830 pending_invalid_xref = name;
2831 pending_invalid_xref_file = input_filename;
2832 pending_invalid_xref_line = lineno;
2833 /* If in the same binding level as a declaration as a tag
2834 of a different type, this must not be allowed to
2835 shadow that tag, so give the error immediately.
2836 (For example, "struct foo; union foo;" is invalid.) */
2837 if (thislevel)
2838 pending_xref_error ();
2840 return TREE_VALUE (tail);
2843 if (! level->tag_transparent)
2845 if (thislevel_only)
2846 return NULL_TREE;
2847 thislevel = 0;
2850 return NULL_TREE;
2853 /* Print an error message now
2854 for a recent invalid struct, union or enum cross reference.
2855 We don't print them immediately because they are not invalid
2856 when used in the `struct foo;' construct for shadowing. */
2858 void
2859 pending_xref_error ()
2861 if (pending_invalid_xref != 0)
2862 error_with_file_and_line (pending_invalid_xref_file,
2863 pending_invalid_xref_line,
2864 "`%s' defined as wrong kind of tag",
2865 IDENTIFIER_POINTER (pending_invalid_xref));
2866 pending_invalid_xref = 0;
2869 /* Given a type, find the tag that was defined for it and return the tag name.
2870 Otherwise return 0. */
2872 static tree
2873 lookup_tag_reverse (type)
2874 tree type;
2876 register struct binding_level *level;
2878 for (level = current_binding_level; level; level = level->level_chain)
2880 register tree tail;
2881 for (tail = level->tags; tail; tail = TREE_CHAIN (tail))
2883 if (TREE_VALUE (tail) == type)
2884 return TREE_PURPOSE (tail);
2887 return NULL_TREE;
2890 /* Look up NAME in the current binding level and its superiors
2891 in the namespace of variables, functions and typedefs.
2892 Return a ..._DECL node of some kind representing its definition,
2893 or return 0 if it is undefined. */
2895 tree
2896 lookup_name (name)
2897 tree name;
2899 register tree val;
2901 if (current_binding_level != global_binding_level
2902 && IDENTIFIER_LOCAL_VALUE (name))
2903 val = IDENTIFIER_LOCAL_VALUE (name);
2904 else
2905 val = IDENTIFIER_GLOBAL_VALUE (name);
2906 return val;
2909 /* Similar to `lookup_name' but look only at current binding level. */
2911 tree
2912 lookup_name_current_level (name)
2913 tree name;
2915 register tree t;
2917 if (current_binding_level == global_binding_level)
2918 return IDENTIFIER_GLOBAL_VALUE (name);
2920 if (IDENTIFIER_LOCAL_VALUE (name) == 0)
2921 return 0;
2923 for (t = current_binding_level->names; t; t = TREE_CHAIN (t))
2924 if (DECL_NAME (t) == name)
2925 break;
2927 return t;
2930 /* Mark ARG for GC. */
2932 static void
2933 mark_binding_level (arg)
2934 void *arg;
2936 struct binding_level *level = *(struct binding_level **) arg;
2938 for (; level != 0; level = level->level_chain)
2940 ggc_mark_tree (level->names);
2941 ggc_mark_tree (level->tags);
2942 ggc_mark_tree (level->shadowed);
2943 ggc_mark_tree (level->blocks);
2944 ggc_mark_tree (level->this_block);
2945 ggc_mark_tree (level->parm_order);
2949 /* Create the predefined scalar types of C,
2950 and some nodes representing standard constants (0, 1, (void *) 0).
2951 Initialize the global binding level.
2952 Make definitions for built-in primitive functions. */
2954 void
2955 init_decl_processing ()
2957 register tree endlink;
2958 tree ptr_ftype_void, ptr_ftype_ptr;
2960 current_function_decl = NULL;
2961 named_labels = NULL;
2962 current_binding_level = NULL_BINDING_LEVEL;
2963 free_binding_level = NULL_BINDING_LEVEL;
2965 /* Make the binding_level structure for global names. */
2966 pushlevel (0);
2967 global_binding_level = current_binding_level;
2969 build_common_tree_nodes (flag_signed_char);
2971 c_common_nodes_and_builtins ();
2973 boolean_type_node = integer_type_node;
2974 boolean_true_node = integer_one_node;
2975 boolean_false_node = integer_zero_node;
2977 /* With GCC, C99's _Bool is always of size 1. */
2978 c_bool_type_node = make_unsigned_type (CHAR_TYPE_SIZE);
2979 TREE_SET_CODE (c_bool_type_node, BOOLEAN_TYPE);
2980 TYPE_MAX_VALUE (c_bool_type_node) = build_int_2 (1, 0);
2981 TREE_TYPE (TYPE_MAX_VALUE (c_bool_type_node)) = c_bool_type_node;
2982 TYPE_PRECISION (c_bool_type_node) = 1;
2983 pushdecl (build_decl (TYPE_DECL, get_identifier ("_Bool"),
2984 c_bool_type_node));
2985 c_bool_false_node = build_int_2 (0, 0);
2986 TREE_TYPE (c_bool_false_node) = c_bool_type_node;
2987 c_bool_true_node = build_int_2 (1, 0);
2988 TREE_TYPE (c_bool_true_node) = c_bool_type_node;
2990 endlink = void_list_node;
2991 ptr_ftype_void = build_function_type (ptr_type_node, endlink);
2992 ptr_ftype_ptr
2993 = build_function_type (ptr_type_node,
2994 tree_cons (NULL_TREE, ptr_type_node, endlink));
2996 /* Types which are common to the fortran compiler and libf2c. When
2997 changing these, you also need to be concerned with f/com.h. */
2999 if (TYPE_PRECISION (float_type_node)
3000 == TYPE_PRECISION (long_integer_type_node))
3002 g77_integer_type_node = long_integer_type_node;
3003 g77_uinteger_type_node = long_unsigned_type_node;
3005 else if (TYPE_PRECISION (float_type_node)
3006 == TYPE_PRECISION (integer_type_node))
3008 g77_integer_type_node = integer_type_node;
3009 g77_uinteger_type_node = unsigned_type_node;
3011 else
3012 g77_integer_type_node = g77_uinteger_type_node = NULL_TREE;
3014 if (g77_integer_type_node != NULL_TREE)
3016 pushdecl (build_decl (TYPE_DECL, get_identifier ("__g77_integer"),
3017 g77_integer_type_node));
3018 pushdecl (build_decl (TYPE_DECL, get_identifier ("__g77_uinteger"),
3019 g77_uinteger_type_node));
3022 if (TYPE_PRECISION (float_type_node) * 2
3023 == TYPE_PRECISION (long_integer_type_node))
3025 g77_longint_type_node = long_integer_type_node;
3026 g77_ulongint_type_node = long_unsigned_type_node;
3028 else if (TYPE_PRECISION (float_type_node) * 2
3029 == TYPE_PRECISION (long_long_integer_type_node))
3031 g77_longint_type_node = long_long_integer_type_node;
3032 g77_ulongint_type_node = long_long_unsigned_type_node;
3034 else
3035 g77_longint_type_node = g77_ulongint_type_node = NULL_TREE;
3037 if (g77_longint_type_node != NULL_TREE)
3039 pushdecl (build_decl (TYPE_DECL, get_identifier ("__g77_longint"),
3040 g77_longint_type_node));
3041 pushdecl (build_decl (TYPE_DECL, get_identifier ("__g77_ulongint"),
3042 g77_ulongint_type_node));
3045 builtin_function ("__builtin_aggregate_incoming_address",
3046 build_function_type (ptr_type_node, NULL_TREE),
3047 BUILT_IN_AGGREGATE_INCOMING_ADDRESS,
3048 BUILT_IN_NORMAL, NULL_PTR);
3050 /* Hooks for the DWARF 2 __throw routine. */
3051 builtin_function ("__builtin_unwind_init",
3052 build_function_type (void_type_node, endlink),
3053 BUILT_IN_UNWIND_INIT, BUILT_IN_NORMAL, NULL_PTR);
3054 builtin_function ("__builtin_dwarf_cfa", ptr_ftype_void,
3055 BUILT_IN_DWARF_CFA, BUILT_IN_NORMAL, NULL_PTR);
3056 builtin_function ("__builtin_dwarf_fp_regnum",
3057 build_function_type (unsigned_type_node, endlink),
3058 BUILT_IN_DWARF_FP_REGNUM, BUILT_IN_NORMAL, NULL_PTR);
3059 builtin_function ("__builtin_init_dwarf_reg_size_table", void_ftype_ptr,
3060 BUILT_IN_INIT_DWARF_REG_SIZES, BUILT_IN_NORMAL, NULL_PTR);
3061 builtin_function ("__builtin_frob_return_addr", ptr_ftype_ptr,
3062 BUILT_IN_FROB_RETURN_ADDR, BUILT_IN_NORMAL, NULL_PTR);
3063 builtin_function ("__builtin_extract_return_addr", ptr_ftype_ptr,
3064 BUILT_IN_EXTRACT_RETURN_ADDR, BUILT_IN_NORMAL, NULL_PTR);
3065 builtin_function
3066 ("__builtin_eh_return",
3067 build_function_type (void_type_node,
3068 tree_cons (NULL_TREE, ptr_type_node,
3069 tree_cons (NULL_TREE,
3070 type_for_mode (ptr_mode, 0),
3071 tree_cons (NULL_TREE,
3072 ptr_type_node,
3073 endlink)))),
3074 BUILT_IN_EH_RETURN, BUILT_IN_NORMAL, NULL_PTR);
3076 pedantic_lvalues = pedantic;
3078 /* Create the global bindings for __FUNCTION__, __PRETTY_FUNCTION__,
3079 and __func__. */
3080 function_id_node = get_identifier ("__FUNCTION__");
3081 pretty_function_id_node = get_identifier ("__PRETTY_FUNCTION__");
3082 func_id_node = get_identifier ("__func__");
3083 make_fname_decl = c_make_fname_decl;
3084 declare_function_name ();
3086 start_identifier_warnings ();
3088 /* Prepare to check format strings against argument lists. */
3089 init_function_format_info ();
3091 incomplete_decl_finalize_hook = finish_incomplete_decl;
3093 /* Record our roots. */
3095 ggc_add_tree_root (c_global_trees, CTI_MAX);
3096 ggc_add_root (&c_stmt_tree, 1, sizeof c_stmt_tree, mark_stmt_tree);
3097 ggc_add_tree_root (&c_scope_stmt_stack, 1);
3098 ggc_add_tree_root (&named_labels, 1);
3099 ggc_add_tree_root (&shadowed_labels, 1);
3100 ggc_add_root (&current_binding_level, 1, sizeof current_binding_level,
3101 mark_binding_level);
3102 ggc_add_root (&label_level_chain, 1, sizeof label_level_chain,
3103 mark_binding_level);
3104 ggc_add_tree_root (&static_ctors, 1);
3105 ggc_add_tree_root (&static_dtors, 1);
3108 /* Create the VAR_DECL for __FUNCTION__ etc. ID is the name to give the
3109 decl, NAME is the initialization string and TYPE_DEP indicates whether
3110 NAME depended on the type of the function. As we don't yet implement
3111 delayed emission of static data, we mark the decl as emitted
3112 so it is not placed in the output. Anything using it must therefore pull
3113 out the STRING_CST initializer directly. This does mean that these names
3114 are string merging candidates, which is wrong for C99's __func__. FIXME. */
3116 static tree
3117 c_make_fname_decl (id, name, type_dep)
3118 tree id;
3119 const char *name;
3120 int type_dep ATTRIBUTE_UNUSED;
3122 tree decl, type, init;
3123 size_t length = strlen (name);
3125 type = build_array_type
3126 (build_qualified_type (char_type_node, TYPE_QUAL_CONST),
3127 build_index_type (build_int_2 (length, 0)));
3129 decl = build_decl (VAR_DECL, id, type);
3130 TREE_STATIC (decl) = 1;
3131 TREE_READONLY (decl) = 1;
3132 TREE_ASM_WRITTEN (decl) = 1;
3133 DECL_SOURCE_LINE (decl) = 0;
3134 DECL_ARTIFICIAL (decl) = 1;
3135 DECL_IN_SYSTEM_HEADER (decl) = 1;
3136 DECL_IGNORED_P (decl) = 1;
3137 init = build_string (length + 1, name);
3138 TREE_TYPE (init) = type;
3139 DECL_INITIAL (decl) = init;
3140 finish_decl (pushdecl (decl), init, NULL_TREE);
3142 return decl;
3145 /* Return a definition for a builtin function named NAME and whose data type
3146 is TYPE. TYPE should be a function type with argument types.
3147 FUNCTION_CODE tells later passes how to compile calls to this function.
3148 See tree.h for its possible values.
3150 If LIBRARY_NAME is nonzero, use that for DECL_ASSEMBLER_NAME,
3151 the name to be called if we can't opencode the function. */
3153 tree
3154 builtin_function (name, type, function_code, class, library_name)
3155 const char *name;
3156 tree type;
3157 int function_code;
3158 enum built_in_class class;
3159 const char *library_name;
3161 tree decl = build_decl (FUNCTION_DECL, get_identifier (name), type);
3162 DECL_EXTERNAL (decl) = 1;
3163 TREE_PUBLIC (decl) = 1;
3164 /* If -traditional, permit redefining a builtin function any way you like.
3165 (Though really, if the program redefines these functions,
3166 it probably won't work right unless compiled with -fno-builtin.) */
3167 if (flag_traditional && name[0] != '_')
3168 DECL_BUILT_IN_NONANSI (decl) = 1;
3169 if (library_name)
3170 DECL_ASSEMBLER_NAME (decl) = get_identifier (library_name);
3171 make_decl_rtl (decl, NULL_PTR);
3172 pushdecl (decl);
3173 DECL_BUILT_IN_CLASS (decl) = class;
3174 DECL_FUNCTION_CODE (decl) = function_code;
3176 /* Warn if a function in the namespace for users
3177 is used without an occasion to consider it declared. */
3178 if (name[0] != '_' || name[1] != '_')
3179 C_DECL_ANTICIPATED (decl) = 1;
3181 return decl;
3184 /* Called when a declaration is seen that contains no names to declare.
3185 If its type is a reference to a structure, union or enum inherited
3186 from a containing scope, shadow that tag name for the current scope
3187 with a forward reference.
3188 If its type defines a new named structure or union
3189 or defines an enum, it is valid but we need not do anything here.
3190 Otherwise, it is an error. */
3192 void
3193 shadow_tag (declspecs)
3194 tree declspecs;
3196 shadow_tag_warned (declspecs, 0);
3199 void
3200 shadow_tag_warned (declspecs, warned)
3201 tree declspecs;
3202 int warned;
3203 /* 1 => we have done a pedwarn. 2 => we have done a warning, but
3204 no pedwarn. */
3206 int found_tag = 0;
3207 register tree link;
3208 tree specs, attrs;
3210 pending_invalid_xref = 0;
3212 /* Remove the attributes from declspecs, since they will confuse the
3213 following code. */
3214 split_specs_attrs (declspecs, &specs, &attrs);
3216 for (link = specs; link; link = TREE_CHAIN (link))
3218 register tree value = TREE_VALUE (link);
3219 register enum tree_code code = TREE_CODE (value);
3221 if (code == RECORD_TYPE || code == UNION_TYPE || code == ENUMERAL_TYPE)
3222 /* Used to test also that TYPE_SIZE (value) != 0.
3223 That caused warning for `struct foo;' at top level in the file. */
3225 register tree name = lookup_tag_reverse (value);
3226 register tree t;
3228 found_tag++;
3230 if (name == 0)
3232 if (warned != 1 && code != ENUMERAL_TYPE)
3233 /* Empty unnamed enum OK */
3235 pedwarn ("unnamed struct/union that defines no instances");
3236 warned = 1;
3239 else
3241 t = lookup_tag (code, name, current_binding_level, 1);
3243 if (t == 0)
3245 t = make_node (code);
3246 pushtag (name, t);
3250 else
3252 if (!warned && ! in_system_header)
3254 warning ("useless keyword or type name in empty declaration");
3255 warned = 2;
3260 if (found_tag > 1)
3261 error ("two types specified in one empty declaration");
3263 if (warned != 1)
3265 if (found_tag == 0)
3266 pedwarn ("empty declaration");
3270 /* Decode a "typename", such as "int **", returning a ..._TYPE node. */
3272 tree
3273 groktypename (typename)
3274 tree typename;
3276 if (TREE_CODE (typename) != TREE_LIST)
3277 return typename;
3278 return grokdeclarator (TREE_VALUE (typename),
3279 TREE_PURPOSE (typename),
3280 TYPENAME, 0);
3283 /* Return a PARM_DECL node for a given pair of specs and declarator. */
3285 tree
3286 groktypename_in_parm_context (typename)
3287 tree typename;
3289 if (TREE_CODE (typename) != TREE_LIST)
3290 return typename;
3291 return grokdeclarator (TREE_VALUE (typename),
3292 TREE_PURPOSE (typename),
3293 PARM, 0);
3296 /* Decode a declarator in an ordinary declaration or data definition.
3297 This is called as soon as the type information and variable name
3298 have been parsed, before parsing the initializer if any.
3299 Here we create the ..._DECL node, fill in its type,
3300 and put it on the list of decls for the current context.
3301 The ..._DECL node is returned as the value.
3303 Exception: for arrays where the length is not specified,
3304 the type is left null, to be filled in by `finish_decl'.
3306 Function definitions do not come here; they go to start_function
3307 instead. However, external and forward declarations of functions
3308 do go through here. Structure field declarations are done by
3309 grokfield and not through here. */
3311 tree
3312 start_decl (declarator, declspecs, initialized, attributes, prefix_attributes)
3313 tree declarator, declspecs;
3314 int initialized;
3315 tree attributes, prefix_attributes;
3317 register tree decl = grokdeclarator (declarator, declspecs,
3318 NORMAL, initialized);
3319 register tree tem;
3321 if (warn_main > 0 && TREE_CODE (decl) != FUNCTION_DECL
3322 && MAIN_NAME_P (DECL_NAME (decl)))
3323 warning_with_decl (decl, "`%s' is usually a function");
3325 if (initialized)
3326 /* Is it valid for this decl to have an initializer at all?
3327 If not, set INITIALIZED to zero, which will indirectly
3328 tell `finish_decl' to ignore the initializer once it is parsed. */
3329 switch (TREE_CODE (decl))
3331 case TYPE_DECL:
3332 /* typedef foo = bar means give foo the same type as bar.
3333 We haven't parsed bar yet, so `finish_decl' will fix that up.
3334 Any other case of an initialization in a TYPE_DECL is an error. */
3335 if (pedantic || list_length (declspecs) > 1)
3337 error ("typedef `%s' is initialized",
3338 IDENTIFIER_POINTER (DECL_NAME (decl)));
3339 initialized = 0;
3341 break;
3343 case FUNCTION_DECL:
3344 error ("function `%s' is initialized like a variable",
3345 IDENTIFIER_POINTER (DECL_NAME (decl)));
3346 initialized = 0;
3347 break;
3349 case PARM_DECL:
3350 /* DECL_INITIAL in a PARM_DECL is really DECL_ARG_TYPE. */
3351 error ("parameter `%s' is initialized",
3352 IDENTIFIER_POINTER (DECL_NAME (decl)));
3353 initialized = 0;
3354 break;
3356 default:
3357 /* Don't allow initializations for incomplete types
3358 except for arrays which might be completed by the initialization. */
3360 /* This can happen if the array size is an undefined macro. We already
3361 gave a warning, so we don't need another one. */
3362 if (TREE_TYPE (decl) == error_mark_node)
3363 initialized = 0;
3364 else if (COMPLETE_TYPE_P (TREE_TYPE (decl)))
3366 /* A complete type is ok if size is fixed. */
3368 if (TREE_CODE (TYPE_SIZE (TREE_TYPE (decl))) != INTEGER_CST
3369 || C_DECL_VARIABLE_SIZE (decl))
3371 error ("variable-sized object may not be initialized");
3372 initialized = 0;
3375 else if (TREE_CODE (TREE_TYPE (decl)) != ARRAY_TYPE)
3377 error ("variable `%s' has initializer but incomplete type",
3378 IDENTIFIER_POINTER (DECL_NAME (decl)));
3379 initialized = 0;
3381 else if (!COMPLETE_TYPE_P (TREE_TYPE (TREE_TYPE (decl))))
3383 error ("elements of array `%s' have incomplete type",
3384 IDENTIFIER_POINTER (DECL_NAME (decl)));
3385 initialized = 0;
3389 if (initialized)
3391 #if 0
3392 /* Seems redundant with grokdeclarator. */
3393 if (current_binding_level != global_binding_level
3394 && DECL_EXTERNAL (decl)
3395 && TREE_CODE (decl) != FUNCTION_DECL)
3396 warning ("declaration of `%s' has `extern' and is initialized",
3397 IDENTIFIER_POINTER (DECL_NAME (decl)));
3398 #endif
3399 DECL_EXTERNAL (decl) = 0;
3400 if (current_binding_level == global_binding_level)
3401 TREE_STATIC (decl) = 1;
3403 /* Tell `pushdecl' this is an initialized decl
3404 even though we don't yet have the initializer expression.
3405 Also tell `finish_decl' it may store the real initializer. */
3406 DECL_INITIAL (decl) = error_mark_node;
3409 /* If this is a function declaration, write a record describing it to the
3410 prototypes file (if requested). */
3412 if (TREE_CODE (decl) == FUNCTION_DECL)
3413 gen_aux_info_record (decl, 0, 0, TYPE_ARG_TYPES (TREE_TYPE (decl)) != 0);
3415 /* ANSI specifies that a tentative definition which is not merged with
3416 a non-tentative definition behaves exactly like a definition with an
3417 initializer equal to zero. (Section 3.7.2)
3418 -fno-common gives strict ANSI behavior. Usually you don't want it.
3419 This matters only for variables with external linkage. */
3420 if (! flag_no_common || ! TREE_PUBLIC (decl))
3421 DECL_COMMON (decl) = 1;
3423 #ifdef SET_DEFAULT_DECL_ATTRIBUTES
3424 SET_DEFAULT_DECL_ATTRIBUTES (decl, attributes);
3425 #endif
3427 /* Set attributes here so if duplicate decl, will have proper attributes. */
3428 decl_attributes (decl, attributes, prefix_attributes);
3430 /* Add this decl to the current binding level.
3431 TEM may equal DECL or it may be a previous decl of the same name. */
3432 tem = pushdecl (decl);
3434 /* For a local variable, define the RTL now. */
3435 if (current_binding_level != global_binding_level
3436 /* But not if this is a duplicate decl
3437 and we preserved the rtl from the previous one
3438 (which may or may not happen). */
3439 && DECL_RTL (tem) == 0
3440 && !DECL_CONTEXT (tem))
3442 if (TREE_TYPE (tem) != error_mark_node
3443 && COMPLETE_TYPE_P (TREE_TYPE (tem)))
3444 expand_decl (tem);
3445 else if (TREE_CODE (TREE_TYPE (tem)) == ARRAY_TYPE
3446 && DECL_INITIAL (tem) != 0)
3447 expand_decl (tem);
3450 return tem;
3453 /* Finish processing of a declaration;
3454 install its initial value.
3455 If the length of an array type is not known before,
3456 it must be determined now, from the initial value, or it is an error. */
3458 void
3459 finish_decl (decl, init, asmspec_tree)
3460 tree decl, init;
3461 tree asmspec_tree;
3463 register tree type = TREE_TYPE (decl);
3464 int was_incomplete = (DECL_SIZE (decl) == 0);
3465 const char *asmspec = 0;
3467 /* If a name was specified, get the string. */
3468 if (asmspec_tree)
3469 asmspec = TREE_STRING_POINTER (asmspec_tree);
3471 /* If `start_decl' didn't like having an initialization, ignore it now. */
3473 if (init != 0 && DECL_INITIAL (decl) == 0)
3474 init = 0;
3475 /* Don't crash if parm is initialized. */
3476 if (TREE_CODE (decl) == PARM_DECL)
3477 init = 0;
3479 if (init)
3481 if (TREE_CODE (decl) != TYPE_DECL)
3482 store_init_value (decl, init);
3483 else
3485 /* typedef foo = bar; store the type of bar as the type of foo. */
3486 TREE_TYPE (decl) = TREE_TYPE (init);
3487 DECL_INITIAL (decl) = init = 0;
3491 /* Deduce size of array from initialization, if not already known */
3493 if (TREE_CODE (type) == ARRAY_TYPE
3494 && TYPE_DOMAIN (type) == 0
3495 && TREE_CODE (decl) != TYPE_DECL)
3497 int do_default
3498 = (TREE_STATIC (decl)
3499 /* Even if pedantic, an external linkage array
3500 may have incomplete type at first. */
3501 ? pedantic && !TREE_PUBLIC (decl)
3502 : !DECL_EXTERNAL (decl));
3503 int failure
3504 = complete_array_type (type, DECL_INITIAL (decl), do_default);
3506 /* Get the completed type made by complete_array_type. */
3507 type = TREE_TYPE (decl);
3509 if (failure == 1)
3510 error_with_decl (decl, "initializer fails to determine size of `%s'");
3512 else if (failure == 2)
3514 if (do_default)
3515 error_with_decl (decl, "array size missing in `%s'");
3516 /* If a `static' var's size isn't known,
3517 make it extern as well as static, so it does not get
3518 allocated.
3519 If it is not `static', then do not mark extern;
3520 finish_incomplete_decl will give it a default size
3521 and it will get allocated. */
3522 else if (!pedantic && TREE_STATIC (decl) && ! TREE_PUBLIC (decl))
3523 DECL_EXTERNAL (decl) = 1;
3526 /* TYPE_MAX_VALUE is always one less than the number of elements
3527 in the array, because we start counting at zero. Therefore,
3528 warn only if the value is less than zero. */
3529 else if (pedantic && TYPE_DOMAIN (type) != 0
3530 && tree_int_cst_sgn (TYPE_MAX_VALUE (TYPE_DOMAIN (type))) < 0)
3531 error_with_decl (decl, "zero or negative size array `%s'");
3533 layout_decl (decl, 0);
3536 if (TREE_CODE (decl) == VAR_DECL)
3538 if (DECL_SIZE (decl) == 0 && TREE_TYPE (decl) != error_mark_node
3539 && COMPLETE_TYPE_P (TREE_TYPE (decl)))
3540 layout_decl (decl, 0);
3542 if (DECL_SIZE (decl) == 0
3543 /* Don't give an error if we already gave one earlier. */
3544 && TREE_TYPE (decl) != error_mark_node
3545 && (TREE_STATIC (decl)
3547 /* A static variable with an incomplete type
3548 is an error if it is initialized.
3549 Also if it is not file scope.
3550 Otherwise, let it through, but if it is not `extern'
3551 then it may cause an error message later. */
3552 (DECL_INITIAL (decl) != 0
3553 || DECL_CONTEXT (decl) != 0)
3555 /* An automatic variable with an incomplete type
3556 is an error. */
3557 !DECL_EXTERNAL (decl)))
3559 error_with_decl (decl, "storage size of `%s' isn't known");
3560 TREE_TYPE (decl) = error_mark_node;
3563 if ((DECL_EXTERNAL (decl) || TREE_STATIC (decl))
3564 && DECL_SIZE (decl) != 0)
3566 if (TREE_CODE (DECL_SIZE (decl)) == INTEGER_CST)
3567 constant_expression_warning (DECL_SIZE (decl));
3568 else
3569 error_with_decl (decl, "storage size of `%s' isn't constant");
3572 if (TREE_USED (type))
3573 TREE_USED (decl) = 1;
3576 /* If this is a function and an assembler name is specified, it isn't
3577 builtin any more. Also reset DECL_RTL so we can give it its new
3578 name. */
3579 if (TREE_CODE (decl) == FUNCTION_DECL && asmspec)
3581 DECL_BUILT_IN_CLASS (decl) = NOT_BUILT_IN;
3582 DECL_RTL (decl) = 0;
3583 DECL_ASSEMBLER_NAME (decl) = get_identifier (asmspec);
3586 /* Output the assembler code and/or RTL code for variables and functions,
3587 unless the type is an undefined structure or union.
3588 If not, it will get done when the type is completed. */
3590 if (TREE_CODE (decl) == VAR_DECL || TREE_CODE (decl) == FUNCTION_DECL)
3592 /* This is a no-op in c-lang.c or something real in objc-actions.c. */
3593 maybe_objc_check_decl (decl);
3595 if (!DECL_CONTEXT (decl))
3596 rest_of_decl_compilation (decl, asmspec,
3597 (DECL_CONTEXT (decl) == 0
3598 || TREE_ASM_WRITTEN (decl)), 0);
3599 else
3601 if (asmspec)
3603 DECL_ASSEMBLER_NAME (decl) = get_identifier (asmspec);
3604 DECL_C_HARD_REGISTER (decl) = 1;
3606 add_decl_stmt (decl);
3609 if (DECL_CONTEXT (decl) != 0)
3611 /* Recompute the RTL of a local array now
3612 if it used to be an incomplete type. */
3613 if (was_incomplete
3614 && ! TREE_STATIC (decl) && ! DECL_EXTERNAL (decl))
3616 /* If we used it already as memory, it must stay in memory. */
3617 TREE_ADDRESSABLE (decl) = TREE_USED (decl);
3618 /* If it's still incomplete now, no init will save it. */
3619 if (DECL_SIZE (decl) == 0)
3620 DECL_INITIAL (decl) = 0;
3625 if (TREE_CODE (decl) == TYPE_DECL)
3627 /* This is a no-op in c-lang.c or something real in objc-actions.c. */
3628 maybe_objc_check_decl (decl);
3629 rest_of_decl_compilation (decl, NULL_PTR, DECL_CONTEXT (decl) == 0, 0);
3632 /* At the end of a declaration, throw away any variable type sizes
3633 of types defined inside that declaration. There is no use
3634 computing them in the following function definition. */
3635 if (current_binding_level == global_binding_level)
3636 get_pending_sizes ();
3639 /* If DECL has a cleanup, build and return that cleanup here.
3640 This is a callback called by expand_expr. */
3642 tree
3643 maybe_build_cleanup (decl)
3644 tree decl ATTRIBUTE_UNUSED;
3646 /* There are no cleanups in C. */
3647 return NULL_TREE;
3650 /* Given a parsed parameter declaration,
3651 decode it into a PARM_DECL and push that on the current binding level.
3652 Also, for the sake of forward parm decls,
3653 record the given order of parms in `parm_order'. */
3655 void
3656 push_parm_decl (parm)
3657 tree parm;
3659 tree decl;
3660 int old_immediate_size_expand = immediate_size_expand;
3661 /* Don't try computing parm sizes now -- wait till fn is called. */
3662 immediate_size_expand = 0;
3664 decl = grokdeclarator (TREE_VALUE (TREE_PURPOSE (parm)),
3665 TREE_PURPOSE (TREE_PURPOSE (parm)), PARM, 0);
3666 decl_attributes (decl, TREE_VALUE (TREE_VALUE (parm)),
3667 TREE_PURPOSE (TREE_VALUE (parm)));
3669 #if 0
3670 if (DECL_NAME (decl))
3672 tree olddecl;
3673 olddecl = lookup_name (DECL_NAME (decl));
3674 if (pedantic && olddecl != 0 && TREE_CODE (olddecl) == TYPE_DECL)
3675 pedwarn_with_decl (decl,
3676 "ANSI C forbids parameter `%s' shadowing typedef");
3678 #endif
3680 decl = pushdecl (decl);
3682 immediate_size_expand = old_immediate_size_expand;
3684 current_binding_level->parm_order
3685 = tree_cons (NULL_TREE, decl, current_binding_level->parm_order);
3687 /* Add this decl to the current binding level. */
3688 finish_decl (decl, NULL_TREE, NULL_TREE);
3691 /* Clear the given order of parms in `parm_order'.
3692 Used at start of parm list,
3693 and also at semicolon terminating forward decls. */
3695 void
3696 clear_parm_order ()
3698 current_binding_level->parm_order = NULL_TREE;
3701 /* Make TYPE a complete type based on INITIAL_VALUE.
3702 Return 0 if successful, 1 if INITIAL_VALUE can't be deciphered,
3703 2 if there was no information (in which case assume 1 if DO_DEFAULT). */
3706 complete_array_type (type, initial_value, do_default)
3707 tree type;
3708 tree initial_value;
3709 int do_default;
3711 register tree maxindex = NULL_TREE;
3712 int value = 0;
3714 if (initial_value)
3716 /* Note MAXINDEX is really the maximum index,
3717 one less than the size. */
3718 if (TREE_CODE (initial_value) == STRING_CST)
3720 int eltsize
3721 = int_size_in_bytes (TREE_TYPE (TREE_TYPE (initial_value)));
3722 maxindex = build_int_2 ((TREE_STRING_LENGTH (initial_value)
3723 / eltsize) - 1, 0);
3725 else if (TREE_CODE (initial_value) == CONSTRUCTOR)
3727 tree elts = CONSTRUCTOR_ELTS (initial_value);
3728 maxindex = build_int_2 (-1, -1);
3729 for (; elts; elts = TREE_CHAIN (elts))
3731 if (TREE_PURPOSE (elts))
3732 maxindex = TREE_PURPOSE (elts);
3733 else
3734 maxindex = fold (build (PLUS_EXPR, integer_type_node,
3735 maxindex, integer_one_node));
3737 maxindex = copy_node (maxindex);
3739 else
3741 /* Make an error message unless that happened already. */
3742 if (initial_value != error_mark_node)
3743 value = 1;
3745 /* Prevent further error messages. */
3746 maxindex = build_int_2 (0, 0);
3750 if (!maxindex)
3752 if (do_default)
3753 maxindex = build_int_2 (0, 0);
3754 value = 2;
3757 if (maxindex)
3759 TYPE_DOMAIN (type) = build_index_type (maxindex);
3760 if (!TREE_TYPE (maxindex))
3761 TREE_TYPE (maxindex) = TYPE_DOMAIN (type);
3764 /* Lay out the type now that we can get the real answer. */
3766 layout_type (type);
3768 return value;
3771 /* Given declspecs and a declarator,
3772 determine the name and type of the object declared
3773 and construct a ..._DECL node for it.
3774 (In one case we can return a ..._TYPE node instead.
3775 For invalid input we sometimes return 0.)
3777 DECLSPECS is a chain of tree_list nodes whose value fields
3778 are the storage classes and type specifiers.
3780 DECL_CONTEXT says which syntactic context this declaration is in:
3781 NORMAL for most contexts. Make a VAR_DECL or FUNCTION_DECL or TYPE_DECL.
3782 FUNCDEF for a function definition. Like NORMAL but a few different
3783 error messages in each case. Return value may be zero meaning
3784 this definition is too screwy to try to parse.
3785 PARM for a parameter declaration (either within a function prototype
3786 or before a function body). Make a PARM_DECL, or return void_type_node.
3787 TYPENAME if for a typename (in a cast or sizeof).
3788 Don't make a DECL node; just return the ..._TYPE node.
3789 FIELD for a struct or union field; make a FIELD_DECL.
3790 BITFIELD for a field with specified width.
3791 INITIALIZED is 1 if the decl has an initializer.
3793 In the TYPENAME case, DECLARATOR is really an absolute declarator.
3794 It may also be so in the PARM case, for a prototype where the
3795 argument type is specified but not the name.
3797 This function is where the complicated C meanings of `static'
3798 and `extern' are interpreted. */
3800 static tree
3801 grokdeclarator (declarator, declspecs, decl_context, initialized)
3802 tree declspecs;
3803 tree declarator;
3804 enum decl_context decl_context;
3805 int initialized;
3807 int specbits = 0;
3808 tree spec;
3809 tree type = NULL_TREE;
3810 int longlong = 0;
3811 int constp;
3812 int restrictp;
3813 int volatilep;
3814 int type_quals = TYPE_UNQUALIFIED;
3815 int inlinep;
3816 int explicit_int = 0;
3817 int explicit_char = 0;
3818 int defaulted_int = 0;
3819 tree typedef_decl = 0;
3820 const char *name;
3821 tree typedef_type = 0;
3822 int funcdef_flag = 0;
3823 enum tree_code innermost_code = ERROR_MARK;
3824 int bitfield = 0;
3825 int size_varies = 0;
3826 tree decl_machine_attr = NULL_TREE;
3828 if (decl_context == BITFIELD)
3829 bitfield = 1, decl_context = FIELD;
3831 if (decl_context == FUNCDEF)
3832 funcdef_flag = 1, decl_context = NORMAL;
3834 /* Look inside a declarator for the name being declared
3835 and get it as a string, for an error message. */
3837 register tree decl = declarator;
3838 name = 0;
3840 while (decl)
3841 switch (TREE_CODE (decl))
3843 case ARRAY_REF:
3844 case INDIRECT_REF:
3845 case CALL_EXPR:
3846 innermost_code = TREE_CODE (decl);
3847 decl = TREE_OPERAND (decl, 0);
3848 break;
3850 case IDENTIFIER_NODE:
3851 name = IDENTIFIER_POINTER (decl);
3852 decl = 0;
3853 break;
3855 default:
3856 abort ();
3858 if (name == 0)
3859 name = "type name";
3862 /* A function definition's declarator must have the form of
3863 a function declarator. */
3865 if (funcdef_flag && innermost_code != CALL_EXPR)
3866 return 0;
3868 /* Anything declared one level down from the top level
3869 must be one of the parameters of a function
3870 (because the body is at least two levels down). */
3872 /* If this looks like a function definition, make it one,
3873 even if it occurs where parms are expected.
3874 Then store_parm_decls will reject it and not use it as a parm. */
3875 if (decl_context == NORMAL && !funcdef_flag
3876 && current_binding_level->parm_flag)
3877 decl_context = PARM;
3879 /* Look through the decl specs and record which ones appear.
3880 Some typespecs are defined as built-in typenames.
3881 Others, the ones that are modifiers of other types,
3882 are represented by bits in SPECBITS: set the bits for
3883 the modifiers that appear. Storage class keywords are also in SPECBITS.
3885 If there is a typedef name or a type, store the type in TYPE.
3886 This includes builtin typedefs such as `int'.
3888 Set EXPLICIT_INT or EXPLICIT_CHAR if the type is `int' or `char'
3889 and did not come from a user typedef.
3891 Set LONGLONG if `long' is mentioned twice. */
3893 for (spec = declspecs; spec; spec = TREE_CHAIN (spec))
3895 register tree id = TREE_VALUE (spec);
3897 if (id == ridpointers[(int) RID_INT])
3898 explicit_int = 1;
3899 if (id == ridpointers[(int) RID_CHAR])
3900 explicit_char = 1;
3902 if (TREE_CODE (id) == IDENTIFIER_NODE && C_IS_RESERVED_WORD (id))
3904 enum rid i = C_RID_CODE (id);
3905 if (i <= RID_LAST_MODIFIER)
3907 if (i == RID_LONG && specbits & (1<<i))
3909 if (longlong)
3910 error ("`long long long' is too long for GCC");
3911 else
3913 if (pedantic && !flag_isoc99 && ! in_system_header
3914 && warn_long_long)
3915 pedwarn ("ISO C89 does not support `long long'");
3916 longlong = 1;
3919 else if (specbits & (1 << i))
3920 pedwarn ("duplicate `%s'", IDENTIFIER_POINTER (id));
3921 specbits |= 1 << i;
3922 goto found;
3925 if (type)
3926 error ("two or more data types in declaration of `%s'", name);
3927 /* Actual typedefs come to us as TYPE_DECL nodes. */
3928 else if (TREE_CODE (id) == TYPE_DECL)
3930 type = TREE_TYPE (id);
3931 decl_machine_attr = DECL_MACHINE_ATTRIBUTES (id);
3932 typedef_decl = id;
3934 /* Built-in types come as identifiers. */
3935 else if (TREE_CODE (id) == IDENTIFIER_NODE)
3937 register tree t = lookup_name (id);
3938 if (TREE_TYPE (t) == error_mark_node)
3940 else if (!t || TREE_CODE (t) != TYPE_DECL)
3941 error ("`%s' fails to be a typedef or built in type",
3942 IDENTIFIER_POINTER (id));
3943 else
3945 type = TREE_TYPE (t);
3946 typedef_decl = t;
3949 else if (TREE_CODE (id) != ERROR_MARK)
3950 type = id;
3952 found:
3956 typedef_type = type;
3957 if (type)
3958 size_varies = C_TYPE_VARIABLE_SIZE (type);
3960 /* No type at all: default to `int', and set DEFAULTED_INT
3961 because it was not a user-defined typedef. */
3963 if (type == 0)
3965 if ((! (specbits & ((1 << (int) RID_LONG) | (1 << (int) RID_SHORT)
3966 | (1 << (int) RID_SIGNED)
3967 | (1 << (int) RID_UNSIGNED)
3968 | (1 << (int) RID_COMPLEX))))
3969 /* Don't warn about typedef foo = bar. */
3970 && ! (specbits & (1 << (int) RID_TYPEDEF) && initialized)
3971 && ! in_system_header)
3973 /* Issue a warning if this is an ISO C 99 program or if -Wreturn-type
3974 and this is a function, or if -Wimplicit; prefer the former
3975 warning since it is more explicit. */
3976 if ((warn_implicit_int || warn_return_type || flag_isoc99)
3977 && funcdef_flag)
3978 warn_about_return_type = 1;
3979 else if (warn_implicit_int || flag_isoc99)
3980 pedwarn_c99 ("type defaults to `int' in declaration of `%s'",
3981 name);
3984 defaulted_int = 1;
3985 type = integer_type_node;
3988 /* Now process the modifiers that were specified
3989 and check for invalid combinations. */
3991 /* Long double is a special combination. */
3993 if ((specbits & 1 << (int) RID_LONG) && ! longlong
3994 && TYPE_MAIN_VARIANT (type) == double_type_node)
3996 specbits &= ~(1 << (int) RID_LONG);
3997 type = long_double_type_node;
4000 /* Check all other uses of type modifiers. */
4002 if (specbits & ((1 << (int) RID_LONG) | (1 << (int) RID_SHORT)
4003 | (1 << (int) RID_UNSIGNED) | (1 << (int) RID_SIGNED)))
4005 int ok = 0;
4007 if ((specbits & 1 << (int) RID_LONG)
4008 && (specbits & 1 << (int) RID_SHORT))
4009 error ("both long and short specified for `%s'", name);
4010 else if (((specbits & 1 << (int) RID_LONG)
4011 || (specbits & 1 << (int) RID_SHORT))
4012 && explicit_char)
4013 error ("long or short specified with char for `%s'", name);
4014 else if (((specbits & 1 << (int) RID_LONG)
4015 || (specbits & 1 << (int) RID_SHORT))
4016 && TREE_CODE (type) == REAL_TYPE)
4018 static int already = 0;
4020 error ("long or short specified with floating type for `%s'", name);
4021 if (! already && ! pedantic)
4023 error ("the only valid combination is `long double'");
4024 already = 1;
4027 else if ((specbits & 1 << (int) RID_SIGNED)
4028 && (specbits & 1 << (int) RID_UNSIGNED))
4029 error ("both signed and unsigned specified for `%s'", name);
4030 else if (TREE_CODE (type) != INTEGER_TYPE)
4031 error ("long, short, signed or unsigned invalid for `%s'", name);
4032 else
4034 ok = 1;
4035 if (!explicit_int && !defaulted_int && !explicit_char && pedantic)
4037 pedwarn ("long, short, signed or unsigned used invalidly for `%s'",
4038 name);
4039 if (flag_pedantic_errors)
4040 ok = 0;
4044 /* Discard the type modifiers if they are invalid. */
4045 if (! ok)
4047 specbits &= ~((1 << (int) RID_LONG) | (1 << (int) RID_SHORT)
4048 | (1 << (int) RID_UNSIGNED) | (1 << (int) RID_SIGNED));
4049 longlong = 0;
4053 if ((specbits & (1 << (int) RID_COMPLEX))
4054 && TREE_CODE (type) != INTEGER_TYPE && TREE_CODE (type) != REAL_TYPE)
4056 error ("complex invalid for `%s'", name);
4057 specbits &= ~(1 << (int) RID_COMPLEX);
4060 /* Decide whether an integer type is signed or not.
4061 Optionally treat bitfields as signed by default. */
4062 if (specbits & 1 << (int) RID_UNSIGNED
4063 /* Traditionally, all bitfields are unsigned. */
4064 || (bitfield && flag_traditional
4065 && (! explicit_flag_signed_bitfields || !flag_signed_bitfields))
4066 || (bitfield && ! flag_signed_bitfields
4067 && (explicit_int || defaulted_int || explicit_char
4068 /* A typedef for plain `int' without `signed'
4069 can be controlled just like plain `int'. */
4070 || ! (typedef_decl != 0
4071 && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl)))
4072 && TREE_CODE (type) != ENUMERAL_TYPE
4073 && !(specbits & 1 << (int) RID_SIGNED)))
4075 if (longlong)
4076 type = long_long_unsigned_type_node;
4077 else if (specbits & 1 << (int) RID_LONG)
4078 type = long_unsigned_type_node;
4079 else if (specbits & 1 << (int) RID_SHORT)
4080 type = short_unsigned_type_node;
4081 else if (type == char_type_node)
4082 type = unsigned_char_type_node;
4083 else if (typedef_decl)
4084 type = unsigned_type (type);
4085 else
4086 type = unsigned_type_node;
4088 else if ((specbits & 1 << (int) RID_SIGNED)
4089 && type == char_type_node)
4090 type = signed_char_type_node;
4091 else if (longlong)
4092 type = long_long_integer_type_node;
4093 else if (specbits & 1 << (int) RID_LONG)
4094 type = long_integer_type_node;
4095 else if (specbits & 1 << (int) RID_SHORT)
4096 type = short_integer_type_node;
4098 if (specbits & 1 << (int) RID_COMPLEX)
4100 if (pedantic && !flag_isoc99)
4101 pedwarn ("ISO C89 does not support complex types");
4102 /* If we just have "complex", it is equivalent to
4103 "complex double", but if any modifiers at all are specified it is
4104 the complex form of TYPE. E.g, "complex short" is
4105 "complex short int". */
4107 if (defaulted_int && ! longlong
4108 && ! (specbits & ((1 << (int) RID_LONG) | (1 << (int) RID_SHORT)
4109 | (1 << (int) RID_SIGNED)
4110 | (1 << (int) RID_UNSIGNED))))
4112 if (pedantic)
4113 pedwarn ("ISO C does not support plain `complex' meaning `double complex'");
4114 type = complex_double_type_node;
4116 else if (type == integer_type_node)
4118 if (pedantic)
4119 pedwarn ("ISO C does not support complex integer types");
4120 type = complex_integer_type_node;
4122 else if (type == float_type_node)
4123 type = complex_float_type_node;
4124 else if (type == double_type_node)
4125 type = complex_double_type_node;
4126 else if (type == long_double_type_node)
4127 type = complex_long_double_type_node;
4128 else
4130 if (pedantic)
4131 pedwarn ("ISO C does not support complex integer types");
4132 type = build_complex_type (type);
4136 /* Figure out the type qualifiers for the declaration. There are
4137 two ways a declaration can become qualified. One is something
4138 like `const int i' where the `const' is explicit. Another is
4139 something like `typedef const int CI; CI i' where the type of the
4140 declaration contains the `const'. */
4141 constp = !! (specbits & 1 << (int) RID_CONST) + TYPE_READONLY (type);
4142 restrictp = !! (specbits & 1 << (int) RID_RESTRICT) + TYPE_RESTRICT (type);
4143 volatilep = !! (specbits & 1 << (int) RID_VOLATILE) + TYPE_VOLATILE (type);
4144 inlinep = !! (specbits & (1 << (int) RID_INLINE));
4145 if (constp > 1 && ! flag_isoc99)
4146 pedwarn ("duplicate `const'");
4147 if (restrictp > 1 && ! flag_isoc99)
4148 pedwarn ("duplicate `restrict'");
4149 if (volatilep > 1 && ! flag_isoc99)
4150 pedwarn ("duplicate `volatile'");
4151 if (! flag_gen_aux_info && (TYPE_QUALS (type)))
4152 type = TYPE_MAIN_VARIANT (type);
4153 type_quals = ((constp ? TYPE_QUAL_CONST : 0)
4154 | (restrictp ? TYPE_QUAL_RESTRICT : 0)
4155 | (volatilep ? TYPE_QUAL_VOLATILE : 0));
4157 /* Warn if two storage classes are given. Default to `auto'. */
4160 int nclasses = 0;
4162 if (specbits & 1 << (int) RID_AUTO) nclasses++;
4163 if (specbits & 1 << (int) RID_STATIC) nclasses++;
4164 if (specbits & 1 << (int) RID_EXTERN) nclasses++;
4165 if (specbits & 1 << (int) RID_REGISTER) nclasses++;
4166 if (specbits & 1 << (int) RID_TYPEDEF) nclasses++;
4168 /* Warn about storage classes that are invalid for certain
4169 kinds of declarations (parameters, typenames, etc.). */
4171 if (nclasses > 1)
4172 error ("multiple storage classes in declaration of `%s'", name);
4173 else if (funcdef_flag
4174 && (specbits
4175 & ((1 << (int) RID_REGISTER)
4176 | (1 << (int) RID_AUTO)
4177 | (1 << (int) RID_TYPEDEF))))
4179 if (specbits & 1 << (int) RID_AUTO
4180 && (pedantic || current_binding_level == global_binding_level))
4181 pedwarn ("function definition declared `auto'");
4182 if (specbits & 1 << (int) RID_REGISTER)
4183 error ("function definition declared `register'");
4184 if (specbits & 1 << (int) RID_TYPEDEF)
4185 error ("function definition declared `typedef'");
4186 specbits &= ~((1 << (int) RID_TYPEDEF) | (1 << (int) RID_REGISTER)
4187 | (1 << (int) RID_AUTO));
4189 else if (decl_context != NORMAL && nclasses > 0)
4191 if (decl_context == PARM && specbits & 1 << (int) RID_REGISTER)
4193 else
4195 switch (decl_context)
4197 case FIELD:
4198 error ("storage class specified for structure field `%s'",
4199 name);
4200 break;
4201 case PARM:
4202 error ("storage class specified for parameter `%s'", name);
4203 break;
4204 default:
4205 error ("storage class specified for typename");
4206 break;
4208 specbits &= ~((1 << (int) RID_TYPEDEF) | (1 << (int) RID_REGISTER)
4209 | (1 << (int) RID_AUTO) | (1 << (int) RID_STATIC)
4210 | (1 << (int) RID_EXTERN));
4213 else if (specbits & 1 << (int) RID_EXTERN && initialized && ! funcdef_flag)
4215 /* `extern' with initialization is invalid if not at top level. */
4216 if (current_binding_level == global_binding_level)
4217 warning ("`%s' initialized and declared `extern'", name);
4218 else
4219 error ("`%s' has both `extern' and initializer", name);
4221 else if (specbits & 1 << (int) RID_EXTERN && funcdef_flag
4222 && current_binding_level != global_binding_level)
4223 error ("nested function `%s' declared `extern'", name);
4224 else if (current_binding_level == global_binding_level
4225 && specbits & (1 << (int) RID_AUTO))
4226 error ("top-level declaration of `%s' specifies `auto'", name);
4229 /* Now figure out the structure of the declarator proper.
4230 Descend through it, creating more complex types, until we reach
4231 the declared identifier (or NULL_TREE, in an absolute declarator). */
4233 while (declarator && TREE_CODE (declarator) != IDENTIFIER_NODE)
4235 if (type == error_mark_node)
4237 declarator = TREE_OPERAND (declarator, 0);
4238 continue;
4241 /* Each level of DECLARATOR is either an ARRAY_REF (for ...[..]),
4242 an INDIRECT_REF (for *...),
4243 a CALL_EXPR (for ...(...)),
4244 an identifier (for the name being declared)
4245 or a null pointer (for the place in an absolute declarator
4246 where the name was omitted).
4247 For the last two cases, we have just exited the loop.
4249 At this point, TYPE is the type of elements of an array,
4250 or for a function to return, or for a pointer to point to.
4251 After this sequence of ifs, TYPE is the type of the
4252 array or function or pointer, and DECLARATOR has had its
4253 outermost layer removed. */
4255 if (TREE_CODE (declarator) == ARRAY_REF)
4257 register tree itype = NULL_TREE;
4258 register tree size = TREE_OPERAND (declarator, 1);
4259 /* The index is a signed object `sizetype' bits wide. */
4260 tree index_type = signed_type (sizetype);
4262 declarator = TREE_OPERAND (declarator, 0);
4264 /* Check for some types that there cannot be arrays of. */
4266 if (VOID_TYPE_P (type))
4268 error ("declaration of `%s' as array of voids", name);
4269 type = error_mark_node;
4272 if (TREE_CODE (type) == FUNCTION_TYPE)
4274 error ("declaration of `%s' as array of functions", name);
4275 type = error_mark_node;
4278 if (size == error_mark_node)
4279 type = error_mark_node;
4281 if (type == error_mark_node)
4282 continue;
4284 /* If size was specified, set ITYPE to a range-type for that size.
4285 Otherwise, ITYPE remains null. finish_decl may figure it out
4286 from an initial value. */
4288 if (size)
4290 /* Strip NON_LVALUE_EXPRs since we aren't using as an lvalue. */
4291 STRIP_TYPE_NOPS (size);
4293 if (TREE_CODE (TREE_TYPE (size)) != INTEGER_TYPE
4294 && TREE_CODE (TREE_TYPE (size)) != ENUMERAL_TYPE)
4296 error ("size of array `%s' has non-integer type", name);
4297 size = integer_one_node;
4300 if (pedantic && integer_zerop (size))
4301 pedwarn ("ISO C forbids zero-size array `%s'", name);
4303 if (TREE_CODE (size) == INTEGER_CST)
4305 constant_expression_warning (size);
4306 if (tree_int_cst_sgn (size) < 0)
4308 error ("size of array `%s' is negative", name);
4309 size = integer_one_node;
4312 else
4314 /* Make sure the array size remains visibly nonconstant
4315 even if it is (eg) a const variable with known value. */
4316 size_varies = 1;
4318 if (pedantic)
4320 if (TREE_CONSTANT (size))
4321 pedwarn ("ISO C89 forbids array `%s' whose size can't be evaluated",
4322 name);
4323 else
4324 pedwarn ("ISO C89 forbids variable-size array `%s'",
4325 name);
4329 if (integer_zerop (size))
4331 /* A zero-length array cannot be represented with an
4332 unsigned index type, which is what we'll get with
4333 build_index_type. Create an open-ended range instead. */
4334 itype = build_range_type (sizetype, size, NULL_TREE);
4336 else
4338 /* Compute the maximum valid index, that is, size - 1.
4339 Do the calculation in index_type, so that if it is
4340 a variable the computations will be done in the
4341 proper mode. */
4342 itype = fold (build (MINUS_EXPR, index_type,
4343 convert (index_type, size),
4344 convert (index_type, size_one_node)));
4346 /* If that overflowed, the array is too big.
4347 ??? While a size of INT_MAX+1 technically shouldn't
4348 cause an overflow (because we subtract 1), the overflow
4349 is recorded during the conversion to index_type, before
4350 the subtraction. Handling this case seems like an
4351 unnecessary complication. */
4352 if (TREE_OVERFLOW (itype))
4354 error ("size of array `%s' is too large", name);
4355 type = error_mark_node;
4356 continue;
4359 if (size_varies)
4360 itype = variable_size (itype);
4361 itype = build_index_type (itype);
4364 else if (decl_context == FIELD)
4366 /* ??? Need to check somewhere that this is a structure
4367 and not a union, that this field is last, and that
4368 this structure has at least one other named member. */
4370 if (pedantic && !flag_isoc99 && !in_system_header)
4371 pedwarn ("ISO C89 does not support flexible array members");
4373 /* ISO C99 Flexible array members are effectively identical
4374 to GCC's zero-length array extension. */
4375 itype = build_range_type (sizetype, size_zero_node, NULL_TREE);
4378 /* If pedantic, complain about arrays of incomplete types. */
4380 if (pedantic && !COMPLETE_TYPE_P (type))
4381 pedwarn ("array type has incomplete element type");
4383 #if 0
4384 /* We shouldn't have a function type here at all!
4385 Functions aren't allowed as array elements. */
4386 if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
4387 && (constp || volatilep))
4388 pedwarn ("ANSI C forbids const or volatile function types");
4389 #endif
4391 /* Build the array type itself, then merge any constancy or
4392 volatility into the target type. We must do it in this order
4393 to ensure that the TYPE_MAIN_VARIANT field of the array type
4394 is set correctly. */
4396 type = build_array_type (type, itype);
4397 if (type_quals)
4398 type = c_build_qualified_type (type, type_quals);
4400 if (size_varies)
4401 C_TYPE_VARIABLE_SIZE (type) = 1;
4403 /* The GCC extension for zero-length arrays differs from
4404 ISO flexible array members in that sizeof yields zero. */
4405 if (size && integer_zerop (size))
4407 layout_type (type);
4408 TYPE_SIZE (type) = bitsize_zero_node;
4409 TYPE_SIZE_UNIT (type) = size_zero_node;
4412 else if (TREE_CODE (declarator) == CALL_EXPR)
4414 tree arg_types;
4416 /* Declaring a function type.
4417 Make sure we have a valid type for the function to return. */
4418 if (type == error_mark_node)
4419 continue;
4421 size_varies = 0;
4423 /* Warn about some types functions can't return. */
4425 if (TREE_CODE (type) == FUNCTION_TYPE)
4427 error ("`%s' declared as function returning a function", name);
4428 type = integer_type_node;
4430 if (TREE_CODE (type) == ARRAY_TYPE)
4432 error ("`%s' declared as function returning an array", name);
4433 type = integer_type_node;
4436 #ifndef TRADITIONAL_RETURN_FLOAT
4437 /* Traditionally, declaring return type float means double. */
4439 if (flag_traditional && TYPE_MAIN_VARIANT (type) == float_type_node)
4440 type = double_type_node;
4441 #endif /* TRADITIONAL_RETURN_FLOAT */
4443 /* Construct the function type and go to the next
4444 inner layer of declarator. */
4446 arg_types = grokparms (TREE_OPERAND (declarator, 1),
4447 funcdef_flag
4448 /* Say it's a definition
4449 only for the CALL_EXPR
4450 closest to the identifier. */
4451 && TREE_CODE (TREE_OPERAND (declarator, 0)) == IDENTIFIER_NODE);
4452 /* Type qualifiers before the return type of the function
4453 qualify the return type, not the function type. */
4454 if (type_quals)
4456 /* Type qualifiers on a function return type are normally
4457 permitted by the standard but have no effect, so give a
4458 warning at -W. Qualifiers on a void return type have
4459 meaning as a GNU extension, and are banned on function
4460 definitions in ISO C. FIXME: strictly we shouldn't
4461 pedwarn for qualified void return types except on function
4462 definitions, but not doing so could lead to the undesirable
4463 state of a "volatile void" function return type not being
4464 warned about, and a use of the function being compiled
4465 with GNU semantics, with no diagnostics under -pedantic. */
4466 if (VOID_TYPE_P (type) && pedantic && !in_system_header)
4467 pedwarn ("ISO C forbids qualified void function return type");
4468 else if (extra_warnings
4469 && !(VOID_TYPE_P (type)
4470 && type_quals == TYPE_QUAL_VOLATILE))
4471 warning ("type qualifiers ignored on function return type");
4473 type = c_build_qualified_type (type, type_quals);
4475 type_quals = TYPE_UNQUALIFIED;
4477 type = build_function_type (type, arg_types);
4478 declarator = TREE_OPERAND (declarator, 0);
4480 /* Set the TYPE_CONTEXTs for each tagged type which is local to
4481 the formal parameter list of this FUNCTION_TYPE to point to
4482 the FUNCTION_TYPE node itself. */
4485 register tree link;
4487 for (link = last_function_parm_tags;
4488 link;
4489 link = TREE_CHAIN (link))
4490 TYPE_CONTEXT (TREE_VALUE (link)) = type;
4493 else if (TREE_CODE (declarator) == INDIRECT_REF)
4495 /* Merge any constancy or volatility into the target type
4496 for the pointer. */
4498 if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
4499 && type_quals)
4500 pedwarn ("ISO C forbids qualified function types");
4501 if (type_quals)
4502 type = c_build_qualified_type (type, type_quals);
4503 type_quals = TYPE_UNQUALIFIED;
4504 size_varies = 0;
4506 type = build_pointer_type (type);
4508 /* Process a list of type modifier keywords
4509 (such as const or volatile) that were given inside the `*'. */
4511 if (TREE_TYPE (declarator))
4513 register tree typemodlist;
4514 int erred = 0;
4516 constp = 0;
4517 volatilep = 0;
4518 restrictp = 0;
4519 for (typemodlist = TREE_TYPE (declarator); typemodlist;
4520 typemodlist = TREE_CHAIN (typemodlist))
4522 tree qualifier = TREE_VALUE (typemodlist);
4524 if (C_IS_RESERVED_WORD (qualifier))
4526 if (C_RID_CODE (qualifier) == RID_CONST)
4527 constp++;
4528 else if (C_RID_CODE (qualifier) == RID_VOLATILE)
4529 volatilep++;
4530 else if (C_RID_CODE (qualifier) == RID_RESTRICT)
4531 restrictp++;
4532 else
4533 erred++;
4535 else
4536 erred++;
4539 if (erred)
4540 error ("invalid type modifier within pointer declarator");
4541 if (constp > 1 && ! flag_isoc99)
4542 pedwarn ("duplicate `const'");
4543 if (volatilep > 1 && ! flag_isoc99)
4544 pedwarn ("duplicate `volatile'");
4545 if (restrictp > 1 && ! flag_isoc99)
4546 pedwarn ("duplicate `restrict'");
4548 type_quals = ((constp ? TYPE_QUAL_CONST : 0)
4549 | (restrictp ? TYPE_QUAL_RESTRICT : 0)
4550 | (volatilep ? TYPE_QUAL_VOLATILE : 0));
4553 declarator = TREE_OPERAND (declarator, 0);
4555 else
4556 abort ();
4560 /* Now TYPE has the actual type. */
4562 /* Did array size calculations overflow? */
4564 if (TREE_CODE (type) == ARRAY_TYPE
4565 && COMPLETE_TYPE_P (type)
4566 && TREE_OVERFLOW (TYPE_SIZE (type)))
4568 error ("size of array `%s' is too large", name);
4569 /* If we proceed with the array type as it is, we'll eventully
4570 crash in tree_low_cst(). */
4571 type = error_mark_node;
4574 /* If this is declaring a typedef name, return a TYPE_DECL. */
4576 if (specbits & (1 << (int) RID_TYPEDEF))
4578 tree decl;
4579 /* Note that the grammar rejects storage classes
4580 in typenames, fields or parameters */
4581 if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
4582 && type_quals)
4583 pedwarn ("ISO C forbids qualified function types");
4584 if (type_quals)
4585 type = c_build_qualified_type (type, type_quals);
4586 decl = build_decl (TYPE_DECL, declarator, type);
4587 if ((specbits & (1 << (int) RID_SIGNED))
4588 || (typedef_decl && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl)))
4589 C_TYPEDEF_EXPLICITLY_SIGNED (decl) = 1;
4590 return decl;
4593 /* Detect the case of an array type of unspecified size
4594 which came, as such, direct from a typedef name.
4595 We must copy the type, so that each identifier gets
4596 a distinct type, so that each identifier's size can be
4597 controlled separately by its own initializer. */
4599 if (type != 0 && typedef_type != 0
4600 && TREE_CODE (type) == ARRAY_TYPE && TYPE_DOMAIN (type) == 0
4601 && TYPE_MAIN_VARIANT (type) == TYPE_MAIN_VARIANT (typedef_type))
4603 type = build_array_type (TREE_TYPE (type), 0);
4604 if (size_varies)
4605 C_TYPE_VARIABLE_SIZE (type) = 1;
4608 /* If this is a type name (such as, in a cast or sizeof),
4609 compute the type and return it now. */
4611 if (decl_context == TYPENAME)
4613 /* Note that the grammar rejects storage classes
4614 in typenames, fields or parameters */
4615 if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
4616 && type_quals)
4617 pedwarn ("ISO C forbids const or volatile function types");
4618 if (type_quals)
4619 type = c_build_qualified_type (type, type_quals);
4620 return type;
4623 /* Aside from typedefs and type names (handle above),
4624 `void' at top level (not within pointer)
4625 is allowed only in public variables.
4626 We don't complain about parms either, but that is because
4627 a better error message can be made later. */
4629 if (VOID_TYPE_P (type) && decl_context != PARM
4630 && ! ((decl_context != FIELD && TREE_CODE (type) != FUNCTION_TYPE)
4631 && ((specbits & (1 << (int) RID_EXTERN))
4632 || (current_binding_level == global_binding_level
4633 && !(specbits
4634 & ((1 << (int) RID_STATIC) | (1 << (int) RID_REGISTER)))))))
4636 error ("variable or field `%s' declared void", name);
4637 type = integer_type_node;
4640 /* Now create the decl, which may be a VAR_DECL, a PARM_DECL
4641 or a FUNCTION_DECL, depending on DECL_CONTEXT and TYPE. */
4644 register tree decl;
4646 if (decl_context == PARM)
4648 tree type_as_written = type;
4649 tree promoted_type;
4651 /* A parameter declared as an array of T is really a pointer to T.
4652 One declared as a function is really a pointer to a function. */
4654 if (TREE_CODE (type) == ARRAY_TYPE)
4656 /* Transfer const-ness of array into that of type pointed to. */
4657 type = TREE_TYPE (type);
4658 if (type_quals)
4659 type = c_build_qualified_type (type, type_quals);
4660 type = build_pointer_type (type);
4661 type_quals = TYPE_UNQUALIFIED;
4662 size_varies = 0;
4664 else if (TREE_CODE (type) == FUNCTION_TYPE)
4666 if (pedantic && type_quals)
4667 pedwarn ("ISO C forbids qualified function types");
4668 if (type_quals)
4669 type = c_build_qualified_type (type, type_quals);
4670 type = build_pointer_type (type);
4671 type_quals = TYPE_UNQUALIFIED;
4674 decl = build_decl (PARM_DECL, declarator, type);
4675 if (size_varies)
4676 C_DECL_VARIABLE_SIZE (decl) = 1;
4678 /* Compute the type actually passed in the parmlist,
4679 for the case where there is no prototype.
4680 (For example, shorts and chars are passed as ints.)
4681 When there is a prototype, this is overridden later. */
4683 if (type == error_mark_node)
4684 promoted_type = type;
4685 else
4687 promoted_type = simple_type_promotes_to (type);
4688 if (! promoted_type)
4689 promoted_type = type;
4692 DECL_ARG_TYPE (decl) = promoted_type;
4693 DECL_ARG_TYPE_AS_WRITTEN (decl) = type_as_written;
4695 else if (decl_context == FIELD)
4697 /* Structure field. It may not be a function. */
4699 if (TREE_CODE (type) == FUNCTION_TYPE)
4701 error ("field `%s' declared as a function", name);
4702 type = build_pointer_type (type);
4704 else if (TREE_CODE (type) != ERROR_MARK
4705 && !COMPLETE_OR_UNBOUND_ARRAY_TYPE_P (type))
4707 error ("field `%s' has incomplete type", name);
4708 type = error_mark_node;
4710 /* Move type qualifiers down to element of an array. */
4711 if (TREE_CODE (type) == ARRAY_TYPE && type_quals)
4713 type = build_array_type (c_build_qualified_type (TREE_TYPE (type),
4714 type_quals),
4715 TYPE_DOMAIN (type));
4716 #if 0
4717 /* Leave the field const or volatile as well. */
4718 type_quals = TYPE_UNQUALIFIED;
4719 #endif
4721 decl = build_decl (FIELD_DECL, declarator, type);
4722 DECL_NONADDRESSABLE_P (decl) = bitfield;
4724 if (size_varies)
4725 C_DECL_VARIABLE_SIZE (decl) = 1;
4727 else if (TREE_CODE (type) == FUNCTION_TYPE)
4729 /* Every function declaration is "external"
4730 except for those which are inside a function body
4731 in which `auto' is used.
4732 That is a case not specified by ANSI C,
4733 and we use it for forward declarations for nested functions. */
4734 int extern_ref = (!(specbits & (1 << (int) RID_AUTO))
4735 || current_binding_level == global_binding_level);
4737 if (specbits & (1 << (int) RID_AUTO)
4738 && (pedantic || current_binding_level == global_binding_level))
4739 pedwarn ("invalid storage class for function `%s'", name);
4740 if (specbits & (1 << (int) RID_REGISTER))
4741 error ("invalid storage class for function `%s'", name);
4742 /* Function declaration not at top level.
4743 Storage classes other than `extern' are not allowed
4744 and `extern' makes no difference. */
4745 if (current_binding_level != global_binding_level
4746 && (specbits & ((1 << (int) RID_STATIC) | (1 << (int) RID_INLINE)))
4747 && pedantic)
4748 pedwarn ("invalid storage class for function `%s'", name);
4750 decl = build_decl (FUNCTION_DECL, declarator, type);
4751 decl = build_decl_attribute_variant (decl, decl_machine_attr);
4753 if (pedantic && type_quals && ! DECL_IN_SYSTEM_HEADER (decl))
4754 pedwarn ("ISO C forbids qualified function types");
4756 /* GNU C interprets a `volatile void' return type to indicate
4757 that the function does not return. */
4758 if ((type_quals & TYPE_QUAL_VOLATILE)
4759 && !VOID_TYPE_P (TREE_TYPE (TREE_TYPE (decl))))
4760 warning ("`noreturn' function returns non-void value");
4762 if (extern_ref)
4763 DECL_EXTERNAL (decl) = 1;
4764 /* Record absence of global scope for `static' or `auto'. */
4765 TREE_PUBLIC (decl)
4766 = !(specbits & ((1 << (int) RID_STATIC) | (1 << (int) RID_AUTO)));
4768 /* Record presence of `inline', if it is reasonable. */
4769 if (inlinep)
4771 if (MAIN_NAME_P (declarator))
4772 warning ("cannot inline function `main'");
4773 else
4774 /* Assume that otherwise the function can be inlined. */
4775 DECL_INLINE (decl) = 1;
4777 if (specbits & (1 << (int) RID_EXTERN))
4778 current_extern_inline = 1;
4781 else
4783 /* It's a variable. */
4784 /* An uninitialized decl with `extern' is a reference. */
4785 int extern_ref = !initialized && (specbits & (1 << (int) RID_EXTERN));
4787 /* Move type qualifiers down to element of an array. */
4788 if (TREE_CODE (type) == ARRAY_TYPE && type_quals)
4790 int saved_align = TYPE_ALIGN(type);
4791 type = build_array_type (c_build_qualified_type (TREE_TYPE (type),
4792 type_quals),
4793 TYPE_DOMAIN (type));
4794 TYPE_ALIGN (type) = saved_align;
4795 #if 0 /* Leave the variable const or volatile as well. */
4796 type_quals = TYPE_UNQUALIFIED;
4797 #endif
4800 decl = build_decl (VAR_DECL, declarator, type);
4801 if (size_varies)
4802 C_DECL_VARIABLE_SIZE (decl) = 1;
4804 if (inlinep)
4805 pedwarn_with_decl (decl, "variable `%s' declared `inline'");
4807 DECL_EXTERNAL (decl) = extern_ref;
4808 /* At top level, the presence of a `static' or `register' storage
4809 class specifier, or the absence of all storage class specifiers
4810 makes this declaration a definition (perhaps tentative). Also,
4811 the absence of both `static' and `register' makes it public. */
4812 if (current_binding_level == global_binding_level)
4814 TREE_PUBLIC (decl)
4815 = !(specbits
4816 & ((1 << (int) RID_STATIC) | (1 << (int) RID_REGISTER)));
4817 TREE_STATIC (decl) = ! DECL_EXTERNAL (decl);
4819 /* Not at top level, only `static' makes a static definition. */
4820 else
4822 TREE_STATIC (decl) = (specbits & (1 << (int) RID_STATIC)) != 0;
4823 TREE_PUBLIC (decl) = DECL_EXTERNAL (decl);
4827 /* Record `register' declaration for warnings on &
4828 and in case doing stupid register allocation. */
4830 if (specbits & (1 << (int) RID_REGISTER))
4831 DECL_REGISTER (decl) = 1;
4833 /* Record constancy and volatility. */
4834 c_apply_type_quals_to_decl (type_quals, decl);
4836 /* If a type has volatile components, it should be stored in memory.
4837 Otherwise, the fact that those components are volatile
4838 will be ignored, and would even crash the compiler. */
4839 if (C_TYPE_FIELDS_VOLATILE (TREE_TYPE (decl)))
4840 mark_addressable (decl);
4842 return decl;
4846 /* Decode the parameter-list info for a function type or function definition.
4847 The argument is the value returned by `get_parm_info' (or made in parse.y
4848 if there is an identifier list instead of a parameter decl list).
4849 These two functions are separate because when a function returns
4850 or receives functions then each is called multiple times but the order
4851 of calls is different. The last call to `grokparms' is always the one
4852 that contains the formal parameter names of a function definition.
4854 Store in `last_function_parms' a chain of the decls of parms.
4855 Also store in `last_function_parm_tags' a chain of the struct, union,
4856 and enum tags declared among the parms.
4858 Return a list of arg types to use in the FUNCTION_TYPE for this function.
4860 FUNCDEF_FLAG is nonzero for a function definition, 0 for
4861 a mere declaration. A nonempty identifier-list gets an error message
4862 when FUNCDEF_FLAG is zero. */
4864 static tree
4865 grokparms (parms_info, funcdef_flag)
4866 tree parms_info;
4867 int funcdef_flag;
4869 tree first_parm = TREE_CHAIN (parms_info);
4871 last_function_parms = TREE_PURPOSE (parms_info);
4872 last_function_parm_tags = TREE_VALUE (parms_info);
4874 if (warn_strict_prototypes && first_parm == 0 && !funcdef_flag
4875 && !in_system_header)
4876 warning ("function declaration isn't a prototype");
4878 if (first_parm != 0
4879 && TREE_CODE (TREE_VALUE (first_parm)) == IDENTIFIER_NODE)
4881 if (! funcdef_flag)
4882 pedwarn ("parameter names (without types) in function declaration");
4884 last_function_parms = first_parm;
4885 return 0;
4887 else
4889 tree parm;
4890 tree typelt;
4891 /* We no longer test FUNCDEF_FLAG.
4892 If the arg types are incomplete in a declaration,
4893 they must include undefined tags.
4894 These tags can never be defined in the scope of the declaration,
4895 so the types can never be completed,
4896 and no call can be compiled successfully. */
4897 #if 0
4898 /* In a fcn definition, arg types must be complete. */
4899 if (funcdef_flag)
4900 #endif
4901 for (parm = last_function_parms, typelt = first_parm;
4902 parm;
4903 parm = TREE_CHAIN (parm))
4904 /* Skip over any enumeration constants declared here. */
4905 if (TREE_CODE (parm) == PARM_DECL)
4907 /* Barf if the parameter itself has an incomplete type. */
4908 tree type = TREE_VALUE (typelt);
4909 if (type == error_mark_node)
4910 continue;
4911 if (!COMPLETE_TYPE_P (type))
4913 if (funcdef_flag && DECL_NAME (parm) != 0)
4914 error ("parameter `%s' has incomplete type",
4915 IDENTIFIER_POINTER (DECL_NAME (parm)));
4916 else
4917 warning ("parameter has incomplete type");
4918 if (funcdef_flag)
4920 TREE_VALUE (typelt) = error_mark_node;
4921 TREE_TYPE (parm) = error_mark_node;
4924 #if 0
4925 /* This has been replaced by parm_tags_warning, which
4926 uses a more accurate criterion for what to warn
4927 about. */
4928 else
4930 /* Now warn if is a pointer to an incomplete type. */
4931 while (TREE_CODE (type) == POINTER_TYPE
4932 || TREE_CODE (type) == REFERENCE_TYPE)
4933 type = TREE_TYPE (type);
4934 type = TYPE_MAIN_VARIANT (type);
4935 if (!COMPLETE_TYPE_P (type))
4937 if (DECL_NAME (parm) != 0)
4938 warning ("parameter `%s' points to incomplete type",
4939 IDENTIFIER_POINTER (DECL_NAME (parm)));
4940 else
4941 warning ("parameter points to incomplete type");
4944 #endif
4945 typelt = TREE_CHAIN (typelt);
4948 return first_parm;
4952 /* Return a tree_list node with info on a parameter list just parsed.
4953 The TREE_PURPOSE is a chain of decls of those parms.
4954 The TREE_VALUE is a list of structure, union and enum tags defined.
4955 The TREE_CHAIN is a list of argument types to go in the FUNCTION_TYPE.
4956 This tree_list node is later fed to `grokparms'.
4958 VOID_AT_END nonzero means append `void' to the end of the type-list.
4959 Zero means the parmlist ended with an ellipsis so don't append `void'. */
4961 tree
4962 get_parm_info (void_at_end)
4963 int void_at_end;
4965 register tree decl, t;
4966 register tree types = 0;
4967 int erred = 0;
4968 tree tags = gettags ();
4969 tree parms = getdecls ();
4970 tree new_parms = 0;
4971 tree order = current_binding_level->parm_order;
4973 /* Just `void' (and no ellipsis) is special. There are really no parms.
4974 But if the `void' is qualified (by `const' or `volatile') or has a
4975 storage class specifier (`register'), then the behavior is undefined;
4976 by not counting it as the special case of `void' we will cause an
4977 error later. Typedefs for `void' are OK (see DR#157). */
4978 if (void_at_end && parms != 0
4979 && TREE_CHAIN (parms) == 0
4980 && VOID_TYPE_P (TREE_TYPE (parms))
4981 && ! TREE_THIS_VOLATILE (parms)
4982 && ! TREE_READONLY (parms)
4983 && ! DECL_REGISTER (parms)
4984 && DECL_NAME (parms) == 0)
4986 parms = NULL_TREE;
4987 storedecls (NULL_TREE);
4988 return tree_cons (NULL_TREE, NULL_TREE,
4989 tree_cons (NULL_TREE, void_type_node, NULL_TREE));
4992 /* Extract enumerator values and other non-parms declared with the parms.
4993 Likewise any forward parm decls that didn't have real parm decls. */
4994 for (decl = parms; decl;)
4996 tree next = TREE_CHAIN (decl);
4998 if (TREE_CODE (decl) != PARM_DECL)
5000 TREE_CHAIN (decl) = new_parms;
5001 new_parms = decl;
5003 else if (TREE_ASM_WRITTEN (decl))
5005 error_with_decl (decl,
5006 "parameter `%s' has just a forward declaration");
5007 TREE_CHAIN (decl) = new_parms;
5008 new_parms = decl;
5010 decl = next;
5013 /* Put the parm decls back in the order they were in in the parm list. */
5014 for (t = order; t; t = TREE_CHAIN (t))
5016 if (TREE_CHAIN (t))
5017 TREE_CHAIN (TREE_VALUE (t)) = TREE_VALUE (TREE_CHAIN (t));
5018 else
5019 TREE_CHAIN (TREE_VALUE (t)) = 0;
5022 new_parms = chainon (order ? nreverse (TREE_VALUE (order)) : 0,
5023 new_parms);
5025 /* Store the parmlist in the binding level since the old one
5026 is no longer a valid list. (We have changed the chain pointers.) */
5027 storedecls (new_parms);
5029 for (decl = new_parms; decl; decl = TREE_CHAIN (decl))
5030 /* There may also be declarations for enumerators if an enumeration
5031 type is declared among the parms. Ignore them here. */
5032 if (TREE_CODE (decl) == PARM_DECL)
5034 /* Since there is a prototype,
5035 args are passed in their declared types. */
5036 tree type = TREE_TYPE (decl);
5037 DECL_ARG_TYPE (decl) = type;
5038 if (PROMOTE_PROTOTYPES
5039 && (TREE_CODE (type) == INTEGER_TYPE
5040 || TREE_CODE (type) == ENUMERAL_TYPE)
5041 && TYPE_PRECISION (type) < TYPE_PRECISION (integer_type_node))
5042 DECL_ARG_TYPE (decl) = integer_type_node;
5044 types = tree_cons (NULL_TREE, TREE_TYPE (decl), types);
5045 if (VOID_TYPE_P (TREE_VALUE (types)) && ! erred
5046 && DECL_NAME (decl) == 0)
5048 error ("`void' in parameter list must be the entire list");
5049 erred = 1;
5053 if (void_at_end)
5054 return tree_cons (new_parms, tags,
5055 nreverse (tree_cons (NULL_TREE, void_type_node, types)));
5057 return tree_cons (new_parms, tags, nreverse (types));
5060 /* At end of parameter list, warn about any struct, union or enum tags
5061 defined within. Do so because these types cannot ever become complete. */
5063 void
5064 parmlist_tags_warning ()
5066 tree elt;
5067 static int already;
5069 for (elt = current_binding_level->tags; elt; elt = TREE_CHAIN (elt))
5071 enum tree_code code = TREE_CODE (TREE_VALUE (elt));
5072 /* An anonymous union parm type is meaningful as a GNU extension.
5073 So don't warn for that. */
5074 if (code == UNION_TYPE && TREE_PURPOSE (elt) == 0 && !pedantic)
5075 continue;
5076 if (TREE_PURPOSE (elt) != 0)
5077 warning ("`%s %s' declared inside parameter list",
5078 (code == RECORD_TYPE ? "struct"
5079 : code == UNION_TYPE ? "union"
5080 : "enum"),
5081 IDENTIFIER_POINTER (TREE_PURPOSE (elt)));
5082 else
5084 /* For translation these need to be seperate warnings */
5085 if (code == RECORD_TYPE)
5086 warning ("anonymous struct declared inside parameter list");
5087 else if (code == UNION_TYPE)
5088 warning ("anonymous union declared inside parameter list");
5089 else
5090 warning ("anonymous enum declared inside parameter list");
5092 if (! already)
5094 warning ("its scope is only this definition or declaration, which is probably not what you want.");
5095 already = 1;
5100 /* Get the struct, enum or union (CODE says which) with tag NAME.
5101 Define the tag as a forward-reference if it is not defined. */
5103 tree
5104 xref_tag (code, name)
5105 enum tree_code code;
5106 tree name;
5108 /* If a cross reference is requested, look up the type
5109 already defined for this tag and return it. */
5111 register tree ref = lookup_tag (code, name, current_binding_level, 0);
5112 /* Even if this is the wrong type of tag, return what we found.
5113 There will be an error message anyway, from pending_xref_error.
5114 If we create an empty xref just for an invalid use of the type,
5115 the main result is to create lots of superfluous error messages. */
5116 if (ref)
5117 return ref;
5119 /* If no such tag is yet defined, create a forward-reference node
5120 and record it as the "definition".
5121 When a real declaration of this type is found,
5122 the forward-reference will be altered into a real type. */
5124 ref = make_node (code);
5125 if (code == ENUMERAL_TYPE)
5127 /* Give the type a default layout like unsigned int
5128 to avoid crashing if it does not get defined. */
5129 TYPE_MODE (ref) = TYPE_MODE (unsigned_type_node);
5130 TYPE_ALIGN (ref) = TYPE_ALIGN (unsigned_type_node);
5131 TYPE_USER_ALIGN (ref) = 0;
5132 TREE_UNSIGNED (ref) = 1;
5133 TYPE_PRECISION (ref) = TYPE_PRECISION (unsigned_type_node);
5134 TYPE_MIN_VALUE (ref) = TYPE_MIN_VALUE (unsigned_type_node);
5135 TYPE_MAX_VALUE (ref) = TYPE_MAX_VALUE (unsigned_type_node);
5138 pushtag (name, ref);
5140 return ref;
5143 /* Make sure that the tag NAME is defined *in the current binding level*
5144 at least as a forward reference.
5145 CODE says which kind of tag NAME ought to be. */
5147 tree
5148 start_struct (code, name)
5149 enum tree_code code;
5150 tree name;
5152 /* If there is already a tag defined at this binding level
5153 (as a forward reference), just return it. */
5155 register tree ref = 0;
5157 if (name != 0)
5158 ref = lookup_tag (code, name, current_binding_level, 1);
5159 if (ref && TREE_CODE (ref) == code)
5161 C_TYPE_BEING_DEFINED (ref) = 1;
5162 TYPE_PACKED (ref) = flag_pack_struct;
5163 if (TYPE_FIELDS (ref))
5164 error ("redefinition of `%s %s'",
5165 code == UNION_TYPE ? "union" : "struct",
5166 IDENTIFIER_POINTER (name));
5168 return ref;
5171 /* Otherwise create a forward-reference just so the tag is in scope. */
5173 ref = make_node (code);
5174 pushtag (name, ref);
5175 C_TYPE_BEING_DEFINED (ref) = 1;
5176 TYPE_PACKED (ref) = flag_pack_struct;
5177 return ref;
5180 /* Process the specs, declarator (NULL if omitted) and width (NULL if omitted)
5181 of a structure component, returning a FIELD_DECL node.
5182 WIDTH is non-NULL for bit fields only, and is an INTEGER_CST node.
5184 This is done during the parsing of the struct declaration.
5185 The FIELD_DECL nodes are chained together and the lot of them
5186 are ultimately passed to `build_struct' to make the RECORD_TYPE node. */
5188 tree
5189 grokfield (filename, line, declarator, declspecs, width)
5190 const char *filename ATTRIBUTE_UNUSED;
5191 int line ATTRIBUTE_UNUSED;
5192 tree declarator, declspecs, width;
5194 tree value;
5196 value = grokdeclarator (declarator, declspecs, width ? BITFIELD : FIELD, 0);
5198 finish_decl (value, NULL_TREE, NULL_TREE);
5199 DECL_INITIAL (value) = width;
5201 maybe_objc_check_decl (value);
5202 return value;
5205 /* Fill in the fields of a RECORD_TYPE or UNION_TYPE node, T.
5206 FIELDLIST is a chain of FIELD_DECL nodes for the fields.
5207 ATTRIBUTES are attributes to be applied to the structure. */
5209 tree
5210 finish_struct (t, fieldlist, attributes)
5211 tree t;
5212 tree fieldlist;
5213 tree attributes;
5215 register tree x;
5216 int toplevel = global_binding_level == current_binding_level;
5217 int saw_named_field;
5219 /* If this type was previously laid out as a forward reference,
5220 make sure we lay it out again. */
5222 TYPE_SIZE (t) = 0;
5224 decl_attributes (t, attributes, NULL_TREE);
5226 /* Nameless union parm types are useful as GCC extension. */
5227 if (! (TREE_CODE (t) == UNION_TYPE && TYPE_NAME (t) == 0) && !pedantic)
5228 /* Otherwise, warn about any struct or union def. in parmlist. */
5229 if (in_parm_level_p ())
5231 if (pedantic)
5232 pedwarn ("%s defined inside parms",
5233 TREE_CODE (t) == UNION_TYPE ? _("union") : _("structure"));
5234 else if (! flag_traditional)
5235 warning ("%s defined inside parms",
5236 TREE_CODE (t) == UNION_TYPE ? _("union") : _("structure"));
5239 if (pedantic)
5241 for (x = fieldlist; x; x = TREE_CHAIN (x))
5242 if (DECL_NAME (x) != 0)
5243 break;
5245 if (x == 0)
5246 pedwarn ("%s has no %s",
5247 TREE_CODE (t) == UNION_TYPE ? _("union") : _("struct"),
5248 fieldlist ? _("named members") : _("members"));
5251 /* Install struct as DECL_CONTEXT of each field decl.
5252 Also process specified field sizes,m which is found in the DECL_INITIAL.
5253 Store 0 there, except for ": 0" fields (so we can find them
5254 and delete them, below). */
5256 saw_named_field = 0;
5257 for (x = fieldlist; x; x = TREE_CHAIN (x))
5259 DECL_CONTEXT (x) = t;
5260 DECL_PACKED (x) |= TYPE_PACKED (t);
5262 /* If any field is const, the structure type is pseudo-const. */
5263 if (TREE_READONLY (x))
5264 C_TYPE_FIELDS_READONLY (t) = 1;
5265 else
5267 /* A field that is pseudo-const makes the structure likewise. */
5268 tree t1 = TREE_TYPE (x);
5269 while (TREE_CODE (t1) == ARRAY_TYPE)
5270 t1 = TREE_TYPE (t1);
5271 if ((TREE_CODE (t1) == RECORD_TYPE || TREE_CODE (t1) == UNION_TYPE)
5272 && C_TYPE_FIELDS_READONLY (t1))
5273 C_TYPE_FIELDS_READONLY (t) = 1;
5276 /* Any field that is volatile means variables of this type must be
5277 treated in some ways as volatile. */
5278 if (TREE_THIS_VOLATILE (x))
5279 C_TYPE_FIELDS_VOLATILE (t) = 1;
5281 /* Any field of nominal variable size implies structure is too. */
5282 if (C_DECL_VARIABLE_SIZE (x))
5283 C_TYPE_VARIABLE_SIZE (t) = 1;
5285 /* Detect invalid nested redefinition. */
5286 if (TREE_TYPE (x) == t)
5287 error ("nested redefinition of `%s'",
5288 IDENTIFIER_POINTER (TYPE_NAME (t)));
5290 /* Detect invalid bit-field size. */
5291 if (DECL_INITIAL (x))
5292 STRIP_NOPS (DECL_INITIAL (x));
5293 if (DECL_INITIAL (x))
5295 if (TREE_CODE (DECL_INITIAL (x)) == INTEGER_CST)
5296 constant_expression_warning (DECL_INITIAL (x));
5297 else
5299 error_with_decl (x,
5300 "bit-field `%s' width not an integer constant");
5301 DECL_INITIAL (x) = NULL;
5305 /* Detect invalid bit-field type. */
5306 if (DECL_INITIAL (x)
5307 && TREE_CODE (TREE_TYPE (x)) != INTEGER_TYPE
5308 && TREE_CODE (TREE_TYPE (x)) != BOOLEAN_TYPE
5309 && TREE_CODE (TREE_TYPE (x)) != ENUMERAL_TYPE)
5311 error_with_decl (x, "bit-field `%s' has invalid type");
5312 DECL_INITIAL (x) = NULL;
5315 if (DECL_INITIAL (x) && pedantic
5316 && TYPE_MAIN_VARIANT (TREE_TYPE (x)) != integer_type_node
5317 && TYPE_MAIN_VARIANT (TREE_TYPE (x)) != unsigned_type_node
5318 && TYPE_MAIN_VARIANT (TREE_TYPE (x)) != c_bool_type_node
5319 /* Accept an enum that's equivalent to int or unsigned int. */
5320 && !(TREE_CODE (TREE_TYPE (x)) == ENUMERAL_TYPE
5321 && (TYPE_PRECISION (TREE_TYPE (x))
5322 == TYPE_PRECISION (integer_type_node))))
5323 pedwarn_with_decl (x, "bit-field `%s' type invalid in ISO C");
5325 /* Detect and ignore out of range field width and process valid
5326 field widths. */
5327 if (DECL_INITIAL (x))
5329 int max_width;
5330 if (TYPE_MAIN_VARIANT (TREE_TYPE (x)) == c_bool_type_node)
5331 max_width = CHAR_TYPE_SIZE;
5332 else
5333 max_width = TYPE_PRECISION (TREE_TYPE (x));
5334 if (tree_int_cst_sgn (DECL_INITIAL (x)) < 0)
5335 error_with_decl (x, "negative width in bit-field `%s'");
5336 else if (0 < compare_tree_int (DECL_INITIAL (x), max_width))
5337 pedwarn_with_decl (x, "width of `%s' exceeds its type");
5338 else if (integer_zerop (DECL_INITIAL (x)) && DECL_NAME (x) != 0)
5339 error_with_decl (x, "zero width for bit-field `%s'");
5340 else
5342 /* The test above has assured us that TREE_INT_CST_HIGH is 0. */
5343 unsigned HOST_WIDE_INT width
5344 = TREE_INT_CST_LOW (DECL_INITIAL (x));
5346 if (TREE_CODE (TREE_TYPE (x)) == ENUMERAL_TYPE
5347 && (width < min_precision (TYPE_MIN_VALUE (TREE_TYPE (x)),
5348 TREE_UNSIGNED (TREE_TYPE (x)))
5349 || (width
5350 < min_precision (TYPE_MAX_VALUE (TREE_TYPE (x)),
5351 TREE_UNSIGNED (TREE_TYPE (x))))))
5352 warning_with_decl (x,
5353 "`%s' is narrower than values of its type");
5355 DECL_SIZE (x) = bitsize_int (width);
5356 DECL_BIT_FIELD (x) = 1;
5357 SET_DECL_C_BIT_FIELD (x);
5359 if (width == 0)
5361 /* field size 0 => force desired amount of alignment. */
5362 #ifdef EMPTY_FIELD_BOUNDARY
5363 DECL_ALIGN (x) = MAX (DECL_ALIGN (x), EMPTY_FIELD_BOUNDARY);
5364 #endif
5365 #ifdef PCC_BITFIELD_TYPE_MATTERS
5366 if (PCC_BITFIELD_TYPE_MATTERS)
5368 DECL_ALIGN (x) = MAX (DECL_ALIGN (x),
5369 TYPE_ALIGN (TREE_TYPE (x)));
5370 DECL_USER_ALIGN (x) |= TYPE_USER_ALIGN (TREE_TYPE (x));
5372 #endif
5377 else if (TREE_TYPE (x) != error_mark_node)
5379 unsigned int min_align = (DECL_PACKED (x) ? BITS_PER_UNIT
5380 : TYPE_ALIGN (TREE_TYPE (x)));
5382 /* Non-bit-fields are aligned for their type, except packed
5383 fields which require only BITS_PER_UNIT alignment. */
5384 DECL_ALIGN (x) = MAX (DECL_ALIGN (x), min_align);
5385 if (! DECL_PACKED (x))
5386 DECL_USER_ALIGN (x) |= TYPE_USER_ALIGN (TREE_TYPE (x));
5389 DECL_INITIAL (x) = 0;
5391 /* Detect flexible array member in an invalid context. */
5392 if (TREE_CODE (TREE_TYPE (x)) == ARRAY_TYPE
5393 && TYPE_SIZE (TREE_TYPE (x)) == NULL_TREE
5394 && TYPE_DOMAIN (TREE_TYPE (x)) != NULL_TREE
5395 && TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (x))) == NULL_TREE)
5397 if (TREE_CODE (t) == UNION_TYPE)
5398 error_with_decl (x, "flexible array member in union");
5399 else if (TREE_CHAIN (x) != NULL_TREE)
5400 error_with_decl (x, "flexible array member not at end of struct");
5401 else if (! saw_named_field)
5402 error_with_decl (x, "flexible array member in otherwise empty struct");
5404 if (DECL_NAME (x))
5405 saw_named_field = 1;
5408 /* Delete all duplicate fields from the fieldlist */
5409 for (x = fieldlist; x && TREE_CHAIN (x);)
5410 /* Anonymous fields aren't duplicates. */
5411 if (DECL_NAME (TREE_CHAIN (x)) == 0)
5412 x = TREE_CHAIN (x);
5413 else
5415 register tree y = fieldlist;
5417 while (1)
5419 if (DECL_NAME (y) == DECL_NAME (TREE_CHAIN (x)))
5420 break;
5421 if (y == x)
5422 break;
5423 y = TREE_CHAIN (y);
5425 if (DECL_NAME (y) == DECL_NAME (TREE_CHAIN (x)))
5427 error_with_decl (TREE_CHAIN (x), "duplicate member `%s'");
5428 TREE_CHAIN (x) = TREE_CHAIN (TREE_CHAIN (x));
5430 else
5431 x = TREE_CHAIN (x);
5434 /* Now we have the nearly final fieldlist. Record it,
5435 then lay out the structure or union (including the fields). */
5437 TYPE_FIELDS (t) = fieldlist;
5439 layout_type (t);
5441 /* Delete all zero-width bit-fields from the fieldlist */
5443 tree *fieldlistp = &fieldlist;
5444 while (*fieldlistp)
5445 if (TREE_CODE (*fieldlistp) == FIELD_DECL && DECL_INITIAL (*fieldlistp))
5446 *fieldlistp = TREE_CHAIN (*fieldlistp);
5447 else
5448 fieldlistp = &TREE_CHAIN (*fieldlistp);
5451 /* Now we have the truly final field list.
5452 Store it in this type and in the variants. */
5454 TYPE_FIELDS (t) = fieldlist;
5456 for (x = TYPE_MAIN_VARIANT (t); x; x = TYPE_NEXT_VARIANT (x))
5458 TYPE_FIELDS (x) = TYPE_FIELDS (t);
5459 TYPE_LANG_SPECIFIC (x) = TYPE_LANG_SPECIFIC (t);
5460 TYPE_ALIGN (x) = TYPE_ALIGN (t);
5461 TYPE_USER_ALIGN (x) = TYPE_USER_ALIGN (t);
5464 /* If this was supposed to be a transparent union, but we can't
5465 make it one, warn and turn off the flag. */
5466 if (TREE_CODE (t) == UNION_TYPE
5467 && TYPE_TRANSPARENT_UNION (t)
5468 && TYPE_MODE (t) != DECL_MODE (TYPE_FIELDS (t)))
5470 TYPE_TRANSPARENT_UNION (t) = 0;
5471 warning ("union cannot be made transparent");
5474 /* If this structure or union completes the type of any previous
5475 variable declaration, lay it out and output its rtl. */
5477 if (current_binding_level->n_incomplete != 0)
5479 tree decl;
5480 for (decl = current_binding_level->names; decl; decl = TREE_CHAIN (decl))
5482 if (TYPE_MAIN_VARIANT (TREE_TYPE (decl)) == TYPE_MAIN_VARIANT (t)
5483 && TREE_CODE (decl) != TYPE_DECL)
5485 layout_decl (decl, 0);
5486 /* This is a no-op in c-lang.c or something real in objc-actions.c. */
5487 maybe_objc_check_decl (decl);
5488 rest_of_decl_compilation (decl, NULL_PTR, toplevel, 0);
5489 if (! toplevel)
5490 expand_decl (decl);
5491 --current_binding_level->n_incomplete;
5493 else if (!COMPLETE_TYPE_P (TREE_TYPE (decl))
5494 && TREE_CODE (TREE_TYPE (decl)) == ARRAY_TYPE)
5496 tree element = TREE_TYPE (decl);
5497 while (TREE_CODE (element) == ARRAY_TYPE)
5498 element = TREE_TYPE (element);
5499 if (element == t)
5500 layout_array_type (TREE_TYPE (decl));
5505 /* Finish debugging output for this type. */
5506 rest_of_type_compilation (t, toplevel);
5508 return t;
5511 /* Lay out the type T, and its element type, and so on. */
5513 static void
5514 layout_array_type (t)
5515 tree t;
5517 if (TREE_CODE (TREE_TYPE (t)) == ARRAY_TYPE)
5518 layout_array_type (TREE_TYPE (t));
5519 layout_type (t);
5522 /* Begin compiling the definition of an enumeration type.
5523 NAME is its name (or null if anonymous).
5524 Returns the type object, as yet incomplete.
5525 Also records info about it so that build_enumerator
5526 may be used to declare the individual values as they are read. */
5528 tree
5529 start_enum (name)
5530 tree name;
5532 register tree enumtype = 0;
5534 /* If this is the real definition for a previous forward reference,
5535 fill in the contents in the same object that used to be the
5536 forward reference. */
5538 if (name != 0)
5539 enumtype = lookup_tag (ENUMERAL_TYPE, name, current_binding_level, 1);
5541 if (enumtype == 0 || TREE_CODE (enumtype) != ENUMERAL_TYPE)
5543 enumtype = make_node (ENUMERAL_TYPE);
5544 pushtag (name, enumtype);
5547 C_TYPE_BEING_DEFINED (enumtype) = 1;
5549 if (TYPE_VALUES (enumtype) != 0)
5551 /* This enum is a named one that has been declared already. */
5552 error ("redeclaration of `enum %s'", IDENTIFIER_POINTER (name));
5554 /* Completely replace its old definition.
5555 The old enumerators remain defined, however. */
5556 TYPE_VALUES (enumtype) = 0;
5559 enum_next_value = integer_zero_node;
5560 enum_overflow = 0;
5562 if (flag_short_enums)
5563 TYPE_PACKED (enumtype) = 1;
5565 return enumtype;
5568 /* After processing and defining all the values of an enumeration type,
5569 install their decls in the enumeration type and finish it off.
5570 ENUMTYPE is the type object, VALUES a list of decl-value pairs,
5571 and ATTRIBUTES are the specified attributes.
5572 Returns ENUMTYPE. */
5574 tree
5575 finish_enum (enumtype, values, attributes)
5576 tree enumtype;
5577 tree values;
5578 tree attributes;
5580 register tree pair, tem;
5581 tree minnode = 0, maxnode = 0, enum_value_type;
5582 int precision, unsign;
5583 int toplevel = (global_binding_level == current_binding_level);
5585 if (in_parm_level_p ())
5586 warning ("enum defined inside parms");
5588 decl_attributes (enumtype, attributes, NULL_TREE);
5590 /* Calculate the maximum value of any enumerator in this type. */
5592 if (values == error_mark_node)
5593 minnode = maxnode = integer_zero_node;
5594 else
5596 minnode = maxnode = TREE_VALUE (values);
5597 for (pair = TREE_CHAIN (values); pair; pair = TREE_CHAIN (pair))
5599 tree value = TREE_VALUE (pair);
5600 if (tree_int_cst_lt (maxnode, value))
5601 maxnode = value;
5602 if (tree_int_cst_lt (value, minnode))
5603 minnode = value;
5607 /* Construct the final type of this enumeration. It is the same
5608 as one of the integral types - the narrowest one that fits, except
5609 that normally we only go as narrow as int - and signed iff any of
5610 the values are negative. */
5611 unsign = (tree_int_cst_sgn (minnode) >= 0);
5612 precision = MAX (min_precision (minnode, unsign),
5613 min_precision (maxnode, unsign));
5614 if (TYPE_PACKED (enumtype) || precision > TYPE_PRECISION (integer_type_node))
5616 tree narrowest = type_for_size (precision, unsign);
5617 if (narrowest == 0)
5619 warning ("enumeration values exceed range of largest integer");
5620 narrowest = long_long_integer_type_node;
5623 precision = TYPE_PRECISION (narrowest);
5625 else
5626 precision = TYPE_PRECISION (integer_type_node);
5628 if (precision == TYPE_PRECISION (integer_type_node))
5629 enum_value_type = type_for_size (precision, 0);
5630 else
5631 enum_value_type = enumtype;
5633 TYPE_MIN_VALUE (enumtype) = minnode;
5634 TYPE_MAX_VALUE (enumtype) = maxnode;
5635 TYPE_PRECISION (enumtype) = precision;
5636 TREE_UNSIGNED (enumtype) = unsign;
5637 TYPE_SIZE (enumtype) = 0;
5638 layout_type (enumtype);
5640 if (values != error_mark_node)
5642 /* Change the type of the enumerators to be the enum type. We
5643 need to do this irrespective of the size of the enum, for
5644 proper type checking. Replace the DECL_INITIALs of the
5645 enumerators, and the value slots of the list, with copies
5646 that have the enum type; they cannot be modified in place
5647 because they may be shared (e.g. integer_zero_node) Finally,
5648 change the purpose slots to point to the names of the decls. */
5649 for (pair = values; pair; pair = TREE_CHAIN (pair))
5651 tree enu = TREE_PURPOSE (pair);
5653 TREE_TYPE (enu) = enumtype;
5654 DECL_SIZE (enu) = TYPE_SIZE (enumtype);
5655 DECL_SIZE_UNIT (enu) = TYPE_SIZE_UNIT (enumtype);
5656 DECL_ALIGN (enu) = TYPE_ALIGN (enumtype);
5657 DECL_USER_ALIGN (enu) = TYPE_USER_ALIGN (enumtype);
5658 DECL_MODE (enu) = TYPE_MODE (enumtype);
5660 /* The ISO C Standard mandates enumerators to have type int,
5661 even though the underlying type of an enum type is
5662 unspecified. Here we convert any enumerators that fit in
5663 an int to type int, to avoid promotions to unsigned types
5664 when comparing integers with enumerators that fit in the
5665 int range. When -pedantic is given, build_enumerator()
5666 would have already taken care of those that don't fit. */
5667 if (int_fits_type_p (DECL_INITIAL (enu), enum_value_type))
5668 DECL_INITIAL (enu) = convert (enum_value_type, DECL_INITIAL (enu));
5669 else
5670 DECL_INITIAL (enu) = convert (enumtype, DECL_INITIAL (enu));
5672 TREE_PURPOSE (pair) = DECL_NAME (enu);
5673 TREE_VALUE (pair) = DECL_INITIAL (enu);
5676 TYPE_VALUES (enumtype) = values;
5679 /* Fix up all variant types of this enum type. */
5680 for (tem = TYPE_MAIN_VARIANT (enumtype); tem; tem = TYPE_NEXT_VARIANT (tem))
5682 if (tem == enumtype)
5683 continue;
5684 TYPE_VALUES (tem) = TYPE_VALUES (enumtype);
5685 TYPE_MIN_VALUE (tem) = TYPE_MIN_VALUE (enumtype);
5686 TYPE_MAX_VALUE (tem) = TYPE_MAX_VALUE (enumtype);
5687 TYPE_SIZE (tem) = TYPE_SIZE (enumtype);
5688 TYPE_SIZE_UNIT (tem) = TYPE_SIZE_UNIT (enumtype);
5689 TYPE_MODE (tem) = TYPE_MODE (enumtype);
5690 TYPE_PRECISION (tem) = TYPE_PRECISION (enumtype);
5691 TYPE_ALIGN (tem) = TYPE_ALIGN (enumtype);
5692 TYPE_USER_ALIGN (tem) = TYPE_USER_ALIGN (enumtype);
5693 TREE_UNSIGNED (tem) = TREE_UNSIGNED (enumtype);
5696 /* Finish debugging output for this type. */
5697 rest_of_type_compilation (enumtype, toplevel);
5699 return enumtype;
5702 /* Build and install a CONST_DECL for one value of the
5703 current enumeration type (one that was begun with start_enum).
5704 Return a tree-list containing the CONST_DECL and its value.
5705 Assignment of sequential values by default is handled here. */
5707 tree
5708 build_enumerator (name, value)
5709 tree name, value;
5711 register tree decl, type;
5713 /* Validate and default VALUE. */
5715 /* Remove no-op casts from the value. */
5716 if (value)
5717 STRIP_TYPE_NOPS (value);
5719 if (value != 0)
5721 if (TREE_CODE (value) == INTEGER_CST)
5723 value = default_conversion (value);
5724 constant_expression_warning (value);
5726 else
5728 error ("enumerator value for `%s' not integer constant",
5729 IDENTIFIER_POINTER (name));
5730 value = 0;
5734 /* Default based on previous value. */
5735 /* It should no longer be possible to have NON_LVALUE_EXPR
5736 in the default. */
5737 if (value == 0)
5739 value = enum_next_value;
5740 if (enum_overflow)
5741 error ("overflow in enumeration values");
5744 if (pedantic && ! int_fits_type_p (value, integer_type_node))
5746 pedwarn ("ISO C restricts enumerator values to range of `int'");
5747 value = convert (integer_type_node, value);
5750 /* Set basis for default for next value. */
5751 enum_next_value = build_binary_op (PLUS_EXPR, value, integer_one_node, 0);
5752 enum_overflow = tree_int_cst_lt (enum_next_value, value);
5754 /* Now create a declaration for the enum value name. */
5756 type = TREE_TYPE (value);
5757 type = type_for_size (MAX (TYPE_PRECISION (type),
5758 TYPE_PRECISION (integer_type_node)),
5759 ((flag_traditional
5760 || TYPE_PRECISION (type) >= TYPE_PRECISION (integer_type_node))
5761 && TREE_UNSIGNED (type)));
5763 decl = build_decl (CONST_DECL, name, type);
5764 DECL_INITIAL (decl) = convert (type, value);
5765 pushdecl (decl);
5767 return tree_cons (decl, value, NULL_TREE);
5771 /* Create the FUNCTION_DECL for a function definition.
5772 DECLSPECS, DECLARATOR, PREFIX_ATTRIBUTES and ATTRIBUTES are the parts of
5773 the declaration; they describe the function's name and the type it returns,
5774 but twisted together in a fashion that parallels the syntax of C.
5776 This function creates a binding context for the function body
5777 as well as setting up the FUNCTION_DECL in current_function_decl.
5779 Returns 1 on success. If the DECLARATOR is not suitable for a function
5780 (it defines a datum instead), we return 0, which tells
5781 yyparse to report a parse error. */
5784 start_function (declspecs, declarator, prefix_attributes, attributes)
5785 tree declarator, declspecs, prefix_attributes, attributes;
5787 tree decl1, old_decl;
5788 tree restype;
5789 int old_immediate_size_expand = immediate_size_expand;
5791 current_function_returns_value = 0; /* Assume, until we see it does. */
5792 current_function_returns_null = 0;
5793 warn_about_return_type = 0;
5794 current_extern_inline = 0;
5795 c_function_varargs = 0;
5796 named_labels = 0;
5797 shadowed_labels = 0;
5799 /* Don't expand any sizes in the return type of the function. */
5800 immediate_size_expand = 0;
5802 decl1 = grokdeclarator (declarator, declspecs, FUNCDEF, 1);
5804 /* If the declarator is not suitable for a function definition,
5805 cause a syntax error. */
5806 if (decl1 == 0)
5808 immediate_size_expand = old_immediate_size_expand;
5809 return 0;
5812 decl_attributes (decl1, prefix_attributes, attributes);
5814 announce_function (decl1);
5816 if (!COMPLETE_OR_VOID_TYPE_P (TREE_TYPE (TREE_TYPE (decl1))))
5818 error ("return type is an incomplete type");
5819 /* Make it return void instead. */
5820 TREE_TYPE (decl1)
5821 = build_function_type (void_type_node,
5822 TYPE_ARG_TYPES (TREE_TYPE (decl1)));
5825 if (warn_about_return_type)
5826 pedwarn_c99 ("return type defaults to `int'");
5828 /* Save the parm names or decls from this function's declarator
5829 where store_parm_decls will find them. */
5830 current_function_parms = last_function_parms;
5831 current_function_parm_tags = last_function_parm_tags;
5833 /* Make the init_value nonzero so pushdecl knows this is not tentative.
5834 error_mark_node is replaced below (in poplevel) with the BLOCK. */
5835 DECL_INITIAL (decl1) = error_mark_node;
5837 /* If this definition isn't a prototype and we had a prototype declaration
5838 before, copy the arg type info from that prototype.
5839 But not if what we had before was a builtin function. */
5840 old_decl = lookup_name_current_level (DECL_NAME (decl1));
5841 if (old_decl != 0 && TREE_CODE (TREE_TYPE (old_decl)) == FUNCTION_TYPE
5842 && !DECL_BUILT_IN (old_decl)
5843 && (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (decl1)))
5844 == TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (old_decl))))
5845 && TYPE_ARG_TYPES (TREE_TYPE (decl1)) == 0)
5847 TREE_TYPE (decl1) = TREE_TYPE (old_decl);
5848 current_function_prototype_file = DECL_SOURCE_FILE (old_decl);
5849 current_function_prototype_line = DECL_SOURCE_LINE (old_decl);
5852 /* If there is no explicit declaration, look for any out-of-scope implicit
5853 declarations. */
5854 if (old_decl == 0)
5855 old_decl = IDENTIFIER_IMPLICIT_DECL (DECL_NAME (decl1));
5857 /* Optionally warn of old-fashioned def with no previous prototype. */
5858 if (warn_strict_prototypes
5859 && TYPE_ARG_TYPES (TREE_TYPE (decl1)) == 0
5860 && !(old_decl != 0
5861 && (TYPE_ARG_TYPES (TREE_TYPE (old_decl)) != 0
5862 || (DECL_BUILT_IN (old_decl)
5863 && ! C_DECL_ANTICIPATED (old_decl)))))
5864 warning ("function declaration isn't a prototype");
5865 /* Optionally warn of any global def with no previous prototype. */
5866 else if (warn_missing_prototypes
5867 && TREE_PUBLIC (decl1)
5868 && !(old_decl != 0
5869 && (TYPE_ARG_TYPES (TREE_TYPE (old_decl)) != 0
5870 || (DECL_BUILT_IN (old_decl)
5871 && ! C_DECL_ANTICIPATED (old_decl))))
5872 && ! MAIN_NAME_P (DECL_NAME (decl1)))
5873 warning_with_decl (decl1, "no previous prototype for `%s'");
5874 /* Optionally warn of any def with no previous prototype
5875 if the function has already been used. */
5876 else if (warn_missing_prototypes
5877 && old_decl != 0 && TREE_USED (old_decl)
5878 && TYPE_ARG_TYPES (TREE_TYPE (old_decl)) == 0)
5879 warning_with_decl (decl1,
5880 "`%s' was used with no prototype before its definition");
5881 /* Optionally warn of any global def with no previous declaration. */
5882 else if (warn_missing_declarations
5883 && TREE_PUBLIC (decl1)
5884 && old_decl == 0
5885 && ! MAIN_NAME_P (DECL_NAME (decl1)))
5886 warning_with_decl (decl1, "no previous declaration for `%s'");
5887 /* Optionally warn of any def with no previous declaration
5888 if the function has already been used. */
5889 else if (warn_missing_declarations
5890 && old_decl != 0 && TREE_USED (old_decl)
5891 && old_decl == IDENTIFIER_IMPLICIT_DECL (DECL_NAME (decl1)))
5892 warning_with_decl (decl1,
5893 "`%s' was used with no declaration before its definition");
5895 /* This is a definition, not a reference.
5896 So normally clear DECL_EXTERNAL.
5897 However, `extern inline' acts like a declaration
5898 except for defining how to inline. So set DECL_EXTERNAL in that case. */
5899 DECL_EXTERNAL (decl1) = current_extern_inline;
5901 #ifdef SET_DEFAULT_DECL_ATTRIBUTES
5902 SET_DEFAULT_DECL_ATTRIBUTES (decl1, attributes);
5903 #endif
5905 /* This function exists in static storage.
5906 (This does not mean `static' in the C sense!) */
5907 TREE_STATIC (decl1) = 1;
5909 /* A nested function is not global. */
5910 if (current_function_decl != 0)
5911 TREE_PUBLIC (decl1) = 0;
5913 /* Warn for unlikely, improbable, or stupid declarations of `main'. */
5914 if (warn_main > 0 && MAIN_NAME_P (DECL_NAME (decl1)))
5916 tree args;
5917 int argct = 0;
5919 if (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (decl1)))
5920 != integer_type_node)
5921 pedwarn_with_decl (decl1, "return type of `%s' is not `int'");
5923 for (args = TYPE_ARG_TYPES (TREE_TYPE (decl1)); args;
5924 args = TREE_CHAIN (args))
5926 tree type = args ? TREE_VALUE (args) : 0;
5928 if (type == void_type_node)
5929 break;
5931 ++argct;
5932 switch (argct)
5934 case 1:
5935 if (TYPE_MAIN_VARIANT (type) != integer_type_node)
5936 pedwarn_with_decl (decl1,
5937 "first argument of `%s' should be `int'");
5938 break;
5940 case 2:
5941 if (TREE_CODE (type) != POINTER_TYPE
5942 || TREE_CODE (TREE_TYPE (type)) != POINTER_TYPE
5943 || (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (type)))
5944 != char_type_node))
5945 pedwarn_with_decl (decl1,
5946 "second argument of `%s' should be `char **'");
5947 break;
5949 case 3:
5950 if (TREE_CODE (type) != POINTER_TYPE
5951 || TREE_CODE (TREE_TYPE (type)) != POINTER_TYPE
5952 || (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (type)))
5953 != char_type_node))
5954 pedwarn_with_decl (decl1,
5955 "third argument of `%s' should probably be `char **'");
5956 break;
5960 /* It is intentional that this message does not mention the third
5961 argument because it's only mentioned in an appendix of the
5962 standard. */
5963 if (argct > 0 && (argct < 2 || argct > 3))
5964 pedwarn_with_decl (decl1, "`%s' takes only zero or two arguments");
5966 if (! TREE_PUBLIC (decl1))
5967 pedwarn_with_decl (decl1, "`%s' is normally a non-static function");
5970 /* Record the decl so that the function name is defined.
5971 If we already have a decl for this name, and it is a FUNCTION_DECL,
5972 use the old decl. */
5974 current_function_decl = pushdecl (decl1);
5976 pushlevel (0);
5977 declare_parm_level (1);
5978 current_binding_level->subblocks_tag_transparent = 1;
5980 make_decl_rtl (current_function_decl, NULL);
5982 restype = TREE_TYPE (TREE_TYPE (current_function_decl));
5983 /* Promote the value to int before returning it. */
5984 if (C_PROMOTING_INTEGER_TYPE_P (restype))
5986 /* It retains unsignedness if traditional
5987 or if not really getting wider. */
5988 if (TREE_UNSIGNED (restype)
5989 && (flag_traditional
5990 || (TYPE_PRECISION (restype)
5991 == TYPE_PRECISION (integer_type_node))))
5992 restype = unsigned_type_node;
5993 else
5994 restype = integer_type_node;
5996 DECL_RESULT (current_function_decl)
5997 = build_decl (RESULT_DECL, NULL_TREE, restype);
5999 /* If this fcn was already referenced via a block-scope `extern' decl
6000 (or an implicit decl), propagate certain information about the usage. */
6001 if (TREE_ADDRESSABLE (DECL_ASSEMBLER_NAME (current_function_decl)))
6002 TREE_ADDRESSABLE (current_function_decl) = 1;
6004 immediate_size_expand = old_immediate_size_expand;
6006 return 1;
6009 /* Record that this function is going to be a varargs function.
6010 This is called before store_parm_decls, which is too early
6011 to call mark_varargs directly. */
6013 void
6014 c_mark_varargs ()
6016 c_function_varargs = 1;
6019 /* Store the parameter declarations into the current function declaration.
6020 This is called after parsing the parameter declarations, before
6021 digesting the body of the function.
6023 For an old-style definition, modify the function's type
6024 to specify at least the number of arguments. */
6026 void
6027 store_parm_decls ()
6029 register tree fndecl = current_function_decl;
6030 register tree parm;
6032 /* This is either a chain of PARM_DECLs (if a prototype was used)
6033 or a list of IDENTIFIER_NODEs (for an old-fashioned C definition). */
6034 tree specparms = current_function_parms;
6036 /* This is a list of types declared among parms in a prototype. */
6037 tree parmtags = current_function_parm_tags;
6039 /* This is a chain of PARM_DECLs from old-style parm declarations. */
6040 register tree parmdecls = getdecls ();
6042 /* This is a chain of any other decls that came in among the parm
6043 declarations. If a parm is declared with enum {foo, bar} x;
6044 then CONST_DECLs for foo and bar are put here. */
6045 tree nonparms = 0;
6047 /* Nonzero if this definition is written with a prototype. */
6048 int prototype = 0;
6050 if (specparms != 0 && TREE_CODE (specparms) != TREE_LIST)
6052 /* This case is when the function was defined with an ANSI prototype.
6053 The parms already have decls, so we need not do anything here
6054 except record them as in effect
6055 and complain if any redundant old-style parm decls were written. */
6057 register tree next;
6058 tree others = 0;
6060 prototype = 1;
6062 if (parmdecls != 0)
6064 tree decl, link;
6066 error_with_decl (fndecl,
6067 "parm types given both in parmlist and separately");
6068 /* Get rid of the erroneous decls; don't keep them on
6069 the list of parms, since they might not be PARM_DECLs. */
6070 for (decl = current_binding_level->names;
6071 decl; decl = TREE_CHAIN (decl))
6072 if (DECL_NAME (decl))
6073 IDENTIFIER_LOCAL_VALUE (DECL_NAME (decl)) = 0;
6074 for (link = current_binding_level->shadowed;
6075 link; link = TREE_CHAIN (link))
6076 IDENTIFIER_LOCAL_VALUE (TREE_PURPOSE (link)) = TREE_VALUE (link);
6077 current_binding_level->names = 0;
6078 current_binding_level->shadowed = 0;
6081 specparms = nreverse (specparms);
6082 for (parm = specparms; parm; parm = next)
6084 next = TREE_CHAIN (parm);
6085 if (TREE_CODE (parm) == PARM_DECL)
6087 if (DECL_NAME (parm) == 0)
6088 error_with_decl (parm, "parameter name omitted");
6089 else if (TREE_CODE (TREE_TYPE (parm)) != ERROR_MARK
6090 && VOID_TYPE_P (TREE_TYPE (parm)))
6092 error_with_decl (parm, "parameter `%s' declared void");
6093 /* Change the type to error_mark_node so this parameter
6094 will be ignored by assign_parms. */
6095 TREE_TYPE (parm) = error_mark_node;
6097 pushdecl (parm);
6099 else
6101 /* If we find an enum constant or a type tag,
6102 put it aside for the moment. */
6103 TREE_CHAIN (parm) = 0;
6104 others = chainon (others, parm);
6108 /* Get the decls in their original chain order
6109 and record in the function. */
6110 DECL_ARGUMENTS (fndecl) = getdecls ();
6112 #if 0
6113 /* If this function takes a variable number of arguments,
6114 add a phony parameter to the end of the parm list,
6115 to represent the position of the first unnamed argument. */
6116 if (TREE_VALUE (tree_last (TYPE_ARG_TYPES (TREE_TYPE (fndecl))))
6117 != void_type_node)
6119 tree dummy = build_decl (PARM_DECL, NULL_TREE, void_type_node);
6120 /* Let's hope the address of the unnamed parm
6121 won't depend on its type. */
6122 TREE_TYPE (dummy) = integer_type_node;
6123 DECL_ARG_TYPE (dummy) = integer_type_node;
6124 DECL_ARGUMENTS (fndecl) = chainon (DECL_ARGUMENTS (fndecl), dummy);
6126 #endif
6128 /* Now pushdecl the enum constants. */
6129 for (parm = others; parm; parm = next)
6131 next = TREE_CHAIN (parm);
6132 if (DECL_NAME (parm) == 0)
6134 else if (TYPE_MAIN_VARIANT (TREE_TYPE (parm)) == void_type_node)
6136 else if (TREE_CODE (parm) != PARM_DECL)
6137 pushdecl (parm);
6140 storetags (chainon (parmtags, gettags ()));
6142 else
6144 /* SPECPARMS is an identifier list--a chain of TREE_LIST nodes
6145 each with a parm name as the TREE_VALUE.
6147 PARMDECLS is a chain of declarations for parameters.
6148 Warning! It can also contain CONST_DECLs which are not parameters
6149 but are names of enumerators of any enum types
6150 declared among the parameters.
6152 First match each formal parameter name with its declaration.
6153 Associate decls with the names and store the decls
6154 into the TREE_PURPOSE slots. */
6156 /* We use DECL_WEAK as a flag to show which parameters have been
6157 seen already since it is not used on PARM_DECL or CONST_DECL. */
6158 for (parm = parmdecls; parm; parm = TREE_CHAIN (parm))
6159 DECL_WEAK (parm) = 0;
6161 for (parm = specparms; parm; parm = TREE_CHAIN (parm))
6163 register tree tail, found = NULL;
6165 if (TREE_VALUE (parm) == 0)
6167 error_with_decl (fndecl,
6168 "parameter name missing from parameter list");
6169 TREE_PURPOSE (parm) = 0;
6170 continue;
6173 /* See if any of the parmdecls specifies this parm by name.
6174 Ignore any enumerator decls. */
6175 for (tail = parmdecls; tail; tail = TREE_CHAIN (tail))
6176 if (DECL_NAME (tail) == TREE_VALUE (parm)
6177 && TREE_CODE (tail) == PARM_DECL)
6179 found = tail;
6180 break;
6183 /* If declaration already marked, we have a duplicate name.
6184 Complain, and don't use this decl twice. */
6185 if (found && DECL_WEAK (found))
6187 error_with_decl (found, "multiple parameters named `%s'");
6188 found = 0;
6191 /* If the declaration says "void", complain and ignore it. */
6192 if (found && VOID_TYPE_P (TREE_TYPE (found)))
6194 error_with_decl (found, "parameter `%s' declared void");
6195 TREE_TYPE (found) = integer_type_node;
6196 DECL_ARG_TYPE (found) = integer_type_node;
6197 layout_decl (found, 0);
6200 /* Traditionally, a parm declared float is actually a double. */
6201 if (found && flag_traditional
6202 && TYPE_MAIN_VARIANT (TREE_TYPE (found)) == float_type_node)
6204 TREE_TYPE (found) = double_type_node;
6205 DECL_ARG_TYPE (found) = double_type_node;
6206 layout_decl (found, 0);
6209 /* If no declaration found, default to int. */
6210 if (!found)
6212 found = build_decl (PARM_DECL, TREE_VALUE (parm),
6213 integer_type_node);
6214 DECL_ARG_TYPE (found) = TREE_TYPE (found);
6215 DECL_SOURCE_LINE (found) = DECL_SOURCE_LINE (fndecl);
6216 DECL_SOURCE_FILE (found) = DECL_SOURCE_FILE (fndecl);
6217 if (flag_isoc99)
6218 pedwarn_with_decl (found, "type of `%s' defaults to `int'");
6219 else if (extra_warnings)
6220 warning_with_decl (found, "type of `%s' defaults to `int'");
6221 pushdecl (found);
6224 TREE_PURPOSE (parm) = found;
6226 /* Mark this decl as "already found". */
6227 DECL_WEAK (found) = 1;
6230 /* Put anything which is on the parmdecls chain and which is
6231 not a PARM_DECL onto the list NONPARMS. (The types of
6232 non-parm things which might appear on the list include
6233 enumerators and NULL-named TYPE_DECL nodes.) Complain about
6234 any actual PARM_DECLs not matched with any names. */
6236 nonparms = 0;
6237 for (parm = parmdecls; parm;)
6239 tree next = TREE_CHAIN (parm);
6240 TREE_CHAIN (parm) = 0;
6242 if (TREE_CODE (parm) != PARM_DECL)
6243 nonparms = chainon (nonparms, parm);
6244 else
6246 /* Complain about args with incomplete types. */
6247 if (!COMPLETE_TYPE_P (TREE_TYPE (parm)))
6249 error_with_decl (parm, "parameter `%s' has incomplete type");
6250 TREE_TYPE (parm) = error_mark_node;
6253 if (! DECL_WEAK (parm))
6255 error_with_decl (parm,
6256 "declaration for parameter `%s' but no such parameter");
6257 /* Pretend the parameter was not missing.
6258 This gets us to a standard state and minimizes
6259 further error messages. */
6260 specparms
6261 = chainon (specparms,
6262 tree_cons (parm, NULL_TREE, NULL_TREE));
6266 parm = next;
6269 /* Chain the declarations together in the order of the list of
6270 names. Store that chain in the function decl, replacing the
6271 list of names. */
6272 parm = specparms;
6273 DECL_ARGUMENTS (fndecl) = 0;
6275 register tree last;
6276 for (last = 0; parm; parm = TREE_CHAIN (parm))
6277 if (TREE_PURPOSE (parm))
6279 if (last == 0)
6280 DECL_ARGUMENTS (fndecl) = TREE_PURPOSE (parm);
6281 else
6282 TREE_CHAIN (last) = TREE_PURPOSE (parm);
6283 last = TREE_PURPOSE (parm);
6284 TREE_CHAIN (last) = 0;
6288 /* If there was a previous prototype,
6289 set the DECL_ARG_TYPE of each argument according to
6290 the type previously specified, and report any mismatches. */
6292 if (TYPE_ARG_TYPES (TREE_TYPE (fndecl)))
6294 register tree type;
6295 for (parm = DECL_ARGUMENTS (fndecl),
6296 type = TYPE_ARG_TYPES (TREE_TYPE (fndecl));
6297 parm || (type && (TYPE_MAIN_VARIANT (TREE_VALUE (type))
6298 != void_type_node));
6299 parm = TREE_CHAIN (parm), type = TREE_CHAIN (type))
6301 if (parm == 0 || type == 0
6302 || TYPE_MAIN_VARIANT (TREE_VALUE (type)) == void_type_node)
6304 error ("number of arguments doesn't match prototype");
6305 error_with_file_and_line (current_function_prototype_file,
6306 current_function_prototype_line,
6307 "prototype declaration");
6308 break;
6310 /* Type for passing arg must be consistent
6311 with that declared for the arg. */
6312 if (! comptypes (DECL_ARG_TYPE (parm), TREE_VALUE (type)))
6314 if (TYPE_MAIN_VARIANT (TREE_TYPE (parm))
6315 == TYPE_MAIN_VARIANT (TREE_VALUE (type)))
6317 /* Adjust argument to match prototype. E.g. a previous
6318 `int foo(float);' prototype causes
6319 `int foo(x) float x; {...}' to be treated like
6320 `int foo(float x) {...}'. This is particularly
6321 useful for argument types like uid_t. */
6322 DECL_ARG_TYPE (parm) = TREE_TYPE (parm);
6324 if (PROMOTE_PROTOTYPES
6325 && (TREE_CODE (TREE_TYPE (parm)) == INTEGER_TYPE
6326 || TREE_CODE (TREE_TYPE (parm)) == ENUMERAL_TYPE)
6327 && TYPE_PRECISION (TREE_TYPE (parm))
6328 < TYPE_PRECISION (integer_type_node))
6329 DECL_ARG_TYPE (parm) = integer_type_node;
6331 if (pedantic)
6333 pedwarn ("promoted argument `%s' doesn't match prototype",
6334 IDENTIFIER_POINTER (DECL_NAME (parm)));
6335 warning_with_file_and_line
6336 (current_function_prototype_file,
6337 current_function_prototype_line,
6338 "prototype declaration");
6341 /* If -traditional, allow `int' argument to match
6342 `unsigned' prototype. */
6343 else if (! (flag_traditional
6344 && TYPE_MAIN_VARIANT (TREE_TYPE (parm)) == integer_type_node
6345 && TYPE_MAIN_VARIANT (TREE_VALUE (type)) == unsigned_type_node))
6347 error ("argument `%s' doesn't match prototype",
6348 IDENTIFIER_POINTER (DECL_NAME (parm)));
6349 error_with_file_and_line (current_function_prototype_file,
6350 current_function_prototype_line,
6351 "prototype declaration");
6355 TYPE_ACTUAL_ARG_TYPES (TREE_TYPE (fndecl)) = 0;
6358 /* Otherwise, create a prototype that would match. */
6360 else
6362 tree actual = 0, last = 0, type;
6364 for (parm = DECL_ARGUMENTS (fndecl); parm; parm = TREE_CHAIN (parm))
6366 type = tree_cons (NULL_TREE, DECL_ARG_TYPE (parm), NULL_TREE);
6367 if (last)
6368 TREE_CHAIN (last) = type;
6369 else
6370 actual = type;
6371 last = type;
6373 type = tree_cons (NULL_TREE, void_type_node, NULL_TREE);
6374 if (last)
6375 TREE_CHAIN (last) = type;
6376 else
6377 actual = type;
6379 /* We are going to assign a new value for the TYPE_ACTUAL_ARG_TYPES
6380 of the type of this function, but we need to avoid having this
6381 affect the types of other similarly-typed functions, so we must
6382 first force the generation of an identical (but separate) type
6383 node for the relevant function type. The new node we create
6384 will be a variant of the main variant of the original function
6385 type. */
6387 TREE_TYPE (fndecl) = build_type_copy (TREE_TYPE (fndecl));
6389 TYPE_ACTUAL_ARG_TYPES (TREE_TYPE (fndecl)) = actual;
6392 /* Now store the final chain of decls for the arguments
6393 as the decl-chain of the current lexical scope.
6394 Put the enumerators in as well, at the front so that
6395 DECL_ARGUMENTS is not modified. */
6397 storedecls (chainon (nonparms, DECL_ARGUMENTS (fndecl)));
6400 /* Make sure the binding level for the top of the function body
6401 gets a BLOCK if there are any in the function.
6402 Otherwise, the dbx output is wrong. */
6404 keep_next_if_subblocks = 1;
6406 /* ??? This might be an improvement,
6407 but needs to be thought about some more. */
6408 #if 0
6409 keep_next_level_flag = 1;
6410 #endif
6412 /* Write a record describing this function definition to the prototypes
6413 file (if requested). */
6415 gen_aux_info_record (fndecl, 1, 0, prototype);
6417 /* Initialize the RTL code for the function. */
6419 init_function_start (fndecl, input_filename, lineno);
6421 /* Begin the statement tree for this function. */
6422 DECL_LANG_SPECIFIC (current_function_decl)
6423 =((struct lang_decl *) ggc_alloc (sizeof (struct lang_decl)));
6424 begin_stmt_tree (&DECL_SAVED_TREE (current_function_decl));
6426 /* This function is being processed in whole-function mode. */
6427 cfun->x_whole_function_mode_p = 1;
6429 /* Even though we're inside a function body, we still don't want to
6430 call expand_expr to calculate the size of a variable-sized array.
6431 We haven't necessarily assigned RTL to all variables yet, so it's
6432 not safe to try to expand expressions involving them. */
6433 immediate_size_expand = 0;
6434 cfun->x_dont_save_pending_sizes_p = 1;
6437 /* SPECPARMS is an identifier list--a chain of TREE_LIST nodes
6438 each with a parm name as the TREE_VALUE. A null pointer as TREE_VALUE
6439 stands for an ellipsis in the identifier list.
6441 PARMLIST is the data returned by get_parm_info for the
6442 parmlist that follows the semicolon.
6444 We return a value of the same sort that get_parm_info returns,
6445 except that it describes the combination of identifiers and parmlist. */
6447 tree
6448 combine_parm_decls (specparms, parmlist, void_at_end)
6449 tree specparms, parmlist;
6450 int void_at_end;
6452 register tree fndecl = current_function_decl;
6453 register tree parm;
6455 tree parmdecls = TREE_PURPOSE (parmlist);
6457 /* This is a chain of any other decls that came in among the parm
6458 declarations. They were separated already by get_parm_info,
6459 so we just need to keep them separate. */
6460 tree nonparms = TREE_VALUE (parmlist);
6462 tree types = 0;
6464 for (parm = parmdecls; parm; parm = TREE_CHAIN (parm))
6465 DECL_WEAK (parm) = 0;
6467 for (parm = specparms; parm; parm = TREE_CHAIN (parm))
6469 register tree tail, found = NULL;
6471 /* See if any of the parmdecls specifies this parm by name. */
6472 for (tail = parmdecls; tail; tail = TREE_CHAIN (tail))
6473 if (DECL_NAME (tail) == TREE_VALUE (parm))
6475 found = tail;
6476 break;
6479 /* If declaration already marked, we have a duplicate name.
6480 Complain, and don't use this decl twice. */
6481 if (found && DECL_WEAK (found))
6483 error_with_decl (found, "multiple parameters named `%s'");
6484 found = 0;
6487 /* If the declaration says "void", complain and ignore it. */
6488 if (found && VOID_TYPE_P (TREE_TYPE (found)))
6490 error_with_decl (found, "parameter `%s' declared void");
6491 TREE_TYPE (found) = integer_type_node;
6492 DECL_ARG_TYPE (found) = integer_type_node;
6493 layout_decl (found, 0);
6496 /* Traditionally, a parm declared float is actually a double. */
6497 if (found && flag_traditional
6498 && TYPE_MAIN_VARIANT (TREE_TYPE (found)) == float_type_node)
6500 TREE_TYPE (found) = double_type_node;
6501 DECL_ARG_TYPE (found) = double_type_node;
6502 layout_decl (found, 0);
6505 /* If no declaration found, default to int. */
6506 if (!found)
6508 found = build_decl (PARM_DECL, TREE_VALUE (parm),
6509 integer_type_node);
6510 DECL_ARG_TYPE (found) = TREE_TYPE (found);
6511 DECL_SOURCE_LINE (found) = DECL_SOURCE_LINE (fndecl);
6512 DECL_SOURCE_FILE (found) = DECL_SOURCE_FILE (fndecl);
6513 error_with_decl (found, "type of parameter `%s' is not declared");
6514 pushdecl (found);
6517 TREE_PURPOSE (parm) = found;
6519 /* Mark this decl as "already found". */
6520 DECL_WEAK (found) = 1;
6523 /* Complain about any actual PARM_DECLs not matched with any names. */
6525 for (parm = parmdecls; parm;)
6527 tree next = TREE_CHAIN (parm);
6528 TREE_CHAIN (parm) = 0;
6530 /* Complain about args with incomplete types. */
6531 if (!COMPLETE_TYPE_P (TREE_TYPE (parm)))
6533 error_with_decl (parm, "parameter `%s' has incomplete type");
6534 TREE_TYPE (parm) = error_mark_node;
6537 if (! DECL_WEAK (parm))
6539 error_with_decl (parm,
6540 "declaration for parameter `%s' but no such parameter");
6541 /* Pretend the parameter was not missing.
6542 This gets us to a standard state and minimizes
6543 further error messages. */
6544 specparms
6545 = chainon (specparms,
6546 tree_cons (parm, NULL_TREE, NULL_TREE));
6549 parm = next;
6552 /* Chain the declarations together in the order of the list of names.
6553 At the same time, build up a list of their types, in reverse order. */
6555 parm = specparms;
6556 parmdecls = 0;
6558 register tree last;
6559 for (last = 0; parm; parm = TREE_CHAIN (parm))
6560 if (TREE_PURPOSE (parm))
6562 if (last == 0)
6563 parmdecls = TREE_PURPOSE (parm);
6564 else
6565 TREE_CHAIN (last) = TREE_PURPOSE (parm);
6566 last = TREE_PURPOSE (parm);
6567 TREE_CHAIN (last) = 0;
6569 types = tree_cons (NULL_TREE, TREE_TYPE (parm), types);
6573 if (void_at_end)
6574 return tree_cons (parmdecls, nonparms,
6575 nreverse (tree_cons (NULL_TREE, void_type_node, types)));
6577 return tree_cons (parmdecls, nonparms, nreverse (types));
6580 /* Finish up a function declaration and compile that function
6581 all the way to assembler language output. The free the storage
6582 for the function definition.
6584 This is called after parsing the body of the function definition.
6586 NESTED is nonzero if the function being finished is nested in another. */
6588 void
6589 finish_function (nested)
6590 int nested;
6592 register tree fndecl = current_function_decl;
6594 /* TREE_READONLY (fndecl) = 1;
6595 This caused &foo to be of type ptr-to-const-function
6596 which then got a warning when stored in a ptr-to-function variable. */
6598 poplevel (1, 0, 1);
6599 BLOCK_SUPERCONTEXT (DECL_INITIAL (fndecl)) = fndecl;
6601 /* Must mark the RESULT_DECL as being in this function. */
6603 DECL_CONTEXT (DECL_RESULT (fndecl)) = fndecl;
6605 /* Obey `register' declarations if `setjmp' is called in this fn. */
6606 if (flag_traditional && current_function_calls_setjmp)
6608 setjmp_protect (DECL_INITIAL (fndecl));
6609 setjmp_protect_args ();
6612 if (MAIN_NAME_P (DECL_NAME (fndecl)) && flag_hosted)
6614 if (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (fndecl)))
6615 != integer_type_node)
6617 /* If warn_main is 1 (-Wmain) or 2 (-Wall), we have already warned.
6618 If warn_main is -1 (-Wno-main) we don't want to be warned. */
6619 if (! warn_main)
6620 pedwarn_with_decl (fndecl, "return type of `%s' is not `int'");
6622 else
6624 #ifdef DEFAULT_MAIN_RETURN
6625 /* Make it so that `main' always returns success by default. */
6626 DEFAULT_MAIN_RETURN;
6627 #else
6628 if (flag_isoc99)
6629 c_expand_return (integer_zero_node);
6630 #endif
6634 /* Tie off the statement tree for this function. */
6635 finish_stmt_tree (&DECL_SAVED_TREE (fndecl));
6636 /* Clear out memory we no longer need. */
6637 free_after_parsing (cfun);
6638 /* Since we never call rest_of_compilation, we never clear
6639 CFUN. Do so explicitly. */
6640 free_after_compilation (cfun);
6641 cfun = NULL;
6643 if (! nested)
6645 /* Generate RTL for the body of this function. */
6646 c_expand_body (fndecl, nested);
6647 /* Let the error reporting routines know that we're outside a
6648 function. For a nested function, this value is used in
6649 pop_c_function_context and then reset via pop_function_context. */
6650 current_function_decl = NULL;
6651 c_function_name_declared_p = 0;
6655 /* Generate the RTL for the body of FNDECL. If NESTED_P is non-zero,
6656 then we are already in the process of generating RTL for another
6657 function. */
6659 static void
6660 c_expand_body (fndecl, nested_p)
6661 tree fndecl;
6662 int nested_p;
6664 /* There's no reason to do any of the work here if we're only doing
6665 semantic analysis; this code just generates RTL. */
6666 if (flag_syntax_only)
6667 return;
6669 /* Squirrel away our current state. */
6670 if (nested_p)
6671 push_function_context ();
6673 /* Initialize the RTL code for the function. */
6674 current_function_decl = fndecl;
6675 init_function_start (fndecl, input_filename, DECL_SOURCE_LINE (fndecl));
6677 /* This function is being processed in whole-function mode. */
6678 cfun->x_whole_function_mode_p = 1;
6680 /* Even though we're inside a function body, we still don't want to
6681 call expand_expr to calculate the size of a variable-sized array.
6682 We haven't necessarily assigned RTL to all variables yet, so it's
6683 not safe to try to expand expressions involving them. */
6684 immediate_size_expand = 0;
6685 cfun->x_dont_save_pending_sizes_p = 1;
6687 /* If this is a varargs function, inform function.c. */
6688 if (c_function_varargs)
6689 mark_varargs ();
6691 /* Set up parameters and prepare for return, for the function. */
6692 expand_function_start (fndecl, 0);
6694 /* If this function is `main', emit a call to `__main'
6695 to run global initializers, etc. */
6696 if (DECL_NAME (fndecl)
6697 && MAIN_NAME_P (DECL_NAME (fndecl))
6698 && DECL_CONTEXT (fndecl) == NULL_TREE)
6699 expand_main_function ();
6701 /* Generate the RTL for this function. */
6702 expand_stmt (DECL_SAVED_TREE (fndecl));
6703 /* Allow the body of the function to be garbage collected. */
6704 DECL_SAVED_TREE (fndecl) = NULL_TREE;
6706 /* We hard-wired immediate_size_expand to zero in start_function.
6707 expand_function_end will decrement this variable. So, we set the
6708 variable to one here, so that after the decrement it will remain
6709 zero. */
6710 immediate_size_expand = 1;
6712 /* Allow language dialects to perform special processing. */
6713 if (lang_expand_function_end)
6714 (*lang_expand_function_end) ();
6716 /* Generate rtl for function exit. */
6717 expand_function_end (input_filename, lineno, 0);
6719 /* If this is a nested function, protect the local variables in the stack
6720 above us from being collected while we're compiling this function. */
6721 if (nested_p)
6722 ggc_push_context ();
6724 /* Run the optimizers and output the assembler code for this function. */
6725 rest_of_compilation (fndecl);
6727 /* Undo the GC context switch. */
6728 if (nested_p)
6729 ggc_pop_context ();
6731 /* With just -W, complain only if function returns both with
6732 and without a value. */
6733 if (extra_warnings
6734 && current_function_returns_value
6735 && current_function_returns_null)
6736 warning ("this function may return with or without a value");
6738 /* If requested, warn about function definitions where the function will
6739 return a value (usually of some struct or union type) which itself will
6740 take up a lot of stack space. */
6742 if (warn_larger_than && !DECL_EXTERNAL (fndecl) && TREE_TYPE (fndecl))
6744 tree ret_type = TREE_TYPE (TREE_TYPE (fndecl));
6746 if (ret_type && TYPE_SIZE_UNIT (ret_type)
6747 && TREE_CODE (TYPE_SIZE_UNIT (ret_type)) == INTEGER_CST
6748 && 0 < compare_tree_int (TYPE_SIZE_UNIT (ret_type),
6749 larger_than_size))
6751 unsigned int size_as_int
6752 = TREE_INT_CST_LOW (TYPE_SIZE_UNIT (ret_type));
6754 if (compare_tree_int (TYPE_SIZE_UNIT (ret_type), size_as_int) == 0)
6755 warning_with_decl (fndecl,
6756 "size of return value of `%s' is %u bytes",
6757 size_as_int);
6758 else
6759 warning_with_decl (fndecl,
6760 "size of return value of `%s' is larger than %d bytes",
6761 larger_than_size);
6765 if (DECL_SAVED_INSNS (fndecl) == 0 && ! nested_p)
6767 /* Stop pointing to the local nodes about to be freed.
6768 But DECL_INITIAL must remain nonzero so we know this
6769 was an actual function definition.
6770 For a nested function, this is done in pop_c_function_context.
6771 If rest_of_compilation set this to 0, leave it 0. */
6772 if (DECL_INITIAL (fndecl) != 0)
6773 DECL_INITIAL (fndecl) = error_mark_node;
6775 DECL_ARGUMENTS (fndecl) = 0;
6778 if (DECL_STATIC_CONSTRUCTOR (fndecl))
6780 #ifndef ASM_OUTPUT_CONSTRUCTOR
6781 if (! flag_gnu_linker)
6782 static_ctors = tree_cons (NULL_TREE, fndecl, static_ctors);
6783 else
6784 #endif
6785 assemble_constructor (IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (fndecl)));
6788 if (DECL_STATIC_DESTRUCTOR (fndecl))
6790 #ifndef ASM_OUTPUT_DESTRUCTOR
6791 if (! flag_gnu_linker)
6792 static_dtors = tree_cons (NULL_TREE, fndecl, static_dtors);
6793 else
6794 #endif
6795 assemble_destructor (IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (fndecl)));
6798 if (nested_p)
6800 /* Return to the enclosing function. */
6801 pop_function_context ();
6802 /* If the nested function was inline, write it out if that is
6803 necessary. */
6804 if (!TREE_ASM_WRITTEN (fndecl) && TREE_ADDRESSABLE (fndecl))
6806 push_function_context ();
6807 output_inline_function (fndecl);
6808 pop_function_context ();
6814 /* Check the declarations given in a for-loop for satisfying the C99
6815 constraints. */
6816 void
6817 check_for_loop_decls ()
6819 tree t;
6821 if (!flag_isoc99)
6823 /* If we get here, declarations have been used in a for loop without
6824 the C99 for loop scope. This doesn't make much sense, so don't
6825 allow it. */
6826 error ("`for' loop initial declaration used outside C99 mode");
6827 return;
6829 /* C99 subclause 6.8.5 paragraph 3:
6831 [#3] The declaration part of a for statement shall only
6832 declare identifiers for objects having storage class auto or
6833 register.
6835 It isn't clear whether, in this sentence, "identifiers" binds to
6836 "shall only declare" or to "objects" - that is, whether all identifiers
6837 declared must be identifiers for objects, or whether the restriction
6838 only applies to those that are. (A question on this in comp.std.c
6839 in November 2000 received no answer.) We implement the strictest
6840 interpretation, to avoid creating an extension which later causes
6841 problems. */
6843 for (t = gettags (); t; t = TREE_CHAIN (t))
6845 if (TREE_PURPOSE (t) != 0)
6846 error ("`%s %s' declared in `for' loop initial declaration",
6847 (TREE_CODE (TREE_VALUE (t)) == RECORD_TYPE ? "struct"
6848 : TREE_CODE (TREE_VALUE (t)) == UNION_TYPE ? "union"
6849 : "enum"),
6850 IDENTIFIER_POINTER (TREE_PURPOSE (t)));
6852 for (t = getdecls (); t; t = TREE_CHAIN (t))
6854 if (TREE_CODE (t) != VAR_DECL && DECL_NAME (t))
6855 error_with_decl (t, "declaration of non-variable `%s' in `for' loop initial declaration");
6856 else if (TREE_STATIC (t))
6857 error_with_decl (t, "declaration of static variable `%s' in `for' loop initial declaration");
6858 else if (DECL_EXTERNAL (t))
6859 error_with_decl (t, "declaration of `extern' variable `%s' in `for' loop initial declaration");
6863 /* Save and restore the variables in this file and elsewhere
6864 that keep track of the progress of compilation of the current function.
6865 Used for nested functions. */
6867 struct c_language_function
6869 struct language_function base;
6870 tree named_labels;
6871 tree shadowed_labels;
6872 int returns_value;
6873 int returns_null;
6874 int warn_about_return_type;
6875 int extern_inline;
6876 struct binding_level *binding_level;
6879 /* Save and reinitialize the variables
6880 used during compilation of a C function. */
6882 void
6883 push_c_function_context (f)
6884 struct function *f;
6886 struct c_language_function *p;
6887 p = ((struct c_language_function *)
6888 xmalloc (sizeof (struct c_language_function)));
6889 f->language = (struct language_function *) p;
6891 p->base.x_stmt_tree = c_stmt_tree;
6892 p->base.x_scope_stmt_stack = c_scope_stmt_stack;
6893 p->base.x_function_name_declared_p = c_function_name_declared_p;
6894 p->named_labels = named_labels;
6895 p->shadowed_labels = shadowed_labels;
6896 p->returns_value = current_function_returns_value;
6897 p->returns_null = current_function_returns_null;
6898 p->warn_about_return_type = warn_about_return_type;
6899 p->extern_inline = current_extern_inline;
6900 p->binding_level = current_binding_level;
6903 /* Restore the variables used during compilation of a C function. */
6905 void
6906 pop_c_function_context (f)
6907 struct function *f;
6909 struct c_language_function *p
6910 = (struct c_language_function *) f->language;
6911 tree link;
6913 /* Bring back all the labels that were shadowed. */
6914 for (link = shadowed_labels; link; link = TREE_CHAIN (link))
6915 if (DECL_NAME (TREE_VALUE (link)) != 0)
6916 IDENTIFIER_LABEL_VALUE (DECL_NAME (TREE_VALUE (link)))
6917 = TREE_VALUE (link);
6919 if (DECL_SAVED_INSNS (current_function_decl) == 0
6920 && DECL_SAVED_TREE (current_function_decl) == NULL_TREE)
6922 /* Stop pointing to the local nodes about to be freed. */
6923 /* But DECL_INITIAL must remain nonzero so we know this
6924 was an actual function definition. */
6925 DECL_INITIAL (current_function_decl) = error_mark_node;
6926 DECL_ARGUMENTS (current_function_decl) = 0;
6929 c_stmt_tree = p->base.x_stmt_tree;
6930 c_scope_stmt_stack = p->base.x_scope_stmt_stack;
6931 c_function_name_declared_p = p->base.x_function_name_declared_p;
6932 named_labels = p->named_labels;
6933 shadowed_labels = p->shadowed_labels;
6934 current_function_returns_value = p->returns_value;
6935 current_function_returns_null = p->returns_null;
6936 warn_about_return_type = p->warn_about_return_type;
6937 current_extern_inline = p->extern_inline;
6938 current_binding_level = p->binding_level;
6940 free (p);
6941 f->language = 0;
6944 /* Mark the language specific parts of F for GC. */
6946 void
6947 mark_c_function_context (f)
6948 struct function *f;
6950 struct c_language_function *p
6951 = (struct c_language_function *) f->language;
6953 if (p == 0)
6954 return;
6956 mark_c_language_function (&p->base);
6957 ggc_mark_tree (p->shadowed_labels);
6958 ggc_mark_tree (p->named_labels);
6959 mark_binding_level (&p->binding_level);
6962 /* Copy the DECL_LANG_SEPECIFIC data associated with NODE. */
6964 void
6965 copy_lang_decl (decl)
6966 tree decl;
6968 struct lang_decl *ld;
6970 if (!DECL_LANG_SPECIFIC (decl))
6971 return;
6973 ld = (struct lang_decl *) ggc_alloc (sizeof (struct lang_decl));
6974 memcpy ((char *) ld, (char *) DECL_LANG_SPECIFIC (decl),
6975 sizeof (struct lang_decl));
6976 DECL_LANG_SPECIFIC (decl) = ld;
6979 /* Mark the language specific bits in T for GC. */
6981 void
6982 lang_mark_tree (t)
6983 tree t;
6985 if (TREE_CODE (t) == IDENTIFIER_NODE)
6987 struct lang_identifier *i = (struct lang_identifier *) t;
6988 ggc_mark_tree (i->global_value);
6989 ggc_mark_tree (i->local_value);
6990 ggc_mark_tree (i->label_value);
6991 ggc_mark_tree (i->implicit_decl);
6992 ggc_mark_tree (i->error_locus);
6993 ggc_mark_tree (i->limbo_value);
6995 else if (TYPE_P (t) && TYPE_LANG_SPECIFIC (t))
6996 ggc_mark (TYPE_LANG_SPECIFIC (t));
6997 else if (DECL_P (t) && DECL_LANG_SPECIFIC (t))
6999 ggc_mark (DECL_LANG_SPECIFIC (t));
7000 c_mark_lang_decl (&DECL_LANG_SPECIFIC (t)->base);
7004 /* The functions below are required for functionality of doing
7005 function at once processing in the C front end. Currently these
7006 functions are not called from anywhere in the C front end, but as
7007 these changes continue, that will change. */
7009 /* Returns non-zero if the current statement is a full expression,
7010 i.e. temporaries created during that statement should be destroyed
7011 at the end of the statement. */
7014 stmts_are_full_exprs_p ()
7016 return 0;
7019 /* Returns the stmt_tree (if any) to which statements are currently
7020 being added. If there is no active statement-tree, NULL is
7021 returned. */
7023 stmt_tree
7024 current_stmt_tree ()
7026 return &c_stmt_tree;
7029 /* Returns the stack of SCOPE_STMTs for the current function. */
7031 tree *
7032 current_scope_stmt_stack ()
7034 return &c_scope_stmt_stack;
7037 /* Nonzero if TYPE is an anonymous union or struct type. Always 0 in
7038 C. */
7041 anon_aggr_type_p (node)
7042 tree node ATTRIBUTE_UNUSED;
7044 return 0;
7047 /* Dummy function in place of callback used by C++. */
7049 void
7050 extract_interface_info ()
7054 /* Return a new COMPOUND_STMT, after adding it to the current
7055 statement tree. */
7057 tree
7058 c_begin_compound_stmt ()
7060 tree stmt;
7062 /* Create the COMPOUND_STMT. */
7063 stmt = add_stmt (build_stmt (COMPOUND_STMT, NULL_TREE));
7064 /* If we haven't already declared __FUNCTION__ and its ilk then this
7065 is the opening curly brace of the function. Declare them now. */
7066 if (!c_function_name_declared_p)
7068 c_function_name_declared_p = 1;
7069 declare_function_name ();
7072 return stmt;
7075 /* Expand T (a DECL_STMT) if it declares an entity not handled by the
7076 common code. */
7078 void
7079 c_expand_decl_stmt (t)
7080 tree t;
7082 tree decl = DECL_STMT_DECL (t);
7084 /* Expand nested functions. */
7085 if (TREE_CODE (decl) == FUNCTION_DECL
7086 && DECL_CONTEXT (decl) == current_function_decl
7087 && DECL_SAVED_TREE (decl))
7088 c_expand_body (decl, /*nested_p=*/1);
7091 /* Return the IDENTIFIER_GLOBAL_VALUE of T, for use in common code, since
7092 the definition of IDENTIFIER_GLOBAL_VALUE is different for C and C++. */
7094 tree
7095 identifier_global_value (t)
7096 tree t;
7098 return IDENTIFIER_GLOBAL_VALUE (t);
7101 /* Record a builtin type for C. If NAME is non-NULL, it is the name used;
7102 otherwise the name is found in ridpointers from RID_INDEX. */
7104 void
7105 record_builtin_type (rid_index, name, type)
7106 enum rid rid_index;
7107 const char *name;
7108 tree type;
7110 tree id;
7111 if (name == 0)
7112 id = ridpointers[(int) rid_index];
7113 else
7114 id = get_identifier (name);
7115 pushdecl (build_decl (TYPE_DECL, id, type));
7118 /* Build the void_list_node (void_type_node having been created). */
7119 tree
7120 build_void_list_node ()
7122 tree t = build_tree_list (NULL_TREE, void_type_node);
7123 return t;