* aclocal.m4 (gcc_AC_CHECK_DECL): Before attempting the test,
[official-gcc.git] / gcc / c-decl.c
bloba2118fdfdc1a27ce077ac6070fd0fb08866b3258
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 /* If we're redefining a function previously defined as extern
1932 inline, make sure we emit debug info for the inline before we
1933 throw it away, in case it was inlined into a function that hasn't
1934 been written out yet. */
1935 if (new_is_definition && DECL_INITIAL (olddecl) && TREE_USED (olddecl))
1937 note_outlining_of_inline_function (olddecl);
1939 /* The new defn must not be inline.
1940 FIXME what about -finline-functions? */
1941 DECL_INLINE (newdecl) = 0;
1944 TREE_PUBLIC (newdecl) &= TREE_PUBLIC (olddecl);
1945 /* This is since we don't automatically
1946 copy the attributes of NEWDECL into OLDDECL. */
1947 /* No need to worry about different_binding_level here because
1948 then TREE_PUBLIC (newdecl) was true. */
1949 TREE_PUBLIC (olddecl) = TREE_PUBLIC (newdecl);
1950 /* If this clears `static', clear it in the identifier too. */
1951 if (! TREE_PUBLIC (olddecl))
1952 TREE_PUBLIC (DECL_NAME (olddecl)) = 0;
1954 if (DECL_EXTERNAL (newdecl))
1956 if (! different_binding_level)
1958 /* Don't mess with these flags on local externs; they remain
1959 external even if there's a declaration at file scope which
1960 isn't. */
1961 TREE_STATIC (newdecl) = TREE_STATIC (olddecl);
1962 DECL_EXTERNAL (newdecl) = DECL_EXTERNAL (olddecl);
1964 /* An extern decl does not override previous storage class. */
1965 TREE_PUBLIC (newdecl) = TREE_PUBLIC (olddecl);
1966 if (! DECL_EXTERNAL (newdecl))
1967 DECL_CONTEXT (newdecl) = DECL_CONTEXT (olddecl);
1969 else
1971 TREE_STATIC (olddecl) = TREE_STATIC (newdecl);
1972 TREE_PUBLIC (olddecl) = TREE_PUBLIC (newdecl);
1975 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1977 /* If either decl says `inline', this fn is inline,
1978 unless its definition was passed already. */
1979 if (DECL_INLINE (newdecl) && DECL_INITIAL (olddecl) == 0)
1980 DECL_INLINE (olddecl) = 1;
1982 DECL_INLINE (newdecl) = DECL_INLINE (olddecl);
1984 if (DECL_BUILT_IN (olddecl))
1986 /* Get rid of any built-in function if new arg types don't match it
1987 or if we have a function definition. */
1988 if (! types_match || new_is_definition)
1990 if (! different_binding_level)
1992 TREE_TYPE (olddecl) = TREE_TYPE (newdecl);
1993 DECL_BUILT_IN_CLASS (olddecl) = NOT_BUILT_IN;
1996 else
1998 /* If redeclaring a builtin function, and not a definition,
1999 it stays built in. */
2000 DECL_BUILT_IN_CLASS (newdecl) = DECL_BUILT_IN_CLASS (olddecl);
2001 DECL_FUNCTION_CODE (newdecl) = DECL_FUNCTION_CODE (olddecl);
2004 /* Also preserve various other info from the definition. */
2005 else if (! new_is_definition)
2006 DECL_FRAME_SIZE (newdecl) = DECL_FRAME_SIZE (olddecl);
2007 if (! new_is_definition)
2009 DECL_RESULT (newdecl) = DECL_RESULT (olddecl);
2010 /* When called with different_binding_level set, don't copy over
2011 DECL_INITIAL, so that we don't accidentally change function
2012 declarations into function definitions. */
2013 if (! different_binding_level)
2014 DECL_INITIAL (newdecl) = DECL_INITIAL (olddecl);
2015 DECL_SAVED_INSNS (newdecl) = DECL_SAVED_INSNS (olddecl);
2016 DECL_ARGUMENTS (newdecl) = DECL_ARGUMENTS (olddecl);
2017 if (DECL_INLINE (newdecl))
2018 DECL_ABSTRACT_ORIGIN (newdecl) = DECL_ABSTRACT_ORIGIN (olddecl);
2021 if (different_binding_level)
2022 return 0;
2024 /* Copy most of the decl-specific fields of NEWDECL into OLDDECL.
2025 But preserve OLDDECL's DECL_UID. */
2027 register unsigned olddecl_uid = DECL_UID (olddecl);
2029 memcpy ((char *) olddecl + sizeof (struct tree_common),
2030 (char *) newdecl + sizeof (struct tree_common),
2031 sizeof (struct tree_decl) - sizeof (struct tree_common));
2032 DECL_UID (olddecl) = olddecl_uid;
2035 /* NEWDECL contains the merged attribute lists.
2036 Update OLDDECL to be the same. */
2037 DECL_MACHINE_ATTRIBUTES (olddecl) = DECL_MACHINE_ATTRIBUTES (newdecl);
2039 return 1;
2042 /* Record a decl-node X as belonging to the current lexical scope.
2043 Check for errors (such as an incompatible declaration for the same
2044 name already seen in the same scope).
2046 Returns either X or an old decl for the same name.
2047 If an old decl is returned, it may have been smashed
2048 to agree with what X says. */
2050 tree
2051 pushdecl (x)
2052 tree x;
2054 register tree t;
2055 register tree name = DECL_NAME (x);
2056 register struct binding_level *b = current_binding_level;
2058 DECL_CONTEXT (x) = current_function_decl;
2059 /* A local extern declaration for a function doesn't constitute nesting.
2060 A local auto declaration does, since it's a forward decl
2061 for a nested function coming later. */
2062 if ((TREE_CODE (x) == FUNCTION_DECL || TREE_CODE (x) == VAR_DECL)
2063 && DECL_INITIAL (x) == 0 && DECL_EXTERNAL (x))
2064 DECL_CONTEXT (x) = 0;
2066 if (warn_nested_externs && DECL_EXTERNAL (x) && b != global_binding_level
2067 && x != IDENTIFIER_IMPLICIT_DECL (name)
2068 /* Don't print error messages for __FUNCTION__ and __PRETTY_FUNCTION__ */
2069 && !DECL_IN_SYSTEM_HEADER (x))
2070 warning ("nested extern declaration of `%s'", IDENTIFIER_POINTER (name));
2072 if (name)
2074 const char *file;
2075 int line;
2076 int different_binding_level = 0;
2078 t = lookup_name_current_level (name);
2079 /* Don't type check externs here when -traditional. This is so that
2080 code with conflicting declarations inside blocks will get warnings
2081 not errors. X11 for instance depends on this. */
2082 if (! t && DECL_EXTERNAL (x) && TREE_PUBLIC (x) && ! flag_traditional)
2084 t = IDENTIFIER_GLOBAL_VALUE (name);
2085 /* Type decls at global scope don't conflict with externs declared
2086 inside lexical blocks. */
2087 if (t && TREE_CODE (t) == TYPE_DECL)
2088 t = 0;
2089 different_binding_level = 1;
2091 if (t != 0 && t == error_mark_node)
2092 /* error_mark_node is 0 for a while during initialization! */
2094 t = 0;
2095 error_with_decl (x, "`%s' used prior to declaration");
2098 if (t != 0)
2100 file = DECL_SOURCE_FILE (t);
2101 line = DECL_SOURCE_LINE (t);
2104 /* If this decl is `static' and an implicit decl was seen previously,
2105 warn. But don't complain if -traditional,
2106 since traditional compilers don't complain. */
2107 if (! flag_traditional && TREE_PUBLIC (name)
2108 /* Don't test for DECL_EXTERNAL, because grokdeclarator
2109 sets this for all functions. */
2110 && ! TREE_PUBLIC (x)
2111 && (TREE_CODE (x) == FUNCTION_DECL || b == global_binding_level)
2112 /* We used to warn also for explicit extern followed by static,
2113 but sometimes you need to do it that way. */
2114 && IDENTIFIER_IMPLICIT_DECL (name) != 0)
2116 pedwarn ("`%s' was declared implicitly `extern' and later `static'",
2117 IDENTIFIER_POINTER (name));
2118 pedwarn_with_file_and_line
2119 (DECL_SOURCE_FILE (IDENTIFIER_IMPLICIT_DECL (name)),
2120 DECL_SOURCE_LINE (IDENTIFIER_IMPLICIT_DECL (name)),
2121 "previous declaration of `%s'",
2122 IDENTIFIER_POINTER (name));
2123 TREE_THIS_VOLATILE (name) = 1;
2126 if (t != 0 && duplicate_decls (x, t, different_binding_level))
2128 if (TREE_CODE (t) == PARM_DECL)
2130 /* Don't allow more than one "real" duplicate
2131 of a forward parm decl. */
2132 TREE_ASM_WRITTEN (t) = TREE_ASM_WRITTEN (x);
2133 return t;
2135 return t;
2138 /* If we are processing a typedef statement, generate a whole new
2139 ..._TYPE node (which will be just an variant of the existing
2140 ..._TYPE node with identical properties) and then install the
2141 TYPE_DECL node generated to represent the typedef name as the
2142 TYPE_NAME of this brand new (duplicate) ..._TYPE node.
2144 The whole point here is to end up with a situation where each
2145 and every ..._TYPE node the compiler creates will be uniquely
2146 associated with AT MOST one node representing a typedef name.
2147 This way, even though the compiler substitutes corresponding
2148 ..._TYPE nodes for TYPE_DECL (i.e. "typedef name") nodes very
2149 early on, later parts of the compiler can always do the reverse
2150 translation and get back the corresponding typedef name. For
2151 example, given:
2153 typedef struct S MY_TYPE;
2154 MY_TYPE object;
2156 Later parts of the compiler might only know that `object' was of
2157 type `struct S' if it were not for code just below. With this
2158 code however, later parts of the compiler see something like:
2160 struct S' == struct S
2161 typedef struct S' MY_TYPE;
2162 struct S' object;
2164 And they can then deduce (from the node for type struct S') that
2165 the original object declaration was:
2167 MY_TYPE object;
2169 Being able to do this is important for proper support of protoize,
2170 and also for generating precise symbolic debugging information
2171 which takes full account of the programmer's (typedef) vocabulary.
2173 Obviously, we don't want to generate a duplicate ..._TYPE node if
2174 the TYPE_DECL node that we are now processing really represents a
2175 standard built-in type.
2177 Since all standard types are effectively declared at line zero
2178 in the source file, we can easily check to see if we are working
2179 on a standard type by checking the current value of lineno. */
2181 if (TREE_CODE (x) == TYPE_DECL)
2183 if (DECL_SOURCE_LINE (x) == 0)
2185 if (TYPE_NAME (TREE_TYPE (x)) == 0)
2186 TYPE_NAME (TREE_TYPE (x)) = x;
2188 else if (TREE_TYPE (x) != error_mark_node
2189 && DECL_ORIGINAL_TYPE (x) == NULL_TREE)
2191 tree tt = TREE_TYPE (x);
2192 DECL_ORIGINAL_TYPE (x) = tt;
2193 tt = build_type_copy (tt);
2194 TYPE_NAME (tt) = x;
2195 TREE_USED (tt) = TREE_USED (x);
2196 TREE_TYPE (x) = tt;
2200 /* Multiple external decls of the same identifier ought to match.
2201 Check against both global declarations (when traditional) and out of
2202 scope (limbo) block level declarations.
2204 We get warnings about inline functions where they are defined.
2205 Avoid duplicate warnings where they are used. */
2206 if (TREE_PUBLIC (x)
2207 && ! (TREE_CODE (x) == FUNCTION_DECL && DECL_INLINE (x)))
2209 tree decl;
2211 if (flag_traditional && IDENTIFIER_GLOBAL_VALUE (name) != 0
2212 && (DECL_EXTERNAL (IDENTIFIER_GLOBAL_VALUE (name))
2213 || TREE_PUBLIC (IDENTIFIER_GLOBAL_VALUE (name))))
2214 decl = IDENTIFIER_GLOBAL_VALUE (name);
2215 else if (IDENTIFIER_LIMBO_VALUE (name) != 0)
2216 /* Decls in limbo are always extern, so no need to check that. */
2217 decl = IDENTIFIER_LIMBO_VALUE (name);
2218 else
2219 decl = 0;
2221 if (decl && ! comptypes (TREE_TYPE (x), TREE_TYPE (decl))
2222 /* If old decl is built-in, we already warned if we should. */
2223 && !DECL_BUILT_IN (decl))
2225 pedwarn_with_decl (x,
2226 "type mismatch with previous external decl");
2227 pedwarn_with_decl (decl, "previous external decl of `%s'");
2231 /* If a function has had an implicit declaration, and then is defined,
2232 make sure they are compatible. */
2234 if (IDENTIFIER_IMPLICIT_DECL (name) != 0
2235 && IDENTIFIER_GLOBAL_VALUE (name) == 0
2236 && TREE_CODE (x) == FUNCTION_DECL
2237 && ! comptypes (TREE_TYPE (x),
2238 TREE_TYPE (IDENTIFIER_IMPLICIT_DECL (name))))
2240 warning_with_decl (x, "type mismatch with previous implicit declaration");
2241 warning_with_decl (IDENTIFIER_IMPLICIT_DECL (name),
2242 "previous implicit declaration of `%s'");
2245 /* In PCC-compatibility mode, extern decls of vars with no current decl
2246 take effect at top level no matter where they are. */
2247 if (flag_traditional && DECL_EXTERNAL (x)
2248 && lookup_name (name) == 0)
2250 tree type = TREE_TYPE (x);
2252 /* But don't do this if the type contains temporary nodes. */
2253 while (type)
2255 if (type == error_mark_node)
2256 break;
2257 if (TYPE_CONTEXT (type))
2259 warning_with_decl (x, "type of external `%s' is not global");
2260 /* By exiting the loop early, we leave TYPE nonzero,
2261 and thus prevent globalization of the decl. */
2262 break;
2264 else if (TREE_CODE (type) == FUNCTION_TYPE
2265 && TYPE_ARG_TYPES (type) != 0)
2266 /* The types might not be truly local,
2267 but the list of arg types certainly is temporary.
2268 Since prototypes are nontraditional,
2269 ok not to do the traditional thing. */
2270 break;
2271 type = TREE_TYPE (type);
2274 if (type == 0)
2275 b = global_binding_level;
2278 /* This name is new in its binding level.
2279 Install the new declaration and return it. */
2280 if (b == global_binding_level)
2282 /* Install a global value. */
2284 /* If the first global decl has external linkage,
2285 warn if we later see static one. */
2286 if (IDENTIFIER_GLOBAL_VALUE (name) == 0 && TREE_PUBLIC (x))
2287 TREE_PUBLIC (name) = 1;
2289 IDENTIFIER_GLOBAL_VALUE (name) = x;
2291 /* We no longer care about any previous block level declarations. */
2292 IDENTIFIER_LIMBO_VALUE (name) = 0;
2294 /* Don't forget if the function was used via an implicit decl. */
2295 if (IDENTIFIER_IMPLICIT_DECL (name)
2296 && TREE_USED (IDENTIFIER_IMPLICIT_DECL (name)))
2297 TREE_USED (x) = 1, TREE_USED (name) = 1;
2299 /* Don't forget if its address was taken in that way. */
2300 if (IDENTIFIER_IMPLICIT_DECL (name)
2301 && TREE_ADDRESSABLE (IDENTIFIER_IMPLICIT_DECL (name)))
2302 TREE_ADDRESSABLE (x) = 1;
2304 /* Warn about mismatches against previous implicit decl. */
2305 if (IDENTIFIER_IMPLICIT_DECL (name) != 0
2306 /* If this real decl matches the implicit, don't complain. */
2307 && ! (TREE_CODE (x) == FUNCTION_DECL
2308 && (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (x)))
2309 == integer_type_node)))
2310 pedwarn ("`%s' was previously implicitly declared to return `int'",
2311 IDENTIFIER_POINTER (name));
2313 /* If this decl is `static' and an `extern' was seen previously,
2314 that is erroneous. */
2315 if (TREE_PUBLIC (name)
2316 && ! TREE_PUBLIC (x) && ! DECL_EXTERNAL (x))
2318 /* Okay to redeclare an ANSI built-in as static. */
2319 if (t != 0 && DECL_BUILT_IN (t))
2321 /* Okay to declare a non-ANSI built-in as anything. */
2322 else if (t != 0 && DECL_BUILT_IN_NONANSI (t))
2324 /* Okay to have global type decl after an earlier extern
2325 declaration inside a lexical block. */
2326 else if (TREE_CODE (x) == TYPE_DECL)
2328 else if (IDENTIFIER_IMPLICIT_DECL (name))
2330 if (! TREE_THIS_VOLATILE (name))
2331 pedwarn ("`%s' was declared implicitly `extern' and later `static'",
2332 IDENTIFIER_POINTER (name));
2334 else
2335 pedwarn ("`%s' was declared `extern' and later `static'",
2336 IDENTIFIER_POINTER (name));
2339 else
2341 /* Here to install a non-global value. */
2342 tree oldlocal = IDENTIFIER_LOCAL_VALUE (name);
2343 tree oldglobal = IDENTIFIER_GLOBAL_VALUE (name);
2345 IDENTIFIER_LOCAL_VALUE (name) = x;
2347 /* If this is an extern function declaration, see if we
2348 have a global definition or declaration for the function. */
2349 if (oldlocal == 0
2350 && oldglobal != 0
2351 && TREE_CODE (x) == FUNCTION_DECL
2352 && TREE_CODE (oldglobal) == FUNCTION_DECL
2353 && DECL_EXTERNAL (x) && ! DECL_INLINE (x))
2355 /* We have one. Their types must agree. */
2356 if (! comptypes (TREE_TYPE (x),
2357 TREE_TYPE (IDENTIFIER_GLOBAL_VALUE (name))))
2358 pedwarn_with_decl (x, "extern declaration of `%s' doesn't match global one");
2359 else
2361 /* Inner extern decl is inline if global one is.
2362 Copy enough to really inline it. */
2363 if (DECL_INLINE (oldglobal))
2365 DECL_INLINE (x) = DECL_INLINE (oldglobal);
2366 DECL_INITIAL (x) = (current_function_decl == oldglobal
2367 ? 0 : DECL_INITIAL (oldglobal));
2368 DECL_SAVED_INSNS (x) = DECL_SAVED_INSNS (oldglobal);
2369 DECL_FRAME_SIZE (x) = DECL_FRAME_SIZE (oldglobal);
2370 DECL_ARGUMENTS (x) = DECL_ARGUMENTS (oldglobal);
2371 DECL_RESULT (x) = DECL_RESULT (oldglobal);
2372 TREE_ASM_WRITTEN (x) = TREE_ASM_WRITTEN (oldglobal);
2373 DECL_ABSTRACT_ORIGIN (x)
2374 = DECL_ABSTRACT_ORIGIN (oldglobal);
2376 /* Inner extern decl is built-in if global one is. */
2377 if (DECL_BUILT_IN (oldglobal))
2379 DECL_BUILT_IN_CLASS (x) = DECL_BUILT_IN_CLASS (oldglobal);
2380 DECL_FUNCTION_CODE (x) = DECL_FUNCTION_CODE (oldglobal);
2382 /* Keep the arg types from a file-scope fcn defn. */
2383 if (TYPE_ARG_TYPES (TREE_TYPE (oldglobal)) != 0
2384 && DECL_INITIAL (oldglobal)
2385 && TYPE_ARG_TYPES (TREE_TYPE (x)) == 0)
2386 TREE_TYPE (x) = TREE_TYPE (oldglobal);
2390 #if 0
2391 /* This case is probably sometimes the right thing to do. */
2392 /* If we have a local external declaration,
2393 then any file-scope declaration should not
2394 have been static. */
2395 if (oldlocal == 0 && oldglobal != 0
2396 && !TREE_PUBLIC (oldglobal)
2397 && DECL_EXTERNAL (x) && TREE_PUBLIC (x))
2398 warning ("`%s' locally external but globally static",
2399 IDENTIFIER_POINTER (name));
2400 #endif
2402 /* If we have a local external declaration,
2403 and no file-scope declaration has yet been seen,
2404 then if we later have a file-scope decl it must not be static. */
2405 if (oldlocal == 0
2406 && DECL_EXTERNAL (x)
2407 && TREE_PUBLIC (x))
2409 if (oldglobal == 0)
2410 TREE_PUBLIC (name) = 1;
2412 /* Save this decl, so that we can do type checking against
2413 other decls after it falls out of scope.
2415 Only save it once. This prevents temporary decls created in
2416 expand_inline_function from being used here, since this
2417 will have been set when the inline function was parsed.
2418 It also helps give slightly better warnings. */
2419 if (IDENTIFIER_LIMBO_VALUE (name) == 0)
2420 IDENTIFIER_LIMBO_VALUE (name) = x;
2423 /* Warn if shadowing an argument at the top level of the body. */
2424 if (oldlocal != 0 && !DECL_EXTERNAL (x)
2425 /* This warning doesn't apply to the parms of a nested fcn. */
2426 && ! current_binding_level->parm_flag
2427 /* Check that this is one level down from the parms. */
2428 && current_binding_level->level_chain->parm_flag
2429 /* Check that the decl being shadowed
2430 comes from the parm level, one level up. */
2431 && chain_member (oldlocal, current_binding_level->level_chain->names))
2433 if (TREE_CODE (oldlocal) == PARM_DECL)
2434 pedwarn ("declaration of `%s' shadows a parameter",
2435 IDENTIFIER_POINTER (name));
2436 else
2437 pedwarn ("declaration of `%s' shadows a symbol from the parameter list",
2438 IDENTIFIER_POINTER (name));
2441 /* Maybe warn if shadowing something else. */
2442 else if (warn_shadow && !DECL_EXTERNAL (x)
2443 /* No shadow warnings for internally generated vars. */
2444 && DECL_SOURCE_LINE (x) != 0
2445 /* No shadow warnings for vars made for inlining. */
2446 && ! DECL_FROM_INLINE (x))
2448 const char *id = IDENTIFIER_POINTER (name);
2450 if (TREE_CODE (x) == PARM_DECL
2451 && current_binding_level->level_chain->parm_flag)
2452 /* Don't warn about the parm names in function declarator
2453 within a function declarator.
2454 It would be nice to avoid warning in any function
2455 declarator in a declaration, as opposed to a definition,
2456 but there is no way to tell it's not a definition. */
2458 else if (oldlocal != 0 && TREE_CODE (oldlocal) == PARM_DECL)
2459 warning ("declaration of `%s' shadows a parameter", id);
2460 else if (oldlocal != 0)
2461 warning ("declaration of `%s' shadows previous local", id);
2462 else if (IDENTIFIER_GLOBAL_VALUE (name) != 0
2463 && IDENTIFIER_GLOBAL_VALUE (name) != error_mark_node)
2464 warning ("declaration of `%s' shadows global declaration", id);
2467 /* If storing a local value, there may already be one (inherited).
2468 If so, record it for restoration when this binding level ends. */
2469 if (oldlocal != 0)
2470 b->shadowed = tree_cons (name, oldlocal, b->shadowed);
2473 /* Keep count of variables in this level with incomplete type.
2474 If the input is erroneous, we can have error_mark in the type
2475 slot (e.g. "f(void a, ...)") - that doesn't count as an
2476 incomplete type. */
2477 if (TREE_TYPE (x) != error_mark_node
2478 && !COMPLETE_TYPE_P (TREE_TYPE (x)))
2479 ++b->n_incomplete;
2482 /* Put decls on list in reverse order.
2483 We will reverse them later if necessary. */
2484 TREE_CHAIN (x) = b->names;
2485 b->names = x;
2487 return x;
2490 /* Like pushdecl, only it places X in GLOBAL_BINDING_LEVEL, if appropriate. */
2492 tree
2493 pushdecl_top_level (x)
2494 tree x;
2496 register tree t;
2497 register struct binding_level *b = current_binding_level;
2499 current_binding_level = global_binding_level;
2500 t = pushdecl (x);
2501 current_binding_level = b;
2502 return t;
2505 /* Generate an implicit declaration for identifier FUNCTIONID
2506 as a function of type int (). Print a warning if appropriate. */
2508 tree
2509 implicitly_declare (functionid)
2510 tree functionid;
2512 register tree decl;
2513 int traditional_warning = 0;
2514 /* Only one "implicit declaration" warning per identifier. */
2515 int implicit_warning;
2517 /* We used to reuse an old implicit decl here,
2518 but this loses with inline functions because it can clobber
2519 the saved decl chains. */
2520 #if 0
2521 if (IDENTIFIER_IMPLICIT_DECL (functionid) != 0)
2522 decl = IDENTIFIER_IMPLICIT_DECL (functionid);
2523 else
2524 #endif
2525 decl = build_decl (FUNCTION_DECL, functionid, default_function_type);
2527 /* Warn of implicit decl following explicit local extern decl.
2528 This is probably a program designed for traditional C. */
2529 if (TREE_PUBLIC (functionid) && IDENTIFIER_GLOBAL_VALUE (functionid) == 0)
2530 traditional_warning = 1;
2532 /* Warn once of an implicit declaration. */
2533 implicit_warning = (IDENTIFIER_IMPLICIT_DECL (functionid) == 0);
2535 DECL_EXTERNAL (decl) = 1;
2536 TREE_PUBLIC (decl) = 1;
2538 /* Record that we have an implicit decl and this is it. */
2539 IDENTIFIER_IMPLICIT_DECL (functionid) = decl;
2541 /* ANSI standard says implicit declarations are in the innermost block.
2542 So we record the decl in the standard fashion.
2543 If flag_traditional is set, pushdecl does it top-level. */
2544 pushdecl (decl);
2546 /* This is a no-op in c-lang.c or something real in objc-actions.c. */
2547 maybe_objc_check_decl (decl);
2549 rest_of_decl_compilation (decl, NULL_PTR, 0, 0);
2551 if (implicit_warning)
2552 implicit_decl_warning (functionid);
2553 else if (warn_traditional && traditional_warning)
2554 warning ("function `%s' was previously declared within a block",
2555 IDENTIFIER_POINTER (functionid));
2557 /* Write a record describing this implicit function declaration to the
2558 prototypes file (if requested). */
2560 gen_aux_info_record (decl, 0, 1, 0);
2562 return decl;
2565 void
2566 implicit_decl_warning (id)
2567 tree id;
2569 const char *name = IDENTIFIER_POINTER (id);
2570 if (mesg_implicit_function_declaration == 2)
2571 error ("implicit declaration of function `%s'", name);
2572 else if (mesg_implicit_function_declaration == 1)
2573 warning ("implicit declaration of function `%s'", name);
2576 /* Return zero if the declaration NEWDECL is valid
2577 when the declaration OLDDECL (assumed to be for the same name)
2578 has already been seen.
2579 Otherwise return 1 if NEWDECL is a redefinition, 2 if it is a redeclaration,
2580 and 3 if it is a conflicting declaration. */
2582 static int
2583 redeclaration_error_message (newdecl, olddecl)
2584 tree newdecl, olddecl;
2586 if (TREE_CODE (newdecl) == TYPE_DECL)
2588 if (flag_traditional && TREE_TYPE (newdecl) == TREE_TYPE (olddecl))
2589 return 0;
2590 /* pushdecl creates distinct types for TYPE_DECLs by calling
2591 build_type_copy, so the above comparison generally fails. We do
2592 another test against the TYPE_MAIN_VARIANT of the olddecl, which
2593 is equivalent to what this code used to do before the build_type_copy
2594 call. The variant type distinction should not matter for traditional
2595 code, because it doesn't have type qualifiers. */
2596 if (flag_traditional
2597 && TYPE_MAIN_VARIANT (TREE_TYPE (olddecl)) == TREE_TYPE (newdecl))
2598 return 0;
2599 if (DECL_IN_SYSTEM_HEADER (olddecl) || DECL_IN_SYSTEM_HEADER (newdecl))
2600 return 0;
2601 return 1;
2603 else if (TREE_CODE (newdecl) == FUNCTION_DECL)
2605 /* Declarations of functions can insist on internal linkage
2606 but they can't be inconsistent with internal linkage,
2607 so there can be no error on that account.
2608 However defining the same name twice is no good. */
2609 if (DECL_INITIAL (olddecl) != 0 && DECL_INITIAL (newdecl) != 0
2610 /* However, defining once as extern inline and a second
2611 time in another way is ok. */
2612 && ! (DECL_INLINE (olddecl) && DECL_EXTERNAL (olddecl)
2613 && ! (DECL_INLINE (newdecl) && DECL_EXTERNAL (newdecl))))
2614 return 1;
2615 return 0;
2617 else if (DECL_CONTEXT (newdecl) == NULL_TREE)
2619 /* Objects declared at top level: */
2620 /* If at least one is a reference, it's ok. */
2621 if (DECL_EXTERNAL (newdecl) || DECL_EXTERNAL (olddecl))
2622 return 0;
2623 /* Reject two definitions. */
2624 if (DECL_INITIAL (olddecl) != 0 && DECL_INITIAL (newdecl) != 0)
2625 return 1;
2626 /* Now we have two tentative defs, or one tentative and one real def. */
2627 /* Insist that the linkage match. */
2628 if (TREE_PUBLIC (olddecl) != TREE_PUBLIC (newdecl))
2629 return 3;
2630 return 0;
2632 else if (current_binding_level->parm_flag
2633 && TREE_ASM_WRITTEN (olddecl) && !TREE_ASM_WRITTEN (newdecl))
2634 return 0;
2635 else
2637 /* Newdecl has block scope. If olddecl has block scope also, then
2638 reject two definitions, and reject a definition together with an
2639 external reference. Otherwise, it is OK, because newdecl must
2640 be an extern reference to olddecl. */
2641 if (!(DECL_EXTERNAL (newdecl) && DECL_EXTERNAL (olddecl))
2642 && DECL_CONTEXT (newdecl) == DECL_CONTEXT (olddecl))
2643 return 2;
2644 return 0;
2648 /* Get the LABEL_DECL corresponding to identifier ID as a label.
2649 Create one if none exists so far for the current function.
2650 This function is called for both label definitions and label references. */
2652 tree
2653 lookup_label (id)
2654 tree id;
2656 register tree decl = IDENTIFIER_LABEL_VALUE (id);
2658 if (current_function_decl == 0)
2660 error ("label %s referenced outside of any function",
2661 IDENTIFIER_POINTER (id));
2662 return 0;
2665 /* Use a label already defined or ref'd with this name. */
2666 if (decl != 0)
2668 /* But not if it is inherited and wasn't declared to be inheritable. */
2669 if (DECL_CONTEXT (decl) != current_function_decl
2670 && ! C_DECLARED_LABEL_FLAG (decl))
2671 return shadow_label (id);
2672 return decl;
2675 decl = build_decl (LABEL_DECL, id, void_type_node);
2677 /* A label not explicitly declared must be local to where it's ref'd. */
2678 DECL_CONTEXT (decl) = current_function_decl;
2680 DECL_MODE (decl) = VOIDmode;
2682 /* Say where one reference is to the label,
2683 for the sake of the error if it is not defined. */
2684 DECL_SOURCE_LINE (decl) = lineno;
2685 DECL_SOURCE_FILE (decl) = input_filename;
2687 IDENTIFIER_LABEL_VALUE (id) = decl;
2689 named_labels = tree_cons (NULL_TREE, decl, named_labels);
2691 return decl;
2694 /* Make a label named NAME in the current function,
2695 shadowing silently any that may be inherited from containing functions
2696 or containing scopes.
2698 Note that valid use, if the label being shadowed
2699 comes from another scope in the same function,
2700 requires calling declare_nonlocal_label right away. */
2702 tree
2703 shadow_label (name)
2704 tree name;
2706 register tree decl = IDENTIFIER_LABEL_VALUE (name);
2708 if (decl != 0)
2710 register tree dup;
2712 /* Check to make sure that the label hasn't already been declared
2713 at this label scope */
2714 for (dup = named_labels; dup; dup = TREE_CHAIN (dup))
2715 if (TREE_VALUE (dup) == decl)
2717 error ("duplicate label declaration `%s'",
2718 IDENTIFIER_POINTER (name));
2719 error_with_decl (TREE_VALUE (dup),
2720 "this is a previous declaration");
2721 /* Just use the previous declaration. */
2722 return lookup_label (name);
2725 shadowed_labels = tree_cons (NULL_TREE, decl, shadowed_labels);
2726 IDENTIFIER_LABEL_VALUE (name) = decl = 0;
2729 return lookup_label (name);
2732 /* Define a label, specifying the location in the source file.
2733 Return the LABEL_DECL node for the label, if the definition is valid.
2734 Otherwise return 0. */
2736 tree
2737 define_label (filename, line, name)
2738 const char *filename;
2739 int line;
2740 tree name;
2742 tree decl = lookup_label (name);
2744 /* If label with this name is known from an outer context, shadow it. */
2745 if (decl != 0 && DECL_CONTEXT (decl) != current_function_decl)
2747 shadowed_labels = tree_cons (NULL_TREE, decl, shadowed_labels);
2748 IDENTIFIER_LABEL_VALUE (name) = 0;
2749 decl = lookup_label (name);
2752 if (warn_traditional && !in_system_header && lookup_name (name))
2753 warning_with_file_and_line (filename, line,
2754 "traditional C lacks a separate namespace for labels, identifier `%s' conflicts",
2755 IDENTIFIER_POINTER (name));
2757 if (DECL_INITIAL (decl) != 0)
2759 error_with_file_and_line (filename, line, "duplicate label `%s'",
2760 IDENTIFIER_POINTER (name));
2761 return 0;
2763 else
2765 /* Mark label as having been defined. */
2766 DECL_INITIAL (decl) = error_mark_node;
2767 /* Say where in the source. */
2768 DECL_SOURCE_FILE (decl) = filename;
2769 DECL_SOURCE_LINE (decl) = line;
2770 return decl;
2774 /* Return the list of declarations of the current level.
2775 Note that this list is in reverse order unless/until
2776 you nreverse it; and when you do nreverse it, you must
2777 store the result back using `storedecls' or you will lose. */
2779 tree
2780 getdecls ()
2782 return current_binding_level->names;
2785 /* Return the list of type-tags (for structs, etc) of the current level. */
2787 tree
2788 gettags ()
2790 return current_binding_level->tags;
2793 /* Store the list of declarations of the current level.
2794 This is done for the parameter declarations of a function being defined,
2795 after they are modified in the light of any missing parameters. */
2797 static void
2798 storedecls (decls)
2799 tree decls;
2801 current_binding_level->names = decls;
2804 /* Similarly, store the list of tags of the current level. */
2806 static void
2807 storetags (tags)
2808 tree tags;
2810 current_binding_level->tags = tags;
2813 /* Given NAME, an IDENTIFIER_NODE,
2814 return the structure (or union or enum) definition for that name.
2815 Searches binding levels from BINDING_LEVEL up to the global level.
2816 If THISLEVEL_ONLY is nonzero, searches only the specified context
2817 (but skips any tag-transparent contexts to find one that is
2818 meaningful for tags).
2819 CODE says which kind of type the caller wants;
2820 it is RECORD_TYPE or UNION_TYPE or ENUMERAL_TYPE.
2821 If the wrong kind of type is found, an error is reported. */
2823 static tree
2824 lookup_tag (code, name, binding_level, thislevel_only)
2825 enum tree_code code;
2826 struct binding_level *binding_level;
2827 tree name;
2828 int thislevel_only;
2830 register struct binding_level *level;
2831 int thislevel = 1;
2833 for (level = binding_level; level; level = level->level_chain)
2835 register tree tail;
2836 for (tail = level->tags; tail; tail = TREE_CHAIN (tail))
2838 if (TREE_PURPOSE (tail) == name)
2840 if (TREE_CODE (TREE_VALUE (tail)) != code)
2842 /* Definition isn't the kind we were looking for. */
2843 pending_invalid_xref = name;
2844 pending_invalid_xref_file = input_filename;
2845 pending_invalid_xref_line = lineno;
2846 /* If in the same binding level as a declaration as a tag
2847 of a different type, this must not be allowed to
2848 shadow that tag, so give the error immediately.
2849 (For example, "struct foo; union foo;" is invalid.) */
2850 if (thislevel)
2851 pending_xref_error ();
2853 return TREE_VALUE (tail);
2856 if (! level->tag_transparent)
2858 if (thislevel_only)
2859 return NULL_TREE;
2860 thislevel = 0;
2863 return NULL_TREE;
2866 /* Print an error message now
2867 for a recent invalid struct, union or enum cross reference.
2868 We don't print them immediately because they are not invalid
2869 when used in the `struct foo;' construct for shadowing. */
2871 void
2872 pending_xref_error ()
2874 if (pending_invalid_xref != 0)
2875 error_with_file_and_line (pending_invalid_xref_file,
2876 pending_invalid_xref_line,
2877 "`%s' defined as wrong kind of tag",
2878 IDENTIFIER_POINTER (pending_invalid_xref));
2879 pending_invalid_xref = 0;
2882 /* Given a type, find the tag that was defined for it and return the tag name.
2883 Otherwise return 0. */
2885 static tree
2886 lookup_tag_reverse (type)
2887 tree type;
2889 register struct binding_level *level;
2891 for (level = current_binding_level; level; level = level->level_chain)
2893 register tree tail;
2894 for (tail = level->tags; tail; tail = TREE_CHAIN (tail))
2896 if (TREE_VALUE (tail) == type)
2897 return TREE_PURPOSE (tail);
2900 return NULL_TREE;
2903 /* Look up NAME in the current binding level and its superiors
2904 in the namespace of variables, functions and typedefs.
2905 Return a ..._DECL node of some kind representing its definition,
2906 or return 0 if it is undefined. */
2908 tree
2909 lookup_name (name)
2910 tree name;
2912 register tree val;
2914 if (current_binding_level != global_binding_level
2915 && IDENTIFIER_LOCAL_VALUE (name))
2916 val = IDENTIFIER_LOCAL_VALUE (name);
2917 else
2918 val = IDENTIFIER_GLOBAL_VALUE (name);
2919 return val;
2922 /* Similar to `lookup_name' but look only at current binding level. */
2924 tree
2925 lookup_name_current_level (name)
2926 tree name;
2928 register tree t;
2930 if (current_binding_level == global_binding_level)
2931 return IDENTIFIER_GLOBAL_VALUE (name);
2933 if (IDENTIFIER_LOCAL_VALUE (name) == 0)
2934 return 0;
2936 for (t = current_binding_level->names; t; t = TREE_CHAIN (t))
2937 if (DECL_NAME (t) == name)
2938 break;
2940 return t;
2943 /* Mark ARG for GC. */
2945 static void
2946 mark_binding_level (arg)
2947 void *arg;
2949 struct binding_level *level = *(struct binding_level **) arg;
2951 for (; level != 0; level = level->level_chain)
2953 ggc_mark_tree (level->names);
2954 ggc_mark_tree (level->tags);
2955 ggc_mark_tree (level->shadowed);
2956 ggc_mark_tree (level->blocks);
2957 ggc_mark_tree (level->this_block);
2958 ggc_mark_tree (level->parm_order);
2962 /* Create the predefined scalar types of C,
2963 and some nodes representing standard constants (0, 1, (void *) 0).
2964 Initialize the global binding level.
2965 Make definitions for built-in primitive functions. */
2967 void
2968 init_decl_processing ()
2970 register tree endlink;
2971 tree ptr_ftype_void, ptr_ftype_ptr;
2973 current_function_decl = NULL;
2974 named_labels = NULL;
2975 current_binding_level = NULL_BINDING_LEVEL;
2976 free_binding_level = NULL_BINDING_LEVEL;
2978 /* Make the binding_level structure for global names. */
2979 pushlevel (0);
2980 global_binding_level = current_binding_level;
2982 build_common_tree_nodes (flag_signed_char);
2984 c_common_nodes_and_builtins ();
2986 boolean_type_node = integer_type_node;
2987 boolean_true_node = integer_one_node;
2988 boolean_false_node = integer_zero_node;
2990 /* With GCC, C99's _Bool is always of size 1. */
2991 c_bool_type_node = make_unsigned_type (CHAR_TYPE_SIZE);
2992 TREE_SET_CODE (c_bool_type_node, BOOLEAN_TYPE);
2993 TYPE_MAX_VALUE (c_bool_type_node) = build_int_2 (1, 0);
2994 TREE_TYPE (TYPE_MAX_VALUE (c_bool_type_node)) = c_bool_type_node;
2995 TYPE_PRECISION (c_bool_type_node) = 1;
2996 pushdecl (build_decl (TYPE_DECL, get_identifier ("_Bool"),
2997 c_bool_type_node));
2998 c_bool_false_node = build_int_2 (0, 0);
2999 TREE_TYPE (c_bool_false_node) = c_bool_type_node;
3000 c_bool_true_node = build_int_2 (1, 0);
3001 TREE_TYPE (c_bool_true_node) = c_bool_type_node;
3003 endlink = void_list_node;
3004 ptr_ftype_void = build_function_type (ptr_type_node, endlink);
3005 ptr_ftype_ptr
3006 = build_function_type (ptr_type_node,
3007 tree_cons (NULL_TREE, ptr_type_node, endlink));
3009 /* Types which are common to the fortran compiler and libf2c. When
3010 changing these, you also need to be concerned with f/com.h. */
3012 if (TYPE_PRECISION (float_type_node)
3013 == TYPE_PRECISION (long_integer_type_node))
3015 g77_integer_type_node = long_integer_type_node;
3016 g77_uinteger_type_node = long_unsigned_type_node;
3018 else if (TYPE_PRECISION (float_type_node)
3019 == TYPE_PRECISION (integer_type_node))
3021 g77_integer_type_node = integer_type_node;
3022 g77_uinteger_type_node = unsigned_type_node;
3024 else
3025 g77_integer_type_node = g77_uinteger_type_node = NULL_TREE;
3027 if (g77_integer_type_node != NULL_TREE)
3029 pushdecl (build_decl (TYPE_DECL, get_identifier ("__g77_integer"),
3030 g77_integer_type_node));
3031 pushdecl (build_decl (TYPE_DECL, get_identifier ("__g77_uinteger"),
3032 g77_uinteger_type_node));
3035 if (TYPE_PRECISION (float_type_node) * 2
3036 == TYPE_PRECISION (long_integer_type_node))
3038 g77_longint_type_node = long_integer_type_node;
3039 g77_ulongint_type_node = long_unsigned_type_node;
3041 else if (TYPE_PRECISION (float_type_node) * 2
3042 == TYPE_PRECISION (long_long_integer_type_node))
3044 g77_longint_type_node = long_long_integer_type_node;
3045 g77_ulongint_type_node = long_long_unsigned_type_node;
3047 else
3048 g77_longint_type_node = g77_ulongint_type_node = NULL_TREE;
3050 if (g77_longint_type_node != NULL_TREE)
3052 pushdecl (build_decl (TYPE_DECL, get_identifier ("__g77_longint"),
3053 g77_longint_type_node));
3054 pushdecl (build_decl (TYPE_DECL, get_identifier ("__g77_ulongint"),
3055 g77_ulongint_type_node));
3058 builtin_function ("__builtin_aggregate_incoming_address",
3059 build_function_type (ptr_type_node, NULL_TREE),
3060 BUILT_IN_AGGREGATE_INCOMING_ADDRESS,
3061 BUILT_IN_NORMAL, NULL_PTR);
3063 /* Hooks for the DWARF 2 __throw routine. */
3064 builtin_function ("__builtin_unwind_init",
3065 build_function_type (void_type_node, endlink),
3066 BUILT_IN_UNWIND_INIT, BUILT_IN_NORMAL, NULL_PTR);
3067 builtin_function ("__builtin_dwarf_cfa", ptr_ftype_void,
3068 BUILT_IN_DWARF_CFA, BUILT_IN_NORMAL, NULL_PTR);
3069 builtin_function ("__builtin_dwarf_fp_regnum",
3070 build_function_type (unsigned_type_node, endlink),
3071 BUILT_IN_DWARF_FP_REGNUM, BUILT_IN_NORMAL, NULL_PTR);
3072 builtin_function ("__builtin_init_dwarf_reg_size_table", void_ftype_ptr,
3073 BUILT_IN_INIT_DWARF_REG_SIZES, BUILT_IN_NORMAL, NULL_PTR);
3074 builtin_function ("__builtin_frob_return_addr", ptr_ftype_ptr,
3075 BUILT_IN_FROB_RETURN_ADDR, BUILT_IN_NORMAL, NULL_PTR);
3076 builtin_function ("__builtin_extract_return_addr", ptr_ftype_ptr,
3077 BUILT_IN_EXTRACT_RETURN_ADDR, BUILT_IN_NORMAL, NULL_PTR);
3078 builtin_function
3079 ("__builtin_eh_return",
3080 build_function_type (void_type_node,
3081 tree_cons (NULL_TREE, ptr_type_node,
3082 tree_cons (NULL_TREE,
3083 type_for_mode (ptr_mode, 0),
3084 tree_cons (NULL_TREE,
3085 ptr_type_node,
3086 endlink)))),
3087 BUILT_IN_EH_RETURN, BUILT_IN_NORMAL, NULL_PTR);
3089 pedantic_lvalues = pedantic;
3091 /* Create the global bindings for __FUNCTION__, __PRETTY_FUNCTION__,
3092 and __func__. */
3093 function_id_node = get_identifier ("__FUNCTION__");
3094 pretty_function_id_node = get_identifier ("__PRETTY_FUNCTION__");
3095 func_id_node = get_identifier ("__func__");
3096 make_fname_decl = c_make_fname_decl;
3097 declare_function_name ();
3099 start_identifier_warnings ();
3101 /* Prepare to check format strings against argument lists. */
3102 init_function_format_info ();
3104 incomplete_decl_finalize_hook = finish_incomplete_decl;
3106 /* Record our roots. */
3108 ggc_add_tree_root (c_global_trees, CTI_MAX);
3109 ggc_add_root (&c_stmt_tree, 1, sizeof c_stmt_tree, mark_stmt_tree);
3110 ggc_add_tree_root (&c_scope_stmt_stack, 1);
3111 ggc_add_tree_root (&named_labels, 1);
3112 ggc_add_tree_root (&shadowed_labels, 1);
3113 ggc_add_root (&current_binding_level, 1, sizeof current_binding_level,
3114 mark_binding_level);
3115 ggc_add_root (&label_level_chain, 1, sizeof label_level_chain,
3116 mark_binding_level);
3117 ggc_add_tree_root (&static_ctors, 1);
3118 ggc_add_tree_root (&static_dtors, 1);
3121 /* Create the VAR_DECL for __FUNCTION__ etc. ID is the name to give the
3122 decl, NAME is the initialization string and TYPE_DEP indicates whether
3123 NAME depended on the type of the function. As we don't yet implement
3124 delayed emission of static data, we mark the decl as emitted
3125 so it is not placed in the output. Anything using it must therefore pull
3126 out the STRING_CST initializer directly. This does mean that these names
3127 are string merging candidates, which is wrong for C99's __func__. FIXME. */
3129 static tree
3130 c_make_fname_decl (id, name, type_dep)
3131 tree id;
3132 const char *name;
3133 int type_dep ATTRIBUTE_UNUSED;
3135 tree decl, type, init;
3136 size_t length = strlen (name);
3138 type = build_array_type
3139 (build_qualified_type (char_type_node, TYPE_QUAL_CONST),
3140 build_index_type (build_int_2 (length, 0)));
3142 decl = build_decl (VAR_DECL, id, type);
3143 TREE_STATIC (decl) = 1;
3144 TREE_READONLY (decl) = 1;
3145 TREE_ASM_WRITTEN (decl) = 1;
3146 DECL_SOURCE_LINE (decl) = 0;
3147 DECL_ARTIFICIAL (decl) = 1;
3148 DECL_IN_SYSTEM_HEADER (decl) = 1;
3149 DECL_IGNORED_P (decl) = 1;
3150 init = build_string (length + 1, name);
3151 TREE_TYPE (init) = type;
3152 DECL_INITIAL (decl) = init;
3153 finish_decl (pushdecl (decl), init, NULL_TREE);
3155 return decl;
3158 /* Return a definition for a builtin function named NAME and whose data type
3159 is TYPE. TYPE should be a function type with argument types.
3160 FUNCTION_CODE tells later passes how to compile calls to this function.
3161 See tree.h for its possible values.
3163 If LIBRARY_NAME is nonzero, use that for DECL_ASSEMBLER_NAME,
3164 the name to be called if we can't opencode the function. */
3166 tree
3167 builtin_function (name, type, function_code, class, library_name)
3168 const char *name;
3169 tree type;
3170 int function_code;
3171 enum built_in_class class;
3172 const char *library_name;
3174 tree decl = build_decl (FUNCTION_DECL, get_identifier (name), type);
3175 DECL_EXTERNAL (decl) = 1;
3176 TREE_PUBLIC (decl) = 1;
3177 /* If -traditional, permit redefining a builtin function any way you like.
3178 (Though really, if the program redefines these functions,
3179 it probably won't work right unless compiled with -fno-builtin.) */
3180 if (flag_traditional && name[0] != '_')
3181 DECL_BUILT_IN_NONANSI (decl) = 1;
3182 if (library_name)
3183 DECL_ASSEMBLER_NAME (decl) = get_identifier (library_name);
3184 make_decl_rtl (decl, NULL_PTR);
3185 pushdecl (decl);
3186 DECL_BUILT_IN_CLASS (decl) = class;
3187 DECL_FUNCTION_CODE (decl) = function_code;
3189 /* Warn if a function in the namespace for users
3190 is used without an occasion to consider it declared. */
3191 if (name[0] != '_' || name[1] != '_')
3192 C_DECL_ANTICIPATED (decl) = 1;
3194 return decl;
3197 /* Called when a declaration is seen that contains no names to declare.
3198 If its type is a reference to a structure, union or enum inherited
3199 from a containing scope, shadow that tag name for the current scope
3200 with a forward reference.
3201 If its type defines a new named structure or union
3202 or defines an enum, it is valid but we need not do anything here.
3203 Otherwise, it is an error. */
3205 void
3206 shadow_tag (declspecs)
3207 tree declspecs;
3209 shadow_tag_warned (declspecs, 0);
3212 void
3213 shadow_tag_warned (declspecs, warned)
3214 tree declspecs;
3215 int warned;
3216 /* 1 => we have done a pedwarn. 2 => we have done a warning, but
3217 no pedwarn. */
3219 int found_tag = 0;
3220 register tree link;
3221 tree specs, attrs;
3223 pending_invalid_xref = 0;
3225 /* Remove the attributes from declspecs, since they will confuse the
3226 following code. */
3227 split_specs_attrs (declspecs, &specs, &attrs);
3229 for (link = specs; link; link = TREE_CHAIN (link))
3231 register tree value = TREE_VALUE (link);
3232 register enum tree_code code = TREE_CODE (value);
3234 if (code == RECORD_TYPE || code == UNION_TYPE || code == ENUMERAL_TYPE)
3235 /* Used to test also that TYPE_SIZE (value) != 0.
3236 That caused warning for `struct foo;' at top level in the file. */
3238 register tree name = lookup_tag_reverse (value);
3239 register tree t;
3241 found_tag++;
3243 if (name == 0)
3245 if (warned != 1 && code != ENUMERAL_TYPE)
3246 /* Empty unnamed enum OK */
3248 pedwarn ("unnamed struct/union that defines no instances");
3249 warned = 1;
3252 else
3254 t = lookup_tag (code, name, current_binding_level, 1);
3256 if (t == 0)
3258 t = make_node (code);
3259 pushtag (name, t);
3263 else
3265 if (!warned && ! in_system_header)
3267 warning ("useless keyword or type name in empty declaration");
3268 warned = 2;
3273 if (found_tag > 1)
3274 error ("two types specified in one empty declaration");
3276 if (warned != 1)
3278 if (found_tag == 0)
3279 pedwarn ("empty declaration");
3283 /* Decode a "typename", such as "int **", returning a ..._TYPE node. */
3285 tree
3286 groktypename (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 TYPENAME, 0);
3296 /* Return a PARM_DECL node for a given pair of specs and declarator. */
3298 tree
3299 groktypename_in_parm_context (typename)
3300 tree typename;
3302 if (TREE_CODE (typename) != TREE_LIST)
3303 return typename;
3304 return grokdeclarator (TREE_VALUE (typename),
3305 TREE_PURPOSE (typename),
3306 PARM, 0);
3309 /* Decode a declarator in an ordinary declaration or data definition.
3310 This is called as soon as the type information and variable name
3311 have been parsed, before parsing the initializer if any.
3312 Here we create the ..._DECL node, fill in its type,
3313 and put it on the list of decls for the current context.
3314 The ..._DECL node is returned as the value.
3316 Exception: for arrays where the length is not specified,
3317 the type is left null, to be filled in by `finish_decl'.
3319 Function definitions do not come here; they go to start_function
3320 instead. However, external and forward declarations of functions
3321 do go through here. Structure field declarations are done by
3322 grokfield and not through here. */
3324 tree
3325 start_decl (declarator, declspecs, initialized, attributes, prefix_attributes)
3326 tree declarator, declspecs;
3327 int initialized;
3328 tree attributes, prefix_attributes;
3330 register tree decl = grokdeclarator (declarator, declspecs,
3331 NORMAL, initialized);
3332 register tree tem;
3334 if (warn_main > 0 && TREE_CODE (decl) != FUNCTION_DECL
3335 && MAIN_NAME_P (DECL_NAME (decl)))
3336 warning_with_decl (decl, "`%s' is usually a function");
3338 if (initialized)
3339 /* Is it valid for this decl to have an initializer at all?
3340 If not, set INITIALIZED to zero, which will indirectly
3341 tell `finish_decl' to ignore the initializer once it is parsed. */
3342 switch (TREE_CODE (decl))
3344 case TYPE_DECL:
3345 /* typedef foo = bar means give foo the same type as bar.
3346 We haven't parsed bar yet, so `finish_decl' will fix that up.
3347 Any other case of an initialization in a TYPE_DECL is an error. */
3348 if (pedantic || list_length (declspecs) > 1)
3350 error ("typedef `%s' is initialized",
3351 IDENTIFIER_POINTER (DECL_NAME (decl)));
3352 initialized = 0;
3354 break;
3356 case FUNCTION_DECL:
3357 error ("function `%s' is initialized like a variable",
3358 IDENTIFIER_POINTER (DECL_NAME (decl)));
3359 initialized = 0;
3360 break;
3362 case PARM_DECL:
3363 /* DECL_INITIAL in a PARM_DECL is really DECL_ARG_TYPE. */
3364 error ("parameter `%s' is initialized",
3365 IDENTIFIER_POINTER (DECL_NAME (decl)));
3366 initialized = 0;
3367 break;
3369 default:
3370 /* Don't allow initializations for incomplete types
3371 except for arrays which might be completed by the initialization. */
3373 /* This can happen if the array size is an undefined macro. We already
3374 gave a warning, so we don't need another one. */
3375 if (TREE_TYPE (decl) == error_mark_node)
3376 initialized = 0;
3377 else if (COMPLETE_TYPE_P (TREE_TYPE (decl)))
3379 /* A complete type is ok if size is fixed. */
3381 if (TREE_CODE (TYPE_SIZE (TREE_TYPE (decl))) != INTEGER_CST
3382 || C_DECL_VARIABLE_SIZE (decl))
3384 error ("variable-sized object may not be initialized");
3385 initialized = 0;
3388 else if (TREE_CODE (TREE_TYPE (decl)) != ARRAY_TYPE)
3390 error ("variable `%s' has initializer but incomplete type",
3391 IDENTIFIER_POINTER (DECL_NAME (decl)));
3392 initialized = 0;
3394 else if (!COMPLETE_TYPE_P (TREE_TYPE (TREE_TYPE (decl))))
3396 error ("elements of array `%s' have incomplete type",
3397 IDENTIFIER_POINTER (DECL_NAME (decl)));
3398 initialized = 0;
3402 if (initialized)
3404 #if 0
3405 /* Seems redundant with grokdeclarator. */
3406 if (current_binding_level != global_binding_level
3407 && DECL_EXTERNAL (decl)
3408 && TREE_CODE (decl) != FUNCTION_DECL)
3409 warning ("declaration of `%s' has `extern' and is initialized",
3410 IDENTIFIER_POINTER (DECL_NAME (decl)));
3411 #endif
3412 DECL_EXTERNAL (decl) = 0;
3413 if (current_binding_level == global_binding_level)
3414 TREE_STATIC (decl) = 1;
3416 /* Tell `pushdecl' this is an initialized decl
3417 even though we don't yet have the initializer expression.
3418 Also tell `finish_decl' it may store the real initializer. */
3419 DECL_INITIAL (decl) = error_mark_node;
3422 /* If this is a function declaration, write a record describing it to the
3423 prototypes file (if requested). */
3425 if (TREE_CODE (decl) == FUNCTION_DECL)
3426 gen_aux_info_record (decl, 0, 0, TYPE_ARG_TYPES (TREE_TYPE (decl)) != 0);
3428 /* ANSI specifies that a tentative definition which is not merged with
3429 a non-tentative definition behaves exactly like a definition with an
3430 initializer equal to zero. (Section 3.7.2)
3431 -fno-common gives strict ANSI behavior. Usually you don't want it.
3432 This matters only for variables with external linkage. */
3433 if (! flag_no_common || ! TREE_PUBLIC (decl))
3434 DECL_COMMON (decl) = 1;
3436 #ifdef SET_DEFAULT_DECL_ATTRIBUTES
3437 SET_DEFAULT_DECL_ATTRIBUTES (decl, attributes);
3438 #endif
3440 /* Set attributes here so if duplicate decl, will have proper attributes. */
3441 decl_attributes (decl, attributes, prefix_attributes);
3443 /* Add this decl to the current binding level.
3444 TEM may equal DECL or it may be a previous decl of the same name. */
3445 tem = pushdecl (decl);
3447 /* For a local variable, define the RTL now. */
3448 if (current_binding_level != global_binding_level
3449 /* But not if this is a duplicate decl
3450 and we preserved the rtl from the previous one
3451 (which may or may not happen). */
3452 && DECL_RTL (tem) == 0
3453 && !DECL_CONTEXT (tem))
3455 if (TREE_TYPE (tem) != error_mark_node
3456 && COMPLETE_TYPE_P (TREE_TYPE (tem)))
3457 expand_decl (tem);
3458 else if (TREE_CODE (TREE_TYPE (tem)) == ARRAY_TYPE
3459 && DECL_INITIAL (tem) != 0)
3460 expand_decl (tem);
3463 return tem;
3466 /* Finish processing of a declaration;
3467 install its initial value.
3468 If the length of an array type is not known before,
3469 it must be determined now, from the initial value, or it is an error. */
3471 void
3472 finish_decl (decl, init, asmspec_tree)
3473 tree decl, init;
3474 tree asmspec_tree;
3476 register tree type = TREE_TYPE (decl);
3477 int was_incomplete = (DECL_SIZE (decl) == 0);
3478 const char *asmspec = 0;
3480 /* If a name was specified, get the string. */
3481 if (asmspec_tree)
3482 asmspec = TREE_STRING_POINTER (asmspec_tree);
3484 /* If `start_decl' didn't like having an initialization, ignore it now. */
3486 if (init != 0 && DECL_INITIAL (decl) == 0)
3487 init = 0;
3488 /* Don't crash if parm is initialized. */
3489 if (TREE_CODE (decl) == PARM_DECL)
3490 init = 0;
3492 if (init)
3494 if (TREE_CODE (decl) != TYPE_DECL)
3495 store_init_value (decl, init);
3496 else
3498 /* typedef foo = bar; store the type of bar as the type of foo. */
3499 TREE_TYPE (decl) = TREE_TYPE (init);
3500 DECL_INITIAL (decl) = init = 0;
3504 /* Deduce size of array from initialization, if not already known */
3506 if (TREE_CODE (type) == ARRAY_TYPE
3507 && TYPE_DOMAIN (type) == 0
3508 && TREE_CODE (decl) != TYPE_DECL)
3510 int do_default
3511 = (TREE_STATIC (decl)
3512 /* Even if pedantic, an external linkage array
3513 may have incomplete type at first. */
3514 ? pedantic && !TREE_PUBLIC (decl)
3515 : !DECL_EXTERNAL (decl));
3516 int failure
3517 = complete_array_type (type, DECL_INITIAL (decl), do_default);
3519 /* Get the completed type made by complete_array_type. */
3520 type = TREE_TYPE (decl);
3522 if (failure == 1)
3523 error_with_decl (decl, "initializer fails to determine size of `%s'");
3525 else if (failure == 2)
3527 if (do_default)
3528 error_with_decl (decl, "array size missing in `%s'");
3529 /* If a `static' var's size isn't known,
3530 make it extern as well as static, so it does not get
3531 allocated.
3532 If it is not `static', then do not mark extern;
3533 finish_incomplete_decl will give it a default size
3534 and it will get allocated. */
3535 else if (!pedantic && TREE_STATIC (decl) && ! TREE_PUBLIC (decl))
3536 DECL_EXTERNAL (decl) = 1;
3539 /* TYPE_MAX_VALUE is always one less than the number of elements
3540 in the array, because we start counting at zero. Therefore,
3541 warn only if the value is less than zero. */
3542 else if (pedantic && TYPE_DOMAIN (type) != 0
3543 && tree_int_cst_sgn (TYPE_MAX_VALUE (TYPE_DOMAIN (type))) < 0)
3544 error_with_decl (decl, "zero or negative size array `%s'");
3546 layout_decl (decl, 0);
3549 if (TREE_CODE (decl) == VAR_DECL)
3551 if (DECL_SIZE (decl) == 0 && TREE_TYPE (decl) != error_mark_node
3552 && COMPLETE_TYPE_P (TREE_TYPE (decl)))
3553 layout_decl (decl, 0);
3555 if (DECL_SIZE (decl) == 0
3556 /* Don't give an error if we already gave one earlier. */
3557 && TREE_TYPE (decl) != error_mark_node
3558 && (TREE_STATIC (decl)
3560 /* A static variable with an incomplete type
3561 is an error if it is initialized.
3562 Also if it is not file scope.
3563 Otherwise, let it through, but if it is not `extern'
3564 then it may cause an error message later. */
3565 (DECL_INITIAL (decl) != 0
3566 || DECL_CONTEXT (decl) != 0)
3568 /* An automatic variable with an incomplete type
3569 is an error. */
3570 !DECL_EXTERNAL (decl)))
3572 error_with_decl (decl, "storage size of `%s' isn't known");
3573 TREE_TYPE (decl) = error_mark_node;
3576 if ((DECL_EXTERNAL (decl) || TREE_STATIC (decl))
3577 && DECL_SIZE (decl) != 0)
3579 if (TREE_CODE (DECL_SIZE (decl)) == INTEGER_CST)
3580 constant_expression_warning (DECL_SIZE (decl));
3581 else
3582 error_with_decl (decl, "storage size of `%s' isn't constant");
3585 if (TREE_USED (type))
3586 TREE_USED (decl) = 1;
3589 /* If this is a function and an assembler name is specified, it isn't
3590 builtin any more. Also reset DECL_RTL so we can give it its new
3591 name. */
3592 if (TREE_CODE (decl) == FUNCTION_DECL && asmspec)
3594 DECL_BUILT_IN_CLASS (decl) = NOT_BUILT_IN;
3595 DECL_RTL (decl) = 0;
3596 DECL_ASSEMBLER_NAME (decl) = get_identifier (asmspec);
3599 /* Output the assembler code and/or RTL code for variables and functions,
3600 unless the type is an undefined structure or union.
3601 If not, it will get done when the type is completed. */
3603 if (TREE_CODE (decl) == VAR_DECL || TREE_CODE (decl) == FUNCTION_DECL)
3605 /* This is a no-op in c-lang.c or something real in objc-actions.c. */
3606 maybe_objc_check_decl (decl);
3608 if (!DECL_CONTEXT (decl))
3609 rest_of_decl_compilation (decl, asmspec,
3610 (DECL_CONTEXT (decl) == 0
3611 || TREE_ASM_WRITTEN (decl)), 0);
3612 else
3614 if (asmspec)
3616 DECL_ASSEMBLER_NAME (decl) = get_identifier (asmspec);
3617 DECL_C_HARD_REGISTER (decl) = 1;
3619 add_decl_stmt (decl);
3622 if (DECL_CONTEXT (decl) != 0)
3624 /* Recompute the RTL of a local array now
3625 if it used to be an incomplete type. */
3626 if (was_incomplete
3627 && ! TREE_STATIC (decl) && ! DECL_EXTERNAL (decl))
3629 /* If we used it already as memory, it must stay in memory. */
3630 TREE_ADDRESSABLE (decl) = TREE_USED (decl);
3631 /* If it's still incomplete now, no init will save it. */
3632 if (DECL_SIZE (decl) == 0)
3633 DECL_INITIAL (decl) = 0;
3638 if (TREE_CODE (decl) == TYPE_DECL)
3640 /* This is a no-op in c-lang.c or something real in objc-actions.c. */
3641 maybe_objc_check_decl (decl);
3642 rest_of_decl_compilation (decl, NULL_PTR, DECL_CONTEXT (decl) == 0, 0);
3645 /* At the end of a declaration, throw away any variable type sizes
3646 of types defined inside that declaration. There is no use
3647 computing them in the following function definition. */
3648 if (current_binding_level == global_binding_level)
3649 get_pending_sizes ();
3652 /* If DECL has a cleanup, build and return that cleanup here.
3653 This is a callback called by expand_expr. */
3655 tree
3656 maybe_build_cleanup (decl)
3657 tree decl ATTRIBUTE_UNUSED;
3659 /* There are no cleanups in C. */
3660 return NULL_TREE;
3663 /* Given a parsed parameter declaration,
3664 decode it into a PARM_DECL and push that on the current binding level.
3665 Also, for the sake of forward parm decls,
3666 record the given order of parms in `parm_order'. */
3668 void
3669 push_parm_decl (parm)
3670 tree parm;
3672 tree decl;
3673 int old_immediate_size_expand = immediate_size_expand;
3674 /* Don't try computing parm sizes now -- wait till fn is called. */
3675 immediate_size_expand = 0;
3677 decl = grokdeclarator (TREE_VALUE (TREE_PURPOSE (parm)),
3678 TREE_PURPOSE (TREE_PURPOSE (parm)), PARM, 0);
3679 decl_attributes (decl, TREE_VALUE (TREE_VALUE (parm)),
3680 TREE_PURPOSE (TREE_VALUE (parm)));
3682 #if 0
3683 if (DECL_NAME (decl))
3685 tree olddecl;
3686 olddecl = lookup_name (DECL_NAME (decl));
3687 if (pedantic && olddecl != 0 && TREE_CODE (olddecl) == TYPE_DECL)
3688 pedwarn_with_decl (decl,
3689 "ANSI C forbids parameter `%s' shadowing typedef");
3691 #endif
3693 decl = pushdecl (decl);
3695 immediate_size_expand = old_immediate_size_expand;
3697 current_binding_level->parm_order
3698 = tree_cons (NULL_TREE, decl, current_binding_level->parm_order);
3700 /* Add this decl to the current binding level. */
3701 finish_decl (decl, NULL_TREE, NULL_TREE);
3704 /* Clear the given order of parms in `parm_order'.
3705 Used at start of parm list,
3706 and also at semicolon terminating forward decls. */
3708 void
3709 clear_parm_order ()
3711 current_binding_level->parm_order = NULL_TREE;
3714 /* Make TYPE a complete type based on INITIAL_VALUE.
3715 Return 0 if successful, 1 if INITIAL_VALUE can't be deciphered,
3716 2 if there was no information (in which case assume 1 if DO_DEFAULT). */
3719 complete_array_type (type, initial_value, do_default)
3720 tree type;
3721 tree initial_value;
3722 int do_default;
3724 register tree maxindex = NULL_TREE;
3725 int value = 0;
3727 if (initial_value)
3729 /* Note MAXINDEX is really the maximum index,
3730 one less than the size. */
3731 if (TREE_CODE (initial_value) == STRING_CST)
3733 int eltsize
3734 = int_size_in_bytes (TREE_TYPE (TREE_TYPE (initial_value)));
3735 maxindex = build_int_2 ((TREE_STRING_LENGTH (initial_value)
3736 / eltsize) - 1, 0);
3738 else if (TREE_CODE (initial_value) == CONSTRUCTOR)
3740 tree elts = CONSTRUCTOR_ELTS (initial_value);
3741 maxindex = build_int_2 (-1, -1);
3742 for (; elts; elts = TREE_CHAIN (elts))
3744 if (TREE_PURPOSE (elts))
3745 maxindex = TREE_PURPOSE (elts);
3746 else
3747 maxindex = fold (build (PLUS_EXPR, integer_type_node,
3748 maxindex, integer_one_node));
3750 maxindex = copy_node (maxindex);
3752 else
3754 /* Make an error message unless that happened already. */
3755 if (initial_value != error_mark_node)
3756 value = 1;
3758 /* Prevent further error messages. */
3759 maxindex = build_int_2 (0, 0);
3763 if (!maxindex)
3765 if (do_default)
3766 maxindex = build_int_2 (0, 0);
3767 value = 2;
3770 if (maxindex)
3772 TYPE_DOMAIN (type) = build_index_type (maxindex);
3773 if (!TREE_TYPE (maxindex))
3774 TREE_TYPE (maxindex) = TYPE_DOMAIN (type);
3777 /* Lay out the type now that we can get the real answer. */
3779 layout_type (type);
3781 return value;
3784 /* Given declspecs and a declarator,
3785 determine the name and type of the object declared
3786 and construct a ..._DECL node for it.
3787 (In one case we can return a ..._TYPE node instead.
3788 For invalid input we sometimes return 0.)
3790 DECLSPECS is a chain of tree_list nodes whose value fields
3791 are the storage classes and type specifiers.
3793 DECL_CONTEXT says which syntactic context this declaration is in:
3794 NORMAL for most contexts. Make a VAR_DECL or FUNCTION_DECL or TYPE_DECL.
3795 FUNCDEF for a function definition. Like NORMAL but a few different
3796 error messages in each case. Return value may be zero meaning
3797 this definition is too screwy to try to parse.
3798 PARM for a parameter declaration (either within a function prototype
3799 or before a function body). Make a PARM_DECL, or return void_type_node.
3800 TYPENAME if for a typename (in a cast or sizeof).
3801 Don't make a DECL node; just return the ..._TYPE node.
3802 FIELD for a struct or union field; make a FIELD_DECL.
3803 BITFIELD for a field with specified width.
3804 INITIALIZED is 1 if the decl has an initializer.
3806 In the TYPENAME case, DECLARATOR is really an absolute declarator.
3807 It may also be so in the PARM case, for a prototype where the
3808 argument type is specified but not the name.
3810 This function is where the complicated C meanings of `static'
3811 and `extern' are interpreted. */
3813 static tree
3814 grokdeclarator (declarator, declspecs, decl_context, initialized)
3815 tree declspecs;
3816 tree declarator;
3817 enum decl_context decl_context;
3818 int initialized;
3820 int specbits = 0;
3821 tree spec;
3822 tree type = NULL_TREE;
3823 int longlong = 0;
3824 int constp;
3825 int restrictp;
3826 int volatilep;
3827 int type_quals = TYPE_UNQUALIFIED;
3828 int inlinep;
3829 int explicit_int = 0;
3830 int explicit_char = 0;
3831 int defaulted_int = 0;
3832 tree typedef_decl = 0;
3833 const char *name;
3834 tree typedef_type = 0;
3835 int funcdef_flag = 0;
3836 enum tree_code innermost_code = ERROR_MARK;
3837 int bitfield = 0;
3838 int size_varies = 0;
3839 tree decl_machine_attr = NULL_TREE;
3841 if (decl_context == BITFIELD)
3842 bitfield = 1, decl_context = FIELD;
3844 if (decl_context == FUNCDEF)
3845 funcdef_flag = 1, decl_context = NORMAL;
3847 /* Look inside a declarator for the name being declared
3848 and get it as a string, for an error message. */
3850 register tree decl = declarator;
3851 name = 0;
3853 while (decl)
3854 switch (TREE_CODE (decl))
3856 case ARRAY_REF:
3857 case INDIRECT_REF:
3858 case CALL_EXPR:
3859 innermost_code = TREE_CODE (decl);
3860 decl = TREE_OPERAND (decl, 0);
3861 break;
3863 case IDENTIFIER_NODE:
3864 name = IDENTIFIER_POINTER (decl);
3865 decl = 0;
3866 break;
3868 default:
3869 abort ();
3871 if (name == 0)
3872 name = "type name";
3875 /* A function definition's declarator must have the form of
3876 a function declarator. */
3878 if (funcdef_flag && innermost_code != CALL_EXPR)
3879 return 0;
3881 /* Anything declared one level down from the top level
3882 must be one of the parameters of a function
3883 (because the body is at least two levels down). */
3885 /* If this looks like a function definition, make it one,
3886 even if it occurs where parms are expected.
3887 Then store_parm_decls will reject it and not use it as a parm. */
3888 if (decl_context == NORMAL && !funcdef_flag
3889 && current_binding_level->parm_flag)
3890 decl_context = PARM;
3892 /* Look through the decl specs and record which ones appear.
3893 Some typespecs are defined as built-in typenames.
3894 Others, the ones that are modifiers of other types,
3895 are represented by bits in SPECBITS: set the bits for
3896 the modifiers that appear. Storage class keywords are also in SPECBITS.
3898 If there is a typedef name or a type, store the type in TYPE.
3899 This includes builtin typedefs such as `int'.
3901 Set EXPLICIT_INT or EXPLICIT_CHAR if the type is `int' or `char'
3902 and did not come from a user typedef.
3904 Set LONGLONG if `long' is mentioned twice. */
3906 for (spec = declspecs; spec; spec = TREE_CHAIN (spec))
3908 register tree id = TREE_VALUE (spec);
3910 if (id == ridpointers[(int) RID_INT])
3911 explicit_int = 1;
3912 if (id == ridpointers[(int) RID_CHAR])
3913 explicit_char = 1;
3915 if (TREE_CODE (id) == IDENTIFIER_NODE && C_IS_RESERVED_WORD (id))
3917 enum rid i = C_RID_CODE (id);
3918 if (i <= RID_LAST_MODIFIER)
3920 if (i == RID_LONG && specbits & (1<<i))
3922 if (longlong)
3923 error ("`long long long' is too long for GCC");
3924 else
3926 if (pedantic && !flag_isoc99 && ! in_system_header
3927 && warn_long_long)
3928 pedwarn ("ISO C89 does not support `long long'");
3929 longlong = 1;
3932 else if (specbits & (1 << i))
3933 pedwarn ("duplicate `%s'", IDENTIFIER_POINTER (id));
3934 specbits |= 1 << i;
3935 goto found;
3938 if (type)
3939 error ("two or more data types in declaration of `%s'", name);
3940 /* Actual typedefs come to us as TYPE_DECL nodes. */
3941 else if (TREE_CODE (id) == TYPE_DECL)
3943 type = TREE_TYPE (id);
3944 decl_machine_attr = DECL_MACHINE_ATTRIBUTES (id);
3945 typedef_decl = id;
3947 /* Built-in types come as identifiers. */
3948 else if (TREE_CODE (id) == IDENTIFIER_NODE)
3950 register tree t = lookup_name (id);
3951 if (TREE_TYPE (t) == error_mark_node)
3953 else if (!t || TREE_CODE (t) != TYPE_DECL)
3954 error ("`%s' fails to be a typedef or built in type",
3955 IDENTIFIER_POINTER (id));
3956 else
3958 type = TREE_TYPE (t);
3959 typedef_decl = t;
3962 else if (TREE_CODE (id) != ERROR_MARK)
3963 type = id;
3965 found:
3969 typedef_type = type;
3970 if (type)
3971 size_varies = C_TYPE_VARIABLE_SIZE (type);
3973 /* No type at all: default to `int', and set DEFAULTED_INT
3974 because it was not a user-defined typedef. */
3976 if (type == 0)
3978 if ((! (specbits & ((1 << (int) RID_LONG) | (1 << (int) RID_SHORT)
3979 | (1 << (int) RID_SIGNED)
3980 | (1 << (int) RID_UNSIGNED)
3981 | (1 << (int) RID_COMPLEX))))
3982 /* Don't warn about typedef foo = bar. */
3983 && ! (specbits & (1 << (int) RID_TYPEDEF) && initialized)
3984 && ! in_system_header)
3986 /* Issue a warning if this is an ISO C 99 program or if -Wreturn-type
3987 and this is a function, or if -Wimplicit; prefer the former
3988 warning since it is more explicit. */
3989 if ((warn_implicit_int || warn_return_type || flag_isoc99)
3990 && funcdef_flag)
3991 warn_about_return_type = 1;
3992 else if (warn_implicit_int || flag_isoc99)
3993 pedwarn_c99 ("type defaults to `int' in declaration of `%s'",
3994 name);
3997 defaulted_int = 1;
3998 type = integer_type_node;
4001 /* Now process the modifiers that were specified
4002 and check for invalid combinations. */
4004 /* Long double is a special combination. */
4006 if ((specbits & 1 << (int) RID_LONG) && ! longlong
4007 && TYPE_MAIN_VARIANT (type) == double_type_node)
4009 specbits &= ~(1 << (int) RID_LONG);
4010 type = long_double_type_node;
4013 /* Check all other uses of type modifiers. */
4015 if (specbits & ((1 << (int) RID_LONG) | (1 << (int) RID_SHORT)
4016 | (1 << (int) RID_UNSIGNED) | (1 << (int) RID_SIGNED)))
4018 int ok = 0;
4020 if ((specbits & 1 << (int) RID_LONG)
4021 && (specbits & 1 << (int) RID_SHORT))
4022 error ("both long and short specified for `%s'", name);
4023 else if (((specbits & 1 << (int) RID_LONG)
4024 || (specbits & 1 << (int) RID_SHORT))
4025 && explicit_char)
4026 error ("long or short specified with char for `%s'", name);
4027 else if (((specbits & 1 << (int) RID_LONG)
4028 || (specbits & 1 << (int) RID_SHORT))
4029 && TREE_CODE (type) == REAL_TYPE)
4031 static int already = 0;
4033 error ("long or short specified with floating type for `%s'", name);
4034 if (! already && ! pedantic)
4036 error ("the only valid combination is `long double'");
4037 already = 1;
4040 else if ((specbits & 1 << (int) RID_SIGNED)
4041 && (specbits & 1 << (int) RID_UNSIGNED))
4042 error ("both signed and unsigned specified for `%s'", name);
4043 else if (TREE_CODE (type) != INTEGER_TYPE)
4044 error ("long, short, signed or unsigned invalid for `%s'", name);
4045 else
4047 ok = 1;
4048 if (!explicit_int && !defaulted_int && !explicit_char && pedantic)
4050 pedwarn ("long, short, signed or unsigned used invalidly for `%s'",
4051 name);
4052 if (flag_pedantic_errors)
4053 ok = 0;
4057 /* Discard the type modifiers if they are invalid. */
4058 if (! ok)
4060 specbits &= ~((1 << (int) RID_LONG) | (1 << (int) RID_SHORT)
4061 | (1 << (int) RID_UNSIGNED) | (1 << (int) RID_SIGNED));
4062 longlong = 0;
4066 if ((specbits & (1 << (int) RID_COMPLEX))
4067 && TREE_CODE (type) != INTEGER_TYPE && TREE_CODE (type) != REAL_TYPE)
4069 error ("complex invalid for `%s'", name);
4070 specbits &= ~(1 << (int) RID_COMPLEX);
4073 /* Decide whether an integer type is signed or not.
4074 Optionally treat bitfields as signed by default. */
4075 if (specbits & 1 << (int) RID_UNSIGNED
4076 /* Traditionally, all bitfields are unsigned. */
4077 || (bitfield && flag_traditional
4078 && (! explicit_flag_signed_bitfields || !flag_signed_bitfields))
4079 || (bitfield && ! flag_signed_bitfields
4080 && (explicit_int || defaulted_int || explicit_char
4081 /* A typedef for plain `int' without `signed'
4082 can be controlled just like plain `int'. */
4083 || ! (typedef_decl != 0
4084 && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl)))
4085 && TREE_CODE (type) != ENUMERAL_TYPE
4086 && !(specbits & 1 << (int) RID_SIGNED)))
4088 if (longlong)
4089 type = long_long_unsigned_type_node;
4090 else if (specbits & 1 << (int) RID_LONG)
4091 type = long_unsigned_type_node;
4092 else if (specbits & 1 << (int) RID_SHORT)
4093 type = short_unsigned_type_node;
4094 else if (type == char_type_node)
4095 type = unsigned_char_type_node;
4096 else if (typedef_decl)
4097 type = unsigned_type (type);
4098 else
4099 type = unsigned_type_node;
4101 else if ((specbits & 1 << (int) RID_SIGNED)
4102 && type == char_type_node)
4103 type = signed_char_type_node;
4104 else if (longlong)
4105 type = long_long_integer_type_node;
4106 else if (specbits & 1 << (int) RID_LONG)
4107 type = long_integer_type_node;
4108 else if (specbits & 1 << (int) RID_SHORT)
4109 type = short_integer_type_node;
4111 if (specbits & 1 << (int) RID_COMPLEX)
4113 if (pedantic && !flag_isoc99)
4114 pedwarn ("ISO C89 does not support complex types");
4115 /* If we just have "complex", it is equivalent to
4116 "complex double", but if any modifiers at all are specified it is
4117 the complex form of TYPE. E.g, "complex short" is
4118 "complex short int". */
4120 if (defaulted_int && ! longlong
4121 && ! (specbits & ((1 << (int) RID_LONG) | (1 << (int) RID_SHORT)
4122 | (1 << (int) RID_SIGNED)
4123 | (1 << (int) RID_UNSIGNED))))
4125 if (pedantic)
4126 pedwarn ("ISO C does not support plain `complex' meaning `double complex'");
4127 type = complex_double_type_node;
4129 else if (type == integer_type_node)
4131 if (pedantic)
4132 pedwarn ("ISO C does not support complex integer types");
4133 type = complex_integer_type_node;
4135 else if (type == float_type_node)
4136 type = complex_float_type_node;
4137 else if (type == double_type_node)
4138 type = complex_double_type_node;
4139 else if (type == long_double_type_node)
4140 type = complex_long_double_type_node;
4141 else
4143 if (pedantic)
4144 pedwarn ("ISO C does not support complex integer types");
4145 type = build_complex_type (type);
4149 /* Figure out the type qualifiers for the declaration. There are
4150 two ways a declaration can become qualified. One is something
4151 like `const int i' where the `const' is explicit. Another is
4152 something like `typedef const int CI; CI i' where the type of the
4153 declaration contains the `const'. */
4154 constp = !! (specbits & 1 << (int) RID_CONST) + TYPE_READONLY (type);
4155 restrictp = !! (specbits & 1 << (int) RID_RESTRICT) + TYPE_RESTRICT (type);
4156 volatilep = !! (specbits & 1 << (int) RID_VOLATILE) + TYPE_VOLATILE (type);
4157 inlinep = !! (specbits & (1 << (int) RID_INLINE));
4158 if (constp > 1 && ! flag_isoc99)
4159 pedwarn ("duplicate `const'");
4160 if (restrictp > 1 && ! flag_isoc99)
4161 pedwarn ("duplicate `restrict'");
4162 if (volatilep > 1 && ! flag_isoc99)
4163 pedwarn ("duplicate `volatile'");
4164 if (! flag_gen_aux_info && (TYPE_QUALS (type)))
4165 type = TYPE_MAIN_VARIANT (type);
4166 type_quals = ((constp ? TYPE_QUAL_CONST : 0)
4167 | (restrictp ? TYPE_QUAL_RESTRICT : 0)
4168 | (volatilep ? TYPE_QUAL_VOLATILE : 0));
4170 /* Warn if two storage classes are given. Default to `auto'. */
4173 int nclasses = 0;
4175 if (specbits & 1 << (int) RID_AUTO) nclasses++;
4176 if (specbits & 1 << (int) RID_STATIC) nclasses++;
4177 if (specbits & 1 << (int) RID_EXTERN) nclasses++;
4178 if (specbits & 1 << (int) RID_REGISTER) nclasses++;
4179 if (specbits & 1 << (int) RID_TYPEDEF) nclasses++;
4181 /* Warn about storage classes that are invalid for certain
4182 kinds of declarations (parameters, typenames, etc.). */
4184 if (nclasses > 1)
4185 error ("multiple storage classes in declaration of `%s'", name);
4186 else if (funcdef_flag
4187 && (specbits
4188 & ((1 << (int) RID_REGISTER)
4189 | (1 << (int) RID_AUTO)
4190 | (1 << (int) RID_TYPEDEF))))
4192 if (specbits & 1 << (int) RID_AUTO
4193 && (pedantic || current_binding_level == global_binding_level))
4194 pedwarn ("function definition declared `auto'");
4195 if (specbits & 1 << (int) RID_REGISTER)
4196 error ("function definition declared `register'");
4197 if (specbits & 1 << (int) RID_TYPEDEF)
4198 error ("function definition declared `typedef'");
4199 specbits &= ~((1 << (int) RID_TYPEDEF) | (1 << (int) RID_REGISTER)
4200 | (1 << (int) RID_AUTO));
4202 else if (decl_context != NORMAL && nclasses > 0)
4204 if (decl_context == PARM && specbits & 1 << (int) RID_REGISTER)
4206 else
4208 switch (decl_context)
4210 case FIELD:
4211 error ("storage class specified for structure field `%s'",
4212 name);
4213 break;
4214 case PARM:
4215 error ("storage class specified for parameter `%s'", name);
4216 break;
4217 default:
4218 error ("storage class specified for typename");
4219 break;
4221 specbits &= ~((1 << (int) RID_TYPEDEF) | (1 << (int) RID_REGISTER)
4222 | (1 << (int) RID_AUTO) | (1 << (int) RID_STATIC)
4223 | (1 << (int) RID_EXTERN));
4226 else if (specbits & 1 << (int) RID_EXTERN && initialized && ! funcdef_flag)
4228 /* `extern' with initialization is invalid if not at top level. */
4229 if (current_binding_level == global_binding_level)
4230 warning ("`%s' initialized and declared `extern'", name);
4231 else
4232 error ("`%s' has both `extern' and initializer", name);
4234 else if (specbits & 1 << (int) RID_EXTERN && funcdef_flag
4235 && current_binding_level != global_binding_level)
4236 error ("nested function `%s' declared `extern'", name);
4237 else if (current_binding_level == global_binding_level
4238 && specbits & (1 << (int) RID_AUTO))
4239 error ("top-level declaration of `%s' specifies `auto'", name);
4242 /* Now figure out the structure of the declarator proper.
4243 Descend through it, creating more complex types, until we reach
4244 the declared identifier (or NULL_TREE, in an absolute declarator). */
4246 while (declarator && TREE_CODE (declarator) != IDENTIFIER_NODE)
4248 if (type == error_mark_node)
4250 declarator = TREE_OPERAND (declarator, 0);
4251 continue;
4254 /* Each level of DECLARATOR is either an ARRAY_REF (for ...[..]),
4255 an INDIRECT_REF (for *...),
4256 a CALL_EXPR (for ...(...)),
4257 an identifier (for the name being declared)
4258 or a null pointer (for the place in an absolute declarator
4259 where the name was omitted).
4260 For the last two cases, we have just exited the loop.
4262 At this point, TYPE is the type of elements of an array,
4263 or for a function to return, or for a pointer to point to.
4264 After this sequence of ifs, TYPE is the type of the
4265 array or function or pointer, and DECLARATOR has had its
4266 outermost layer removed. */
4268 if (TREE_CODE (declarator) == ARRAY_REF)
4270 register tree itype = NULL_TREE;
4271 register tree size = TREE_OPERAND (declarator, 1);
4272 /* The index is a signed object `sizetype' bits wide. */
4273 tree index_type = signed_type (sizetype);
4275 declarator = TREE_OPERAND (declarator, 0);
4277 /* Check for some types that there cannot be arrays of. */
4279 if (VOID_TYPE_P (type))
4281 error ("declaration of `%s' as array of voids", name);
4282 type = error_mark_node;
4285 if (TREE_CODE (type) == FUNCTION_TYPE)
4287 error ("declaration of `%s' as array of functions", name);
4288 type = error_mark_node;
4291 if (size == error_mark_node)
4292 type = error_mark_node;
4294 if (type == error_mark_node)
4295 continue;
4297 /* If size was specified, set ITYPE to a range-type for that size.
4298 Otherwise, ITYPE remains null. finish_decl may figure it out
4299 from an initial value. */
4301 if (size)
4303 /* Strip NON_LVALUE_EXPRs since we aren't using as an lvalue. */
4304 STRIP_TYPE_NOPS (size);
4306 if (TREE_CODE (TREE_TYPE (size)) != INTEGER_TYPE
4307 && TREE_CODE (TREE_TYPE (size)) != ENUMERAL_TYPE)
4309 error ("size of array `%s' has non-integer type", name);
4310 size = integer_one_node;
4313 if (pedantic && integer_zerop (size))
4314 pedwarn ("ISO C forbids zero-size array `%s'", name);
4316 if (TREE_CODE (size) == INTEGER_CST)
4318 constant_expression_warning (size);
4319 if (tree_int_cst_sgn (size) < 0)
4321 error ("size of array `%s' is negative", name);
4322 size = integer_one_node;
4325 else
4327 /* Make sure the array size remains visibly nonconstant
4328 even if it is (eg) a const variable with known value. */
4329 size_varies = 1;
4331 if (pedantic)
4333 if (TREE_CONSTANT (size))
4334 pedwarn ("ISO C89 forbids array `%s' whose size can't be evaluated",
4335 name);
4336 else
4337 pedwarn ("ISO C89 forbids variable-size array `%s'",
4338 name);
4342 if (integer_zerop (size))
4344 /* A zero-length array cannot be represented with an
4345 unsigned index type, which is what we'll get with
4346 build_index_type. Create an open-ended range instead. */
4347 itype = build_range_type (sizetype, size, NULL_TREE);
4349 else
4351 /* Compute the maximum valid index, that is, size - 1.
4352 Do the calculation in index_type, so that if it is
4353 a variable the computations will be done in the
4354 proper mode. */
4355 itype = fold (build (MINUS_EXPR, index_type,
4356 convert (index_type, size),
4357 convert (index_type, size_one_node)));
4359 /* If that overflowed, the array is too big.
4360 ??? While a size of INT_MAX+1 technically shouldn't
4361 cause an overflow (because we subtract 1), the overflow
4362 is recorded during the conversion to index_type, before
4363 the subtraction. Handling this case seems like an
4364 unnecessary complication. */
4365 if (TREE_OVERFLOW (itype))
4367 error ("size of array `%s' is too large", name);
4368 type = error_mark_node;
4369 continue;
4372 if (size_varies)
4373 itype = variable_size (itype);
4374 itype = build_index_type (itype);
4377 else if (decl_context == FIELD)
4379 /* ??? Need to check somewhere that this is a structure
4380 and not a union, that this field is last, and that
4381 this structure has at least one other named member. */
4383 if (pedantic && !flag_isoc99 && !in_system_header)
4384 pedwarn ("ISO C89 does not support flexible array members");
4386 /* ISO C99 Flexible array members are effectively identical
4387 to GCC's zero-length array extension. */
4388 itype = build_range_type (sizetype, size_zero_node, NULL_TREE);
4391 /* If pedantic, complain about arrays of incomplete types. */
4393 if (pedantic && !COMPLETE_TYPE_P (type))
4394 pedwarn ("array type has incomplete element type");
4396 #if 0
4397 /* We shouldn't have a function type here at all!
4398 Functions aren't allowed as array elements. */
4399 if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
4400 && (constp || volatilep))
4401 pedwarn ("ANSI C forbids const or volatile function types");
4402 #endif
4404 /* Build the array type itself, then merge any constancy or
4405 volatility into the target type. We must do it in this order
4406 to ensure that the TYPE_MAIN_VARIANT field of the array type
4407 is set correctly. */
4409 type = build_array_type (type, itype);
4410 if (type_quals)
4411 type = c_build_qualified_type (type, type_quals);
4413 if (size_varies)
4414 C_TYPE_VARIABLE_SIZE (type) = 1;
4416 /* The GCC extension for zero-length arrays differs from
4417 ISO flexible array members in that sizeof yields zero. */
4418 if (size && integer_zerop (size))
4420 layout_type (type);
4421 TYPE_SIZE (type) = bitsize_zero_node;
4422 TYPE_SIZE_UNIT (type) = size_zero_node;
4425 else if (TREE_CODE (declarator) == CALL_EXPR)
4427 tree arg_types;
4429 /* Declaring a function type.
4430 Make sure we have a valid type for the function to return. */
4431 if (type == error_mark_node)
4432 continue;
4434 size_varies = 0;
4436 /* Warn about some types functions can't return. */
4438 if (TREE_CODE (type) == FUNCTION_TYPE)
4440 error ("`%s' declared as function returning a function", name);
4441 type = integer_type_node;
4443 if (TREE_CODE (type) == ARRAY_TYPE)
4445 error ("`%s' declared as function returning an array", name);
4446 type = integer_type_node;
4449 #ifndef TRADITIONAL_RETURN_FLOAT
4450 /* Traditionally, declaring return type float means double. */
4452 if (flag_traditional && TYPE_MAIN_VARIANT (type) == float_type_node)
4453 type = double_type_node;
4454 #endif /* TRADITIONAL_RETURN_FLOAT */
4456 /* Construct the function type and go to the next
4457 inner layer of declarator. */
4459 arg_types = grokparms (TREE_OPERAND (declarator, 1),
4460 funcdef_flag
4461 /* Say it's a definition
4462 only for the CALL_EXPR
4463 closest to the identifier. */
4464 && TREE_CODE (TREE_OPERAND (declarator, 0)) == IDENTIFIER_NODE);
4465 /* Type qualifiers before the return type of the function
4466 qualify the return type, not the function type. */
4467 if (type_quals)
4469 /* Type qualifiers on a function return type are normally
4470 permitted by the standard but have no effect, so give a
4471 warning at -W. Qualifiers on a void return type have
4472 meaning as a GNU extension, and are banned on function
4473 definitions in ISO C. FIXME: strictly we shouldn't
4474 pedwarn for qualified void return types except on function
4475 definitions, but not doing so could lead to the undesirable
4476 state of a "volatile void" function return type not being
4477 warned about, and a use of the function being compiled
4478 with GNU semantics, with no diagnostics under -pedantic. */
4479 if (VOID_TYPE_P (type) && pedantic && !in_system_header)
4480 pedwarn ("ISO C forbids qualified void function return type");
4481 else if (extra_warnings
4482 && !(VOID_TYPE_P (type)
4483 && type_quals == TYPE_QUAL_VOLATILE))
4484 warning ("type qualifiers ignored on function return type");
4486 type = c_build_qualified_type (type, type_quals);
4488 type_quals = TYPE_UNQUALIFIED;
4490 type = build_function_type (type, arg_types);
4491 declarator = TREE_OPERAND (declarator, 0);
4493 /* Set the TYPE_CONTEXTs for each tagged type which is local to
4494 the formal parameter list of this FUNCTION_TYPE to point to
4495 the FUNCTION_TYPE node itself. */
4498 register tree link;
4500 for (link = last_function_parm_tags;
4501 link;
4502 link = TREE_CHAIN (link))
4503 TYPE_CONTEXT (TREE_VALUE (link)) = type;
4506 else if (TREE_CODE (declarator) == INDIRECT_REF)
4508 /* Merge any constancy or volatility into the target type
4509 for the pointer. */
4511 if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
4512 && type_quals)
4513 pedwarn ("ISO C forbids qualified function types");
4514 if (type_quals)
4515 type = c_build_qualified_type (type, type_quals);
4516 type_quals = TYPE_UNQUALIFIED;
4517 size_varies = 0;
4519 type = build_pointer_type (type);
4521 /* Process a list of type modifier keywords
4522 (such as const or volatile) that were given inside the `*'. */
4524 if (TREE_TYPE (declarator))
4526 register tree typemodlist;
4527 int erred = 0;
4529 constp = 0;
4530 volatilep = 0;
4531 restrictp = 0;
4532 for (typemodlist = TREE_TYPE (declarator); typemodlist;
4533 typemodlist = TREE_CHAIN (typemodlist))
4535 tree qualifier = TREE_VALUE (typemodlist);
4537 if (C_IS_RESERVED_WORD (qualifier))
4539 if (C_RID_CODE (qualifier) == RID_CONST)
4540 constp++;
4541 else if (C_RID_CODE (qualifier) == RID_VOLATILE)
4542 volatilep++;
4543 else if (C_RID_CODE (qualifier) == RID_RESTRICT)
4544 restrictp++;
4545 else
4546 erred++;
4548 else
4549 erred++;
4552 if (erred)
4553 error ("invalid type modifier within pointer declarator");
4554 if (constp > 1 && ! flag_isoc99)
4555 pedwarn ("duplicate `const'");
4556 if (volatilep > 1 && ! flag_isoc99)
4557 pedwarn ("duplicate `volatile'");
4558 if (restrictp > 1 && ! flag_isoc99)
4559 pedwarn ("duplicate `restrict'");
4561 type_quals = ((constp ? TYPE_QUAL_CONST : 0)
4562 | (restrictp ? TYPE_QUAL_RESTRICT : 0)
4563 | (volatilep ? TYPE_QUAL_VOLATILE : 0));
4566 declarator = TREE_OPERAND (declarator, 0);
4568 else
4569 abort ();
4573 /* Now TYPE has the actual type. */
4575 /* Did array size calculations overflow? */
4577 if (TREE_CODE (type) == ARRAY_TYPE
4578 && COMPLETE_TYPE_P (type)
4579 && TREE_OVERFLOW (TYPE_SIZE (type)))
4581 error ("size of array `%s' is too large", name);
4582 /* If we proceed with the array type as it is, we'll eventully
4583 crash in tree_low_cst(). */
4584 type = error_mark_node;
4587 /* If this is declaring a typedef name, return a TYPE_DECL. */
4589 if (specbits & (1 << (int) RID_TYPEDEF))
4591 tree decl;
4592 /* Note that the grammar rejects storage classes
4593 in typenames, fields or parameters */
4594 if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
4595 && type_quals)
4596 pedwarn ("ISO C forbids qualified function types");
4597 if (type_quals)
4598 type = c_build_qualified_type (type, type_quals);
4599 decl = build_decl (TYPE_DECL, declarator, type);
4600 if ((specbits & (1 << (int) RID_SIGNED))
4601 || (typedef_decl && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl)))
4602 C_TYPEDEF_EXPLICITLY_SIGNED (decl) = 1;
4603 return decl;
4606 /* Detect the case of an array type of unspecified size
4607 which came, as such, direct from a typedef name.
4608 We must copy the type, so that each identifier gets
4609 a distinct type, so that each identifier's size can be
4610 controlled separately by its own initializer. */
4612 if (type != 0 && typedef_type != 0
4613 && TREE_CODE (type) == ARRAY_TYPE && TYPE_DOMAIN (type) == 0
4614 && TYPE_MAIN_VARIANT (type) == TYPE_MAIN_VARIANT (typedef_type))
4616 type = build_array_type (TREE_TYPE (type), 0);
4617 if (size_varies)
4618 C_TYPE_VARIABLE_SIZE (type) = 1;
4621 /* If this is a type name (such as, in a cast or sizeof),
4622 compute the type and return it now. */
4624 if (decl_context == TYPENAME)
4626 /* Note that the grammar rejects storage classes
4627 in typenames, fields or parameters */
4628 if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
4629 && type_quals)
4630 pedwarn ("ISO C forbids const or volatile function types");
4631 if (type_quals)
4632 type = c_build_qualified_type (type, type_quals);
4633 return type;
4636 /* Aside from typedefs and type names (handle above),
4637 `void' at top level (not within pointer)
4638 is allowed only in public variables.
4639 We don't complain about parms either, but that is because
4640 a better error message can be made later. */
4642 if (VOID_TYPE_P (type) && decl_context != PARM
4643 && ! ((decl_context != FIELD && TREE_CODE (type) != FUNCTION_TYPE)
4644 && ((specbits & (1 << (int) RID_EXTERN))
4645 || (current_binding_level == global_binding_level
4646 && !(specbits
4647 & ((1 << (int) RID_STATIC) | (1 << (int) RID_REGISTER)))))))
4649 error ("variable or field `%s' declared void", name);
4650 type = integer_type_node;
4653 /* Now create the decl, which may be a VAR_DECL, a PARM_DECL
4654 or a FUNCTION_DECL, depending on DECL_CONTEXT and TYPE. */
4657 register tree decl;
4659 if (decl_context == PARM)
4661 tree type_as_written = type;
4662 tree promoted_type;
4664 /* A parameter declared as an array of T is really a pointer to T.
4665 One declared as a function is really a pointer to a function. */
4667 if (TREE_CODE (type) == ARRAY_TYPE)
4669 /* Transfer const-ness of array into that of type pointed to. */
4670 type = TREE_TYPE (type);
4671 if (type_quals)
4672 type = c_build_qualified_type (type, type_quals);
4673 type = build_pointer_type (type);
4674 type_quals = TYPE_UNQUALIFIED;
4675 size_varies = 0;
4677 else if (TREE_CODE (type) == FUNCTION_TYPE)
4679 if (pedantic && type_quals)
4680 pedwarn ("ISO C forbids qualified function types");
4681 if (type_quals)
4682 type = c_build_qualified_type (type, type_quals);
4683 type = build_pointer_type (type);
4684 type_quals = TYPE_UNQUALIFIED;
4687 decl = build_decl (PARM_DECL, declarator, type);
4688 if (size_varies)
4689 C_DECL_VARIABLE_SIZE (decl) = 1;
4691 /* Compute the type actually passed in the parmlist,
4692 for the case where there is no prototype.
4693 (For example, shorts and chars are passed as ints.)
4694 When there is a prototype, this is overridden later. */
4696 if (type == error_mark_node)
4697 promoted_type = type;
4698 else
4700 promoted_type = simple_type_promotes_to (type);
4701 if (! promoted_type)
4702 promoted_type = type;
4705 DECL_ARG_TYPE (decl) = promoted_type;
4706 DECL_ARG_TYPE_AS_WRITTEN (decl) = type_as_written;
4708 else if (decl_context == FIELD)
4710 /* Structure field. It may not be a function. */
4712 if (TREE_CODE (type) == FUNCTION_TYPE)
4714 error ("field `%s' declared as a function", name);
4715 type = build_pointer_type (type);
4717 else if (TREE_CODE (type) != ERROR_MARK
4718 && !COMPLETE_OR_UNBOUND_ARRAY_TYPE_P (type))
4720 error ("field `%s' has incomplete type", name);
4721 type = error_mark_node;
4723 /* Move type qualifiers down to element of an array. */
4724 if (TREE_CODE (type) == ARRAY_TYPE && type_quals)
4726 type = build_array_type (c_build_qualified_type (TREE_TYPE (type),
4727 type_quals),
4728 TYPE_DOMAIN (type));
4729 #if 0
4730 /* Leave the field const or volatile as well. */
4731 type_quals = TYPE_UNQUALIFIED;
4732 #endif
4734 decl = build_decl (FIELD_DECL, declarator, type);
4735 DECL_NONADDRESSABLE_P (decl) = bitfield;
4737 if (size_varies)
4738 C_DECL_VARIABLE_SIZE (decl) = 1;
4740 else if (TREE_CODE (type) == FUNCTION_TYPE)
4742 /* Every function declaration is "external"
4743 except for those which are inside a function body
4744 in which `auto' is used.
4745 That is a case not specified by ANSI C,
4746 and we use it for forward declarations for nested functions. */
4747 int extern_ref = (!(specbits & (1 << (int) RID_AUTO))
4748 || current_binding_level == global_binding_level);
4750 if (specbits & (1 << (int) RID_AUTO)
4751 && (pedantic || current_binding_level == global_binding_level))
4752 pedwarn ("invalid storage class for function `%s'", name);
4753 if (specbits & (1 << (int) RID_REGISTER))
4754 error ("invalid storage class for function `%s'", name);
4755 /* Function declaration not at top level.
4756 Storage classes other than `extern' are not allowed
4757 and `extern' makes no difference. */
4758 if (current_binding_level != global_binding_level
4759 && (specbits & ((1 << (int) RID_STATIC) | (1 << (int) RID_INLINE)))
4760 && pedantic)
4761 pedwarn ("invalid storage class for function `%s'", name);
4763 decl = build_decl (FUNCTION_DECL, declarator, type);
4764 decl = build_decl_attribute_variant (decl, decl_machine_attr);
4766 if (pedantic && type_quals && ! DECL_IN_SYSTEM_HEADER (decl))
4767 pedwarn ("ISO C forbids qualified function types");
4769 /* GNU C interprets a `volatile void' return type to indicate
4770 that the function does not return. */
4771 if ((type_quals & TYPE_QUAL_VOLATILE)
4772 && !VOID_TYPE_P (TREE_TYPE (TREE_TYPE (decl))))
4773 warning ("`noreturn' function returns non-void value");
4775 if (extern_ref)
4776 DECL_EXTERNAL (decl) = 1;
4777 /* Record absence of global scope for `static' or `auto'. */
4778 TREE_PUBLIC (decl)
4779 = !(specbits & ((1 << (int) RID_STATIC) | (1 << (int) RID_AUTO)));
4781 /* Record presence of `inline', if it is reasonable. */
4782 if (inlinep)
4784 if (MAIN_NAME_P (declarator))
4785 warning ("cannot inline function `main'");
4786 else
4787 /* Assume that otherwise the function can be inlined. */
4788 DECL_INLINE (decl) = 1;
4790 if (specbits & (1 << (int) RID_EXTERN))
4791 current_extern_inline = 1;
4794 else
4796 /* It's a variable. */
4797 /* An uninitialized decl with `extern' is a reference. */
4798 int extern_ref = !initialized && (specbits & (1 << (int) RID_EXTERN));
4800 /* Move type qualifiers down to element of an array. */
4801 if (TREE_CODE (type) == ARRAY_TYPE && type_quals)
4803 int saved_align = TYPE_ALIGN(type);
4804 type = build_array_type (c_build_qualified_type (TREE_TYPE (type),
4805 type_quals),
4806 TYPE_DOMAIN (type));
4807 TYPE_ALIGN (type) = saved_align;
4808 #if 0 /* Leave the variable const or volatile as well. */
4809 type_quals = TYPE_UNQUALIFIED;
4810 #endif
4813 decl = build_decl (VAR_DECL, declarator, type);
4814 if (size_varies)
4815 C_DECL_VARIABLE_SIZE (decl) = 1;
4817 if (inlinep)
4818 pedwarn_with_decl (decl, "variable `%s' declared `inline'");
4820 DECL_EXTERNAL (decl) = extern_ref;
4821 /* At top level, the presence of a `static' or `register' storage
4822 class specifier, or the absence of all storage class specifiers
4823 makes this declaration a definition (perhaps tentative). Also,
4824 the absence of both `static' and `register' makes it public. */
4825 if (current_binding_level == global_binding_level)
4827 TREE_PUBLIC (decl)
4828 = !(specbits
4829 & ((1 << (int) RID_STATIC) | (1 << (int) RID_REGISTER)));
4830 TREE_STATIC (decl) = ! DECL_EXTERNAL (decl);
4832 /* Not at top level, only `static' makes a static definition. */
4833 else
4835 TREE_STATIC (decl) = (specbits & (1 << (int) RID_STATIC)) != 0;
4836 TREE_PUBLIC (decl) = DECL_EXTERNAL (decl);
4840 /* Record `register' declaration for warnings on &
4841 and in case doing stupid register allocation. */
4843 if (specbits & (1 << (int) RID_REGISTER))
4844 DECL_REGISTER (decl) = 1;
4846 /* Record constancy and volatility. */
4847 c_apply_type_quals_to_decl (type_quals, decl);
4849 /* If a type has volatile components, it should be stored in memory.
4850 Otherwise, the fact that those components are volatile
4851 will be ignored, and would even crash the compiler. */
4852 if (C_TYPE_FIELDS_VOLATILE (TREE_TYPE (decl)))
4853 mark_addressable (decl);
4855 return decl;
4859 /* Decode the parameter-list info for a function type or function definition.
4860 The argument is the value returned by `get_parm_info' (or made in parse.y
4861 if there is an identifier list instead of a parameter decl list).
4862 These two functions are separate because when a function returns
4863 or receives functions then each is called multiple times but the order
4864 of calls is different. The last call to `grokparms' is always the one
4865 that contains the formal parameter names of a function definition.
4867 Store in `last_function_parms' a chain of the decls of parms.
4868 Also store in `last_function_parm_tags' a chain of the struct, union,
4869 and enum tags declared among the parms.
4871 Return a list of arg types to use in the FUNCTION_TYPE for this function.
4873 FUNCDEF_FLAG is nonzero for a function definition, 0 for
4874 a mere declaration. A nonempty identifier-list gets an error message
4875 when FUNCDEF_FLAG is zero. */
4877 static tree
4878 grokparms (parms_info, funcdef_flag)
4879 tree parms_info;
4880 int funcdef_flag;
4882 tree first_parm = TREE_CHAIN (parms_info);
4884 last_function_parms = TREE_PURPOSE (parms_info);
4885 last_function_parm_tags = TREE_VALUE (parms_info);
4887 if (warn_strict_prototypes && first_parm == 0 && !funcdef_flag
4888 && !in_system_header)
4889 warning ("function declaration isn't a prototype");
4891 if (first_parm != 0
4892 && TREE_CODE (TREE_VALUE (first_parm)) == IDENTIFIER_NODE)
4894 if (! funcdef_flag)
4895 pedwarn ("parameter names (without types) in function declaration");
4897 last_function_parms = first_parm;
4898 return 0;
4900 else
4902 tree parm;
4903 tree typelt;
4904 /* We no longer test FUNCDEF_FLAG.
4905 If the arg types are incomplete in a declaration,
4906 they must include undefined tags.
4907 These tags can never be defined in the scope of the declaration,
4908 so the types can never be completed,
4909 and no call can be compiled successfully. */
4910 #if 0
4911 /* In a fcn definition, arg types must be complete. */
4912 if (funcdef_flag)
4913 #endif
4914 for (parm = last_function_parms, typelt = first_parm;
4915 parm;
4916 parm = TREE_CHAIN (parm))
4917 /* Skip over any enumeration constants declared here. */
4918 if (TREE_CODE (parm) == PARM_DECL)
4920 /* Barf if the parameter itself has an incomplete type. */
4921 tree type = TREE_VALUE (typelt);
4922 if (type == error_mark_node)
4923 continue;
4924 if (!COMPLETE_TYPE_P (type))
4926 if (funcdef_flag && DECL_NAME (parm) != 0)
4927 error ("parameter `%s' has incomplete type",
4928 IDENTIFIER_POINTER (DECL_NAME (parm)));
4929 else
4930 warning ("parameter has incomplete type");
4931 if (funcdef_flag)
4933 TREE_VALUE (typelt) = error_mark_node;
4934 TREE_TYPE (parm) = error_mark_node;
4937 #if 0
4938 /* This has been replaced by parm_tags_warning, which
4939 uses a more accurate criterion for what to warn
4940 about. */
4941 else
4943 /* Now warn if is a pointer to an incomplete type. */
4944 while (TREE_CODE (type) == POINTER_TYPE
4945 || TREE_CODE (type) == REFERENCE_TYPE)
4946 type = TREE_TYPE (type);
4947 type = TYPE_MAIN_VARIANT (type);
4948 if (!COMPLETE_TYPE_P (type))
4950 if (DECL_NAME (parm) != 0)
4951 warning ("parameter `%s' points to incomplete type",
4952 IDENTIFIER_POINTER (DECL_NAME (parm)));
4953 else
4954 warning ("parameter points to incomplete type");
4957 #endif
4958 typelt = TREE_CHAIN (typelt);
4961 return first_parm;
4965 /* Return a tree_list node with info on a parameter list just parsed.
4966 The TREE_PURPOSE is a chain of decls of those parms.
4967 The TREE_VALUE is a list of structure, union and enum tags defined.
4968 The TREE_CHAIN is a list of argument types to go in the FUNCTION_TYPE.
4969 This tree_list node is later fed to `grokparms'.
4971 VOID_AT_END nonzero means append `void' to the end of the type-list.
4972 Zero means the parmlist ended with an ellipsis so don't append `void'. */
4974 tree
4975 get_parm_info (void_at_end)
4976 int void_at_end;
4978 register tree decl, t;
4979 register tree types = 0;
4980 int erred = 0;
4981 tree tags = gettags ();
4982 tree parms = getdecls ();
4983 tree new_parms = 0;
4984 tree order = current_binding_level->parm_order;
4986 /* Just `void' (and no ellipsis) is special. There are really no parms.
4987 But if the `void' is qualified (by `const' or `volatile') or has a
4988 storage class specifier (`register'), then the behavior is undefined;
4989 by not counting it as the special case of `void' we will cause an
4990 error later. Typedefs for `void' are OK (see DR#157). */
4991 if (void_at_end && parms != 0
4992 && TREE_CHAIN (parms) == 0
4993 && VOID_TYPE_P (TREE_TYPE (parms))
4994 && ! TREE_THIS_VOLATILE (parms)
4995 && ! TREE_READONLY (parms)
4996 && ! DECL_REGISTER (parms)
4997 && DECL_NAME (parms) == 0)
4999 parms = NULL_TREE;
5000 storedecls (NULL_TREE);
5001 return tree_cons (NULL_TREE, NULL_TREE,
5002 tree_cons (NULL_TREE, void_type_node, NULL_TREE));
5005 /* Extract enumerator values and other non-parms declared with the parms.
5006 Likewise any forward parm decls that didn't have real parm decls. */
5007 for (decl = parms; decl;)
5009 tree next = TREE_CHAIN (decl);
5011 if (TREE_CODE (decl) != PARM_DECL)
5013 TREE_CHAIN (decl) = new_parms;
5014 new_parms = decl;
5016 else if (TREE_ASM_WRITTEN (decl))
5018 error_with_decl (decl,
5019 "parameter `%s' has just a forward declaration");
5020 TREE_CHAIN (decl) = new_parms;
5021 new_parms = decl;
5023 decl = next;
5026 /* Put the parm decls back in the order they were in in the parm list. */
5027 for (t = order; t; t = TREE_CHAIN (t))
5029 if (TREE_CHAIN (t))
5030 TREE_CHAIN (TREE_VALUE (t)) = TREE_VALUE (TREE_CHAIN (t));
5031 else
5032 TREE_CHAIN (TREE_VALUE (t)) = 0;
5035 new_parms = chainon (order ? nreverse (TREE_VALUE (order)) : 0,
5036 new_parms);
5038 /* Store the parmlist in the binding level since the old one
5039 is no longer a valid list. (We have changed the chain pointers.) */
5040 storedecls (new_parms);
5042 for (decl = new_parms; decl; decl = TREE_CHAIN (decl))
5043 /* There may also be declarations for enumerators if an enumeration
5044 type is declared among the parms. Ignore them here. */
5045 if (TREE_CODE (decl) == PARM_DECL)
5047 /* Since there is a prototype,
5048 args are passed in their declared types. */
5049 tree type = TREE_TYPE (decl);
5050 DECL_ARG_TYPE (decl) = type;
5051 if (PROMOTE_PROTOTYPES
5052 && (TREE_CODE (type) == INTEGER_TYPE
5053 || TREE_CODE (type) == ENUMERAL_TYPE)
5054 && TYPE_PRECISION (type) < TYPE_PRECISION (integer_type_node))
5055 DECL_ARG_TYPE (decl) = integer_type_node;
5057 types = tree_cons (NULL_TREE, TREE_TYPE (decl), types);
5058 if (VOID_TYPE_P (TREE_VALUE (types)) && ! erred
5059 && DECL_NAME (decl) == 0)
5061 error ("`void' in parameter list must be the entire list");
5062 erred = 1;
5066 if (void_at_end)
5067 return tree_cons (new_parms, tags,
5068 nreverse (tree_cons (NULL_TREE, void_type_node, types)));
5070 return tree_cons (new_parms, tags, nreverse (types));
5073 /* At end of parameter list, warn about any struct, union or enum tags
5074 defined within. Do so because these types cannot ever become complete. */
5076 void
5077 parmlist_tags_warning ()
5079 tree elt;
5080 static int already;
5082 for (elt = current_binding_level->tags; elt; elt = TREE_CHAIN (elt))
5084 enum tree_code code = TREE_CODE (TREE_VALUE (elt));
5085 /* An anonymous union parm type is meaningful as a GNU extension.
5086 So don't warn for that. */
5087 if (code == UNION_TYPE && TREE_PURPOSE (elt) == 0 && !pedantic)
5088 continue;
5089 if (TREE_PURPOSE (elt) != 0)
5090 warning ("`%s %s' declared inside parameter list",
5091 (code == RECORD_TYPE ? "struct"
5092 : code == UNION_TYPE ? "union"
5093 : "enum"),
5094 IDENTIFIER_POINTER (TREE_PURPOSE (elt)));
5095 else
5097 /* For translation these need to be seperate warnings */
5098 if (code == RECORD_TYPE)
5099 warning ("anonymous struct declared inside parameter list");
5100 else if (code == UNION_TYPE)
5101 warning ("anonymous union declared inside parameter list");
5102 else
5103 warning ("anonymous enum declared inside parameter list");
5105 if (! already)
5107 warning ("its scope is only this definition or declaration, which is probably not what you want.");
5108 already = 1;
5113 /* Get the struct, enum or union (CODE says which) with tag NAME.
5114 Define the tag as a forward-reference if it is not defined. */
5116 tree
5117 xref_tag (code, name)
5118 enum tree_code code;
5119 tree name;
5121 /* If a cross reference is requested, look up the type
5122 already defined for this tag and return it. */
5124 register tree ref = lookup_tag (code, name, current_binding_level, 0);
5125 /* Even if this is the wrong type of tag, return what we found.
5126 There will be an error message anyway, from pending_xref_error.
5127 If we create an empty xref just for an invalid use of the type,
5128 the main result is to create lots of superfluous error messages. */
5129 if (ref)
5130 return ref;
5132 /* If no such tag is yet defined, create a forward-reference node
5133 and record it as the "definition".
5134 When a real declaration of this type is found,
5135 the forward-reference will be altered into a real type. */
5137 ref = make_node (code);
5138 if (code == ENUMERAL_TYPE)
5140 /* Give the type a default layout like unsigned int
5141 to avoid crashing if it does not get defined. */
5142 TYPE_MODE (ref) = TYPE_MODE (unsigned_type_node);
5143 TYPE_ALIGN (ref) = TYPE_ALIGN (unsigned_type_node);
5144 TYPE_USER_ALIGN (ref) = 0;
5145 TREE_UNSIGNED (ref) = 1;
5146 TYPE_PRECISION (ref) = TYPE_PRECISION (unsigned_type_node);
5147 TYPE_MIN_VALUE (ref) = TYPE_MIN_VALUE (unsigned_type_node);
5148 TYPE_MAX_VALUE (ref) = TYPE_MAX_VALUE (unsigned_type_node);
5151 pushtag (name, ref);
5153 return ref;
5156 /* Make sure that the tag NAME is defined *in the current binding level*
5157 at least as a forward reference.
5158 CODE says which kind of tag NAME ought to be. */
5160 tree
5161 start_struct (code, name)
5162 enum tree_code code;
5163 tree name;
5165 /* If there is already a tag defined at this binding level
5166 (as a forward reference), just return it. */
5168 register tree ref = 0;
5170 if (name != 0)
5171 ref = lookup_tag (code, name, current_binding_level, 1);
5172 if (ref && TREE_CODE (ref) == code)
5174 C_TYPE_BEING_DEFINED (ref) = 1;
5175 TYPE_PACKED (ref) = flag_pack_struct;
5176 if (TYPE_FIELDS (ref))
5177 error ("redefinition of `%s %s'",
5178 code == UNION_TYPE ? "union" : "struct",
5179 IDENTIFIER_POINTER (name));
5181 return ref;
5184 /* Otherwise create a forward-reference just so the tag is in scope. */
5186 ref = make_node (code);
5187 pushtag (name, ref);
5188 C_TYPE_BEING_DEFINED (ref) = 1;
5189 TYPE_PACKED (ref) = flag_pack_struct;
5190 return ref;
5193 /* Process the specs, declarator (NULL if omitted) and width (NULL if omitted)
5194 of a structure component, returning a FIELD_DECL node.
5195 WIDTH is non-NULL for bit fields only, and is an INTEGER_CST node.
5197 This is done during the parsing of the struct declaration.
5198 The FIELD_DECL nodes are chained together and the lot of them
5199 are ultimately passed to `build_struct' to make the RECORD_TYPE node. */
5201 tree
5202 grokfield (filename, line, declarator, declspecs, width)
5203 const char *filename ATTRIBUTE_UNUSED;
5204 int line ATTRIBUTE_UNUSED;
5205 tree declarator, declspecs, width;
5207 tree value;
5209 value = grokdeclarator (declarator, declspecs, width ? BITFIELD : FIELD, 0);
5211 finish_decl (value, NULL_TREE, NULL_TREE);
5212 DECL_INITIAL (value) = width;
5214 maybe_objc_check_decl (value);
5215 return value;
5218 /* Fill in the fields of a RECORD_TYPE or UNION_TYPE node, T.
5219 FIELDLIST is a chain of FIELD_DECL nodes for the fields.
5220 ATTRIBUTES are attributes to be applied to the structure. */
5222 tree
5223 finish_struct (t, fieldlist, attributes)
5224 tree t;
5225 tree fieldlist;
5226 tree attributes;
5228 register tree x;
5229 int toplevel = global_binding_level == current_binding_level;
5230 int saw_named_field;
5232 /* If this type was previously laid out as a forward reference,
5233 make sure we lay it out again. */
5235 TYPE_SIZE (t) = 0;
5237 decl_attributes (t, attributes, NULL_TREE);
5239 /* Nameless union parm types are useful as GCC extension. */
5240 if (! (TREE_CODE (t) == UNION_TYPE && TYPE_NAME (t) == 0) && !pedantic)
5241 /* Otherwise, warn about any struct or union def. in parmlist. */
5242 if (in_parm_level_p ())
5244 if (pedantic)
5245 pedwarn ("%s defined inside parms",
5246 TREE_CODE (t) == UNION_TYPE ? _("union") : _("structure"));
5247 else if (! flag_traditional)
5248 warning ("%s defined inside parms",
5249 TREE_CODE (t) == UNION_TYPE ? _("union") : _("structure"));
5252 if (pedantic)
5254 for (x = fieldlist; x; x = TREE_CHAIN (x))
5255 if (DECL_NAME (x) != 0)
5256 break;
5258 if (x == 0)
5259 pedwarn ("%s has no %s",
5260 TREE_CODE (t) == UNION_TYPE ? _("union") : _("struct"),
5261 fieldlist ? _("named members") : _("members"));
5264 /* Install struct as DECL_CONTEXT of each field decl.
5265 Also process specified field sizes,m which is found in the DECL_INITIAL.
5266 Store 0 there, except for ": 0" fields (so we can find them
5267 and delete them, below). */
5269 saw_named_field = 0;
5270 for (x = fieldlist; x; x = TREE_CHAIN (x))
5272 DECL_CONTEXT (x) = t;
5273 DECL_PACKED (x) |= TYPE_PACKED (t);
5275 /* If any field is const, the structure type is pseudo-const. */
5276 if (TREE_READONLY (x))
5277 C_TYPE_FIELDS_READONLY (t) = 1;
5278 else
5280 /* A field that is pseudo-const makes the structure likewise. */
5281 tree t1 = TREE_TYPE (x);
5282 while (TREE_CODE (t1) == ARRAY_TYPE)
5283 t1 = TREE_TYPE (t1);
5284 if ((TREE_CODE (t1) == RECORD_TYPE || TREE_CODE (t1) == UNION_TYPE)
5285 && C_TYPE_FIELDS_READONLY (t1))
5286 C_TYPE_FIELDS_READONLY (t) = 1;
5289 /* Any field that is volatile means variables of this type must be
5290 treated in some ways as volatile. */
5291 if (TREE_THIS_VOLATILE (x))
5292 C_TYPE_FIELDS_VOLATILE (t) = 1;
5294 /* Any field of nominal variable size implies structure is too. */
5295 if (C_DECL_VARIABLE_SIZE (x))
5296 C_TYPE_VARIABLE_SIZE (t) = 1;
5298 /* Detect invalid nested redefinition. */
5299 if (TREE_TYPE (x) == t)
5300 error ("nested redefinition of `%s'",
5301 IDENTIFIER_POINTER (TYPE_NAME (t)));
5303 /* Detect invalid bit-field size. */
5304 if (DECL_INITIAL (x))
5305 STRIP_NOPS (DECL_INITIAL (x));
5306 if (DECL_INITIAL (x))
5308 if (TREE_CODE (DECL_INITIAL (x)) == INTEGER_CST)
5309 constant_expression_warning (DECL_INITIAL (x));
5310 else
5312 error_with_decl (x,
5313 "bit-field `%s' width not an integer constant");
5314 DECL_INITIAL (x) = NULL;
5318 /* Detect invalid bit-field type. */
5319 if (DECL_INITIAL (x)
5320 && TREE_CODE (TREE_TYPE (x)) != INTEGER_TYPE
5321 && TREE_CODE (TREE_TYPE (x)) != BOOLEAN_TYPE
5322 && TREE_CODE (TREE_TYPE (x)) != ENUMERAL_TYPE)
5324 error_with_decl (x, "bit-field `%s' has invalid type");
5325 DECL_INITIAL (x) = NULL;
5328 if (DECL_INITIAL (x) && pedantic
5329 && TYPE_MAIN_VARIANT (TREE_TYPE (x)) != integer_type_node
5330 && TYPE_MAIN_VARIANT (TREE_TYPE (x)) != unsigned_type_node
5331 && TYPE_MAIN_VARIANT (TREE_TYPE (x)) != c_bool_type_node
5332 /* Accept an enum that's equivalent to int or unsigned int. */
5333 && !(TREE_CODE (TREE_TYPE (x)) == ENUMERAL_TYPE
5334 && (TYPE_PRECISION (TREE_TYPE (x))
5335 == TYPE_PRECISION (integer_type_node))))
5336 pedwarn_with_decl (x, "bit-field `%s' type invalid in ISO C");
5338 /* Detect and ignore out of range field width and process valid
5339 field widths. */
5340 if (DECL_INITIAL (x))
5342 int max_width;
5343 if (TYPE_MAIN_VARIANT (TREE_TYPE (x)) == c_bool_type_node)
5344 max_width = CHAR_TYPE_SIZE;
5345 else
5346 max_width = TYPE_PRECISION (TREE_TYPE (x));
5347 if (tree_int_cst_sgn (DECL_INITIAL (x)) < 0)
5348 error_with_decl (x, "negative width in bit-field `%s'");
5349 else if (0 < compare_tree_int (DECL_INITIAL (x), max_width))
5350 pedwarn_with_decl (x, "width of `%s' exceeds its type");
5351 else if (integer_zerop (DECL_INITIAL (x)) && DECL_NAME (x) != 0)
5352 error_with_decl (x, "zero width for bit-field `%s'");
5353 else
5355 /* The test above has assured us that TREE_INT_CST_HIGH is 0. */
5356 unsigned HOST_WIDE_INT width
5357 = TREE_INT_CST_LOW (DECL_INITIAL (x));
5359 if (TREE_CODE (TREE_TYPE (x)) == ENUMERAL_TYPE
5360 && (width < min_precision (TYPE_MIN_VALUE (TREE_TYPE (x)),
5361 TREE_UNSIGNED (TREE_TYPE (x)))
5362 || (width
5363 < min_precision (TYPE_MAX_VALUE (TREE_TYPE (x)),
5364 TREE_UNSIGNED (TREE_TYPE (x))))))
5365 warning_with_decl (x,
5366 "`%s' is narrower than values of its type");
5368 DECL_SIZE (x) = bitsize_int (width);
5369 DECL_BIT_FIELD (x) = 1;
5370 SET_DECL_C_BIT_FIELD (x);
5372 if (width == 0)
5374 /* field size 0 => force desired amount of alignment. */
5375 #ifdef EMPTY_FIELD_BOUNDARY
5376 DECL_ALIGN (x) = MAX (DECL_ALIGN (x), EMPTY_FIELD_BOUNDARY);
5377 #endif
5378 #ifdef PCC_BITFIELD_TYPE_MATTERS
5379 if (PCC_BITFIELD_TYPE_MATTERS)
5381 DECL_ALIGN (x) = MAX (DECL_ALIGN (x),
5382 TYPE_ALIGN (TREE_TYPE (x)));
5383 DECL_USER_ALIGN (x) |= TYPE_USER_ALIGN (TREE_TYPE (x));
5385 #endif
5390 else if (TREE_TYPE (x) != error_mark_node)
5392 unsigned int min_align = (DECL_PACKED (x) ? BITS_PER_UNIT
5393 : TYPE_ALIGN (TREE_TYPE (x)));
5395 /* Non-bit-fields are aligned for their type, except packed
5396 fields which require only BITS_PER_UNIT alignment. */
5397 DECL_ALIGN (x) = MAX (DECL_ALIGN (x), min_align);
5398 if (! DECL_PACKED (x))
5399 DECL_USER_ALIGN (x) |= TYPE_USER_ALIGN (TREE_TYPE (x));
5402 DECL_INITIAL (x) = 0;
5404 /* Detect flexible array member in an invalid context. */
5405 if (TREE_CODE (TREE_TYPE (x)) == ARRAY_TYPE
5406 && TYPE_SIZE (TREE_TYPE (x)) == NULL_TREE
5407 && TYPE_DOMAIN (TREE_TYPE (x)) != NULL_TREE
5408 && TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (x))) == NULL_TREE)
5410 if (TREE_CODE (t) == UNION_TYPE)
5411 error_with_decl (x, "flexible array member in union");
5412 else if (TREE_CHAIN (x) != NULL_TREE)
5413 error_with_decl (x, "flexible array member not at end of struct");
5414 else if (! saw_named_field)
5415 error_with_decl (x, "flexible array member in otherwise empty struct");
5417 if (DECL_NAME (x))
5418 saw_named_field = 1;
5421 /* Delete all duplicate fields from the fieldlist */
5422 for (x = fieldlist; x && TREE_CHAIN (x);)
5423 /* Anonymous fields aren't duplicates. */
5424 if (DECL_NAME (TREE_CHAIN (x)) == 0)
5425 x = TREE_CHAIN (x);
5426 else
5428 register tree y = fieldlist;
5430 while (1)
5432 if (DECL_NAME (y) == DECL_NAME (TREE_CHAIN (x)))
5433 break;
5434 if (y == x)
5435 break;
5436 y = TREE_CHAIN (y);
5438 if (DECL_NAME (y) == DECL_NAME (TREE_CHAIN (x)))
5440 error_with_decl (TREE_CHAIN (x), "duplicate member `%s'");
5441 TREE_CHAIN (x) = TREE_CHAIN (TREE_CHAIN (x));
5443 else
5444 x = TREE_CHAIN (x);
5447 /* Now we have the nearly final fieldlist. Record it,
5448 then lay out the structure or union (including the fields). */
5450 TYPE_FIELDS (t) = fieldlist;
5452 layout_type (t);
5454 /* Delete all zero-width bit-fields from the fieldlist */
5456 tree *fieldlistp = &fieldlist;
5457 while (*fieldlistp)
5458 if (TREE_CODE (*fieldlistp) == FIELD_DECL && DECL_INITIAL (*fieldlistp))
5459 *fieldlistp = TREE_CHAIN (*fieldlistp);
5460 else
5461 fieldlistp = &TREE_CHAIN (*fieldlistp);
5464 /* Now we have the truly final field list.
5465 Store it in this type and in the variants. */
5467 TYPE_FIELDS (t) = fieldlist;
5469 for (x = TYPE_MAIN_VARIANT (t); x; x = TYPE_NEXT_VARIANT (x))
5471 TYPE_FIELDS (x) = TYPE_FIELDS (t);
5472 TYPE_LANG_SPECIFIC (x) = TYPE_LANG_SPECIFIC (t);
5473 TYPE_ALIGN (x) = TYPE_ALIGN (t);
5474 TYPE_USER_ALIGN (x) = TYPE_USER_ALIGN (t);
5477 /* If this was supposed to be a transparent union, but we can't
5478 make it one, warn and turn off the flag. */
5479 if (TREE_CODE (t) == UNION_TYPE
5480 && TYPE_TRANSPARENT_UNION (t)
5481 && TYPE_MODE (t) != DECL_MODE (TYPE_FIELDS (t)))
5483 TYPE_TRANSPARENT_UNION (t) = 0;
5484 warning ("union cannot be made transparent");
5487 /* If this structure or union completes the type of any previous
5488 variable declaration, lay it out and output its rtl. */
5490 if (current_binding_level->n_incomplete != 0)
5492 tree decl;
5493 for (decl = current_binding_level->names; decl; decl = TREE_CHAIN (decl))
5495 if (TYPE_MAIN_VARIANT (TREE_TYPE (decl)) == TYPE_MAIN_VARIANT (t)
5496 && TREE_CODE (decl) != TYPE_DECL)
5498 layout_decl (decl, 0);
5499 /* This is a no-op in c-lang.c or something real in objc-actions.c. */
5500 maybe_objc_check_decl (decl);
5501 rest_of_decl_compilation (decl, NULL_PTR, toplevel, 0);
5502 if (! toplevel)
5503 expand_decl (decl);
5504 --current_binding_level->n_incomplete;
5506 else if (!COMPLETE_TYPE_P (TREE_TYPE (decl))
5507 && TREE_CODE (TREE_TYPE (decl)) == ARRAY_TYPE)
5509 tree element = TREE_TYPE (decl);
5510 while (TREE_CODE (element) == ARRAY_TYPE)
5511 element = TREE_TYPE (element);
5512 if (element == t)
5513 layout_array_type (TREE_TYPE (decl));
5518 /* Finish debugging output for this type. */
5519 rest_of_type_compilation (t, toplevel);
5521 return t;
5524 /* Lay out the type T, and its element type, and so on. */
5526 static void
5527 layout_array_type (t)
5528 tree t;
5530 if (TREE_CODE (TREE_TYPE (t)) == ARRAY_TYPE)
5531 layout_array_type (TREE_TYPE (t));
5532 layout_type (t);
5535 /* Begin compiling the definition of an enumeration type.
5536 NAME is its name (or null if anonymous).
5537 Returns the type object, as yet incomplete.
5538 Also records info about it so that build_enumerator
5539 may be used to declare the individual values as they are read. */
5541 tree
5542 start_enum (name)
5543 tree name;
5545 register tree enumtype = 0;
5547 /* If this is the real definition for a previous forward reference,
5548 fill in the contents in the same object that used to be the
5549 forward reference. */
5551 if (name != 0)
5552 enumtype = lookup_tag (ENUMERAL_TYPE, name, current_binding_level, 1);
5554 if (enumtype == 0 || TREE_CODE (enumtype) != ENUMERAL_TYPE)
5556 enumtype = make_node (ENUMERAL_TYPE);
5557 pushtag (name, enumtype);
5560 C_TYPE_BEING_DEFINED (enumtype) = 1;
5562 if (TYPE_VALUES (enumtype) != 0)
5564 /* This enum is a named one that has been declared already. */
5565 error ("redeclaration of `enum %s'", IDENTIFIER_POINTER (name));
5567 /* Completely replace its old definition.
5568 The old enumerators remain defined, however. */
5569 TYPE_VALUES (enumtype) = 0;
5572 enum_next_value = integer_zero_node;
5573 enum_overflow = 0;
5575 if (flag_short_enums)
5576 TYPE_PACKED (enumtype) = 1;
5578 return enumtype;
5581 /* After processing and defining all the values of an enumeration type,
5582 install their decls in the enumeration type and finish it off.
5583 ENUMTYPE is the type object, VALUES a list of decl-value pairs,
5584 and ATTRIBUTES are the specified attributes.
5585 Returns ENUMTYPE. */
5587 tree
5588 finish_enum (enumtype, values, attributes)
5589 tree enumtype;
5590 tree values;
5591 tree attributes;
5593 register tree pair, tem;
5594 tree minnode = 0, maxnode = 0, enum_value_type;
5595 int precision, unsign;
5596 int toplevel = (global_binding_level == current_binding_level);
5598 if (in_parm_level_p ())
5599 warning ("enum defined inside parms");
5601 decl_attributes (enumtype, attributes, NULL_TREE);
5603 /* Calculate the maximum value of any enumerator in this type. */
5605 if (values == error_mark_node)
5606 minnode = maxnode = integer_zero_node;
5607 else
5609 minnode = maxnode = TREE_VALUE (values);
5610 for (pair = TREE_CHAIN (values); pair; pair = TREE_CHAIN (pair))
5612 tree value = TREE_VALUE (pair);
5613 if (tree_int_cst_lt (maxnode, value))
5614 maxnode = value;
5615 if (tree_int_cst_lt (value, minnode))
5616 minnode = value;
5620 /* Construct the final type of this enumeration. It is the same
5621 as one of the integral types - the narrowest one that fits, except
5622 that normally we only go as narrow as int - and signed iff any of
5623 the values are negative. */
5624 unsign = (tree_int_cst_sgn (minnode) >= 0);
5625 precision = MAX (min_precision (minnode, unsign),
5626 min_precision (maxnode, unsign));
5627 if (TYPE_PACKED (enumtype) || precision > TYPE_PRECISION (integer_type_node))
5629 tree narrowest = type_for_size (precision, unsign);
5630 if (narrowest == 0)
5632 warning ("enumeration values exceed range of largest integer");
5633 narrowest = long_long_integer_type_node;
5636 precision = TYPE_PRECISION (narrowest);
5638 else
5639 precision = TYPE_PRECISION (integer_type_node);
5641 if (precision == TYPE_PRECISION (integer_type_node))
5642 enum_value_type = type_for_size (precision, 0);
5643 else
5644 enum_value_type = enumtype;
5646 TYPE_MIN_VALUE (enumtype) = minnode;
5647 TYPE_MAX_VALUE (enumtype) = maxnode;
5648 TYPE_PRECISION (enumtype) = precision;
5649 TREE_UNSIGNED (enumtype) = unsign;
5650 TYPE_SIZE (enumtype) = 0;
5651 layout_type (enumtype);
5653 if (values != error_mark_node)
5655 /* Change the type of the enumerators to be the enum type. We
5656 need to do this irrespective of the size of the enum, for
5657 proper type checking. Replace the DECL_INITIALs of the
5658 enumerators, and the value slots of the list, with copies
5659 that have the enum type; they cannot be modified in place
5660 because they may be shared (e.g. integer_zero_node) Finally,
5661 change the purpose slots to point to the names of the decls. */
5662 for (pair = values; pair; pair = TREE_CHAIN (pair))
5664 tree enu = TREE_PURPOSE (pair);
5666 TREE_TYPE (enu) = enumtype;
5667 DECL_SIZE (enu) = TYPE_SIZE (enumtype);
5668 DECL_SIZE_UNIT (enu) = TYPE_SIZE_UNIT (enumtype);
5669 DECL_ALIGN (enu) = TYPE_ALIGN (enumtype);
5670 DECL_USER_ALIGN (enu) = TYPE_USER_ALIGN (enumtype);
5671 DECL_MODE (enu) = TYPE_MODE (enumtype);
5673 /* The ISO C Standard mandates enumerators to have type int,
5674 even though the underlying type of an enum type is
5675 unspecified. Here we convert any enumerators that fit in
5676 an int to type int, to avoid promotions to unsigned types
5677 when comparing integers with enumerators that fit in the
5678 int range. When -pedantic is given, build_enumerator()
5679 would have already taken care of those that don't fit. */
5680 if (int_fits_type_p (DECL_INITIAL (enu), enum_value_type))
5681 DECL_INITIAL (enu) = convert (enum_value_type, DECL_INITIAL (enu));
5682 else
5683 DECL_INITIAL (enu) = convert (enumtype, DECL_INITIAL (enu));
5685 TREE_PURPOSE (pair) = DECL_NAME (enu);
5686 TREE_VALUE (pair) = DECL_INITIAL (enu);
5689 TYPE_VALUES (enumtype) = values;
5692 /* Fix up all variant types of this enum type. */
5693 for (tem = TYPE_MAIN_VARIANT (enumtype); tem; tem = TYPE_NEXT_VARIANT (tem))
5695 if (tem == enumtype)
5696 continue;
5697 TYPE_VALUES (tem) = TYPE_VALUES (enumtype);
5698 TYPE_MIN_VALUE (tem) = TYPE_MIN_VALUE (enumtype);
5699 TYPE_MAX_VALUE (tem) = TYPE_MAX_VALUE (enumtype);
5700 TYPE_SIZE (tem) = TYPE_SIZE (enumtype);
5701 TYPE_SIZE_UNIT (tem) = TYPE_SIZE_UNIT (enumtype);
5702 TYPE_MODE (tem) = TYPE_MODE (enumtype);
5703 TYPE_PRECISION (tem) = TYPE_PRECISION (enumtype);
5704 TYPE_ALIGN (tem) = TYPE_ALIGN (enumtype);
5705 TYPE_USER_ALIGN (tem) = TYPE_USER_ALIGN (enumtype);
5706 TREE_UNSIGNED (tem) = TREE_UNSIGNED (enumtype);
5709 /* Finish debugging output for this type. */
5710 rest_of_type_compilation (enumtype, toplevel);
5712 return enumtype;
5715 /* Build and install a CONST_DECL for one value of the
5716 current enumeration type (one that was begun with start_enum).
5717 Return a tree-list containing the CONST_DECL and its value.
5718 Assignment of sequential values by default is handled here. */
5720 tree
5721 build_enumerator (name, value)
5722 tree name, value;
5724 register tree decl, type;
5726 /* Validate and default VALUE. */
5728 /* Remove no-op casts from the value. */
5729 if (value)
5730 STRIP_TYPE_NOPS (value);
5732 if (value != 0)
5734 if (TREE_CODE (value) == INTEGER_CST)
5736 value = default_conversion (value);
5737 constant_expression_warning (value);
5739 else
5741 error ("enumerator value for `%s' not integer constant",
5742 IDENTIFIER_POINTER (name));
5743 value = 0;
5747 /* Default based on previous value. */
5748 /* It should no longer be possible to have NON_LVALUE_EXPR
5749 in the default. */
5750 if (value == 0)
5752 value = enum_next_value;
5753 if (enum_overflow)
5754 error ("overflow in enumeration values");
5757 if (pedantic && ! int_fits_type_p (value, integer_type_node))
5759 pedwarn ("ISO C restricts enumerator values to range of `int'");
5760 value = convert (integer_type_node, value);
5763 /* Set basis for default for next value. */
5764 enum_next_value = build_binary_op (PLUS_EXPR, value, integer_one_node, 0);
5765 enum_overflow = tree_int_cst_lt (enum_next_value, value);
5767 /* Now create a declaration for the enum value name. */
5769 type = TREE_TYPE (value);
5770 type = type_for_size (MAX (TYPE_PRECISION (type),
5771 TYPE_PRECISION (integer_type_node)),
5772 ((flag_traditional
5773 || TYPE_PRECISION (type) >= TYPE_PRECISION (integer_type_node))
5774 && TREE_UNSIGNED (type)));
5776 decl = build_decl (CONST_DECL, name, type);
5777 DECL_INITIAL (decl) = convert (type, value);
5778 pushdecl (decl);
5780 return tree_cons (decl, value, NULL_TREE);
5784 /* Create the FUNCTION_DECL for a function definition.
5785 DECLSPECS, DECLARATOR, PREFIX_ATTRIBUTES and ATTRIBUTES are the parts of
5786 the declaration; they describe the function's name and the type it returns,
5787 but twisted together in a fashion that parallels the syntax of C.
5789 This function creates a binding context for the function body
5790 as well as setting up the FUNCTION_DECL in current_function_decl.
5792 Returns 1 on success. If the DECLARATOR is not suitable for a function
5793 (it defines a datum instead), we return 0, which tells
5794 yyparse to report a parse error. */
5797 start_function (declspecs, declarator, prefix_attributes, attributes)
5798 tree declarator, declspecs, prefix_attributes, attributes;
5800 tree decl1, old_decl;
5801 tree restype;
5802 int old_immediate_size_expand = immediate_size_expand;
5804 current_function_returns_value = 0; /* Assume, until we see it does. */
5805 current_function_returns_null = 0;
5806 warn_about_return_type = 0;
5807 current_extern_inline = 0;
5808 c_function_varargs = 0;
5809 named_labels = 0;
5810 shadowed_labels = 0;
5812 /* Don't expand any sizes in the return type of the function. */
5813 immediate_size_expand = 0;
5815 decl1 = grokdeclarator (declarator, declspecs, FUNCDEF, 1);
5817 /* If the declarator is not suitable for a function definition,
5818 cause a syntax error. */
5819 if (decl1 == 0)
5821 immediate_size_expand = old_immediate_size_expand;
5822 return 0;
5825 decl_attributes (decl1, prefix_attributes, attributes);
5827 announce_function (decl1);
5829 if (!COMPLETE_OR_VOID_TYPE_P (TREE_TYPE (TREE_TYPE (decl1))))
5831 error ("return type is an incomplete type");
5832 /* Make it return void instead. */
5833 TREE_TYPE (decl1)
5834 = build_function_type (void_type_node,
5835 TYPE_ARG_TYPES (TREE_TYPE (decl1)));
5838 if (warn_about_return_type)
5839 pedwarn_c99 ("return type defaults to `int'");
5841 /* Save the parm names or decls from this function's declarator
5842 where store_parm_decls will find them. */
5843 current_function_parms = last_function_parms;
5844 current_function_parm_tags = last_function_parm_tags;
5846 /* Make the init_value nonzero so pushdecl knows this is not tentative.
5847 error_mark_node is replaced below (in poplevel) with the BLOCK. */
5848 DECL_INITIAL (decl1) = error_mark_node;
5850 /* If this definition isn't a prototype and we had a prototype declaration
5851 before, copy the arg type info from that prototype.
5852 But not if what we had before was a builtin function. */
5853 old_decl = lookup_name_current_level (DECL_NAME (decl1));
5854 if (old_decl != 0 && TREE_CODE (TREE_TYPE (old_decl)) == FUNCTION_TYPE
5855 && !DECL_BUILT_IN (old_decl)
5856 && (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (decl1)))
5857 == TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (old_decl))))
5858 && TYPE_ARG_TYPES (TREE_TYPE (decl1)) == 0)
5860 TREE_TYPE (decl1) = TREE_TYPE (old_decl);
5861 current_function_prototype_file = DECL_SOURCE_FILE (old_decl);
5862 current_function_prototype_line = DECL_SOURCE_LINE (old_decl);
5865 /* If there is no explicit declaration, look for any out-of-scope implicit
5866 declarations. */
5867 if (old_decl == 0)
5868 old_decl = IDENTIFIER_IMPLICIT_DECL (DECL_NAME (decl1));
5870 /* Optionally warn of old-fashioned def with no previous prototype. */
5871 if (warn_strict_prototypes
5872 && TYPE_ARG_TYPES (TREE_TYPE (decl1)) == 0
5873 && !(old_decl != 0
5874 && (TYPE_ARG_TYPES (TREE_TYPE (old_decl)) != 0
5875 || (DECL_BUILT_IN (old_decl)
5876 && ! C_DECL_ANTICIPATED (old_decl)))))
5877 warning ("function declaration isn't a prototype");
5878 /* Optionally warn of any global def with no previous prototype. */
5879 else if (warn_missing_prototypes
5880 && TREE_PUBLIC (decl1)
5881 && !(old_decl != 0
5882 && (TYPE_ARG_TYPES (TREE_TYPE (old_decl)) != 0
5883 || (DECL_BUILT_IN (old_decl)
5884 && ! C_DECL_ANTICIPATED (old_decl))))
5885 && ! MAIN_NAME_P (DECL_NAME (decl1)))
5886 warning_with_decl (decl1, "no previous prototype for `%s'");
5887 /* Optionally warn of any def with no previous prototype
5888 if the function has already been used. */
5889 else if (warn_missing_prototypes
5890 && old_decl != 0 && TREE_USED (old_decl)
5891 && TYPE_ARG_TYPES (TREE_TYPE (old_decl)) == 0)
5892 warning_with_decl (decl1,
5893 "`%s' was used with no prototype before its definition");
5894 /* Optionally warn of any global def with no previous declaration. */
5895 else if (warn_missing_declarations
5896 && TREE_PUBLIC (decl1)
5897 && old_decl == 0
5898 && ! MAIN_NAME_P (DECL_NAME (decl1)))
5899 warning_with_decl (decl1, "no previous declaration for `%s'");
5900 /* Optionally warn of any def with no previous declaration
5901 if the function has already been used. */
5902 else if (warn_missing_declarations
5903 && old_decl != 0 && TREE_USED (old_decl)
5904 && old_decl == IDENTIFIER_IMPLICIT_DECL (DECL_NAME (decl1)))
5905 warning_with_decl (decl1,
5906 "`%s' was used with no declaration before its definition");
5908 /* This is a definition, not a reference.
5909 So normally clear DECL_EXTERNAL.
5910 However, `extern inline' acts like a declaration
5911 except for defining how to inline. So set DECL_EXTERNAL in that case. */
5912 DECL_EXTERNAL (decl1) = current_extern_inline;
5914 #ifdef SET_DEFAULT_DECL_ATTRIBUTES
5915 SET_DEFAULT_DECL_ATTRIBUTES (decl1, attributes);
5916 #endif
5918 /* This function exists in static storage.
5919 (This does not mean `static' in the C sense!) */
5920 TREE_STATIC (decl1) = 1;
5922 /* A nested function is not global. */
5923 if (current_function_decl != 0)
5924 TREE_PUBLIC (decl1) = 0;
5926 /* Warn for unlikely, improbable, or stupid declarations of `main'. */
5927 if (warn_main > 0 && MAIN_NAME_P (DECL_NAME (decl1)))
5929 tree args;
5930 int argct = 0;
5932 if (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (decl1)))
5933 != integer_type_node)
5934 pedwarn_with_decl (decl1, "return type of `%s' is not `int'");
5936 for (args = TYPE_ARG_TYPES (TREE_TYPE (decl1)); args;
5937 args = TREE_CHAIN (args))
5939 tree type = args ? TREE_VALUE (args) : 0;
5941 if (type == void_type_node)
5942 break;
5944 ++argct;
5945 switch (argct)
5947 case 1:
5948 if (TYPE_MAIN_VARIANT (type) != integer_type_node)
5949 pedwarn_with_decl (decl1,
5950 "first argument of `%s' should be `int'");
5951 break;
5953 case 2:
5954 if (TREE_CODE (type) != POINTER_TYPE
5955 || TREE_CODE (TREE_TYPE (type)) != POINTER_TYPE
5956 || (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (type)))
5957 != char_type_node))
5958 pedwarn_with_decl (decl1,
5959 "second argument of `%s' should be `char **'");
5960 break;
5962 case 3:
5963 if (TREE_CODE (type) != POINTER_TYPE
5964 || TREE_CODE (TREE_TYPE (type)) != POINTER_TYPE
5965 || (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (type)))
5966 != char_type_node))
5967 pedwarn_with_decl (decl1,
5968 "third argument of `%s' should probably be `char **'");
5969 break;
5973 /* It is intentional that this message does not mention the third
5974 argument because it's only mentioned in an appendix of the
5975 standard. */
5976 if (argct > 0 && (argct < 2 || argct > 3))
5977 pedwarn_with_decl (decl1, "`%s' takes only zero or two arguments");
5979 if (! TREE_PUBLIC (decl1))
5980 pedwarn_with_decl (decl1, "`%s' is normally a non-static function");
5983 /* Record the decl so that the function name is defined.
5984 If we already have a decl for this name, and it is a FUNCTION_DECL,
5985 use the old decl. */
5987 current_function_decl = pushdecl (decl1);
5989 pushlevel (0);
5990 declare_parm_level (1);
5991 current_binding_level->subblocks_tag_transparent = 1;
5993 make_decl_rtl (current_function_decl, NULL);
5995 restype = TREE_TYPE (TREE_TYPE (current_function_decl));
5996 /* Promote the value to int before returning it. */
5997 if (C_PROMOTING_INTEGER_TYPE_P (restype))
5999 /* It retains unsignedness if traditional
6000 or if not really getting wider. */
6001 if (TREE_UNSIGNED (restype)
6002 && (flag_traditional
6003 || (TYPE_PRECISION (restype)
6004 == TYPE_PRECISION (integer_type_node))))
6005 restype = unsigned_type_node;
6006 else
6007 restype = integer_type_node;
6009 DECL_RESULT (current_function_decl)
6010 = build_decl (RESULT_DECL, NULL_TREE, restype);
6012 /* If this fcn was already referenced via a block-scope `extern' decl
6013 (or an implicit decl), propagate certain information about the usage. */
6014 if (TREE_ADDRESSABLE (DECL_ASSEMBLER_NAME (current_function_decl)))
6015 TREE_ADDRESSABLE (current_function_decl) = 1;
6017 immediate_size_expand = old_immediate_size_expand;
6019 return 1;
6022 /* Record that this function is going to be a varargs function.
6023 This is called before store_parm_decls, which is too early
6024 to call mark_varargs directly. */
6026 void
6027 c_mark_varargs ()
6029 c_function_varargs = 1;
6032 /* Store the parameter declarations into the current function declaration.
6033 This is called after parsing the parameter declarations, before
6034 digesting the body of the function.
6036 For an old-style definition, modify the function's type
6037 to specify at least the number of arguments. */
6039 void
6040 store_parm_decls ()
6042 register tree fndecl = current_function_decl;
6043 register tree parm;
6045 /* This is either a chain of PARM_DECLs (if a prototype was used)
6046 or a list of IDENTIFIER_NODEs (for an old-fashioned C definition). */
6047 tree specparms = current_function_parms;
6049 /* This is a list of types declared among parms in a prototype. */
6050 tree parmtags = current_function_parm_tags;
6052 /* This is a chain of PARM_DECLs from old-style parm declarations. */
6053 register tree parmdecls = getdecls ();
6055 /* This is a chain of any other decls that came in among the parm
6056 declarations. If a parm is declared with enum {foo, bar} x;
6057 then CONST_DECLs for foo and bar are put here. */
6058 tree nonparms = 0;
6060 /* Nonzero if this definition is written with a prototype. */
6061 int prototype = 0;
6063 if (specparms != 0 && TREE_CODE (specparms) != TREE_LIST)
6065 /* This case is when the function was defined with an ANSI prototype.
6066 The parms already have decls, so we need not do anything here
6067 except record them as in effect
6068 and complain if any redundant old-style parm decls were written. */
6070 register tree next;
6071 tree others = 0;
6073 prototype = 1;
6075 if (parmdecls != 0)
6077 tree decl, link;
6079 error_with_decl (fndecl,
6080 "parm types given both in parmlist and separately");
6081 /* Get rid of the erroneous decls; don't keep them on
6082 the list of parms, since they might not be PARM_DECLs. */
6083 for (decl = current_binding_level->names;
6084 decl; decl = TREE_CHAIN (decl))
6085 if (DECL_NAME (decl))
6086 IDENTIFIER_LOCAL_VALUE (DECL_NAME (decl)) = 0;
6087 for (link = current_binding_level->shadowed;
6088 link; link = TREE_CHAIN (link))
6089 IDENTIFIER_LOCAL_VALUE (TREE_PURPOSE (link)) = TREE_VALUE (link);
6090 current_binding_level->names = 0;
6091 current_binding_level->shadowed = 0;
6094 specparms = nreverse (specparms);
6095 for (parm = specparms; parm; parm = next)
6097 next = TREE_CHAIN (parm);
6098 if (TREE_CODE (parm) == PARM_DECL)
6100 if (DECL_NAME (parm) == 0)
6101 error_with_decl (parm, "parameter name omitted");
6102 else if (TREE_CODE (TREE_TYPE (parm)) != ERROR_MARK
6103 && VOID_TYPE_P (TREE_TYPE (parm)))
6105 error_with_decl (parm, "parameter `%s' declared void");
6106 /* Change the type to error_mark_node so this parameter
6107 will be ignored by assign_parms. */
6108 TREE_TYPE (parm) = error_mark_node;
6110 pushdecl (parm);
6112 else
6114 /* If we find an enum constant or a type tag,
6115 put it aside for the moment. */
6116 TREE_CHAIN (parm) = 0;
6117 others = chainon (others, parm);
6121 /* Get the decls in their original chain order
6122 and record in the function. */
6123 DECL_ARGUMENTS (fndecl) = getdecls ();
6125 #if 0
6126 /* If this function takes a variable number of arguments,
6127 add a phony parameter to the end of the parm list,
6128 to represent the position of the first unnamed argument. */
6129 if (TREE_VALUE (tree_last (TYPE_ARG_TYPES (TREE_TYPE (fndecl))))
6130 != void_type_node)
6132 tree dummy = build_decl (PARM_DECL, NULL_TREE, void_type_node);
6133 /* Let's hope the address of the unnamed parm
6134 won't depend on its type. */
6135 TREE_TYPE (dummy) = integer_type_node;
6136 DECL_ARG_TYPE (dummy) = integer_type_node;
6137 DECL_ARGUMENTS (fndecl) = chainon (DECL_ARGUMENTS (fndecl), dummy);
6139 #endif
6141 /* Now pushdecl the enum constants. */
6142 for (parm = others; parm; parm = next)
6144 next = TREE_CHAIN (parm);
6145 if (DECL_NAME (parm) == 0)
6147 else if (TYPE_MAIN_VARIANT (TREE_TYPE (parm)) == void_type_node)
6149 else if (TREE_CODE (parm) != PARM_DECL)
6150 pushdecl (parm);
6153 storetags (chainon (parmtags, gettags ()));
6155 else
6157 /* SPECPARMS is an identifier list--a chain of TREE_LIST nodes
6158 each with a parm name as the TREE_VALUE.
6160 PARMDECLS is a chain of declarations for parameters.
6161 Warning! It can also contain CONST_DECLs which are not parameters
6162 but are names of enumerators of any enum types
6163 declared among the parameters.
6165 First match each formal parameter name with its declaration.
6166 Associate decls with the names and store the decls
6167 into the TREE_PURPOSE slots. */
6169 /* We use DECL_WEAK as a flag to show which parameters have been
6170 seen already since it is not used on PARM_DECL or CONST_DECL. */
6171 for (parm = parmdecls; parm; parm = TREE_CHAIN (parm))
6172 DECL_WEAK (parm) = 0;
6174 for (parm = specparms; parm; parm = TREE_CHAIN (parm))
6176 register tree tail, found = NULL;
6178 if (TREE_VALUE (parm) == 0)
6180 error_with_decl (fndecl,
6181 "parameter name missing from parameter list");
6182 TREE_PURPOSE (parm) = 0;
6183 continue;
6186 /* See if any of the parmdecls specifies this parm by name.
6187 Ignore any enumerator decls. */
6188 for (tail = parmdecls; tail; tail = TREE_CHAIN (tail))
6189 if (DECL_NAME (tail) == TREE_VALUE (parm)
6190 && TREE_CODE (tail) == PARM_DECL)
6192 found = tail;
6193 break;
6196 /* If declaration already marked, we have a duplicate name.
6197 Complain, and don't use this decl twice. */
6198 if (found && DECL_WEAK (found))
6200 error_with_decl (found, "multiple parameters named `%s'");
6201 found = 0;
6204 /* If the declaration says "void", complain and ignore it. */
6205 if (found && VOID_TYPE_P (TREE_TYPE (found)))
6207 error_with_decl (found, "parameter `%s' declared void");
6208 TREE_TYPE (found) = integer_type_node;
6209 DECL_ARG_TYPE (found) = integer_type_node;
6210 layout_decl (found, 0);
6213 /* Traditionally, a parm declared float is actually a double. */
6214 if (found && flag_traditional
6215 && TYPE_MAIN_VARIANT (TREE_TYPE (found)) == float_type_node)
6217 TREE_TYPE (found) = double_type_node;
6218 DECL_ARG_TYPE (found) = double_type_node;
6219 layout_decl (found, 0);
6222 /* If no declaration found, default to int. */
6223 if (!found)
6225 found = build_decl (PARM_DECL, TREE_VALUE (parm),
6226 integer_type_node);
6227 DECL_ARG_TYPE (found) = TREE_TYPE (found);
6228 DECL_SOURCE_LINE (found) = DECL_SOURCE_LINE (fndecl);
6229 DECL_SOURCE_FILE (found) = DECL_SOURCE_FILE (fndecl);
6230 if (flag_isoc99)
6231 pedwarn_with_decl (found, "type of `%s' defaults to `int'");
6232 else if (extra_warnings)
6233 warning_with_decl (found, "type of `%s' defaults to `int'");
6234 pushdecl (found);
6237 TREE_PURPOSE (parm) = found;
6239 /* Mark this decl as "already found". */
6240 DECL_WEAK (found) = 1;
6243 /* Put anything which is on the parmdecls chain and which is
6244 not a PARM_DECL onto the list NONPARMS. (The types of
6245 non-parm things which might appear on the list include
6246 enumerators and NULL-named TYPE_DECL nodes.) Complain about
6247 any actual PARM_DECLs not matched with any names. */
6249 nonparms = 0;
6250 for (parm = parmdecls; parm;)
6252 tree next = TREE_CHAIN (parm);
6253 TREE_CHAIN (parm) = 0;
6255 if (TREE_CODE (parm) != PARM_DECL)
6256 nonparms = chainon (nonparms, parm);
6257 else
6259 /* Complain about args with incomplete types. */
6260 if (!COMPLETE_TYPE_P (TREE_TYPE (parm)))
6262 error_with_decl (parm, "parameter `%s' has incomplete type");
6263 TREE_TYPE (parm) = error_mark_node;
6266 if (! DECL_WEAK (parm))
6268 error_with_decl (parm,
6269 "declaration for parameter `%s' but no such parameter");
6270 /* Pretend the parameter was not missing.
6271 This gets us to a standard state and minimizes
6272 further error messages. */
6273 specparms
6274 = chainon (specparms,
6275 tree_cons (parm, NULL_TREE, NULL_TREE));
6279 parm = next;
6282 /* Chain the declarations together in the order of the list of
6283 names. Store that chain in the function decl, replacing the
6284 list of names. */
6285 parm = specparms;
6286 DECL_ARGUMENTS (fndecl) = 0;
6288 register tree last;
6289 for (last = 0; parm; parm = TREE_CHAIN (parm))
6290 if (TREE_PURPOSE (parm))
6292 if (last == 0)
6293 DECL_ARGUMENTS (fndecl) = TREE_PURPOSE (parm);
6294 else
6295 TREE_CHAIN (last) = TREE_PURPOSE (parm);
6296 last = TREE_PURPOSE (parm);
6297 TREE_CHAIN (last) = 0;
6301 /* If there was a previous prototype,
6302 set the DECL_ARG_TYPE of each argument according to
6303 the type previously specified, and report any mismatches. */
6305 if (TYPE_ARG_TYPES (TREE_TYPE (fndecl)))
6307 register tree type;
6308 for (parm = DECL_ARGUMENTS (fndecl),
6309 type = TYPE_ARG_TYPES (TREE_TYPE (fndecl));
6310 parm || (type && (TYPE_MAIN_VARIANT (TREE_VALUE (type))
6311 != void_type_node));
6312 parm = TREE_CHAIN (parm), type = TREE_CHAIN (type))
6314 if (parm == 0 || type == 0
6315 || TYPE_MAIN_VARIANT (TREE_VALUE (type)) == void_type_node)
6317 error ("number of arguments doesn't match prototype");
6318 error_with_file_and_line (current_function_prototype_file,
6319 current_function_prototype_line,
6320 "prototype declaration");
6321 break;
6323 /* Type for passing arg must be consistent
6324 with that declared for the arg. */
6325 if (! comptypes (DECL_ARG_TYPE (parm), TREE_VALUE (type)))
6327 if (TYPE_MAIN_VARIANT (TREE_TYPE (parm))
6328 == TYPE_MAIN_VARIANT (TREE_VALUE (type)))
6330 /* Adjust argument to match prototype. E.g. a previous
6331 `int foo(float);' prototype causes
6332 `int foo(x) float x; {...}' to be treated like
6333 `int foo(float x) {...}'. This is particularly
6334 useful for argument types like uid_t. */
6335 DECL_ARG_TYPE (parm) = TREE_TYPE (parm);
6337 if (PROMOTE_PROTOTYPES
6338 && (TREE_CODE (TREE_TYPE (parm)) == INTEGER_TYPE
6339 || TREE_CODE (TREE_TYPE (parm)) == ENUMERAL_TYPE)
6340 && TYPE_PRECISION (TREE_TYPE (parm))
6341 < TYPE_PRECISION (integer_type_node))
6342 DECL_ARG_TYPE (parm) = integer_type_node;
6344 if (pedantic)
6346 pedwarn ("promoted argument `%s' doesn't match prototype",
6347 IDENTIFIER_POINTER (DECL_NAME (parm)));
6348 warning_with_file_and_line
6349 (current_function_prototype_file,
6350 current_function_prototype_line,
6351 "prototype declaration");
6354 /* If -traditional, allow `int' argument to match
6355 `unsigned' prototype. */
6356 else if (! (flag_traditional
6357 && TYPE_MAIN_VARIANT (TREE_TYPE (parm)) == integer_type_node
6358 && TYPE_MAIN_VARIANT (TREE_VALUE (type)) == unsigned_type_node))
6360 error ("argument `%s' doesn't match prototype",
6361 IDENTIFIER_POINTER (DECL_NAME (parm)));
6362 error_with_file_and_line (current_function_prototype_file,
6363 current_function_prototype_line,
6364 "prototype declaration");
6368 TYPE_ACTUAL_ARG_TYPES (TREE_TYPE (fndecl)) = 0;
6371 /* Otherwise, create a prototype that would match. */
6373 else
6375 tree actual = 0, last = 0, type;
6377 for (parm = DECL_ARGUMENTS (fndecl); parm; parm = TREE_CHAIN (parm))
6379 type = tree_cons (NULL_TREE, DECL_ARG_TYPE (parm), NULL_TREE);
6380 if (last)
6381 TREE_CHAIN (last) = type;
6382 else
6383 actual = type;
6384 last = type;
6386 type = tree_cons (NULL_TREE, void_type_node, NULL_TREE);
6387 if (last)
6388 TREE_CHAIN (last) = type;
6389 else
6390 actual = type;
6392 /* We are going to assign a new value for the TYPE_ACTUAL_ARG_TYPES
6393 of the type of this function, but we need to avoid having this
6394 affect the types of other similarly-typed functions, so we must
6395 first force the generation of an identical (but separate) type
6396 node for the relevant function type. The new node we create
6397 will be a variant of the main variant of the original function
6398 type. */
6400 TREE_TYPE (fndecl) = build_type_copy (TREE_TYPE (fndecl));
6402 TYPE_ACTUAL_ARG_TYPES (TREE_TYPE (fndecl)) = actual;
6405 /* Now store the final chain of decls for the arguments
6406 as the decl-chain of the current lexical scope.
6407 Put the enumerators in as well, at the front so that
6408 DECL_ARGUMENTS is not modified. */
6410 storedecls (chainon (nonparms, DECL_ARGUMENTS (fndecl)));
6413 /* Make sure the binding level for the top of the function body
6414 gets a BLOCK if there are any in the function.
6415 Otherwise, the dbx output is wrong. */
6417 keep_next_if_subblocks = 1;
6419 /* ??? This might be an improvement,
6420 but needs to be thought about some more. */
6421 #if 0
6422 keep_next_level_flag = 1;
6423 #endif
6425 /* Write a record describing this function definition to the prototypes
6426 file (if requested). */
6428 gen_aux_info_record (fndecl, 1, 0, prototype);
6430 /* Initialize the RTL code for the function. */
6432 init_function_start (fndecl, input_filename, lineno);
6434 /* Begin the statement tree for this function. */
6435 DECL_LANG_SPECIFIC (current_function_decl)
6436 =((struct lang_decl *) ggc_alloc (sizeof (struct lang_decl)));
6437 begin_stmt_tree (&DECL_SAVED_TREE (current_function_decl));
6439 /* This function is being processed in whole-function mode. */
6440 cfun->x_whole_function_mode_p = 1;
6442 /* Even though we're inside a function body, we still don't want to
6443 call expand_expr to calculate the size of a variable-sized array.
6444 We haven't necessarily assigned RTL to all variables yet, so it's
6445 not safe to try to expand expressions involving them. */
6446 immediate_size_expand = 0;
6447 cfun->x_dont_save_pending_sizes_p = 1;
6450 /* SPECPARMS is an identifier list--a chain of TREE_LIST nodes
6451 each with a parm name as the TREE_VALUE. A null pointer as TREE_VALUE
6452 stands for an ellipsis in the identifier list.
6454 PARMLIST is the data returned by get_parm_info for the
6455 parmlist that follows the semicolon.
6457 We return a value of the same sort that get_parm_info returns,
6458 except that it describes the combination of identifiers and parmlist. */
6460 tree
6461 combine_parm_decls (specparms, parmlist, void_at_end)
6462 tree specparms, parmlist;
6463 int void_at_end;
6465 register tree fndecl = current_function_decl;
6466 register tree parm;
6468 tree parmdecls = TREE_PURPOSE (parmlist);
6470 /* This is a chain of any other decls that came in among the parm
6471 declarations. They were separated already by get_parm_info,
6472 so we just need to keep them separate. */
6473 tree nonparms = TREE_VALUE (parmlist);
6475 tree types = 0;
6477 for (parm = parmdecls; parm; parm = TREE_CHAIN (parm))
6478 DECL_WEAK (parm) = 0;
6480 for (parm = specparms; parm; parm = TREE_CHAIN (parm))
6482 register tree tail, found = NULL;
6484 /* See if any of the parmdecls specifies this parm by name. */
6485 for (tail = parmdecls; tail; tail = TREE_CHAIN (tail))
6486 if (DECL_NAME (tail) == TREE_VALUE (parm))
6488 found = tail;
6489 break;
6492 /* If declaration already marked, we have a duplicate name.
6493 Complain, and don't use this decl twice. */
6494 if (found && DECL_WEAK (found))
6496 error_with_decl (found, "multiple parameters named `%s'");
6497 found = 0;
6500 /* If the declaration says "void", complain and ignore it. */
6501 if (found && VOID_TYPE_P (TREE_TYPE (found)))
6503 error_with_decl (found, "parameter `%s' declared void");
6504 TREE_TYPE (found) = integer_type_node;
6505 DECL_ARG_TYPE (found) = integer_type_node;
6506 layout_decl (found, 0);
6509 /* Traditionally, a parm declared float is actually a double. */
6510 if (found && flag_traditional
6511 && TYPE_MAIN_VARIANT (TREE_TYPE (found)) == float_type_node)
6513 TREE_TYPE (found) = double_type_node;
6514 DECL_ARG_TYPE (found) = double_type_node;
6515 layout_decl (found, 0);
6518 /* If no declaration found, default to int. */
6519 if (!found)
6521 found = build_decl (PARM_DECL, TREE_VALUE (parm),
6522 integer_type_node);
6523 DECL_ARG_TYPE (found) = TREE_TYPE (found);
6524 DECL_SOURCE_LINE (found) = DECL_SOURCE_LINE (fndecl);
6525 DECL_SOURCE_FILE (found) = DECL_SOURCE_FILE (fndecl);
6526 error_with_decl (found, "type of parameter `%s' is not declared");
6527 pushdecl (found);
6530 TREE_PURPOSE (parm) = found;
6532 /* Mark this decl as "already found". */
6533 DECL_WEAK (found) = 1;
6536 /* Complain about any actual PARM_DECLs not matched with any names. */
6538 for (parm = parmdecls; parm;)
6540 tree next = TREE_CHAIN (parm);
6541 TREE_CHAIN (parm) = 0;
6543 /* Complain about args with incomplete types. */
6544 if (!COMPLETE_TYPE_P (TREE_TYPE (parm)))
6546 error_with_decl (parm, "parameter `%s' has incomplete type");
6547 TREE_TYPE (parm) = error_mark_node;
6550 if (! DECL_WEAK (parm))
6552 error_with_decl (parm,
6553 "declaration for parameter `%s' but no such parameter");
6554 /* Pretend the parameter was not missing.
6555 This gets us to a standard state and minimizes
6556 further error messages. */
6557 specparms
6558 = chainon (specparms,
6559 tree_cons (parm, NULL_TREE, NULL_TREE));
6562 parm = next;
6565 /* Chain the declarations together in the order of the list of names.
6566 At the same time, build up a list of their types, in reverse order. */
6568 parm = specparms;
6569 parmdecls = 0;
6571 register tree last;
6572 for (last = 0; parm; parm = TREE_CHAIN (parm))
6573 if (TREE_PURPOSE (parm))
6575 if (last == 0)
6576 parmdecls = TREE_PURPOSE (parm);
6577 else
6578 TREE_CHAIN (last) = TREE_PURPOSE (parm);
6579 last = TREE_PURPOSE (parm);
6580 TREE_CHAIN (last) = 0;
6582 types = tree_cons (NULL_TREE, TREE_TYPE (parm), types);
6586 if (void_at_end)
6587 return tree_cons (parmdecls, nonparms,
6588 nreverse (tree_cons (NULL_TREE, void_type_node, types)));
6590 return tree_cons (parmdecls, nonparms, nreverse (types));
6593 /* Finish up a function declaration and compile that function
6594 all the way to assembler language output. The free the storage
6595 for the function definition.
6597 This is called after parsing the body of the function definition.
6599 NESTED is nonzero if the function being finished is nested in another. */
6601 void
6602 finish_function (nested)
6603 int nested;
6605 register tree fndecl = current_function_decl;
6607 /* TREE_READONLY (fndecl) = 1;
6608 This caused &foo to be of type ptr-to-const-function
6609 which then got a warning when stored in a ptr-to-function variable. */
6611 poplevel (1, 0, 1);
6612 BLOCK_SUPERCONTEXT (DECL_INITIAL (fndecl)) = fndecl;
6614 /* Must mark the RESULT_DECL as being in this function. */
6616 DECL_CONTEXT (DECL_RESULT (fndecl)) = fndecl;
6618 /* Obey `register' declarations if `setjmp' is called in this fn. */
6619 if (flag_traditional && current_function_calls_setjmp)
6621 setjmp_protect (DECL_INITIAL (fndecl));
6622 setjmp_protect_args ();
6625 if (MAIN_NAME_P (DECL_NAME (fndecl)) && flag_hosted)
6627 if (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (fndecl)))
6628 != integer_type_node)
6630 /* If warn_main is 1 (-Wmain) or 2 (-Wall), we have already warned.
6631 If warn_main is -1 (-Wno-main) we don't want to be warned. */
6632 if (! warn_main)
6633 pedwarn_with_decl (fndecl, "return type of `%s' is not `int'");
6635 else
6637 #ifdef DEFAULT_MAIN_RETURN
6638 /* Make it so that `main' always returns success by default. */
6639 DEFAULT_MAIN_RETURN;
6640 #else
6641 if (flag_isoc99)
6642 c_expand_return (integer_zero_node);
6643 #endif
6647 /* Tie off the statement tree for this function. */
6648 finish_stmt_tree (&DECL_SAVED_TREE (fndecl));
6649 /* Clear out memory we no longer need. */
6650 free_after_parsing (cfun);
6651 /* Since we never call rest_of_compilation, we never clear
6652 CFUN. Do so explicitly. */
6653 free_after_compilation (cfun);
6654 cfun = NULL;
6656 if (! nested)
6658 /* Generate RTL for the body of this function. */
6659 c_expand_body (fndecl, nested);
6660 /* Let the error reporting routines know that we're outside a
6661 function. For a nested function, this value is used in
6662 pop_c_function_context and then reset via pop_function_context. */
6663 current_function_decl = NULL;
6664 c_function_name_declared_p = 0;
6668 /* Generate the RTL for the body of FNDECL. If NESTED_P is non-zero,
6669 then we are already in the process of generating RTL for another
6670 function. */
6672 static void
6673 c_expand_body (fndecl, nested_p)
6674 tree fndecl;
6675 int nested_p;
6677 /* There's no reason to do any of the work here if we're only doing
6678 semantic analysis; this code just generates RTL. */
6679 if (flag_syntax_only)
6680 return;
6682 /* Squirrel away our current state. */
6683 if (nested_p)
6684 push_function_context ();
6686 /* Initialize the RTL code for the function. */
6687 current_function_decl = fndecl;
6688 init_function_start (fndecl, input_filename, DECL_SOURCE_LINE (fndecl));
6690 /* This function is being processed in whole-function mode. */
6691 cfun->x_whole_function_mode_p = 1;
6693 /* Even though we're inside a function body, we still don't want to
6694 call expand_expr to calculate the size of a variable-sized array.
6695 We haven't necessarily assigned RTL to all variables yet, so it's
6696 not safe to try to expand expressions involving them. */
6697 immediate_size_expand = 0;
6698 cfun->x_dont_save_pending_sizes_p = 1;
6700 /* If this is a varargs function, inform function.c. */
6701 if (c_function_varargs)
6702 mark_varargs ();
6704 /* Set up parameters and prepare for return, for the function. */
6705 expand_function_start (fndecl, 0);
6707 /* If this function is `main', emit a call to `__main'
6708 to run global initializers, etc. */
6709 if (DECL_NAME (fndecl)
6710 && MAIN_NAME_P (DECL_NAME (fndecl))
6711 && DECL_CONTEXT (fndecl) == NULL_TREE)
6712 expand_main_function ();
6714 /* Generate the RTL for this function. */
6715 expand_stmt (DECL_SAVED_TREE (fndecl));
6716 /* Allow the body of the function to be garbage collected. */
6717 DECL_SAVED_TREE (fndecl) = NULL_TREE;
6719 /* We hard-wired immediate_size_expand to zero in start_function.
6720 expand_function_end will decrement this variable. So, we set the
6721 variable to one here, so that after the decrement it will remain
6722 zero. */
6723 immediate_size_expand = 1;
6725 /* Allow language dialects to perform special processing. */
6726 if (lang_expand_function_end)
6727 (*lang_expand_function_end) ();
6729 /* Generate rtl for function exit. */
6730 expand_function_end (input_filename, lineno, 0);
6732 /* If this is a nested function, protect the local variables in the stack
6733 above us from being collected while we're compiling this function. */
6734 if (nested_p)
6735 ggc_push_context ();
6737 /* Run the optimizers and output the assembler code for this function. */
6738 rest_of_compilation (fndecl);
6740 /* Undo the GC context switch. */
6741 if (nested_p)
6742 ggc_pop_context ();
6744 /* With just -W, complain only if function returns both with
6745 and without a value. */
6746 if (extra_warnings
6747 && current_function_returns_value
6748 && current_function_returns_null)
6749 warning ("this function may return with or without a value");
6751 /* If requested, warn about function definitions where the function will
6752 return a value (usually of some struct or union type) which itself will
6753 take up a lot of stack space. */
6755 if (warn_larger_than && !DECL_EXTERNAL (fndecl) && TREE_TYPE (fndecl))
6757 tree ret_type = TREE_TYPE (TREE_TYPE (fndecl));
6759 if (ret_type && TYPE_SIZE_UNIT (ret_type)
6760 && TREE_CODE (TYPE_SIZE_UNIT (ret_type)) == INTEGER_CST
6761 && 0 < compare_tree_int (TYPE_SIZE_UNIT (ret_type),
6762 larger_than_size))
6764 unsigned int size_as_int
6765 = TREE_INT_CST_LOW (TYPE_SIZE_UNIT (ret_type));
6767 if (compare_tree_int (TYPE_SIZE_UNIT (ret_type), size_as_int) == 0)
6768 warning_with_decl (fndecl,
6769 "size of return value of `%s' is %u bytes",
6770 size_as_int);
6771 else
6772 warning_with_decl (fndecl,
6773 "size of return value of `%s' is larger than %d bytes",
6774 larger_than_size);
6778 if (DECL_SAVED_INSNS (fndecl) == 0 && ! nested_p)
6780 /* Stop pointing to the local nodes about to be freed.
6781 But DECL_INITIAL must remain nonzero so we know this
6782 was an actual function definition.
6783 For a nested function, this is done in pop_c_function_context.
6784 If rest_of_compilation set this to 0, leave it 0. */
6785 if (DECL_INITIAL (fndecl) != 0)
6786 DECL_INITIAL (fndecl) = error_mark_node;
6788 DECL_ARGUMENTS (fndecl) = 0;
6791 if (DECL_STATIC_CONSTRUCTOR (fndecl))
6793 #ifndef ASM_OUTPUT_CONSTRUCTOR
6794 if (! flag_gnu_linker)
6795 static_ctors = tree_cons (NULL_TREE, fndecl, static_ctors);
6796 else
6797 #endif
6798 assemble_constructor (IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (fndecl)));
6801 if (DECL_STATIC_DESTRUCTOR (fndecl))
6803 #ifndef ASM_OUTPUT_DESTRUCTOR
6804 if (! flag_gnu_linker)
6805 static_dtors = tree_cons (NULL_TREE, fndecl, static_dtors);
6806 else
6807 #endif
6808 assemble_destructor (IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (fndecl)));
6811 if (nested_p)
6813 /* Return to the enclosing function. */
6814 pop_function_context ();
6815 /* If the nested function was inline, write it out if that is
6816 necessary. */
6817 if (!TREE_ASM_WRITTEN (fndecl) && TREE_ADDRESSABLE (fndecl))
6819 push_function_context ();
6820 output_inline_function (fndecl);
6821 pop_function_context ();
6827 /* Check the declarations given in a for-loop for satisfying the C99
6828 constraints. */
6829 void
6830 check_for_loop_decls ()
6832 tree t;
6834 if (!flag_isoc99)
6836 /* If we get here, declarations have been used in a for loop without
6837 the C99 for loop scope. This doesn't make much sense, so don't
6838 allow it. */
6839 error ("`for' loop initial declaration used outside C99 mode");
6840 return;
6842 /* C99 subclause 6.8.5 paragraph 3:
6844 [#3] The declaration part of a for statement shall only
6845 declare identifiers for objects having storage class auto or
6846 register.
6848 It isn't clear whether, in this sentence, "identifiers" binds to
6849 "shall only declare" or to "objects" - that is, whether all identifiers
6850 declared must be identifiers for objects, or whether the restriction
6851 only applies to those that are. (A question on this in comp.std.c
6852 in November 2000 received no answer.) We implement the strictest
6853 interpretation, to avoid creating an extension which later causes
6854 problems. */
6856 for (t = gettags (); t; t = TREE_CHAIN (t))
6858 if (TREE_PURPOSE (t) != 0)
6859 error ("`%s %s' declared in `for' loop initial declaration",
6860 (TREE_CODE (TREE_VALUE (t)) == RECORD_TYPE ? "struct"
6861 : TREE_CODE (TREE_VALUE (t)) == UNION_TYPE ? "union"
6862 : "enum"),
6863 IDENTIFIER_POINTER (TREE_PURPOSE (t)));
6865 for (t = getdecls (); t; t = TREE_CHAIN (t))
6867 if (TREE_CODE (t) != VAR_DECL && DECL_NAME (t))
6868 error_with_decl (t, "declaration of non-variable `%s' in `for' loop initial declaration");
6869 else if (TREE_STATIC (t))
6870 error_with_decl (t, "declaration of static variable `%s' in `for' loop initial declaration");
6871 else if (DECL_EXTERNAL (t))
6872 error_with_decl (t, "declaration of `extern' variable `%s' in `for' loop initial declaration");
6876 /* Save and restore the variables in this file and elsewhere
6877 that keep track of the progress of compilation of the current function.
6878 Used for nested functions. */
6880 struct c_language_function
6882 struct language_function base;
6883 tree named_labels;
6884 tree shadowed_labels;
6885 int returns_value;
6886 int returns_null;
6887 int warn_about_return_type;
6888 int extern_inline;
6889 struct binding_level *binding_level;
6892 /* Save and reinitialize the variables
6893 used during compilation of a C function. */
6895 void
6896 push_c_function_context (f)
6897 struct function *f;
6899 struct c_language_function *p;
6900 p = ((struct c_language_function *)
6901 xmalloc (sizeof (struct c_language_function)));
6902 f->language = (struct language_function *) p;
6904 p->base.x_stmt_tree = c_stmt_tree;
6905 p->base.x_scope_stmt_stack = c_scope_stmt_stack;
6906 p->base.x_function_name_declared_p = c_function_name_declared_p;
6907 p->named_labels = named_labels;
6908 p->shadowed_labels = shadowed_labels;
6909 p->returns_value = current_function_returns_value;
6910 p->returns_null = current_function_returns_null;
6911 p->warn_about_return_type = warn_about_return_type;
6912 p->extern_inline = current_extern_inline;
6913 p->binding_level = current_binding_level;
6916 /* Restore the variables used during compilation of a C function. */
6918 void
6919 pop_c_function_context (f)
6920 struct function *f;
6922 struct c_language_function *p
6923 = (struct c_language_function *) f->language;
6924 tree link;
6926 /* Bring back all the labels that were shadowed. */
6927 for (link = shadowed_labels; link; link = TREE_CHAIN (link))
6928 if (DECL_NAME (TREE_VALUE (link)) != 0)
6929 IDENTIFIER_LABEL_VALUE (DECL_NAME (TREE_VALUE (link)))
6930 = TREE_VALUE (link);
6932 if (DECL_SAVED_INSNS (current_function_decl) == 0
6933 && DECL_SAVED_TREE (current_function_decl) == NULL_TREE)
6935 /* Stop pointing to the local nodes about to be freed. */
6936 /* But DECL_INITIAL must remain nonzero so we know this
6937 was an actual function definition. */
6938 DECL_INITIAL (current_function_decl) = error_mark_node;
6939 DECL_ARGUMENTS (current_function_decl) = 0;
6942 c_stmt_tree = p->base.x_stmt_tree;
6943 c_scope_stmt_stack = p->base.x_scope_stmt_stack;
6944 c_function_name_declared_p = p->base.x_function_name_declared_p;
6945 named_labels = p->named_labels;
6946 shadowed_labels = p->shadowed_labels;
6947 current_function_returns_value = p->returns_value;
6948 current_function_returns_null = p->returns_null;
6949 warn_about_return_type = p->warn_about_return_type;
6950 current_extern_inline = p->extern_inline;
6951 current_binding_level = p->binding_level;
6953 free (p);
6954 f->language = 0;
6957 /* Mark the language specific parts of F for GC. */
6959 void
6960 mark_c_function_context (f)
6961 struct function *f;
6963 struct c_language_function *p
6964 = (struct c_language_function *) f->language;
6966 if (p == 0)
6967 return;
6969 mark_c_language_function (&p->base);
6970 ggc_mark_tree (p->shadowed_labels);
6971 ggc_mark_tree (p->named_labels);
6972 mark_binding_level (&p->binding_level);
6975 /* Copy the DECL_LANG_SEPECIFIC data associated with NODE. */
6977 void
6978 copy_lang_decl (decl)
6979 tree decl;
6981 struct lang_decl *ld;
6983 if (!DECL_LANG_SPECIFIC (decl))
6984 return;
6986 ld = (struct lang_decl *) ggc_alloc (sizeof (struct lang_decl));
6987 memcpy ((char *) ld, (char *) DECL_LANG_SPECIFIC (decl),
6988 sizeof (struct lang_decl));
6989 DECL_LANG_SPECIFIC (decl) = ld;
6992 /* Mark the language specific bits in T for GC. */
6994 void
6995 lang_mark_tree (t)
6996 tree t;
6998 if (TREE_CODE (t) == IDENTIFIER_NODE)
7000 struct lang_identifier *i = (struct lang_identifier *) t;
7001 ggc_mark_tree (i->global_value);
7002 ggc_mark_tree (i->local_value);
7003 ggc_mark_tree (i->label_value);
7004 ggc_mark_tree (i->implicit_decl);
7005 ggc_mark_tree (i->error_locus);
7006 ggc_mark_tree (i->limbo_value);
7008 else if (TYPE_P (t) && TYPE_LANG_SPECIFIC (t))
7009 ggc_mark (TYPE_LANG_SPECIFIC (t));
7010 else if (DECL_P (t) && DECL_LANG_SPECIFIC (t))
7012 ggc_mark (DECL_LANG_SPECIFIC (t));
7013 c_mark_lang_decl (&DECL_LANG_SPECIFIC (t)->base);
7017 /* The functions below are required for functionality of doing
7018 function at once processing in the C front end. Currently these
7019 functions are not called from anywhere in the C front end, but as
7020 these changes continue, that will change. */
7022 /* Returns non-zero if the current statement is a full expression,
7023 i.e. temporaries created during that statement should be destroyed
7024 at the end of the statement. */
7027 stmts_are_full_exprs_p ()
7029 return 0;
7032 /* Returns the stmt_tree (if any) to which statements are currently
7033 being added. If there is no active statement-tree, NULL is
7034 returned. */
7036 stmt_tree
7037 current_stmt_tree ()
7039 return &c_stmt_tree;
7042 /* Returns the stack of SCOPE_STMTs for the current function. */
7044 tree *
7045 current_scope_stmt_stack ()
7047 return &c_scope_stmt_stack;
7050 /* Nonzero if TYPE is an anonymous union or struct type. Always 0 in
7051 C. */
7054 anon_aggr_type_p (node)
7055 tree node ATTRIBUTE_UNUSED;
7057 return 0;
7060 /* Dummy function in place of callback used by C++. */
7062 void
7063 extract_interface_info ()
7067 /* Return a new COMPOUND_STMT, after adding it to the current
7068 statement tree. */
7070 tree
7071 c_begin_compound_stmt ()
7073 tree stmt;
7075 /* Create the COMPOUND_STMT. */
7076 stmt = add_stmt (build_stmt (COMPOUND_STMT, NULL_TREE));
7077 /* If we haven't already declared __FUNCTION__ and its ilk then this
7078 is the opening curly brace of the function. Declare them now. */
7079 if (!c_function_name_declared_p)
7081 c_function_name_declared_p = 1;
7082 declare_function_name ();
7085 return stmt;
7088 /* Expand T (a DECL_STMT) if it declares an entity not handled by the
7089 common code. */
7091 void
7092 c_expand_decl_stmt (t)
7093 tree t;
7095 tree decl = DECL_STMT_DECL (t);
7097 /* Expand nested functions. */
7098 if (TREE_CODE (decl) == FUNCTION_DECL
7099 && DECL_CONTEXT (decl) == current_function_decl
7100 && DECL_SAVED_TREE (decl))
7101 c_expand_body (decl, /*nested_p=*/1);
7104 /* Return the IDENTIFIER_GLOBAL_VALUE of T, for use in common code, since
7105 the definition of IDENTIFIER_GLOBAL_VALUE is different for C and C++. */
7107 tree
7108 identifier_global_value (t)
7109 tree t;
7111 return IDENTIFIER_GLOBAL_VALUE (t);
7114 /* Record a builtin type for C. If NAME is non-NULL, it is the name used;
7115 otherwise the name is found in ridpointers from RID_INDEX. */
7117 void
7118 record_builtin_type (rid_index, name, type)
7119 enum rid rid_index;
7120 const char *name;
7121 tree type;
7123 tree id;
7124 if (name == 0)
7125 id = ridpointers[(int) rid_index];
7126 else
7127 id = get_identifier (name);
7128 pushdecl (build_decl (TYPE_DECL, id, type));
7131 /* Build the void_list_node (void_type_node having been created). */
7132 tree
7133 build_void_list_node ()
7135 tree t = build_tree_list (NULL_TREE, void_type_node);
7136 return t;