* c-decl.c (grokdeclarator): Make the TREE_TYPE for declarations
[official-gcc.git] / gcc / c-decl.c
bloba99425e417386a3140af4ba6a112f7386c2d76d1
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 char *p = argv[0];
457 strings_processed = cpp_handle_option (parse_in, argc, argv);
459 if (!strcmp (p, "-ftraditional") || !strcmp (p, "-traditional"))
461 flag_traditional = 1;
462 flag_writable_strings = 1;
464 else if (!strcmp (p, "-fallow-single-precision"))
465 flag_allow_single_precision = 1;
466 else if (!strcmp (p, "-fhosted") || !strcmp (p, "-fno-freestanding"))
468 flag_hosted = 1;
469 flag_no_builtin = 0;
471 else if (!strcmp (p, "-ffreestanding") || !strcmp (p, "-fno-hosted"))
473 flag_hosted = 0;
474 flag_no_builtin = 1;
475 /* warn_main will be 2 if set by -Wall, 1 if set by -Wmain */
476 if (warn_main == 2)
477 warn_main = 0;
479 else if (!strcmp (p, "-fnotraditional") || !strcmp (p, "-fno-traditional"))
481 flag_traditional = 0;
482 flag_writable_strings = 0;
484 else if (!strncmp (p, "-std=", 5))
486 /* Select the appropriate language standard. We currently
487 recognize:
488 -std=iso9899:1990 same as -ansi
489 -std=iso9899:199409 ISO C as modified in amend. 1
490 -std=iso9899:1999 ISO C 99
491 -std=c89 same as -std=iso9899:1990
492 -std=c99 same as -std=iso9899:1999
493 -std=gnu89 default, iso9899:1990 + gnu extensions
494 -std=gnu99 iso9899:1999 + gnu extensions
496 const char *argstart = &p[5];
498 if (!strcmp (argstart, "iso9899:1990")
499 || !strcmp (argstart, "c89"))
501 iso_1990:
502 flag_isoc94 = 0;
503 iso_1994:
504 flag_traditional = 0;
505 flag_writable_strings = 0;
506 flag_no_asm = 1;
507 flag_no_nonansi_builtin = 1;
508 flag_noniso_default_format_attributes = 0;
509 flag_isoc99 = 0;
511 else if (!strcmp (argstart, "iso9899:199409"))
513 flag_isoc94 = 1;
514 goto iso_1994;
516 else if (!strcmp (argstart, "iso9899:199x")
517 || !strcmp (argstart, "iso9899:1999")
518 || !strcmp (argstart, "c9x")
519 || !strcmp (argstart, "c99"))
521 flag_traditional = 0;
522 flag_writable_strings = 0;
523 flag_no_asm = 1;
524 flag_no_nonansi_builtin = 1;
525 flag_noniso_default_format_attributes = 0;
526 flag_isoc99 = 1;
527 flag_isoc94 = 1;
529 else if (!strcmp (argstart, "gnu89"))
531 flag_traditional = 0;
532 flag_writable_strings = 0;
533 flag_no_asm = 0;
534 flag_no_nonansi_builtin = 0;
535 flag_noniso_default_format_attributes = 1;
536 flag_isoc99 = 0;
537 flag_isoc94 = 0;
539 else if (!strcmp (argstart, "gnu9x") || !strcmp (argstart, "gnu99"))
541 flag_traditional = 0;
542 flag_writable_strings = 0;
543 flag_no_asm = 0;
544 flag_no_nonansi_builtin = 0;
545 flag_noniso_default_format_attributes = 1;
546 flag_isoc99 = 1;
547 flag_isoc94 = 1;
549 else
550 error ("unknown C standard `%s'", argstart);
552 else if (!strcmp (p, "-fdollars-in-identifiers"))
553 dollars_in_ident = 1;
554 else if (!strcmp (p, "-fno-dollars-in-identifiers"))
555 dollars_in_ident = 0;
556 else if (!strcmp (p, "-fsigned-char"))
557 flag_signed_char = 1;
558 else if (!strcmp (p, "-funsigned-char"))
559 flag_signed_char = 0;
560 else if (!strcmp (p, "-fno-signed-char"))
561 flag_signed_char = 0;
562 else if (!strcmp (p, "-fno-unsigned-char"))
563 flag_signed_char = 1;
564 else if (!strcmp (p, "-fsigned-bitfields")
565 || !strcmp (p, "-fno-unsigned-bitfields"))
567 flag_signed_bitfields = 1;
568 explicit_flag_signed_bitfields = 1;
570 else if (!strcmp (p, "-funsigned-bitfields")
571 || !strcmp (p, "-fno-signed-bitfields"))
573 flag_signed_bitfields = 0;
574 explicit_flag_signed_bitfields = 1;
576 else if (!strcmp (p, "-fshort-enums"))
577 flag_short_enums = 1;
578 else if (!strcmp (p, "-fno-short-enums"))
579 flag_short_enums = 0;
580 else if (!strcmp (p, "-fshort-wchar"))
581 flag_short_wchar = 1;
582 else if (!strcmp (p, "-fno-short-wchar"))
583 flag_short_wchar = 0;
584 else if (!strcmp (p, "-fcond-mismatch"))
585 flag_cond_mismatch = 1;
586 else if (!strcmp (p, "-fno-cond-mismatch"))
587 flag_cond_mismatch = 0;
588 else if (!strcmp (p, "-fshort-double"))
589 flag_short_double = 1;
590 else if (!strcmp (p, "-fno-short-double"))
591 flag_short_double = 0;
592 else if (!strcmp (p, "-fasm"))
593 flag_no_asm = 0;
594 else if (!strcmp (p, "-fno-asm"))
595 flag_no_asm = 1;
596 else if (!strcmp (p, "-fbuiltin"))
597 flag_no_builtin = 0;
598 else if (!strcmp (p, "-fno-builtin"))
599 flag_no_builtin = 1;
600 else if (dump_switch_p (p))
602 else if (!strcmp (p, "-ansi"))
603 goto iso_1990;
604 else if (!strcmp (p, "-Werror-implicit-function-declaration"))
605 mesg_implicit_function_declaration = 2;
606 else if (!strcmp (p, "-Wimplicit-function-declaration"))
607 mesg_implicit_function_declaration = 1;
608 else if (!strcmp (p, "-Wno-implicit-function-declaration"))
609 mesg_implicit_function_declaration = 0;
610 else if (!strcmp (p, "-Wimplicit-int"))
611 warn_implicit_int = 1;
612 else if (!strcmp (p, "-Wno-implicit-int"))
613 warn_implicit_int = 0;
614 else if (!strcmp (p, "-Wimplicit"))
616 warn_implicit_int = 1;
617 if (mesg_implicit_function_declaration != 2)
618 mesg_implicit_function_declaration = 1;
620 else if (!strcmp (p, "-Wno-implicit"))
621 warn_implicit_int = 0, mesg_implicit_function_declaration = 0;
622 else if (!strcmp (p, "-Wlong-long"))
623 warn_long_long = 1;
624 else if (!strcmp (p, "-Wno-long-long"))
625 warn_long_long = 0;
626 else if (!strcmp (p, "-Wwrite-strings"))
627 flag_const_strings = 1;
628 else if (!strcmp (p, "-Wno-write-strings"))
629 flag_const_strings = 0;
630 else if (!strcmp (p, "-Wcast-qual"))
631 warn_cast_qual = 1;
632 else if (!strcmp (p, "-Wno-cast-qual"))
633 warn_cast_qual = 0;
634 else if (!strcmp (p, "-Wbad-function-cast"))
635 warn_bad_function_cast = 1;
636 else if (!strcmp (p, "-Wno-bad-function-cast"))
637 warn_bad_function_cast = 0;
638 else if (!strcmp (p, "-Wno-missing-noreturn"))
639 warn_missing_noreturn = 0;
640 else if (!strcmp (p, "-Wmissing-format-attribute"))
641 warn_missing_format_attribute = 1;
642 else if (!strcmp (p, "-Wno-missing-format-attribute"))
643 warn_missing_format_attribute = 0;
644 else if (!strcmp (p, "-Wpointer-arith"))
645 warn_pointer_arith = 1;
646 else if (!strcmp (p, "-Wno-pointer-arith"))
647 warn_pointer_arith = 0;
648 else if (!strcmp (p, "-Wstrict-prototypes"))
649 warn_strict_prototypes = 1;
650 else if (!strcmp (p, "-Wno-strict-prototypes"))
651 warn_strict_prototypes = 0;
652 else if (!strcmp (p, "-Wmissing-prototypes"))
653 warn_missing_prototypes = 1;
654 else if (!strcmp (p, "-Wno-missing-prototypes"))
655 warn_missing_prototypes = 0;
656 else if (!strcmp (p, "-Wmissing-declarations"))
657 warn_missing_declarations = 1;
658 else if (!strcmp (p, "-Wno-missing-declarations"))
659 warn_missing_declarations = 0;
660 else if (!strcmp (p, "-Wredundant-decls"))
661 warn_redundant_decls = 1;
662 else if (!strcmp (p, "-Wno-redundant-decls"))
663 warn_redundant_decls = 0;
664 else if (!strcmp (p, "-Wnested-externs"))
665 warn_nested_externs = 1;
666 else if (!strcmp (p, "-Wno-nested-externs"))
667 warn_nested_externs = 0;
668 else if (!strcmp (p, "-Wtraditional"))
669 warn_traditional = 1;
670 else if (!strcmp (p, "-Wno-traditional"))
671 warn_traditional = 0;
672 else if (!strncmp (p, "-Wformat=", 9))
673 set_Wformat (atoi (p + 9));
674 else if (!strcmp (p, "-Wformat"))
675 set_Wformat (1);
676 else if (!strcmp (p, "-Wno-format"))
677 set_Wformat (0);
678 else if (!strcmp (p, "-Wformat-y2k"))
679 warn_format_y2k = 1;
680 else if (!strcmp (p, "-Wno-format-y2k"))
681 warn_format_y2k = 0;
682 else if (!strcmp (p, "-Wformat-extra-args"))
683 warn_format_extra_args = 1;
684 else if (!strcmp (p, "-Wno-format-extra-args"))
685 warn_format_extra_args = 0;
686 else if (!strcmp (p, "-Wformat-nonliteral"))
687 warn_format_nonliteral = 1;
688 else if (!strcmp (p, "-Wno-format-nonliteral"))
689 warn_format_nonliteral = 0;
690 else if (!strcmp (p, "-Wformat-security"))
691 warn_format_security = 1;
692 else if (!strcmp (p, "-Wno-format-security"))
693 warn_format_security = 0;
694 else if (!strcmp (p, "-Wchar-subscripts"))
695 warn_char_subscripts = 1;
696 else if (!strcmp (p, "-Wno-char-subscripts"))
697 warn_char_subscripts = 0;
698 else if (!strcmp (p, "-Wconversion"))
699 warn_conversion = 1;
700 else if (!strcmp (p, "-Wno-conversion"))
701 warn_conversion = 0;
702 else if (!strcmp (p, "-Wparentheses"))
703 warn_parentheses = 1;
704 else if (!strcmp (p, "-Wno-parentheses"))
705 warn_parentheses = 0;
706 else if (!strcmp (p, "-Wreturn-type"))
707 warn_return_type = 1;
708 else if (!strcmp (p, "-Wno-return-type"))
709 warn_return_type = 0;
710 else if (!strcmp (p, "-Wsequence-point"))
711 warn_sequence_point = 1;
712 else if (!strcmp (p, "-Wno-sequence-point"))
713 warn_sequence_point = 0;
714 else if (!strcmp (p, "-Wcomment"))
715 ; /* cpp handles this one. */
716 else if (!strcmp (p, "-Wno-comment"))
717 ; /* cpp handles this one. */
718 else if (!strcmp (p, "-Wcomments"))
719 ; /* cpp handles this one. */
720 else if (!strcmp (p, "-Wno-comments"))
721 ; /* cpp handles this one. */
722 else if (!strcmp (p, "-Wtrigraphs"))
723 ; /* cpp handles this one. */
724 else if (!strcmp (p, "-Wno-trigraphs"))
725 ; /* cpp handles this one. */
726 else if (!strcmp (p, "-Wundef"))
727 ; /* cpp handles this one. */
728 else if (!strcmp (p, "-Wno-undef"))
729 ; /* cpp handles this one. */
730 else if (!strcmp (p, "-Wimport"))
731 ; /* cpp handles this one. */
732 else if (!strcmp (p, "-Wno-import"))
733 ; /* cpp handles this one. */
734 else if (!strcmp (p, "-Wmissing-braces"))
735 warn_missing_braces = 1;
736 else if (!strcmp (p, "-Wno-missing-braces"))
737 warn_missing_braces = 0;
738 else if (!strcmp (p, "-Wmain"))
739 warn_main = 1;
740 else if (!strcmp (p, "-Wno-main"))
741 warn_main = -1;
742 else if (!strcmp (p, "-Wsign-compare"))
743 warn_sign_compare = 1;
744 else if (!strcmp (p, "-Wno-sign-compare"))
745 warn_sign_compare = 0;
746 else if (!strcmp (p, "-Wfloat-equal"))
747 warn_float_equal = 1;
748 else if (!strcmp (p, "-Wno-float-equal"))
749 warn_float_equal = 0;
750 else if (!strcmp (p, "-Wmultichar"))
751 warn_multichar = 1;
752 else if (!strcmp (p, "-Wno-multichar"))
753 warn_multichar = 0;
754 else if (!strcmp (p, "-Wunknown-pragmas"))
755 /* Set to greater than 1, so that even unknown pragmas in system
756 headers will be warned about. */
757 warn_unknown_pragmas = 2;
758 else if (!strcmp (p, "-Wno-unknown-pragmas"))
759 warn_unknown_pragmas = 0;
760 else if (!strcmp (p, "-Wall"))
762 /* We save the value of warn_uninitialized, since if they put
763 -Wuninitialized on the command line, we need to generate a
764 warning about not using it without also specifying -O. */
765 if (warn_uninitialized != 1)
766 warn_uninitialized = 2;
767 warn_implicit_int = 1;
768 mesg_implicit_function_declaration = 1;
769 warn_return_type = 1;
770 set_Wunused (1);
771 warn_switch = 1;
772 set_Wformat (1);
773 warn_char_subscripts = 1;
774 warn_parentheses = 1;
775 warn_sequence_point = 1;
776 warn_missing_braces = 1;
777 /* We set this to 2 here, but 1 in -Wmain, so -ffreestanding can turn
778 it off only if it's not explicit. */
779 warn_main = 2;
780 /* Only warn about unknown pragmas that are not in system headers. */
781 warn_unknown_pragmas = 1;
783 else
784 return strings_processed;
786 return 1;
789 /* Hooks for print_node. */
791 void
792 print_lang_decl (file, node, indent)
793 FILE *file ATTRIBUTE_UNUSED;
794 tree node ATTRIBUTE_UNUSED;
795 int indent ATTRIBUTE_UNUSED;
799 void
800 print_lang_type (file, node, indent)
801 FILE *file ATTRIBUTE_UNUSED;
802 tree node ATTRIBUTE_UNUSED;
803 int indent ATTRIBUTE_UNUSED;
807 void
808 print_lang_identifier (file, node, indent)
809 FILE *file;
810 tree node;
811 int indent;
813 print_node (file, "global", IDENTIFIER_GLOBAL_VALUE (node), indent + 4);
814 print_node (file, "local", IDENTIFIER_LOCAL_VALUE (node), indent + 4);
815 print_node (file, "label", IDENTIFIER_LABEL_VALUE (node), indent + 4);
816 print_node (file, "implicit", IDENTIFIER_IMPLICIT_DECL (node), indent + 4);
817 print_node (file, "error locus", IDENTIFIER_ERROR_LOCUS (node), indent + 4);
818 print_node (file, "limbo value", IDENTIFIER_LIMBO_VALUE (node), indent + 4);
819 if (C_IS_RESERVED_WORD (node))
821 tree rid = ridpointers[C_RID_CODE (node)];
822 indent_to (file, indent + 4);
823 fprintf (file, "rid ");
824 fprintf (file, HOST_PTR_PRINTF, (void *)rid);
825 fprintf (file, " \"%s\"", IDENTIFIER_POINTER (rid));
829 /* Hook called at end of compilation to assume 1 elt
830 for a top-level tentative array defn that wasn't complete before. */
832 void
833 finish_incomplete_decl (decl)
834 tree decl;
836 if (TREE_CODE (decl) == VAR_DECL)
838 tree type = TREE_TYPE (decl);
839 if (type != error_mark_node
840 && TREE_CODE (type) == ARRAY_TYPE
841 && ! DECL_EXTERNAL (decl)
842 && TYPE_DOMAIN (type) == 0)
844 warning_with_decl (decl, "array `%s' assumed to have one element");
846 complete_array_type (type, NULL_TREE, 1);
848 layout_decl (decl, 0);
853 /* Create a new `struct binding_level'. */
855 static struct binding_level *
856 make_binding_level ()
858 /* NOSTRICT */
859 return (struct binding_level *) xmalloc (sizeof (struct binding_level));
862 /* Nonzero if we are currently in the global binding level. */
865 global_bindings_p ()
867 return current_binding_level == global_binding_level;
870 void
871 keep_next_level ()
873 keep_next_level_flag = 1;
876 /* Nonzero if the current level needs to have a BLOCK made. */
879 kept_level_p ()
881 return ((current_binding_level->keep_if_subblocks
882 && current_binding_level->blocks != 0)
883 || current_binding_level->keep
884 || current_binding_level->names != 0
885 || (current_binding_level->tags != 0
886 && !current_binding_level->tag_transparent));
889 /* Identify this binding level as a level of parameters.
890 DEFINITION_FLAG is 1 for a definition, 0 for a declaration.
891 But it turns out there is no way to pass the right value for
892 DEFINITION_FLAG, so we ignore it. */
894 void
895 declare_parm_level (definition_flag)
896 int definition_flag ATTRIBUTE_UNUSED;
898 current_binding_level->parm_flag = 1;
901 /* Nonzero if currently making parm declarations. */
904 in_parm_level_p ()
906 return current_binding_level->parm_flag;
909 /* Enter a new binding level.
910 If TAG_TRANSPARENT is nonzero, do so only for the name space of variables,
911 not for that of tags. */
913 void
914 pushlevel (tag_transparent)
915 int tag_transparent;
917 register struct binding_level *newlevel = NULL_BINDING_LEVEL;
919 /* If this is the top level of a function,
920 just make sure that NAMED_LABELS is 0. */
922 if (current_binding_level == global_binding_level)
924 named_labels = 0;
927 /* Reuse or create a struct for this binding level. */
929 if (free_binding_level)
931 newlevel = free_binding_level;
932 free_binding_level = free_binding_level->level_chain;
934 else
936 newlevel = make_binding_level ();
939 /* Add this level to the front of the chain (stack) of levels that
940 are active. */
942 *newlevel = clear_binding_level;
943 newlevel->tag_transparent
944 = (tag_transparent
945 || (current_binding_level
946 ? current_binding_level->subblocks_tag_transparent
947 : 0));
948 newlevel->level_chain = current_binding_level;
949 current_binding_level = newlevel;
950 newlevel->keep = keep_next_level_flag;
951 keep_next_level_flag = 0;
952 newlevel->keep_if_subblocks = keep_next_if_subblocks;
953 keep_next_if_subblocks = 0;
956 /* Clear the limbo values of all identifiers defined in BLOCK or a subblock. */
958 static void
959 clear_limbo_values (block)
960 tree block;
962 tree tem;
964 for (tem = BLOCK_VARS (block); tem; tem = TREE_CHAIN (tem))
965 if (DECL_NAME (tem) != 0)
966 IDENTIFIER_LIMBO_VALUE (DECL_NAME (tem)) = 0;
968 for (tem = BLOCK_SUBBLOCKS (block); tem; tem = TREE_CHAIN (tem))
969 clear_limbo_values (tem);
972 /* Exit a binding level.
973 Pop the level off, and restore the state of the identifier-decl mappings
974 that were in effect when this level was entered.
976 If KEEP is nonzero, this level had explicit declarations, so
977 and create a "block" (a BLOCK node) for the level
978 to record its declarations and subblocks for symbol table output.
980 If FUNCTIONBODY is nonzero, this level is the body of a function,
981 so create a block as if KEEP were set and also clear out all
982 label names.
984 If REVERSE is nonzero, reverse the order of decls before putting
985 them into the BLOCK. */
987 tree
988 poplevel (keep, reverse, functionbody)
989 int keep;
990 int reverse;
991 int functionbody;
993 register tree link;
994 /* The chain of decls was accumulated in reverse order.
995 Put it into forward order, just for cleanliness. */
996 tree decls;
997 tree tags = current_binding_level->tags;
998 tree subblocks = current_binding_level->blocks;
999 tree block = 0;
1000 tree decl;
1001 int block_previously_created;
1003 keep |= current_binding_level->keep;
1005 /* This warning is turned off because it causes warnings for
1006 declarations like `extern struct foo *x'. */
1007 #if 0
1008 /* Warn about incomplete structure types in this level. */
1009 for (link = tags; link; link = TREE_CHAIN (link))
1010 if (!COMPLETE_TYPE_P (TREE_VALUE (link)))
1012 tree type = TREE_VALUE (link);
1013 tree type_name = TYPE_NAME (type);
1014 char *id = IDENTIFIER_POINTER (TREE_CODE (type_name) == IDENTIFIER_NODE
1015 ? type_name
1016 : DECL_NAME (type_name));
1017 switch (TREE_CODE (type))
1019 case RECORD_TYPE:
1020 error ("`struct %s' incomplete in scope ending here", id);
1021 break;
1022 case UNION_TYPE:
1023 error ("`union %s' incomplete in scope ending here", id);
1024 break;
1025 case ENUMERAL_TYPE:
1026 error ("`enum %s' incomplete in scope ending here", id);
1027 break;
1030 #endif /* 0 */
1032 /* Get the decls in the order they were written.
1033 Usually current_binding_level->names is in reverse order.
1034 But parameter decls were previously put in forward order. */
1036 if (reverse)
1037 current_binding_level->names
1038 = decls = nreverse (current_binding_level->names);
1039 else
1040 decls = current_binding_level->names;
1042 /* Output any nested inline functions within this block
1043 if they weren't already output. */
1045 for (decl = decls; decl; decl = TREE_CHAIN (decl))
1046 if (TREE_CODE (decl) == FUNCTION_DECL
1047 && ! TREE_ASM_WRITTEN (decl)
1048 && DECL_INITIAL (decl) != 0
1049 && TREE_ADDRESSABLE (decl))
1051 /* If this decl was copied from a file-scope decl
1052 on account of a block-scope extern decl,
1053 propagate TREE_ADDRESSABLE to the file-scope decl.
1055 DECL_ABSTRACT_ORIGIN can be set to itself if warn_return_type is
1056 true, since then the decl goes through save_for_inline_copying. */
1057 if (DECL_ABSTRACT_ORIGIN (decl) != 0
1058 && DECL_ABSTRACT_ORIGIN (decl) != decl)
1059 TREE_ADDRESSABLE (DECL_ABSTRACT_ORIGIN (decl)) = 1;
1062 /* We used to warn about unused variables in expand_end_bindings,
1063 i.e. while generating RTL. But in function-at-a-time mode we may
1064 choose to never expand a function at all (e.g. auto inlining), so
1065 we do this explicitly now. */
1066 warn_about_unused_variables (getdecls ());
1068 /* If there were any declarations or structure tags in that level,
1069 or if this level is a function body,
1070 create a BLOCK to record them for the life of this function. */
1072 block = 0;
1073 block_previously_created = (current_binding_level->this_block != 0);
1074 if (block_previously_created)
1075 block = current_binding_level->this_block;
1076 else if (keep || functionbody
1077 || (current_binding_level->keep_if_subblocks && subblocks != 0))
1078 block = make_node (BLOCK);
1079 if (block != 0)
1081 BLOCK_VARS (block) = decls;
1082 BLOCK_SUBBLOCKS (block) = subblocks;
1085 /* In each subblock, record that this is its superior. */
1087 for (link = subblocks; link; link = TREE_CHAIN (link))
1088 BLOCK_SUPERCONTEXT (link) = block;
1090 /* Clear out the meanings of the local variables of this level. */
1092 for (link = decls; link; link = TREE_CHAIN (link))
1094 if (DECL_NAME (link) != 0)
1096 /* If the ident. was used or addressed via a local extern decl,
1097 don't forget that fact. */
1098 if (DECL_EXTERNAL (link))
1100 if (TREE_USED (link))
1101 TREE_USED (DECL_NAME (link)) = 1;
1102 if (TREE_ADDRESSABLE (link))
1103 TREE_ADDRESSABLE (DECL_ASSEMBLER_NAME (link)) = 1;
1105 IDENTIFIER_LOCAL_VALUE (DECL_NAME (link)) = 0;
1109 /* Restore all name-meanings of the outer levels
1110 that were shadowed by this level. */
1112 for (link = current_binding_level->shadowed; link; link = TREE_CHAIN (link))
1113 IDENTIFIER_LOCAL_VALUE (TREE_PURPOSE (link)) = TREE_VALUE (link);
1115 /* If the level being exited is the top level of a function,
1116 check over all the labels, and clear out the current
1117 (function local) meanings of their names. */
1119 if (functionbody)
1121 clear_limbo_values (block);
1123 /* If this is the top level block of a function,
1124 the vars are the function's parameters.
1125 Don't leave them in the BLOCK because they are
1126 found in the FUNCTION_DECL instead. */
1128 BLOCK_VARS (block) = 0;
1130 /* Clear out the definitions of all label names,
1131 since their scopes end here,
1132 and add them to BLOCK_VARS. */
1134 for (link = named_labels; link; link = TREE_CHAIN (link))
1136 register tree label = TREE_VALUE (link);
1138 if (DECL_INITIAL (label) == 0)
1140 error_with_decl (label, "label `%s' used but not defined");
1141 /* Avoid crashing later. */
1142 define_label (input_filename, lineno,
1143 DECL_NAME (label));
1145 else if (warn_unused_label && !TREE_USED (label))
1146 warning_with_decl (label, "label `%s' defined but not used");
1147 IDENTIFIER_LABEL_VALUE (DECL_NAME (label)) = 0;
1149 /* Put the labels into the "variables" of the
1150 top-level block, so debugger can see them. */
1151 TREE_CHAIN (label) = BLOCK_VARS (block);
1152 BLOCK_VARS (block) = label;
1156 /* Pop the current level, and free the structure for reuse. */
1159 register struct binding_level *level = current_binding_level;
1160 current_binding_level = current_binding_level->level_chain;
1162 level->level_chain = free_binding_level;
1163 free_binding_level = level;
1166 /* Dispose of the block that we just made inside some higher level. */
1167 if (functionbody)
1168 DECL_INITIAL (current_function_decl) = block;
1169 else if (block)
1171 if (!block_previously_created)
1172 current_binding_level->blocks
1173 = chainon (current_binding_level->blocks, block);
1175 /* If we did not make a block for the level just exited,
1176 any blocks made for inner levels
1177 (since they cannot be recorded as subblocks in that level)
1178 must be carried forward so they will later become subblocks
1179 of something else. */
1180 else if (subblocks)
1181 current_binding_level->blocks
1182 = chainon (current_binding_level->blocks, subblocks);
1184 /* Set the TYPE_CONTEXTs for all of the tagged types belonging to this
1185 binding contour so that they point to the appropriate construct, i.e.
1186 either to the current FUNCTION_DECL node, or else to the BLOCK node
1187 we just constructed.
1189 Note that for tagged types whose scope is just the formal parameter
1190 list for some function type specification, we can't properly set
1191 their TYPE_CONTEXTs here, because we don't have a pointer to the
1192 appropriate FUNCTION_TYPE node readily available to us. For those
1193 cases, the TYPE_CONTEXTs of the relevant tagged type nodes get set
1194 in `grokdeclarator' as soon as we have created the FUNCTION_TYPE
1195 node which will represent the "scope" for these "parameter list local"
1196 tagged types. */
1198 if (functionbody)
1199 for (link = tags; link; link = TREE_CHAIN (link))
1200 TYPE_CONTEXT (TREE_VALUE (link)) = current_function_decl;
1201 else if (block)
1202 for (link = tags; link; link = TREE_CHAIN (link))
1203 TYPE_CONTEXT (TREE_VALUE (link)) = block;
1205 if (block)
1206 TREE_USED (block) = 1;
1208 return block;
1211 /* Delete the node BLOCK from the current binding level.
1212 This is used for the block inside a stmt expr ({...})
1213 so that the block can be reinserted where appropriate. */
1215 void
1216 delete_block (block)
1217 tree block;
1219 tree t;
1220 if (current_binding_level->blocks == block)
1221 current_binding_level->blocks = TREE_CHAIN (block);
1222 for (t = current_binding_level->blocks; t;)
1224 if (TREE_CHAIN (t) == block)
1225 TREE_CHAIN (t) = TREE_CHAIN (block);
1226 else
1227 t = TREE_CHAIN (t);
1229 TREE_CHAIN (block) = NULL;
1230 /* Clear TREE_USED which is always set by poplevel.
1231 The flag is set again if insert_block is called. */
1232 TREE_USED (block) = 0;
1235 /* Insert BLOCK at the end of the list of subblocks of the
1236 current binding level. This is used when a BIND_EXPR is expanded,
1237 to handle the BLOCK node inside the BIND_EXPR. */
1239 void
1240 insert_block (block)
1241 tree block;
1243 TREE_USED (block) = 1;
1244 current_binding_level->blocks
1245 = chainon (current_binding_level->blocks, block);
1248 /* Set the BLOCK node for the innermost scope
1249 (the one we are currently in). */
1251 void
1252 set_block (block)
1253 register tree block;
1255 current_binding_level->this_block = block;
1256 current_binding_level->names = chainon (current_binding_level->names,
1257 BLOCK_VARS (block));
1258 current_binding_level->blocks = chainon (current_binding_level->blocks,
1259 BLOCK_SUBBLOCKS (block));
1262 void
1263 push_label_level ()
1265 register struct binding_level *newlevel;
1267 /* Reuse or create a struct for this binding level. */
1269 if (free_binding_level)
1271 newlevel = free_binding_level;
1272 free_binding_level = free_binding_level->level_chain;
1274 else
1276 newlevel = make_binding_level ();
1279 /* Add this level to the front of the chain (stack) of label levels. */
1281 newlevel->level_chain = label_level_chain;
1282 label_level_chain = newlevel;
1284 newlevel->names = named_labels;
1285 newlevel->shadowed = shadowed_labels;
1286 named_labels = 0;
1287 shadowed_labels = 0;
1290 void
1291 pop_label_level ()
1293 register struct binding_level *level = label_level_chain;
1294 tree link, prev;
1296 /* Clear out the definitions of the declared labels in this level.
1297 Leave in the list any ordinary, non-declared labels. */
1298 for (link = named_labels, prev = 0; link;)
1300 if (C_DECLARED_LABEL_FLAG (TREE_VALUE (link)))
1302 if (DECL_SOURCE_LINE (TREE_VALUE (link)) == 0)
1304 error_with_decl (TREE_VALUE (link),
1305 "label `%s' used but not defined");
1306 /* Avoid crashing later. */
1307 define_label (input_filename, lineno,
1308 DECL_NAME (TREE_VALUE (link)));
1310 else if (warn_unused_label && !TREE_USED (TREE_VALUE (link)))
1311 warning_with_decl (TREE_VALUE (link),
1312 "label `%s' defined but not used");
1313 IDENTIFIER_LABEL_VALUE (DECL_NAME (TREE_VALUE (link))) = 0;
1315 /* Delete this element from the list. */
1316 link = TREE_CHAIN (link);
1317 if (prev)
1318 TREE_CHAIN (prev) = link;
1319 else
1320 named_labels = link;
1322 else
1324 prev = link;
1325 link = TREE_CHAIN (link);
1329 /* Bring back all the labels that were shadowed. */
1330 for (link = shadowed_labels; link; link = TREE_CHAIN (link))
1331 if (DECL_NAME (TREE_VALUE (link)) != 0)
1332 IDENTIFIER_LABEL_VALUE (DECL_NAME (TREE_VALUE (link)))
1333 = TREE_VALUE (link);
1335 named_labels = chainon (named_labels, level->names);
1336 shadowed_labels = level->shadowed;
1338 /* Pop the current level, and free the structure for reuse. */
1339 label_level_chain = label_level_chain->level_chain;
1340 level->level_chain = free_binding_level;
1341 free_binding_level = level;
1344 /* Push a definition or a declaration of struct, union or enum tag "name".
1345 "type" should be the type node.
1346 We assume that the tag "name" is not already defined.
1348 Note that the definition may really be just a forward reference.
1349 In that case, the TYPE_SIZE will be zero. */
1351 void
1352 pushtag (name, type)
1353 tree name, type;
1355 register struct binding_level *b;
1357 /* Find the proper binding level for this type tag. */
1359 for (b = current_binding_level; b->tag_transparent; b = b->level_chain)
1360 continue;
1362 if (name)
1364 /* Record the identifier as the type's name if it has none. */
1366 if (TYPE_NAME (type) == 0)
1367 TYPE_NAME (type) = name;
1370 b->tags = tree_cons (name, type, b->tags);
1372 /* Create a fake NULL-named TYPE_DECL node whose TREE_TYPE will be the
1373 tagged type we just added to the current binding level. This fake
1374 NULL-named TYPE_DECL node helps dwarfout.c to know when it needs
1375 to output a representation of a tagged type, and it also gives
1376 us a convenient place to record the "scope start" address for the
1377 tagged type. */
1379 TYPE_STUB_DECL (type) = pushdecl (build_decl (TYPE_DECL, NULL_TREE, type));
1381 /* An approximation for now, so we can tell this is a function-scope tag.
1382 This will be updated in poplevel. */
1383 TYPE_CONTEXT (type) = DECL_CONTEXT (TYPE_STUB_DECL (type));
1386 /* Handle when a new declaration NEWDECL
1387 has the same name as an old one OLDDECL
1388 in the same binding contour.
1389 Prints an error message if appropriate.
1391 If safely possible, alter OLDDECL to look like NEWDECL, and return 1.
1392 Otherwise, return 0.
1394 When DIFFERENT_BINDING_LEVEL is true, NEWDECL is an external declaration,
1395 and OLDDECL is in an outer binding level and should thus not be changed. */
1397 static int
1398 duplicate_decls (newdecl, olddecl, different_binding_level)
1399 register tree newdecl, olddecl;
1400 int different_binding_level;
1402 int types_match = comptypes (TREE_TYPE (newdecl), TREE_TYPE (olddecl));
1403 int new_is_definition = (TREE_CODE (newdecl) == FUNCTION_DECL
1404 && DECL_INITIAL (newdecl) != 0);
1405 tree oldtype = TREE_TYPE (olddecl);
1406 tree newtype = TREE_TYPE (newdecl);
1407 int errmsg = 0;
1409 if (DECL_P (olddecl))
1410 DECL_MACHINE_ATTRIBUTES (newdecl)
1411 = merge_machine_decl_attributes (olddecl, newdecl);
1413 if (TREE_CODE (newtype) == ERROR_MARK
1414 || TREE_CODE (oldtype) == ERROR_MARK)
1415 types_match = 0;
1417 /* New decl is completely inconsistent with the old one =>
1418 tell caller to replace the old one.
1419 This is always an error except in the case of shadowing a builtin. */
1420 if (TREE_CODE (olddecl) != TREE_CODE (newdecl))
1422 if (TREE_CODE (olddecl) == FUNCTION_DECL
1423 && (DECL_BUILT_IN (olddecl)
1424 || DECL_BUILT_IN_NONANSI (olddecl)))
1426 /* If you declare a built-in or predefined function name as static,
1427 the old definition is overridden,
1428 but optionally warn this was a bad choice of name. */
1429 if (!TREE_PUBLIC (newdecl))
1431 if (!warn_shadow)
1433 else if (DECL_BUILT_IN (olddecl))
1434 warning_with_decl (newdecl, "shadowing built-in function `%s'");
1435 else
1436 warning_with_decl (newdecl, "shadowing library function `%s'");
1438 /* Likewise, if the built-in is not ansi, then programs can
1439 override it even globally without an error. */
1440 else if (! DECL_BUILT_IN (olddecl))
1441 warning_with_decl (newdecl,
1442 "library function `%s' declared as non-function");
1444 else if (DECL_BUILT_IN_NONANSI (olddecl))
1445 warning_with_decl (newdecl,
1446 "built-in function `%s' declared as non-function");
1447 else
1448 warning_with_decl (newdecl,
1449 "built-in function `%s' declared as non-function");
1451 else
1453 error_with_decl (newdecl, "`%s' redeclared as different kind of symbol");
1454 error_with_decl (olddecl, "previous declaration of `%s'");
1457 return 0;
1460 /* For real parm decl following a forward decl,
1461 return 1 so old decl will be reused. */
1462 if (types_match && TREE_CODE (newdecl) == PARM_DECL
1463 && TREE_ASM_WRITTEN (olddecl) && ! TREE_ASM_WRITTEN (newdecl))
1464 return 1;
1466 /* The new declaration is the same kind of object as the old one.
1467 The declarations may partially match. Print warnings if they don't
1468 match enough. Ultimately, copy most of the information from the new
1469 decl to the old one, and keep using the old one. */
1471 if (flag_traditional && TREE_CODE (newdecl) == FUNCTION_DECL
1472 && IDENTIFIER_IMPLICIT_DECL (DECL_NAME (newdecl)) == olddecl
1473 && DECL_INITIAL (olddecl) == 0)
1474 /* If -traditional, avoid error for redeclaring fcn
1475 after implicit decl. */
1477 else if (TREE_CODE (olddecl) == FUNCTION_DECL
1478 && DECL_BUILT_IN (olddecl))
1480 /* A function declaration for a built-in function. */
1481 if (!TREE_PUBLIC (newdecl))
1483 /* If you declare a built-in function name as static, the
1484 built-in definition is overridden,
1485 but optionally warn this was a bad choice of name. */
1486 if (warn_shadow)
1487 warning_with_decl (newdecl, "shadowing built-in function `%s'");
1488 /* Discard the old built-in function. */
1489 return 0;
1491 else if (!types_match)
1493 /* Accept the return type of the new declaration if same modes. */
1494 tree oldreturntype = TREE_TYPE (oldtype);
1495 tree newreturntype = TREE_TYPE (newtype);
1497 if (TYPE_MODE (oldreturntype) == TYPE_MODE (newreturntype))
1499 /* Function types may be shared, so we can't just modify
1500 the return type of olddecl's function type. */
1501 tree trytype
1502 = build_function_type (newreturntype,
1503 TYPE_ARG_TYPES (oldtype));
1505 types_match = comptypes (newtype, trytype);
1506 if (types_match)
1507 oldtype = trytype;
1509 /* Accept harmless mismatch in first argument type also.
1510 This is for the ffs and fprintf builtins. */
1511 if (TYPE_ARG_TYPES (TREE_TYPE (newdecl)) != 0
1512 && TYPE_ARG_TYPES (oldtype) != 0
1513 && TREE_VALUE (TYPE_ARG_TYPES (newtype)) != 0
1514 && TREE_VALUE (TYPE_ARG_TYPES (oldtype)) != 0
1515 && (TYPE_MODE (TREE_VALUE (TYPE_ARG_TYPES (newtype)))
1516 == TYPE_MODE (TREE_VALUE (TYPE_ARG_TYPES (oldtype)))))
1518 /* Function types may be shared, so we can't just modify
1519 the return type of olddecl's function type. */
1520 tree trytype
1521 = build_function_type (TREE_TYPE (oldtype),
1522 tree_cons (NULL_TREE,
1523 TREE_VALUE (TYPE_ARG_TYPES (newtype)),
1524 TREE_CHAIN (TYPE_ARG_TYPES (oldtype))));
1526 types_match = comptypes (newtype, trytype);
1527 if (types_match)
1528 oldtype = trytype;
1530 if (! different_binding_level)
1531 TREE_TYPE (olddecl) = oldtype;
1533 if (!types_match)
1535 /* If types don't match for a built-in, throw away the built-in. */
1536 warning_with_decl (newdecl, "conflicting types for built-in function `%s'");
1537 return 0;
1540 else if (TREE_CODE (olddecl) == FUNCTION_DECL
1541 && DECL_SOURCE_LINE (olddecl) == 0)
1543 /* A function declaration for a predeclared function
1544 that isn't actually built in. */
1545 if (!TREE_PUBLIC (newdecl))
1547 /* If you declare it as static, the
1548 default definition is overridden. */
1549 return 0;
1551 else if (!types_match)
1553 /* If the types don't match, preserve volatility indication.
1554 Later on, we will discard everything else about the
1555 default declaration. */
1556 TREE_THIS_VOLATILE (newdecl) |= TREE_THIS_VOLATILE (olddecl);
1559 /* Permit char *foo () to match void *foo (...) if not pedantic,
1560 if one of them came from a system header file. */
1561 else if (!types_match
1562 && TREE_CODE (olddecl) == FUNCTION_DECL
1563 && TREE_CODE (newdecl) == FUNCTION_DECL
1564 && TREE_CODE (TREE_TYPE (oldtype)) == POINTER_TYPE
1565 && TREE_CODE (TREE_TYPE (newtype)) == POINTER_TYPE
1566 && (DECL_IN_SYSTEM_HEADER (olddecl)
1567 || DECL_IN_SYSTEM_HEADER (newdecl))
1568 && ((TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (newtype))) == void_type_node
1569 && TYPE_ARG_TYPES (oldtype) == 0
1570 && self_promoting_args_p (TYPE_ARG_TYPES (newtype))
1571 && TREE_TYPE (TREE_TYPE (oldtype)) == char_type_node)
1573 (TREE_TYPE (TREE_TYPE (newtype)) == char_type_node
1574 && TYPE_ARG_TYPES (newtype) == 0
1575 && self_promoting_args_p (TYPE_ARG_TYPES (oldtype))
1576 && TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (oldtype))) == void_type_node)))
1578 if (pedantic)
1579 pedwarn_with_decl (newdecl, "conflicting types for `%s'");
1580 /* Make sure we keep void * as ret type, not char *. */
1581 if (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (oldtype))) == void_type_node)
1582 TREE_TYPE (newdecl) = newtype = oldtype;
1584 /* Set DECL_IN_SYSTEM_HEADER, so that if we see another declaration
1585 we will come back here again. */
1586 DECL_IN_SYSTEM_HEADER (newdecl) = 1;
1588 else if (!types_match
1589 /* Permit char *foo (int, ...); followed by char *foo ();
1590 if not pedantic. */
1591 && ! (TREE_CODE (olddecl) == FUNCTION_DECL
1592 && ! pedantic
1593 /* Return types must still match. */
1594 && comptypes (TREE_TYPE (oldtype),
1595 TREE_TYPE (newtype))
1596 && TYPE_ARG_TYPES (newtype) == 0))
1598 error_with_decl (newdecl, "conflicting types for `%s'");
1599 /* Check for function type mismatch
1600 involving an empty arglist vs a nonempty one. */
1601 if (TREE_CODE (olddecl) == FUNCTION_DECL
1602 && comptypes (TREE_TYPE (oldtype),
1603 TREE_TYPE (newtype))
1604 && ((TYPE_ARG_TYPES (oldtype) == 0
1605 && DECL_INITIAL (olddecl) == 0)
1607 (TYPE_ARG_TYPES (newtype) == 0
1608 && DECL_INITIAL (newdecl) == 0)))
1610 /* Classify the problem further. */
1611 register tree t = TYPE_ARG_TYPES (oldtype);
1612 if (t == 0)
1613 t = TYPE_ARG_TYPES (newtype);
1614 for (; t; t = TREE_CHAIN (t))
1616 register tree type = TREE_VALUE (t);
1618 if (TREE_CHAIN (t) == 0
1619 && TYPE_MAIN_VARIANT (type) != void_type_node)
1621 error ("A parameter list with an ellipsis can't match an empty parameter name list declaration.");
1622 break;
1625 if (simple_type_promotes_to (type) != NULL_TREE)
1627 error ("An argument type that has a default promotion can't match an empty parameter name list declaration.");
1628 break;
1632 error_with_decl (olddecl, "previous declaration of `%s'");
1634 else
1636 errmsg = redeclaration_error_message (newdecl, olddecl);
1637 if (errmsg)
1639 switch (errmsg)
1641 case 1:
1642 error_with_decl (newdecl, "redefinition of `%s'");
1643 break;
1644 case 2:
1645 error_with_decl (newdecl, "redeclaration of `%s'");
1646 break;
1647 case 3:
1648 error_with_decl (newdecl, "conflicting declarations of `%s'");
1649 break;
1650 default:
1651 abort ();
1654 error_with_decl (olddecl,
1655 ((DECL_INITIAL (olddecl)
1656 && current_binding_level == global_binding_level)
1657 ? "`%s' previously defined here"
1658 : "`%s' previously declared here"));
1660 else if (TREE_CODE (newdecl) == TYPE_DECL
1661 && (DECL_IN_SYSTEM_HEADER (olddecl)
1662 || DECL_IN_SYSTEM_HEADER (newdecl)))
1664 warning_with_decl (newdecl, "redefinition of `%s'");
1665 warning_with_decl
1666 (olddecl,
1667 ((DECL_INITIAL (olddecl)
1668 && current_binding_level == global_binding_level)
1669 ? "`%s' previously defined here"
1670 : "`%s' previously declared here"));
1672 else if (TREE_CODE (olddecl) == FUNCTION_DECL
1673 && DECL_INITIAL (olddecl) != 0
1674 && TYPE_ARG_TYPES (oldtype) == 0
1675 && TYPE_ARG_TYPES (newtype) != 0
1676 && TYPE_ACTUAL_ARG_TYPES (oldtype) != 0)
1678 register tree type, parm;
1679 register int nargs;
1680 /* Prototype decl follows defn w/o prototype. */
1682 for (parm = TYPE_ACTUAL_ARG_TYPES (oldtype),
1683 type = TYPE_ARG_TYPES (newtype),
1684 nargs = 1;
1686 parm = TREE_CHAIN (parm), type = TREE_CHAIN (type), nargs++)
1688 if (TYPE_MAIN_VARIANT (TREE_VALUE (parm)) == void_type_node
1689 && TYPE_MAIN_VARIANT (TREE_VALUE (type)) == void_type_node)
1691 warning_with_decl (newdecl, "prototype for `%s' follows");
1692 warning_with_decl (olddecl, "non-prototype definition here");
1693 break;
1695 if (TYPE_MAIN_VARIANT (TREE_VALUE (parm)) == void_type_node
1696 || TYPE_MAIN_VARIANT (TREE_VALUE (type)) == void_type_node)
1698 error_with_decl (newdecl,
1699 "prototype for `%s' follows and number of arguments doesn't match");
1700 error_with_decl (olddecl, "non-prototype definition here");
1701 errmsg = 1;
1702 break;
1704 /* Type for passing arg must be consistent
1705 with that declared for the arg. */
1706 if (! comptypes (TREE_VALUE (parm), TREE_VALUE (type))
1707 /* If -traditional, allow `unsigned int' instead of `int'
1708 in the prototype. */
1709 && (! (flag_traditional
1710 && TYPE_MAIN_VARIANT (TREE_VALUE (parm)) == integer_type_node
1711 && TYPE_MAIN_VARIANT (TREE_VALUE (type)) == unsigned_type_node)))
1713 error_with_decl (newdecl,
1714 "prototype for `%s' follows and argument %d doesn't match",
1715 nargs);
1716 error_with_decl (olddecl, "non-prototype definition here");
1717 errmsg = 1;
1718 break;
1722 /* Warn about mismatches in various flags. */
1723 else
1725 /* Warn if function is now inline
1726 but was previously declared not inline and has been called. */
1727 if (TREE_CODE (olddecl) == FUNCTION_DECL
1728 && ! DECL_INLINE (olddecl) && DECL_INLINE (newdecl)
1729 && TREE_USED (olddecl))
1730 warning_with_decl (newdecl,
1731 "`%s' declared inline after being called");
1732 if (TREE_CODE (olddecl) == FUNCTION_DECL
1733 && ! DECL_INLINE (olddecl) && DECL_INLINE (newdecl)
1734 && DECL_INITIAL (olddecl) != 0)
1735 warning_with_decl (newdecl,
1736 "`%s' declared inline after its definition");
1738 /* If pedantic, warn when static declaration follows a non-static
1739 declaration. Otherwise, do so only for functions. */
1740 if ((pedantic || TREE_CODE (olddecl) == FUNCTION_DECL)
1741 && TREE_PUBLIC (olddecl)
1742 && !TREE_PUBLIC (newdecl))
1743 warning_with_decl (newdecl, "static declaration for `%s' follows non-static");
1745 /* If warn_traditional, warn when a non-static function
1746 declaration follows a static one. */
1747 if (warn_traditional && !in_system_header
1748 && TREE_CODE (olddecl) == FUNCTION_DECL
1749 && !TREE_PUBLIC (olddecl)
1750 && TREE_PUBLIC (newdecl))
1751 warning_with_decl (newdecl, "non-static declaration for `%s' follows static");
1753 /* Warn when const declaration follows a non-const
1754 declaration, but not for functions. */
1755 if (TREE_CODE (olddecl) != FUNCTION_DECL
1756 && !TREE_READONLY (olddecl)
1757 && TREE_READONLY (newdecl))
1758 warning_with_decl (newdecl, "const declaration for `%s' follows non-const");
1759 /* These bits are logically part of the type, for variables.
1760 But not for functions
1761 (where qualifiers are not valid ANSI anyway). */
1762 else if (pedantic && TREE_CODE (olddecl) != FUNCTION_DECL
1763 && (TREE_READONLY (newdecl) != TREE_READONLY (olddecl)
1764 || TREE_THIS_VOLATILE (newdecl) != TREE_THIS_VOLATILE (olddecl)))
1765 pedwarn_with_decl (newdecl, "type qualifiers for `%s' conflict with previous decl");
1769 /* Optionally warn about more than one declaration for the same name. */
1770 if (errmsg == 0 && warn_redundant_decls && DECL_SOURCE_LINE (olddecl) != 0
1771 /* Don't warn about a function declaration
1772 followed by a definition. */
1773 && !(TREE_CODE (newdecl) == FUNCTION_DECL && DECL_INITIAL (newdecl) != 0
1774 && DECL_INITIAL (olddecl) == 0)
1775 /* Don't warn about extern decl followed by (tentative) definition. */
1776 && !(DECL_EXTERNAL (olddecl) && ! DECL_EXTERNAL (newdecl)))
1778 warning_with_decl (newdecl, "redundant redeclaration of `%s' in same scope");
1779 warning_with_decl (olddecl, "previous declaration of `%s'");
1782 /* Copy all the DECL_... slots specified in the new decl
1783 except for any that we copy here from the old type.
1785 Past this point, we don't change OLDTYPE and NEWTYPE
1786 even if we change the types of NEWDECL and OLDDECL. */
1788 if (types_match)
1790 /* When copying info to olddecl, we store into write_olddecl
1791 instead. This allows us to avoid modifying olddecl when
1792 different_binding_level is true. */
1793 tree write_olddecl = different_binding_level ? newdecl : olddecl;
1795 /* Merge the data types specified in the two decls. */
1796 if (TREE_CODE (newdecl) != FUNCTION_DECL || !DECL_BUILT_IN (olddecl))
1798 if (different_binding_level)
1800 if (TYPE_ARG_TYPES (oldtype) != 0
1801 && TYPE_ARG_TYPES (newtype) == 0)
1802 TREE_TYPE (newdecl) = common_type (newtype, oldtype);
1803 else
1804 TREE_TYPE (newdecl)
1805 = build_type_attribute_variant
1806 (newtype,
1807 merge_attributes (TYPE_ATTRIBUTES (newtype),
1808 TYPE_ATTRIBUTES (oldtype)));
1810 else
1811 TREE_TYPE (newdecl)
1812 = TREE_TYPE (olddecl)
1813 = common_type (newtype, oldtype);
1816 /* Lay the type out, unless already done. */
1817 if (oldtype != TREE_TYPE (newdecl))
1819 if (TREE_TYPE (newdecl) != error_mark_node)
1820 layout_type (TREE_TYPE (newdecl));
1821 if (TREE_CODE (newdecl) != FUNCTION_DECL
1822 && TREE_CODE (newdecl) != TYPE_DECL
1823 && TREE_CODE (newdecl) != CONST_DECL)
1824 layout_decl (newdecl, 0);
1826 else
1828 /* Since the type is OLDDECL's, make OLDDECL's size go with. */
1829 DECL_SIZE (newdecl) = DECL_SIZE (olddecl);
1830 DECL_SIZE_UNIT (newdecl) = DECL_SIZE_UNIT (olddecl);
1831 DECL_MODE (newdecl) = DECL_MODE (olddecl);
1832 if (TREE_CODE (olddecl) != FUNCTION_DECL)
1833 if (DECL_ALIGN (olddecl) > DECL_ALIGN (newdecl))
1835 DECL_ALIGN (newdecl) = DECL_ALIGN (olddecl);
1836 DECL_USER_ALIGN (newdecl) |= DECL_ALIGN (olddecl);
1840 /* Keep the old rtl since we can safely use it. */
1841 COPY_DECL_RTL (olddecl, newdecl);
1843 /* Merge the type qualifiers. */
1844 if (TREE_CODE (olddecl) == FUNCTION_DECL
1845 && DECL_BUILT_IN_NONANSI (olddecl) && TREE_THIS_VOLATILE (olddecl)
1846 && ! TREE_THIS_VOLATILE (newdecl))
1847 TREE_THIS_VOLATILE (write_olddecl) = 0;
1849 if (TREE_READONLY (newdecl))
1850 TREE_READONLY (write_olddecl) = 1;
1852 if (TREE_THIS_VOLATILE (newdecl))
1854 TREE_THIS_VOLATILE (write_olddecl) = 1;
1855 if (TREE_CODE (newdecl) == VAR_DECL
1856 /* If an automatic variable is re-declared in the same
1857 function scope, but the old declaration was not
1858 volatile, make_var_volatile() would crash because the
1859 variable would have been assigned to a pseudo, not a
1860 MEM. Since this duplicate declaration is invalid
1861 anyway, we just skip the call. */
1862 && errmsg == 0)
1863 make_var_volatile (newdecl);
1866 /* Keep source location of definition rather than declaration. */
1867 /* When called with different_binding_level set, keep the old
1868 information so that meaningful diagnostics can be given. */
1869 if (DECL_INITIAL (newdecl) == 0 && DECL_INITIAL (olddecl) != 0
1870 && ! different_binding_level)
1872 DECL_SOURCE_LINE (newdecl) = DECL_SOURCE_LINE (olddecl);
1873 DECL_SOURCE_FILE (newdecl) = DECL_SOURCE_FILE (olddecl);
1876 /* Merge the unused-warning information. */
1877 if (DECL_IN_SYSTEM_HEADER (olddecl))
1878 DECL_IN_SYSTEM_HEADER (newdecl) = 1;
1879 else if (DECL_IN_SYSTEM_HEADER (newdecl))
1880 DECL_IN_SYSTEM_HEADER (write_olddecl) = 1;
1882 /* Merge the initialization information. */
1883 /* When called with different_binding_level set, don't copy over
1884 DECL_INITIAL, so that we don't accidentally change function
1885 declarations into function definitions. */
1886 if (DECL_INITIAL (newdecl) == 0 && ! different_binding_level)
1887 DECL_INITIAL (newdecl) = DECL_INITIAL (olddecl);
1889 /* Merge the section attribute.
1890 We want to issue an error if the sections conflict but that must be
1891 done later in decl_attributes since we are called before attributes
1892 are assigned. */
1893 if (DECL_SECTION_NAME (newdecl) == NULL_TREE)
1894 DECL_SECTION_NAME (newdecl) = DECL_SECTION_NAME (olddecl);
1896 /* Copy the assembler name.
1897 Currently, it can only be defined in the prototype. */
1898 COPY_DECL_ASSEMBLER_NAME (olddecl, newdecl);
1900 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1902 DECL_STATIC_CONSTRUCTOR(newdecl) |= DECL_STATIC_CONSTRUCTOR(olddecl);
1903 DECL_STATIC_DESTRUCTOR (newdecl) |= DECL_STATIC_DESTRUCTOR (olddecl);
1905 DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (newdecl)
1906 |= DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (olddecl);
1907 DECL_NO_CHECK_MEMORY_USAGE (newdecl)
1908 |= DECL_NO_CHECK_MEMORY_USAGE (olddecl);
1909 DECL_NO_LIMIT_STACK (newdecl)
1910 |= DECL_NO_LIMIT_STACK (olddecl);
1913 /* If cannot merge, then use the new type and qualifiers,
1914 and don't preserve the old rtl. */
1915 else if (! different_binding_level)
1917 TREE_TYPE (olddecl) = TREE_TYPE (newdecl);
1918 TREE_READONLY (olddecl) = TREE_READONLY (newdecl);
1919 TREE_THIS_VOLATILE (olddecl) = TREE_THIS_VOLATILE (newdecl);
1920 TREE_SIDE_EFFECTS (olddecl) = TREE_SIDE_EFFECTS (newdecl);
1923 /* Merge the storage class information. */
1924 DECL_WEAK (newdecl) |= DECL_WEAK (olddecl);
1925 /* For functions, static overrides non-static. */
1926 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1928 TREE_PUBLIC (newdecl) &= TREE_PUBLIC (olddecl);
1929 /* This is since we don't automatically
1930 copy the attributes of NEWDECL into OLDDECL. */
1931 /* No need to worry about different_binding_level here because
1932 then TREE_PUBLIC (newdecl) was true. */
1933 TREE_PUBLIC (olddecl) = TREE_PUBLIC (newdecl);
1934 /* If this clears `static', clear it in the identifier too. */
1935 if (! TREE_PUBLIC (olddecl))
1936 TREE_PUBLIC (DECL_NAME (olddecl)) = 0;
1938 if (DECL_EXTERNAL (newdecl))
1940 if (! different_binding_level)
1942 /* Don't mess with these flags on local externs; they remain
1943 external even if there's a declaration at file scope which
1944 isn't. */
1945 TREE_STATIC (newdecl) = TREE_STATIC (olddecl);
1946 DECL_EXTERNAL (newdecl) = DECL_EXTERNAL (olddecl);
1948 /* An extern decl does not override previous storage class. */
1949 TREE_PUBLIC (newdecl) = TREE_PUBLIC (olddecl);
1950 if (! DECL_EXTERNAL (newdecl))
1951 DECL_CONTEXT (newdecl) = DECL_CONTEXT (olddecl);
1953 else
1955 TREE_STATIC (olddecl) = TREE_STATIC (newdecl);
1956 TREE_PUBLIC (olddecl) = TREE_PUBLIC (newdecl);
1959 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1961 /* If we're redefining a function previously defined as extern
1962 inline, make sure we emit debug info for the inline before we
1963 throw it away, in case it was inlined into a function that hasn't
1964 been written out yet. */
1965 if (new_is_definition && DECL_INITIAL (olddecl) && TREE_USED (olddecl))
1967 note_outlining_of_inline_function (olddecl);
1969 /* The new defn must not be inline. */
1970 DECL_INLINE (newdecl) = 0;
1971 DECL_UNINLINABLE (newdecl) = 1;
1973 else
1975 /* If either decl says `inline', this fn is inline,
1976 unless its definition was passed already. */
1977 if (DECL_INLINE (newdecl) && DECL_INITIAL (olddecl) == 0)
1978 DECL_INLINE (olddecl) = 1;
1980 DECL_INLINE (newdecl) = DECL_INLINE (olddecl);
1983 if (DECL_BUILT_IN (olddecl))
1985 /* Get rid of any built-in function if new arg types don't match it
1986 or if we have a function definition. */
1987 if (! types_match || new_is_definition)
1989 if (! different_binding_level)
1991 TREE_TYPE (olddecl) = TREE_TYPE (newdecl);
1992 DECL_BUILT_IN_CLASS (olddecl) = NOT_BUILT_IN;
1995 else
1997 /* If redeclaring a builtin function, and not a definition,
1998 it stays built in. */
1999 DECL_BUILT_IN_CLASS (newdecl) = DECL_BUILT_IN_CLASS (olddecl);
2000 DECL_FUNCTION_CODE (newdecl) = DECL_FUNCTION_CODE (olddecl);
2003 /* Also preserve various other info from the definition. */
2004 else if (! new_is_definition)
2005 DECL_NUM_STMTS (newdecl) = DECL_NUM_STMTS (olddecl);
2006 if (! new_is_definition)
2008 DECL_RESULT (newdecl) = DECL_RESULT (olddecl);
2009 /* When called with different_binding_level set, don't copy over
2010 DECL_INITIAL, so that we don't accidentally change function
2011 declarations into function definitions. */
2012 if (! different_binding_level)
2013 DECL_INITIAL (newdecl) = DECL_INITIAL (olddecl);
2014 DECL_SAVED_INSNS (newdecl) = DECL_SAVED_INSNS (olddecl);
2015 DECL_ARGUMENTS (newdecl) = DECL_ARGUMENTS (olddecl);
2016 if (DECL_INLINE (newdecl))
2017 DECL_ABSTRACT_ORIGIN (newdecl) = DECL_ABSTRACT_ORIGIN (olddecl);
2020 if (different_binding_level)
2021 return 0;
2023 /* Copy most of the decl-specific fields of NEWDECL into OLDDECL.
2024 But preserve OLDDECL's DECL_UID. */
2026 register unsigned olddecl_uid = DECL_UID (olddecl);
2028 memcpy ((char *) olddecl + sizeof (struct tree_common),
2029 (char *) newdecl + sizeof (struct tree_common),
2030 sizeof (struct tree_decl) - sizeof (struct tree_common));
2031 DECL_UID (olddecl) = olddecl_uid;
2034 /* NEWDECL contains the merged attribute lists.
2035 Update OLDDECL to be the same. */
2036 DECL_MACHINE_ATTRIBUTES (olddecl) = DECL_MACHINE_ATTRIBUTES (newdecl);
2038 return 1;
2041 /* Record a decl-node X as belonging to the current lexical scope.
2042 Check for errors (such as an incompatible declaration for the same
2043 name already seen in the same scope).
2045 Returns either X or an old decl for the same name.
2046 If an old decl is returned, it may have been smashed
2047 to agree with what X says. */
2049 tree
2050 pushdecl (x)
2051 tree x;
2053 register tree t;
2054 register tree name = DECL_NAME (x);
2055 register struct binding_level *b = current_binding_level;
2057 DECL_CONTEXT (x) = current_function_decl;
2058 /* A local extern declaration for a function doesn't constitute nesting.
2059 A local auto declaration does, since it's a forward decl
2060 for a nested function coming later. */
2061 if ((TREE_CODE (x) == FUNCTION_DECL || TREE_CODE (x) == VAR_DECL)
2062 && DECL_INITIAL (x) == 0 && DECL_EXTERNAL (x))
2063 DECL_CONTEXT (x) = 0;
2065 if (warn_nested_externs && DECL_EXTERNAL (x) && b != global_binding_level
2066 && x != IDENTIFIER_IMPLICIT_DECL (name)
2067 /* Don't print error messages for __FUNCTION__ and __PRETTY_FUNCTION__ */
2068 && !DECL_IN_SYSTEM_HEADER (x))
2069 warning ("nested extern declaration of `%s'", IDENTIFIER_POINTER (name));
2071 if (name)
2073 const char *file;
2074 int line;
2075 int different_binding_level = 0;
2077 t = lookup_name_current_level (name);
2078 /* Don't type check externs here when -traditional. This is so that
2079 code with conflicting declarations inside blocks will get warnings
2080 not errors. X11 for instance depends on this. */
2081 if (! t && DECL_EXTERNAL (x) && TREE_PUBLIC (x) && ! flag_traditional)
2083 t = IDENTIFIER_GLOBAL_VALUE (name);
2084 /* Type decls at global scope don't conflict with externs declared
2085 inside lexical blocks. */
2086 if (t && TREE_CODE (t) == TYPE_DECL)
2087 t = 0;
2088 different_binding_level = 1;
2090 if (t != 0 && t == error_mark_node)
2091 /* error_mark_node is 0 for a while during initialization! */
2093 t = 0;
2094 error_with_decl (x, "`%s' used prior to declaration");
2097 if (t != 0)
2099 file = DECL_SOURCE_FILE (t);
2100 line = DECL_SOURCE_LINE (t);
2103 /* If this decl is `static' and an implicit decl was seen previously,
2104 warn. But don't complain if -traditional,
2105 since traditional compilers don't complain. */
2106 if (! flag_traditional && TREE_PUBLIC (name)
2107 /* Don't test for DECL_EXTERNAL, because grokdeclarator
2108 sets this for all functions. */
2109 && ! TREE_PUBLIC (x)
2110 && (TREE_CODE (x) == FUNCTION_DECL || b == global_binding_level)
2111 /* We used to warn also for explicit extern followed by static,
2112 but sometimes you need to do it that way. */
2113 && IDENTIFIER_IMPLICIT_DECL (name) != 0)
2115 pedwarn ("`%s' was declared implicitly `extern' and later `static'",
2116 IDENTIFIER_POINTER (name));
2117 pedwarn_with_file_and_line
2118 (DECL_SOURCE_FILE (IDENTIFIER_IMPLICIT_DECL (name)),
2119 DECL_SOURCE_LINE (IDENTIFIER_IMPLICIT_DECL (name)),
2120 "previous declaration of `%s'",
2121 IDENTIFIER_POINTER (name));
2122 TREE_THIS_VOLATILE (name) = 1;
2125 if (t != 0 && duplicate_decls (x, t, different_binding_level))
2127 if (TREE_CODE (t) == PARM_DECL)
2129 /* Don't allow more than one "real" duplicate
2130 of a forward parm decl. */
2131 TREE_ASM_WRITTEN (t) = TREE_ASM_WRITTEN (x);
2132 return t;
2134 return t;
2137 /* If we are processing a typedef statement, generate a whole new
2138 ..._TYPE node (which will be just an variant of the existing
2139 ..._TYPE node with identical properties) and then install the
2140 TYPE_DECL node generated to represent the typedef name as the
2141 TYPE_NAME of this brand new (duplicate) ..._TYPE node.
2143 The whole point here is to end up with a situation where each
2144 and every ..._TYPE node the compiler creates will be uniquely
2145 associated with AT MOST one node representing a typedef name.
2146 This way, even though the compiler substitutes corresponding
2147 ..._TYPE nodes for TYPE_DECL (i.e. "typedef name") nodes very
2148 early on, later parts of the compiler can always do the reverse
2149 translation and get back the corresponding typedef name. For
2150 example, given:
2152 typedef struct S MY_TYPE;
2153 MY_TYPE object;
2155 Later parts of the compiler might only know that `object' was of
2156 type `struct S' if it were not for code just below. With this
2157 code however, later parts of the compiler see something like:
2159 struct S' == struct S
2160 typedef struct S' MY_TYPE;
2161 struct S' object;
2163 And they can then deduce (from the node for type struct S') that
2164 the original object declaration was:
2166 MY_TYPE object;
2168 Being able to do this is important for proper support of protoize,
2169 and also for generating precise symbolic debugging information
2170 which takes full account of the programmer's (typedef) vocabulary.
2172 Obviously, we don't want to generate a duplicate ..._TYPE node if
2173 the TYPE_DECL node that we are now processing really represents a
2174 standard built-in type.
2176 Since all standard types are effectively declared at line zero
2177 in the source file, we can easily check to see if we are working
2178 on a standard type by checking the current value of lineno. */
2180 if (TREE_CODE (x) == TYPE_DECL)
2182 if (DECL_SOURCE_LINE (x) == 0)
2184 if (TYPE_NAME (TREE_TYPE (x)) == 0)
2185 TYPE_NAME (TREE_TYPE (x)) = x;
2187 else if (TREE_TYPE (x) != error_mark_node
2188 && DECL_ORIGINAL_TYPE (x) == NULL_TREE)
2190 tree tt = TREE_TYPE (x);
2191 DECL_ORIGINAL_TYPE (x) = tt;
2192 tt = build_type_copy (tt);
2193 TYPE_NAME (tt) = x;
2194 TREE_USED (tt) = TREE_USED (x);
2195 TREE_TYPE (x) = tt;
2199 /* Multiple external decls of the same identifier ought to match.
2200 Check against both global declarations (when traditional) and out of
2201 scope (limbo) block level declarations.
2203 We get warnings about inline functions where they are defined.
2204 Avoid duplicate warnings where they are used. */
2205 if (TREE_PUBLIC (x)
2206 && ! (TREE_CODE (x) == FUNCTION_DECL && DECL_INLINE (x)))
2208 tree decl;
2210 if (flag_traditional && IDENTIFIER_GLOBAL_VALUE (name) != 0
2211 && (DECL_EXTERNAL (IDENTIFIER_GLOBAL_VALUE (name))
2212 || TREE_PUBLIC (IDENTIFIER_GLOBAL_VALUE (name))))
2213 decl = IDENTIFIER_GLOBAL_VALUE (name);
2214 else if (IDENTIFIER_LIMBO_VALUE (name) != 0)
2215 /* Decls in limbo are always extern, so no need to check that. */
2216 decl = IDENTIFIER_LIMBO_VALUE (name);
2217 else
2218 decl = 0;
2220 if (decl && ! comptypes (TREE_TYPE (x), TREE_TYPE (decl))
2221 /* If old decl is built-in, we already warned if we should. */
2222 && !DECL_BUILT_IN (decl))
2224 pedwarn_with_decl (x,
2225 "type mismatch with previous external decl");
2226 pedwarn_with_decl (decl, "previous external decl of `%s'");
2230 /* If a function has had an implicit declaration, and then is defined,
2231 make sure they are compatible. */
2233 if (IDENTIFIER_IMPLICIT_DECL (name) != 0
2234 && IDENTIFIER_GLOBAL_VALUE (name) == 0
2235 && TREE_CODE (x) == FUNCTION_DECL
2236 && ! comptypes (TREE_TYPE (x),
2237 TREE_TYPE (IDENTIFIER_IMPLICIT_DECL (name))))
2239 warning_with_decl (x, "type mismatch with previous implicit declaration");
2240 warning_with_decl (IDENTIFIER_IMPLICIT_DECL (name),
2241 "previous implicit declaration of `%s'");
2244 /* In PCC-compatibility mode, extern decls of vars with no current decl
2245 take effect at top level no matter where they are. */
2246 if (flag_traditional && DECL_EXTERNAL (x)
2247 && lookup_name (name) == 0)
2249 tree type = TREE_TYPE (x);
2251 /* But don't do this if the type contains temporary nodes. */
2252 while (type)
2254 if (type == error_mark_node)
2255 break;
2256 if (TYPE_CONTEXT (type))
2258 warning_with_decl (x, "type of external `%s' is not global");
2259 /* By exiting the loop early, we leave TYPE nonzero,
2260 and thus prevent globalization of the decl. */
2261 break;
2263 else if (TREE_CODE (type) == FUNCTION_TYPE
2264 && TYPE_ARG_TYPES (type) != 0)
2265 /* The types might not be truly local,
2266 but the list of arg types certainly is temporary.
2267 Since prototypes are nontraditional,
2268 ok not to do the traditional thing. */
2269 break;
2270 type = TREE_TYPE (type);
2273 if (type == 0)
2274 b = global_binding_level;
2277 /* This name is new in its binding level.
2278 Install the new declaration and return it. */
2279 if (b == global_binding_level)
2281 /* Install a global value. */
2283 /* If the first global decl has external linkage,
2284 warn if we later see static one. */
2285 if (IDENTIFIER_GLOBAL_VALUE (name) == 0 && TREE_PUBLIC (x))
2286 TREE_PUBLIC (name) = 1;
2288 IDENTIFIER_GLOBAL_VALUE (name) = x;
2290 /* We no longer care about any previous block level declarations. */
2291 IDENTIFIER_LIMBO_VALUE (name) = 0;
2293 /* Don't forget if the function was used via an implicit decl. */
2294 if (IDENTIFIER_IMPLICIT_DECL (name)
2295 && TREE_USED (IDENTIFIER_IMPLICIT_DECL (name)))
2296 TREE_USED (x) = 1, TREE_USED (name) = 1;
2298 /* Don't forget if its address was taken in that way. */
2299 if (IDENTIFIER_IMPLICIT_DECL (name)
2300 && TREE_ADDRESSABLE (IDENTIFIER_IMPLICIT_DECL (name)))
2301 TREE_ADDRESSABLE (x) = 1;
2303 /* Warn about mismatches against previous implicit decl. */
2304 if (IDENTIFIER_IMPLICIT_DECL (name) != 0
2305 /* If this real decl matches the implicit, don't complain. */
2306 && ! (TREE_CODE (x) == FUNCTION_DECL
2307 && (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (x)))
2308 == integer_type_node)))
2309 pedwarn ("`%s' was previously implicitly declared to return `int'",
2310 IDENTIFIER_POINTER (name));
2312 /* If this decl is `static' and an `extern' was seen previously,
2313 that is erroneous. */
2314 if (TREE_PUBLIC (name)
2315 && ! TREE_PUBLIC (x) && ! DECL_EXTERNAL (x))
2317 /* Okay to redeclare an ANSI built-in as static. */
2318 if (t != 0 && DECL_BUILT_IN (t))
2320 /* Okay to declare a non-ANSI built-in as anything. */
2321 else if (t != 0 && DECL_BUILT_IN_NONANSI (t))
2323 /* Okay to have global type decl after an earlier extern
2324 declaration inside a lexical block. */
2325 else if (TREE_CODE (x) == TYPE_DECL)
2327 else if (IDENTIFIER_IMPLICIT_DECL (name))
2329 if (! TREE_THIS_VOLATILE (name))
2330 pedwarn ("`%s' was declared implicitly `extern' and later `static'",
2331 IDENTIFIER_POINTER (name));
2333 else
2334 pedwarn ("`%s' was declared `extern' and later `static'",
2335 IDENTIFIER_POINTER (name));
2338 else
2340 /* Here to install a non-global value. */
2341 tree oldlocal = IDENTIFIER_LOCAL_VALUE (name);
2342 tree oldglobal = IDENTIFIER_GLOBAL_VALUE (name);
2344 IDENTIFIER_LOCAL_VALUE (name) = x;
2346 /* If this is an extern function declaration, see if we
2347 have a global definition or declaration for the function. */
2348 if (oldlocal == 0
2349 && oldglobal != 0
2350 && TREE_CODE (x) == FUNCTION_DECL
2351 && TREE_CODE (oldglobal) == FUNCTION_DECL
2352 && DECL_EXTERNAL (x) && ! DECL_INLINE (x))
2354 /* We have one. Their types must agree. */
2355 if (! comptypes (TREE_TYPE (x),
2356 TREE_TYPE (IDENTIFIER_GLOBAL_VALUE (name))))
2357 pedwarn_with_decl (x, "extern declaration of `%s' doesn't match global one");
2358 else
2360 /* Inner extern decl is inline if global one is.
2361 Copy enough to really inline it. */
2362 if (DECL_INLINE (oldglobal))
2364 DECL_INLINE (x) = DECL_INLINE (oldglobal);
2365 DECL_INITIAL (x) = (current_function_decl == oldglobal
2366 ? 0 : DECL_INITIAL (oldglobal));
2367 DECL_SAVED_INSNS (x) = DECL_SAVED_INSNS (oldglobal);
2368 DECL_NUM_STMTS (x) = DECL_NUM_STMTS (oldglobal);
2369 DECL_ARGUMENTS (x) = DECL_ARGUMENTS (oldglobal);
2370 DECL_RESULT (x) = DECL_RESULT (oldglobal);
2371 TREE_ASM_WRITTEN (x) = TREE_ASM_WRITTEN (oldglobal);
2372 DECL_ABSTRACT_ORIGIN (x)
2373 = DECL_ABSTRACT_ORIGIN (oldglobal);
2375 /* Inner extern decl is built-in if global one is. */
2376 if (DECL_BUILT_IN (oldglobal))
2378 DECL_BUILT_IN_CLASS (x) = DECL_BUILT_IN_CLASS (oldglobal);
2379 DECL_FUNCTION_CODE (x) = DECL_FUNCTION_CODE (oldglobal);
2381 /* Keep the arg types from a file-scope fcn defn. */
2382 if (TYPE_ARG_TYPES (TREE_TYPE (oldglobal)) != 0
2383 && DECL_INITIAL (oldglobal)
2384 && TYPE_ARG_TYPES (TREE_TYPE (x)) == 0)
2385 TREE_TYPE (x) = TREE_TYPE (oldglobal);
2389 #if 0
2390 /* This case is probably sometimes the right thing to do. */
2391 /* If we have a local external declaration,
2392 then any file-scope declaration should not
2393 have been static. */
2394 if (oldlocal == 0 && oldglobal != 0
2395 && !TREE_PUBLIC (oldglobal)
2396 && DECL_EXTERNAL (x) && TREE_PUBLIC (x))
2397 warning ("`%s' locally external but globally static",
2398 IDENTIFIER_POINTER (name));
2399 #endif
2401 /* If we have a local external declaration,
2402 and no file-scope declaration has yet been seen,
2403 then if we later have a file-scope decl it must not be static. */
2404 if (oldlocal == 0
2405 && DECL_EXTERNAL (x)
2406 && TREE_PUBLIC (x))
2408 if (oldglobal == 0)
2409 TREE_PUBLIC (name) = 1;
2411 /* Save this decl, so that we can do type checking against
2412 other decls after it falls out of scope.
2414 Only save it once. This prevents temporary decls created in
2415 expand_inline_function from being used here, since this
2416 will have been set when the inline function was parsed.
2417 It also helps give slightly better warnings. */
2418 if (IDENTIFIER_LIMBO_VALUE (name) == 0)
2419 IDENTIFIER_LIMBO_VALUE (name) = x;
2422 /* Warn if shadowing an argument at the top level of the body. */
2423 if (oldlocal != 0 && !DECL_EXTERNAL (x)
2424 /* This warning doesn't apply to the parms of a nested fcn. */
2425 && ! current_binding_level->parm_flag
2426 /* Check that this is one level down from the parms. */
2427 && current_binding_level->level_chain->parm_flag
2428 /* Check that the decl being shadowed
2429 comes from the parm level, one level up. */
2430 && chain_member (oldlocal, current_binding_level->level_chain->names))
2432 if (TREE_CODE (oldlocal) == PARM_DECL)
2433 pedwarn ("declaration of `%s' shadows a parameter",
2434 IDENTIFIER_POINTER (name));
2435 else
2436 pedwarn ("declaration of `%s' shadows a symbol from the parameter list",
2437 IDENTIFIER_POINTER (name));
2440 /* Maybe warn if shadowing something else. */
2441 else if (warn_shadow && !DECL_EXTERNAL (x)
2442 /* No shadow warnings for internally generated vars. */
2443 && DECL_SOURCE_LINE (x) != 0
2444 /* No shadow warnings for vars made for inlining. */
2445 && ! DECL_FROM_INLINE (x))
2447 const char *id = IDENTIFIER_POINTER (name);
2449 if (TREE_CODE (x) == PARM_DECL
2450 && current_binding_level->level_chain->parm_flag)
2451 /* Don't warn about the parm names in function declarator
2452 within a function declarator.
2453 It would be nice to avoid warning in any function
2454 declarator in a declaration, as opposed to a definition,
2455 but there is no way to tell it's not a definition. */
2457 else if (oldlocal != 0 && TREE_CODE (oldlocal) == PARM_DECL)
2458 warning ("declaration of `%s' shadows a parameter", id);
2459 else if (oldlocal != 0)
2460 warning ("declaration of `%s' shadows previous local", id);
2461 else if (IDENTIFIER_GLOBAL_VALUE (name) != 0
2462 && IDENTIFIER_GLOBAL_VALUE (name) != error_mark_node)
2463 warning ("declaration of `%s' shadows global declaration", id);
2466 /* If storing a local value, there may already be one (inherited).
2467 If so, record it for restoration when this binding level ends. */
2468 if (oldlocal != 0)
2469 b->shadowed = tree_cons (name, oldlocal, b->shadowed);
2472 /* Keep count of variables in this level with incomplete type.
2473 If the input is erroneous, we can have error_mark in the type
2474 slot (e.g. "f(void a, ...)") - that doesn't count as an
2475 incomplete type. */
2476 if (TREE_TYPE (x) != error_mark_node
2477 && !COMPLETE_TYPE_P (TREE_TYPE (x)))
2478 ++b->n_incomplete;
2481 /* Put decls on list in reverse order.
2482 We will reverse them later if necessary. */
2483 TREE_CHAIN (x) = b->names;
2484 b->names = x;
2486 return x;
2489 /* Like pushdecl, only it places X in GLOBAL_BINDING_LEVEL, if appropriate. */
2491 tree
2492 pushdecl_top_level (x)
2493 tree x;
2495 register tree t;
2496 register struct binding_level *b = current_binding_level;
2498 current_binding_level = global_binding_level;
2499 t = pushdecl (x);
2500 current_binding_level = b;
2501 return t;
2504 /* Generate an implicit declaration for identifier FUNCTIONID
2505 as a function of type int (). Print a warning if appropriate. */
2507 tree
2508 implicitly_declare (functionid)
2509 tree functionid;
2511 register tree decl;
2512 int traditional_warning = 0;
2513 /* Only one "implicit declaration" warning per identifier. */
2514 int implicit_warning;
2516 /* We used to reuse an old implicit decl here,
2517 but this loses with inline functions because it can clobber
2518 the saved decl chains. */
2519 #if 0
2520 if (IDENTIFIER_IMPLICIT_DECL (functionid) != 0)
2521 decl = IDENTIFIER_IMPLICIT_DECL (functionid);
2522 else
2523 #endif
2524 decl = build_decl (FUNCTION_DECL, functionid, default_function_type);
2526 /* Warn of implicit decl following explicit local extern decl.
2527 This is probably a program designed for traditional C. */
2528 if (TREE_PUBLIC (functionid) && IDENTIFIER_GLOBAL_VALUE (functionid) == 0)
2529 traditional_warning = 1;
2531 /* Warn once of an implicit declaration. */
2532 implicit_warning = (IDENTIFIER_IMPLICIT_DECL (functionid) == 0);
2534 DECL_EXTERNAL (decl) = 1;
2535 TREE_PUBLIC (decl) = 1;
2537 /* Record that we have an implicit decl and this is it. */
2538 IDENTIFIER_IMPLICIT_DECL (functionid) = decl;
2540 /* ANSI standard says implicit declarations are in the innermost block.
2541 So we record the decl in the standard fashion.
2542 If flag_traditional is set, pushdecl does it top-level. */
2543 pushdecl (decl);
2545 /* This is a no-op in c-lang.c or something real in objc-actions.c. */
2546 maybe_objc_check_decl (decl);
2548 rest_of_decl_compilation (decl, NULL_PTR, 0, 0);
2550 if (implicit_warning)
2551 implicit_decl_warning (functionid);
2552 else if (warn_traditional && traditional_warning)
2553 warning ("function `%s' was previously declared within a block",
2554 IDENTIFIER_POINTER (functionid));
2556 /* Write a record describing this implicit function declaration to the
2557 prototypes file (if requested). */
2559 gen_aux_info_record (decl, 0, 1, 0);
2561 return decl;
2564 void
2565 implicit_decl_warning (id)
2566 tree id;
2568 const char *name = IDENTIFIER_POINTER (id);
2569 if (mesg_implicit_function_declaration == 2)
2570 error ("implicit declaration of function `%s'", name);
2571 else if (mesg_implicit_function_declaration == 1)
2572 warning ("implicit declaration of function `%s'", name);
2575 /* Return zero if the declaration NEWDECL is valid
2576 when the declaration OLDDECL (assumed to be for the same name)
2577 has already been seen.
2578 Otherwise return 1 if NEWDECL is a redefinition, 2 if it is a redeclaration,
2579 and 3 if it is a conflicting declaration. */
2581 static int
2582 redeclaration_error_message (newdecl, olddecl)
2583 tree newdecl, olddecl;
2585 if (TREE_CODE (newdecl) == TYPE_DECL)
2587 if (flag_traditional && TREE_TYPE (newdecl) == TREE_TYPE (olddecl))
2588 return 0;
2589 /* pushdecl creates distinct types for TYPE_DECLs by calling
2590 build_type_copy, so the above comparison generally fails. We do
2591 another test against the TYPE_MAIN_VARIANT of the olddecl, which
2592 is equivalent to what this code used to do before the build_type_copy
2593 call. The variant type distinction should not matter for traditional
2594 code, because it doesn't have type qualifiers. */
2595 if (flag_traditional
2596 && TYPE_MAIN_VARIANT (TREE_TYPE (olddecl)) == TREE_TYPE (newdecl))
2597 return 0;
2598 if (DECL_IN_SYSTEM_HEADER (olddecl) || DECL_IN_SYSTEM_HEADER (newdecl))
2599 return 0;
2600 return 1;
2602 else if (TREE_CODE (newdecl) == FUNCTION_DECL)
2604 /* Declarations of functions can insist on internal linkage
2605 but they can't be inconsistent with internal linkage,
2606 so there can be no error on that account.
2607 However defining the same name twice is no good. */
2608 if (DECL_INITIAL (olddecl) != 0 && DECL_INITIAL (newdecl) != 0
2609 /* However, defining once as extern inline and a second
2610 time in another way is ok. */
2611 && ! (DECL_INLINE (olddecl) && DECL_EXTERNAL (olddecl)
2612 && ! (DECL_INLINE (newdecl) && DECL_EXTERNAL (newdecl))))
2613 return 1;
2614 return 0;
2616 else if (DECL_CONTEXT (newdecl) == NULL_TREE)
2618 /* Objects declared at top level: */
2619 /* If at least one is a reference, it's ok. */
2620 if (DECL_EXTERNAL (newdecl) || DECL_EXTERNAL (olddecl))
2621 return 0;
2622 /* Reject two definitions. */
2623 if (DECL_INITIAL (olddecl) != 0 && DECL_INITIAL (newdecl) != 0)
2624 return 1;
2625 /* Now we have two tentative defs, or one tentative and one real def. */
2626 /* Insist that the linkage match. */
2627 if (TREE_PUBLIC (olddecl) != TREE_PUBLIC (newdecl))
2628 return 3;
2629 return 0;
2631 else if (current_binding_level->parm_flag
2632 && TREE_ASM_WRITTEN (olddecl) && !TREE_ASM_WRITTEN (newdecl))
2633 return 0;
2634 else
2636 /* Newdecl has block scope. If olddecl has block scope also, then
2637 reject two definitions, and reject a definition together with an
2638 external reference. Otherwise, it is OK, because newdecl must
2639 be an extern reference to olddecl. */
2640 if (!(DECL_EXTERNAL (newdecl) && DECL_EXTERNAL (olddecl))
2641 && DECL_CONTEXT (newdecl) == DECL_CONTEXT (olddecl))
2642 return 2;
2643 return 0;
2647 /* Get the LABEL_DECL corresponding to identifier ID as a label.
2648 Create one if none exists so far for the current function.
2649 This function is called for both label definitions and label references. */
2651 tree
2652 lookup_label (id)
2653 tree id;
2655 register tree decl = IDENTIFIER_LABEL_VALUE (id);
2657 if (current_function_decl == 0)
2659 error ("label %s referenced outside of any function",
2660 IDENTIFIER_POINTER (id));
2661 return 0;
2664 /* Use a label already defined or ref'd with this name. */
2665 if (decl != 0)
2667 /* But not if it is inherited and wasn't declared to be inheritable. */
2668 if (DECL_CONTEXT (decl) != current_function_decl
2669 && ! C_DECLARED_LABEL_FLAG (decl))
2670 return shadow_label (id);
2671 return decl;
2674 decl = build_decl (LABEL_DECL, id, void_type_node);
2676 /* A label not explicitly declared must be local to where it's ref'd. */
2677 DECL_CONTEXT (decl) = current_function_decl;
2679 DECL_MODE (decl) = VOIDmode;
2681 /* Say where one reference is to the label,
2682 for the sake of the error if it is not defined. */
2683 DECL_SOURCE_LINE (decl) = lineno;
2684 DECL_SOURCE_FILE (decl) = input_filename;
2686 IDENTIFIER_LABEL_VALUE (id) = decl;
2688 named_labels = tree_cons (NULL_TREE, decl, named_labels);
2690 return decl;
2693 /* Make a label named NAME in the current function,
2694 shadowing silently any that may be inherited from containing functions
2695 or containing scopes.
2697 Note that valid use, if the label being shadowed
2698 comes from another scope in the same function,
2699 requires calling declare_nonlocal_label right away. */
2701 tree
2702 shadow_label (name)
2703 tree name;
2705 register tree decl = IDENTIFIER_LABEL_VALUE (name);
2707 if (decl != 0)
2709 register tree dup;
2711 /* Check to make sure that the label hasn't already been declared
2712 at this label scope */
2713 for (dup = named_labels; dup; dup = TREE_CHAIN (dup))
2714 if (TREE_VALUE (dup) == decl)
2716 error ("duplicate label declaration `%s'",
2717 IDENTIFIER_POINTER (name));
2718 error_with_decl (TREE_VALUE (dup),
2719 "this is a previous declaration");
2720 /* Just use the previous declaration. */
2721 return lookup_label (name);
2724 shadowed_labels = tree_cons (NULL_TREE, decl, shadowed_labels);
2725 IDENTIFIER_LABEL_VALUE (name) = decl = 0;
2728 return lookup_label (name);
2731 /* Define a label, specifying the location in the source file.
2732 Return the LABEL_DECL node for the label, if the definition is valid.
2733 Otherwise return 0. */
2735 tree
2736 define_label (filename, line, name)
2737 const char *filename;
2738 int line;
2739 tree name;
2741 tree decl = lookup_label (name);
2743 /* If label with this name is known from an outer context, shadow it. */
2744 if (decl != 0 && DECL_CONTEXT (decl) != current_function_decl)
2746 shadowed_labels = tree_cons (NULL_TREE, decl, shadowed_labels);
2747 IDENTIFIER_LABEL_VALUE (name) = 0;
2748 decl = lookup_label (name);
2751 if (warn_traditional && !in_system_header && lookup_name (name))
2752 warning_with_file_and_line (filename, line,
2753 "traditional C lacks a separate namespace for labels, identifier `%s' conflicts",
2754 IDENTIFIER_POINTER (name));
2756 if (DECL_INITIAL (decl) != 0)
2758 error_with_file_and_line (filename, line, "duplicate label `%s'",
2759 IDENTIFIER_POINTER (name));
2760 return 0;
2762 else
2764 /* Mark label as having been defined. */
2765 DECL_INITIAL (decl) = error_mark_node;
2766 /* Say where in the source. */
2767 DECL_SOURCE_FILE (decl) = filename;
2768 DECL_SOURCE_LINE (decl) = line;
2769 return decl;
2773 /* Return the list of declarations of the current level.
2774 Note that this list is in reverse order unless/until
2775 you nreverse it; and when you do nreverse it, you must
2776 store the result back using `storedecls' or you will lose. */
2778 tree
2779 getdecls ()
2781 return current_binding_level->names;
2784 /* Return the list of type-tags (for structs, etc) of the current level. */
2786 tree
2787 gettags ()
2789 return current_binding_level->tags;
2792 /* Store the list of declarations of the current level.
2793 This is done for the parameter declarations of a function being defined,
2794 after they are modified in the light of any missing parameters. */
2796 static void
2797 storedecls (decls)
2798 tree decls;
2800 current_binding_level->names = decls;
2803 /* Similarly, store the list of tags of the current level. */
2805 static void
2806 storetags (tags)
2807 tree tags;
2809 current_binding_level->tags = tags;
2812 /* Given NAME, an IDENTIFIER_NODE,
2813 return the structure (or union or enum) definition for that name.
2814 Searches binding levels from BINDING_LEVEL up to the global level.
2815 If THISLEVEL_ONLY is nonzero, searches only the specified context
2816 (but skips any tag-transparent contexts to find one that is
2817 meaningful for tags).
2818 CODE says which kind of type the caller wants;
2819 it is RECORD_TYPE or UNION_TYPE or ENUMERAL_TYPE.
2820 If the wrong kind of type is found, an error is reported. */
2822 static tree
2823 lookup_tag (code, name, binding_level, thislevel_only)
2824 enum tree_code code;
2825 struct binding_level *binding_level;
2826 tree name;
2827 int thislevel_only;
2829 register struct binding_level *level;
2830 int thislevel = 1;
2832 for (level = binding_level; level; level = level->level_chain)
2834 register tree tail;
2835 for (tail = level->tags; tail; tail = TREE_CHAIN (tail))
2837 if (TREE_PURPOSE (tail) == name)
2839 if (TREE_CODE (TREE_VALUE (tail)) != code)
2841 /* Definition isn't the kind we were looking for. */
2842 pending_invalid_xref = name;
2843 pending_invalid_xref_file = input_filename;
2844 pending_invalid_xref_line = lineno;
2845 /* If in the same binding level as a declaration as a tag
2846 of a different type, this must not be allowed to
2847 shadow that tag, so give the error immediately.
2848 (For example, "struct foo; union foo;" is invalid.) */
2849 if (thislevel)
2850 pending_xref_error ();
2852 return TREE_VALUE (tail);
2855 if (! level->tag_transparent)
2857 if (thislevel_only)
2858 return NULL_TREE;
2859 thislevel = 0;
2862 return NULL_TREE;
2865 /* Print an error message now
2866 for a recent invalid struct, union or enum cross reference.
2867 We don't print them immediately because they are not invalid
2868 when used in the `struct foo;' construct for shadowing. */
2870 void
2871 pending_xref_error ()
2873 if (pending_invalid_xref != 0)
2874 error_with_file_and_line (pending_invalid_xref_file,
2875 pending_invalid_xref_line,
2876 "`%s' defined as wrong kind of tag",
2877 IDENTIFIER_POINTER (pending_invalid_xref));
2878 pending_invalid_xref = 0;
2881 /* Given a type, find the tag that was defined for it and return the tag name.
2882 Otherwise return 0. */
2884 static tree
2885 lookup_tag_reverse (type)
2886 tree type;
2888 register struct binding_level *level;
2890 for (level = current_binding_level; level; level = level->level_chain)
2892 register tree tail;
2893 for (tail = level->tags; tail; tail = TREE_CHAIN (tail))
2895 if (TREE_VALUE (tail) == type)
2896 return TREE_PURPOSE (tail);
2899 return NULL_TREE;
2902 /* Look up NAME in the current binding level and its superiors
2903 in the namespace of variables, functions and typedefs.
2904 Return a ..._DECL node of some kind representing its definition,
2905 or return 0 if it is undefined. */
2907 tree
2908 lookup_name (name)
2909 tree name;
2911 register tree val;
2913 if (current_binding_level != global_binding_level
2914 && IDENTIFIER_LOCAL_VALUE (name))
2915 val = IDENTIFIER_LOCAL_VALUE (name);
2916 else
2917 val = IDENTIFIER_GLOBAL_VALUE (name);
2918 return val;
2921 /* Similar to `lookup_name' but look only at current binding level. */
2923 tree
2924 lookup_name_current_level (name)
2925 tree name;
2927 register tree t;
2929 if (current_binding_level == global_binding_level)
2930 return IDENTIFIER_GLOBAL_VALUE (name);
2932 if (IDENTIFIER_LOCAL_VALUE (name) == 0)
2933 return 0;
2935 for (t = current_binding_level->names; t; t = TREE_CHAIN (t))
2936 if (DECL_NAME (t) == name)
2937 break;
2939 return t;
2942 /* Mark ARG for GC. */
2944 static void
2945 mark_binding_level (arg)
2946 void *arg;
2948 struct binding_level *level = *(struct binding_level **) arg;
2950 for (; level != 0; level = level->level_chain)
2952 ggc_mark_tree (level->names);
2953 ggc_mark_tree (level->tags);
2954 ggc_mark_tree (level->shadowed);
2955 ggc_mark_tree (level->blocks);
2956 ggc_mark_tree (level->this_block);
2957 ggc_mark_tree (level->parm_order);
2961 /* Create the predefined scalar types of C,
2962 and some nodes representing standard constants (0, 1, (void *) 0).
2963 Initialize the global binding level.
2964 Make definitions for built-in primitive functions. */
2966 void
2967 init_decl_processing ()
2969 register tree endlink;
2970 tree ptr_ftype_void, ptr_ftype_ptr;
2972 current_function_decl = NULL;
2973 named_labels = NULL;
2974 current_binding_level = NULL_BINDING_LEVEL;
2975 free_binding_level = NULL_BINDING_LEVEL;
2977 /* Make the binding_level structure for global names. */
2978 pushlevel (0);
2979 global_binding_level = current_binding_level;
2981 build_common_tree_nodes (flag_signed_char);
2983 c_common_nodes_and_builtins ();
2985 boolean_type_node = integer_type_node;
2986 boolean_true_node = integer_one_node;
2987 boolean_false_node = integer_zero_node;
2989 /* With GCC, C99's _Bool is always of size 1. */
2990 c_bool_type_node = make_unsigned_type (CHAR_TYPE_SIZE);
2991 TREE_SET_CODE (c_bool_type_node, BOOLEAN_TYPE);
2992 TYPE_MAX_VALUE (c_bool_type_node) = build_int_2 (1, 0);
2993 TREE_TYPE (TYPE_MAX_VALUE (c_bool_type_node)) = c_bool_type_node;
2994 TYPE_PRECISION (c_bool_type_node) = 1;
2995 pushdecl (build_decl (TYPE_DECL, get_identifier ("_Bool"),
2996 c_bool_type_node));
2997 c_bool_false_node = build_int_2 (0, 0);
2998 TREE_TYPE (c_bool_false_node) = c_bool_type_node;
2999 c_bool_true_node = build_int_2 (1, 0);
3000 TREE_TYPE (c_bool_true_node) = c_bool_type_node;
3002 endlink = void_list_node;
3003 ptr_ftype_void = build_function_type (ptr_type_node, endlink);
3004 ptr_ftype_ptr
3005 = build_function_type (ptr_type_node,
3006 tree_cons (NULL_TREE, ptr_type_node, endlink));
3008 /* Types which are common to the fortran compiler and libf2c. When
3009 changing these, you also need to be concerned with f/com.h. */
3011 if (TYPE_PRECISION (float_type_node)
3012 == TYPE_PRECISION (long_integer_type_node))
3014 g77_integer_type_node = long_integer_type_node;
3015 g77_uinteger_type_node = long_unsigned_type_node;
3017 else if (TYPE_PRECISION (float_type_node)
3018 == TYPE_PRECISION (integer_type_node))
3020 g77_integer_type_node = integer_type_node;
3021 g77_uinteger_type_node = unsigned_type_node;
3023 else
3024 g77_integer_type_node = g77_uinteger_type_node = NULL_TREE;
3026 if (g77_integer_type_node != NULL_TREE)
3028 pushdecl (build_decl (TYPE_DECL, get_identifier ("__g77_integer"),
3029 g77_integer_type_node));
3030 pushdecl (build_decl (TYPE_DECL, get_identifier ("__g77_uinteger"),
3031 g77_uinteger_type_node));
3034 if (TYPE_PRECISION (float_type_node) * 2
3035 == TYPE_PRECISION (long_integer_type_node))
3037 g77_longint_type_node = long_integer_type_node;
3038 g77_ulongint_type_node = long_unsigned_type_node;
3040 else if (TYPE_PRECISION (float_type_node) * 2
3041 == TYPE_PRECISION (long_long_integer_type_node))
3043 g77_longint_type_node = long_long_integer_type_node;
3044 g77_ulongint_type_node = long_long_unsigned_type_node;
3046 else
3047 g77_longint_type_node = g77_ulongint_type_node = NULL_TREE;
3049 if (g77_longint_type_node != NULL_TREE)
3051 pushdecl (build_decl (TYPE_DECL, get_identifier ("__g77_longint"),
3052 g77_longint_type_node));
3053 pushdecl (build_decl (TYPE_DECL, get_identifier ("__g77_ulongint"),
3054 g77_ulongint_type_node));
3057 builtin_function ("__builtin_aggregate_incoming_address",
3058 build_function_type (ptr_type_node, NULL_TREE),
3059 BUILT_IN_AGGREGATE_INCOMING_ADDRESS,
3060 BUILT_IN_NORMAL, NULL_PTR);
3062 /* Hooks for the DWARF 2 __throw routine. */
3063 builtin_function ("__builtin_unwind_init",
3064 build_function_type (void_type_node, endlink),
3065 BUILT_IN_UNWIND_INIT, BUILT_IN_NORMAL, NULL_PTR);
3066 builtin_function ("__builtin_dwarf_cfa", ptr_ftype_void,
3067 BUILT_IN_DWARF_CFA, BUILT_IN_NORMAL, NULL_PTR);
3068 builtin_function ("__builtin_dwarf_fp_regnum",
3069 build_function_type (unsigned_type_node, endlink),
3070 BUILT_IN_DWARF_FP_REGNUM, BUILT_IN_NORMAL, NULL_PTR);
3071 builtin_function ("__builtin_init_dwarf_reg_size_table", void_ftype_ptr,
3072 BUILT_IN_INIT_DWARF_REG_SIZES, BUILT_IN_NORMAL, NULL_PTR);
3073 builtin_function ("__builtin_frob_return_addr", ptr_ftype_ptr,
3074 BUILT_IN_FROB_RETURN_ADDR, BUILT_IN_NORMAL, NULL_PTR);
3075 builtin_function ("__builtin_extract_return_addr", ptr_ftype_ptr,
3076 BUILT_IN_EXTRACT_RETURN_ADDR, BUILT_IN_NORMAL, NULL_PTR);
3077 builtin_function
3078 ("__builtin_eh_return",
3079 build_function_type (void_type_node,
3080 tree_cons (NULL_TREE,
3081 type_for_mode (ptr_mode, 0),
3082 tree_cons (NULL_TREE,
3083 ptr_type_node,
3084 endlink))),
3085 BUILT_IN_EH_RETURN, BUILT_IN_NORMAL, NULL_PTR);
3087 pedantic_lvalues = pedantic;
3089 /* Create the global bindings for __FUNCTION__, __PRETTY_FUNCTION__,
3090 and __func__. */
3091 function_id_node = get_identifier ("__FUNCTION__");
3092 pretty_function_id_node = get_identifier ("__PRETTY_FUNCTION__");
3093 func_id_node = get_identifier ("__func__");
3094 make_fname_decl = c_make_fname_decl;
3095 declare_function_name ();
3097 start_identifier_warnings ();
3099 /* Prepare to check format strings against argument lists. */
3100 init_function_format_info ();
3102 incomplete_decl_finalize_hook = finish_incomplete_decl;
3104 /* Record our roots. */
3106 ggc_add_tree_root (c_global_trees, CTI_MAX);
3107 ggc_add_root (&c_stmt_tree, 1, sizeof c_stmt_tree, mark_stmt_tree);
3108 ggc_add_tree_root (&c_scope_stmt_stack, 1);
3109 ggc_add_tree_root (&named_labels, 1);
3110 ggc_add_tree_root (&shadowed_labels, 1);
3111 ggc_add_root (&current_binding_level, 1, sizeof current_binding_level,
3112 mark_binding_level);
3113 ggc_add_root (&label_level_chain, 1, sizeof label_level_chain,
3114 mark_binding_level);
3115 ggc_add_tree_root (&static_ctors, 1);
3116 ggc_add_tree_root (&static_dtors, 1);
3119 /* Create the VAR_DECL for __FUNCTION__ etc. ID is the name to give the
3120 decl, NAME is the initialization string and TYPE_DEP indicates whether
3121 NAME depended on the type of the function. As we don't yet implement
3122 delayed emission of static data, we mark the decl as emitted
3123 so it is not placed in the output. Anything using it must therefore pull
3124 out the STRING_CST initializer directly. This does mean that these names
3125 are string merging candidates, which is wrong for C99's __func__. FIXME. */
3127 static tree
3128 c_make_fname_decl (id, name, type_dep)
3129 tree id;
3130 const char *name;
3131 int type_dep ATTRIBUTE_UNUSED;
3133 tree decl, type, init;
3134 size_t length = strlen (name);
3136 type = build_array_type
3137 (build_qualified_type (char_type_node, TYPE_QUAL_CONST),
3138 build_index_type (build_int_2 (length, 0)));
3140 decl = build_decl (VAR_DECL, id, type);
3141 TREE_STATIC (decl) = 1;
3142 TREE_READONLY (decl) = 1;
3143 TREE_ASM_WRITTEN (decl) = 1;
3144 DECL_SOURCE_LINE (decl) = 0;
3145 DECL_ARTIFICIAL (decl) = 1;
3146 DECL_IN_SYSTEM_HEADER (decl) = 1;
3147 DECL_IGNORED_P (decl) = 1;
3148 init = build_string (length + 1, name);
3149 TREE_TYPE (init) = type;
3150 DECL_INITIAL (decl) = init;
3151 finish_decl (pushdecl (decl), init, NULL_TREE);
3153 return decl;
3156 /* Return a definition for a builtin function named NAME and whose data type
3157 is TYPE. TYPE should be a function type with argument types.
3158 FUNCTION_CODE tells later passes how to compile calls to this function.
3159 See tree.h for its possible values.
3161 If LIBRARY_NAME is nonzero, use that for DECL_ASSEMBLER_NAME,
3162 the name to be called if we can't opencode the function. */
3164 tree
3165 builtin_function (name, type, function_code, class, library_name)
3166 const char *name;
3167 tree type;
3168 int function_code;
3169 enum built_in_class class;
3170 const char *library_name;
3172 tree decl = build_decl (FUNCTION_DECL, get_identifier (name), type);
3173 DECL_EXTERNAL (decl) = 1;
3174 TREE_PUBLIC (decl) = 1;
3175 /* If -traditional, permit redefining a builtin function any way you like.
3176 (Though really, if the program redefines these functions,
3177 it probably won't work right unless compiled with -fno-builtin.) */
3178 if (flag_traditional && name[0] != '_')
3179 DECL_BUILT_IN_NONANSI (decl) = 1;
3180 if (library_name)
3181 SET_DECL_ASSEMBLER_NAME (decl, get_identifier (library_name));
3182 make_decl_rtl (decl, NULL_PTR);
3183 pushdecl (decl);
3184 DECL_BUILT_IN_CLASS (decl) = class;
3185 DECL_FUNCTION_CODE (decl) = function_code;
3187 /* Warn if a function in the namespace for users
3188 is used without an occasion to consider it declared. */
3189 if (name[0] != '_' || name[1] != '_')
3190 C_DECL_ANTICIPATED (decl) = 1;
3192 return decl;
3195 /* Called when a declaration is seen that contains no names to declare.
3196 If its type is a reference to a structure, union or enum inherited
3197 from a containing scope, shadow that tag name for the current scope
3198 with a forward reference.
3199 If its type defines a new named structure or union
3200 or defines an enum, it is valid but we need not do anything here.
3201 Otherwise, it is an error. */
3203 void
3204 shadow_tag (declspecs)
3205 tree declspecs;
3207 shadow_tag_warned (declspecs, 0);
3210 void
3211 shadow_tag_warned (declspecs, warned)
3212 tree declspecs;
3213 int warned;
3214 /* 1 => we have done a pedwarn. 2 => we have done a warning, but
3215 no pedwarn. */
3217 int found_tag = 0;
3218 register tree link;
3219 tree specs, attrs;
3221 pending_invalid_xref = 0;
3223 /* Remove the attributes from declspecs, since they will confuse the
3224 following code. */
3225 split_specs_attrs (declspecs, &specs, &attrs);
3227 for (link = specs; link; link = TREE_CHAIN (link))
3229 register tree value = TREE_VALUE (link);
3230 register enum tree_code code = TREE_CODE (value);
3232 if (code == RECORD_TYPE || code == UNION_TYPE || code == ENUMERAL_TYPE)
3233 /* Used to test also that TYPE_SIZE (value) != 0.
3234 That caused warning for `struct foo;' at top level in the file. */
3236 register tree name = lookup_tag_reverse (value);
3237 register tree t;
3239 found_tag++;
3241 if (name == 0)
3243 if (warned != 1 && code != ENUMERAL_TYPE)
3244 /* Empty unnamed enum OK */
3246 pedwarn ("unnamed struct/union that defines no instances");
3247 warned = 1;
3250 else
3252 t = lookup_tag (code, name, current_binding_level, 1);
3254 if (t == 0)
3256 t = make_node (code);
3257 pushtag (name, t);
3261 else
3263 if (!warned && ! in_system_header)
3265 warning ("useless keyword or type name in empty declaration");
3266 warned = 2;
3271 if (found_tag > 1)
3272 error ("two types specified in one empty declaration");
3274 if (warned != 1)
3276 if (found_tag == 0)
3277 pedwarn ("empty declaration");
3281 /* Decode a "typename", such as "int **", returning a ..._TYPE node. */
3283 tree
3284 groktypename (typename)
3285 tree typename;
3287 if (TREE_CODE (typename) != TREE_LIST)
3288 return typename;
3289 return grokdeclarator (TREE_VALUE (typename),
3290 TREE_PURPOSE (typename),
3291 TYPENAME, 0);
3294 /* Return a PARM_DECL node for a given pair of specs and declarator. */
3296 tree
3297 groktypename_in_parm_context (typename)
3298 tree typename;
3300 if (TREE_CODE (typename) != TREE_LIST)
3301 return typename;
3302 return grokdeclarator (TREE_VALUE (typename),
3303 TREE_PURPOSE (typename),
3304 PARM, 0);
3307 /* Decode a declarator in an ordinary declaration or data definition.
3308 This is called as soon as the type information and variable name
3309 have been parsed, before parsing the initializer if any.
3310 Here we create the ..._DECL node, fill in its type,
3311 and put it on the list of decls for the current context.
3312 The ..._DECL node is returned as the value.
3314 Exception: for arrays where the length is not specified,
3315 the type is left null, to be filled in by `finish_decl'.
3317 Function definitions do not come here; they go to start_function
3318 instead. However, external and forward declarations of functions
3319 do go through here. Structure field declarations are done by
3320 grokfield and not through here. */
3322 tree
3323 start_decl (declarator, declspecs, initialized, attributes, prefix_attributes)
3324 tree declarator, declspecs;
3325 int initialized;
3326 tree attributes, prefix_attributes;
3328 register tree decl = grokdeclarator (declarator, declspecs,
3329 NORMAL, initialized);
3330 register tree tem;
3332 if (warn_main > 0 && TREE_CODE (decl) != FUNCTION_DECL
3333 && MAIN_NAME_P (DECL_NAME (decl)))
3334 warning_with_decl (decl, "`%s' is usually a function");
3336 if (initialized)
3337 /* Is it valid for this decl to have an initializer at all?
3338 If not, set INITIALIZED to zero, which will indirectly
3339 tell `finish_decl' to ignore the initializer once it is parsed. */
3340 switch (TREE_CODE (decl))
3342 case TYPE_DECL:
3343 /* typedef foo = bar means give foo the same type as bar.
3344 We haven't parsed bar yet, so `finish_decl' will fix that up.
3345 Any other case of an initialization in a TYPE_DECL is an error. */
3346 if (pedantic || list_length (declspecs) > 1)
3348 error ("typedef `%s' is initialized",
3349 IDENTIFIER_POINTER (DECL_NAME (decl)));
3350 initialized = 0;
3352 break;
3354 case FUNCTION_DECL:
3355 error ("function `%s' is initialized like a variable",
3356 IDENTIFIER_POINTER (DECL_NAME (decl)));
3357 initialized = 0;
3358 break;
3360 case PARM_DECL:
3361 /* DECL_INITIAL in a PARM_DECL is really DECL_ARG_TYPE. */
3362 error ("parameter `%s' is initialized",
3363 IDENTIFIER_POINTER (DECL_NAME (decl)));
3364 initialized = 0;
3365 break;
3367 default:
3368 /* Don't allow initializations for incomplete types
3369 except for arrays which might be completed by the initialization. */
3371 /* This can happen if the array size is an undefined macro. We already
3372 gave a warning, so we don't need another one. */
3373 if (TREE_TYPE (decl) == error_mark_node)
3374 initialized = 0;
3375 else if (COMPLETE_TYPE_P (TREE_TYPE (decl)))
3377 /* A complete type is ok if size is fixed. */
3379 if (TREE_CODE (TYPE_SIZE (TREE_TYPE (decl))) != INTEGER_CST
3380 || C_DECL_VARIABLE_SIZE (decl))
3382 error ("variable-sized object may not be initialized");
3383 initialized = 0;
3386 else if (TREE_CODE (TREE_TYPE (decl)) != ARRAY_TYPE)
3388 error ("variable `%s' has initializer but incomplete type",
3389 IDENTIFIER_POINTER (DECL_NAME (decl)));
3390 initialized = 0;
3392 else if (!COMPLETE_TYPE_P (TREE_TYPE (TREE_TYPE (decl))))
3394 error ("elements of array `%s' have incomplete type",
3395 IDENTIFIER_POINTER (DECL_NAME (decl)));
3396 initialized = 0;
3400 if (initialized)
3402 #if 0
3403 /* Seems redundant with grokdeclarator. */
3404 if (current_binding_level != global_binding_level
3405 && DECL_EXTERNAL (decl)
3406 && TREE_CODE (decl) != FUNCTION_DECL)
3407 warning ("declaration of `%s' has `extern' and is initialized",
3408 IDENTIFIER_POINTER (DECL_NAME (decl)));
3409 #endif
3410 DECL_EXTERNAL (decl) = 0;
3411 if (current_binding_level == global_binding_level)
3412 TREE_STATIC (decl) = 1;
3414 /* Tell `pushdecl' this is an initialized decl
3415 even though we don't yet have the initializer expression.
3416 Also tell `finish_decl' it may store the real initializer. */
3417 DECL_INITIAL (decl) = error_mark_node;
3420 /* If this is a function declaration, write a record describing it to the
3421 prototypes file (if requested). */
3423 if (TREE_CODE (decl) == FUNCTION_DECL)
3424 gen_aux_info_record (decl, 0, 0, TYPE_ARG_TYPES (TREE_TYPE (decl)) != 0);
3426 /* ANSI specifies that a tentative definition which is not merged with
3427 a non-tentative definition behaves exactly like a definition with an
3428 initializer equal to zero. (Section 3.7.2)
3429 -fno-common gives strict ANSI behavior. Usually you don't want it.
3430 This matters only for variables with external linkage. */
3431 if (! flag_no_common || ! TREE_PUBLIC (decl))
3432 DECL_COMMON (decl) = 1;
3434 #ifdef SET_DEFAULT_DECL_ATTRIBUTES
3435 SET_DEFAULT_DECL_ATTRIBUTES (decl, attributes);
3436 #endif
3438 /* Set attributes here so if duplicate decl, will have proper attributes. */
3439 decl_attributes (decl, attributes, prefix_attributes);
3441 /* Add this decl to the current binding level.
3442 TEM may equal DECL or it may be a previous decl of the same name. */
3443 tem = pushdecl (decl);
3445 /* For a local variable, define the RTL now. */
3446 if (current_binding_level != global_binding_level
3447 /* But not if this is a duplicate decl
3448 and we preserved the rtl from the previous one
3449 (which may or may not happen). */
3450 && !DECL_RTL_SET_P (tem)
3451 && !DECL_CONTEXT (tem))
3453 if (TREE_TYPE (tem) != error_mark_node
3454 && COMPLETE_TYPE_P (TREE_TYPE (tem)))
3455 expand_decl (tem);
3456 else if (TREE_CODE (TREE_TYPE (tem)) == ARRAY_TYPE
3457 && DECL_INITIAL (tem) != 0)
3458 expand_decl (tem);
3461 return tem;
3464 /* Finish processing of a declaration;
3465 install its initial value.
3466 If the length of an array type is not known before,
3467 it must be determined now, from the initial value, or it is an error. */
3469 void
3470 finish_decl (decl, init, asmspec_tree)
3471 tree decl, init;
3472 tree asmspec_tree;
3474 register tree type = TREE_TYPE (decl);
3475 int was_incomplete = (DECL_SIZE (decl) == 0);
3476 const char *asmspec = 0;
3478 /* If a name was specified, get the string. */
3479 if (asmspec_tree)
3480 asmspec = TREE_STRING_POINTER (asmspec_tree);
3482 /* If `start_decl' didn't like having an initialization, ignore it now. */
3484 if (init != 0 && DECL_INITIAL (decl) == 0)
3485 init = 0;
3486 /* Don't crash if parm is initialized. */
3487 if (TREE_CODE (decl) == PARM_DECL)
3488 init = 0;
3490 if (init)
3492 if (TREE_CODE (decl) != TYPE_DECL)
3493 store_init_value (decl, init);
3494 else
3496 /* typedef foo = bar; store the type of bar as the type of foo. */
3497 TREE_TYPE (decl) = TREE_TYPE (init);
3498 DECL_INITIAL (decl) = init = 0;
3502 /* Deduce size of array from initialization, if not already known */
3504 if (TREE_CODE (type) == ARRAY_TYPE
3505 && TYPE_DOMAIN (type) == 0
3506 && TREE_CODE (decl) != TYPE_DECL)
3508 int do_default
3509 = (TREE_STATIC (decl)
3510 /* Even if pedantic, an external linkage array
3511 may have incomplete type at first. */
3512 ? pedantic && !TREE_PUBLIC (decl)
3513 : !DECL_EXTERNAL (decl));
3514 int failure
3515 = complete_array_type (type, DECL_INITIAL (decl), do_default);
3517 /* Get the completed type made by complete_array_type. */
3518 type = TREE_TYPE (decl);
3520 if (failure == 1)
3521 error_with_decl (decl, "initializer fails to determine size of `%s'");
3523 else if (failure == 2)
3525 if (do_default)
3526 error_with_decl (decl, "array size missing in `%s'");
3527 /* If a `static' var's size isn't known,
3528 make it extern as well as static, so it does not get
3529 allocated.
3530 If it is not `static', then do not mark extern;
3531 finish_incomplete_decl will give it a default size
3532 and it will get allocated. */
3533 else if (!pedantic && TREE_STATIC (decl) && ! TREE_PUBLIC (decl))
3534 DECL_EXTERNAL (decl) = 1;
3537 /* TYPE_MAX_VALUE is always one less than the number of elements
3538 in the array, because we start counting at zero. Therefore,
3539 warn only if the value is less than zero. */
3540 else if (pedantic && TYPE_DOMAIN (type) != 0
3541 && tree_int_cst_sgn (TYPE_MAX_VALUE (TYPE_DOMAIN (type))) < 0)
3542 error_with_decl (decl, "zero or negative size array `%s'");
3544 layout_decl (decl, 0);
3547 if (TREE_CODE (decl) == VAR_DECL)
3549 if (DECL_SIZE (decl) == 0 && TREE_TYPE (decl) != error_mark_node
3550 && COMPLETE_TYPE_P (TREE_TYPE (decl)))
3551 layout_decl (decl, 0);
3553 if (DECL_SIZE (decl) == 0
3554 /* Don't give an error if we already gave one earlier. */
3555 && TREE_TYPE (decl) != error_mark_node
3556 && (TREE_STATIC (decl)
3558 /* A static variable with an incomplete type
3559 is an error if it is initialized.
3560 Also if it is not file scope.
3561 Otherwise, let it through, but if it is not `extern'
3562 then it may cause an error message later. */
3563 (DECL_INITIAL (decl) != 0
3564 || DECL_CONTEXT (decl) != 0)
3566 /* An automatic variable with an incomplete type
3567 is an error. */
3568 !DECL_EXTERNAL (decl)))
3570 error_with_decl (decl, "storage size of `%s' isn't known");
3571 TREE_TYPE (decl) = error_mark_node;
3574 if ((DECL_EXTERNAL (decl) || TREE_STATIC (decl))
3575 && DECL_SIZE (decl) != 0)
3577 if (TREE_CODE (DECL_SIZE (decl)) == INTEGER_CST)
3578 constant_expression_warning (DECL_SIZE (decl));
3579 else
3580 error_with_decl (decl, "storage size of `%s' isn't constant");
3583 if (TREE_USED (type))
3584 TREE_USED (decl) = 1;
3587 /* If this is a function and an assembler name is specified, it isn't
3588 builtin any more. Also reset DECL_RTL so we can give it its new
3589 name. */
3590 if (TREE_CODE (decl) == FUNCTION_DECL && asmspec)
3592 DECL_BUILT_IN_CLASS (decl) = NOT_BUILT_IN;
3593 SET_DECL_RTL (decl, NULL_RTX);
3594 SET_DECL_ASSEMBLER_NAME (decl, get_identifier (asmspec));
3597 /* Output the assembler code and/or RTL code for variables and functions,
3598 unless the type is an undefined structure or union.
3599 If not, it will get done when the type is completed. */
3601 if (TREE_CODE (decl) == VAR_DECL || TREE_CODE (decl) == FUNCTION_DECL)
3603 /* This is a no-op in c-lang.c or something real in objc-actions.c. */
3604 maybe_objc_check_decl (decl);
3606 if (!DECL_CONTEXT (decl))
3607 rest_of_decl_compilation (decl, asmspec,
3608 (DECL_CONTEXT (decl) == 0
3609 || TREE_ASM_WRITTEN (decl)), 0);
3610 else
3612 /* This is a local variable. If there is an ASMSPEC, the
3613 user has requested that we handle it specially. */
3614 if (asmspec)
3616 /* In conjunction with an ASMSPEC, the `register'
3617 keyword indicates that we should place the variable
3618 in a particular register. */
3619 if (DECL_REGISTER (decl))
3620 DECL_C_HARD_REGISTER (decl) = 1;
3622 /* If this is not a static variable, issue a warning.
3623 It doesn't make any sense to give an ASMSPEC for an
3624 ordinary, non-register local variable. Historically,
3625 GCC has accepted -- but ignored -- the ASMSPEC in
3626 this case. */
3627 if (TREE_CODE (decl) == VAR_DECL
3628 && !DECL_REGISTER (decl)
3629 && !TREE_STATIC (decl))
3630 warning_with_decl (decl,
3631 "ignoring asm-specifier for non-static local variable `%s'");
3632 else
3633 SET_DECL_ASSEMBLER_NAME (decl, get_identifier (asmspec));
3636 add_decl_stmt (decl);
3639 if (DECL_CONTEXT (decl) != 0)
3641 /* Recompute the RTL of a local array now
3642 if it used to be an incomplete type. */
3643 if (was_incomplete
3644 && ! TREE_STATIC (decl) && ! DECL_EXTERNAL (decl))
3646 /* If we used it already as memory, it must stay in memory. */
3647 TREE_ADDRESSABLE (decl) = TREE_USED (decl);
3648 /* If it's still incomplete now, no init will save it. */
3649 if (DECL_SIZE (decl) == 0)
3650 DECL_INITIAL (decl) = 0;
3655 if (TREE_CODE (decl) == TYPE_DECL)
3657 /* This is a no-op in c-lang.c or something real in objc-actions.c. */
3658 maybe_objc_check_decl (decl);
3659 rest_of_decl_compilation (decl, NULL_PTR, DECL_CONTEXT (decl) == 0, 0);
3662 /* At the end of a declaration, throw away any variable type sizes
3663 of types defined inside that declaration. There is no use
3664 computing them in the following function definition. */
3665 if (current_binding_level == global_binding_level)
3666 get_pending_sizes ();
3669 /* If DECL has a cleanup, build and return that cleanup here.
3670 This is a callback called by expand_expr. */
3672 tree
3673 maybe_build_cleanup (decl)
3674 tree decl ATTRIBUTE_UNUSED;
3676 /* There are no cleanups in C. */
3677 return NULL_TREE;
3680 /* Given a parsed parameter declaration,
3681 decode it into a PARM_DECL and push that on the current binding level.
3682 Also, for the sake of forward parm decls,
3683 record the given order of parms in `parm_order'. */
3685 void
3686 push_parm_decl (parm)
3687 tree parm;
3689 tree decl;
3690 int old_immediate_size_expand = immediate_size_expand;
3691 /* Don't try computing parm sizes now -- wait till fn is called. */
3692 immediate_size_expand = 0;
3694 decl = grokdeclarator (TREE_VALUE (TREE_PURPOSE (parm)),
3695 TREE_PURPOSE (TREE_PURPOSE (parm)), PARM, 0);
3696 decl_attributes (decl, TREE_VALUE (TREE_VALUE (parm)),
3697 TREE_PURPOSE (TREE_VALUE (parm)));
3699 #if 0
3700 if (DECL_NAME (decl))
3702 tree olddecl;
3703 olddecl = lookup_name (DECL_NAME (decl));
3704 if (pedantic && olddecl != 0 && TREE_CODE (olddecl) == TYPE_DECL)
3705 pedwarn_with_decl (decl,
3706 "ANSI C forbids parameter `%s' shadowing typedef");
3708 #endif
3710 decl = pushdecl (decl);
3712 immediate_size_expand = old_immediate_size_expand;
3714 current_binding_level->parm_order
3715 = tree_cons (NULL_TREE, decl, current_binding_level->parm_order);
3717 /* Add this decl to the current binding level. */
3718 finish_decl (decl, NULL_TREE, NULL_TREE);
3721 /* Clear the given order of parms in `parm_order'.
3722 Used at start of parm list,
3723 and also at semicolon terminating forward decls. */
3725 void
3726 clear_parm_order ()
3728 current_binding_level->parm_order = NULL_TREE;
3731 /* Make TYPE a complete type based on INITIAL_VALUE.
3732 Return 0 if successful, 1 if INITIAL_VALUE can't be deciphered,
3733 2 if there was no information (in which case assume 1 if DO_DEFAULT). */
3736 complete_array_type (type, initial_value, do_default)
3737 tree type;
3738 tree initial_value;
3739 int do_default;
3741 register tree maxindex = NULL_TREE;
3742 int value = 0;
3744 if (initial_value)
3746 /* Note MAXINDEX is really the maximum index,
3747 one less than the size. */
3748 if (TREE_CODE (initial_value) == STRING_CST)
3750 int eltsize
3751 = int_size_in_bytes (TREE_TYPE (TREE_TYPE (initial_value)));
3752 maxindex = build_int_2 ((TREE_STRING_LENGTH (initial_value)
3753 / eltsize) - 1, 0);
3755 else if (TREE_CODE (initial_value) == CONSTRUCTOR)
3757 tree elts = CONSTRUCTOR_ELTS (initial_value);
3758 maxindex = build_int_2 (-1, -1);
3759 for (; elts; elts = TREE_CHAIN (elts))
3761 if (TREE_PURPOSE (elts))
3762 maxindex = TREE_PURPOSE (elts);
3763 else
3764 maxindex = fold (build (PLUS_EXPR, integer_type_node,
3765 maxindex, integer_one_node));
3767 maxindex = copy_node (maxindex);
3769 else
3771 /* Make an error message unless that happened already. */
3772 if (initial_value != error_mark_node)
3773 value = 1;
3775 /* Prevent further error messages. */
3776 maxindex = build_int_2 (0, 0);
3780 if (!maxindex)
3782 if (do_default)
3783 maxindex = build_int_2 (0, 0);
3784 value = 2;
3787 if (maxindex)
3789 TYPE_DOMAIN (type) = build_index_type (maxindex);
3790 if (!TREE_TYPE (maxindex))
3791 TREE_TYPE (maxindex) = TYPE_DOMAIN (type);
3794 /* Lay out the type now that we can get the real answer. */
3796 layout_type (type);
3798 return value;
3801 /* Given declspecs and a declarator,
3802 determine the name and type of the object declared
3803 and construct a ..._DECL node for it.
3804 (In one case we can return a ..._TYPE node instead.
3805 For invalid input we sometimes return 0.)
3807 DECLSPECS is a chain of tree_list nodes whose value fields
3808 are the storage classes and type specifiers.
3810 DECL_CONTEXT says which syntactic context this declaration is in:
3811 NORMAL for most contexts. Make a VAR_DECL or FUNCTION_DECL or TYPE_DECL.
3812 FUNCDEF for a function definition. Like NORMAL but a few different
3813 error messages in each case. Return value may be zero meaning
3814 this definition is too screwy to try to parse.
3815 PARM for a parameter declaration (either within a function prototype
3816 or before a function body). Make a PARM_DECL, or return void_type_node.
3817 TYPENAME if for a typename (in a cast or sizeof).
3818 Don't make a DECL node; just return the ..._TYPE node.
3819 FIELD for a struct or union field; make a FIELD_DECL.
3820 BITFIELD for a field with specified width.
3821 INITIALIZED is 1 if the decl has an initializer.
3823 In the TYPENAME case, DECLARATOR is really an absolute declarator.
3824 It may also be so in the PARM case, for a prototype where the
3825 argument type is specified but not the name.
3827 This function is where the complicated C meanings of `static'
3828 and `extern' are interpreted. */
3830 static tree
3831 grokdeclarator (declarator, declspecs, decl_context, initialized)
3832 tree declspecs;
3833 tree declarator;
3834 enum decl_context decl_context;
3835 int initialized;
3837 int specbits = 0;
3838 tree spec;
3839 tree type = NULL_TREE;
3840 int longlong = 0;
3841 int constp;
3842 int restrictp;
3843 int volatilep;
3844 int type_quals = TYPE_UNQUALIFIED;
3845 int inlinep;
3846 int explicit_int = 0;
3847 int explicit_char = 0;
3848 int defaulted_int = 0;
3849 tree typedef_decl = 0;
3850 const char *name;
3851 tree typedef_type = 0;
3852 int funcdef_flag = 0;
3853 enum tree_code innermost_code = ERROR_MARK;
3854 int bitfield = 0;
3855 int size_varies = 0;
3856 tree decl_machine_attr = NULL_TREE;
3858 if (decl_context == BITFIELD)
3859 bitfield = 1, decl_context = FIELD;
3861 if (decl_context == FUNCDEF)
3862 funcdef_flag = 1, decl_context = NORMAL;
3864 /* Look inside a declarator for the name being declared
3865 and get it as a string, for an error message. */
3867 register tree decl = declarator;
3868 name = 0;
3870 while (decl)
3871 switch (TREE_CODE (decl))
3873 case ARRAY_REF:
3874 case INDIRECT_REF:
3875 case CALL_EXPR:
3876 innermost_code = TREE_CODE (decl);
3877 decl = TREE_OPERAND (decl, 0);
3878 break;
3880 case IDENTIFIER_NODE:
3881 name = IDENTIFIER_POINTER (decl);
3882 decl = 0;
3883 break;
3885 default:
3886 abort ();
3888 if (name == 0)
3889 name = "type name";
3892 /* A function definition's declarator must have the form of
3893 a function declarator. */
3895 if (funcdef_flag && innermost_code != CALL_EXPR)
3896 return 0;
3898 /* Anything declared one level down from the top level
3899 must be one of the parameters of a function
3900 (because the body is at least two levels down). */
3902 /* If this looks like a function definition, make it one,
3903 even if it occurs where parms are expected.
3904 Then store_parm_decls will reject it and not use it as a parm. */
3905 if (decl_context == NORMAL && !funcdef_flag
3906 && current_binding_level->parm_flag)
3907 decl_context = PARM;
3909 /* Look through the decl specs and record which ones appear.
3910 Some typespecs are defined as built-in typenames.
3911 Others, the ones that are modifiers of other types,
3912 are represented by bits in SPECBITS: set the bits for
3913 the modifiers that appear. Storage class keywords are also in SPECBITS.
3915 If there is a typedef name or a type, store the type in TYPE.
3916 This includes builtin typedefs such as `int'.
3918 Set EXPLICIT_INT or EXPLICIT_CHAR if the type is `int' or `char'
3919 and did not come from a user typedef.
3921 Set LONGLONG if `long' is mentioned twice. */
3923 for (spec = declspecs; spec; spec = TREE_CHAIN (spec))
3925 register tree id = TREE_VALUE (spec);
3927 if (id == ridpointers[(int) RID_INT])
3928 explicit_int = 1;
3929 if (id == ridpointers[(int) RID_CHAR])
3930 explicit_char = 1;
3932 if (TREE_CODE (id) == IDENTIFIER_NODE && C_IS_RESERVED_WORD (id))
3934 enum rid i = C_RID_CODE (id);
3935 if ((int) i <= (int) RID_LAST_MODIFIER)
3937 if (i == RID_LONG && (specbits & (1 << (int) i)))
3939 if (longlong)
3940 error ("`long long long' is too long for GCC");
3941 else
3943 if (pedantic && !flag_isoc99 && ! in_system_header
3944 && warn_long_long)
3945 pedwarn ("ISO C89 does not support `long long'");
3946 longlong = 1;
3949 else if (specbits & (1 << (int) i))
3950 pedwarn ("duplicate `%s'", IDENTIFIER_POINTER (id));
3951 specbits |= 1 << (int) i;
3952 goto found;
3955 if (type)
3956 error ("two or more data types in declaration of `%s'", name);
3957 /* Actual typedefs come to us as TYPE_DECL nodes. */
3958 else if (TREE_CODE (id) == TYPE_DECL)
3960 type = TREE_TYPE (id);
3961 decl_machine_attr = DECL_MACHINE_ATTRIBUTES (id);
3962 typedef_decl = id;
3964 /* Built-in types come as identifiers. */
3965 else if (TREE_CODE (id) == IDENTIFIER_NODE)
3967 register tree t = lookup_name (id);
3968 if (TREE_TYPE (t) == error_mark_node)
3970 else if (!t || TREE_CODE (t) != TYPE_DECL)
3971 error ("`%s' fails to be a typedef or built in type",
3972 IDENTIFIER_POINTER (id));
3973 else
3975 type = TREE_TYPE (t);
3976 typedef_decl = t;
3979 else if (TREE_CODE (id) != ERROR_MARK)
3980 type = id;
3982 found:
3986 typedef_type = type;
3987 if (type)
3988 size_varies = C_TYPE_VARIABLE_SIZE (type);
3990 /* No type at all: default to `int', and set DEFAULTED_INT
3991 because it was not a user-defined typedef. */
3993 if (type == 0)
3995 if ((! (specbits & ((1 << (int) RID_LONG) | (1 << (int) RID_SHORT)
3996 | (1 << (int) RID_SIGNED)
3997 | (1 << (int) RID_UNSIGNED)
3998 | (1 << (int) RID_COMPLEX))))
3999 /* Don't warn about typedef foo = bar. */
4000 && ! (specbits & (1 << (int) RID_TYPEDEF) && initialized)
4001 && ! in_system_header)
4003 /* Issue a warning if this is an ISO C 99 program or if -Wreturn-type
4004 and this is a function, or if -Wimplicit; prefer the former
4005 warning since it is more explicit. */
4006 if ((warn_implicit_int || warn_return_type) && funcdef_flag)
4007 warn_about_return_type = 1;
4008 else if (warn_implicit_int || flag_isoc99)
4009 pedwarn_c99 ("type defaults to `int' in declaration of `%s'",
4010 name);
4013 defaulted_int = 1;
4014 type = integer_type_node;
4017 /* Now process the modifiers that were specified
4018 and check for invalid combinations. */
4020 /* Long double is a special combination. */
4022 if ((specbits & 1 << (int) RID_LONG) && ! longlong
4023 && TYPE_MAIN_VARIANT (type) == double_type_node)
4025 specbits &= ~(1 << (int) RID_LONG);
4026 type = long_double_type_node;
4029 /* Check all other uses of type modifiers. */
4031 if (specbits & ((1 << (int) RID_LONG) | (1 << (int) RID_SHORT)
4032 | (1 << (int) RID_UNSIGNED) | (1 << (int) RID_SIGNED)))
4034 int ok = 0;
4036 if ((specbits & 1 << (int) RID_LONG)
4037 && (specbits & 1 << (int) RID_SHORT))
4038 error ("both long and short specified for `%s'", name);
4039 else if (((specbits & 1 << (int) RID_LONG)
4040 || (specbits & 1 << (int) RID_SHORT))
4041 && explicit_char)
4042 error ("long or short specified with char for `%s'", name);
4043 else if (((specbits & 1 << (int) RID_LONG)
4044 || (specbits & 1 << (int) RID_SHORT))
4045 && TREE_CODE (type) == REAL_TYPE)
4047 static int already = 0;
4049 error ("long or short specified with floating type for `%s'", name);
4050 if (! already && ! pedantic)
4052 error ("the only valid combination is `long double'");
4053 already = 1;
4056 else if ((specbits & 1 << (int) RID_SIGNED)
4057 && (specbits & 1 << (int) RID_UNSIGNED))
4058 error ("both signed and unsigned specified for `%s'", name);
4059 else if (TREE_CODE (type) != INTEGER_TYPE)
4060 error ("long, short, signed or unsigned invalid for `%s'", name);
4061 else
4063 ok = 1;
4064 if (!explicit_int && !defaulted_int && !explicit_char && pedantic)
4066 pedwarn ("long, short, signed or unsigned used invalidly for `%s'",
4067 name);
4068 if (flag_pedantic_errors)
4069 ok = 0;
4073 /* Discard the type modifiers if they are invalid. */
4074 if (! ok)
4076 specbits &= ~((1 << (int) RID_LONG) | (1 << (int) RID_SHORT)
4077 | (1 << (int) RID_UNSIGNED) | (1 << (int) RID_SIGNED));
4078 longlong = 0;
4082 if ((specbits & (1 << (int) RID_COMPLEX))
4083 && TREE_CODE (type) != INTEGER_TYPE && TREE_CODE (type) != REAL_TYPE)
4085 error ("complex invalid for `%s'", name);
4086 specbits &= ~(1 << (int) RID_COMPLEX);
4089 /* Decide whether an integer type is signed or not.
4090 Optionally treat bitfields as signed by default. */
4091 if (specbits & 1 << (int) RID_UNSIGNED
4092 /* Traditionally, all bitfields are unsigned. */
4093 || (bitfield && flag_traditional
4094 && (! explicit_flag_signed_bitfields || !flag_signed_bitfields))
4095 || (bitfield && ! flag_signed_bitfields
4096 && (explicit_int || defaulted_int || explicit_char
4097 /* A typedef for plain `int' without `signed'
4098 can be controlled just like plain `int'. */
4099 || ! (typedef_decl != 0
4100 && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl)))
4101 && TREE_CODE (type) != ENUMERAL_TYPE
4102 && !(specbits & 1 << (int) RID_SIGNED)))
4104 if (longlong)
4105 type = long_long_unsigned_type_node;
4106 else if (specbits & 1 << (int) RID_LONG)
4107 type = long_unsigned_type_node;
4108 else if (specbits & 1 << (int) RID_SHORT)
4109 type = short_unsigned_type_node;
4110 else if (type == char_type_node)
4111 type = unsigned_char_type_node;
4112 else if (typedef_decl)
4113 type = unsigned_type (type);
4114 else
4115 type = unsigned_type_node;
4117 else if ((specbits & 1 << (int) RID_SIGNED)
4118 && type == char_type_node)
4119 type = signed_char_type_node;
4120 else if (longlong)
4121 type = long_long_integer_type_node;
4122 else if (specbits & 1 << (int) RID_LONG)
4123 type = long_integer_type_node;
4124 else if (specbits & 1 << (int) RID_SHORT)
4125 type = short_integer_type_node;
4127 if (specbits & 1 << (int) RID_COMPLEX)
4129 if (pedantic && !flag_isoc99)
4130 pedwarn ("ISO C89 does not support complex types");
4131 /* If we just have "complex", it is equivalent to
4132 "complex double", but if any modifiers at all are specified it is
4133 the complex form of TYPE. E.g, "complex short" is
4134 "complex short int". */
4136 if (defaulted_int && ! longlong
4137 && ! (specbits & ((1 << (int) RID_LONG) | (1 << (int) RID_SHORT)
4138 | (1 << (int) RID_SIGNED)
4139 | (1 << (int) RID_UNSIGNED))))
4141 if (pedantic)
4142 pedwarn ("ISO C does not support plain `complex' meaning `double complex'");
4143 type = complex_double_type_node;
4145 else if (type == integer_type_node)
4147 if (pedantic)
4148 pedwarn ("ISO C does not support complex integer types");
4149 type = complex_integer_type_node;
4151 else if (type == float_type_node)
4152 type = complex_float_type_node;
4153 else if (type == double_type_node)
4154 type = complex_double_type_node;
4155 else if (type == long_double_type_node)
4156 type = complex_long_double_type_node;
4157 else
4159 if (pedantic)
4160 pedwarn ("ISO C does not support complex integer types");
4161 type = build_complex_type (type);
4165 /* Figure out the type qualifiers for the declaration. There are
4166 two ways a declaration can become qualified. One is something
4167 like `const int i' where the `const' is explicit. Another is
4168 something like `typedef const int CI; CI i' where the type of the
4169 declaration contains the `const'. */
4170 constp = !! (specbits & 1 << (int) RID_CONST) + TYPE_READONLY (type);
4171 restrictp = !! (specbits & 1 << (int) RID_RESTRICT) + TYPE_RESTRICT (type);
4172 volatilep = !! (specbits & 1 << (int) RID_VOLATILE) + TYPE_VOLATILE (type);
4173 inlinep = !! (specbits & (1 << (int) RID_INLINE));
4174 if (constp > 1 && ! flag_isoc99)
4175 pedwarn ("duplicate `const'");
4176 if (restrictp > 1 && ! flag_isoc99)
4177 pedwarn ("duplicate `restrict'");
4178 if (volatilep > 1 && ! flag_isoc99)
4179 pedwarn ("duplicate `volatile'");
4180 if (! flag_gen_aux_info && (TYPE_QUALS (type)))
4181 type = TYPE_MAIN_VARIANT (type);
4182 type_quals = ((constp ? TYPE_QUAL_CONST : 0)
4183 | (restrictp ? TYPE_QUAL_RESTRICT : 0)
4184 | (volatilep ? TYPE_QUAL_VOLATILE : 0));
4186 /* Warn if two storage classes are given. Default to `auto'. */
4189 int nclasses = 0;
4191 if (specbits & 1 << (int) RID_AUTO) nclasses++;
4192 if (specbits & 1 << (int) RID_STATIC) nclasses++;
4193 if (specbits & 1 << (int) RID_EXTERN) nclasses++;
4194 if (specbits & 1 << (int) RID_REGISTER) nclasses++;
4195 if (specbits & 1 << (int) RID_TYPEDEF) nclasses++;
4197 /* Warn about storage classes that are invalid for certain
4198 kinds of declarations (parameters, typenames, etc.). */
4200 if (nclasses > 1)
4201 error ("multiple storage classes in declaration of `%s'", name);
4202 else if (funcdef_flag
4203 && (specbits
4204 & ((1 << (int) RID_REGISTER)
4205 | (1 << (int) RID_AUTO)
4206 | (1 << (int) RID_TYPEDEF))))
4208 if (specbits & 1 << (int) RID_AUTO
4209 && (pedantic || current_binding_level == global_binding_level))
4210 pedwarn ("function definition declared `auto'");
4211 if (specbits & 1 << (int) RID_REGISTER)
4212 error ("function definition declared `register'");
4213 if (specbits & 1 << (int) RID_TYPEDEF)
4214 error ("function definition declared `typedef'");
4215 specbits &= ~((1 << (int) RID_TYPEDEF) | (1 << (int) RID_REGISTER)
4216 | (1 << (int) RID_AUTO));
4218 else if (decl_context != NORMAL && nclasses > 0)
4220 if (decl_context == PARM && specbits & 1 << (int) RID_REGISTER)
4222 else
4224 switch (decl_context)
4226 case FIELD:
4227 error ("storage class specified for structure field `%s'",
4228 name);
4229 break;
4230 case PARM:
4231 error ("storage class specified for parameter `%s'", name);
4232 break;
4233 default:
4234 error ("storage class specified for typename");
4235 break;
4237 specbits &= ~((1 << (int) RID_TYPEDEF) | (1 << (int) RID_REGISTER)
4238 | (1 << (int) RID_AUTO) | (1 << (int) RID_STATIC)
4239 | (1 << (int) RID_EXTERN));
4242 else if (specbits & 1 << (int) RID_EXTERN && initialized && ! funcdef_flag)
4244 /* `extern' with initialization is invalid if not at top level. */
4245 if (current_binding_level == global_binding_level)
4246 warning ("`%s' initialized and declared `extern'", name);
4247 else
4248 error ("`%s' has both `extern' and initializer", name);
4250 else if (specbits & 1 << (int) RID_EXTERN && funcdef_flag
4251 && current_binding_level != global_binding_level)
4252 error ("nested function `%s' declared `extern'", name);
4253 else if (current_binding_level == global_binding_level
4254 && specbits & (1 << (int) RID_AUTO))
4255 error ("top-level declaration of `%s' specifies `auto'", name);
4258 /* Now figure out the structure of the declarator proper.
4259 Descend through it, creating more complex types, until we reach
4260 the declared identifier (or NULL_TREE, in an absolute declarator). */
4262 while (declarator && TREE_CODE (declarator) != IDENTIFIER_NODE)
4264 if (type == error_mark_node)
4266 declarator = TREE_OPERAND (declarator, 0);
4267 continue;
4270 /* Each level of DECLARATOR is either an ARRAY_REF (for ...[..]),
4271 an INDIRECT_REF (for *...),
4272 a CALL_EXPR (for ...(...)),
4273 an identifier (for the name being declared)
4274 or a null pointer (for the place in an absolute declarator
4275 where the name was omitted).
4276 For the last two cases, we have just exited the loop.
4278 At this point, TYPE is the type of elements of an array,
4279 or for a function to return, or for a pointer to point to.
4280 After this sequence of ifs, TYPE is the type of the
4281 array or function or pointer, and DECLARATOR has had its
4282 outermost layer removed. */
4284 if (TREE_CODE (declarator) == ARRAY_REF)
4286 register tree itype = NULL_TREE;
4287 register tree size = TREE_OPERAND (declarator, 1);
4288 /* The index is a signed object `sizetype' bits wide. */
4289 tree index_type = signed_type (sizetype);
4291 declarator = TREE_OPERAND (declarator, 0);
4293 /* Check for some types that there cannot be arrays of. */
4295 if (VOID_TYPE_P (type))
4297 error ("declaration of `%s' as array of voids", name);
4298 type = error_mark_node;
4301 if (TREE_CODE (type) == FUNCTION_TYPE)
4303 error ("declaration of `%s' as array of functions", name);
4304 type = error_mark_node;
4307 if (size == error_mark_node)
4308 type = error_mark_node;
4310 if (type == error_mark_node)
4311 continue;
4313 /* If size was specified, set ITYPE to a range-type for that size.
4314 Otherwise, ITYPE remains null. finish_decl may figure it out
4315 from an initial value. */
4317 if (size)
4319 /* Strip NON_LVALUE_EXPRs since we aren't using as an lvalue. */
4320 STRIP_TYPE_NOPS (size);
4322 if (TREE_CODE (TREE_TYPE (size)) != INTEGER_TYPE
4323 && TREE_CODE (TREE_TYPE (size)) != ENUMERAL_TYPE)
4325 error ("size of array `%s' has non-integer type", name);
4326 size = integer_one_node;
4329 if (pedantic && integer_zerop (size))
4330 pedwarn ("ISO C forbids zero-size array `%s'", name);
4332 if (TREE_CODE (size) == INTEGER_CST)
4334 constant_expression_warning (size);
4335 if (tree_int_cst_sgn (size) < 0)
4337 error ("size of array `%s' is negative", name);
4338 size = integer_one_node;
4341 else
4343 /* Make sure the array size remains visibly nonconstant
4344 even if it is (eg) a const variable with known value. */
4345 size_varies = 1;
4347 if (pedantic)
4349 if (TREE_CONSTANT (size))
4350 pedwarn ("ISO C89 forbids array `%s' whose size can't be evaluated",
4351 name);
4352 else
4353 pedwarn ("ISO C89 forbids variable-size array `%s'",
4354 name);
4358 if (integer_zerop (size))
4360 /* A zero-length array cannot be represented with an
4361 unsigned index type, which is what we'll get with
4362 build_index_type. Create an open-ended range instead. */
4363 itype = build_range_type (sizetype, size, NULL_TREE);
4365 else
4367 /* Compute the maximum valid index, that is, size - 1.
4368 Do the calculation in index_type, so that if it is
4369 a variable the computations will be done in the
4370 proper mode. */
4371 itype = fold (build (MINUS_EXPR, index_type,
4372 convert (index_type, size),
4373 convert (index_type, size_one_node)));
4375 /* If that overflowed, the array is too big.
4376 ??? While a size of INT_MAX+1 technically shouldn't
4377 cause an overflow (because we subtract 1), the overflow
4378 is recorded during the conversion to index_type, before
4379 the subtraction. Handling this case seems like an
4380 unnecessary complication. */
4381 if (TREE_OVERFLOW (itype))
4383 error ("size of array `%s' is too large", name);
4384 type = error_mark_node;
4385 continue;
4388 if (size_varies)
4389 itype = variable_size (itype);
4390 itype = build_index_type (itype);
4393 else if (decl_context == FIELD)
4395 /* ??? Need to check somewhere that this is a structure
4396 and not a union, that this field is last, and that
4397 this structure has at least one other named member. */
4399 if (pedantic && !flag_isoc99 && !in_system_header)
4400 pedwarn ("ISO C89 does not support flexible array members");
4402 /* ISO C99 Flexible array members are effectively identical
4403 to GCC's zero-length array extension. */
4404 itype = build_range_type (sizetype, size_zero_node, NULL_TREE);
4407 /* If pedantic, complain about arrays of incomplete types. */
4409 if (pedantic && !COMPLETE_TYPE_P (type))
4410 pedwarn ("array type has incomplete element type");
4412 #if 0
4413 /* We shouldn't have a function type here at all!
4414 Functions aren't allowed as array elements. */
4415 if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
4416 && (constp || volatilep))
4417 pedwarn ("ANSI C forbids const or volatile function types");
4418 #endif
4420 /* Build the array type itself, then merge any constancy or
4421 volatility into the target type. We must do it in this order
4422 to ensure that the TYPE_MAIN_VARIANT field of the array type
4423 is set correctly. */
4425 type = build_array_type (type, itype);
4426 if (type_quals)
4427 type = c_build_qualified_type (type, type_quals);
4429 if (size_varies)
4430 C_TYPE_VARIABLE_SIZE (type) = 1;
4432 /* The GCC extension for zero-length arrays differs from
4433 ISO flexible array members in that sizeof yields zero. */
4434 if (size && integer_zerop (size))
4436 layout_type (type);
4437 TYPE_SIZE (type) = bitsize_zero_node;
4438 TYPE_SIZE_UNIT (type) = size_zero_node;
4441 else if (TREE_CODE (declarator) == CALL_EXPR)
4443 tree arg_types;
4445 /* Declaring a function type.
4446 Make sure we have a valid type for the function to return. */
4447 if (type == error_mark_node)
4448 continue;
4450 size_varies = 0;
4452 /* Warn about some types functions can't return. */
4454 if (TREE_CODE (type) == FUNCTION_TYPE)
4456 error ("`%s' declared as function returning a function", name);
4457 type = integer_type_node;
4459 if (TREE_CODE (type) == ARRAY_TYPE)
4461 error ("`%s' declared as function returning an array", name);
4462 type = integer_type_node;
4465 #ifndef TRADITIONAL_RETURN_FLOAT
4466 /* Traditionally, declaring return type float means double. */
4468 if (flag_traditional && TYPE_MAIN_VARIANT (type) == float_type_node)
4469 type = double_type_node;
4470 #endif /* TRADITIONAL_RETURN_FLOAT */
4472 /* Construct the function type and go to the next
4473 inner layer of declarator. */
4475 arg_types = grokparms (TREE_OPERAND (declarator, 1),
4476 funcdef_flag
4477 /* Say it's a definition
4478 only for the CALL_EXPR
4479 closest to the identifier. */
4480 && TREE_CODE (TREE_OPERAND (declarator, 0)) == IDENTIFIER_NODE);
4481 /* Type qualifiers before the return type of the function
4482 qualify the return type, not the function type. */
4483 if (type_quals)
4485 /* Type qualifiers on a function return type are normally
4486 permitted by the standard but have no effect, so give a
4487 warning at -W. Qualifiers on a void return type have
4488 meaning as a GNU extension, and are banned on function
4489 definitions in ISO C. FIXME: strictly we shouldn't
4490 pedwarn for qualified void return types except on function
4491 definitions, but not doing so could lead to the undesirable
4492 state of a "volatile void" function return type not being
4493 warned about, and a use of the function being compiled
4494 with GNU semantics, with no diagnostics under -pedantic. */
4495 if (VOID_TYPE_P (type) && pedantic && !in_system_header)
4496 pedwarn ("ISO C forbids qualified void function return type");
4497 else if (extra_warnings
4498 && !(VOID_TYPE_P (type)
4499 && type_quals == TYPE_QUAL_VOLATILE))
4500 warning ("type qualifiers ignored on function return type");
4502 type = c_build_qualified_type (type, type_quals);
4504 type_quals = TYPE_UNQUALIFIED;
4506 type = build_function_type (type, arg_types);
4507 declarator = TREE_OPERAND (declarator, 0);
4509 /* Set the TYPE_CONTEXTs for each tagged type which is local to
4510 the formal parameter list of this FUNCTION_TYPE to point to
4511 the FUNCTION_TYPE node itself. */
4514 register tree link;
4516 for (link = last_function_parm_tags;
4517 link;
4518 link = TREE_CHAIN (link))
4519 TYPE_CONTEXT (TREE_VALUE (link)) = type;
4522 else if (TREE_CODE (declarator) == INDIRECT_REF)
4524 /* Merge any constancy or volatility into the target type
4525 for the pointer. */
4527 if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
4528 && type_quals)
4529 pedwarn ("ISO C forbids qualified function types");
4530 if (type_quals)
4531 type = c_build_qualified_type (type, type_quals);
4532 type_quals = TYPE_UNQUALIFIED;
4533 size_varies = 0;
4535 type = build_pointer_type (type);
4537 /* Process a list of type modifier keywords
4538 (such as const or volatile) that were given inside the `*'. */
4540 if (TREE_TYPE (declarator))
4542 register tree typemodlist;
4543 int erred = 0;
4545 constp = 0;
4546 volatilep = 0;
4547 restrictp = 0;
4548 for (typemodlist = TREE_TYPE (declarator); typemodlist;
4549 typemodlist = TREE_CHAIN (typemodlist))
4551 tree qualifier = TREE_VALUE (typemodlist);
4553 if (C_IS_RESERVED_WORD (qualifier))
4555 if (C_RID_CODE (qualifier) == RID_CONST)
4556 constp++;
4557 else if (C_RID_CODE (qualifier) == RID_VOLATILE)
4558 volatilep++;
4559 else if (C_RID_CODE (qualifier) == RID_RESTRICT)
4560 restrictp++;
4561 else
4562 erred++;
4564 else
4565 erred++;
4568 if (erred)
4569 error ("invalid type modifier within pointer declarator");
4570 if (constp > 1 && ! flag_isoc99)
4571 pedwarn ("duplicate `const'");
4572 if (volatilep > 1 && ! flag_isoc99)
4573 pedwarn ("duplicate `volatile'");
4574 if (restrictp > 1 && ! flag_isoc99)
4575 pedwarn ("duplicate `restrict'");
4577 type_quals = ((constp ? TYPE_QUAL_CONST : 0)
4578 | (restrictp ? TYPE_QUAL_RESTRICT : 0)
4579 | (volatilep ? TYPE_QUAL_VOLATILE : 0));
4582 declarator = TREE_OPERAND (declarator, 0);
4584 else
4585 abort ();
4589 /* Now TYPE has the actual type. */
4591 /* Did array size calculations overflow? */
4593 if (TREE_CODE (type) == ARRAY_TYPE
4594 && COMPLETE_TYPE_P (type)
4595 && TREE_OVERFLOW (TYPE_SIZE (type)))
4597 error ("size of array `%s' is too large", name);
4598 /* If we proceed with the array type as it is, we'll eventully
4599 crash in tree_low_cst(). */
4600 type = error_mark_node;
4603 /* If this is declaring a typedef name, return a TYPE_DECL. */
4605 if (specbits & (1 << (int) RID_TYPEDEF))
4607 tree decl;
4608 /* Note that the grammar rejects storage classes
4609 in typenames, fields or parameters */
4610 if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
4611 && type_quals)
4612 pedwarn ("ISO C forbids qualified function types");
4613 if (type_quals)
4614 type = c_build_qualified_type (type, type_quals);
4615 decl = build_decl (TYPE_DECL, declarator, type);
4616 if ((specbits & (1 << (int) RID_SIGNED))
4617 || (typedef_decl && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl)))
4618 C_TYPEDEF_EXPLICITLY_SIGNED (decl) = 1;
4619 return decl;
4622 /* Detect the case of an array type of unspecified size
4623 which came, as such, direct from a typedef name.
4624 We must copy the type, so that each identifier gets
4625 a distinct type, so that each identifier's size can be
4626 controlled separately by its own initializer. */
4628 if (type != 0 && typedef_type != 0
4629 && TREE_CODE (type) == ARRAY_TYPE && TYPE_DOMAIN (type) == 0
4630 && TYPE_MAIN_VARIANT (type) == TYPE_MAIN_VARIANT (typedef_type))
4632 type = build_array_type (TREE_TYPE (type), 0);
4633 if (size_varies)
4634 C_TYPE_VARIABLE_SIZE (type) = 1;
4637 /* If this is a type name (such as, in a cast or sizeof),
4638 compute the type and return it now. */
4640 if (decl_context == TYPENAME)
4642 /* Note that the grammar rejects storage classes
4643 in typenames, fields or parameters */
4644 if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
4645 && type_quals)
4646 pedwarn ("ISO C forbids const or volatile function types");
4647 if (type_quals)
4648 type = c_build_qualified_type (type, type_quals);
4649 return type;
4652 /* Aside from typedefs and type names (handle above),
4653 `void' at top level (not within pointer)
4654 is allowed only in public variables.
4655 We don't complain about parms either, but that is because
4656 a better error message can be made later. */
4658 if (VOID_TYPE_P (type) && decl_context != PARM
4659 && ! ((decl_context != FIELD && TREE_CODE (type) != FUNCTION_TYPE)
4660 && ((specbits & (1 << (int) RID_EXTERN))
4661 || (current_binding_level == global_binding_level
4662 && !(specbits
4663 & ((1 << (int) RID_STATIC) | (1 << (int) RID_REGISTER)))))))
4665 error ("variable or field `%s' declared void", name);
4666 type = integer_type_node;
4669 /* Now create the decl, which may be a VAR_DECL, a PARM_DECL
4670 or a FUNCTION_DECL, depending on DECL_CONTEXT and TYPE. */
4673 register tree decl;
4675 if (decl_context == PARM)
4677 tree type_as_written;
4678 tree promoted_type;
4680 /* A parameter declared as an array of T is really a pointer to T.
4681 One declared as a function is really a pointer to a function. */
4683 if (TREE_CODE (type) == ARRAY_TYPE)
4685 /* Transfer const-ness of array into that of type pointed to. */
4686 type = TREE_TYPE (type);
4687 if (type_quals)
4688 type = c_build_qualified_type (type, type_quals);
4689 type = build_pointer_type (type);
4690 type_quals = TYPE_UNQUALIFIED;
4691 size_varies = 0;
4693 else if (TREE_CODE (type) == FUNCTION_TYPE)
4695 if (pedantic && type_quals)
4696 pedwarn ("ISO C forbids qualified function types");
4697 if (type_quals)
4698 type = c_build_qualified_type (type, type_quals);
4699 type = build_pointer_type (type);
4700 type_quals = TYPE_UNQUALIFIED;
4702 else if (type_quals)
4703 type = c_build_qualified_type (type, type_quals);
4705 type_as_written = type;
4707 decl = build_decl (PARM_DECL, declarator, type);
4708 if (size_varies)
4709 C_DECL_VARIABLE_SIZE (decl) = 1;
4711 /* Compute the type actually passed in the parmlist,
4712 for the case where there is no prototype.
4713 (For example, shorts and chars are passed as ints.)
4714 When there is a prototype, this is overridden later. */
4716 if (type == error_mark_node)
4717 promoted_type = type;
4718 else
4720 promoted_type = simple_type_promotes_to (type);
4721 if (! promoted_type)
4722 promoted_type = type;
4725 DECL_ARG_TYPE (decl) = promoted_type;
4726 DECL_ARG_TYPE_AS_WRITTEN (decl) = type_as_written;
4728 else if (decl_context == FIELD)
4730 /* Structure field. It may not be a function. */
4732 if (TREE_CODE (type) == FUNCTION_TYPE)
4734 error ("field `%s' declared as a function", name);
4735 type = build_pointer_type (type);
4737 else if (TREE_CODE (type) != ERROR_MARK
4738 && !COMPLETE_OR_UNBOUND_ARRAY_TYPE_P (type))
4740 error ("field `%s' has incomplete type", name);
4741 type = error_mark_node;
4743 /* Move type qualifiers down to element of an array. */
4744 if (TREE_CODE (type) == ARRAY_TYPE && type_quals)
4746 type = build_array_type (c_build_qualified_type (TREE_TYPE (type),
4747 type_quals),
4748 TYPE_DOMAIN (type));
4749 #if 0
4750 /* Leave the field const or volatile as well. */
4751 type_quals = TYPE_UNQUALIFIED;
4752 #endif
4754 decl = build_decl (FIELD_DECL, declarator, type);
4755 DECL_NONADDRESSABLE_P (decl) = bitfield;
4757 if (size_varies)
4758 C_DECL_VARIABLE_SIZE (decl) = 1;
4760 else if (TREE_CODE (type) == FUNCTION_TYPE)
4762 /* Every function declaration is "external"
4763 except for those which are inside a function body
4764 in which `auto' is used.
4765 That is a case not specified by ANSI C,
4766 and we use it for forward declarations for nested functions. */
4767 int extern_ref = (!(specbits & (1 << (int) RID_AUTO))
4768 || current_binding_level == global_binding_level);
4770 if (specbits & (1 << (int) RID_AUTO)
4771 && (pedantic || current_binding_level == global_binding_level))
4772 pedwarn ("invalid storage class for function `%s'", name);
4773 if (specbits & (1 << (int) RID_REGISTER))
4774 error ("invalid storage class for function `%s'", name);
4775 /* Function declaration not at top level.
4776 Storage classes other than `extern' are not allowed
4777 and `extern' makes no difference. */
4778 if (current_binding_level != global_binding_level
4779 && (specbits & ((1 << (int) RID_STATIC) | (1 << (int) RID_INLINE)))
4780 && pedantic)
4781 pedwarn ("invalid storage class for function `%s'", name);
4783 decl = build_decl (FUNCTION_DECL, declarator, type);
4784 decl = build_decl_attribute_variant (decl, decl_machine_attr);
4786 if (pedantic && type_quals && ! DECL_IN_SYSTEM_HEADER (decl))
4787 pedwarn ("ISO C forbids qualified function types");
4789 /* GNU C interprets a `volatile void' return type to indicate
4790 that the function does not return. */
4791 if ((type_quals & TYPE_QUAL_VOLATILE)
4792 && !VOID_TYPE_P (TREE_TYPE (TREE_TYPE (decl))))
4793 warning ("`noreturn' function returns non-void value");
4795 if (extern_ref)
4796 DECL_EXTERNAL (decl) = 1;
4797 /* Record absence of global scope for `static' or `auto'. */
4798 TREE_PUBLIC (decl)
4799 = !(specbits & ((1 << (int) RID_STATIC) | (1 << (int) RID_AUTO)));
4801 /* Record presence of `inline', if it is reasonable. */
4802 if (inlinep)
4804 if (MAIN_NAME_P (declarator))
4805 warning ("cannot inline function `main'");
4806 else
4807 /* Assume that otherwise the function can be inlined. */
4808 DECL_INLINE (decl) = 1;
4810 if (specbits & (1 << (int) RID_EXTERN))
4811 current_extern_inline = 1;
4814 else
4816 /* It's a variable. */
4817 /* An uninitialized decl with `extern' is a reference. */
4818 int extern_ref = !initialized && (specbits & (1 << (int) RID_EXTERN));
4820 /* Move type qualifiers down to element of an array. */
4821 if (TREE_CODE (type) == ARRAY_TYPE && type_quals)
4823 int saved_align = TYPE_ALIGN(type);
4824 type = build_array_type (c_build_qualified_type (TREE_TYPE (type),
4825 type_quals),
4826 TYPE_DOMAIN (type));
4827 TYPE_ALIGN (type) = saved_align;
4828 #if 0 /* Leave the variable const or volatile as well. */
4829 type_quals = TYPE_UNQUALIFIED;
4830 #endif
4832 else if (type_quals)
4833 type = c_build_qualified_type (type, type_quals);
4835 decl = build_decl (VAR_DECL, declarator, type);
4836 if (size_varies)
4837 C_DECL_VARIABLE_SIZE (decl) = 1;
4839 if (inlinep)
4840 pedwarn_with_decl (decl, "variable `%s' declared `inline'");
4842 DECL_EXTERNAL (decl) = extern_ref;
4843 /* At top level, the presence of a `static' or `register' storage
4844 class specifier, or the absence of all storage class specifiers
4845 makes this declaration a definition (perhaps tentative). Also,
4846 the absence of both `static' and `register' makes it public. */
4847 if (current_binding_level == global_binding_level)
4849 TREE_PUBLIC (decl)
4850 = !(specbits
4851 & ((1 << (int) RID_STATIC) | (1 << (int) RID_REGISTER)));
4852 TREE_STATIC (decl) = ! DECL_EXTERNAL (decl);
4854 /* Not at top level, only `static' makes a static definition. */
4855 else
4857 TREE_STATIC (decl) = (specbits & (1 << (int) RID_STATIC)) != 0;
4858 TREE_PUBLIC (decl) = DECL_EXTERNAL (decl);
4862 /* Record `register' declaration for warnings on &
4863 and in case doing stupid register allocation. */
4865 if (specbits & (1 << (int) RID_REGISTER))
4866 DECL_REGISTER (decl) = 1;
4868 /* Record constancy and volatility. */
4869 c_apply_type_quals_to_decl (type_quals, decl);
4871 /* If a type has volatile components, it should be stored in memory.
4872 Otherwise, the fact that those components are volatile
4873 will be ignored, and would even crash the compiler. */
4874 if (C_TYPE_FIELDS_VOLATILE (TREE_TYPE (decl)))
4875 mark_addressable (decl);
4877 return decl;
4881 /* Decode the parameter-list info for a function type or function definition.
4882 The argument is the value returned by `get_parm_info' (or made in parse.y
4883 if there is an identifier list instead of a parameter decl list).
4884 These two functions are separate because when a function returns
4885 or receives functions then each is called multiple times but the order
4886 of calls is different. The last call to `grokparms' is always the one
4887 that contains the formal parameter names of a function definition.
4889 Store in `last_function_parms' a chain of the decls of parms.
4890 Also store in `last_function_parm_tags' a chain of the struct, union,
4891 and enum tags declared among the parms.
4893 Return a list of arg types to use in the FUNCTION_TYPE for this function.
4895 FUNCDEF_FLAG is nonzero for a function definition, 0 for
4896 a mere declaration. A nonempty identifier-list gets an error message
4897 when FUNCDEF_FLAG is zero. */
4899 static tree
4900 grokparms (parms_info, funcdef_flag)
4901 tree parms_info;
4902 int funcdef_flag;
4904 tree first_parm = TREE_CHAIN (parms_info);
4906 last_function_parms = TREE_PURPOSE (parms_info);
4907 last_function_parm_tags = TREE_VALUE (parms_info);
4909 if (warn_strict_prototypes && first_parm == 0 && !funcdef_flag
4910 && !in_system_header)
4911 warning ("function declaration isn't a prototype");
4913 if (first_parm != 0
4914 && TREE_CODE (TREE_VALUE (first_parm)) == IDENTIFIER_NODE)
4916 if (! funcdef_flag)
4917 pedwarn ("parameter names (without types) in function declaration");
4919 last_function_parms = first_parm;
4920 return 0;
4922 else
4924 tree parm;
4925 tree typelt;
4926 /* We no longer test FUNCDEF_FLAG.
4927 If the arg types are incomplete in a declaration,
4928 they must include undefined tags.
4929 These tags can never be defined in the scope of the declaration,
4930 so the types can never be completed,
4931 and no call can be compiled successfully. */
4932 #if 0
4933 /* In a fcn definition, arg types must be complete. */
4934 if (funcdef_flag)
4935 #endif
4936 for (parm = last_function_parms, typelt = first_parm;
4937 parm;
4938 parm = TREE_CHAIN (parm))
4939 /* Skip over any enumeration constants declared here. */
4940 if (TREE_CODE (parm) == PARM_DECL)
4942 /* Barf if the parameter itself has an incomplete type. */
4943 tree type = TREE_VALUE (typelt);
4944 if (type == error_mark_node)
4945 continue;
4946 if (!COMPLETE_TYPE_P (type))
4948 if (funcdef_flag && DECL_NAME (parm) != 0)
4949 error ("parameter `%s' has incomplete type",
4950 IDENTIFIER_POINTER (DECL_NAME (parm)));
4951 else
4952 warning ("parameter has incomplete type");
4953 if (funcdef_flag)
4955 TREE_VALUE (typelt) = error_mark_node;
4956 TREE_TYPE (parm) = error_mark_node;
4959 #if 0
4960 /* This has been replaced by parm_tags_warning, which
4961 uses a more accurate criterion for what to warn
4962 about. */
4963 else
4965 /* Now warn if is a pointer to an incomplete type. */
4966 while (TREE_CODE (type) == POINTER_TYPE
4967 || TREE_CODE (type) == REFERENCE_TYPE)
4968 type = TREE_TYPE (type);
4969 type = TYPE_MAIN_VARIANT (type);
4970 if (!COMPLETE_TYPE_P (type))
4972 if (DECL_NAME (parm) != 0)
4973 warning ("parameter `%s' points to incomplete type",
4974 IDENTIFIER_POINTER (DECL_NAME (parm)));
4975 else
4976 warning ("parameter points to incomplete type");
4979 #endif
4980 typelt = TREE_CHAIN (typelt);
4983 return first_parm;
4987 /* Return a tree_list node with info on a parameter list just parsed.
4988 The TREE_PURPOSE is a chain of decls of those parms.
4989 The TREE_VALUE is a list of structure, union and enum tags defined.
4990 The TREE_CHAIN is a list of argument types to go in the FUNCTION_TYPE.
4991 This tree_list node is later fed to `grokparms'.
4993 VOID_AT_END nonzero means append `void' to the end of the type-list.
4994 Zero means the parmlist ended with an ellipsis so don't append `void'. */
4996 tree
4997 get_parm_info (void_at_end)
4998 int void_at_end;
5000 register tree decl, t;
5001 register tree types = 0;
5002 int erred = 0;
5003 tree tags = gettags ();
5004 tree parms = getdecls ();
5005 tree new_parms = 0;
5006 tree order = current_binding_level->parm_order;
5008 /* Just `void' (and no ellipsis) is special. There are really no parms.
5009 But if the `void' is qualified (by `const' or `volatile') or has a
5010 storage class specifier (`register'), then the behavior is undefined;
5011 by not counting it as the special case of `void' we will cause an
5012 error later. Typedefs for `void' are OK (see DR#157). */
5013 if (void_at_end && parms != 0
5014 && TREE_CHAIN (parms) == 0
5015 && VOID_TYPE_P (TREE_TYPE (parms))
5016 && ! TREE_THIS_VOLATILE (parms)
5017 && ! TREE_READONLY (parms)
5018 && ! DECL_REGISTER (parms)
5019 && DECL_NAME (parms) == 0)
5021 parms = NULL_TREE;
5022 storedecls (NULL_TREE);
5023 return tree_cons (NULL_TREE, NULL_TREE,
5024 tree_cons (NULL_TREE, void_type_node, NULL_TREE));
5027 /* Extract enumerator values and other non-parms declared with the parms.
5028 Likewise any forward parm decls that didn't have real parm decls. */
5029 for (decl = parms; decl;)
5031 tree next = TREE_CHAIN (decl);
5033 if (TREE_CODE (decl) != PARM_DECL)
5035 TREE_CHAIN (decl) = new_parms;
5036 new_parms = decl;
5038 else if (TREE_ASM_WRITTEN (decl))
5040 error_with_decl (decl,
5041 "parameter `%s' has just a forward declaration");
5042 TREE_CHAIN (decl) = new_parms;
5043 new_parms = decl;
5045 decl = next;
5048 /* Put the parm decls back in the order they were in in the parm list. */
5049 for (t = order; t; t = TREE_CHAIN (t))
5051 if (TREE_CHAIN (t))
5052 TREE_CHAIN (TREE_VALUE (t)) = TREE_VALUE (TREE_CHAIN (t));
5053 else
5054 TREE_CHAIN (TREE_VALUE (t)) = 0;
5057 new_parms = chainon (order ? nreverse (TREE_VALUE (order)) : 0,
5058 new_parms);
5060 /* Store the parmlist in the binding level since the old one
5061 is no longer a valid list. (We have changed the chain pointers.) */
5062 storedecls (new_parms);
5064 for (decl = new_parms; decl; decl = TREE_CHAIN (decl))
5065 /* There may also be declarations for enumerators if an enumeration
5066 type is declared among the parms. Ignore them here. */
5067 if (TREE_CODE (decl) == PARM_DECL)
5069 /* Since there is a prototype,
5070 args are passed in their declared types. */
5071 tree type = TREE_TYPE (decl);
5072 DECL_ARG_TYPE (decl) = type;
5073 if (PROMOTE_PROTOTYPES
5074 && INTEGRAL_TYPE_P (type)
5075 && TYPE_PRECISION (type) < TYPE_PRECISION (integer_type_node))
5076 DECL_ARG_TYPE (decl) = integer_type_node;
5078 types = tree_cons (NULL_TREE, TREE_TYPE (decl), types);
5079 if (VOID_TYPE_P (TREE_VALUE (types)) && ! erred
5080 && DECL_NAME (decl) == 0)
5082 error ("`void' in parameter list must be the entire list");
5083 erred = 1;
5087 if (void_at_end)
5088 return tree_cons (new_parms, tags,
5089 nreverse (tree_cons (NULL_TREE, void_type_node, types)));
5091 return tree_cons (new_parms, tags, nreverse (types));
5094 /* At end of parameter list, warn about any struct, union or enum tags
5095 defined within. Do so because these types cannot ever become complete. */
5097 void
5098 parmlist_tags_warning ()
5100 tree elt;
5101 static int already;
5103 for (elt = current_binding_level->tags; elt; elt = TREE_CHAIN (elt))
5105 enum tree_code code = TREE_CODE (TREE_VALUE (elt));
5106 /* An anonymous union parm type is meaningful as a GNU extension.
5107 So don't warn for that. */
5108 if (code == UNION_TYPE && TREE_PURPOSE (elt) == 0 && !pedantic)
5109 continue;
5110 if (TREE_PURPOSE (elt) != 0)
5111 warning ("`%s %s' declared inside parameter list",
5112 (code == RECORD_TYPE ? "struct"
5113 : code == UNION_TYPE ? "union"
5114 : "enum"),
5115 IDENTIFIER_POINTER (TREE_PURPOSE (elt)));
5116 else
5118 /* For translation these need to be seperate warnings */
5119 if (code == RECORD_TYPE)
5120 warning ("anonymous struct declared inside parameter list");
5121 else if (code == UNION_TYPE)
5122 warning ("anonymous union declared inside parameter list");
5123 else
5124 warning ("anonymous enum declared inside parameter list");
5126 if (! already)
5128 warning ("its scope is only this definition or declaration, which is probably not what you want.");
5129 already = 1;
5134 /* Get the struct, enum or union (CODE says which) with tag NAME.
5135 Define the tag as a forward-reference if it is not defined. */
5137 tree
5138 xref_tag (code, name)
5139 enum tree_code code;
5140 tree name;
5142 /* If a cross reference is requested, look up the type
5143 already defined for this tag and return it. */
5145 register tree ref = lookup_tag (code, name, current_binding_level, 0);
5146 /* Even if this is the wrong type of tag, return what we found.
5147 There will be an error message anyway, from pending_xref_error.
5148 If we create an empty xref just for an invalid use of the type,
5149 the main result is to create lots of superfluous error messages. */
5150 if (ref)
5151 return ref;
5153 /* If no such tag is yet defined, create a forward-reference node
5154 and record it as the "definition".
5155 When a real declaration of this type is found,
5156 the forward-reference will be altered into a real type. */
5158 ref = make_node (code);
5159 if (code == ENUMERAL_TYPE)
5161 /* Give the type a default layout like unsigned int
5162 to avoid crashing if it does not get defined. */
5163 TYPE_MODE (ref) = TYPE_MODE (unsigned_type_node);
5164 TYPE_ALIGN (ref) = TYPE_ALIGN (unsigned_type_node);
5165 TYPE_USER_ALIGN (ref) = 0;
5166 TREE_UNSIGNED (ref) = 1;
5167 TYPE_PRECISION (ref) = TYPE_PRECISION (unsigned_type_node);
5168 TYPE_MIN_VALUE (ref) = TYPE_MIN_VALUE (unsigned_type_node);
5169 TYPE_MAX_VALUE (ref) = TYPE_MAX_VALUE (unsigned_type_node);
5172 pushtag (name, ref);
5174 return ref;
5177 /* Make sure that the tag NAME is defined *in the current binding level*
5178 at least as a forward reference.
5179 CODE says which kind of tag NAME ought to be. */
5181 tree
5182 start_struct (code, name)
5183 enum tree_code code;
5184 tree name;
5186 /* If there is already a tag defined at this binding level
5187 (as a forward reference), just return it. */
5189 register tree ref = 0;
5191 if (name != 0)
5192 ref = lookup_tag (code, name, current_binding_level, 1);
5193 if (ref && TREE_CODE (ref) == code)
5195 C_TYPE_BEING_DEFINED (ref) = 1;
5196 TYPE_PACKED (ref) = flag_pack_struct;
5197 if (TYPE_FIELDS (ref))
5198 error ("redefinition of `%s %s'",
5199 code == UNION_TYPE ? "union" : "struct",
5200 IDENTIFIER_POINTER (name));
5202 return ref;
5205 /* Otherwise create a forward-reference just so the tag is in scope. */
5207 ref = make_node (code);
5208 pushtag (name, ref);
5209 C_TYPE_BEING_DEFINED (ref) = 1;
5210 TYPE_PACKED (ref) = flag_pack_struct;
5211 return ref;
5214 /* Process the specs, declarator (NULL if omitted) and width (NULL if omitted)
5215 of a structure component, returning a FIELD_DECL node.
5216 WIDTH is non-NULL for bit fields only, and is an INTEGER_CST node.
5218 This is done during the parsing of the struct declaration.
5219 The FIELD_DECL nodes are chained together and the lot of them
5220 are ultimately passed to `build_struct' to make the RECORD_TYPE node. */
5222 tree
5223 grokfield (filename, line, declarator, declspecs, width)
5224 const char *filename ATTRIBUTE_UNUSED;
5225 int line ATTRIBUTE_UNUSED;
5226 tree declarator, declspecs, width;
5228 tree value;
5230 value = grokdeclarator (declarator, declspecs, width ? BITFIELD : FIELD, 0);
5232 finish_decl (value, NULL_TREE, NULL_TREE);
5233 DECL_INITIAL (value) = width;
5235 maybe_objc_check_decl (value);
5236 return value;
5239 /* Fill in the fields of a RECORD_TYPE or UNION_TYPE node, T.
5240 FIELDLIST is a chain of FIELD_DECL nodes for the fields.
5241 ATTRIBUTES are attributes to be applied to the structure. */
5243 tree
5244 finish_struct (t, fieldlist, attributes)
5245 tree t;
5246 tree fieldlist;
5247 tree attributes;
5249 register tree x;
5250 int toplevel = global_binding_level == current_binding_level;
5251 int saw_named_field;
5253 /* If this type was previously laid out as a forward reference,
5254 make sure we lay it out again. */
5256 TYPE_SIZE (t) = 0;
5258 decl_attributes (t, attributes, NULL_TREE);
5260 /* Nameless union parm types are useful as GCC extension. */
5261 if (! (TREE_CODE (t) == UNION_TYPE && TYPE_NAME (t) == 0) && !pedantic)
5262 /* Otherwise, warn about any struct or union def. in parmlist. */
5263 if (in_parm_level_p ())
5265 if (pedantic)
5266 pedwarn ("%s defined inside parms",
5267 TREE_CODE (t) == UNION_TYPE ? _("union") : _("structure"));
5268 else if (! flag_traditional)
5269 warning ("%s defined inside parms",
5270 TREE_CODE (t) == UNION_TYPE ? _("union") : _("structure"));
5273 if (pedantic)
5275 for (x = fieldlist; x; x = TREE_CHAIN (x))
5276 if (DECL_NAME (x) != 0)
5277 break;
5279 if (x == 0)
5280 pedwarn ("%s has no %s",
5281 TREE_CODE (t) == UNION_TYPE ? _("union") : _("struct"),
5282 fieldlist ? _("named members") : _("members"));
5285 /* Install struct as DECL_CONTEXT of each field decl.
5286 Also process specified field sizes,m which is found in the DECL_INITIAL.
5287 Store 0 there, except for ": 0" fields (so we can find them
5288 and delete them, below). */
5290 saw_named_field = 0;
5291 for (x = fieldlist; x; x = TREE_CHAIN (x))
5293 DECL_CONTEXT (x) = t;
5294 DECL_PACKED (x) |= TYPE_PACKED (t);
5296 /* If any field is const, the structure type is pseudo-const. */
5297 if (TREE_READONLY (x))
5298 C_TYPE_FIELDS_READONLY (t) = 1;
5299 else
5301 /* A field that is pseudo-const makes the structure likewise. */
5302 tree t1 = TREE_TYPE (x);
5303 while (TREE_CODE (t1) == ARRAY_TYPE)
5304 t1 = TREE_TYPE (t1);
5305 if ((TREE_CODE (t1) == RECORD_TYPE || TREE_CODE (t1) == UNION_TYPE)
5306 && C_TYPE_FIELDS_READONLY (t1))
5307 C_TYPE_FIELDS_READONLY (t) = 1;
5310 /* Any field that is volatile means variables of this type must be
5311 treated in some ways as volatile. */
5312 if (TREE_THIS_VOLATILE (x))
5313 C_TYPE_FIELDS_VOLATILE (t) = 1;
5315 /* Any field of nominal variable size implies structure is too. */
5316 if (C_DECL_VARIABLE_SIZE (x))
5317 C_TYPE_VARIABLE_SIZE (t) = 1;
5319 /* Detect invalid nested redefinition. */
5320 if (TREE_TYPE (x) == t)
5321 error ("nested redefinition of `%s'",
5322 IDENTIFIER_POINTER (TYPE_NAME (t)));
5324 /* Detect invalid bit-field size. */
5325 if (DECL_INITIAL (x))
5326 STRIP_NOPS (DECL_INITIAL (x));
5327 if (DECL_INITIAL (x))
5329 if (TREE_CODE (DECL_INITIAL (x)) == INTEGER_CST)
5330 constant_expression_warning (DECL_INITIAL (x));
5331 else
5333 error_with_decl (x,
5334 "bit-field `%s' width not an integer constant");
5335 DECL_INITIAL (x) = NULL;
5339 /* Detect invalid bit-field type. */
5340 if (DECL_INITIAL (x)
5341 && TREE_CODE (TREE_TYPE (x)) != INTEGER_TYPE
5342 && TREE_CODE (TREE_TYPE (x)) != BOOLEAN_TYPE
5343 && TREE_CODE (TREE_TYPE (x)) != ENUMERAL_TYPE)
5345 error_with_decl (x, "bit-field `%s' has invalid type");
5346 DECL_INITIAL (x) = NULL;
5349 if (DECL_INITIAL (x) && pedantic
5350 && TYPE_MAIN_VARIANT (TREE_TYPE (x)) != integer_type_node
5351 && TYPE_MAIN_VARIANT (TREE_TYPE (x)) != unsigned_type_node
5352 && TYPE_MAIN_VARIANT (TREE_TYPE (x)) != c_bool_type_node
5353 /* Accept an enum that's equivalent to int or unsigned int. */
5354 && !(TREE_CODE (TREE_TYPE (x)) == ENUMERAL_TYPE
5355 && (TYPE_PRECISION (TREE_TYPE (x))
5356 == TYPE_PRECISION (integer_type_node))))
5357 pedwarn_with_decl (x, "bit-field `%s' type invalid in ISO C");
5359 /* Detect and ignore out of range field width and process valid
5360 field widths. */
5361 if (DECL_INITIAL (x))
5363 int max_width;
5364 if (TYPE_MAIN_VARIANT (TREE_TYPE (x)) == c_bool_type_node)
5365 max_width = CHAR_TYPE_SIZE;
5366 else
5367 max_width = TYPE_PRECISION (TREE_TYPE (x));
5368 if (tree_int_cst_sgn (DECL_INITIAL (x)) < 0)
5369 error_with_decl (x, "negative width in bit-field `%s'");
5370 else if (0 < compare_tree_int (DECL_INITIAL (x), max_width))
5371 pedwarn_with_decl (x, "width of `%s' exceeds its type");
5372 else if (integer_zerop (DECL_INITIAL (x)) && DECL_NAME (x) != 0)
5373 error_with_decl (x, "zero width for bit-field `%s'");
5374 else
5376 /* The test above has assured us that TREE_INT_CST_HIGH is 0. */
5377 unsigned HOST_WIDE_INT width
5378 = TREE_INT_CST_LOW (DECL_INITIAL (x));
5380 if (TREE_CODE (TREE_TYPE (x)) == ENUMERAL_TYPE
5381 && (width < min_precision (TYPE_MIN_VALUE (TREE_TYPE (x)),
5382 TREE_UNSIGNED (TREE_TYPE (x)))
5383 || (width
5384 < min_precision (TYPE_MAX_VALUE (TREE_TYPE (x)),
5385 TREE_UNSIGNED (TREE_TYPE (x))))))
5386 warning_with_decl (x,
5387 "`%s' is narrower than values of its type");
5389 DECL_SIZE (x) = bitsize_int (width);
5390 DECL_BIT_FIELD (x) = 1;
5391 SET_DECL_C_BIT_FIELD (x);
5393 if (width == 0)
5395 /* field size 0 => force desired amount of alignment. */
5396 #ifdef EMPTY_FIELD_BOUNDARY
5397 DECL_ALIGN (x) = MAX (DECL_ALIGN (x), EMPTY_FIELD_BOUNDARY);
5398 #endif
5399 #ifdef PCC_BITFIELD_TYPE_MATTERS
5400 if (PCC_BITFIELD_TYPE_MATTERS)
5402 DECL_ALIGN (x) = MAX (DECL_ALIGN (x),
5403 TYPE_ALIGN (TREE_TYPE (x)));
5404 DECL_USER_ALIGN (x) |= TYPE_USER_ALIGN (TREE_TYPE (x));
5406 #endif
5411 else if (TREE_TYPE (x) != error_mark_node)
5413 unsigned int min_align = (DECL_PACKED (x) ? BITS_PER_UNIT
5414 : TYPE_ALIGN (TREE_TYPE (x)));
5416 /* Non-bit-fields are aligned for their type, except packed
5417 fields which require only BITS_PER_UNIT alignment. */
5418 DECL_ALIGN (x) = MAX (DECL_ALIGN (x), min_align);
5419 if (! DECL_PACKED (x))
5420 DECL_USER_ALIGN (x) |= TYPE_USER_ALIGN (TREE_TYPE (x));
5423 DECL_INITIAL (x) = 0;
5425 /* Detect flexible array member in an invalid context. */
5426 if (TREE_CODE (TREE_TYPE (x)) == ARRAY_TYPE
5427 && TYPE_SIZE (TREE_TYPE (x)) == NULL_TREE
5428 && TYPE_DOMAIN (TREE_TYPE (x)) != NULL_TREE
5429 && TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (x))) == NULL_TREE)
5431 if (TREE_CODE (t) == UNION_TYPE)
5432 error_with_decl (x, "flexible array member in union");
5433 else if (TREE_CHAIN (x) != NULL_TREE)
5434 error_with_decl (x, "flexible array member not at end of struct");
5435 else if (! saw_named_field)
5436 error_with_decl (x, "flexible array member in otherwise empty struct");
5438 if (DECL_NAME (x))
5439 saw_named_field = 1;
5442 /* Delete all duplicate fields from the fieldlist */
5443 for (x = fieldlist; x && TREE_CHAIN (x);)
5444 /* Anonymous fields aren't duplicates. */
5445 if (DECL_NAME (TREE_CHAIN (x)) == 0)
5446 x = TREE_CHAIN (x);
5447 else
5449 register tree y = fieldlist;
5451 while (1)
5453 if (DECL_NAME (y) == DECL_NAME (TREE_CHAIN (x)))
5454 break;
5455 if (y == x)
5456 break;
5457 y = TREE_CHAIN (y);
5459 if (DECL_NAME (y) == DECL_NAME (TREE_CHAIN (x)))
5461 error_with_decl (TREE_CHAIN (x), "duplicate member `%s'");
5462 TREE_CHAIN (x) = TREE_CHAIN (TREE_CHAIN (x));
5464 else
5465 x = TREE_CHAIN (x);
5468 /* Now we have the nearly final fieldlist. Record it,
5469 then lay out the structure or union (including the fields). */
5471 TYPE_FIELDS (t) = fieldlist;
5473 layout_type (t);
5475 /* Delete all zero-width bit-fields from the fieldlist */
5477 tree *fieldlistp = &fieldlist;
5478 while (*fieldlistp)
5479 if (TREE_CODE (*fieldlistp) == FIELD_DECL && DECL_INITIAL (*fieldlistp))
5480 *fieldlistp = TREE_CHAIN (*fieldlistp);
5481 else
5482 fieldlistp = &TREE_CHAIN (*fieldlistp);
5485 /* Now we have the truly final field list.
5486 Store it in this type and in the variants. */
5488 TYPE_FIELDS (t) = fieldlist;
5490 for (x = TYPE_MAIN_VARIANT (t); x; x = TYPE_NEXT_VARIANT (x))
5492 TYPE_FIELDS (x) = TYPE_FIELDS (t);
5493 TYPE_LANG_SPECIFIC (x) = TYPE_LANG_SPECIFIC (t);
5494 TYPE_ALIGN (x) = TYPE_ALIGN (t);
5495 TYPE_USER_ALIGN (x) = TYPE_USER_ALIGN (t);
5498 /* If this was supposed to be a transparent union, but we can't
5499 make it one, warn and turn off the flag. */
5500 if (TREE_CODE (t) == UNION_TYPE
5501 && TYPE_TRANSPARENT_UNION (t)
5502 && TYPE_MODE (t) != DECL_MODE (TYPE_FIELDS (t)))
5504 TYPE_TRANSPARENT_UNION (t) = 0;
5505 warning ("union cannot be made transparent");
5508 /* If this structure or union completes the type of any previous
5509 variable declaration, lay it out and output its rtl. */
5511 if (current_binding_level->n_incomplete != 0)
5513 tree decl;
5514 for (decl = current_binding_level->names; decl; decl = TREE_CHAIN (decl))
5516 if (TYPE_MAIN_VARIANT (TREE_TYPE (decl)) == TYPE_MAIN_VARIANT (t)
5517 && TREE_CODE (decl) != TYPE_DECL)
5519 layout_decl (decl, 0);
5520 /* This is a no-op in c-lang.c or something real in objc-actions.c. */
5521 maybe_objc_check_decl (decl);
5522 rest_of_decl_compilation (decl, NULL_PTR, toplevel, 0);
5523 if (! toplevel)
5524 expand_decl (decl);
5525 --current_binding_level->n_incomplete;
5527 else if (!COMPLETE_TYPE_P (TREE_TYPE (decl))
5528 && TREE_CODE (TREE_TYPE (decl)) == ARRAY_TYPE)
5530 tree element = TREE_TYPE (decl);
5531 while (TREE_CODE (element) == ARRAY_TYPE)
5532 element = TREE_TYPE (element);
5533 if (element == t)
5534 layout_array_type (TREE_TYPE (decl));
5539 /* Finish debugging output for this type. */
5540 rest_of_type_compilation (t, toplevel);
5542 return t;
5545 /* Lay out the type T, and its element type, and so on. */
5547 static void
5548 layout_array_type (t)
5549 tree t;
5551 if (TREE_CODE (TREE_TYPE (t)) == ARRAY_TYPE)
5552 layout_array_type (TREE_TYPE (t));
5553 layout_type (t);
5556 /* Begin compiling the definition of an enumeration type.
5557 NAME is its name (or null if anonymous).
5558 Returns the type object, as yet incomplete.
5559 Also records info about it so that build_enumerator
5560 may be used to declare the individual values as they are read. */
5562 tree
5563 start_enum (name)
5564 tree name;
5566 register tree enumtype = 0;
5568 /* If this is the real definition for a previous forward reference,
5569 fill in the contents in the same object that used to be the
5570 forward reference. */
5572 if (name != 0)
5573 enumtype = lookup_tag (ENUMERAL_TYPE, name, current_binding_level, 1);
5575 if (enumtype == 0 || TREE_CODE (enumtype) != ENUMERAL_TYPE)
5577 enumtype = make_node (ENUMERAL_TYPE);
5578 pushtag (name, enumtype);
5581 C_TYPE_BEING_DEFINED (enumtype) = 1;
5583 if (TYPE_VALUES (enumtype) != 0)
5585 /* This enum is a named one that has been declared already. */
5586 error ("redeclaration of `enum %s'", IDENTIFIER_POINTER (name));
5588 /* Completely replace its old definition.
5589 The old enumerators remain defined, however. */
5590 TYPE_VALUES (enumtype) = 0;
5593 enum_next_value = integer_zero_node;
5594 enum_overflow = 0;
5596 if (flag_short_enums)
5597 TYPE_PACKED (enumtype) = 1;
5599 return enumtype;
5602 /* After processing and defining all the values of an enumeration type,
5603 install their decls in the enumeration type and finish it off.
5604 ENUMTYPE is the type object, VALUES a list of decl-value pairs,
5605 and ATTRIBUTES are the specified attributes.
5606 Returns ENUMTYPE. */
5608 tree
5609 finish_enum (enumtype, values, attributes)
5610 tree enumtype;
5611 tree values;
5612 tree attributes;
5614 register tree pair, tem;
5615 tree minnode = 0, maxnode = 0, enum_value_type;
5616 int precision, unsign;
5617 int toplevel = (global_binding_level == current_binding_level);
5619 if (in_parm_level_p ())
5620 warning ("enum defined inside parms");
5622 decl_attributes (enumtype, attributes, NULL_TREE);
5624 /* Calculate the maximum value of any enumerator in this type. */
5626 if (values == error_mark_node)
5627 minnode = maxnode = integer_zero_node;
5628 else
5630 minnode = maxnode = TREE_VALUE (values);
5631 for (pair = TREE_CHAIN (values); pair; pair = TREE_CHAIN (pair))
5633 tree value = TREE_VALUE (pair);
5634 if (tree_int_cst_lt (maxnode, value))
5635 maxnode = value;
5636 if (tree_int_cst_lt (value, minnode))
5637 minnode = value;
5641 /* Construct the final type of this enumeration. It is the same
5642 as one of the integral types - the narrowest one that fits, except
5643 that normally we only go as narrow as int - and signed iff any of
5644 the values are negative. */
5645 unsign = (tree_int_cst_sgn (minnode) >= 0);
5646 precision = MAX (min_precision (minnode, unsign),
5647 min_precision (maxnode, unsign));
5648 if (TYPE_PACKED (enumtype) || precision > TYPE_PRECISION (integer_type_node))
5650 tree narrowest = type_for_size (precision, unsign);
5651 if (narrowest == 0)
5653 warning ("enumeration values exceed range of largest integer");
5654 narrowest = long_long_integer_type_node;
5657 precision = TYPE_PRECISION (narrowest);
5659 else
5660 precision = TYPE_PRECISION (integer_type_node);
5662 if (precision == TYPE_PRECISION (integer_type_node))
5663 enum_value_type = type_for_size (precision, 0);
5664 else
5665 enum_value_type = enumtype;
5667 TYPE_MIN_VALUE (enumtype) = minnode;
5668 TYPE_MAX_VALUE (enumtype) = maxnode;
5669 TYPE_PRECISION (enumtype) = precision;
5670 TREE_UNSIGNED (enumtype) = unsign;
5671 TYPE_SIZE (enumtype) = 0;
5672 layout_type (enumtype);
5674 if (values != error_mark_node)
5676 /* Change the type of the enumerators to be the enum type. We
5677 need to do this irrespective of the size of the enum, for
5678 proper type checking. Replace the DECL_INITIALs of the
5679 enumerators, and the value slots of the list, with copies
5680 that have the enum type; they cannot be modified in place
5681 because they may be shared (e.g. integer_zero_node) Finally,
5682 change the purpose slots to point to the names of the decls. */
5683 for (pair = values; pair; pair = TREE_CHAIN (pair))
5685 tree enu = TREE_PURPOSE (pair);
5687 TREE_TYPE (enu) = enumtype;
5688 DECL_SIZE (enu) = TYPE_SIZE (enumtype);
5689 DECL_SIZE_UNIT (enu) = TYPE_SIZE_UNIT (enumtype);
5690 DECL_ALIGN (enu) = TYPE_ALIGN (enumtype);
5691 DECL_USER_ALIGN (enu) = TYPE_USER_ALIGN (enumtype);
5692 DECL_MODE (enu) = TYPE_MODE (enumtype);
5694 /* The ISO C Standard mandates enumerators to have type int,
5695 even though the underlying type of an enum type is
5696 unspecified. Here we convert any enumerators that fit in
5697 an int to type int, to avoid promotions to unsigned types
5698 when comparing integers with enumerators that fit in the
5699 int range. When -pedantic is given, build_enumerator()
5700 would have already taken care of those that don't fit. */
5701 if (int_fits_type_p (DECL_INITIAL (enu), enum_value_type))
5702 DECL_INITIAL (enu) = convert (enum_value_type, DECL_INITIAL (enu));
5703 else
5704 DECL_INITIAL (enu) = convert (enumtype, DECL_INITIAL (enu));
5706 TREE_PURPOSE (pair) = DECL_NAME (enu);
5707 TREE_VALUE (pair) = DECL_INITIAL (enu);
5710 TYPE_VALUES (enumtype) = values;
5713 /* Fix up all variant types of this enum type. */
5714 for (tem = TYPE_MAIN_VARIANT (enumtype); tem; tem = TYPE_NEXT_VARIANT (tem))
5716 if (tem == enumtype)
5717 continue;
5718 TYPE_VALUES (tem) = TYPE_VALUES (enumtype);
5719 TYPE_MIN_VALUE (tem) = TYPE_MIN_VALUE (enumtype);
5720 TYPE_MAX_VALUE (tem) = TYPE_MAX_VALUE (enumtype);
5721 TYPE_SIZE (tem) = TYPE_SIZE (enumtype);
5722 TYPE_SIZE_UNIT (tem) = TYPE_SIZE_UNIT (enumtype);
5723 TYPE_MODE (tem) = TYPE_MODE (enumtype);
5724 TYPE_PRECISION (tem) = TYPE_PRECISION (enumtype);
5725 TYPE_ALIGN (tem) = TYPE_ALIGN (enumtype);
5726 TYPE_USER_ALIGN (tem) = TYPE_USER_ALIGN (enumtype);
5727 TREE_UNSIGNED (tem) = TREE_UNSIGNED (enumtype);
5730 /* Finish debugging output for this type. */
5731 rest_of_type_compilation (enumtype, toplevel);
5733 return enumtype;
5736 /* Build and install a CONST_DECL for one value of the
5737 current enumeration type (one that was begun with start_enum).
5738 Return a tree-list containing the CONST_DECL and its value.
5739 Assignment of sequential values by default is handled here. */
5741 tree
5742 build_enumerator (name, value)
5743 tree name, value;
5745 register tree decl, type;
5747 /* Validate and default VALUE. */
5749 /* Remove no-op casts from the value. */
5750 if (value)
5751 STRIP_TYPE_NOPS (value);
5753 if (value != 0)
5755 if (TREE_CODE (value) == INTEGER_CST)
5757 value = default_conversion (value);
5758 constant_expression_warning (value);
5760 else
5762 error ("enumerator value for `%s' not integer constant",
5763 IDENTIFIER_POINTER (name));
5764 value = 0;
5768 /* Default based on previous value. */
5769 /* It should no longer be possible to have NON_LVALUE_EXPR
5770 in the default. */
5771 if (value == 0)
5773 value = enum_next_value;
5774 if (enum_overflow)
5775 error ("overflow in enumeration values");
5778 if (pedantic && ! int_fits_type_p (value, integer_type_node))
5780 pedwarn ("ISO C restricts enumerator values to range of `int'");
5781 value = convert (integer_type_node, value);
5784 /* Set basis for default for next value. */
5785 enum_next_value = build_binary_op (PLUS_EXPR, value, integer_one_node, 0);
5786 enum_overflow = tree_int_cst_lt (enum_next_value, value);
5788 /* Now create a declaration for the enum value name. */
5790 type = TREE_TYPE (value);
5791 type = type_for_size (MAX (TYPE_PRECISION (type),
5792 TYPE_PRECISION (integer_type_node)),
5793 ((flag_traditional
5794 || TYPE_PRECISION (type) >= TYPE_PRECISION (integer_type_node))
5795 && TREE_UNSIGNED (type)));
5797 decl = build_decl (CONST_DECL, name, type);
5798 DECL_INITIAL (decl) = convert (type, value);
5799 pushdecl (decl);
5801 return tree_cons (decl, value, NULL_TREE);
5805 /* Create the FUNCTION_DECL for a function definition.
5806 DECLSPECS, DECLARATOR, PREFIX_ATTRIBUTES and ATTRIBUTES are the parts of
5807 the declaration; they describe the function's name and the type it returns,
5808 but twisted together in a fashion that parallels the syntax of C.
5810 This function creates a binding context for the function body
5811 as well as setting up the FUNCTION_DECL in current_function_decl.
5813 Returns 1 on success. If the DECLARATOR is not suitable for a function
5814 (it defines a datum instead), we return 0, which tells
5815 yyparse to report a parse error. */
5818 start_function (declspecs, declarator, prefix_attributes, attributes)
5819 tree declarator, declspecs, prefix_attributes, attributes;
5821 tree decl1, old_decl;
5822 tree restype;
5823 int old_immediate_size_expand = immediate_size_expand;
5825 current_function_returns_value = 0; /* Assume, until we see it does. */
5826 current_function_returns_null = 0;
5827 warn_about_return_type = 0;
5828 current_extern_inline = 0;
5829 c_function_varargs = 0;
5830 named_labels = 0;
5831 shadowed_labels = 0;
5833 /* Don't expand any sizes in the return type of the function. */
5834 immediate_size_expand = 0;
5836 decl1 = grokdeclarator (declarator, declspecs, FUNCDEF, 1);
5838 /* If the declarator is not suitable for a function definition,
5839 cause a syntax error. */
5840 if (decl1 == 0)
5842 immediate_size_expand = old_immediate_size_expand;
5843 return 0;
5846 decl_attributes (decl1, prefix_attributes, attributes);
5848 announce_function (decl1);
5850 if (!COMPLETE_OR_VOID_TYPE_P (TREE_TYPE (TREE_TYPE (decl1))))
5852 error ("return type is an incomplete type");
5853 /* Make it return void instead. */
5854 TREE_TYPE (decl1)
5855 = build_function_type (void_type_node,
5856 TYPE_ARG_TYPES (TREE_TYPE (decl1)));
5859 if (warn_about_return_type)
5860 pedwarn_c99 ("return type defaults to `int'");
5862 /* Save the parm names or decls from this function's declarator
5863 where store_parm_decls will find them. */
5864 current_function_parms = last_function_parms;
5865 current_function_parm_tags = last_function_parm_tags;
5867 /* Make the init_value nonzero so pushdecl knows this is not tentative.
5868 error_mark_node is replaced below (in poplevel) with the BLOCK. */
5869 DECL_INITIAL (decl1) = error_mark_node;
5871 /* If this definition isn't a prototype and we had a prototype declaration
5872 before, copy the arg type info from that prototype.
5873 But not if what we had before was a builtin function. */
5874 old_decl = lookup_name_current_level (DECL_NAME (decl1));
5875 if (old_decl != 0 && TREE_CODE (TREE_TYPE (old_decl)) == FUNCTION_TYPE
5876 && !DECL_BUILT_IN (old_decl)
5877 && (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (decl1)))
5878 == TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (old_decl))))
5879 && TYPE_ARG_TYPES (TREE_TYPE (decl1)) == 0)
5881 TREE_TYPE (decl1) = TREE_TYPE (old_decl);
5882 current_function_prototype_file = DECL_SOURCE_FILE (old_decl);
5883 current_function_prototype_line = DECL_SOURCE_LINE (old_decl);
5886 /* If there is no explicit declaration, look for any out-of-scope implicit
5887 declarations. */
5888 if (old_decl == 0)
5889 old_decl = IDENTIFIER_IMPLICIT_DECL (DECL_NAME (decl1));
5891 /* Optionally warn of old-fashioned def with no previous prototype. */
5892 if (warn_strict_prototypes
5893 && TYPE_ARG_TYPES (TREE_TYPE (decl1)) == 0
5894 && !(old_decl != 0
5895 && (TYPE_ARG_TYPES (TREE_TYPE (old_decl)) != 0
5896 || (DECL_BUILT_IN (old_decl)
5897 && ! C_DECL_ANTICIPATED (old_decl)))))
5898 warning ("function declaration isn't a prototype");
5899 /* Optionally warn of any global def with no previous prototype. */
5900 else if (warn_missing_prototypes
5901 && TREE_PUBLIC (decl1)
5902 && !(old_decl != 0
5903 && (TYPE_ARG_TYPES (TREE_TYPE (old_decl)) != 0
5904 || (DECL_BUILT_IN (old_decl)
5905 && ! C_DECL_ANTICIPATED (old_decl))))
5906 && ! MAIN_NAME_P (DECL_NAME (decl1)))
5907 warning_with_decl (decl1, "no previous prototype for `%s'");
5908 /* Optionally warn of any def with no previous prototype
5909 if the function has already been used. */
5910 else if (warn_missing_prototypes
5911 && old_decl != 0 && TREE_USED (old_decl)
5912 && TYPE_ARG_TYPES (TREE_TYPE (old_decl)) == 0)
5913 warning_with_decl (decl1,
5914 "`%s' was used with no prototype before its definition");
5915 /* Optionally warn of any global def with no previous declaration. */
5916 else if (warn_missing_declarations
5917 && TREE_PUBLIC (decl1)
5918 && old_decl == 0
5919 && ! MAIN_NAME_P (DECL_NAME (decl1)))
5920 warning_with_decl (decl1, "no previous declaration for `%s'");
5921 /* Optionally warn of any def with no previous declaration
5922 if the function has already been used. */
5923 else if (warn_missing_declarations
5924 && old_decl != 0 && TREE_USED (old_decl)
5925 && old_decl == IDENTIFIER_IMPLICIT_DECL (DECL_NAME (decl1)))
5926 warning_with_decl (decl1,
5927 "`%s' was used with no declaration before its definition");
5929 /* This is a definition, not a reference.
5930 So normally clear DECL_EXTERNAL.
5931 However, `extern inline' acts like a declaration
5932 except for defining how to inline. So set DECL_EXTERNAL in that case. */
5933 DECL_EXTERNAL (decl1) = current_extern_inline;
5935 #ifdef SET_DEFAULT_DECL_ATTRIBUTES
5936 SET_DEFAULT_DECL_ATTRIBUTES (decl1, attributes);
5937 #endif
5939 /* This function exists in static storage.
5940 (This does not mean `static' in the C sense!) */
5941 TREE_STATIC (decl1) = 1;
5943 /* A nested function is not global. */
5944 if (current_function_decl != 0)
5945 TREE_PUBLIC (decl1) = 0;
5947 /* Warn for unlikely, improbable, or stupid declarations of `main'. */
5948 if (warn_main > 0 && MAIN_NAME_P (DECL_NAME (decl1)))
5950 tree args;
5951 int argct = 0;
5953 if (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (decl1)))
5954 != integer_type_node)
5955 pedwarn_with_decl (decl1, "return type of `%s' is not `int'");
5957 for (args = TYPE_ARG_TYPES (TREE_TYPE (decl1)); args;
5958 args = TREE_CHAIN (args))
5960 tree type = args ? TREE_VALUE (args) : 0;
5962 if (type == void_type_node)
5963 break;
5965 ++argct;
5966 switch (argct)
5968 case 1:
5969 if (TYPE_MAIN_VARIANT (type) != integer_type_node)
5970 pedwarn_with_decl (decl1,
5971 "first argument of `%s' should be `int'");
5972 break;
5974 case 2:
5975 if (TREE_CODE (type) != POINTER_TYPE
5976 || TREE_CODE (TREE_TYPE (type)) != POINTER_TYPE
5977 || (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (type)))
5978 != char_type_node))
5979 pedwarn_with_decl (decl1,
5980 "second argument of `%s' should be `char **'");
5981 break;
5983 case 3:
5984 if (TREE_CODE (type) != POINTER_TYPE
5985 || TREE_CODE (TREE_TYPE (type)) != POINTER_TYPE
5986 || (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (type)))
5987 != char_type_node))
5988 pedwarn_with_decl (decl1,
5989 "third argument of `%s' should probably be `char **'");
5990 break;
5994 /* It is intentional that this message does not mention the third
5995 argument because it's only mentioned in an appendix of the
5996 standard. */
5997 if (argct > 0 && (argct < 2 || argct > 3))
5998 pedwarn_with_decl (decl1, "`%s' takes only zero or two arguments");
6000 if (! TREE_PUBLIC (decl1))
6001 pedwarn_with_decl (decl1, "`%s' is normally a non-static function");
6004 /* Record the decl so that the function name is defined.
6005 If we already have a decl for this name, and it is a FUNCTION_DECL,
6006 use the old decl. */
6008 current_function_decl = pushdecl (decl1);
6010 pushlevel (0);
6011 declare_parm_level (1);
6012 current_binding_level->subblocks_tag_transparent = 1;
6014 make_decl_rtl (current_function_decl, NULL);
6016 restype = TREE_TYPE (TREE_TYPE (current_function_decl));
6017 /* Promote the value to int before returning it. */
6018 if (c_promoting_integer_type_p (restype))
6020 /* It retains unsignedness if traditional
6021 or if not really getting wider. */
6022 if (TREE_UNSIGNED (restype)
6023 && (flag_traditional
6024 || (TYPE_PRECISION (restype)
6025 == TYPE_PRECISION (integer_type_node))))
6026 restype = unsigned_type_node;
6027 else
6028 restype = integer_type_node;
6030 DECL_RESULT (current_function_decl)
6031 = build_decl (RESULT_DECL, NULL_TREE, restype);
6033 /* If this fcn was already referenced via a block-scope `extern' decl
6034 (or an implicit decl), propagate certain information about the usage. */
6035 if (TREE_ADDRESSABLE (DECL_ASSEMBLER_NAME (current_function_decl)))
6036 TREE_ADDRESSABLE (current_function_decl) = 1;
6038 immediate_size_expand = old_immediate_size_expand;
6040 return 1;
6043 /* Record that this function is going to be a varargs function.
6044 This is called before store_parm_decls, which is too early
6045 to call mark_varargs directly. */
6047 void
6048 c_mark_varargs ()
6050 c_function_varargs = 1;
6053 /* Store the parameter declarations into the current function declaration.
6054 This is called after parsing the parameter declarations, before
6055 digesting the body of the function.
6057 For an old-style definition, modify the function's type
6058 to specify at least the number of arguments. */
6060 void
6061 store_parm_decls ()
6063 register tree fndecl = current_function_decl;
6064 register tree parm;
6066 /* This is either a chain of PARM_DECLs (if a prototype was used)
6067 or a list of IDENTIFIER_NODEs (for an old-fashioned C definition). */
6068 tree specparms = current_function_parms;
6070 /* This is a list of types declared among parms in a prototype. */
6071 tree parmtags = current_function_parm_tags;
6073 /* This is a chain of PARM_DECLs from old-style parm declarations. */
6074 register tree parmdecls = getdecls ();
6076 /* This is a chain of any other decls that came in among the parm
6077 declarations. If a parm is declared with enum {foo, bar} x;
6078 then CONST_DECLs for foo and bar are put here. */
6079 tree nonparms = 0;
6081 /* Nonzero if this definition is written with a prototype. */
6082 int prototype = 0;
6084 /* The function containing FNDECL, if any. */
6085 tree context = decl_function_context (fndecl);
6087 if (specparms != 0 && TREE_CODE (specparms) != TREE_LIST)
6089 /* This case is when the function was defined with an ANSI prototype.
6090 The parms already have decls, so we need not do anything here
6091 except record them as in effect
6092 and complain if any redundant old-style parm decls were written. */
6094 register tree next;
6095 tree others = 0;
6097 prototype = 1;
6099 if (parmdecls != 0)
6101 tree decl, link;
6103 error_with_decl (fndecl,
6104 "parm types given both in parmlist and separately");
6105 /* Get rid of the erroneous decls; don't keep them on
6106 the list of parms, since they might not be PARM_DECLs. */
6107 for (decl = current_binding_level->names;
6108 decl; decl = TREE_CHAIN (decl))
6109 if (DECL_NAME (decl))
6110 IDENTIFIER_LOCAL_VALUE (DECL_NAME (decl)) = 0;
6111 for (link = current_binding_level->shadowed;
6112 link; link = TREE_CHAIN (link))
6113 IDENTIFIER_LOCAL_VALUE (TREE_PURPOSE (link)) = TREE_VALUE (link);
6114 current_binding_level->names = 0;
6115 current_binding_level->shadowed = 0;
6118 specparms = nreverse (specparms);
6119 for (parm = specparms; parm; parm = next)
6121 next = TREE_CHAIN (parm);
6122 if (TREE_CODE (parm) == PARM_DECL)
6124 if (DECL_NAME (parm) == 0)
6125 error_with_decl (parm, "parameter name omitted");
6126 else if (TREE_CODE (TREE_TYPE (parm)) != ERROR_MARK
6127 && VOID_TYPE_P (TREE_TYPE (parm)))
6129 error_with_decl (parm, "parameter `%s' declared void");
6130 /* Change the type to error_mark_node so this parameter
6131 will be ignored by assign_parms. */
6132 TREE_TYPE (parm) = error_mark_node;
6134 pushdecl (parm);
6136 else
6138 /* If we find an enum constant or a type tag,
6139 put it aside for the moment. */
6140 TREE_CHAIN (parm) = 0;
6141 others = chainon (others, parm);
6145 /* Get the decls in their original chain order
6146 and record in the function. */
6147 DECL_ARGUMENTS (fndecl) = getdecls ();
6149 #if 0
6150 /* If this function takes a variable number of arguments,
6151 add a phony parameter to the end of the parm list,
6152 to represent the position of the first unnamed argument. */
6153 if (TREE_VALUE (tree_last (TYPE_ARG_TYPES (TREE_TYPE (fndecl))))
6154 != void_type_node)
6156 tree dummy = build_decl (PARM_DECL, NULL_TREE, void_type_node);
6157 /* Let's hope the address of the unnamed parm
6158 won't depend on its type. */
6159 TREE_TYPE (dummy) = integer_type_node;
6160 DECL_ARG_TYPE (dummy) = integer_type_node;
6161 DECL_ARGUMENTS (fndecl) = chainon (DECL_ARGUMENTS (fndecl), dummy);
6163 #endif
6165 /* Now pushdecl the enum constants. */
6166 for (parm = others; parm; parm = next)
6168 next = TREE_CHAIN (parm);
6169 if (DECL_NAME (parm) == 0)
6171 else if (TYPE_MAIN_VARIANT (TREE_TYPE (parm)) == void_type_node)
6173 else if (TREE_CODE (parm) != PARM_DECL)
6174 pushdecl (parm);
6177 storetags (chainon (parmtags, gettags ()));
6179 else
6181 /* SPECPARMS is an identifier list--a chain of TREE_LIST nodes
6182 each with a parm name as the TREE_VALUE.
6184 PARMDECLS is a chain of declarations for parameters.
6185 Warning! It can also contain CONST_DECLs which are not parameters
6186 but are names of enumerators of any enum types
6187 declared among the parameters.
6189 First match each formal parameter name with its declaration.
6190 Associate decls with the names and store the decls
6191 into the TREE_PURPOSE slots. */
6193 /* We use DECL_WEAK as a flag to show which parameters have been
6194 seen already since it is not used on PARM_DECL or CONST_DECL. */
6195 for (parm = parmdecls; parm; parm = TREE_CHAIN (parm))
6196 DECL_WEAK (parm) = 0;
6198 for (parm = specparms; parm; parm = TREE_CHAIN (parm))
6200 register tree tail, found = NULL;
6202 if (TREE_VALUE (parm) == 0)
6204 error_with_decl (fndecl,
6205 "parameter name missing from parameter list");
6206 TREE_PURPOSE (parm) = 0;
6207 continue;
6210 /* See if any of the parmdecls specifies this parm by name.
6211 Ignore any enumerator decls. */
6212 for (tail = parmdecls; tail; tail = TREE_CHAIN (tail))
6213 if (DECL_NAME (tail) == TREE_VALUE (parm)
6214 && TREE_CODE (tail) == PARM_DECL)
6216 found = tail;
6217 break;
6220 /* If declaration already marked, we have a duplicate name.
6221 Complain, and don't use this decl twice. */
6222 if (found && DECL_WEAK (found))
6224 error_with_decl (found, "multiple parameters named `%s'");
6225 found = 0;
6228 /* If the declaration says "void", complain and ignore it. */
6229 if (found && VOID_TYPE_P (TREE_TYPE (found)))
6231 error_with_decl (found, "parameter `%s' declared void");
6232 TREE_TYPE (found) = integer_type_node;
6233 DECL_ARG_TYPE (found) = integer_type_node;
6234 layout_decl (found, 0);
6237 /* Traditionally, a parm declared float is actually a double. */
6238 if (found && flag_traditional
6239 && TYPE_MAIN_VARIANT (TREE_TYPE (found)) == float_type_node)
6241 TREE_TYPE (found) = double_type_node;
6242 DECL_ARG_TYPE (found) = double_type_node;
6243 layout_decl (found, 0);
6246 /* If no declaration found, default to int. */
6247 if (!found)
6249 found = build_decl (PARM_DECL, TREE_VALUE (parm),
6250 integer_type_node);
6251 DECL_ARG_TYPE (found) = TREE_TYPE (found);
6252 DECL_SOURCE_LINE (found) = DECL_SOURCE_LINE (fndecl);
6253 DECL_SOURCE_FILE (found) = DECL_SOURCE_FILE (fndecl);
6254 if (flag_isoc99)
6255 pedwarn_with_decl (found, "type of `%s' defaults to `int'");
6256 else if (extra_warnings)
6257 warning_with_decl (found, "type of `%s' defaults to `int'");
6258 pushdecl (found);
6261 TREE_PURPOSE (parm) = found;
6263 /* Mark this decl as "already found". */
6264 DECL_WEAK (found) = 1;
6267 /* Put anything which is on the parmdecls chain and which is
6268 not a PARM_DECL onto the list NONPARMS. (The types of
6269 non-parm things which might appear on the list include
6270 enumerators and NULL-named TYPE_DECL nodes.) Complain about
6271 any actual PARM_DECLs not matched with any names. */
6273 nonparms = 0;
6274 for (parm = parmdecls; parm;)
6276 tree next = TREE_CHAIN (parm);
6277 TREE_CHAIN (parm) = 0;
6279 if (TREE_CODE (parm) != PARM_DECL)
6280 nonparms = chainon (nonparms, parm);
6281 else
6283 /* Complain about args with incomplete types. */
6284 if (!COMPLETE_TYPE_P (TREE_TYPE (parm)))
6286 error_with_decl (parm, "parameter `%s' has incomplete type");
6287 TREE_TYPE (parm) = error_mark_node;
6290 if (! DECL_WEAK (parm))
6292 error_with_decl (parm,
6293 "declaration for parameter `%s' but no such parameter");
6294 /* Pretend the parameter was not missing.
6295 This gets us to a standard state and minimizes
6296 further error messages. */
6297 specparms
6298 = chainon (specparms,
6299 tree_cons (parm, NULL_TREE, NULL_TREE));
6303 parm = next;
6306 /* Chain the declarations together in the order of the list of
6307 names. Store that chain in the function decl, replacing the
6308 list of names. */
6309 parm = specparms;
6310 DECL_ARGUMENTS (fndecl) = 0;
6312 register tree last;
6313 for (last = 0; parm; parm = TREE_CHAIN (parm))
6314 if (TREE_PURPOSE (parm))
6316 if (last == 0)
6317 DECL_ARGUMENTS (fndecl) = TREE_PURPOSE (parm);
6318 else
6319 TREE_CHAIN (last) = TREE_PURPOSE (parm);
6320 last = TREE_PURPOSE (parm);
6321 TREE_CHAIN (last) = 0;
6325 /* If there was a previous prototype,
6326 set the DECL_ARG_TYPE of each argument according to
6327 the type previously specified, and report any mismatches. */
6329 if (TYPE_ARG_TYPES (TREE_TYPE (fndecl)))
6331 register tree type;
6332 for (parm = DECL_ARGUMENTS (fndecl),
6333 type = TYPE_ARG_TYPES (TREE_TYPE (fndecl));
6334 parm || (type && (TYPE_MAIN_VARIANT (TREE_VALUE (type))
6335 != void_type_node));
6336 parm = TREE_CHAIN (parm), type = TREE_CHAIN (type))
6338 if (parm == 0 || type == 0
6339 || TYPE_MAIN_VARIANT (TREE_VALUE (type)) == void_type_node)
6341 error ("number of arguments doesn't match prototype");
6342 error_with_file_and_line (current_function_prototype_file,
6343 current_function_prototype_line,
6344 "prototype declaration");
6345 break;
6347 /* Type for passing arg must be consistent
6348 with that declared for the arg. */
6349 if (! comptypes (DECL_ARG_TYPE (parm), TREE_VALUE (type)))
6351 if (TYPE_MAIN_VARIANT (TREE_TYPE (parm))
6352 == TYPE_MAIN_VARIANT (TREE_VALUE (type)))
6354 /* Adjust argument to match prototype. E.g. a previous
6355 `int foo(float);' prototype causes
6356 `int foo(x) float x; {...}' to be treated like
6357 `int foo(float x) {...}'. This is particularly
6358 useful for argument types like uid_t. */
6359 DECL_ARG_TYPE (parm) = TREE_TYPE (parm);
6361 if (PROMOTE_PROTOTYPES
6362 && INTEGRAL_TYPE_P (TREE_TYPE (parm))
6363 && TYPE_PRECISION (TREE_TYPE (parm))
6364 < TYPE_PRECISION (integer_type_node))
6365 DECL_ARG_TYPE (parm) = integer_type_node;
6367 if (pedantic)
6369 pedwarn ("promoted argument `%s' doesn't match prototype",
6370 IDENTIFIER_POINTER (DECL_NAME (parm)));
6371 warning_with_file_and_line
6372 (current_function_prototype_file,
6373 current_function_prototype_line,
6374 "prototype declaration");
6377 /* If -traditional, allow `int' argument to match
6378 `unsigned' prototype. */
6379 else if (! (flag_traditional
6380 && TYPE_MAIN_VARIANT (TREE_TYPE (parm)) == integer_type_node
6381 && TYPE_MAIN_VARIANT (TREE_VALUE (type)) == unsigned_type_node))
6383 error ("argument `%s' doesn't match prototype",
6384 IDENTIFIER_POINTER (DECL_NAME (parm)));
6385 error_with_file_and_line (current_function_prototype_file,
6386 current_function_prototype_line,
6387 "prototype declaration");
6391 TYPE_ACTUAL_ARG_TYPES (TREE_TYPE (fndecl)) = 0;
6394 /* Otherwise, create a prototype that would match. */
6396 else
6398 tree actual = 0, last = 0, type;
6400 for (parm = DECL_ARGUMENTS (fndecl); parm; parm = TREE_CHAIN (parm))
6402 type = tree_cons (NULL_TREE, DECL_ARG_TYPE (parm), NULL_TREE);
6403 if (last)
6404 TREE_CHAIN (last) = type;
6405 else
6406 actual = type;
6407 last = type;
6409 type = tree_cons (NULL_TREE, void_type_node, NULL_TREE);
6410 if (last)
6411 TREE_CHAIN (last) = type;
6412 else
6413 actual = type;
6415 /* We are going to assign a new value for the TYPE_ACTUAL_ARG_TYPES
6416 of the type of this function, but we need to avoid having this
6417 affect the types of other similarly-typed functions, so we must
6418 first force the generation of an identical (but separate) type
6419 node for the relevant function type. The new node we create
6420 will be a variant of the main variant of the original function
6421 type. */
6423 TREE_TYPE (fndecl) = build_type_copy (TREE_TYPE (fndecl));
6425 TYPE_ACTUAL_ARG_TYPES (TREE_TYPE (fndecl)) = actual;
6428 /* Now store the final chain of decls for the arguments
6429 as the decl-chain of the current lexical scope.
6430 Put the enumerators in as well, at the front so that
6431 DECL_ARGUMENTS is not modified. */
6433 storedecls (chainon (nonparms, DECL_ARGUMENTS (fndecl)));
6436 /* Make sure the binding level for the top of the function body
6437 gets a BLOCK if there are any in the function.
6438 Otherwise, the dbx output is wrong. */
6440 keep_next_if_subblocks = 1;
6442 /* ??? This might be an improvement,
6443 but needs to be thought about some more. */
6444 #if 0
6445 keep_next_level_flag = 1;
6446 #endif
6448 /* Write a record describing this function definition to the prototypes
6449 file (if requested). */
6451 gen_aux_info_record (fndecl, 1, 0, prototype);
6453 /* Initialize the RTL code for the function. */
6454 init_function_start (fndecl, input_filename, lineno);
6456 /* Begin the statement tree for this function. */
6457 DECL_LANG_SPECIFIC (current_function_decl)
6458 =((struct lang_decl *) ggc_alloc_cleared (sizeof (struct lang_decl)));
6459 begin_stmt_tree (&DECL_SAVED_TREE (current_function_decl));
6461 /* If this is a nested function, save away the sizes of any
6462 variable-size types so that we can expand them when generating
6463 RTL. */
6464 if (context)
6466 tree t;
6468 DECL_LANG_SPECIFIC (fndecl)->pending_sizes
6469 = nreverse (get_pending_sizes ());
6470 for (t = DECL_LANG_SPECIFIC (fndecl)->pending_sizes;
6472 t = TREE_CHAIN (t))
6473 SAVE_EXPR_CONTEXT (TREE_VALUE (t)) = context;
6476 /* This function is being processed in whole-function mode. */
6477 cfun->x_whole_function_mode_p = 1;
6479 /* Even though we're inside a function body, we still don't want to
6480 call expand_expr to calculate the size of a variable-sized array.
6481 We haven't necessarily assigned RTL to all variables yet, so it's
6482 not safe to try to expand expressions involving them. */
6483 immediate_size_expand = 0;
6484 cfun->x_dont_save_pending_sizes_p = 1;
6487 /* SPECPARMS is an identifier list--a chain of TREE_LIST nodes
6488 each with a parm name as the TREE_VALUE. A null pointer as TREE_VALUE
6489 stands for an ellipsis in the identifier list.
6491 PARMLIST is the data returned by get_parm_info for the
6492 parmlist that follows the semicolon.
6494 We return a value of the same sort that get_parm_info returns,
6495 except that it describes the combination of identifiers and parmlist. */
6497 tree
6498 combine_parm_decls (specparms, parmlist, void_at_end)
6499 tree specparms, parmlist;
6500 int void_at_end;
6502 register tree fndecl = current_function_decl;
6503 register tree parm;
6505 tree parmdecls = TREE_PURPOSE (parmlist);
6507 /* This is a chain of any other decls that came in among the parm
6508 declarations. They were separated already by get_parm_info,
6509 so we just need to keep them separate. */
6510 tree nonparms = TREE_VALUE (parmlist);
6512 tree types = 0;
6514 for (parm = parmdecls; parm; parm = TREE_CHAIN (parm))
6515 DECL_WEAK (parm) = 0;
6517 for (parm = specparms; parm; parm = TREE_CHAIN (parm))
6519 register tree tail, found = NULL;
6521 /* See if any of the parmdecls specifies this parm by name. */
6522 for (tail = parmdecls; tail; tail = TREE_CHAIN (tail))
6523 if (DECL_NAME (tail) == TREE_VALUE (parm))
6525 found = tail;
6526 break;
6529 /* If declaration already marked, we have a duplicate name.
6530 Complain, and don't use this decl twice. */
6531 if (found && DECL_WEAK (found))
6533 error_with_decl (found, "multiple parameters named `%s'");
6534 found = 0;
6537 /* If the declaration says "void", complain and ignore it. */
6538 if (found && VOID_TYPE_P (TREE_TYPE (found)))
6540 error_with_decl (found, "parameter `%s' declared void");
6541 TREE_TYPE (found) = integer_type_node;
6542 DECL_ARG_TYPE (found) = integer_type_node;
6543 layout_decl (found, 0);
6546 /* Traditionally, a parm declared float is actually a double. */
6547 if (found && flag_traditional
6548 && TYPE_MAIN_VARIANT (TREE_TYPE (found)) == float_type_node)
6550 TREE_TYPE (found) = double_type_node;
6551 DECL_ARG_TYPE (found) = double_type_node;
6552 layout_decl (found, 0);
6555 /* If no declaration found, default to int. */
6556 if (!found)
6558 found = build_decl (PARM_DECL, TREE_VALUE (parm),
6559 integer_type_node);
6560 DECL_ARG_TYPE (found) = TREE_TYPE (found);
6561 DECL_SOURCE_LINE (found) = DECL_SOURCE_LINE (fndecl);
6562 DECL_SOURCE_FILE (found) = DECL_SOURCE_FILE (fndecl);
6563 error_with_decl (found, "type of parameter `%s' is not declared");
6564 pushdecl (found);
6567 TREE_PURPOSE (parm) = found;
6569 /* Mark this decl as "already found". */
6570 DECL_WEAK (found) = 1;
6573 /* Complain about any actual PARM_DECLs not matched with any names. */
6575 for (parm = parmdecls; parm;)
6577 tree next = TREE_CHAIN (parm);
6578 TREE_CHAIN (parm) = 0;
6580 /* Complain about args with incomplete types. */
6581 if (!COMPLETE_TYPE_P (TREE_TYPE (parm)))
6583 error_with_decl (parm, "parameter `%s' has incomplete type");
6584 TREE_TYPE (parm) = error_mark_node;
6587 if (! DECL_WEAK (parm))
6589 error_with_decl (parm,
6590 "declaration for parameter `%s' but no such parameter");
6591 /* Pretend the parameter was not missing.
6592 This gets us to a standard state and minimizes
6593 further error messages. */
6594 specparms
6595 = chainon (specparms,
6596 tree_cons (parm, NULL_TREE, NULL_TREE));
6599 parm = next;
6602 /* Chain the declarations together in the order of the list of names.
6603 At the same time, build up a list of their types, in reverse order. */
6605 parm = specparms;
6606 parmdecls = 0;
6608 register tree last;
6609 for (last = 0; parm; parm = TREE_CHAIN (parm))
6610 if (TREE_PURPOSE (parm))
6612 if (last == 0)
6613 parmdecls = TREE_PURPOSE (parm);
6614 else
6615 TREE_CHAIN (last) = TREE_PURPOSE (parm);
6616 last = TREE_PURPOSE (parm);
6617 TREE_CHAIN (last) = 0;
6619 types = tree_cons (NULL_TREE, TREE_TYPE (parm), types);
6623 if (void_at_end)
6624 return tree_cons (parmdecls, nonparms,
6625 nreverse (tree_cons (NULL_TREE, void_type_node, types)));
6627 return tree_cons (parmdecls, nonparms, nreverse (types));
6630 /* Finish up a function declaration and compile that function
6631 all the way to assembler language output. The free the storage
6632 for the function definition.
6634 This is called after parsing the body of the function definition.
6636 NESTED is nonzero if the function being finished is nested in another. */
6638 void
6639 finish_function (nested)
6640 int nested;
6642 register tree fndecl = current_function_decl;
6644 /* TREE_READONLY (fndecl) = 1;
6645 This caused &foo to be of type ptr-to-const-function
6646 which then got a warning when stored in a ptr-to-function variable. */
6648 poplevel (1, 0, 1);
6649 BLOCK_SUPERCONTEXT (DECL_INITIAL (fndecl)) = fndecl;
6651 /* Must mark the RESULT_DECL as being in this function. */
6653 DECL_CONTEXT (DECL_RESULT (fndecl)) = fndecl;
6655 /* Obey `register' declarations if `setjmp' is called in this fn. */
6656 if (flag_traditional && current_function_calls_setjmp)
6658 setjmp_protect (DECL_INITIAL (fndecl));
6659 setjmp_protect_args ();
6662 if (MAIN_NAME_P (DECL_NAME (fndecl)) && flag_hosted)
6664 if (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (fndecl)))
6665 != integer_type_node)
6667 /* If warn_main is 1 (-Wmain) or 2 (-Wall), we have already warned.
6668 If warn_main is -1 (-Wno-main) we don't want to be warned. */
6669 if (! warn_main)
6670 pedwarn_with_decl (fndecl, "return type of `%s' is not `int'");
6672 else
6674 #ifdef DEFAULT_MAIN_RETURN
6675 /* Make it so that `main' always returns success by default. */
6676 DEFAULT_MAIN_RETURN;
6677 #else
6678 if (flag_isoc99)
6679 c_expand_return (integer_zero_node);
6680 #endif
6684 /* Tie off the statement tree for this function. */
6685 finish_stmt_tree (&DECL_SAVED_TREE (fndecl));
6686 /* Clear out memory we no longer need. */
6687 free_after_parsing (cfun);
6688 /* Since we never call rest_of_compilation, we never clear
6689 CFUN. Do so explicitly. */
6690 free_after_compilation (cfun);
6691 cfun = NULL;
6693 if (! nested)
6695 /* Generate RTL for the body of this function. */
6696 c_expand_body (fndecl, nested);
6697 /* Let the error reporting routines know that we're outside a
6698 function. For a nested function, this value is used in
6699 pop_c_function_context and then reset via pop_function_context. */
6700 current_function_decl = NULL;
6701 c_function_name_declared_p = 0;
6705 /* Generate the RTL for the body of FNDECL. If NESTED_P is non-zero,
6706 then we are already in the process of generating RTL for another
6707 function. */
6709 static void
6710 c_expand_body (fndecl, nested_p)
6711 tree fndecl;
6712 int nested_p;
6714 /* There's no reason to do any of the work here if we're only doing
6715 semantic analysis; this code just generates RTL. */
6716 if (flag_syntax_only)
6717 return;
6719 if (nested_p)
6721 /* Make sure that we will evaluate variable-sized types involved
6722 in our function's type. */
6723 expand_pending_sizes (DECL_LANG_SPECIFIC (fndecl)->pending_sizes);
6724 /* Squirrel away our current state. */
6725 push_function_context ();
6728 /* Initialize the RTL code for the function. */
6729 current_function_decl = fndecl;
6730 init_function_start (fndecl, input_filename, DECL_SOURCE_LINE (fndecl));
6732 /* This function is being processed in whole-function mode. */
6733 cfun->x_whole_function_mode_p = 1;
6735 /* Even though we're inside a function body, we still don't want to
6736 call expand_expr to calculate the size of a variable-sized array.
6737 We haven't necessarily assigned RTL to all variables yet, so it's
6738 not safe to try to expand expressions involving them. */
6739 immediate_size_expand = 0;
6740 cfun->x_dont_save_pending_sizes_p = 1;
6742 /* If this is a varargs function, inform function.c. */
6743 if (c_function_varargs)
6744 mark_varargs ();
6746 /* Set up parameters and prepare for return, for the function. */
6747 expand_function_start (fndecl, 0);
6749 /* If this function is `main', emit a call to `__main'
6750 to run global initializers, etc. */
6751 if (DECL_NAME (fndecl)
6752 && MAIN_NAME_P (DECL_NAME (fndecl))
6753 && DECL_CONTEXT (fndecl) == NULL_TREE)
6754 expand_main_function ();
6756 /* Generate the RTL for this function. */
6757 expand_stmt (DECL_SAVED_TREE (fndecl));
6758 /* Allow the body of the function to be garbage collected. */
6759 DECL_SAVED_TREE (fndecl) = NULL_TREE;
6761 /* We hard-wired immediate_size_expand to zero above.
6762 expand_function_end will decrement this variable. So, we set the
6763 variable to one here, so that after the decrement it will remain
6764 zero. */
6765 immediate_size_expand = 1;
6767 /* Allow language dialects to perform special processing. */
6768 if (lang_expand_function_end)
6769 (*lang_expand_function_end) ();
6771 /* Generate rtl for function exit. */
6772 expand_function_end (input_filename, lineno, 0);
6774 /* If this is a nested function, protect the local variables in the stack
6775 above us from being collected while we're compiling this function. */
6776 if (nested_p)
6777 ggc_push_context ();
6779 /* Run the optimizers and output the assembler code for this function. */
6780 rest_of_compilation (fndecl);
6782 /* Undo the GC context switch. */
6783 if (nested_p)
6784 ggc_pop_context ();
6786 /* With just -W, complain only if function returns both with
6787 and without a value. */
6788 if (extra_warnings
6789 && current_function_returns_value
6790 && current_function_returns_null)
6791 warning ("this function may return with or without a value");
6793 /* If requested, warn about function definitions where the function will
6794 return a value (usually of some struct or union type) which itself will
6795 take up a lot of stack space. */
6797 if (warn_larger_than && !DECL_EXTERNAL (fndecl) && TREE_TYPE (fndecl))
6799 tree ret_type = TREE_TYPE (TREE_TYPE (fndecl));
6801 if (ret_type && TYPE_SIZE_UNIT (ret_type)
6802 && TREE_CODE (TYPE_SIZE_UNIT (ret_type)) == INTEGER_CST
6803 && 0 < compare_tree_int (TYPE_SIZE_UNIT (ret_type),
6804 larger_than_size))
6806 unsigned int size_as_int
6807 = TREE_INT_CST_LOW (TYPE_SIZE_UNIT (ret_type));
6809 if (compare_tree_int (TYPE_SIZE_UNIT (ret_type), size_as_int) == 0)
6810 warning_with_decl (fndecl,
6811 "size of return value of `%s' is %u bytes",
6812 size_as_int);
6813 else
6814 warning_with_decl (fndecl,
6815 "size of return value of `%s' is larger than %d bytes",
6816 larger_than_size);
6820 if (DECL_SAVED_INSNS (fndecl) == 0 && ! nested_p)
6822 /* Stop pointing to the local nodes about to be freed.
6823 But DECL_INITIAL must remain nonzero so we know this
6824 was an actual function definition.
6825 For a nested function, this is done in pop_c_function_context.
6826 If rest_of_compilation set this to 0, leave it 0. */
6827 if (DECL_INITIAL (fndecl) != 0)
6828 DECL_INITIAL (fndecl) = error_mark_node;
6830 DECL_ARGUMENTS (fndecl) = 0;
6833 if (DECL_STATIC_CONSTRUCTOR (fndecl))
6835 #ifndef ASM_OUTPUT_CONSTRUCTOR
6836 if (! flag_gnu_linker)
6837 static_ctors = tree_cons (NULL_TREE, fndecl, static_ctors);
6838 else
6839 #endif
6840 assemble_constructor (IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (fndecl)));
6843 if (DECL_STATIC_DESTRUCTOR (fndecl))
6845 #ifndef ASM_OUTPUT_DESTRUCTOR
6846 if (! flag_gnu_linker)
6847 static_dtors = tree_cons (NULL_TREE, fndecl, static_dtors);
6848 else
6849 #endif
6850 assemble_destructor (IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (fndecl)));
6853 if (nested_p)
6854 /* Return to the enclosing function. */
6855 pop_function_context ();
6858 /* Check the declarations given in a for-loop for satisfying the C99
6859 constraints. */
6860 void
6861 check_for_loop_decls ()
6863 tree t;
6865 if (!flag_isoc99)
6867 /* If we get here, declarations have been used in a for loop without
6868 the C99 for loop scope. This doesn't make much sense, so don't
6869 allow it. */
6870 error ("`for' loop initial declaration used outside C99 mode");
6871 return;
6873 /* C99 subclause 6.8.5 paragraph 3:
6875 [#3] The declaration part of a for statement shall only
6876 declare identifiers for objects having storage class auto or
6877 register.
6879 It isn't clear whether, in this sentence, "identifiers" binds to
6880 "shall only declare" or to "objects" - that is, whether all identifiers
6881 declared must be identifiers for objects, or whether the restriction
6882 only applies to those that are. (A question on this in comp.std.c
6883 in November 2000 received no answer.) We implement the strictest
6884 interpretation, to avoid creating an extension which later causes
6885 problems. */
6887 for (t = gettags (); t; t = TREE_CHAIN (t))
6889 if (TREE_PURPOSE (t) != 0)
6890 error ("`%s %s' declared in `for' loop initial declaration",
6891 (TREE_CODE (TREE_VALUE (t)) == RECORD_TYPE ? "struct"
6892 : TREE_CODE (TREE_VALUE (t)) == UNION_TYPE ? "union"
6893 : "enum"),
6894 IDENTIFIER_POINTER (TREE_PURPOSE (t)));
6896 for (t = getdecls (); t; t = TREE_CHAIN (t))
6898 if (TREE_CODE (t) != VAR_DECL && DECL_NAME (t))
6899 error_with_decl (t, "declaration of non-variable `%s' in `for' loop initial declaration");
6900 else if (TREE_STATIC (t))
6901 error_with_decl (t, "declaration of static variable `%s' in `for' loop initial declaration");
6902 else if (DECL_EXTERNAL (t))
6903 error_with_decl (t, "declaration of `extern' variable `%s' in `for' loop initial declaration");
6907 /* Save and restore the variables in this file and elsewhere
6908 that keep track of the progress of compilation of the current function.
6909 Used for nested functions. */
6911 struct c_language_function
6913 struct language_function base;
6914 tree named_labels;
6915 tree shadowed_labels;
6916 int returns_value;
6917 int returns_null;
6918 int warn_about_return_type;
6919 int extern_inline;
6920 struct binding_level *binding_level;
6923 /* Save and reinitialize the variables
6924 used during compilation of a C function. */
6926 void
6927 push_c_function_context (f)
6928 struct function *f;
6930 struct c_language_function *p;
6931 p = ((struct c_language_function *)
6932 xmalloc (sizeof (struct c_language_function)));
6933 f->language = (struct language_function *) p;
6935 p->base.x_stmt_tree = c_stmt_tree;
6936 p->base.x_scope_stmt_stack = c_scope_stmt_stack;
6937 p->base.x_function_name_declared_p = c_function_name_declared_p;
6938 p->named_labels = named_labels;
6939 p->shadowed_labels = shadowed_labels;
6940 p->returns_value = current_function_returns_value;
6941 p->returns_null = current_function_returns_null;
6942 p->warn_about_return_type = warn_about_return_type;
6943 p->extern_inline = current_extern_inline;
6944 p->binding_level = current_binding_level;
6947 /* Restore the variables used during compilation of a C function. */
6949 void
6950 pop_c_function_context (f)
6951 struct function *f;
6953 struct c_language_function *p
6954 = (struct c_language_function *) f->language;
6955 tree link;
6957 /* Bring back all the labels that were shadowed. */
6958 for (link = shadowed_labels; link; link = TREE_CHAIN (link))
6959 if (DECL_NAME (TREE_VALUE (link)) != 0)
6960 IDENTIFIER_LABEL_VALUE (DECL_NAME (TREE_VALUE (link)))
6961 = TREE_VALUE (link);
6963 if (DECL_SAVED_INSNS (current_function_decl) == 0
6964 && DECL_SAVED_TREE (current_function_decl) == NULL_TREE)
6966 /* Stop pointing to the local nodes about to be freed. */
6967 /* But DECL_INITIAL must remain nonzero so we know this
6968 was an actual function definition. */
6969 DECL_INITIAL (current_function_decl) = error_mark_node;
6970 DECL_ARGUMENTS (current_function_decl) = 0;
6973 c_stmt_tree = p->base.x_stmt_tree;
6974 c_scope_stmt_stack = p->base.x_scope_stmt_stack;
6975 c_function_name_declared_p = p->base.x_function_name_declared_p;
6976 named_labels = p->named_labels;
6977 shadowed_labels = p->shadowed_labels;
6978 current_function_returns_value = p->returns_value;
6979 current_function_returns_null = p->returns_null;
6980 warn_about_return_type = p->warn_about_return_type;
6981 current_extern_inline = p->extern_inline;
6982 current_binding_level = p->binding_level;
6984 free (p);
6985 f->language = 0;
6988 /* Mark the language specific parts of F for GC. */
6990 void
6991 mark_c_function_context (f)
6992 struct function *f;
6994 struct c_language_function *p
6995 = (struct c_language_function *) f->language;
6997 if (p == 0)
6998 return;
7000 mark_c_language_function (&p->base);
7001 ggc_mark_tree (p->shadowed_labels);
7002 ggc_mark_tree (p->named_labels);
7003 mark_binding_level (&p->binding_level);
7006 /* Copy the DECL_LANG_SEPECIFIC data associated with NODE. */
7008 void
7009 copy_lang_decl (decl)
7010 tree decl;
7012 struct lang_decl *ld;
7014 if (!DECL_LANG_SPECIFIC (decl))
7015 return;
7017 ld = (struct lang_decl *) ggc_alloc (sizeof (struct lang_decl));
7018 memcpy ((char *) ld, (char *) DECL_LANG_SPECIFIC (decl),
7019 sizeof (struct lang_decl));
7020 DECL_LANG_SPECIFIC (decl) = ld;
7023 /* Mark the language specific bits in T for GC. */
7025 void
7026 lang_mark_tree (t)
7027 tree t;
7029 if (TREE_CODE (t) == IDENTIFIER_NODE)
7031 struct lang_identifier *i = (struct lang_identifier *) t;
7032 ggc_mark_tree (i->global_value);
7033 ggc_mark_tree (i->local_value);
7034 ggc_mark_tree (i->label_value);
7035 ggc_mark_tree (i->implicit_decl);
7036 ggc_mark_tree (i->error_locus);
7037 ggc_mark_tree (i->limbo_value);
7039 else if (TYPE_P (t) && TYPE_LANG_SPECIFIC (t))
7040 ggc_mark (TYPE_LANG_SPECIFIC (t));
7041 else if (DECL_P (t) && DECL_LANG_SPECIFIC (t))
7043 ggc_mark (DECL_LANG_SPECIFIC (t));
7044 c_mark_lang_decl (&DECL_LANG_SPECIFIC (t)->base);
7045 ggc_mark_tree (DECL_LANG_SPECIFIC (t)->pending_sizes);
7049 /* The functions below are required for functionality of doing
7050 function at once processing in the C front end. Currently these
7051 functions are not called from anywhere in the C front end, but as
7052 these changes continue, that will change. */
7054 /* Returns non-zero if the current statement is a full expression,
7055 i.e. temporaries created during that statement should be destroyed
7056 at the end of the statement. */
7059 stmts_are_full_exprs_p ()
7061 return 0;
7064 /* Returns the stmt_tree (if any) to which statements are currently
7065 being added. If there is no active statement-tree, NULL is
7066 returned. */
7068 stmt_tree
7069 current_stmt_tree ()
7071 return &c_stmt_tree;
7074 /* Returns the stack of SCOPE_STMTs for the current function. */
7076 tree *
7077 current_scope_stmt_stack ()
7079 return &c_scope_stmt_stack;
7082 /* Nonzero if TYPE is an anonymous union or struct type. Always 0 in
7083 C. */
7086 anon_aggr_type_p (node)
7087 tree node ATTRIBUTE_UNUSED;
7089 return 0;
7092 /* Dummy function in place of callback used by C++. */
7094 void
7095 extract_interface_info ()
7099 /* Return a new COMPOUND_STMT, after adding it to the current
7100 statement tree. */
7102 tree
7103 c_begin_compound_stmt ()
7105 tree stmt;
7107 /* Create the COMPOUND_STMT. */
7108 stmt = add_stmt (build_stmt (COMPOUND_STMT, NULL_TREE));
7109 /* If we haven't already declared __FUNCTION__ and its ilk then this
7110 is the opening curly brace of the function. Declare them now. */
7111 if (!c_function_name_declared_p)
7113 c_function_name_declared_p = 1;
7114 declare_function_name ();
7117 return stmt;
7120 /* Expand T (a DECL_STMT) if it declares an entity not handled by the
7121 common code. */
7123 void
7124 c_expand_decl_stmt (t)
7125 tree t;
7127 tree decl = DECL_STMT_DECL (t);
7129 /* Expand nested functions. */
7130 if (TREE_CODE (decl) == FUNCTION_DECL
7131 && DECL_CONTEXT (decl) == current_function_decl
7132 && DECL_SAVED_TREE (decl))
7133 c_expand_body (decl, /*nested_p=*/1);
7136 /* Return the IDENTIFIER_GLOBAL_VALUE of T, for use in common code, since
7137 the definition of IDENTIFIER_GLOBAL_VALUE is different for C and C++. */
7139 tree
7140 identifier_global_value (t)
7141 tree t;
7143 return IDENTIFIER_GLOBAL_VALUE (t);
7146 /* Record a builtin type for C. If NAME is non-NULL, it is the name used;
7147 otherwise the name is found in ridpointers from RID_INDEX. */
7149 void
7150 record_builtin_type (rid_index, name, type)
7151 enum rid rid_index;
7152 const char *name;
7153 tree type;
7155 tree id;
7156 if (name == 0)
7157 id = ridpointers[(int) rid_index];
7158 else
7159 id = get_identifier (name);
7160 pushdecl (build_decl (TYPE_DECL, id, type));
7163 /* Build the void_list_node (void_type_node having been created). */
7164 tree
7165 build_void_list_node ()
7167 tree t = build_tree_list (NULL_TREE, void_type_node);
7168 return t;