* cfgloop.c (flow_loop_entry_edges_find): Fix typo.
[official-gcc.git] / gcc / c-decl.c
blob495425b2994a03a876c3c3c5cca53df57be98cbb
1 /* Process declarations and variables for C compiler.
2 Copyright (C) 1988, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
3 2001 Free Software Foundation, Inc.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2, or (at your option) any later
10 version.
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING. If not, write to the Free
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
20 02111-1307, USA. */
22 /* Process declarations and symbol lookup for C front end.
23 Also constructs types; the standard scalar types at initialization,
24 and structure, union, array and enum types when they are declared. */
26 /* ??? not all decl nodes are given the most useful possible
27 line numbers. For example, the CONST_DECLs for enum values. */
29 #include "config.h"
30 #include "system.h"
31 #include "intl.h"
32 #include "tree.h"
33 #include "tree-inline.h"
34 #include "rtl.h"
35 #include "flags.h"
36 #include "function.h"
37 #include "output.h"
38 #include "expr.h"
39 #include "c-tree.h"
40 #include "c-lex.h"
41 #include "toplev.h"
42 #include "ggc.h"
43 #include "tm_p.h"
44 #include "cpplib.h"
45 #include "target.h"
46 #include "debug.h"
47 #include "timevar.h"
48 #include "c-common.h"
50 /* In grokdeclarator, distinguish syntactic contexts of declarators. */
51 enum decl_context
52 { NORMAL, /* Ordinary declaration */
53 FUNCDEF, /* Function definition */
54 PARM, /* Declaration of parm before function body */
55 FIELD, /* Declaration inside struct or union */
56 BITFIELD, /* Likewise but with specified width */
57 TYPENAME}; /* Typename (inside cast or sizeof) */
60 /* Nonzero if we have seen an invalid cross reference
61 to a struct, union, or enum, but not yet printed the message. */
63 tree pending_invalid_xref;
64 /* File and line to appear in the eventual error message. */
65 const char *pending_invalid_xref_file;
66 int pending_invalid_xref_line;
68 /* While defining an enum type, this is 1 plus the last enumerator
69 constant value. Note that will do not have to save this or `enum_overflow'
70 around nested function definition since such a definition could only
71 occur in an enum value expression and we don't use these variables in
72 that case. */
74 static tree enum_next_value;
76 /* Nonzero means that there was overflow computing enum_next_value. */
78 static int enum_overflow;
80 /* Parsing a function declarator leaves a list of parameter names
81 or a chain or parameter decls here. */
83 static tree last_function_parms;
85 /* Parsing a function declarator leaves here a chain of structure
86 and enum types declared in the parmlist. */
88 static tree last_function_parm_tags;
90 /* After parsing the declarator that starts a function definition,
91 `start_function' puts here the list of parameter names or chain of decls.
92 `store_parm_decls' finds it here. */
94 static tree current_function_parms;
96 /* Similar, for last_function_parm_tags. */
97 static tree current_function_parm_tags;
99 /* Similar, for the file and line that the prototype came from if this is
100 an old-style definition. */
101 static const char *current_function_prototype_file;
102 static int current_function_prototype_line;
104 /* The current statement tree. */
106 static struct stmt_tree_s c_stmt_tree;
108 /* The current scope statement stack. */
110 static tree c_scope_stmt_stack;
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, int));
283 static void c_expand_body PARAMS ((tree, int, int));
284 static void warn_if_shadowing PARAMS ((tree, tree));
286 /* C-specific option variables. */
288 /* Nonzero means allow type mismatches in conditional expressions;
289 just make their values `void'. */
291 int flag_cond_mismatch;
293 /* Nonzero means don't recognize the keyword `asm'. */
295 int flag_no_asm;
297 /* Nonzero means do some things the same way PCC does. */
299 int flag_traditional;
301 /* Nonzero means enable C89 Amendment 1 features. */
303 int flag_isoc94 = 0;
305 /* Nonzero means use the ISO C99 dialect of C. */
307 int flag_isoc99 = 0;
309 /* Nonzero means that we have builtin functions, and main is an int */
311 int flag_hosted = 1;
313 /* Nonzero means add default format_arg attributes for functions not
314 in ISO C. */
316 int flag_noniso_default_format_attributes = 1;
318 /* Nonzero means to allow single precision math even if we're generally
319 being traditional. */
320 int flag_allow_single_precision = 0;
322 /* Nonzero means to treat bitfields as signed unless they say `unsigned'. */
324 int flag_signed_bitfields = 1;
325 int explicit_flag_signed_bitfields = 0;
327 /* Nonzero means warn about use of implicit int. */
329 int warn_implicit_int;
331 /* Nonzero means warn about usage of long long when `-pedantic'. */
333 int warn_long_long = 1;
335 /* Nonzero means message about use of implicit function declarations;
336 1 means warning; 2 means error. */
338 int mesg_implicit_function_declaration = -1;
340 /* Nonzero means give string constants the type `const char *'
341 to get extra warnings from them. These warnings will be too numerous
342 to be useful, except in thoroughly ANSIfied programs. */
344 int flag_const_strings;
346 /* Nonzero means warn about pointer casts that can drop a type qualifier
347 from the pointer target type. */
349 int warn_cast_qual;
351 /* Nonzero means warn when casting a function call to a type that does
352 not match the return type (e.g. (float)sqrt() or (anything*)malloc()
353 when there is no previous declaration of sqrt or malloc. */
355 int warn_bad_function_cast;
357 /* Warn about functions which might be candidates for format attributes. */
359 int warn_missing_format_attribute;
361 /* Warn about traditional constructs whose meanings changed in ANSI C. */
363 int warn_traditional;
365 /* Nonzero means warn about sizeof(function) or addition/subtraction
366 of function pointers. */
368 int warn_pointer_arith;
370 /* Nonzero means warn for non-prototype function decls
371 or non-prototyped defs without previous prototype. */
373 int warn_strict_prototypes;
375 /* Nonzero means warn for any global function def
376 without separate previous prototype decl. */
378 int warn_missing_prototypes;
380 /* Nonzero means warn for any global function def
381 without separate previous decl. */
383 int warn_missing_declarations;
385 /* Nonzero means warn about multiple (redundant) decls for the same single
386 variable or function. */
388 int warn_redundant_decls = 0;
390 /* Nonzero means warn about extern declarations of objects not at
391 file-scope level and about *all* declarations of functions (whether
392 extern or static) not at file-scope level. Note that we exclude
393 implicit function declarations. To get warnings about those, use
394 -Wimplicit. */
396 int warn_nested_externs = 0;
398 /* Warn about a subscript that has type char. */
400 int warn_char_subscripts = 0;
402 /* Warn if a type conversion is done that might have confusing results. */
404 int warn_conversion;
406 /* Warn if adding () is suggested. */
408 int warn_parentheses;
410 /* Warn if initializer is not completely bracketed. */
412 int warn_missing_braces;
414 /* Warn if main is suspicious. */
416 int warn_main;
418 /* Warn about #pragma directives that are not recognised. */
420 int warn_unknown_pragmas = 0; /* Tri state variable. */
422 /* Warn about comparison of signed and unsigned values.
423 If -1, neither -Wsign-compare nor -Wno-sign-compare has been specified. */
425 int warn_sign_compare = -1;
427 /* Warn about testing equality of floating point numbers. */
429 int warn_float_equal = 0;
431 /* Nonzero means warn about use of multicharacter literals. */
433 int warn_multichar = 1;
435 /* Nonzero means `$' can be in an identifier. */
437 #ifndef DOLLARS_IN_IDENTIFIERS
438 #define DOLLARS_IN_IDENTIFIERS 1
439 #endif
440 int dollars_in_ident = DOLLARS_IN_IDENTIFIERS;
442 /* Decode the string P as a language-specific option for C.
443 Return the number of strings consumed. Should not complain
444 if it does not recognise the option. */
447 c_decode_option (argc, argv)
448 int argc ATTRIBUTE_UNUSED;
449 char **argv;
451 int strings_processed;
452 char *p = argv[0];
454 strings_processed = cpp_handle_option (parse_in, argc, argv);
456 if (!strcmp (p, "-ftraditional") || !strcmp (p, "-traditional"))
458 warning ("-traditional is deprecated and may be removed");
459 flag_traditional = 1;
460 flag_writable_strings = 1;
462 else if (!strcmp (p, "-fallow-single-precision"))
463 flag_allow_single_precision = 1;
464 else if (!strcmp (p, "-fhosted") || !strcmp (p, "-fno-freestanding"))
466 flag_hosted = 1;
467 flag_no_builtin = 0;
469 else if (!strcmp (p, "-ffreestanding") || !strcmp (p, "-fno-hosted"))
471 flag_hosted = 0;
472 flag_no_builtin = 1;
473 /* warn_main will be 2 if set by -Wall, 1 if set by -Wmain */
474 if (warn_main == 2)
475 warn_main = 0;
477 else if (!strcmp (p, "-fnotraditional") || !strcmp (p, "-fno-traditional"))
479 flag_traditional = 0;
480 flag_writable_strings = 0;
482 else if (!strncmp (p, "-std=", 5))
484 /* Select the appropriate language standard. We currently
485 recognize:
486 -std=iso9899:1990 same as -ansi
487 -std=iso9899:199409 ISO C as modified in amend. 1
488 -std=iso9899:1999 ISO C 99
489 -std=c89 same as -std=iso9899:1990
490 -std=c99 same as -std=iso9899:1999
491 -std=gnu89 default, iso9899:1990 + gnu extensions
492 -std=gnu99 iso9899:1999 + gnu extensions
494 const char *const argstart = &p[5];
496 if (!strcmp (argstart, "iso9899:1990")
497 || !strcmp (argstart, "c89"))
499 iso_1990:
500 flag_isoc94 = 0;
501 iso_1994:
502 flag_traditional = 0;
503 flag_writable_strings = 0;
504 flag_no_asm = 1;
505 flag_no_nonansi_builtin = 1;
506 flag_noniso_default_format_attributes = 0;
507 flag_isoc99 = 0;
509 else if (!strcmp (argstart, "iso9899:199409"))
511 flag_isoc94 = 1;
512 goto iso_1994;
514 else if (!strcmp (argstart, "iso9899:199x")
515 || !strcmp (argstart, "iso9899:1999")
516 || !strcmp (argstart, "c9x")
517 || !strcmp (argstart, "c99"))
519 flag_traditional = 0;
520 flag_writable_strings = 0;
521 flag_no_asm = 1;
522 flag_no_nonansi_builtin = 1;
523 flag_noniso_default_format_attributes = 0;
524 flag_isoc99 = 1;
525 flag_isoc94 = 1;
527 else if (!strcmp (argstart, "gnu89"))
529 flag_traditional = 0;
530 flag_writable_strings = 0;
531 flag_no_asm = 0;
532 flag_no_nonansi_builtin = 0;
533 flag_noniso_default_format_attributes = 1;
534 flag_isoc99 = 0;
535 flag_isoc94 = 0;
537 else if (!strcmp (argstart, "gnu9x") || !strcmp (argstart, "gnu99"))
539 flag_traditional = 0;
540 flag_writable_strings = 0;
541 flag_no_asm = 0;
542 flag_no_nonansi_builtin = 0;
543 flag_noniso_default_format_attributes = 1;
544 flag_isoc99 = 1;
545 flag_isoc94 = 1;
547 else
548 error ("unknown C standard `%s'", argstart);
550 else if (!strcmp (p, "-fdollars-in-identifiers"))
551 dollars_in_ident = 1;
552 else if (!strcmp (p, "-fno-dollars-in-identifiers"))
553 dollars_in_ident = 0;
554 else if (!strcmp (p, "-fsigned-char"))
555 flag_signed_char = 1;
556 else if (!strcmp (p, "-funsigned-char"))
557 flag_signed_char = 0;
558 else if (!strcmp (p, "-fno-signed-char"))
559 flag_signed_char = 0;
560 else if (!strcmp (p, "-fno-unsigned-char"))
561 flag_signed_char = 1;
562 else if (!strcmp (p, "-fsigned-bitfields")
563 || !strcmp (p, "-fno-unsigned-bitfields"))
565 flag_signed_bitfields = 1;
566 explicit_flag_signed_bitfields = 1;
568 else if (!strcmp (p, "-funsigned-bitfields")
569 || !strcmp (p, "-fno-signed-bitfields"))
571 flag_signed_bitfields = 0;
572 explicit_flag_signed_bitfields = 1;
574 else if (!strcmp (p, "-fshort-enums"))
575 flag_short_enums = 1;
576 else if (!strcmp (p, "-fno-short-enums"))
577 flag_short_enums = 0;
578 else if (!strcmp (p, "-fshort-wchar"))
579 flag_short_wchar = 1;
580 else if (!strcmp (p, "-fno-short-wchar"))
581 flag_short_wchar = 0;
582 else if (!strcmp (p, "-fcond-mismatch"))
583 flag_cond_mismatch = 1;
584 else if (!strcmp (p, "-fno-cond-mismatch"))
585 flag_cond_mismatch = 0;
586 else if (!strcmp (p, "-fshort-double"))
587 flag_short_double = 1;
588 else if (!strcmp (p, "-fno-short-double"))
589 flag_short_double = 0;
590 else if (!strcmp (p, "-fasm"))
591 flag_no_asm = 0;
592 else if (!strcmp (p, "-fno-asm"))
593 flag_no_asm = 1;
594 else if (!strcmp (p, "-fbuiltin"))
595 flag_no_builtin = 0;
596 else if (!strcmp (p, "-fno-builtin"))
597 flag_no_builtin = 1;
598 else if (!strncmp (p, "-fno-builtin-", strlen ("-fno-builtin-")))
599 disable_builtin_function (p + strlen ("-fno-builtin-"));
600 else if (p[0] == '-' && p[1] == 'f' && dump_switch_p (p + 2))
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, "-Wdiv-by-zero"))
755 warn_div_by_zero = 1;
756 else if (!strcmp (p, "-Wno-div-by-zero"))
757 warn_div_by_zero = 0;
758 else if (!strcmp (p, "-Wunknown-pragmas"))
759 /* Set to greater than 1, so that even unknown pragmas in system
760 headers will be warned about. */
761 warn_unknown_pragmas = 2;
762 else if (!strcmp (p, "-Wno-unknown-pragmas"))
763 warn_unknown_pragmas = 0;
764 else if (!strcmp (p, "-Wall"))
766 /* We save the value of warn_uninitialized, since if they put
767 -Wuninitialized on the command line, we need to generate a
768 warning about not using it without also specifying -O. */
769 if (warn_uninitialized != 1)
770 warn_uninitialized = 2;
771 warn_implicit_int = 1;
772 mesg_implicit_function_declaration = 1;
773 warn_return_type = 1;
774 set_Wunused (1);
775 warn_switch = 1;
776 set_Wformat (1);
777 warn_char_subscripts = 1;
778 warn_parentheses = 1;
779 warn_sequence_point = 1;
780 warn_missing_braces = 1;
781 /* We set this to 2 here, but 1 in -Wmain, so -ffreestanding can turn
782 it off only if it's not explicit. */
783 warn_main = 2;
784 /* Only warn about unknown pragmas that are not in system headers. */
785 warn_unknown_pragmas = 1;
787 else
788 return strings_processed;
790 return 1;
793 void
794 c_print_identifier (file, node, indent)
795 FILE *file;
796 tree node;
797 int indent;
799 print_node (file, "global", IDENTIFIER_GLOBAL_VALUE (node), indent + 4);
800 print_node (file, "local", IDENTIFIER_LOCAL_VALUE (node), indent + 4);
801 print_node (file, "label", IDENTIFIER_LABEL_VALUE (node), indent + 4);
802 print_node (file, "implicit", IDENTIFIER_IMPLICIT_DECL (node), indent + 4);
803 print_node (file, "error locus", IDENTIFIER_ERROR_LOCUS (node), indent + 4);
804 print_node (file, "limbo value", IDENTIFIER_LIMBO_VALUE (node), indent + 4);
805 if (C_IS_RESERVED_WORD (node))
807 tree rid = ridpointers[C_RID_CODE (node)];
808 indent_to (file, indent + 4);
809 fprintf (file, "rid ");
810 fprintf (file, HOST_PTR_PRINTF, (void *)rid);
811 fprintf (file, " \"%s\"", IDENTIFIER_POINTER (rid));
815 /* Hook called at end of compilation to assume 1 elt
816 for a top-level tentative array defn that wasn't complete before. */
818 void
819 finish_incomplete_decl (decl)
820 tree decl;
822 if (TREE_CODE (decl) == VAR_DECL)
824 tree type = TREE_TYPE (decl);
825 if (type != error_mark_node
826 && TREE_CODE (type) == ARRAY_TYPE
827 && ! DECL_EXTERNAL (decl)
828 && TYPE_DOMAIN (type) == 0)
830 warning_with_decl (decl, "array `%s' assumed to have one element");
832 complete_array_type (type, NULL_TREE, 1);
834 layout_decl (decl, 0);
839 /* Create a new `struct binding_level'. */
841 static struct binding_level *
842 make_binding_level ()
844 /* NOSTRICT */
845 return (struct binding_level *) xmalloc (sizeof (struct binding_level));
848 /* Nonzero if we are currently in the global binding level. */
851 global_bindings_p ()
853 return current_binding_level == global_binding_level;
856 void
857 keep_next_level ()
859 keep_next_level_flag = 1;
862 /* Nonzero if the current level needs to have a BLOCK made. */
865 kept_level_p ()
867 return ((current_binding_level->keep_if_subblocks
868 && current_binding_level->blocks != 0)
869 || current_binding_level->keep
870 || current_binding_level->names != 0
871 || (current_binding_level->tags != 0
872 && !current_binding_level->tag_transparent));
875 /* Identify this binding level as a level of parameters.
876 DEFINITION_FLAG is 1 for a definition, 0 for a declaration.
877 But it turns out there is no way to pass the right value for
878 DEFINITION_FLAG, so we ignore it. */
880 void
881 declare_parm_level (definition_flag)
882 int definition_flag ATTRIBUTE_UNUSED;
884 current_binding_level->parm_flag = 1;
887 /* Nonzero if currently making parm declarations. */
890 in_parm_level_p ()
892 return current_binding_level->parm_flag;
895 /* Enter a new binding level.
896 If TAG_TRANSPARENT is nonzero, do so only for the name space of variables,
897 not for that of tags. */
899 void
900 pushlevel (tag_transparent)
901 int tag_transparent;
903 struct binding_level *newlevel = NULL_BINDING_LEVEL;
905 /* If this is the top level of a function,
906 just make sure that NAMED_LABELS is 0. */
908 if (current_binding_level == global_binding_level)
910 named_labels = 0;
913 /* Reuse or create a struct for this binding level. */
915 if (free_binding_level)
917 newlevel = free_binding_level;
918 free_binding_level = free_binding_level->level_chain;
920 else
922 newlevel = make_binding_level ();
925 /* Add this level to the front of the chain (stack) of levels that
926 are active. */
928 *newlevel = clear_binding_level;
929 newlevel->tag_transparent
930 = (tag_transparent
931 || (current_binding_level
932 ? current_binding_level->subblocks_tag_transparent
933 : 0));
934 newlevel->level_chain = current_binding_level;
935 current_binding_level = newlevel;
936 newlevel->keep = keep_next_level_flag;
937 keep_next_level_flag = 0;
938 newlevel->keep_if_subblocks = keep_next_if_subblocks;
939 keep_next_if_subblocks = 0;
942 /* Clear the limbo values of all identifiers defined in BLOCK or a subblock. */
944 static void
945 clear_limbo_values (block)
946 tree block;
948 tree tem;
950 for (tem = BLOCK_VARS (block); tem; tem = TREE_CHAIN (tem))
951 if (DECL_NAME (tem) != 0)
952 IDENTIFIER_LIMBO_VALUE (DECL_NAME (tem)) = 0;
954 for (tem = BLOCK_SUBBLOCKS (block); tem; tem = TREE_CHAIN (tem))
955 clear_limbo_values (tem);
958 /* Exit a binding level.
959 Pop the level off, and restore the state of the identifier-decl mappings
960 that were in effect when this level was entered.
962 If KEEP is nonzero, this level had explicit declarations, so
963 and create a "block" (a BLOCK node) for the level
964 to record its declarations and subblocks for symbol table output.
966 If FUNCTIONBODY is nonzero, this level is the body of a function,
967 so create a block as if KEEP were set and also clear out all
968 label names.
970 If REVERSE is nonzero, reverse the order of decls before putting
971 them into the BLOCK. */
973 tree
974 poplevel (keep, reverse, functionbody)
975 int keep;
976 int reverse;
977 int functionbody;
979 tree link;
980 /* The chain of decls was accumulated in reverse order.
981 Put it into forward order, just for cleanliness. */
982 tree decls;
983 tree tags = current_binding_level->tags;
984 tree subblocks = current_binding_level->blocks;
985 tree block = 0;
986 tree decl;
987 int block_previously_created;
989 keep |= current_binding_level->keep;
991 /* This warning is turned off because it causes warnings for
992 declarations like `extern struct foo *x'. */
993 #if 0
994 /* Warn about incomplete structure types in this level. */
995 for (link = tags; link; link = TREE_CHAIN (link))
996 if (!COMPLETE_TYPE_P (TREE_VALUE (link)))
998 tree type = TREE_VALUE (link);
999 tree type_name = TYPE_NAME (type);
1000 char *id = IDENTIFIER_POINTER (TREE_CODE (type_name) == IDENTIFIER_NODE
1001 ? type_name
1002 : DECL_NAME (type_name));
1003 switch (TREE_CODE (type))
1005 case RECORD_TYPE:
1006 error ("`struct %s' incomplete in scope ending here", id);
1007 break;
1008 case UNION_TYPE:
1009 error ("`union %s' incomplete in scope ending here", id);
1010 break;
1011 case ENUMERAL_TYPE:
1012 error ("`enum %s' incomplete in scope ending here", id);
1013 break;
1016 #endif /* 0 */
1018 /* Get the decls in the order they were written.
1019 Usually current_binding_level->names is in reverse order.
1020 But parameter decls were previously put in forward order. */
1022 if (reverse)
1023 current_binding_level->names
1024 = decls = nreverse (current_binding_level->names);
1025 else
1026 decls = current_binding_level->names;
1028 /* Output any nested inline functions within this block
1029 if they weren't already output. */
1031 for (decl = decls; decl; decl = TREE_CHAIN (decl))
1032 if (TREE_CODE (decl) == FUNCTION_DECL
1033 && ! TREE_ASM_WRITTEN (decl)
1034 && DECL_INITIAL (decl) != 0
1035 && TREE_ADDRESSABLE (decl))
1037 /* If this decl was copied from a file-scope decl
1038 on account of a block-scope extern decl,
1039 propagate TREE_ADDRESSABLE to the file-scope decl.
1041 DECL_ABSTRACT_ORIGIN can be set to itself if warn_return_type is
1042 true, since then the decl goes through save_for_inline_copying. */
1043 if (DECL_ABSTRACT_ORIGIN (decl) != 0
1044 && DECL_ABSTRACT_ORIGIN (decl) != decl)
1045 TREE_ADDRESSABLE (DECL_ABSTRACT_ORIGIN (decl)) = 1;
1048 /* We used to warn about unused variables in expand_end_bindings,
1049 i.e. while generating RTL. But in function-at-a-time mode we may
1050 choose to never expand a function at all (e.g. auto inlining), so
1051 we do this explicitly now. */
1052 warn_about_unused_variables (getdecls ());
1054 /* If there were any declarations or structure tags in that level,
1055 or if this level is a function body,
1056 create a BLOCK to record them for the life of this function. */
1058 block = 0;
1059 block_previously_created = (current_binding_level->this_block != 0);
1060 if (block_previously_created)
1061 block = current_binding_level->this_block;
1062 else if (keep || functionbody
1063 || (current_binding_level->keep_if_subblocks && subblocks != 0))
1064 block = make_node (BLOCK);
1065 if (block != 0)
1067 BLOCK_VARS (block) = decls;
1068 BLOCK_SUBBLOCKS (block) = subblocks;
1071 /* In each subblock, record that this is its superior. */
1073 for (link = subblocks; link; link = TREE_CHAIN (link))
1074 BLOCK_SUPERCONTEXT (link) = block;
1076 /* Clear out the meanings of the local variables of this level. */
1078 for (link = decls; link; link = TREE_CHAIN (link))
1080 if (DECL_NAME (link) != 0)
1082 /* If the ident. was used or addressed via a local extern decl,
1083 don't forget that fact. */
1084 if (DECL_EXTERNAL (link))
1086 if (TREE_USED (link))
1087 TREE_USED (DECL_NAME (link)) = 1;
1088 if (TREE_ADDRESSABLE (link))
1089 TREE_ADDRESSABLE (DECL_ASSEMBLER_NAME (link)) = 1;
1091 IDENTIFIER_LOCAL_VALUE (DECL_NAME (link)) = 0;
1095 /* Restore all name-meanings of the outer levels
1096 that were shadowed by this level. */
1098 for (link = current_binding_level->shadowed; link; link = TREE_CHAIN (link))
1099 IDENTIFIER_LOCAL_VALUE (TREE_PURPOSE (link)) = TREE_VALUE (link);
1101 /* If the level being exited is the top level of a function,
1102 check over all the labels, and clear out the current
1103 (function local) meanings of their names. */
1105 if (functionbody)
1107 clear_limbo_values (block);
1109 /* If this is the top level block of a function,
1110 the vars are the function's parameters.
1111 Don't leave them in the BLOCK because they are
1112 found in the FUNCTION_DECL instead. */
1114 BLOCK_VARS (block) = 0;
1116 /* Clear out the definitions of all label names,
1117 since their scopes end here,
1118 and add them to BLOCK_VARS. */
1120 for (link = named_labels; link; link = TREE_CHAIN (link))
1122 tree label = TREE_VALUE (link);
1124 if (DECL_INITIAL (label) == 0)
1126 error_with_decl (label, "label `%s' used but not defined");
1127 /* Avoid crashing later. */
1128 define_label (input_filename, lineno,
1129 DECL_NAME (label));
1131 else if (warn_unused_label && !TREE_USED (label))
1132 warning_with_decl (label, "label `%s' defined but not used");
1133 IDENTIFIER_LABEL_VALUE (DECL_NAME (label)) = 0;
1135 /* Put the labels into the "variables" of the
1136 top-level block, so debugger can see them. */
1137 TREE_CHAIN (label) = BLOCK_VARS (block);
1138 BLOCK_VARS (block) = label;
1142 /* Pop the current level, and free the structure for reuse. */
1145 struct binding_level *level = current_binding_level;
1146 current_binding_level = current_binding_level->level_chain;
1148 level->level_chain = free_binding_level;
1149 free_binding_level = level;
1152 /* Dispose of the block that we just made inside some higher level. */
1153 if (functionbody)
1154 DECL_INITIAL (current_function_decl) = block;
1155 else if (block)
1157 if (!block_previously_created)
1158 current_binding_level->blocks
1159 = chainon (current_binding_level->blocks, block);
1161 /* If we did not make a block for the level just exited,
1162 any blocks made for inner levels
1163 (since they cannot be recorded as subblocks in that level)
1164 must be carried forward so they will later become subblocks
1165 of something else. */
1166 else if (subblocks)
1167 current_binding_level->blocks
1168 = chainon (current_binding_level->blocks, subblocks);
1170 /* Set the TYPE_CONTEXTs for all of the tagged types belonging to this
1171 binding contour so that they point to the appropriate construct, i.e.
1172 either to the current FUNCTION_DECL node, or else to the BLOCK node
1173 we just constructed.
1175 Note that for tagged types whose scope is just the formal parameter
1176 list for some function type specification, we can't properly set
1177 their TYPE_CONTEXTs here, because we don't have a pointer to the
1178 appropriate FUNCTION_TYPE node readily available to us. For those
1179 cases, the TYPE_CONTEXTs of the relevant tagged type nodes get set
1180 in `grokdeclarator' as soon as we have created the FUNCTION_TYPE
1181 node which will represent the "scope" for these "parameter list local"
1182 tagged types. */
1184 if (functionbody)
1185 for (link = tags; link; link = TREE_CHAIN (link))
1186 TYPE_CONTEXT (TREE_VALUE (link)) = current_function_decl;
1187 else if (block)
1188 for (link = tags; link; link = TREE_CHAIN (link))
1189 TYPE_CONTEXT (TREE_VALUE (link)) = block;
1191 if (block)
1192 TREE_USED (block) = 1;
1194 return block;
1197 /* Insert BLOCK at the end of the list of subblocks of the
1198 current binding level. This is used when a BIND_EXPR is expanded,
1199 to handle the BLOCK node inside the BIND_EXPR. */
1201 void
1202 insert_block (block)
1203 tree block;
1205 TREE_USED (block) = 1;
1206 current_binding_level->blocks
1207 = chainon (current_binding_level->blocks, block);
1210 /* Set the BLOCK node for the innermost scope
1211 (the one we are currently in). */
1213 void
1214 set_block (block)
1215 tree block;
1217 current_binding_level->this_block = block;
1218 current_binding_level->names = chainon (current_binding_level->names,
1219 BLOCK_VARS (block));
1220 current_binding_level->blocks = chainon (current_binding_level->blocks,
1221 BLOCK_SUBBLOCKS (block));
1224 void
1225 push_label_level ()
1227 struct binding_level *newlevel;
1229 /* Reuse or create a struct for this binding level. */
1231 if (free_binding_level)
1233 newlevel = free_binding_level;
1234 free_binding_level = free_binding_level->level_chain;
1236 else
1238 newlevel = make_binding_level ();
1241 /* Add this level to the front of the chain (stack) of label levels. */
1243 newlevel->level_chain = label_level_chain;
1244 label_level_chain = newlevel;
1246 newlevel->names = named_labels;
1247 newlevel->shadowed = shadowed_labels;
1248 named_labels = 0;
1249 shadowed_labels = 0;
1252 void
1253 pop_label_level ()
1255 struct binding_level *level = label_level_chain;
1256 tree link, prev;
1258 /* Clear out the definitions of the declared labels in this level.
1259 Leave in the list any ordinary, non-declared labels. */
1260 for (link = named_labels, prev = 0; link;)
1262 if (C_DECLARED_LABEL_FLAG (TREE_VALUE (link)))
1264 if (DECL_SOURCE_LINE (TREE_VALUE (link)) == 0)
1266 error_with_decl (TREE_VALUE (link),
1267 "label `%s' used but not defined");
1268 /* Avoid crashing later. */
1269 define_label (input_filename, lineno,
1270 DECL_NAME (TREE_VALUE (link)));
1272 else if (warn_unused_label && !TREE_USED (TREE_VALUE (link)))
1273 warning_with_decl (TREE_VALUE (link),
1274 "label `%s' defined but not used");
1275 IDENTIFIER_LABEL_VALUE (DECL_NAME (TREE_VALUE (link))) = 0;
1277 /* Delete this element from the list. */
1278 link = TREE_CHAIN (link);
1279 if (prev)
1280 TREE_CHAIN (prev) = link;
1281 else
1282 named_labels = link;
1284 else
1286 prev = link;
1287 link = TREE_CHAIN (link);
1291 /* Bring back all the labels that were shadowed. */
1292 for (link = shadowed_labels; link; link = TREE_CHAIN (link))
1293 if (DECL_NAME (TREE_VALUE (link)) != 0)
1294 IDENTIFIER_LABEL_VALUE (DECL_NAME (TREE_VALUE (link)))
1295 = TREE_VALUE (link);
1297 named_labels = chainon (named_labels, level->names);
1298 shadowed_labels = level->shadowed;
1300 /* Pop the current level, and free the structure for reuse. */
1301 label_level_chain = label_level_chain->level_chain;
1302 level->level_chain = free_binding_level;
1303 free_binding_level = level;
1306 /* Push a definition or a declaration of struct, union or enum tag "name".
1307 "type" should be the type node.
1308 We assume that the tag "name" is not already defined.
1310 Note that the definition may really be just a forward reference.
1311 In that case, the TYPE_SIZE will be zero. */
1313 void
1314 pushtag (name, type)
1315 tree name, type;
1317 struct binding_level *b;
1319 /* Find the proper binding level for this type tag. */
1321 for (b = current_binding_level; b->tag_transparent; b = b->level_chain)
1322 continue;
1324 if (name)
1326 /* Record the identifier as the type's name if it has none. */
1328 if (TYPE_NAME (type) == 0)
1329 TYPE_NAME (type) = name;
1332 b->tags = tree_cons (name, type, b->tags);
1334 /* Create a fake NULL-named TYPE_DECL node whose TREE_TYPE will be the
1335 tagged type we just added to the current binding level. This fake
1336 NULL-named TYPE_DECL node helps dwarfout.c to know when it needs
1337 to output a representation of a tagged type, and it also gives
1338 us a convenient place to record the "scope start" address for the
1339 tagged type. */
1341 TYPE_STUB_DECL (type) = pushdecl (build_decl (TYPE_DECL, NULL_TREE, type));
1343 /* An approximation for now, so we can tell this is a function-scope tag.
1344 This will be updated in poplevel. */
1345 TYPE_CONTEXT (type) = DECL_CONTEXT (TYPE_STUB_DECL (type));
1348 /* Handle when a new declaration NEWDECL
1349 has the same name as an old one OLDDECL
1350 in the same binding contour.
1351 Prints an error message if appropriate.
1353 If safely possible, alter OLDDECL to look like NEWDECL, and return 1.
1354 Otherwise, return 0.
1356 When DIFFERENT_BINDING_LEVEL is true, NEWDECL is an external declaration,
1357 and OLDDECL is in an outer binding level and should thus not be changed. */
1359 static int
1360 duplicate_decls (newdecl, olddecl, different_binding_level)
1361 tree newdecl, olddecl;
1362 int different_binding_level;
1364 int types_match = comptypes (TREE_TYPE (newdecl), TREE_TYPE (olddecl));
1365 int new_is_definition = (TREE_CODE (newdecl) == FUNCTION_DECL
1366 && DECL_INITIAL (newdecl) != 0);
1367 tree oldtype = TREE_TYPE (olddecl);
1368 tree newtype = TREE_TYPE (newdecl);
1369 int errmsg = 0;
1371 if (DECL_P (olddecl))
1373 if (TREE_CODE (newdecl) == FUNCTION_DECL
1374 && TREE_CODE (olddecl) == FUNCTION_DECL
1375 && (DECL_UNINLINABLE (newdecl) || DECL_UNINLINABLE (olddecl)))
1377 if (DECL_DECLARED_INLINE_P (newdecl)
1378 && DECL_UNINLINABLE (newdecl)
1379 && lookup_attribute ("noinline", DECL_ATTRIBUTES (newdecl)))
1380 /* Already warned elsewhere. */;
1381 else if (DECL_DECLARED_INLINE_P (olddecl)
1382 && DECL_UNINLINABLE (olddecl)
1383 && lookup_attribute ("noinline", DECL_ATTRIBUTES (olddecl)))
1384 /* Already warned. */;
1385 else if (DECL_DECLARED_INLINE_P (newdecl)
1386 && ! DECL_DECLARED_INLINE_P (olddecl)
1387 && DECL_UNINLINABLE (olddecl)
1388 && lookup_attribute ("noinline", DECL_ATTRIBUTES (olddecl)))
1390 warning_with_decl (newdecl,
1391 "function `%s' redeclared as inline");
1392 warning_with_decl (olddecl,
1393 "previous declaration of function `%s' with attribute noinline");
1395 else if (DECL_DECLARED_INLINE_P (olddecl)
1396 && DECL_UNINLINABLE (newdecl)
1397 && lookup_attribute ("noinline", DECL_ATTRIBUTES (newdecl)))
1399 warning_with_decl (newdecl,
1400 "function `%s' redeclared with attribute noinline");
1401 warning_with_decl (olddecl,
1402 "previous declaration of function `%s' was inline");
1406 DECL_ATTRIBUTES (newdecl)
1407 = (*targetm.merge_decl_attributes) (olddecl, newdecl);
1410 if (TREE_CODE (newtype) == ERROR_MARK
1411 || TREE_CODE (oldtype) == ERROR_MARK)
1412 types_match = 0;
1414 /* New decl is completely inconsistent with the old one =>
1415 tell caller to replace the old one.
1416 This is always an error except in the case of shadowing a builtin. */
1417 if (TREE_CODE (olddecl) != TREE_CODE (newdecl))
1419 if (TREE_CODE (olddecl) == FUNCTION_DECL
1420 && (DECL_BUILT_IN (olddecl)
1421 || DECL_BUILT_IN_NONANSI (olddecl)))
1423 /* If you declare a built-in or predefined function name as static,
1424 the old definition is overridden,
1425 but optionally warn this was a bad choice of name. */
1426 if (!TREE_PUBLIC (newdecl))
1428 if (!warn_shadow)
1430 else if (DECL_BUILT_IN (olddecl))
1431 warning_with_decl (newdecl, "shadowing built-in function `%s'");
1432 else
1433 warning_with_decl (newdecl, "shadowing library function `%s'");
1435 /* Likewise, if the built-in is not ansi, then programs can
1436 override it even globally without an error. */
1437 else if (! DECL_BUILT_IN (olddecl))
1438 warning_with_decl (newdecl,
1439 "library function `%s' declared as non-function");
1441 else if (DECL_BUILT_IN_NONANSI (olddecl))
1442 warning_with_decl (newdecl,
1443 "built-in function `%s' declared as non-function");
1444 else
1445 warning_with_decl (newdecl,
1446 "built-in function `%s' declared as non-function");
1448 else
1450 error_with_decl (newdecl, "`%s' redeclared as different kind of symbol");
1451 error_with_decl (olddecl, "previous declaration of `%s'");
1454 return 0;
1457 /* For real parm decl following a forward decl,
1458 return 1 so old decl will be reused. */
1459 if (types_match && TREE_CODE (newdecl) == PARM_DECL
1460 && TREE_ASM_WRITTEN (olddecl) && ! TREE_ASM_WRITTEN (newdecl))
1461 return 1;
1463 /* The new declaration is the same kind of object as the old one.
1464 The declarations may partially match. Print warnings if they don't
1465 match enough. Ultimately, copy most of the information from the new
1466 decl to the old one, and keep using the old one. */
1468 if (flag_traditional && TREE_CODE (newdecl) == FUNCTION_DECL
1469 && IDENTIFIER_IMPLICIT_DECL (DECL_NAME (newdecl)) == olddecl
1470 && DECL_INITIAL (olddecl) == 0)
1471 /* If -traditional, avoid error for redeclaring fcn
1472 after implicit decl. */
1474 else if (TREE_CODE (olddecl) == FUNCTION_DECL
1475 && DECL_BUILT_IN (olddecl))
1477 /* A function declaration for a built-in function. */
1478 if (!TREE_PUBLIC (newdecl))
1480 /* If you declare a built-in function name as static, the
1481 built-in definition is overridden,
1482 but optionally warn this was a bad choice of name. */
1483 if (warn_shadow)
1484 warning_with_decl (newdecl, "shadowing built-in function `%s'");
1485 /* Discard the old built-in function. */
1486 return 0;
1488 else if (!types_match)
1490 /* Accept the return type of the new declaration if same modes. */
1491 tree oldreturntype = TREE_TYPE (oldtype);
1492 tree newreturntype = TREE_TYPE (newtype);
1494 if (TYPE_MODE (oldreturntype) == TYPE_MODE (newreturntype))
1496 /* Function types may be shared, so we can't just modify
1497 the return type of olddecl's function type. */
1498 tree trytype
1499 = build_function_type (newreturntype,
1500 TYPE_ARG_TYPES (oldtype));
1501 trytype = build_type_attribute_variant (trytype,
1502 TYPE_ATTRIBUTES (oldtype));
1504 types_match = comptypes (newtype, trytype);
1505 if (types_match)
1506 oldtype = trytype;
1508 /* Accept harmless mismatch in first argument type also.
1509 This is for the ffs and fprintf builtins. */
1510 if (TYPE_ARG_TYPES (TREE_TYPE (newdecl)) != 0
1511 && TYPE_ARG_TYPES (oldtype) != 0
1512 && TREE_VALUE (TYPE_ARG_TYPES (newtype)) != 0
1513 && TREE_VALUE (TYPE_ARG_TYPES (oldtype)) != 0
1514 && (TYPE_MODE (TREE_VALUE (TYPE_ARG_TYPES (newtype)))
1515 == TYPE_MODE (TREE_VALUE (TYPE_ARG_TYPES (oldtype)))))
1517 /* Function types may be shared, so we can't just modify
1518 the return type of olddecl's function type. */
1519 tree trytype
1520 = build_function_type (TREE_TYPE (oldtype),
1521 tree_cons (NULL_TREE,
1522 TREE_VALUE (TYPE_ARG_TYPES (newtype)),
1523 TREE_CHAIN (TYPE_ARG_TYPES (oldtype))));
1524 trytype = build_type_attribute_variant (trytype,
1525 TYPE_ATTRIBUTES (oldtype));
1527 types_match = comptypes (newtype, trytype);
1528 if (types_match)
1529 oldtype = trytype;
1531 if (! different_binding_level)
1532 TREE_TYPE (olddecl) = oldtype;
1534 if (!types_match)
1536 /* If types don't match for a built-in, throw away the built-in. */
1537 warning_with_decl (newdecl, "conflicting types for built-in function `%s'");
1538 return 0;
1541 else if (TREE_CODE (olddecl) == FUNCTION_DECL
1542 && DECL_SOURCE_LINE (olddecl) == 0)
1544 /* A function declaration for a predeclared function
1545 that isn't actually built in. */
1546 if (!TREE_PUBLIC (newdecl))
1548 /* If you declare it as static, the
1549 default definition is overridden. */
1550 return 0;
1552 else if (!types_match)
1554 /* If the types don't match, preserve volatility indication.
1555 Later on, we will discard everything else about the
1556 default declaration. */
1557 TREE_THIS_VOLATILE (newdecl) |= TREE_THIS_VOLATILE (olddecl);
1560 /* Permit char *foo () to match void *foo (...) if not pedantic,
1561 if one of them came from a system header file. */
1562 else if (!types_match
1563 && TREE_CODE (olddecl) == FUNCTION_DECL
1564 && TREE_CODE (newdecl) == FUNCTION_DECL
1565 && TREE_CODE (TREE_TYPE (oldtype)) == POINTER_TYPE
1566 && TREE_CODE (TREE_TYPE (newtype)) == POINTER_TYPE
1567 && (DECL_IN_SYSTEM_HEADER (olddecl)
1568 || DECL_IN_SYSTEM_HEADER (newdecl))
1569 && ((TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (newtype))) == void_type_node
1570 && TYPE_ARG_TYPES (oldtype) == 0
1571 && self_promoting_args_p (TYPE_ARG_TYPES (newtype))
1572 && TREE_TYPE (TREE_TYPE (oldtype)) == char_type_node)
1574 (TREE_TYPE (TREE_TYPE (newtype)) == char_type_node
1575 && TYPE_ARG_TYPES (newtype) == 0
1576 && self_promoting_args_p (TYPE_ARG_TYPES (oldtype))
1577 && TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (oldtype))) == void_type_node)))
1579 if (pedantic)
1580 pedwarn_with_decl (newdecl, "conflicting types for `%s'");
1581 /* Make sure we keep void * as ret type, not char *. */
1582 if (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (oldtype))) == void_type_node)
1583 TREE_TYPE (newdecl) = newtype = oldtype;
1585 /* Set DECL_IN_SYSTEM_HEADER, so that if we see another declaration
1586 we will come back here again. */
1587 DECL_IN_SYSTEM_HEADER (newdecl) = 1;
1589 else if (!types_match
1590 /* Permit char *foo (int, ...); followed by char *foo ();
1591 if not pedantic. */
1592 && ! (TREE_CODE (olddecl) == FUNCTION_DECL
1593 && ! pedantic
1594 /* Return types must still match. */
1595 && comptypes (TREE_TYPE (oldtype),
1596 TREE_TYPE (newtype))
1597 && TYPE_ARG_TYPES (newtype) == 0))
1599 error_with_decl (newdecl, "conflicting types for `%s'");
1600 /* Check for function type mismatch
1601 involving an empty arglist vs a nonempty one. */
1602 if (TREE_CODE (olddecl) == FUNCTION_DECL
1603 && comptypes (TREE_TYPE (oldtype),
1604 TREE_TYPE (newtype))
1605 && ((TYPE_ARG_TYPES (oldtype) == 0
1606 && DECL_INITIAL (olddecl) == 0)
1608 (TYPE_ARG_TYPES (newtype) == 0
1609 && DECL_INITIAL (newdecl) == 0)))
1611 /* Classify the problem further. */
1612 tree t = TYPE_ARG_TYPES (oldtype);
1613 if (t == 0)
1614 t = TYPE_ARG_TYPES (newtype);
1615 for (; t; t = TREE_CHAIN (t))
1617 tree type = TREE_VALUE (t);
1619 if (TREE_CHAIN (t) == 0
1620 && TYPE_MAIN_VARIANT (type) != void_type_node)
1622 error ("a parameter list with an ellipsis can't match an empty parameter name list declaration");
1623 break;
1626 if (simple_type_promotes_to (type) != NULL_TREE)
1628 error ("an argument type that has a default promotion can't match an empty parameter name list declaration");
1629 break;
1633 error_with_decl (olddecl, "previous declaration of `%s'");
1635 else
1637 errmsg = redeclaration_error_message (newdecl, olddecl);
1638 if (errmsg)
1640 switch (errmsg)
1642 case 1:
1643 error_with_decl (newdecl, "redefinition of `%s'");
1644 break;
1645 case 2:
1646 error_with_decl (newdecl, "redeclaration of `%s'");
1647 break;
1648 case 3:
1649 error_with_decl (newdecl, "conflicting declarations of `%s'");
1650 break;
1651 default:
1652 abort ();
1655 error_with_decl (olddecl,
1656 ((DECL_INITIAL (olddecl)
1657 && current_binding_level == global_binding_level)
1658 ? "`%s' previously defined here"
1659 : "`%s' previously declared here"));
1661 else if (TREE_CODE (newdecl) == TYPE_DECL
1662 && (DECL_IN_SYSTEM_HEADER (olddecl)
1663 || DECL_IN_SYSTEM_HEADER (newdecl)))
1665 warning_with_decl (newdecl, "redefinition of `%s'");
1666 warning_with_decl
1667 (olddecl,
1668 ((DECL_INITIAL (olddecl)
1669 && current_binding_level == global_binding_level)
1670 ? "`%s' previously defined here"
1671 : "`%s' previously declared here"));
1673 else if (TREE_CODE (olddecl) == FUNCTION_DECL
1674 && DECL_INITIAL (olddecl) != 0
1675 && TYPE_ARG_TYPES (oldtype) == 0
1676 && TYPE_ARG_TYPES (newtype) != 0
1677 && TYPE_ACTUAL_ARG_TYPES (oldtype) != 0)
1679 tree type, parm;
1680 int nargs;
1681 /* Prototype decl follows defn w/o prototype. */
1683 for (parm = TYPE_ACTUAL_ARG_TYPES (oldtype),
1684 type = TYPE_ARG_TYPES (newtype),
1685 nargs = 1;
1687 parm = TREE_CHAIN (parm), type = TREE_CHAIN (type), nargs++)
1689 if (TYPE_MAIN_VARIANT (TREE_VALUE (parm)) == void_type_node
1690 && TYPE_MAIN_VARIANT (TREE_VALUE (type)) == void_type_node)
1692 warning_with_decl (newdecl, "prototype for `%s' follows");
1693 warning_with_decl (olddecl, "non-prototype definition here");
1694 break;
1696 if (TYPE_MAIN_VARIANT (TREE_VALUE (parm)) == void_type_node
1697 || TYPE_MAIN_VARIANT (TREE_VALUE (type)) == void_type_node)
1699 error_with_decl (newdecl,
1700 "prototype for `%s' follows and number of arguments doesn't match");
1701 error_with_decl (olddecl, "non-prototype definition here");
1702 errmsg = 1;
1703 break;
1705 /* Type for passing arg must be consistent
1706 with that declared for the arg. */
1707 if (! comptypes (TREE_VALUE (parm), TREE_VALUE (type))
1708 /* If -traditional, allow `unsigned int' instead of `int'
1709 in the prototype. */
1710 && (! (flag_traditional
1711 && TYPE_MAIN_VARIANT (TREE_VALUE (parm)) == integer_type_node
1712 && TYPE_MAIN_VARIANT (TREE_VALUE (type)) == unsigned_type_node)))
1714 error_with_decl (newdecl,
1715 "prototype for `%s' follows and argument %d doesn't match",
1716 nargs);
1717 error_with_decl (olddecl, "non-prototype definition here");
1718 errmsg = 1;
1719 break;
1723 /* Warn about mismatches in various flags. */
1724 else
1726 /* Warn if function is now inline
1727 but was previously declared not inline and has been called. */
1728 if (TREE_CODE (olddecl) == FUNCTION_DECL
1729 && ! DECL_DECLARED_INLINE_P (olddecl)
1730 && DECL_DECLARED_INLINE_P (newdecl)
1731 && TREE_USED (olddecl))
1732 warning_with_decl (newdecl,
1733 "`%s' declared inline after being called");
1734 if (TREE_CODE (olddecl) == FUNCTION_DECL
1735 && ! DECL_DECLARED_INLINE_P (olddecl)
1736 && DECL_DECLARED_INLINE_P (newdecl)
1737 && DECL_INITIAL (olddecl) != 0)
1738 warning_with_decl (newdecl,
1739 "`%s' declared inline after its definition");
1741 /* If pedantic, warn when static declaration follows a non-static
1742 declaration. Otherwise, do so only for functions. */
1743 if ((pedantic || TREE_CODE (olddecl) == FUNCTION_DECL)
1744 && TREE_PUBLIC (olddecl)
1745 && !TREE_PUBLIC (newdecl))
1746 warning_with_decl (newdecl, "static declaration for `%s' follows non-static");
1748 /* If warn_traditional, warn when a non-static function
1749 declaration follows a static one. */
1750 if (warn_traditional && !in_system_header
1751 && TREE_CODE (olddecl) == FUNCTION_DECL
1752 && !TREE_PUBLIC (olddecl)
1753 && TREE_PUBLIC (newdecl))
1754 warning_with_decl (newdecl, "non-static declaration for `%s' follows static");
1756 /* Warn when const declaration follows a non-const
1757 declaration, but not for functions. */
1758 if (TREE_CODE (olddecl) != FUNCTION_DECL
1759 && !TREE_READONLY (olddecl)
1760 && TREE_READONLY (newdecl))
1761 warning_with_decl (newdecl, "const declaration for `%s' follows non-const");
1762 /* These bits are logically part of the type, for variables.
1763 But not for functions
1764 (where qualifiers are not valid ANSI anyway). */
1765 else if (pedantic && TREE_CODE (olddecl) != FUNCTION_DECL
1766 && (TREE_READONLY (newdecl) != TREE_READONLY (olddecl)
1767 || TREE_THIS_VOLATILE (newdecl) != TREE_THIS_VOLATILE (olddecl)))
1768 pedwarn_with_decl (newdecl, "type qualifiers for `%s' conflict with previous decl");
1772 /* Optionally warn about more than one declaration for the same name. */
1773 if (errmsg == 0 && warn_redundant_decls && DECL_SOURCE_LINE (olddecl) != 0
1774 /* Don't warn about a function declaration
1775 followed by a definition. */
1776 && !(TREE_CODE (newdecl) == FUNCTION_DECL && DECL_INITIAL (newdecl) != 0
1777 && DECL_INITIAL (olddecl) == 0)
1778 /* Don't warn about extern decl followed by (tentative) definition. */
1779 && !(DECL_EXTERNAL (olddecl) && ! DECL_EXTERNAL (newdecl)))
1781 warning_with_decl (newdecl, "redundant redeclaration of `%s' in same scope");
1782 warning_with_decl (olddecl, "previous declaration of `%s'");
1785 /* Copy all the DECL_... slots specified in the new decl
1786 except for any that we copy here from the old type.
1788 Past this point, we don't change OLDTYPE and NEWTYPE
1789 even if we change the types of NEWDECL and OLDDECL. */
1791 if (types_match)
1793 /* When copying info to olddecl, we store into write_olddecl
1794 instead. This allows us to avoid modifying olddecl when
1795 different_binding_level is true. */
1796 tree write_olddecl = different_binding_level ? newdecl : olddecl;
1798 /* Merge the data types specified in the two decls. */
1799 if (TREE_CODE (newdecl) != FUNCTION_DECL || !DECL_BUILT_IN (olddecl))
1801 if (different_binding_level)
1803 if (TYPE_ARG_TYPES (oldtype) != 0
1804 && TYPE_ARG_TYPES (newtype) == 0)
1805 TREE_TYPE (newdecl) = common_type (newtype, oldtype);
1806 else
1807 TREE_TYPE (newdecl)
1808 = build_type_attribute_variant
1809 (newtype,
1810 merge_attributes (TYPE_ATTRIBUTES (newtype),
1811 TYPE_ATTRIBUTES (oldtype)));
1813 else
1814 TREE_TYPE (newdecl)
1815 = TREE_TYPE (olddecl)
1816 = common_type (newtype, oldtype);
1819 /* Lay the type out, unless already done. */
1820 if (oldtype != TREE_TYPE (newdecl))
1822 if (TREE_TYPE (newdecl) != error_mark_node)
1823 layout_type (TREE_TYPE (newdecl));
1824 if (TREE_CODE (newdecl) != FUNCTION_DECL
1825 && TREE_CODE (newdecl) != TYPE_DECL
1826 && TREE_CODE (newdecl) != CONST_DECL)
1827 layout_decl (newdecl, 0);
1829 else
1831 /* Since the type is OLDDECL's, make OLDDECL's size go with. */
1832 DECL_SIZE (newdecl) = DECL_SIZE (olddecl);
1833 DECL_SIZE_UNIT (newdecl) = DECL_SIZE_UNIT (olddecl);
1834 DECL_MODE (newdecl) = DECL_MODE (olddecl);
1835 if (TREE_CODE (olddecl) != FUNCTION_DECL)
1836 if (DECL_ALIGN (olddecl) > DECL_ALIGN (newdecl))
1838 DECL_ALIGN (newdecl) = DECL_ALIGN (olddecl);
1839 DECL_USER_ALIGN (newdecl) |= DECL_ALIGN (olddecl);
1843 /* Keep the old rtl since we can safely use it. */
1844 COPY_DECL_RTL (olddecl, newdecl);
1846 /* Merge the type qualifiers. */
1847 if (TREE_CODE (olddecl) == FUNCTION_DECL
1848 && DECL_BUILT_IN_NONANSI (olddecl) && TREE_THIS_VOLATILE (olddecl)
1849 && ! TREE_THIS_VOLATILE (newdecl))
1850 TREE_THIS_VOLATILE (write_olddecl) = 0;
1852 if (TREE_READONLY (newdecl))
1853 TREE_READONLY (write_olddecl) = 1;
1855 if (TREE_THIS_VOLATILE (newdecl))
1857 TREE_THIS_VOLATILE (write_olddecl) = 1;
1858 if (TREE_CODE (newdecl) == VAR_DECL
1859 /* If an automatic variable is re-declared in the same
1860 function scope, but the old declaration was not
1861 volatile, make_var_volatile() would crash because the
1862 variable would have been assigned to a pseudo, not a
1863 MEM. Since this duplicate declaration is invalid
1864 anyway, we just skip the call. */
1865 && errmsg == 0)
1866 make_var_volatile (newdecl);
1869 /* Keep source location of definition rather than declaration. */
1870 /* When called with different_binding_level set, keep the old
1871 information so that meaningful diagnostics can be given. */
1872 if (DECL_INITIAL (newdecl) == 0 && DECL_INITIAL (olddecl) != 0
1873 && ! different_binding_level)
1875 DECL_SOURCE_LINE (newdecl) = DECL_SOURCE_LINE (olddecl);
1876 DECL_SOURCE_FILE (newdecl) = DECL_SOURCE_FILE (olddecl);
1879 /* Merge the unused-warning information. */
1880 if (DECL_IN_SYSTEM_HEADER (olddecl))
1881 DECL_IN_SYSTEM_HEADER (newdecl) = 1;
1882 else if (DECL_IN_SYSTEM_HEADER (newdecl))
1883 DECL_IN_SYSTEM_HEADER (write_olddecl) = 1;
1885 /* Merge the initialization information. */
1886 /* When called with different_binding_level set, don't copy over
1887 DECL_INITIAL, so that we don't accidentally change function
1888 declarations into function definitions. */
1889 if (DECL_INITIAL (newdecl) == 0 && ! different_binding_level)
1890 DECL_INITIAL (newdecl) = DECL_INITIAL (olddecl);
1892 /* Merge the section attribute.
1893 We want to issue an error if the sections conflict but that must be
1894 done later in decl_attributes since we are called before attributes
1895 are assigned. */
1896 if (DECL_SECTION_NAME (newdecl) == NULL_TREE)
1897 DECL_SECTION_NAME (newdecl) = DECL_SECTION_NAME (olddecl);
1899 /* Copy the assembler name.
1900 Currently, it can only be defined in the prototype. */
1901 COPY_DECL_ASSEMBLER_NAME (olddecl, newdecl);
1903 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1905 DECL_STATIC_CONSTRUCTOR(newdecl) |= DECL_STATIC_CONSTRUCTOR(olddecl);
1906 DECL_STATIC_DESTRUCTOR (newdecl) |= DECL_STATIC_DESTRUCTOR (olddecl);
1907 DECL_NO_LIMIT_STACK (newdecl) |= DECL_NO_LIMIT_STACK (olddecl);
1908 DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (newdecl)
1909 |= DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (olddecl);
1912 /* If cannot merge, then use the new type and qualifiers,
1913 and don't preserve the old rtl. */
1914 else if (! different_binding_level)
1916 TREE_TYPE (olddecl) = TREE_TYPE (newdecl);
1917 TREE_READONLY (olddecl) = TREE_READONLY (newdecl);
1918 TREE_THIS_VOLATILE (olddecl) = TREE_THIS_VOLATILE (newdecl);
1919 TREE_SIDE_EFFECTS (olddecl) = TREE_SIDE_EFFECTS (newdecl);
1922 /* Merge the storage class information. */
1923 DECL_WEAK (newdecl) |= DECL_WEAK (olddecl);
1924 /* For functions, static overrides non-static. */
1925 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1927 TREE_PUBLIC (newdecl) &= TREE_PUBLIC (olddecl);
1928 /* This is since we don't automatically
1929 copy the attributes of NEWDECL into OLDDECL. */
1930 /* No need to worry about different_binding_level here because
1931 then TREE_PUBLIC (newdecl) was true. */
1932 TREE_PUBLIC (olddecl) = TREE_PUBLIC (newdecl);
1933 /* If this clears `static', clear it in the identifier too. */
1934 if (! TREE_PUBLIC (olddecl))
1935 TREE_PUBLIC (DECL_NAME (olddecl)) = 0;
1937 if (DECL_EXTERNAL (newdecl))
1939 if (! different_binding_level)
1941 /* Don't mess with these flags on local externs; they remain
1942 external even if there's a declaration at file scope which
1943 isn't. */
1944 TREE_STATIC (newdecl) = TREE_STATIC (olddecl);
1945 DECL_EXTERNAL (newdecl) = DECL_EXTERNAL (olddecl);
1947 /* An extern decl does not override previous storage class. */
1948 TREE_PUBLIC (newdecl) = TREE_PUBLIC (olddecl);
1949 if (! DECL_EXTERNAL (newdecl))
1950 DECL_CONTEXT (newdecl) = DECL_CONTEXT (olddecl);
1952 else
1954 TREE_STATIC (olddecl) = TREE_STATIC (newdecl);
1955 TREE_PUBLIC (olddecl) = TREE_PUBLIC (newdecl);
1958 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1960 /* If we're redefining a function previously defined as extern
1961 inline, make sure we emit debug info for the inline before we
1962 throw it away, in case it was inlined into a function that hasn't
1963 been written out yet. */
1964 if (new_is_definition && DECL_INITIAL (olddecl) && TREE_USED (olddecl))
1966 (*debug_hooks->outlining_inline_function) (olddecl);
1968 /* The new defn must not be inline. */
1969 DECL_INLINE (newdecl) = 0;
1970 DECL_UNINLINABLE (newdecl) = 1;
1972 else
1974 /* If either decl says `inline', this fn is inline,
1975 unless its definition was passed already. */
1976 if (DECL_DECLARED_INLINE_P (newdecl)
1977 || DECL_DECLARED_INLINE_P (olddecl))
1978 DECL_DECLARED_INLINE_P (newdecl) = 1;
1980 DECL_UNINLINABLE (newdecl) = DECL_UNINLINABLE (olddecl)
1981 = (DECL_UNINLINABLE (newdecl) || DECL_UNINLINABLE (olddecl));
1984 if (DECL_BUILT_IN (olddecl))
1986 /* Get rid of any built-in function if new arg types don't match it
1987 or if we have a function definition. */
1988 if (! types_match || new_is_definition)
1990 if (! different_binding_level)
1992 TREE_TYPE (olddecl) = TREE_TYPE (newdecl);
1993 DECL_BUILT_IN_CLASS (olddecl) = NOT_BUILT_IN;
1996 else
1998 /* If redeclaring a builtin function, and not a definition,
1999 it stays built in. */
2000 DECL_BUILT_IN_CLASS (newdecl) = DECL_BUILT_IN_CLASS (olddecl);
2001 DECL_FUNCTION_CODE (newdecl) = DECL_FUNCTION_CODE (olddecl);
2005 /* Also preserve various other info from the definition. */
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_SAVED_TREE (newdecl) = DECL_SAVED_TREE (olddecl);
2016 DECL_NUM_STMTS (newdecl) = DECL_NUM_STMTS (olddecl);
2017 DECL_ARGUMENTS (newdecl) = DECL_ARGUMENTS (olddecl);
2019 /* Set DECL_INLINE on the declaration if we've got a body
2020 from which to instantiate. */
2021 if (DECL_INLINE (olddecl) && ! DECL_UNINLINABLE (newdecl))
2023 DECL_INLINE (newdecl) = 1;
2024 DECL_ABSTRACT_ORIGIN (newdecl)
2025 = (different_binding_level
2026 ? DECL_ORIGIN (olddecl)
2027 : DECL_ABSTRACT_ORIGIN (olddecl));
2030 else
2032 /* If a previous declaration said inline, mark the
2033 definition as inlinable. */
2034 if (DECL_DECLARED_INLINE_P (newdecl)
2035 && ! DECL_UNINLINABLE (newdecl))
2036 DECL_INLINE (newdecl) = 1;
2039 if (different_binding_level)
2040 return 0;
2042 /* Copy most of the decl-specific fields of NEWDECL into OLDDECL.
2043 But preserve OLDDECL's DECL_UID. */
2045 unsigned olddecl_uid = DECL_UID (olddecl);
2047 memcpy ((char *) olddecl + sizeof (struct tree_common),
2048 (char *) newdecl + sizeof (struct tree_common),
2049 sizeof (struct tree_decl) - sizeof (struct tree_common));
2050 DECL_UID (olddecl) = olddecl_uid;
2053 /* NEWDECL contains the merged attribute lists.
2054 Update OLDDECL to be the same. */
2055 DECL_ATTRIBUTES (olddecl) = DECL_ATTRIBUTES (newdecl);
2057 return 1;
2060 /* Check whether decl-node X shadows an existing declaration.
2061 OLDLOCAL is the old IDENTIFIER_LOCAL_VALUE of the DECL_NAME of X,
2062 which might be a NULL_TREE. */
2063 static void
2064 warn_if_shadowing (x, oldlocal)
2065 tree x, oldlocal;
2067 tree name;
2069 if (DECL_EXTERNAL (x))
2070 return;
2072 name = DECL_NAME (x);
2074 /* Warn if shadowing an argument at the top level of the body. */
2075 if (oldlocal != 0
2076 /* This warning doesn't apply to the parms of a nested fcn. */
2077 && ! current_binding_level->parm_flag
2078 /* Check that this is one level down from the parms. */
2079 && current_binding_level->level_chain->parm_flag
2080 /* Check that the decl being shadowed
2081 comes from the parm level, one level up. */
2082 && chain_member (oldlocal, current_binding_level->level_chain->names))
2084 if (TREE_CODE (oldlocal) == PARM_DECL)
2085 pedwarn ("declaration of `%s' shadows a parameter",
2086 IDENTIFIER_POINTER (name));
2087 else
2088 pedwarn ("declaration of `%s' shadows a symbol from the parameter list",
2089 IDENTIFIER_POINTER (name));
2091 /* Maybe warn if shadowing something else. */
2092 else if (warn_shadow
2093 /* No shadow warnings for internally generated vars. */
2094 && DECL_SOURCE_LINE (x) != 0
2095 /* No shadow warnings for vars made for inlining. */
2096 && ! DECL_FROM_INLINE (x))
2098 if (TREE_CODE (x) == PARM_DECL
2099 && current_binding_level->level_chain->parm_flag)
2100 /* Don't warn about the parm names in function declarator
2101 within a function declarator.
2102 It would be nice to avoid warning in any function
2103 declarator in a declaration, as opposed to a definition,
2104 but there is no way to tell it's not a definition. */
2106 else if (oldlocal)
2108 if (TREE_CODE (oldlocal) == PARM_DECL)
2109 shadow_warning ("a parameter", name, oldlocal);
2110 else
2111 shadow_warning ("a previous local", name, oldlocal);
2113 else if (IDENTIFIER_GLOBAL_VALUE (name) != 0
2114 && IDENTIFIER_GLOBAL_VALUE (name) != error_mark_node)
2115 shadow_warning ("a global declaration", name,
2116 IDENTIFIER_GLOBAL_VALUE (name));
2120 /* Record a decl-node X as belonging to the current lexical scope.
2121 Check for errors (such as an incompatible declaration for the same
2122 name already seen in the same scope).
2124 Returns either X or an old decl for the same name.
2125 If an old decl is returned, it may have been smashed
2126 to agree with what X says. */
2128 tree
2129 pushdecl (x)
2130 tree x;
2132 tree t;
2133 tree name = DECL_NAME (x);
2134 struct binding_level *b = current_binding_level;
2136 /* Functions need the lang_decl data. */
2137 if (TREE_CODE (x) == FUNCTION_DECL && ! DECL_LANG_SPECIFIC (x))
2138 DECL_LANG_SPECIFIC (x) = (struct lang_decl *)
2139 ggc_alloc_cleared (sizeof (struct lang_decl));
2141 DECL_CONTEXT (x) = current_function_decl;
2142 /* A local extern declaration for a function doesn't constitute nesting.
2143 A local auto declaration does, since it's a forward decl
2144 for a nested function coming later. */
2145 if ((TREE_CODE (x) == FUNCTION_DECL || TREE_CODE (x) == VAR_DECL)
2146 && DECL_INITIAL (x) == 0 && DECL_EXTERNAL (x))
2147 DECL_CONTEXT (x) = 0;
2149 if (name)
2151 int different_binding_level = 0;
2153 if (warn_nested_externs
2154 && DECL_EXTERNAL (x)
2155 && b != global_binding_level
2156 && x != IDENTIFIER_IMPLICIT_DECL (name)
2157 /* No error messages for __FUNCTION__ and __PRETTY_FUNCTION__. */
2158 && !DECL_IN_SYSTEM_HEADER (x))
2159 warning ("nested extern declaration of `%s'",
2160 IDENTIFIER_POINTER (name));
2162 t = lookup_name_current_level (name);
2163 /* Don't type check externs here when -traditional. This is so that
2164 code with conflicting declarations inside blocks will get warnings
2165 not errors. X11 for instance depends on this. */
2166 if (! t && DECL_EXTERNAL (x) && TREE_PUBLIC (x) && ! flag_traditional)
2168 t = lookup_name (name);
2169 /* Type decls at global scope don't conflict with externs declared
2170 inside lexical blocks. */
2171 if (t && TREE_CODE (t) == TYPE_DECL)
2172 t = 0;
2173 different_binding_level = 1;
2175 if (t != 0 && t == error_mark_node)
2176 /* error_mark_node is 0 for a while during initialization! */
2178 t = 0;
2179 error_with_decl (x, "`%s' used prior to declaration");
2182 /* If this decl is `static' and an implicit decl was seen previously,
2183 warn. But don't complain if -traditional,
2184 since traditional compilers don't complain. */
2185 if (! flag_traditional && TREE_PUBLIC (name)
2186 /* Don't test for DECL_EXTERNAL, because grokdeclarator
2187 sets this for all functions. */
2188 && ! TREE_PUBLIC (x)
2189 && (TREE_CODE (x) == FUNCTION_DECL || b == global_binding_level)
2190 /* We used to warn also for explicit extern followed by static,
2191 but sometimes you need to do it that way. */
2192 && IDENTIFIER_IMPLICIT_DECL (name) != 0)
2194 pedwarn ("`%s' was declared implicitly `extern' and later `static'",
2195 IDENTIFIER_POINTER (name));
2196 pedwarn_with_file_and_line
2197 (DECL_SOURCE_FILE (IDENTIFIER_IMPLICIT_DECL (name)),
2198 DECL_SOURCE_LINE (IDENTIFIER_IMPLICIT_DECL (name)),
2199 "previous declaration of `%s'",
2200 IDENTIFIER_POINTER (name));
2201 TREE_THIS_VOLATILE (name) = 1;
2204 if (t != 0 && duplicate_decls (x, t, different_binding_level))
2206 if (TREE_CODE (t) == PARM_DECL)
2208 /* Don't allow more than one "real" duplicate
2209 of a forward parm decl. */
2210 TREE_ASM_WRITTEN (t) = TREE_ASM_WRITTEN (x);
2211 return t;
2213 return t;
2216 /* If we are processing a typedef statement, generate a whole new
2217 ..._TYPE node (which will be just an variant of the existing
2218 ..._TYPE node with identical properties) and then install the
2219 TYPE_DECL node generated to represent the typedef name as the
2220 TYPE_NAME of this brand new (duplicate) ..._TYPE node.
2222 The whole point here is to end up with a situation where each
2223 and every ..._TYPE node the compiler creates will be uniquely
2224 associated with AT MOST one node representing a typedef name.
2225 This way, even though the compiler substitutes corresponding
2226 ..._TYPE nodes for TYPE_DECL (i.e. "typedef name") nodes very
2227 early on, later parts of the compiler can always do the reverse
2228 translation and get back the corresponding typedef name. For
2229 example, given:
2231 typedef struct S MY_TYPE;
2232 MY_TYPE object;
2234 Later parts of the compiler might only know that `object' was of
2235 type `struct S' if it were not for code just below. With this
2236 code however, later parts of the compiler see something like:
2238 struct S' == struct S
2239 typedef struct S' MY_TYPE;
2240 struct S' object;
2242 And they can then deduce (from the node for type struct S') that
2243 the original object declaration was:
2245 MY_TYPE object;
2247 Being able to do this is important for proper support of protoize,
2248 and also for generating precise symbolic debugging information
2249 which takes full account of the programmer's (typedef) vocabulary.
2251 Obviously, we don't want to generate a duplicate ..._TYPE node if
2252 the TYPE_DECL node that we are now processing really represents a
2253 standard built-in type.
2255 Since all standard types are effectively declared at line zero
2256 in the source file, we can easily check to see if we are working
2257 on a standard type by checking the current value of lineno. */
2259 if (TREE_CODE (x) == TYPE_DECL)
2261 if (DECL_SOURCE_LINE (x) == 0)
2263 if (TYPE_NAME (TREE_TYPE (x)) == 0)
2264 TYPE_NAME (TREE_TYPE (x)) = x;
2266 else if (TREE_TYPE (x) != error_mark_node
2267 && DECL_ORIGINAL_TYPE (x) == NULL_TREE)
2269 tree tt = TREE_TYPE (x);
2270 DECL_ORIGINAL_TYPE (x) = tt;
2271 tt = build_type_copy (tt);
2272 TYPE_NAME (tt) = x;
2273 TREE_USED (tt) = TREE_USED (x);
2274 TREE_TYPE (x) = tt;
2278 /* Multiple external decls of the same identifier ought to match.
2279 Check against both global declarations (when traditional) and out of
2280 scope (limbo) block level declarations.
2282 We get warnings about inline functions where they are defined.
2283 Avoid duplicate warnings where they are used. */
2284 if (TREE_PUBLIC (x)
2285 && ! (TREE_CODE (x) == FUNCTION_DECL && DECL_INLINE (x)))
2287 tree decl;
2289 if (flag_traditional && IDENTIFIER_GLOBAL_VALUE (name) != 0
2290 && (DECL_EXTERNAL (IDENTIFIER_GLOBAL_VALUE (name))
2291 || TREE_PUBLIC (IDENTIFIER_GLOBAL_VALUE (name))))
2292 decl = IDENTIFIER_GLOBAL_VALUE (name);
2293 else if (IDENTIFIER_LIMBO_VALUE (name) != 0)
2294 /* Decls in limbo are always extern, so no need to check that. */
2295 decl = IDENTIFIER_LIMBO_VALUE (name);
2296 else
2297 decl = 0;
2299 if (decl && ! comptypes (TREE_TYPE (x), TREE_TYPE (decl))
2300 /* If old decl is built-in, we already warned if we should. */
2301 && !DECL_BUILT_IN (decl))
2303 pedwarn_with_decl (x,
2304 "type mismatch with previous external decl");
2305 pedwarn_with_decl (decl, "previous external decl of `%s'");
2309 /* If a function has had an implicit declaration, and then is defined,
2310 make sure they are compatible. */
2312 if (IDENTIFIER_IMPLICIT_DECL (name) != 0
2313 && IDENTIFIER_GLOBAL_VALUE (name) == 0
2314 && TREE_CODE (x) == FUNCTION_DECL
2315 && ! comptypes (TREE_TYPE (x),
2316 TREE_TYPE (IDENTIFIER_IMPLICIT_DECL (name))))
2318 warning_with_decl (x, "type mismatch with previous implicit declaration");
2319 warning_with_decl (IDENTIFIER_IMPLICIT_DECL (name),
2320 "previous implicit declaration of `%s'");
2323 /* In PCC-compatibility mode, extern decls of vars with no current decl
2324 take effect at top level no matter where they are. */
2325 if (flag_traditional && DECL_EXTERNAL (x)
2326 && lookup_name (name) == 0)
2328 tree type = TREE_TYPE (x);
2330 /* But don't do this if the type contains temporary nodes. */
2331 while (type)
2333 if (type == error_mark_node)
2334 break;
2335 if (TYPE_CONTEXT (type))
2337 warning_with_decl (x, "type of external `%s' is not global");
2338 /* By exiting the loop early, we leave TYPE nonzero,
2339 and thus prevent globalization of the decl. */
2340 break;
2342 else if (TREE_CODE (type) == FUNCTION_TYPE
2343 && TYPE_ARG_TYPES (type) != 0)
2344 /* The types might not be truly local,
2345 but the list of arg types certainly is temporary.
2346 Since prototypes are nontraditional,
2347 ok not to do the traditional thing. */
2348 break;
2349 type = TREE_TYPE (type);
2352 if (type == 0)
2353 b = global_binding_level;
2356 /* This name is new in its binding level.
2357 Install the new declaration and return it. */
2358 if (b == global_binding_level)
2360 /* Install a global value. */
2362 /* If the first global decl has external linkage,
2363 warn if we later see static one. */
2364 if (IDENTIFIER_GLOBAL_VALUE (name) == 0 && TREE_PUBLIC (x))
2365 TREE_PUBLIC (name) = 1;
2367 IDENTIFIER_GLOBAL_VALUE (name) = x;
2369 /* We no longer care about any previous block level declarations. */
2370 IDENTIFIER_LIMBO_VALUE (name) = 0;
2372 /* Don't forget if the function was used via an implicit decl. */
2373 if (IDENTIFIER_IMPLICIT_DECL (name)
2374 && TREE_USED (IDENTIFIER_IMPLICIT_DECL (name)))
2375 TREE_USED (x) = 1, TREE_USED (name) = 1;
2377 /* Don't forget if its address was taken in that way. */
2378 if (IDENTIFIER_IMPLICIT_DECL (name)
2379 && TREE_ADDRESSABLE (IDENTIFIER_IMPLICIT_DECL (name)))
2380 TREE_ADDRESSABLE (x) = 1;
2382 /* Warn about mismatches against previous implicit decl. */
2383 if (IDENTIFIER_IMPLICIT_DECL (name) != 0
2384 /* If this real decl matches the implicit, don't complain. */
2385 && ! (TREE_CODE (x) == FUNCTION_DECL
2386 && (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (x)))
2387 == integer_type_node)))
2388 pedwarn ("`%s' was previously implicitly declared to return `int'",
2389 IDENTIFIER_POINTER (name));
2391 /* If this decl is `static' and an `extern' was seen previously,
2392 that is erroneous. */
2393 if (TREE_PUBLIC (name)
2394 && ! TREE_PUBLIC (x) && ! DECL_EXTERNAL (x))
2396 /* Okay to redeclare an ANSI built-in as static. */
2397 if (t != 0 && DECL_BUILT_IN (t))
2399 /* Okay to declare a non-ANSI built-in as anything. */
2400 else if (t != 0 && DECL_BUILT_IN_NONANSI (t))
2402 /* Okay to have global type decl after an earlier extern
2403 declaration inside a lexical block. */
2404 else if (TREE_CODE (x) == TYPE_DECL)
2406 else if (IDENTIFIER_IMPLICIT_DECL (name))
2408 if (! TREE_THIS_VOLATILE (name))
2409 pedwarn ("`%s' was declared implicitly `extern' and later `static'",
2410 IDENTIFIER_POINTER (name));
2412 else
2413 pedwarn ("`%s' was declared `extern' and later `static'",
2414 IDENTIFIER_POINTER (name));
2417 else
2419 /* Here to install a non-global value. */
2420 tree oldlocal = IDENTIFIER_LOCAL_VALUE (name);
2421 tree oldglobal = IDENTIFIER_GLOBAL_VALUE (name);
2423 IDENTIFIER_LOCAL_VALUE (name) = x;
2425 /* If this is an extern function declaration, see if we
2426 have a global definition or declaration for the function. */
2427 if (oldlocal == 0
2428 && oldglobal != 0
2429 && TREE_CODE (x) == FUNCTION_DECL
2430 && TREE_CODE (oldglobal) == FUNCTION_DECL
2431 && DECL_EXTERNAL (x)
2432 && ! DECL_DECLARED_INLINE_P (x))
2434 /* We have one. Their types must agree. */
2435 if (! comptypes (TREE_TYPE (x),
2436 TREE_TYPE (IDENTIFIER_GLOBAL_VALUE (name))))
2437 pedwarn_with_decl (x, "extern declaration of `%s' doesn't match global one");
2438 else
2440 /* Inner extern decl is inline if global one is.
2441 Copy enough to really inline it. */
2442 if (DECL_DECLARED_INLINE_P (oldglobal))
2444 DECL_DECLARED_INLINE_P (x)
2445 = DECL_DECLARED_INLINE_P (oldglobal);
2446 DECL_INLINE (x) = DECL_INLINE (oldglobal);
2447 DECL_INITIAL (x) = (current_function_decl == oldglobal
2448 ? 0 : DECL_INITIAL (oldglobal));
2449 DECL_SAVED_INSNS (x) = DECL_SAVED_INSNS (oldglobal);
2450 DECL_NUM_STMTS (x) = DECL_NUM_STMTS (oldglobal);
2451 DECL_ARGUMENTS (x) = DECL_ARGUMENTS (oldglobal);
2452 DECL_RESULT (x) = DECL_RESULT (oldglobal);
2453 TREE_ASM_WRITTEN (x) = TREE_ASM_WRITTEN (oldglobal);
2454 DECL_ABSTRACT_ORIGIN (x)
2455 = DECL_ABSTRACT_ORIGIN (oldglobal);
2457 /* Inner extern decl is built-in if global one is. */
2458 if (DECL_BUILT_IN (oldglobal))
2460 DECL_BUILT_IN_CLASS (x) = DECL_BUILT_IN_CLASS (oldglobal);
2461 DECL_FUNCTION_CODE (x) = DECL_FUNCTION_CODE (oldglobal);
2463 /* Keep the arg types from a file-scope fcn defn. */
2464 if (TYPE_ARG_TYPES (TREE_TYPE (oldglobal)) != 0
2465 && DECL_INITIAL (oldglobal)
2466 && TYPE_ARG_TYPES (TREE_TYPE (x)) == 0)
2467 TREE_TYPE (x) = TREE_TYPE (oldglobal);
2471 #if 0
2472 /* This case is probably sometimes the right thing to do. */
2473 /* If we have a local external declaration,
2474 then any file-scope declaration should not
2475 have been static. */
2476 if (oldlocal == 0 && oldglobal != 0
2477 && !TREE_PUBLIC (oldglobal)
2478 && DECL_EXTERNAL (x) && TREE_PUBLIC (x))
2479 warning ("`%s' locally external but globally static",
2480 IDENTIFIER_POINTER (name));
2481 #endif
2483 /* If we have a local external declaration,
2484 and no file-scope declaration has yet been seen,
2485 then if we later have a file-scope decl it must not be static. */
2486 if (oldlocal == 0
2487 && DECL_EXTERNAL (x)
2488 && TREE_PUBLIC (x))
2490 if (oldglobal == 0)
2491 TREE_PUBLIC (name) = 1;
2493 /* Save this decl, so that we can do type checking against
2494 other decls after it falls out of scope.
2496 Only save it once. This prevents temporary decls created in
2497 expand_inline_function from being used here, since this
2498 will have been set when the inline function was parsed.
2499 It also helps give slightly better warnings. */
2500 if (IDENTIFIER_LIMBO_VALUE (name) == 0)
2501 IDENTIFIER_LIMBO_VALUE (name) = x;
2504 warn_if_shadowing (x, oldlocal);
2506 /* If storing a local value, there may already be one (inherited).
2507 If so, record it for restoration when this binding level ends. */
2508 if (oldlocal != 0)
2509 b->shadowed = tree_cons (name, oldlocal, b->shadowed);
2512 /* Keep count of variables in this level with incomplete type.
2513 If the input is erroneous, we can have error_mark in the type
2514 slot (e.g. "f(void a, ...)") - that doesn't count as an
2515 incomplete type. */
2516 if (TREE_TYPE (x) != error_mark_node
2517 && !COMPLETE_TYPE_P (TREE_TYPE (x)))
2519 tree element = TREE_TYPE (x);
2521 while (TREE_CODE (element) == ARRAY_TYPE)
2522 element = TREE_TYPE (element);
2523 if (TREE_CODE (element) == RECORD_TYPE
2524 || TREE_CODE (element) == UNION_TYPE)
2525 ++b->n_incomplete;
2529 /* Put decls on list in reverse order.
2530 We will reverse them later if necessary. */
2531 TREE_CHAIN (x) = b->names;
2532 b->names = x;
2534 return x;
2537 /* Like pushdecl, only it places X in GLOBAL_BINDING_LEVEL, if appropriate. */
2539 tree
2540 pushdecl_top_level (x)
2541 tree x;
2543 tree t;
2544 struct binding_level *b = current_binding_level;
2546 current_binding_level = global_binding_level;
2547 t = pushdecl (x);
2548 current_binding_level = b;
2549 return t;
2552 /* Generate an implicit declaration for identifier FUNCTIONID
2553 as a function of type int (). Print a warning if appropriate. */
2555 tree
2556 implicitly_declare (functionid)
2557 tree functionid;
2559 tree decl;
2560 int traditional_warning = 0;
2561 /* Only one "implicit declaration" warning per identifier. */
2562 int implicit_warning;
2564 /* We used to reuse an old implicit decl here,
2565 but this loses with inline functions because it can clobber
2566 the saved decl chains. */
2567 #if 0
2568 if (IDENTIFIER_IMPLICIT_DECL (functionid) != 0)
2569 decl = IDENTIFIER_IMPLICIT_DECL (functionid);
2570 else
2571 #endif
2572 decl = build_decl (FUNCTION_DECL, functionid, default_function_type);
2574 /* Warn of implicit decl following explicit local extern decl.
2575 This is probably a program designed for traditional C. */
2576 if (TREE_PUBLIC (functionid) && IDENTIFIER_GLOBAL_VALUE (functionid) == 0)
2577 traditional_warning = 1;
2579 /* Warn once of an implicit declaration. */
2580 implicit_warning = (IDENTIFIER_IMPLICIT_DECL (functionid) == 0);
2582 DECL_EXTERNAL (decl) = 1;
2583 TREE_PUBLIC (decl) = 1;
2585 /* Record that we have an implicit decl and this is it. */
2586 IDENTIFIER_IMPLICIT_DECL (functionid) = decl;
2588 /* ANSI standard says implicit declarations are in the innermost block.
2589 So we record the decl in the standard fashion.
2590 If flag_traditional is set, pushdecl does it top-level. */
2591 pushdecl (decl);
2593 /* This is a no-op in c-lang.c or something real in objc-actions.c. */
2594 maybe_objc_check_decl (decl);
2596 rest_of_decl_compilation (decl, NULL, 0, 0);
2598 if (implicit_warning)
2599 implicit_decl_warning (functionid);
2600 else if (warn_traditional && traditional_warning)
2601 warning ("function `%s' was previously declared within a block",
2602 IDENTIFIER_POINTER (functionid));
2604 /* Write a record describing this implicit function declaration to the
2605 prototypes file (if requested). */
2607 gen_aux_info_record (decl, 0, 1, 0);
2609 /* Possibly apply some default attributes to this implicit declaration. */
2610 decl_attributes (&decl, NULL_TREE, 0);
2612 return decl;
2615 void
2616 implicit_decl_warning (id)
2617 tree id;
2619 const char *name = IDENTIFIER_POINTER (id);
2620 if (mesg_implicit_function_declaration == 2)
2621 error ("implicit declaration of function `%s'", name);
2622 else if (mesg_implicit_function_declaration == 1)
2623 warning ("implicit declaration of function `%s'", name);
2626 /* Return zero if the declaration NEWDECL is valid
2627 when the declaration OLDDECL (assumed to be for the same name)
2628 has already been seen.
2629 Otherwise return 1 if NEWDECL is a redefinition, 2 if it is a redeclaration,
2630 and 3 if it is a conflicting declaration. */
2632 static int
2633 redeclaration_error_message (newdecl, olddecl)
2634 tree newdecl, olddecl;
2636 if (TREE_CODE (newdecl) == TYPE_DECL)
2638 if (flag_traditional && TREE_TYPE (newdecl) == TREE_TYPE (olddecl))
2639 return 0;
2640 /* pushdecl creates distinct types for TYPE_DECLs by calling
2641 build_type_copy, so the above comparison generally fails. We do
2642 another test against the TYPE_MAIN_VARIANT of the olddecl, which
2643 is equivalent to what this code used to do before the build_type_copy
2644 call. The variant type distinction should not matter for traditional
2645 code, because it doesn't have type qualifiers. */
2646 if (flag_traditional
2647 && TYPE_MAIN_VARIANT (TREE_TYPE (olddecl)) == TREE_TYPE (newdecl))
2648 return 0;
2649 if (DECL_IN_SYSTEM_HEADER (olddecl) || DECL_IN_SYSTEM_HEADER (newdecl))
2650 return 0;
2651 return 1;
2653 else if (TREE_CODE (newdecl) == FUNCTION_DECL)
2655 /* Declarations of functions can insist on internal linkage
2656 but they can't be inconsistent with internal linkage,
2657 so there can be no error on that account.
2658 However defining the same name twice is no good. */
2659 if (DECL_INITIAL (olddecl) != 0 && DECL_INITIAL (newdecl) != 0
2660 /* However, defining once as extern inline and a second
2661 time in another way is ok. */
2662 && ! (DECL_DECLARED_INLINE_P (olddecl) && DECL_EXTERNAL (olddecl)
2663 && ! (DECL_DECLARED_INLINE_P (newdecl)
2664 && DECL_EXTERNAL (newdecl))))
2665 return 1;
2666 return 0;
2668 else if (DECL_CONTEXT (newdecl) == NULL_TREE)
2670 /* Objects declared at top level: */
2671 /* If at least one is a reference, it's ok. */
2672 if (DECL_EXTERNAL (newdecl) || DECL_EXTERNAL (olddecl))
2673 return 0;
2674 /* Reject two definitions. */
2675 if (DECL_INITIAL (olddecl) != 0 && DECL_INITIAL (newdecl) != 0)
2676 return 1;
2677 /* Now we have two tentative defs, or one tentative and one real def. */
2678 /* Insist that the linkage match. */
2679 if (TREE_PUBLIC (olddecl) != TREE_PUBLIC (newdecl))
2680 return 3;
2681 return 0;
2683 else if (current_binding_level->parm_flag
2684 && TREE_ASM_WRITTEN (olddecl) && !TREE_ASM_WRITTEN (newdecl))
2685 return 0;
2686 else
2688 /* Newdecl has block scope. If olddecl has block scope also, then
2689 reject two definitions, and reject a definition together with an
2690 external reference. Otherwise, it is OK, because newdecl must
2691 be an extern reference to olddecl. */
2692 if (!(DECL_EXTERNAL (newdecl) && DECL_EXTERNAL (olddecl))
2693 && DECL_CONTEXT (newdecl) == DECL_CONTEXT (olddecl))
2694 return 2;
2695 return 0;
2699 /* Get the LABEL_DECL corresponding to identifier ID as a label.
2700 Create one if none exists so far for the current function.
2701 This function is called for both label definitions and label references. */
2703 tree
2704 lookup_label (id)
2705 tree id;
2707 tree decl = IDENTIFIER_LABEL_VALUE (id);
2709 if (current_function_decl == 0)
2711 error ("label %s referenced outside of any function",
2712 IDENTIFIER_POINTER (id));
2713 return 0;
2716 /* Use a label already defined or ref'd with this name. */
2717 if (decl != 0)
2719 /* But not if it is inherited and wasn't declared to be inheritable. */
2720 if (DECL_CONTEXT (decl) != current_function_decl
2721 && ! C_DECLARED_LABEL_FLAG (decl))
2722 return shadow_label (id);
2723 return decl;
2726 decl = build_decl (LABEL_DECL, id, void_type_node);
2728 /* A label not explicitly declared must be local to where it's ref'd. */
2729 DECL_CONTEXT (decl) = current_function_decl;
2731 DECL_MODE (decl) = VOIDmode;
2733 /* Say where one reference is to the label,
2734 for the sake of the error if it is not defined. */
2735 DECL_SOURCE_LINE (decl) = lineno;
2736 DECL_SOURCE_FILE (decl) = input_filename;
2738 IDENTIFIER_LABEL_VALUE (id) = decl;
2740 named_labels = tree_cons (NULL_TREE, decl, named_labels);
2742 return decl;
2745 /* Make a label named NAME in the current function,
2746 shadowing silently any that may be inherited from containing functions
2747 or containing scopes.
2749 Note that valid use, if the label being shadowed
2750 comes from another scope in the same function,
2751 requires calling declare_nonlocal_label right away. */
2753 tree
2754 shadow_label (name)
2755 tree name;
2757 tree decl = IDENTIFIER_LABEL_VALUE (name);
2759 if (decl != 0)
2761 tree dup;
2763 /* Check to make sure that the label hasn't already been declared
2764 at this label scope */
2765 for (dup = named_labels; dup; dup = TREE_CHAIN (dup))
2766 if (TREE_VALUE (dup) == decl)
2768 error ("duplicate label declaration `%s'",
2769 IDENTIFIER_POINTER (name));
2770 error_with_decl (TREE_VALUE (dup),
2771 "this is a previous declaration");
2772 /* Just use the previous declaration. */
2773 return lookup_label (name);
2776 shadowed_labels = tree_cons (NULL_TREE, decl, shadowed_labels);
2777 IDENTIFIER_LABEL_VALUE (name) = decl = 0;
2780 return lookup_label (name);
2783 /* Define a label, specifying the location in the source file.
2784 Return the LABEL_DECL node for the label, if the definition is valid.
2785 Otherwise return 0. */
2787 tree
2788 define_label (filename, line, name)
2789 const char *filename;
2790 int line;
2791 tree name;
2793 tree decl = lookup_label (name);
2795 /* If label with this name is known from an outer context, shadow it. */
2796 if (decl != 0 && DECL_CONTEXT (decl) != current_function_decl)
2798 shadowed_labels = tree_cons (NULL_TREE, decl, shadowed_labels);
2799 IDENTIFIER_LABEL_VALUE (name) = 0;
2800 decl = lookup_label (name);
2803 if (warn_traditional && !in_system_header && lookup_name (name))
2804 warning_with_file_and_line (filename, line,
2805 "traditional C lacks a separate namespace for labels, identifier `%s' conflicts",
2806 IDENTIFIER_POINTER (name));
2808 if (DECL_INITIAL (decl) != 0)
2810 error_with_file_and_line (filename, line, "duplicate label `%s'",
2811 IDENTIFIER_POINTER (name));
2812 return 0;
2814 else
2816 /* Mark label as having been defined. */
2817 DECL_INITIAL (decl) = error_mark_node;
2818 /* Say where in the source. */
2819 DECL_SOURCE_FILE (decl) = filename;
2820 DECL_SOURCE_LINE (decl) = line;
2821 return decl;
2825 /* Return the list of declarations of the current level.
2826 Note that this list is in reverse order unless/until
2827 you nreverse it; and when you do nreverse it, you must
2828 store the result back using `storedecls' or you will lose. */
2830 tree
2831 getdecls ()
2833 return current_binding_level->names;
2836 /* Return the list of type-tags (for structs, etc) of the current level. */
2838 tree
2839 gettags ()
2841 return current_binding_level->tags;
2844 /* Store the list of declarations of the current level.
2845 This is done for the parameter declarations of a function being defined,
2846 after they are modified in the light of any missing parameters. */
2848 static void
2849 storedecls (decls)
2850 tree decls;
2852 current_binding_level->names = decls;
2855 /* Similarly, store the list of tags of the current level. */
2857 static void
2858 storetags (tags)
2859 tree tags;
2861 current_binding_level->tags = tags;
2864 /* Given NAME, an IDENTIFIER_NODE,
2865 return the structure (or union or enum) definition for that name.
2866 Searches binding levels from BINDING_LEVEL up to the global level.
2867 If THISLEVEL_ONLY is nonzero, searches only the specified context
2868 (but skips any tag-transparent contexts to find one that is
2869 meaningful for tags).
2870 CODE says which kind of type the caller wants;
2871 it is RECORD_TYPE or UNION_TYPE or ENUMERAL_TYPE.
2872 If the wrong kind of type is found, an error is reported. */
2874 static tree
2875 lookup_tag (code, name, binding_level, thislevel_only)
2876 enum tree_code code;
2877 struct binding_level *binding_level;
2878 tree name;
2879 int thislevel_only;
2881 struct binding_level *level;
2882 int thislevel = 1;
2884 for (level = binding_level; level; level = level->level_chain)
2886 tree tail;
2887 for (tail = level->tags; tail; tail = TREE_CHAIN (tail))
2889 if (TREE_PURPOSE (tail) == name)
2891 if (TREE_CODE (TREE_VALUE (tail)) != code)
2893 /* Definition isn't the kind we were looking for. */
2894 pending_invalid_xref = name;
2895 pending_invalid_xref_file = input_filename;
2896 pending_invalid_xref_line = lineno;
2897 /* If in the same binding level as a declaration as a tag
2898 of a different type, this must not be allowed to
2899 shadow that tag, so give the error immediately.
2900 (For example, "struct foo; union foo;" is invalid.) */
2901 if (thislevel)
2902 pending_xref_error ();
2904 return TREE_VALUE (tail);
2907 if (! level->tag_transparent)
2909 if (thislevel_only)
2910 return NULL_TREE;
2911 thislevel = 0;
2914 return NULL_TREE;
2917 /* Print an error message now
2918 for a recent invalid struct, union or enum cross reference.
2919 We don't print them immediately because they are not invalid
2920 when used in the `struct foo;' construct for shadowing. */
2922 void
2923 pending_xref_error ()
2925 if (pending_invalid_xref != 0)
2926 error_with_file_and_line (pending_invalid_xref_file,
2927 pending_invalid_xref_line,
2928 "`%s' defined as wrong kind of tag",
2929 IDENTIFIER_POINTER (pending_invalid_xref));
2930 pending_invalid_xref = 0;
2933 /* Given a type, find the tag that was defined for it and return the tag name.
2934 Otherwise return 0. */
2936 static tree
2937 lookup_tag_reverse (type)
2938 tree type;
2940 struct binding_level *level;
2942 for (level = current_binding_level; level; level = level->level_chain)
2944 tree tail;
2945 for (tail = level->tags; tail; tail = TREE_CHAIN (tail))
2947 if (TREE_VALUE (tail) == type)
2948 return TREE_PURPOSE (tail);
2951 return NULL_TREE;
2954 /* Look up NAME in the current binding level and its superiors
2955 in the namespace of variables, functions and typedefs.
2956 Return a ..._DECL node of some kind representing its definition,
2957 or return 0 if it is undefined. */
2959 tree
2960 lookup_name (name)
2961 tree name;
2963 tree val;
2965 if (current_binding_level != global_binding_level
2966 && IDENTIFIER_LOCAL_VALUE (name))
2967 val = IDENTIFIER_LOCAL_VALUE (name);
2968 else
2969 val = IDENTIFIER_GLOBAL_VALUE (name);
2970 return val;
2973 /* Similar to `lookup_name' but look only at current binding level. */
2975 tree
2976 lookup_name_current_level (name)
2977 tree name;
2979 tree t;
2981 if (current_binding_level == global_binding_level)
2982 return IDENTIFIER_GLOBAL_VALUE (name);
2984 if (IDENTIFIER_LOCAL_VALUE (name) == 0)
2985 return 0;
2987 for (t = current_binding_level->names; t; t = TREE_CHAIN (t))
2988 if (DECL_NAME (t) == name)
2989 break;
2991 return t;
2994 /* Mark ARG for GC. */
2996 static void
2997 mark_binding_level (arg)
2998 void *arg;
3000 struct binding_level *level = *(struct binding_level **) arg;
3002 for (; level != 0; level = level->level_chain)
3004 ggc_mark_tree (level->names);
3005 ggc_mark_tree (level->tags);
3006 ggc_mark_tree (level->shadowed);
3007 ggc_mark_tree (level->blocks);
3008 ggc_mark_tree (level->this_block);
3009 ggc_mark_tree (level->parm_order);
3013 /* Create the predefined scalar types of C,
3014 and some nodes representing standard constants (0, 1, (void *) 0).
3015 Initialize the global binding level.
3016 Make definitions for built-in primitive functions. */
3018 void
3019 c_init_decl_processing ()
3021 tree endlink;
3022 tree ptr_ftype_void, ptr_ftype_ptr;
3024 /* Adds some ggc roots, and reserved words for c-parse.in. */
3025 c_parse_init ();
3027 current_function_decl = NULL;
3028 named_labels = NULL;
3029 current_binding_level = NULL_BINDING_LEVEL;
3030 free_binding_level = NULL_BINDING_LEVEL;
3032 /* Make the binding_level structure for global names. */
3033 pushlevel (0);
3034 global_binding_level = current_binding_level;
3036 build_common_tree_nodes (flag_signed_char);
3038 c_common_nodes_and_builtins ();
3040 boolean_type_node = integer_type_node;
3041 boolean_true_node = integer_one_node;
3042 boolean_false_node = integer_zero_node;
3044 /* With GCC, C99's _Bool is always of size 1. */
3045 c_bool_type_node = make_unsigned_type (CHAR_TYPE_SIZE);
3046 TREE_SET_CODE (c_bool_type_node, BOOLEAN_TYPE);
3047 TYPE_MAX_VALUE (c_bool_type_node) = build_int_2 (1, 0);
3048 TREE_TYPE (TYPE_MAX_VALUE (c_bool_type_node)) = c_bool_type_node;
3049 TYPE_PRECISION (c_bool_type_node) = 1;
3050 pushdecl (build_decl (TYPE_DECL, get_identifier ("_Bool"),
3051 c_bool_type_node));
3052 c_bool_false_node = build_int_2 (0, 0);
3053 TREE_TYPE (c_bool_false_node) = c_bool_type_node;
3054 c_bool_true_node = build_int_2 (1, 0);
3055 TREE_TYPE (c_bool_true_node) = c_bool_type_node;
3057 endlink = void_list_node;
3058 ptr_ftype_void = build_function_type (ptr_type_node, endlink);
3059 ptr_ftype_ptr
3060 = build_function_type (ptr_type_node,
3061 tree_cons (NULL_TREE, ptr_type_node, endlink));
3063 /* Types which are common to the fortran compiler and libf2c. When
3064 changing these, you also need to be concerned with f/com.h. */
3066 if (TYPE_PRECISION (float_type_node)
3067 == TYPE_PRECISION (long_integer_type_node))
3069 g77_integer_type_node = long_integer_type_node;
3070 g77_uinteger_type_node = long_unsigned_type_node;
3072 else if (TYPE_PRECISION (float_type_node)
3073 == TYPE_PRECISION (integer_type_node))
3075 g77_integer_type_node = integer_type_node;
3076 g77_uinteger_type_node = unsigned_type_node;
3078 else
3079 g77_integer_type_node = g77_uinteger_type_node = NULL_TREE;
3081 if (g77_integer_type_node != NULL_TREE)
3083 pushdecl (build_decl (TYPE_DECL, get_identifier ("__g77_integer"),
3084 g77_integer_type_node));
3085 pushdecl (build_decl (TYPE_DECL, get_identifier ("__g77_uinteger"),
3086 g77_uinteger_type_node));
3089 if (TYPE_PRECISION (float_type_node) * 2
3090 == TYPE_PRECISION (long_integer_type_node))
3092 g77_longint_type_node = long_integer_type_node;
3093 g77_ulongint_type_node = long_unsigned_type_node;
3095 else if (TYPE_PRECISION (float_type_node) * 2
3096 == TYPE_PRECISION (long_long_integer_type_node))
3098 g77_longint_type_node = long_long_integer_type_node;
3099 g77_ulongint_type_node = long_long_unsigned_type_node;
3101 else
3102 g77_longint_type_node = g77_ulongint_type_node = NULL_TREE;
3104 if (g77_longint_type_node != NULL_TREE)
3106 pushdecl (build_decl (TYPE_DECL, get_identifier ("__g77_longint"),
3107 g77_longint_type_node));
3108 pushdecl (build_decl (TYPE_DECL, get_identifier ("__g77_ulongint"),
3109 g77_ulongint_type_node));
3112 pedantic_lvalues = pedantic;
3114 make_fname_decl = c_make_fname_decl;
3115 start_fname_decls ();
3117 incomplete_decl_finalize_hook = finish_incomplete_decl;
3119 /* Record our roots. */
3121 ggc_add_tree_root (c_global_trees, CTI_MAX);
3122 ggc_add_root (&c_stmt_tree, 1, sizeof c_stmt_tree, mark_stmt_tree);
3123 ggc_add_tree_root (&c_scope_stmt_stack, 1);
3124 ggc_add_tree_root (&named_labels, 1);
3125 ggc_add_tree_root (&shadowed_labels, 1);
3126 ggc_add_root (&current_binding_level, 1, sizeof current_binding_level,
3127 mark_binding_level);
3128 ggc_add_root (&label_level_chain, 1, sizeof label_level_chain,
3129 mark_binding_level);
3130 ggc_add_tree_root (&static_ctors, 1);
3131 ggc_add_tree_root (&static_dtors, 1);
3134 /* Create the VAR_DECL for __FUNCTION__ etc. ID is the name to give the
3135 decl, NAME is the initialization string and TYPE_DEP indicates whether
3136 NAME depended on the type of the function. As we don't yet implement
3137 delayed emission of static data, we mark the decl as emitted
3138 so it is not placed in the output. Anything using it must therefore pull
3139 out the STRING_CST initializer directly. This does mean that these names
3140 are string merging candidates, which is wrong for C99's __func__. FIXME. */
3142 static tree
3143 c_make_fname_decl (id, type_dep)
3144 tree id;
3145 int type_dep;
3147 const char *name = fname_as_string (type_dep);
3148 tree decl, type, init;
3149 size_t length = strlen (name);
3151 type = build_array_type
3152 (build_qualified_type (char_type_node, TYPE_QUAL_CONST),
3153 build_index_type (size_int (length)));
3155 decl = build_decl (VAR_DECL, id, type);
3156 /* We don't push the decl, so have to set its context here. */
3157 DECL_CONTEXT (decl) = current_function_decl;
3159 TREE_STATIC (decl) = 1;
3160 TREE_READONLY (decl) = 1;
3161 DECL_ARTIFICIAL (decl) = 1;
3163 init = build_string (length + 1, name);
3164 TREE_TYPE (init) = type;
3165 DECL_INITIAL (decl) = init;
3167 TREE_USED (decl) = 1;
3169 finish_decl (decl, init, NULL_TREE);
3171 return decl;
3174 /* Return a definition for a builtin function named NAME and whose data type
3175 is TYPE. TYPE should be a function type with argument types.
3176 FUNCTION_CODE tells later passes how to compile calls to this function.
3177 See tree.h for its possible values.
3179 If LIBRARY_NAME is nonzero, use that for DECL_ASSEMBLER_NAME,
3180 the name to be called if we can't opencode the function. */
3182 tree
3183 builtin_function (name, type, function_code, class, library_name)
3184 const char *name;
3185 tree type;
3186 int function_code;
3187 enum built_in_class class;
3188 const char *library_name;
3190 tree decl = build_decl (FUNCTION_DECL, get_identifier (name), type);
3191 DECL_EXTERNAL (decl) = 1;
3192 TREE_PUBLIC (decl) = 1;
3193 /* If -traditional, permit redefining a builtin function any way you like.
3194 (Though really, if the program redefines these functions,
3195 it probably won't work right unless compiled with -fno-builtin.) */
3196 if (flag_traditional && name[0] != '_')
3197 DECL_BUILT_IN_NONANSI (decl) = 1;
3198 if (library_name)
3199 SET_DECL_ASSEMBLER_NAME (decl, get_identifier (library_name));
3200 make_decl_rtl (decl, NULL);
3201 pushdecl (decl);
3202 DECL_BUILT_IN_CLASS (decl) = class;
3203 DECL_FUNCTION_CODE (decl) = function_code;
3205 /* Warn if a function in the namespace for users
3206 is used without an occasion to consider it declared. */
3207 if (name[0] != '_' || name[1] != '_')
3208 C_DECL_ANTICIPATED (decl) = 1;
3210 /* Possibly apply some default attributes to this built-in function. */
3211 decl_attributes (&decl, NULL_TREE, 0);
3213 return decl;
3216 /* Apply default attributes to a function, if a system function with default
3217 attributes. */
3219 void
3220 insert_default_attributes (decl)
3221 tree decl;
3223 if (!TREE_PUBLIC (decl))
3224 return;
3225 c_common_insert_default_attributes (decl);
3228 /* Called when a declaration is seen that contains no names to declare.
3229 If its type is a reference to a structure, union or enum inherited
3230 from a containing scope, shadow that tag name for the current scope
3231 with a forward reference.
3232 If its type defines a new named structure or union
3233 or defines an enum, it is valid but we need not do anything here.
3234 Otherwise, it is an error. */
3236 void
3237 shadow_tag (declspecs)
3238 tree declspecs;
3240 shadow_tag_warned (declspecs, 0);
3243 void
3244 shadow_tag_warned (declspecs, warned)
3245 tree declspecs;
3246 int warned;
3247 /* 1 => we have done a pedwarn. 2 => we have done a warning, but
3248 no pedwarn. */
3250 int found_tag = 0;
3251 tree link;
3252 tree specs, attrs;
3254 pending_invalid_xref = 0;
3256 /* Remove the attributes from declspecs, since they will confuse the
3257 following code. */
3258 split_specs_attrs (declspecs, &specs, &attrs);
3260 for (link = specs; link; link = TREE_CHAIN (link))
3262 tree value = TREE_VALUE (link);
3263 enum tree_code code = TREE_CODE (value);
3265 if (code == RECORD_TYPE || code == UNION_TYPE || code == ENUMERAL_TYPE)
3266 /* Used to test also that TYPE_SIZE (value) != 0.
3267 That caused warning for `struct foo;' at top level in the file. */
3269 tree name = lookup_tag_reverse (value);
3270 tree t;
3272 found_tag++;
3274 if (name == 0)
3276 if (warned != 1 && code != ENUMERAL_TYPE)
3277 /* Empty unnamed enum OK */
3279 pedwarn ("unnamed struct/union that defines no instances");
3280 warned = 1;
3283 else
3285 t = lookup_tag (code, name, current_binding_level, 1);
3287 if (t == 0)
3289 t = make_node (code);
3290 pushtag (name, t);
3294 else
3296 if (!warned && ! in_system_header)
3298 warning ("useless keyword or type name in empty declaration");
3299 warned = 2;
3304 if (found_tag > 1)
3305 error ("two types specified in one empty declaration");
3307 if (warned != 1)
3309 if (found_tag == 0)
3310 pedwarn ("empty declaration");
3314 /* Construct an array declarator. EXPR is the expression inside [], or
3315 NULL_TREE. QUALS are the type qualifiers inside the [] (to be applied
3316 to the pointer to which a parameter array is converted). STATIC_P is
3317 non-zero if "static" is inside the [], zero otherwise. VLA_UNSPEC_P
3318 is non-zero is the array is [*], a VLA of unspecified length which is
3319 nevertheless a complete type (not currently implemented by GCC),
3320 zero otherwise. The declarator is constructed as an ARRAY_REF
3321 (to be decoded by grokdeclarator), whose operand 0 is what's on the
3322 left of the [] (filled by in set_array_declarator_type) and operand 1
3323 is the expression inside; whose TREE_TYPE is the type qualifiers and
3324 which has TREE_STATIC set if "static" is used. */
3326 tree
3327 build_array_declarator (expr, quals, static_p, vla_unspec_p)
3328 tree expr;
3329 tree quals;
3330 int static_p;
3331 int vla_unspec_p;
3333 tree decl;
3334 decl = build_nt (ARRAY_REF, NULL_TREE, expr);
3335 TREE_TYPE (decl) = quals;
3336 TREE_STATIC (decl) = (static_p ? 1 : 0);
3337 if (pedantic && !flag_isoc99)
3339 if (static_p || quals != NULL_TREE)
3340 pedwarn ("ISO C89 does not support `static' or type qualifiers in parameter array declarators");
3341 if (vla_unspec_p)
3342 pedwarn ("ISO C89 does not support `[*]' array declarators");
3344 if (vla_unspec_p)
3345 warning ("GCC does not yet properly implement `[*]' array declarators");
3346 return decl;
3349 /* Set the type of an array declarator. DECL is the declarator, as
3350 constructed by build_array_declarator; TYPE is what appears on the left
3351 of the [] and goes in operand 0. ABSTRACT_P is non-zero if it is an
3352 abstract declarator, zero otherwise; this is used to reject static and
3353 type qualifiers in abstract declarators, where they are not in the
3354 C99 grammar. */
3356 tree
3357 set_array_declarator_type (decl, type, abstract_p)
3358 tree decl;
3359 tree type;
3360 int abstract_p;
3362 TREE_OPERAND (decl, 0) = type;
3363 if (abstract_p && (TREE_TYPE (decl) != NULL_TREE || TREE_STATIC (decl)))
3364 error ("static or type qualifiers in abstract declarator");
3365 return decl;
3368 /* Decode a "typename", such as "int **", returning a ..._TYPE node. */
3370 tree
3371 groktypename (typename)
3372 tree typename;
3374 tree specs, attrs;
3376 if (TREE_CODE (typename) != TREE_LIST)
3377 return typename;
3379 split_specs_attrs (TREE_PURPOSE (typename), &specs, &attrs);
3381 typename = grokdeclarator (TREE_VALUE (typename), specs, TYPENAME, 0);
3383 /* Apply attributes. */
3384 decl_attributes (&typename, attrs, 0);
3386 return typename;
3389 /* Return a PARM_DECL node for a given pair of specs and declarator. */
3391 tree
3392 groktypename_in_parm_context (typename)
3393 tree typename;
3395 if (TREE_CODE (typename) != TREE_LIST)
3396 return typename;
3397 return grokdeclarator (TREE_VALUE (typename),
3398 TREE_PURPOSE (typename),
3399 PARM, 0);
3402 /* Decode a declarator in an ordinary declaration or data definition.
3403 This is called as soon as the type information and variable name
3404 have been parsed, before parsing the initializer if any.
3405 Here we create the ..._DECL node, fill in its type,
3406 and put it on the list of decls for the current context.
3407 The ..._DECL node is returned as the value.
3409 Exception: for arrays where the length is not specified,
3410 the type is left null, to be filled in by `finish_decl'.
3412 Function definitions do not come here; they go to start_function
3413 instead. However, external and forward declarations of functions
3414 do go through here. Structure field declarations are done by
3415 grokfield and not through here. */
3417 tree
3418 start_decl (declarator, declspecs, initialized, attributes)
3419 tree declarator, declspecs;
3420 int initialized;
3421 tree attributes;
3423 tree decl = grokdeclarator (declarator, declspecs,
3424 NORMAL, initialized);
3425 tree tem;
3427 if (warn_main > 0 && TREE_CODE (decl) != FUNCTION_DECL
3428 && MAIN_NAME_P (DECL_NAME (decl)))
3429 warning_with_decl (decl, "`%s' is usually a function");
3431 if (initialized)
3432 /* Is it valid for this decl to have an initializer at all?
3433 If not, set INITIALIZED to zero, which will indirectly
3434 tell `finish_decl' to ignore the initializer once it is parsed. */
3435 switch (TREE_CODE (decl))
3437 case TYPE_DECL:
3438 /* typedef foo = bar means give foo the same type as bar.
3439 We haven't parsed bar yet, so `finish_decl' will fix that up.
3440 Any other case of an initialization in a TYPE_DECL is an error. */
3441 if (pedantic || list_length (declspecs) > 1)
3443 error ("typedef `%s' is initialized",
3444 IDENTIFIER_POINTER (DECL_NAME (decl)));
3445 initialized = 0;
3447 break;
3449 case FUNCTION_DECL:
3450 error ("function `%s' is initialized like a variable",
3451 IDENTIFIER_POINTER (DECL_NAME (decl)));
3452 initialized = 0;
3453 break;
3455 case PARM_DECL:
3456 /* DECL_INITIAL in a PARM_DECL is really DECL_ARG_TYPE. */
3457 error ("parameter `%s' is initialized",
3458 IDENTIFIER_POINTER (DECL_NAME (decl)));
3459 initialized = 0;
3460 break;
3462 default:
3463 /* Don't allow initializations for incomplete types
3464 except for arrays which might be completed by the initialization. */
3466 /* This can happen if the array size is an undefined macro. We already
3467 gave a warning, so we don't need another one. */
3468 if (TREE_TYPE (decl) == error_mark_node)
3469 initialized = 0;
3470 else if (COMPLETE_TYPE_P (TREE_TYPE (decl)))
3472 /* A complete type is ok if size is fixed. */
3474 if (TREE_CODE (TYPE_SIZE (TREE_TYPE (decl))) != INTEGER_CST
3475 || C_DECL_VARIABLE_SIZE (decl))
3477 error ("variable-sized object may not be initialized");
3478 initialized = 0;
3481 else if (TREE_CODE (TREE_TYPE (decl)) != ARRAY_TYPE)
3483 error ("variable `%s' has initializer but incomplete type",
3484 IDENTIFIER_POINTER (DECL_NAME (decl)));
3485 initialized = 0;
3487 else if (!COMPLETE_TYPE_P (TREE_TYPE (TREE_TYPE (decl))))
3489 error ("elements of array `%s' have incomplete type",
3490 IDENTIFIER_POINTER (DECL_NAME (decl)));
3491 initialized = 0;
3495 if (initialized)
3497 #if 0
3498 /* Seems redundant with grokdeclarator. */
3499 if (current_binding_level != global_binding_level
3500 && DECL_EXTERNAL (decl)
3501 && TREE_CODE (decl) != FUNCTION_DECL)
3502 warning ("declaration of `%s' has `extern' and is initialized",
3503 IDENTIFIER_POINTER (DECL_NAME (decl)));
3504 #endif
3505 DECL_EXTERNAL (decl) = 0;
3506 if (current_binding_level == global_binding_level)
3507 TREE_STATIC (decl) = 1;
3509 /* Tell `pushdecl' this is an initialized decl
3510 even though we don't yet have the initializer expression.
3511 Also tell `finish_decl' it may store the real initializer. */
3512 DECL_INITIAL (decl) = error_mark_node;
3515 /* If this is a function declaration, write a record describing it to the
3516 prototypes file (if requested). */
3518 if (TREE_CODE (decl) == FUNCTION_DECL)
3519 gen_aux_info_record (decl, 0, 0, TYPE_ARG_TYPES (TREE_TYPE (decl)) != 0);
3521 /* ANSI specifies that a tentative definition which is not merged with
3522 a non-tentative definition behaves exactly like a definition with an
3523 initializer equal to zero. (Section 3.7.2)
3524 -fno-common gives strict ANSI behavior. Usually you don't want it.
3525 This matters only for variables with external linkage. */
3526 if (! flag_no_common || ! TREE_PUBLIC (decl))
3527 DECL_COMMON (decl) = 1;
3529 /* Set attributes here so if duplicate decl, will have proper attributes. */
3530 decl_attributes (&decl, attributes, 0);
3532 if (TREE_CODE (decl) == FUNCTION_DECL
3533 && DECL_DECLARED_INLINE_P (decl)
3534 && DECL_UNINLINABLE (decl)
3535 && lookup_attribute ("noinline", DECL_ATTRIBUTES (decl)))
3536 warning_with_decl (decl,
3537 "inline function `%s' given attribute noinline");
3539 /* Add this decl to the current binding level.
3540 TEM may equal DECL or it may be a previous decl of the same name. */
3541 tem = pushdecl (decl);
3543 /* For a local variable, define the RTL now. */
3544 if (current_binding_level != global_binding_level
3545 /* But not if this is a duplicate decl
3546 and we preserved the rtl from the previous one
3547 (which may or may not happen). */
3548 && !DECL_RTL_SET_P (tem)
3549 && !DECL_CONTEXT (tem))
3551 if (TREE_TYPE (tem) != error_mark_node
3552 && COMPLETE_TYPE_P (TREE_TYPE (tem)))
3553 expand_decl (tem);
3554 else if (TREE_CODE (TREE_TYPE (tem)) == ARRAY_TYPE
3555 && DECL_INITIAL (tem) != 0)
3556 expand_decl (tem);
3559 return tem;
3562 /* Finish processing of a declaration;
3563 install its initial value.
3564 If the length of an array type is not known before,
3565 it must be determined now, from the initial value, or it is an error. */
3567 void
3568 finish_decl (decl, init, asmspec_tree)
3569 tree decl, init;
3570 tree asmspec_tree;
3572 tree type = TREE_TYPE (decl);
3573 int was_incomplete = (DECL_SIZE (decl) == 0);
3574 const char *asmspec = 0;
3576 /* If a name was specified, get the string. */
3577 if (asmspec_tree)
3578 asmspec = TREE_STRING_POINTER (asmspec_tree);
3580 /* If `start_decl' didn't like having an initialization, ignore it now. */
3581 if (init != 0 && DECL_INITIAL (decl) == 0)
3582 init = 0;
3584 /* Don't crash if parm is initialized. */
3585 if (TREE_CODE (decl) == PARM_DECL)
3586 init = 0;
3588 if (init)
3590 if (TREE_CODE (decl) != TYPE_DECL)
3591 store_init_value (decl, init);
3592 else
3594 /* typedef foo = bar; store the type of bar as the type of foo. */
3595 TREE_TYPE (decl) = TREE_TYPE (init);
3596 DECL_INITIAL (decl) = init = 0;
3600 /* Deduce size of array from initialization, if not already known */
3601 if (TREE_CODE (type) == ARRAY_TYPE
3602 && TYPE_DOMAIN (type) == 0
3603 && TREE_CODE (decl) != TYPE_DECL)
3605 int do_default
3606 = (TREE_STATIC (decl)
3607 /* Even if pedantic, an external linkage array
3608 may have incomplete type at first. */
3609 ? pedantic && !TREE_PUBLIC (decl)
3610 : !DECL_EXTERNAL (decl));
3611 int failure
3612 = complete_array_type (type, DECL_INITIAL (decl), do_default);
3614 /* Get the completed type made by complete_array_type. */
3615 type = TREE_TYPE (decl);
3617 if (failure == 1)
3618 error_with_decl (decl, "initializer fails to determine size of `%s'");
3620 else if (failure == 2)
3622 if (do_default)
3623 error_with_decl (decl, "array size missing in `%s'");
3624 /* If a `static' var's size isn't known,
3625 make it extern as well as static, so it does not get
3626 allocated.
3627 If it is not `static', then do not mark extern;
3628 finish_incomplete_decl will give it a default size
3629 and it will get allocated. */
3630 else if (!pedantic && TREE_STATIC (decl) && ! TREE_PUBLIC (decl))
3631 DECL_EXTERNAL (decl) = 1;
3634 /* TYPE_MAX_VALUE is always one less than the number of elements
3635 in the array, because we start counting at zero. Therefore,
3636 warn only if the value is less than zero. */
3637 else if (pedantic && TYPE_DOMAIN (type) != 0
3638 && tree_int_cst_sgn (TYPE_MAX_VALUE (TYPE_DOMAIN (type))) < 0)
3639 error_with_decl (decl, "zero or negative size array `%s'");
3641 layout_decl (decl, 0);
3644 if (TREE_CODE (decl) == VAR_DECL)
3646 if (DECL_SIZE (decl) == 0 && TREE_TYPE (decl) != error_mark_node
3647 && COMPLETE_TYPE_P (TREE_TYPE (decl)))
3648 layout_decl (decl, 0);
3650 if (DECL_SIZE (decl) == 0
3651 /* Don't give an error if we already gave one earlier. */
3652 && TREE_TYPE (decl) != error_mark_node
3653 && (TREE_STATIC (decl)
3655 /* A static variable with an incomplete type
3656 is an error if it is initialized.
3657 Also if it is not file scope.
3658 Otherwise, let it through, but if it is not `extern'
3659 then it may cause an error message later. */
3660 (DECL_INITIAL (decl) != 0
3661 || DECL_CONTEXT (decl) != 0)
3663 /* An automatic variable with an incomplete type
3664 is an error. */
3665 !DECL_EXTERNAL (decl)))
3667 error_with_decl (decl, "storage size of `%s' isn't known");
3668 TREE_TYPE (decl) = error_mark_node;
3671 if ((DECL_EXTERNAL (decl) || TREE_STATIC (decl))
3672 && DECL_SIZE (decl) != 0)
3674 if (TREE_CODE (DECL_SIZE (decl)) == INTEGER_CST)
3675 constant_expression_warning (DECL_SIZE (decl));
3676 else
3677 error_with_decl (decl, "storage size of `%s' isn't constant");
3680 if (TREE_USED (type))
3681 TREE_USED (decl) = 1;
3684 /* If this is a function and an assembler name is specified, it isn't
3685 builtin any more. Also reset DECL_RTL so we can give it its new
3686 name. */
3687 if (TREE_CODE (decl) == FUNCTION_DECL && asmspec)
3689 DECL_BUILT_IN_CLASS (decl) = NOT_BUILT_IN;
3690 SET_DECL_RTL (decl, NULL_RTX);
3691 SET_DECL_ASSEMBLER_NAME (decl, get_identifier (asmspec));
3694 /* Output the assembler code and/or RTL code for variables and functions,
3695 unless the type is an undefined structure or union.
3696 If not, it will get done when the type is completed. */
3698 if (TREE_CODE (decl) == VAR_DECL || TREE_CODE (decl) == FUNCTION_DECL)
3700 /* This is a no-op in c-lang.c or something real in objc-actions.c. */
3701 maybe_objc_check_decl (decl);
3703 if (!DECL_CONTEXT (decl))
3705 if (DECL_INITIAL (decl) == NULL_TREE
3706 || DECL_INITIAL (decl) == error_mark_node)
3707 /* Don't output anything
3708 when a tentative file-scope definition is seen.
3709 But at end of compilation, do output code for them. */
3710 DECL_DEFER_OUTPUT (decl) = 1;
3711 rest_of_decl_compilation (decl, asmspec,
3712 (DECL_CONTEXT (decl) == 0
3713 || TREE_ASM_WRITTEN (decl)), 0);
3715 else
3717 /* This is a local variable. If there is an ASMSPEC, the
3718 user has requested that we handle it specially. */
3719 if (asmspec)
3721 /* In conjunction with an ASMSPEC, the `register'
3722 keyword indicates that we should place the variable
3723 in a particular register. */
3724 if (DECL_REGISTER (decl))
3725 DECL_C_HARD_REGISTER (decl) = 1;
3727 /* If this is not a static variable, issue a warning.
3728 It doesn't make any sense to give an ASMSPEC for an
3729 ordinary, non-register local variable. Historically,
3730 GCC has accepted -- but ignored -- the ASMSPEC in
3731 this case. */
3732 if (TREE_CODE (decl) == VAR_DECL
3733 && !DECL_REGISTER (decl)
3734 && !TREE_STATIC (decl))
3735 warning_with_decl (decl,
3736 "ignoring asm-specifier for non-static local variable `%s'");
3737 else
3738 SET_DECL_ASSEMBLER_NAME (decl, get_identifier (asmspec));
3741 if (TREE_CODE (decl) != FUNCTION_DECL)
3742 add_decl_stmt (decl);
3745 if (DECL_CONTEXT (decl) != 0)
3747 /* Recompute the RTL of a local array now
3748 if it used to be an incomplete type. */
3749 if (was_incomplete
3750 && ! TREE_STATIC (decl) && ! DECL_EXTERNAL (decl))
3752 /* If we used it already as memory, it must stay in memory. */
3753 TREE_ADDRESSABLE (decl) = TREE_USED (decl);
3754 /* If it's still incomplete now, no init will save it. */
3755 if (DECL_SIZE (decl) == 0)
3756 DECL_INITIAL (decl) = 0;
3761 if (TREE_CODE (decl) == TYPE_DECL)
3763 /* This is a no-op in c-lang.c or something real in objc-actions.c. */
3764 maybe_objc_check_decl (decl);
3765 rest_of_decl_compilation (decl, NULL, DECL_CONTEXT (decl) == 0, 0);
3768 /* At the end of a declaration, throw away any variable type sizes
3769 of types defined inside that declaration. There is no use
3770 computing them in the following function definition. */
3771 if (current_binding_level == global_binding_level)
3772 get_pending_sizes ();
3775 /* If DECL has a cleanup, build and return that cleanup here.
3776 This is a callback called by expand_expr. */
3778 tree
3779 maybe_build_cleanup (decl)
3780 tree decl ATTRIBUTE_UNUSED;
3782 /* There are no cleanups in C. */
3783 return NULL_TREE;
3786 /* Given a parsed parameter declaration,
3787 decode it into a PARM_DECL and push that on the current binding level.
3788 Also, for the sake of forward parm decls,
3789 record the given order of parms in `parm_order'. */
3791 void
3792 push_parm_decl (parm)
3793 tree parm;
3795 tree decl;
3796 int old_immediate_size_expand = immediate_size_expand;
3797 /* Don't try computing parm sizes now -- wait till fn is called. */
3798 immediate_size_expand = 0;
3800 decl = grokdeclarator (TREE_VALUE (TREE_PURPOSE (parm)),
3801 TREE_PURPOSE (TREE_PURPOSE (parm)), PARM, 0);
3802 decl_attributes (&decl, TREE_VALUE (parm), 0);
3804 #if 0
3805 if (DECL_NAME (decl))
3807 tree olddecl;
3808 olddecl = lookup_name (DECL_NAME (decl));
3809 if (pedantic && olddecl != 0 && TREE_CODE (olddecl) == TYPE_DECL)
3810 pedwarn_with_decl (decl,
3811 "ISO C forbids parameter `%s' shadowing typedef");
3813 #endif
3815 decl = pushdecl (decl);
3817 immediate_size_expand = old_immediate_size_expand;
3819 current_binding_level->parm_order
3820 = tree_cons (NULL_TREE, decl, current_binding_level->parm_order);
3822 /* Add this decl to the current binding level. */
3823 finish_decl (decl, NULL_TREE, NULL_TREE);
3826 /* Clear the given order of parms in `parm_order'.
3827 Used at start of parm list,
3828 and also at semicolon terminating forward decls. */
3830 void
3831 clear_parm_order ()
3833 current_binding_level->parm_order = NULL_TREE;
3836 /* Build a COMPOUND_LITERAL_EXPR. TYPE is the type given in the compound
3837 literal, which may be an incomplete array type completed by the
3838 initializer; INIT is a CONSTRUCTOR that initializes the compound
3839 literal. */
3841 tree
3842 build_compound_literal (type, init)
3843 tree type;
3844 tree init;
3846 /* We do not use start_decl here because we have a type, not a declarator;
3847 and do not use finish_decl because the decl should be stored inside
3848 the COMPOUND_LITERAL_EXPR rather than added elsewhere as a DECL_STMT. */
3849 tree decl = build_decl (VAR_DECL, NULL_TREE, type);
3850 tree complit;
3851 tree stmt;
3852 DECL_EXTERNAL (decl) = 0;
3853 TREE_PUBLIC (decl) = 0;
3854 TREE_STATIC (decl) = (current_binding_level == global_binding_level);
3855 DECL_CONTEXT (decl) = current_function_decl;
3856 TREE_USED (decl) = 1;
3857 TREE_TYPE (decl) = type;
3858 store_init_value (decl, init);
3860 if (TREE_CODE (type) == ARRAY_TYPE && !COMPLETE_TYPE_P (type))
3862 int failure = complete_array_type (type, DECL_INITIAL (decl), 1);
3863 if (failure)
3864 abort ();
3867 type = TREE_TYPE (decl);
3868 if (type == error_mark_node || !COMPLETE_TYPE_P (type))
3869 return error_mark_node;
3871 stmt = build_stmt (DECL_STMT, decl);
3872 complit = build1 (COMPOUND_LITERAL_EXPR, TREE_TYPE (decl), stmt);
3873 TREE_SIDE_EFFECTS (complit) = 1;
3875 layout_decl (decl, 0);
3877 if (TREE_STATIC (decl))
3879 /* This decl needs a name for the assembler output. We also need
3880 a unique suffix to be added to the name, for which DECL_CONTEXT
3881 must be set. */
3882 DECL_NAME (decl) = get_identifier ("__compound_literal");
3883 DECL_CONTEXT (decl) = complit;
3884 rest_of_decl_compilation (decl, NULL, 1, 0);
3885 DECL_CONTEXT (decl) = NULL_TREE;
3888 return complit;
3891 /* Make TYPE a complete type based on INITIAL_VALUE.
3892 Return 0 if successful, 1 if INITIAL_VALUE can't be deciphered,
3893 2 if there was no information (in which case assume 1 if DO_DEFAULT). */
3896 complete_array_type (type, initial_value, do_default)
3897 tree type;
3898 tree initial_value;
3899 int do_default;
3901 tree maxindex = NULL_TREE;
3902 int value = 0;
3904 if (initial_value)
3906 /* Note MAXINDEX is really the maximum index,
3907 one less than the size. */
3908 if (TREE_CODE (initial_value) == STRING_CST)
3910 int eltsize
3911 = int_size_in_bytes (TREE_TYPE (TREE_TYPE (initial_value)));
3912 maxindex = build_int_2 ((TREE_STRING_LENGTH (initial_value)
3913 / eltsize) - 1, 0);
3915 else if (TREE_CODE (initial_value) == CONSTRUCTOR)
3917 tree elts = CONSTRUCTOR_ELTS (initial_value);
3918 maxindex = build_int_2 (-1, -1);
3919 for (; elts; elts = TREE_CHAIN (elts))
3921 if (TREE_PURPOSE (elts))
3922 maxindex = TREE_PURPOSE (elts);
3923 else
3924 maxindex = fold (build (PLUS_EXPR, integer_type_node,
3925 maxindex, integer_one_node));
3927 maxindex = copy_node (maxindex);
3929 else
3931 /* Make an error message unless that happened already. */
3932 if (initial_value != error_mark_node)
3933 value = 1;
3935 /* Prevent further error messages. */
3936 maxindex = build_int_2 (0, 0);
3940 if (!maxindex)
3942 if (do_default)
3943 maxindex = build_int_2 (0, 0);
3944 value = 2;
3947 if (maxindex)
3949 TYPE_DOMAIN (type) = build_index_type (maxindex);
3950 if (!TREE_TYPE (maxindex))
3951 TREE_TYPE (maxindex) = TYPE_DOMAIN (type);
3954 /* Lay out the type now that we can get the real answer. */
3956 layout_type (type);
3958 return value;
3961 /* Given declspecs and a declarator,
3962 determine the name and type of the object declared
3963 and construct a ..._DECL node for it.
3964 (In one case we can return a ..._TYPE node instead.
3965 For invalid input we sometimes return 0.)
3967 DECLSPECS is a chain of tree_list nodes whose value fields
3968 are the storage classes and type specifiers.
3970 DECL_CONTEXT says which syntactic context this declaration is in:
3971 NORMAL for most contexts. Make a VAR_DECL or FUNCTION_DECL or TYPE_DECL.
3972 FUNCDEF for a function definition. Like NORMAL but a few different
3973 error messages in each case. Return value may be zero meaning
3974 this definition is too screwy to try to parse.
3975 PARM for a parameter declaration (either within a function prototype
3976 or before a function body). Make a PARM_DECL, or return void_type_node.
3977 TYPENAME if for a typename (in a cast or sizeof).
3978 Don't make a DECL node; just return the ..._TYPE node.
3979 FIELD for a struct or union field; make a FIELD_DECL.
3980 BITFIELD for a field with specified width.
3981 INITIALIZED is 1 if the decl has an initializer.
3983 In the TYPENAME case, DECLARATOR is really an absolute declarator.
3984 It may also be so in the PARM case, for a prototype where the
3985 argument type is specified but not the name.
3987 This function is where the complicated C meanings of `static'
3988 and `extern' are interpreted. */
3990 static tree
3991 grokdeclarator (declarator, declspecs, decl_context, initialized)
3992 tree declspecs;
3993 tree declarator;
3994 enum decl_context decl_context;
3995 int initialized;
3997 int specbits = 0;
3998 tree spec;
3999 tree type = NULL_TREE;
4000 int longlong = 0;
4001 int constp;
4002 int restrictp;
4003 int volatilep;
4004 int type_quals = TYPE_UNQUALIFIED;
4005 int inlinep;
4006 int explicit_int = 0;
4007 int explicit_char = 0;
4008 int defaulted_int = 0;
4009 tree typedef_decl = 0;
4010 const char *name;
4011 tree typedef_type = 0;
4012 int funcdef_flag = 0;
4013 enum tree_code innermost_code = ERROR_MARK;
4014 int bitfield = 0;
4015 int size_varies = 0;
4016 tree decl_attr = NULL_TREE;
4017 tree array_ptr_quals = NULL_TREE;
4018 int array_parm_static = 0;
4019 tree returned_attrs = NULL_TREE;
4021 if (decl_context == BITFIELD)
4022 bitfield = 1, decl_context = FIELD;
4024 if (decl_context == FUNCDEF)
4025 funcdef_flag = 1, decl_context = NORMAL;
4027 /* Look inside a declarator for the name being declared
4028 and get it as a string, for an error message. */
4030 tree decl = declarator;
4031 name = 0;
4033 while (decl)
4034 switch (TREE_CODE (decl))
4036 case ARRAY_REF:
4037 case INDIRECT_REF:
4038 case CALL_EXPR:
4039 innermost_code = TREE_CODE (decl);
4040 decl = TREE_OPERAND (decl, 0);
4041 break;
4043 case TREE_LIST:
4044 decl = TREE_VALUE (decl);
4045 break;
4047 case IDENTIFIER_NODE:
4048 name = IDENTIFIER_POINTER (decl);
4049 decl = 0;
4050 break;
4052 default:
4053 abort ();
4055 if (name == 0)
4056 name = "type name";
4059 /* A function definition's declarator must have the form of
4060 a function declarator. */
4062 if (funcdef_flag && innermost_code != CALL_EXPR)
4063 return 0;
4065 /* Anything declared one level down from the top level
4066 must be one of the parameters of a function
4067 (because the body is at least two levels down). */
4069 /* If this looks like a function definition, make it one,
4070 even if it occurs where parms are expected.
4071 Then store_parm_decls will reject it and not use it as a parm. */
4072 if (decl_context == NORMAL && !funcdef_flag
4073 && current_binding_level->parm_flag)
4074 decl_context = PARM;
4076 /* Look through the decl specs and record which ones appear.
4077 Some typespecs are defined as built-in typenames.
4078 Others, the ones that are modifiers of other types,
4079 are represented by bits in SPECBITS: set the bits for
4080 the modifiers that appear. Storage class keywords are also in SPECBITS.
4082 If there is a typedef name or a type, store the type in TYPE.
4083 This includes builtin typedefs such as `int'.
4085 Set EXPLICIT_INT or EXPLICIT_CHAR if the type is `int' or `char'
4086 and did not come from a user typedef.
4088 Set LONGLONG if `long' is mentioned twice. */
4090 for (spec = declspecs; spec; spec = TREE_CHAIN (spec))
4092 tree id = TREE_VALUE (spec);
4094 if (id == ridpointers[(int) RID_INT])
4095 explicit_int = 1;
4096 if (id == ridpointers[(int) RID_CHAR])
4097 explicit_char = 1;
4099 if (TREE_CODE (id) == IDENTIFIER_NODE && C_IS_RESERVED_WORD (id))
4101 enum rid i = C_RID_CODE (id);
4102 if ((int) i <= (int) RID_LAST_MODIFIER)
4104 if (i == RID_LONG && (specbits & (1 << (int) i)))
4106 if (longlong)
4107 error ("`long long long' is too long for GCC");
4108 else
4110 if (pedantic && !flag_isoc99 && ! in_system_header
4111 && warn_long_long)
4112 pedwarn ("ISO C89 does not support `long long'");
4113 longlong = 1;
4116 else if (specbits & (1 << (int) i))
4117 pedwarn ("duplicate `%s'", IDENTIFIER_POINTER (id));
4118 specbits |= 1 << (int) i;
4119 goto found;
4122 if (type)
4123 error ("two or more data types in declaration of `%s'", name);
4124 /* Actual typedefs come to us as TYPE_DECL nodes. */
4125 else if (TREE_CODE (id) == TYPE_DECL)
4127 type = TREE_TYPE (id);
4128 decl_attr = DECL_ATTRIBUTES (id);
4129 typedef_decl = id;
4131 /* Built-in types come as identifiers. */
4132 else if (TREE_CODE (id) == IDENTIFIER_NODE)
4134 tree t = lookup_name (id);
4135 if (TREE_TYPE (t) == error_mark_node)
4137 else if (!t || TREE_CODE (t) != TYPE_DECL)
4138 error ("`%s' fails to be a typedef or built in type",
4139 IDENTIFIER_POINTER (id));
4140 else
4142 type = TREE_TYPE (t);
4143 typedef_decl = t;
4146 else if (TREE_CODE (id) != ERROR_MARK)
4147 type = id;
4149 found:
4153 typedef_type = type;
4154 if (type)
4155 size_varies = C_TYPE_VARIABLE_SIZE (type);
4157 /* No type at all: default to `int', and set DEFAULTED_INT
4158 because it was not a user-defined typedef. */
4160 if (type == 0)
4162 if ((! (specbits & ((1 << (int) RID_LONG) | (1 << (int) RID_SHORT)
4163 | (1 << (int) RID_SIGNED)
4164 | (1 << (int) RID_UNSIGNED)
4165 | (1 << (int) RID_COMPLEX))))
4166 /* Don't warn about typedef foo = bar. */
4167 && ! (specbits & (1 << (int) RID_TYPEDEF) && initialized)
4168 && ! in_system_header)
4170 /* Issue a warning if this is an ISO C 99 program or if -Wreturn-type
4171 and this is a function, or if -Wimplicit; prefer the former
4172 warning since it is more explicit. */
4173 if ((warn_implicit_int || warn_return_type || flag_isoc99)
4174 && funcdef_flag)
4175 warn_about_return_type = 1;
4176 else if (warn_implicit_int || flag_isoc99)
4177 pedwarn_c99 ("type defaults to `int' in declaration of `%s'",
4178 name);
4181 defaulted_int = 1;
4182 type = integer_type_node;
4185 /* Now process the modifiers that were specified
4186 and check for invalid combinations. */
4188 /* Long double is a special combination. */
4190 if ((specbits & 1 << (int) RID_LONG) && ! longlong
4191 && TYPE_MAIN_VARIANT (type) == double_type_node)
4193 specbits &= ~(1 << (int) RID_LONG);
4194 type = long_double_type_node;
4197 /* Check all other uses of type modifiers. */
4199 if (specbits & ((1 << (int) RID_LONG) | (1 << (int) RID_SHORT)
4200 | (1 << (int) RID_UNSIGNED) | (1 << (int) RID_SIGNED)))
4202 int ok = 0;
4204 if ((specbits & 1 << (int) RID_LONG)
4205 && (specbits & 1 << (int) RID_SHORT))
4206 error ("both long and short specified for `%s'", name);
4207 else if (((specbits & 1 << (int) RID_LONG)
4208 || (specbits & 1 << (int) RID_SHORT))
4209 && explicit_char)
4210 error ("long or short specified with char for `%s'", name);
4211 else if (((specbits & 1 << (int) RID_LONG)
4212 || (specbits & 1 << (int) RID_SHORT))
4213 && TREE_CODE (type) == REAL_TYPE)
4215 static int already = 0;
4217 error ("long or short specified with floating type for `%s'", name);
4218 if (! already && ! pedantic)
4220 error ("the only valid combination is `long double'");
4221 already = 1;
4224 else if ((specbits & 1 << (int) RID_SIGNED)
4225 && (specbits & 1 << (int) RID_UNSIGNED))
4226 error ("both signed and unsigned specified for `%s'", name);
4227 else if (TREE_CODE (type) != INTEGER_TYPE)
4228 error ("long, short, signed or unsigned invalid for `%s'", name);
4229 else
4231 ok = 1;
4232 if (!explicit_int && !defaulted_int && !explicit_char && pedantic)
4234 pedwarn ("long, short, signed or unsigned used invalidly for `%s'",
4235 name);
4236 if (flag_pedantic_errors)
4237 ok = 0;
4241 /* Discard the type modifiers if they are invalid. */
4242 if (! ok)
4244 specbits &= ~((1 << (int) RID_LONG) | (1 << (int) RID_SHORT)
4245 | (1 << (int) RID_UNSIGNED) | (1 << (int) RID_SIGNED));
4246 longlong = 0;
4250 if ((specbits & (1 << (int) RID_COMPLEX))
4251 && TREE_CODE (type) != INTEGER_TYPE && TREE_CODE (type) != REAL_TYPE)
4253 error ("complex invalid for `%s'", name);
4254 specbits &= ~(1 << (int) RID_COMPLEX);
4257 /* Decide whether an integer type is signed or not.
4258 Optionally treat bitfields as signed by default. */
4259 if (specbits & 1 << (int) RID_UNSIGNED
4260 /* Traditionally, all bitfields are unsigned. */
4261 || (bitfield && flag_traditional
4262 && (! explicit_flag_signed_bitfields || !flag_signed_bitfields))
4263 || (bitfield && ! flag_signed_bitfields
4264 && (explicit_int || defaulted_int || explicit_char
4265 /* A typedef for plain `int' without `signed'
4266 can be controlled just like plain `int'. */
4267 || ! (typedef_decl != 0
4268 && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl)))
4269 && TREE_CODE (type) != ENUMERAL_TYPE
4270 && !(specbits & 1 << (int) RID_SIGNED)))
4272 if (longlong)
4273 type = long_long_unsigned_type_node;
4274 else if (specbits & 1 << (int) RID_LONG)
4275 type = long_unsigned_type_node;
4276 else if (specbits & 1 << (int) RID_SHORT)
4277 type = short_unsigned_type_node;
4278 else if (type == char_type_node)
4279 type = unsigned_char_type_node;
4280 else if (typedef_decl)
4281 type = unsigned_type (type);
4282 else
4283 type = unsigned_type_node;
4285 else if ((specbits & 1 << (int) RID_SIGNED)
4286 && type == char_type_node)
4287 type = signed_char_type_node;
4288 else if (longlong)
4289 type = long_long_integer_type_node;
4290 else if (specbits & 1 << (int) RID_LONG)
4291 type = long_integer_type_node;
4292 else if (specbits & 1 << (int) RID_SHORT)
4293 type = short_integer_type_node;
4295 if (specbits & 1 << (int) RID_COMPLEX)
4297 if (pedantic && !flag_isoc99)
4298 pedwarn ("ISO C89 does not support complex types");
4299 /* If we just have "complex", it is equivalent to
4300 "complex double", but if any modifiers at all are specified it is
4301 the complex form of TYPE. E.g, "complex short" is
4302 "complex short int". */
4304 if (defaulted_int && ! longlong
4305 && ! (specbits & ((1 << (int) RID_LONG) | (1 << (int) RID_SHORT)
4306 | (1 << (int) RID_SIGNED)
4307 | (1 << (int) RID_UNSIGNED))))
4309 if (pedantic)
4310 pedwarn ("ISO C does not support plain `complex' meaning `double complex'");
4311 type = complex_double_type_node;
4313 else if (type == integer_type_node)
4315 if (pedantic)
4316 pedwarn ("ISO C does not support complex integer types");
4317 type = complex_integer_type_node;
4319 else if (type == float_type_node)
4320 type = complex_float_type_node;
4321 else if (type == double_type_node)
4322 type = complex_double_type_node;
4323 else if (type == long_double_type_node)
4324 type = complex_long_double_type_node;
4325 else
4327 if (pedantic)
4328 pedwarn ("ISO C does not support complex integer types");
4329 type = build_complex_type (type);
4333 /* Figure out the type qualifiers for the declaration. There are
4334 two ways a declaration can become qualified. One is something
4335 like `const int i' where the `const' is explicit. Another is
4336 something like `typedef const int CI; CI i' where the type of the
4337 declaration contains the `const'. */
4338 constp = !! (specbits & 1 << (int) RID_CONST) + TYPE_READONLY (type);
4339 restrictp = !! (specbits & 1 << (int) RID_RESTRICT) + TYPE_RESTRICT (type);
4340 volatilep = !! (specbits & 1 << (int) RID_VOLATILE) + TYPE_VOLATILE (type);
4341 inlinep = !! (specbits & (1 << (int) RID_INLINE));
4342 if (constp > 1 && ! flag_isoc99)
4343 pedwarn ("duplicate `const'");
4344 if (restrictp > 1 && ! flag_isoc99)
4345 pedwarn ("duplicate `restrict'");
4346 if (volatilep > 1 && ! flag_isoc99)
4347 pedwarn ("duplicate `volatile'");
4348 if (! flag_gen_aux_info && (TYPE_QUALS (type)))
4349 type = TYPE_MAIN_VARIANT (type);
4350 type_quals = ((constp ? TYPE_QUAL_CONST : 0)
4351 | (restrictp ? TYPE_QUAL_RESTRICT : 0)
4352 | (volatilep ? TYPE_QUAL_VOLATILE : 0));
4354 /* Warn if two storage classes are given. Default to `auto'. */
4357 int nclasses = 0;
4359 if (specbits & 1 << (int) RID_AUTO) nclasses++;
4360 if (specbits & 1 << (int) RID_STATIC) nclasses++;
4361 if (specbits & 1 << (int) RID_EXTERN) nclasses++;
4362 if (specbits & 1 << (int) RID_REGISTER) nclasses++;
4363 if (specbits & 1 << (int) RID_TYPEDEF) nclasses++;
4365 /* Warn about storage classes that are invalid for certain
4366 kinds of declarations (parameters, typenames, etc.). */
4368 if (nclasses > 1)
4369 error ("multiple storage classes in declaration of `%s'", name);
4370 else if (funcdef_flag
4371 && (specbits
4372 & ((1 << (int) RID_REGISTER)
4373 | (1 << (int) RID_AUTO)
4374 | (1 << (int) RID_TYPEDEF))))
4376 if (specbits & 1 << (int) RID_AUTO
4377 && (pedantic || current_binding_level == global_binding_level))
4378 pedwarn ("function definition declared `auto'");
4379 if (specbits & 1 << (int) RID_REGISTER)
4380 error ("function definition declared `register'");
4381 if (specbits & 1 << (int) RID_TYPEDEF)
4382 error ("function definition declared `typedef'");
4383 specbits &= ~((1 << (int) RID_TYPEDEF) | (1 << (int) RID_REGISTER)
4384 | (1 << (int) RID_AUTO));
4386 else if (decl_context != NORMAL && nclasses > 0)
4388 if (decl_context == PARM && specbits & 1 << (int) RID_REGISTER)
4390 else
4392 switch (decl_context)
4394 case FIELD:
4395 error ("storage class specified for structure field `%s'",
4396 name);
4397 break;
4398 case PARM:
4399 error ("storage class specified for parameter `%s'", name);
4400 break;
4401 default:
4402 error ("storage class specified for typename");
4403 break;
4405 specbits &= ~((1 << (int) RID_TYPEDEF) | (1 << (int) RID_REGISTER)
4406 | (1 << (int) RID_AUTO) | (1 << (int) RID_STATIC)
4407 | (1 << (int) RID_EXTERN));
4410 else if (specbits & 1 << (int) RID_EXTERN && initialized && ! funcdef_flag)
4412 /* `extern' with initialization is invalid if not at top level. */
4413 if (current_binding_level == global_binding_level)
4414 warning ("`%s' initialized and declared `extern'", name);
4415 else
4416 error ("`%s' has both `extern' and initializer", name);
4418 else if (specbits & 1 << (int) RID_EXTERN && funcdef_flag
4419 && current_binding_level != global_binding_level)
4420 error ("nested function `%s' declared `extern'", name);
4421 else if (current_binding_level == global_binding_level
4422 && specbits & (1 << (int) RID_AUTO))
4423 error ("top-level declaration of `%s' specifies `auto'", name);
4426 /* Now figure out the structure of the declarator proper.
4427 Descend through it, creating more complex types, until we reach
4428 the declared identifier (or NULL_TREE, in an absolute declarator). */
4430 while (declarator && TREE_CODE (declarator) != IDENTIFIER_NODE)
4432 if (type == error_mark_node)
4434 declarator = TREE_OPERAND (declarator, 0);
4435 continue;
4438 /* Each level of DECLARATOR is either an ARRAY_REF (for ...[..]),
4439 an INDIRECT_REF (for *...),
4440 a CALL_EXPR (for ...(...)),
4441 a TREE_LIST (for nested attributes),
4442 an identifier (for the name being declared)
4443 or a null pointer (for the place in an absolute declarator
4444 where the name was omitted).
4445 For the last two cases, we have just exited the loop.
4447 At this point, TYPE is the type of elements of an array,
4448 or for a function to return, or for a pointer to point to.
4449 After this sequence of ifs, TYPE is the type of the
4450 array or function or pointer, and DECLARATOR has had its
4451 outermost layer removed. */
4453 if (array_ptr_quals != NULL_TREE || array_parm_static)
4455 /* Only the innermost declarator (making a parameter be of
4456 array type which is converted to pointer type)
4457 may have static or type qualifiers. */
4458 error ("static or type qualifiers in non-parameter array declarator");
4459 array_ptr_quals = NULL_TREE;
4460 array_parm_static = 0;
4463 if (TREE_CODE (declarator) == TREE_LIST)
4465 /* We encode a declarator with embedded attributes using
4466 a TREE_LIST. */
4467 tree attrs = TREE_PURPOSE (declarator);
4468 tree inner_decl;
4469 int attr_flags = 0;
4470 declarator = TREE_VALUE (declarator);
4471 inner_decl = declarator;
4472 while (inner_decl != NULL_TREE
4473 && TREE_CODE (inner_decl) == TREE_LIST)
4474 inner_decl = TREE_VALUE (inner_decl);
4475 if (inner_decl == NULL_TREE
4476 || TREE_CODE (inner_decl) == IDENTIFIER_NODE)
4477 attr_flags |= (int) ATTR_FLAG_DECL_NEXT;
4478 if (TREE_CODE (inner_decl) == CALL_EXPR)
4479 attr_flags |= (int) ATTR_FLAG_FUNCTION_NEXT;
4480 if (TREE_CODE (inner_decl) == ARRAY_REF)
4481 attr_flags |= (int) ATTR_FLAG_ARRAY_NEXT;
4482 returned_attrs = decl_attributes (&type,
4483 chainon (returned_attrs, attrs),
4484 attr_flags);
4486 else if (TREE_CODE (declarator) == ARRAY_REF)
4488 tree itype = NULL_TREE;
4489 tree size = TREE_OPERAND (declarator, 1);
4490 /* The index is a signed object `sizetype' bits wide. */
4491 tree index_type = signed_type (sizetype);
4493 array_ptr_quals = TREE_TYPE (declarator);
4494 array_parm_static = TREE_STATIC (declarator);
4496 declarator = TREE_OPERAND (declarator, 0);
4498 /* Check for some types that there cannot be arrays of. */
4500 if (VOID_TYPE_P (type))
4502 error ("declaration of `%s' as array of voids", name);
4503 type = error_mark_node;
4506 if (TREE_CODE (type) == FUNCTION_TYPE)
4508 error ("declaration of `%s' as array of functions", name);
4509 type = error_mark_node;
4512 if (size == error_mark_node)
4513 type = error_mark_node;
4515 if (type == error_mark_node)
4516 continue;
4518 /* If size was specified, set ITYPE to a range-type for that size.
4519 Otherwise, ITYPE remains null. finish_decl may figure it out
4520 from an initial value. */
4522 if (size)
4524 /* Strip NON_LVALUE_EXPRs since we aren't using as an lvalue. */
4525 STRIP_TYPE_NOPS (size);
4527 if (! INTEGRAL_TYPE_P (TREE_TYPE (size)))
4529 error ("size of array `%s' has non-integer type", name);
4530 size = integer_one_node;
4533 if (pedantic && integer_zerop (size))
4534 pedwarn ("ISO C forbids zero-size array `%s'", name);
4536 if (TREE_CODE (size) == INTEGER_CST)
4538 constant_expression_warning (size);
4539 if (tree_int_cst_sgn (size) < 0)
4541 error ("size of array `%s' is negative", name);
4542 size = integer_one_node;
4545 else
4547 /* Make sure the array size remains visibly nonconstant
4548 even if it is (eg) a const variable with known value. */
4549 size_varies = 1;
4551 if (pedantic)
4553 if (TREE_CONSTANT (size))
4554 pedwarn ("ISO C89 forbids array `%s' whose size can't be evaluated",
4555 name);
4556 else
4557 pedwarn ("ISO C89 forbids variable-size array `%s'",
4558 name);
4562 if (integer_zerop (size))
4564 /* A zero-length array cannot be represented with an
4565 unsigned index type, which is what we'll get with
4566 build_index_type. Create an open-ended range instead. */
4567 itype = build_range_type (sizetype, size, NULL_TREE);
4569 else
4571 /* Compute the maximum valid index, that is, size - 1.
4572 Do the calculation in index_type, so that if it is
4573 a variable the computations will be done in the
4574 proper mode. */
4575 itype = fold (build (MINUS_EXPR, index_type,
4576 convert (index_type, size),
4577 convert (index_type, size_one_node)));
4579 /* If that overflowed, the array is too big.
4580 ??? While a size of INT_MAX+1 technically shouldn't
4581 cause an overflow (because we subtract 1), the overflow
4582 is recorded during the conversion to index_type, before
4583 the subtraction. Handling this case seems like an
4584 unnecessary complication. */
4585 if (TREE_OVERFLOW (itype))
4587 error ("size of array `%s' is too large", name);
4588 type = error_mark_node;
4589 continue;
4592 if (size_varies)
4593 itype = variable_size (itype);
4594 itype = build_index_type (itype);
4597 else if (decl_context == FIELD)
4599 /* ??? Need to check somewhere that this is a structure
4600 and not a union, that this field is last, and that
4601 this structure has at least one other named member. */
4603 if (pedantic && !flag_isoc99 && !in_system_header)
4604 pedwarn ("ISO C89 does not support flexible array members");
4606 /* ISO C99 Flexible array members are effectively identical
4607 to GCC's zero-length array extension. */
4608 itype = build_range_type (sizetype, size_zero_node, NULL_TREE);
4611 /* If pedantic, complain about arrays of incomplete types. */
4613 if (pedantic && !COMPLETE_TYPE_P (type))
4614 pedwarn ("array type has incomplete element type");
4616 #if 0
4617 /* We shouldn't have a function type here at all!
4618 Functions aren't allowed as array elements. */
4619 if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
4620 && (constp || volatilep))
4621 pedwarn ("ISO C forbids const or volatile function types");
4622 #endif
4624 /* Build the array type itself, then merge any constancy or
4625 volatility into the target type. We must do it in this order
4626 to ensure that the TYPE_MAIN_VARIANT field of the array type
4627 is set correctly. */
4629 type = build_array_type (type, itype);
4630 if (type_quals)
4631 type = c_build_qualified_type (type, type_quals);
4633 if (size_varies)
4634 C_TYPE_VARIABLE_SIZE (type) = 1;
4636 /* The GCC extension for zero-length arrays differs from
4637 ISO flexible array members in that sizeof yields zero. */
4638 if (size && integer_zerop (size))
4640 layout_type (type);
4641 TYPE_SIZE (type) = bitsize_zero_node;
4642 TYPE_SIZE_UNIT (type) = size_zero_node;
4644 if (decl_context != PARM
4645 && (array_ptr_quals != NULL_TREE || array_parm_static))
4647 error ("static or type qualifiers in non-parameter array declarator");
4648 array_ptr_quals = NULL_TREE;
4649 array_parm_static = 0;
4652 else if (TREE_CODE (declarator) == CALL_EXPR)
4654 tree arg_types;
4656 /* Declaring a function type.
4657 Make sure we have a valid type for the function to return. */
4658 if (type == error_mark_node)
4659 continue;
4661 size_varies = 0;
4663 /* Warn about some types functions can't return. */
4665 if (TREE_CODE (type) == FUNCTION_TYPE)
4667 error ("`%s' declared as function returning a function", name);
4668 type = integer_type_node;
4670 if (TREE_CODE (type) == ARRAY_TYPE)
4672 error ("`%s' declared as function returning an array", name);
4673 type = integer_type_node;
4676 #ifndef TRADITIONAL_RETURN_FLOAT
4677 /* Traditionally, declaring return type float means double. */
4679 if (flag_traditional && TYPE_MAIN_VARIANT (type) == float_type_node)
4680 type = double_type_node;
4681 #endif /* TRADITIONAL_RETURN_FLOAT */
4683 /* Construct the function type and go to the next
4684 inner layer of declarator. */
4686 arg_types = grokparms (TREE_OPERAND (declarator, 1),
4687 funcdef_flag
4688 /* Say it's a definition
4689 only for the CALL_EXPR
4690 closest to the identifier. */
4691 && TREE_CODE (TREE_OPERAND (declarator, 0)) == IDENTIFIER_NODE);
4692 /* Type qualifiers before the return type of the function
4693 qualify the return type, not the function type. */
4694 if (type_quals)
4696 /* Type qualifiers on a function return type are normally
4697 permitted by the standard but have no effect, so give a
4698 warning at -W. Qualifiers on a void return type have
4699 meaning as a GNU extension, and are banned on function
4700 definitions in ISO C. FIXME: strictly we shouldn't
4701 pedwarn for qualified void return types except on function
4702 definitions, but not doing so could lead to the undesirable
4703 state of a "volatile void" function return type not being
4704 warned about, and a use of the function being compiled
4705 with GNU semantics, with no diagnostics under -pedantic. */
4706 if (VOID_TYPE_P (type) && pedantic && !in_system_header)
4707 pedwarn ("ISO C forbids qualified void function return type");
4708 else if (extra_warnings
4709 && !(VOID_TYPE_P (type)
4710 && type_quals == TYPE_QUAL_VOLATILE))
4711 warning ("type qualifiers ignored on function return type");
4713 type = c_build_qualified_type (type, type_quals);
4715 type_quals = TYPE_UNQUALIFIED;
4717 type = build_function_type (type, arg_types);
4718 declarator = TREE_OPERAND (declarator, 0);
4720 /* Set the TYPE_CONTEXTs for each tagged type which is local to
4721 the formal parameter list of this FUNCTION_TYPE to point to
4722 the FUNCTION_TYPE node itself. */
4725 tree link;
4727 for (link = last_function_parm_tags;
4728 link;
4729 link = TREE_CHAIN (link))
4730 TYPE_CONTEXT (TREE_VALUE (link)) = type;
4733 else if (TREE_CODE (declarator) == INDIRECT_REF)
4735 /* Merge any constancy or volatility into the target type
4736 for the pointer. */
4738 if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
4739 && type_quals)
4740 pedwarn ("ISO C forbids qualified function types");
4741 if (type_quals)
4742 type = c_build_qualified_type (type, type_quals);
4743 type_quals = TYPE_UNQUALIFIED;
4744 size_varies = 0;
4746 type = build_pointer_type (type);
4748 /* Process a list of type modifier keywords
4749 (such as const or volatile) that were given inside the `*'. */
4751 if (TREE_TYPE (declarator))
4753 tree typemodlist;
4754 int erred = 0;
4756 constp = 0;
4757 volatilep = 0;
4758 restrictp = 0;
4759 for (typemodlist = TREE_TYPE (declarator); typemodlist;
4760 typemodlist = TREE_CHAIN (typemodlist))
4762 tree qualifier = TREE_VALUE (typemodlist);
4764 if (C_IS_RESERVED_WORD (qualifier))
4766 if (C_RID_CODE (qualifier) == RID_CONST)
4767 constp++;
4768 else if (C_RID_CODE (qualifier) == RID_VOLATILE)
4769 volatilep++;
4770 else if (C_RID_CODE (qualifier) == RID_RESTRICT)
4771 restrictp++;
4772 else
4773 erred++;
4775 else
4776 erred++;
4779 if (erred)
4780 error ("invalid type modifier within pointer declarator");
4781 if (constp > 1 && ! flag_isoc99)
4782 pedwarn ("duplicate `const'");
4783 if (volatilep > 1 && ! flag_isoc99)
4784 pedwarn ("duplicate `volatile'");
4785 if (restrictp > 1 && ! flag_isoc99)
4786 pedwarn ("duplicate `restrict'");
4788 type_quals = ((constp ? TYPE_QUAL_CONST : 0)
4789 | (restrictp ? TYPE_QUAL_RESTRICT : 0)
4790 | (volatilep ? TYPE_QUAL_VOLATILE : 0));
4793 declarator = TREE_OPERAND (declarator, 0);
4795 else
4796 abort ();
4800 /* Now TYPE has the actual type. */
4802 /* Did array size calculations overflow? */
4804 if (TREE_CODE (type) == ARRAY_TYPE
4805 && COMPLETE_TYPE_P (type)
4806 && TREE_OVERFLOW (TYPE_SIZE (type)))
4808 error ("size of array `%s' is too large", name);
4809 /* If we proceed with the array type as it is, we'll eventually
4810 crash in tree_low_cst(). */
4811 type = error_mark_node;
4814 /* If this is declaring a typedef name, return a TYPE_DECL. */
4816 if (specbits & (1 << (int) RID_TYPEDEF))
4818 tree decl;
4819 /* Note that the grammar rejects storage classes
4820 in typenames, fields or parameters */
4821 if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
4822 && type_quals)
4823 pedwarn ("ISO C forbids qualified function types");
4824 if (type_quals)
4825 type = c_build_qualified_type (type, type_quals);
4826 decl = build_decl (TYPE_DECL, declarator, type);
4827 if ((specbits & (1 << (int) RID_SIGNED))
4828 || (typedef_decl && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl)))
4829 C_TYPEDEF_EXPLICITLY_SIGNED (decl) = 1;
4830 decl_attributes (&decl, returned_attrs, 0);
4831 return decl;
4834 /* Detect the case of an array type of unspecified size
4835 which came, as such, direct from a typedef name.
4836 We must copy the type, so that each identifier gets
4837 a distinct type, so that each identifier's size can be
4838 controlled separately by its own initializer. */
4840 if (type != 0 && typedef_type != 0
4841 && TREE_CODE (type) == ARRAY_TYPE && TYPE_DOMAIN (type) == 0
4842 && TYPE_MAIN_VARIANT (type) == TYPE_MAIN_VARIANT (typedef_type))
4844 type = build_array_type (TREE_TYPE (type), 0);
4845 if (size_varies)
4846 C_TYPE_VARIABLE_SIZE (type) = 1;
4849 /* If this is a type name (such as, in a cast or sizeof),
4850 compute the type and return it now. */
4852 if (decl_context == TYPENAME)
4854 /* Note that the grammar rejects storage classes
4855 in typenames, fields or parameters */
4856 if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
4857 && type_quals)
4858 pedwarn ("ISO C forbids const or volatile function types");
4859 if (type_quals)
4860 type = c_build_qualified_type (type, type_quals);
4861 decl_attributes (&type, returned_attrs, 0);
4862 return type;
4865 /* Aside from typedefs and type names (handle above),
4866 `void' at top level (not within pointer)
4867 is allowed only in public variables.
4868 We don't complain about parms either, but that is because
4869 a better error message can be made later. */
4871 if (VOID_TYPE_P (type) && decl_context != PARM
4872 && ! ((decl_context != FIELD && TREE_CODE (type) != FUNCTION_TYPE)
4873 && ((specbits & (1 << (int) RID_EXTERN))
4874 || (current_binding_level == global_binding_level
4875 && !(specbits
4876 & ((1 << (int) RID_STATIC) | (1 << (int) RID_REGISTER)))))))
4878 error ("variable or field `%s' declared void", name);
4879 type = integer_type_node;
4882 /* Now create the decl, which may be a VAR_DECL, a PARM_DECL
4883 or a FUNCTION_DECL, depending on DECL_CONTEXT and TYPE. */
4886 tree decl;
4888 if (decl_context == PARM)
4890 tree type_as_written;
4891 tree promoted_type;
4893 /* A parameter declared as an array of T is really a pointer to T.
4894 One declared as a function is really a pointer to a function. */
4896 if (TREE_CODE (type) == ARRAY_TYPE)
4898 /* Transfer const-ness of array into that of type pointed to. */
4899 type = TREE_TYPE (type);
4900 if (type_quals)
4901 type = c_build_qualified_type (type, type_quals);
4902 type = build_pointer_type (type);
4903 type_quals = TYPE_UNQUALIFIED;
4904 if (array_ptr_quals)
4906 tree new_ptr_quals, new_ptr_attrs;
4907 int erred = 0;
4908 split_specs_attrs (array_ptr_quals, &new_ptr_quals, &new_ptr_attrs);
4909 /* We don't yet implement attributes in this context. */
4910 if (new_ptr_attrs != NULL_TREE)
4911 warning ("attributes in parameter array declarator ignored");
4913 constp = 0;
4914 volatilep = 0;
4915 restrictp = 0;
4916 for (; new_ptr_quals; new_ptr_quals = TREE_CHAIN (new_ptr_quals))
4918 tree qualifier = TREE_VALUE (new_ptr_quals);
4920 if (C_IS_RESERVED_WORD (qualifier))
4922 if (C_RID_CODE (qualifier) == RID_CONST)
4923 constp++;
4924 else if (C_RID_CODE (qualifier) == RID_VOLATILE)
4925 volatilep++;
4926 else if (C_RID_CODE (qualifier) == RID_RESTRICT)
4927 restrictp++;
4928 else
4929 erred++;
4931 else
4932 erred++;
4935 if (erred)
4936 error ("invalid type modifier within array declarator");
4938 type_quals = ((constp ? TYPE_QUAL_CONST : 0)
4939 | (restrictp ? TYPE_QUAL_RESTRICT : 0)
4940 | (volatilep ? TYPE_QUAL_VOLATILE : 0));
4942 size_varies = 0;
4944 else if (TREE_CODE (type) == FUNCTION_TYPE)
4946 if (pedantic && type_quals)
4947 pedwarn ("ISO C forbids qualified function types");
4948 if (type_quals)
4949 type = c_build_qualified_type (type, type_quals);
4950 type = build_pointer_type (type);
4951 type_quals = TYPE_UNQUALIFIED;
4953 else if (type_quals)
4954 type = c_build_qualified_type (type, type_quals);
4956 type_as_written = type;
4958 decl = build_decl (PARM_DECL, declarator, type);
4959 if (size_varies)
4960 C_DECL_VARIABLE_SIZE (decl) = 1;
4962 /* Compute the type actually passed in the parmlist,
4963 for the case where there is no prototype.
4964 (For example, shorts and chars are passed as ints.)
4965 When there is a prototype, this is overridden later. */
4967 if (type == error_mark_node)
4968 promoted_type = type;
4969 else
4971 promoted_type = simple_type_promotes_to (type);
4972 if (! promoted_type)
4973 promoted_type = type;
4976 DECL_ARG_TYPE (decl) = promoted_type;
4977 DECL_ARG_TYPE_AS_WRITTEN (decl) = type_as_written;
4979 else if (decl_context == FIELD)
4981 /* Structure field. It may not be a function. */
4983 if (TREE_CODE (type) == FUNCTION_TYPE)
4985 error ("field `%s' declared as a function", name);
4986 type = build_pointer_type (type);
4988 else if (TREE_CODE (type) != ERROR_MARK
4989 && !COMPLETE_OR_UNBOUND_ARRAY_TYPE_P (type))
4991 error ("field `%s' has incomplete type", name);
4992 type = error_mark_node;
4994 /* Move type qualifiers down to element of an array. */
4995 if (TREE_CODE (type) == ARRAY_TYPE && type_quals)
4997 type = build_array_type (c_build_qualified_type (TREE_TYPE (type),
4998 type_quals),
4999 TYPE_DOMAIN (type));
5000 #if 0
5001 /* Leave the field const or volatile as well. */
5002 type_quals = TYPE_UNQUALIFIED;
5003 #endif
5005 decl = build_decl (FIELD_DECL, declarator, type);
5006 DECL_NONADDRESSABLE_P (decl) = bitfield;
5008 if (size_varies)
5009 C_DECL_VARIABLE_SIZE (decl) = 1;
5011 else if (TREE_CODE (type) == FUNCTION_TYPE)
5013 /* Every function declaration is "external"
5014 except for those which are inside a function body
5015 in which `auto' is used.
5016 That is a case not specified by ANSI C,
5017 and we use it for forward declarations for nested functions. */
5018 int extern_ref = (!(specbits & (1 << (int) RID_AUTO))
5019 || current_binding_level == global_binding_level);
5021 if (specbits & (1 << (int) RID_AUTO)
5022 && (pedantic || current_binding_level == global_binding_level))
5023 pedwarn ("invalid storage class for function `%s'", name);
5024 if (specbits & (1 << (int) RID_REGISTER))
5025 error ("invalid storage class for function `%s'", name);
5026 /* Function declaration not at top level.
5027 Storage classes other than `extern' are not allowed
5028 and `extern' makes no difference. */
5029 if (current_binding_level != global_binding_level
5030 && (specbits & ((1 << (int) RID_STATIC) | (1 << (int) RID_INLINE)))
5031 && pedantic)
5032 pedwarn ("invalid storage class for function `%s'", name);
5034 decl = build_decl (FUNCTION_DECL, declarator, type);
5035 decl = build_decl_attribute_variant (decl, decl_attr);
5037 DECL_LANG_SPECIFIC (decl) = (struct lang_decl *)
5038 ggc_alloc_cleared (sizeof (struct lang_decl));
5040 if (pedantic && type_quals && ! DECL_IN_SYSTEM_HEADER (decl))
5041 pedwarn ("ISO C forbids qualified function types");
5043 /* GNU C interprets a `volatile void' return type to indicate
5044 that the function does not return. */
5045 if ((type_quals & TYPE_QUAL_VOLATILE)
5046 && !VOID_TYPE_P (TREE_TYPE (TREE_TYPE (decl))))
5047 warning ("`noreturn' function returns non-void value");
5049 if (extern_ref)
5050 DECL_EXTERNAL (decl) = 1;
5051 /* Record absence of global scope for `static' or `auto'. */
5052 TREE_PUBLIC (decl)
5053 = !(specbits & ((1 << (int) RID_STATIC) | (1 << (int) RID_AUTO)));
5055 /* Record presence of `inline', if it is reasonable. */
5056 if (MAIN_NAME_P (declarator))
5058 if (inlinep)
5059 warning ("cannot inline function `main'");
5061 else if (inlinep)
5063 /* Assume that otherwise the function can be inlined. */
5064 DECL_DECLARED_INLINE_P (decl) = 1;
5066 /* Do not mark bare declarations as DECL_INLINE. Doing so
5067 in the presence of multiple declarations can result in
5068 the abstract origin pointing between the declarations,
5069 which will confuse dwarf2out. */
5070 if (initialized)
5072 DECL_INLINE (decl) = 1;
5073 if (specbits & (1 << (int) RID_EXTERN))
5074 current_extern_inline = 1;
5077 /* If -finline-functions, assume it can be inlined. This does
5078 two things: let the function be deferred until it is actually
5079 needed, and let dwarf2 know that the function is inlinable. */
5080 else if (flag_inline_trees == 2 && initialized)
5082 DECL_INLINE (decl) = 1;
5083 DECL_DECLARED_INLINE_P (decl) = 0;
5086 else
5088 /* It's a variable. */
5089 /* An uninitialized decl with `extern' is a reference. */
5090 int extern_ref = !initialized && (specbits & (1 << (int) RID_EXTERN));
5092 /* Move type qualifiers down to element of an array. */
5093 if (TREE_CODE (type) == ARRAY_TYPE && type_quals)
5095 int saved_align = TYPE_ALIGN(type);
5096 type = build_array_type (c_build_qualified_type (TREE_TYPE (type),
5097 type_quals),
5098 TYPE_DOMAIN (type));
5099 TYPE_ALIGN (type) = saved_align;
5100 #if 0 /* Leave the variable const or volatile as well. */
5101 type_quals = TYPE_UNQUALIFIED;
5102 #endif
5104 else if (type_quals)
5105 type = c_build_qualified_type (type, type_quals);
5107 decl = build_decl (VAR_DECL, declarator, type);
5108 if (size_varies)
5109 C_DECL_VARIABLE_SIZE (decl) = 1;
5111 if (inlinep)
5112 pedwarn_with_decl (decl, "variable `%s' declared `inline'");
5114 DECL_EXTERNAL (decl) = extern_ref;
5115 /* At top level, the presence of a `static' or `register' storage
5116 class specifier, or the absence of all storage class specifiers
5117 makes this declaration a definition (perhaps tentative). Also,
5118 the absence of both `static' and `register' makes it public. */
5119 if (current_binding_level == global_binding_level)
5121 TREE_PUBLIC (decl)
5122 = !(specbits
5123 & ((1 << (int) RID_STATIC) | (1 << (int) RID_REGISTER)));
5124 TREE_STATIC (decl) = ! DECL_EXTERNAL (decl);
5126 /* Not at top level, only `static' makes a static definition. */
5127 else
5129 TREE_STATIC (decl) = (specbits & (1 << (int) RID_STATIC)) != 0;
5130 TREE_PUBLIC (decl) = DECL_EXTERNAL (decl);
5134 /* Record `register' declaration for warnings on &
5135 and in case doing stupid register allocation. */
5137 if (specbits & (1 << (int) RID_REGISTER))
5138 DECL_REGISTER (decl) = 1;
5140 /* Record constancy and volatility. */
5141 c_apply_type_quals_to_decl (type_quals, decl);
5143 /* If a type has volatile components, it should be stored in memory.
5144 Otherwise, the fact that those components are volatile
5145 will be ignored, and would even crash the compiler. */
5146 if (C_TYPE_FIELDS_VOLATILE (TREE_TYPE (decl)))
5147 mark_addressable (decl);
5149 decl_attributes (&decl, returned_attrs, 0);
5151 return decl;
5155 /* Decode the parameter-list info for a function type or function definition.
5156 The argument is the value returned by `get_parm_info' (or made in parse.y
5157 if there is an identifier list instead of a parameter decl list).
5158 These two functions are separate because when a function returns
5159 or receives functions then each is called multiple times but the order
5160 of calls is different. The last call to `grokparms' is always the one
5161 that contains the formal parameter names of a function definition.
5163 Store in `last_function_parms' a chain of the decls of parms.
5164 Also store in `last_function_parm_tags' a chain of the struct, union,
5165 and enum tags declared among the parms.
5167 Return a list of arg types to use in the FUNCTION_TYPE for this function.
5169 FUNCDEF_FLAG is nonzero for a function definition, 0 for
5170 a mere declaration. A nonempty identifier-list gets an error message
5171 when FUNCDEF_FLAG is zero. */
5173 static tree
5174 grokparms (parms_info, funcdef_flag)
5175 tree parms_info;
5176 int funcdef_flag;
5178 tree first_parm = TREE_CHAIN (parms_info);
5180 last_function_parms = TREE_PURPOSE (parms_info);
5181 last_function_parm_tags = TREE_VALUE (parms_info);
5183 if (warn_strict_prototypes && first_parm == 0 && !funcdef_flag
5184 && !in_system_header)
5185 warning ("function declaration isn't a prototype");
5187 if (first_parm != 0
5188 && TREE_CODE (TREE_VALUE (first_parm)) == IDENTIFIER_NODE)
5190 if (! funcdef_flag)
5191 pedwarn ("parameter names (without types) in function declaration");
5193 last_function_parms = first_parm;
5194 return 0;
5196 else
5198 tree parm;
5199 tree typelt;
5200 /* We no longer test FUNCDEF_FLAG.
5201 If the arg types are incomplete in a declaration,
5202 they must include undefined tags.
5203 These tags can never be defined in the scope of the declaration,
5204 so the types can never be completed,
5205 and no call can be compiled successfully. */
5206 #if 0
5207 /* In a fcn definition, arg types must be complete. */
5208 if (funcdef_flag)
5209 #endif
5210 for (parm = last_function_parms, typelt = first_parm;
5211 parm;
5212 parm = TREE_CHAIN (parm))
5213 /* Skip over any enumeration constants declared here. */
5214 if (TREE_CODE (parm) == PARM_DECL)
5216 /* Barf if the parameter itself has an incomplete type. */
5217 tree type = TREE_VALUE (typelt);
5218 if (type == error_mark_node)
5219 continue;
5220 if (!COMPLETE_TYPE_P (type))
5222 if (funcdef_flag && DECL_NAME (parm) != 0)
5223 error ("parameter `%s' has incomplete type",
5224 IDENTIFIER_POINTER (DECL_NAME (parm)));
5225 else
5226 warning ("parameter has incomplete type");
5227 if (funcdef_flag)
5229 TREE_VALUE (typelt) = error_mark_node;
5230 TREE_TYPE (parm) = error_mark_node;
5233 #if 0
5234 /* This has been replaced by parm_tags_warning, which
5235 uses a more accurate criterion for what to warn
5236 about. */
5237 else
5239 /* Now warn if is a pointer to an incomplete type. */
5240 while (TREE_CODE (type) == POINTER_TYPE
5241 || TREE_CODE (type) == REFERENCE_TYPE)
5242 type = TREE_TYPE (type);
5243 type = TYPE_MAIN_VARIANT (type);
5244 if (!COMPLETE_TYPE_P (type))
5246 if (DECL_NAME (parm) != 0)
5247 warning ("parameter `%s' points to incomplete type",
5248 IDENTIFIER_POINTER (DECL_NAME (parm)));
5249 else
5250 warning ("parameter points to incomplete type");
5253 #endif
5254 typelt = TREE_CHAIN (typelt);
5257 return first_parm;
5261 /* Return a tree_list node with info on a parameter list just parsed.
5262 The TREE_PURPOSE is a chain of decls of those parms.
5263 The TREE_VALUE is a list of structure, union and enum tags defined.
5264 The TREE_CHAIN is a list of argument types to go in the FUNCTION_TYPE.
5265 This tree_list node is later fed to `grokparms'.
5267 VOID_AT_END nonzero means append `void' to the end of the type-list.
5268 Zero means the parmlist ended with an ellipsis so don't append `void'. */
5270 tree
5271 get_parm_info (void_at_end)
5272 int void_at_end;
5274 tree decl, t;
5275 tree types = 0;
5276 int erred = 0;
5277 tree tags = gettags ();
5278 tree parms = getdecls ();
5279 tree new_parms = 0;
5280 tree order = current_binding_level->parm_order;
5282 /* Just `void' (and no ellipsis) is special. There are really no parms.
5283 But if the `void' is qualified (by `const' or `volatile') or has a
5284 storage class specifier (`register'), then the behavior is undefined;
5285 by not counting it as the special case of `void' we will cause an
5286 error later. Typedefs for `void' are OK (see DR#157). */
5287 if (void_at_end && parms != 0
5288 && TREE_CHAIN (parms) == 0
5289 && VOID_TYPE_P (TREE_TYPE (parms))
5290 && ! TREE_THIS_VOLATILE (parms)
5291 && ! TREE_READONLY (parms)
5292 && ! DECL_REGISTER (parms)
5293 && DECL_NAME (parms) == 0)
5295 parms = NULL_TREE;
5296 storedecls (NULL_TREE);
5297 return tree_cons (NULL_TREE, NULL_TREE,
5298 tree_cons (NULL_TREE, void_type_node, NULL_TREE));
5301 /* Extract enumerator values and other non-parms declared with the parms.
5302 Likewise any forward parm decls that didn't have real parm decls. */
5303 for (decl = parms; decl;)
5305 tree next = TREE_CHAIN (decl);
5307 if (TREE_CODE (decl) != PARM_DECL)
5309 TREE_CHAIN (decl) = new_parms;
5310 new_parms = decl;
5312 else if (TREE_ASM_WRITTEN (decl))
5314 error_with_decl (decl,
5315 "parameter `%s' has just a forward declaration");
5316 TREE_CHAIN (decl) = new_parms;
5317 new_parms = decl;
5319 decl = next;
5322 /* Put the parm decls back in the order they were in in the parm list. */
5323 for (t = order; t; t = TREE_CHAIN (t))
5325 if (TREE_CHAIN (t))
5326 TREE_CHAIN (TREE_VALUE (t)) = TREE_VALUE (TREE_CHAIN (t));
5327 else
5328 TREE_CHAIN (TREE_VALUE (t)) = 0;
5331 new_parms = chainon (order ? nreverse (TREE_VALUE (order)) : 0,
5332 new_parms);
5334 /* Store the parmlist in the binding level since the old one
5335 is no longer a valid list. (We have changed the chain pointers.) */
5336 storedecls (new_parms);
5338 for (decl = new_parms; decl; decl = TREE_CHAIN (decl))
5339 /* There may also be declarations for enumerators if an enumeration
5340 type is declared among the parms. Ignore them here. */
5341 if (TREE_CODE (decl) == PARM_DECL)
5343 /* Since there is a prototype,
5344 args are passed in their declared types. */
5345 tree type = TREE_TYPE (decl);
5346 DECL_ARG_TYPE (decl) = type;
5347 if (PROMOTE_PROTOTYPES
5348 && INTEGRAL_TYPE_P (type)
5349 && TYPE_PRECISION (type) < TYPE_PRECISION (integer_type_node))
5350 DECL_ARG_TYPE (decl) = integer_type_node;
5352 types = tree_cons (NULL_TREE, TREE_TYPE (decl), types);
5353 if (VOID_TYPE_P (TREE_VALUE (types)) && ! erred
5354 && DECL_NAME (decl) == 0)
5356 error ("`void' in parameter list must be the entire list");
5357 erred = 1;
5361 if (void_at_end)
5362 return tree_cons (new_parms, tags,
5363 nreverse (tree_cons (NULL_TREE, void_type_node, types)));
5365 return tree_cons (new_parms, tags, nreverse (types));
5368 /* At end of parameter list, warn about any struct, union or enum tags
5369 defined within. Do so because these types cannot ever become complete. */
5371 void
5372 parmlist_tags_warning ()
5374 tree elt;
5375 static int already;
5377 for (elt = current_binding_level->tags; elt; elt = TREE_CHAIN (elt))
5379 enum tree_code code = TREE_CODE (TREE_VALUE (elt));
5380 /* An anonymous union parm type is meaningful as a GNU extension.
5381 So don't warn for that. */
5382 if (code == UNION_TYPE && TREE_PURPOSE (elt) == 0 && !pedantic)
5383 continue;
5384 if (TREE_PURPOSE (elt) != 0)
5386 if (code == RECORD_TYPE)
5387 warning ("`struct %s' declared inside parameter list",
5388 IDENTIFIER_POINTER (TREE_PURPOSE (elt)));
5389 else if (code == UNION_TYPE)
5390 warning ("`union %s' declared inside parameter list",
5391 IDENTIFIER_POINTER (TREE_PURPOSE (elt)));
5392 else
5393 warning ("`enum %s' declared inside parameter list",
5394 IDENTIFIER_POINTER (TREE_PURPOSE (elt)));
5396 else
5398 /* For translation these need to be separate warnings */
5399 if (code == RECORD_TYPE)
5400 warning ("anonymous struct declared inside parameter list");
5401 else if (code == UNION_TYPE)
5402 warning ("anonymous union declared inside parameter list");
5403 else
5404 warning ("anonymous enum declared inside parameter list");
5406 if (! already)
5408 warning ("its scope is only this definition or declaration, which is probably not what you want");
5409 already = 1;
5414 /* Get the struct, enum or union (CODE says which) with tag NAME.
5415 Define the tag as a forward-reference if it is not defined. */
5417 tree
5418 xref_tag (code, name)
5419 enum tree_code code;
5420 tree name;
5422 /* If a cross reference is requested, look up the type
5423 already defined for this tag and return it. */
5425 tree ref = lookup_tag (code, name, current_binding_level, 0);
5426 /* If this is the right type of tag, return what we found.
5427 (This reference will be shadowed by shadow_tag later if appropriate.)
5428 If this is the wrong type of tag, do not return it. If it was the
5429 wrong type in the same binding level, we will have had an error
5430 message already; if in a different binding level and declaring
5431 a name, pending_xref_error will give an error message; but if in a
5432 different binding level and not declaring a name, this tag should
5433 shadow the previous declaration of a different type of tag, and
5434 this would not work properly if we return the reference found.
5435 (For example, with "struct foo" in an outer scope, "union foo;"
5436 must shadow that tag with a new one of union type.) */
5437 if (ref && TREE_CODE (ref) == code)
5438 return ref;
5440 /* If no such tag is yet defined, create a forward-reference node
5441 and record it as the "definition".
5442 When a real declaration of this type is found,
5443 the forward-reference will be altered into a real type. */
5445 ref = make_node (code);
5446 if (code == ENUMERAL_TYPE)
5448 /* Give the type a default layout like unsigned int
5449 to avoid crashing if it does not get defined. */
5450 TYPE_MODE (ref) = TYPE_MODE (unsigned_type_node);
5451 TYPE_ALIGN (ref) = TYPE_ALIGN (unsigned_type_node);
5452 TYPE_USER_ALIGN (ref) = 0;
5453 TREE_UNSIGNED (ref) = 1;
5454 TYPE_PRECISION (ref) = TYPE_PRECISION (unsigned_type_node);
5455 TYPE_MIN_VALUE (ref) = TYPE_MIN_VALUE (unsigned_type_node);
5456 TYPE_MAX_VALUE (ref) = TYPE_MAX_VALUE (unsigned_type_node);
5459 pushtag (name, ref);
5461 return ref;
5464 /* Make sure that the tag NAME is defined *in the current binding level*
5465 at least as a forward reference.
5466 CODE says which kind of tag NAME ought to be. */
5468 tree
5469 start_struct (code, name)
5470 enum tree_code code;
5471 tree name;
5473 /* If there is already a tag defined at this binding level
5474 (as a forward reference), just return it. */
5476 tree ref = 0;
5478 if (name != 0)
5479 ref = lookup_tag (code, name, current_binding_level, 1);
5480 if (ref && TREE_CODE (ref) == code)
5482 C_TYPE_BEING_DEFINED (ref) = 1;
5483 TYPE_PACKED (ref) = flag_pack_struct;
5484 if (TYPE_FIELDS (ref))
5486 if (code == UNION_TYPE)
5487 error ("redefinition of `union %s'",
5488 IDENTIFIER_POINTER (name));
5489 else
5490 error ("redefinition of `struct %s'",
5491 IDENTIFIER_POINTER (name));
5494 return ref;
5497 /* Otherwise create a forward-reference just so the tag is in scope. */
5499 ref = make_node (code);
5500 pushtag (name, ref);
5501 C_TYPE_BEING_DEFINED (ref) = 1;
5502 TYPE_PACKED (ref) = flag_pack_struct;
5503 return ref;
5506 /* Process the specs, declarator (NULL if omitted) and width (NULL if omitted)
5507 of a structure component, returning a FIELD_DECL node.
5508 WIDTH is non-NULL for bit fields only, and is an INTEGER_CST node.
5510 This is done during the parsing of the struct declaration.
5511 The FIELD_DECL nodes are chained together and the lot of them
5512 are ultimately passed to `build_struct' to make the RECORD_TYPE node. */
5514 tree
5515 grokfield (filename, line, declarator, declspecs, width)
5516 const char *filename ATTRIBUTE_UNUSED;
5517 int line ATTRIBUTE_UNUSED;
5518 tree declarator, declspecs, width;
5520 tree value;
5522 if (declarator == NULL_TREE && width == NULL_TREE)
5524 /* This is an unnamed decl. We only support unnamed
5525 structs/unions, so check for other things and refuse them. */
5526 if (TREE_CODE (TREE_VALUE (declspecs)) != RECORD_TYPE
5527 && TREE_CODE (TREE_VALUE (declspecs)) != UNION_TYPE)
5529 error ("unnamed fields of type other than struct or union are not allowed");
5530 return NULL_TREE;
5534 value = grokdeclarator (declarator, declspecs, width ? BITFIELD : FIELD, 0);
5536 finish_decl (value, NULL_TREE, NULL_TREE);
5537 DECL_INITIAL (value) = width;
5539 maybe_objc_check_decl (value);
5540 return value;
5543 /* Fill in the fields of a RECORD_TYPE or UNION_TYPE node, T.
5544 FIELDLIST is a chain of FIELD_DECL nodes for the fields.
5545 ATTRIBUTES are attributes to be applied to the structure. */
5547 tree
5548 finish_struct (t, fieldlist, attributes)
5549 tree t;
5550 tree fieldlist;
5551 tree attributes;
5553 tree x;
5554 int toplevel = global_binding_level == current_binding_level;
5555 int saw_named_field;
5557 /* If this type was previously laid out as a forward reference,
5558 make sure we lay it out again. */
5560 TYPE_SIZE (t) = 0;
5562 decl_attributes (&t, attributes, (int) ATTR_FLAG_TYPE_IN_PLACE);
5564 /* Nameless union parm types are useful as GCC extension. */
5565 if (! (TREE_CODE (t) == UNION_TYPE && TYPE_NAME (t) == 0) && !pedantic)
5566 /* Otherwise, warn about any struct or union def. in parmlist. */
5567 if (in_parm_level_p ())
5569 if (pedantic)
5570 pedwarn ("%s defined inside parms",
5571 TREE_CODE (t) == UNION_TYPE ? _("union") : _("structure"));
5572 else if (! flag_traditional)
5573 warning ("%s defined inside parms",
5574 TREE_CODE (t) == UNION_TYPE ? _("union") : _("structure"));
5577 if (pedantic)
5579 for (x = fieldlist; x; x = TREE_CHAIN (x))
5580 if (DECL_NAME (x) != 0)
5581 break;
5583 if (x == 0)
5584 pedwarn ("%s has no %s",
5585 TREE_CODE (t) == UNION_TYPE ? _("union") : _("struct"),
5586 fieldlist ? _("named members") : _("members"));
5589 /* Install struct as DECL_CONTEXT of each field decl.
5590 Also process specified field sizes,m which is found in the DECL_INITIAL.
5591 Store 0 there, except for ": 0" fields (so we can find them
5592 and delete them, below). */
5594 saw_named_field = 0;
5595 for (x = fieldlist; x; x = TREE_CHAIN (x))
5597 DECL_CONTEXT (x) = t;
5598 DECL_PACKED (x) |= TYPE_PACKED (t);
5600 /* If any field is const, the structure type is pseudo-const. */
5601 if (TREE_READONLY (x))
5602 C_TYPE_FIELDS_READONLY (t) = 1;
5603 else
5605 /* A field that is pseudo-const makes the structure likewise. */
5606 tree t1 = TREE_TYPE (x);
5607 while (TREE_CODE (t1) == ARRAY_TYPE)
5608 t1 = TREE_TYPE (t1);
5609 if ((TREE_CODE (t1) == RECORD_TYPE || TREE_CODE (t1) == UNION_TYPE)
5610 && C_TYPE_FIELDS_READONLY (t1))
5611 C_TYPE_FIELDS_READONLY (t) = 1;
5614 /* Any field that is volatile means variables of this type must be
5615 treated in some ways as volatile. */
5616 if (TREE_THIS_VOLATILE (x))
5617 C_TYPE_FIELDS_VOLATILE (t) = 1;
5619 /* Any field of nominal variable size implies structure is too. */
5620 if (C_DECL_VARIABLE_SIZE (x))
5621 C_TYPE_VARIABLE_SIZE (t) = 1;
5623 /* Detect invalid nested redefinition. */
5624 if (TREE_TYPE (x) == t)
5625 error ("nested redefinition of `%s'",
5626 IDENTIFIER_POINTER (TYPE_NAME (t)));
5628 /* Detect invalid bit-field size. */
5629 if (DECL_INITIAL (x))
5630 STRIP_NOPS (DECL_INITIAL (x));
5631 if (DECL_INITIAL (x))
5633 if (TREE_CODE (DECL_INITIAL (x)) == INTEGER_CST)
5634 constant_expression_warning (DECL_INITIAL (x));
5635 else
5637 error_with_decl (x,
5638 "bit-field `%s' width not an integer constant");
5639 DECL_INITIAL (x) = NULL;
5643 /* Detect invalid bit-field type. */
5644 if (DECL_INITIAL (x)
5645 && TREE_CODE (TREE_TYPE (x)) != INTEGER_TYPE
5646 && TREE_CODE (TREE_TYPE (x)) != BOOLEAN_TYPE
5647 && TREE_CODE (TREE_TYPE (x)) != ENUMERAL_TYPE)
5649 error_with_decl (x, "bit-field `%s' has invalid type");
5650 DECL_INITIAL (x) = NULL;
5653 if (DECL_INITIAL (x) && pedantic
5654 && TYPE_MAIN_VARIANT (TREE_TYPE (x)) != integer_type_node
5655 && TYPE_MAIN_VARIANT (TREE_TYPE (x)) != unsigned_type_node
5656 && TYPE_MAIN_VARIANT (TREE_TYPE (x)) != c_bool_type_node
5657 /* Accept an enum that's equivalent to int or unsigned int. */
5658 && !(TREE_CODE (TREE_TYPE (x)) == ENUMERAL_TYPE
5659 && (TYPE_PRECISION (TREE_TYPE (x))
5660 == TYPE_PRECISION (integer_type_node))))
5661 pedwarn_with_decl (x, "bit-field `%s' type invalid in ISO C");
5663 /* Detect and ignore out of range field width and process valid
5664 field widths. */
5665 if (DECL_INITIAL (x))
5667 int max_width;
5668 if (TYPE_MAIN_VARIANT (TREE_TYPE (x)) == c_bool_type_node)
5669 max_width = CHAR_TYPE_SIZE;
5670 else
5671 max_width = TYPE_PRECISION (TREE_TYPE (x));
5672 if (tree_int_cst_sgn (DECL_INITIAL (x)) < 0)
5673 error_with_decl (x, "negative width in bit-field `%s'");
5674 else if (0 < compare_tree_int (DECL_INITIAL (x), max_width))
5675 pedwarn_with_decl (x, "width of `%s' exceeds its type");
5676 else if (integer_zerop (DECL_INITIAL (x)) && DECL_NAME (x) != 0)
5677 error_with_decl (x, "zero width for bit-field `%s'");
5678 else
5680 /* The test above has assured us that TREE_INT_CST_HIGH is 0. */
5681 unsigned HOST_WIDE_INT width
5682 = TREE_INT_CST_LOW (DECL_INITIAL (x));
5684 if (TREE_CODE (TREE_TYPE (x)) == ENUMERAL_TYPE
5685 && (width < min_precision (TYPE_MIN_VALUE (TREE_TYPE (x)),
5686 TREE_UNSIGNED (TREE_TYPE (x)))
5687 || (width
5688 < min_precision (TYPE_MAX_VALUE (TREE_TYPE (x)),
5689 TREE_UNSIGNED (TREE_TYPE (x))))))
5690 warning_with_decl (x,
5691 "`%s' is narrower than values of its type");
5693 DECL_SIZE (x) = bitsize_int (width);
5694 DECL_BIT_FIELD (x) = 1;
5695 SET_DECL_C_BIT_FIELD (x);
5697 if (width == 0)
5699 /* field size 0 => force desired amount of alignment. */
5700 #ifdef EMPTY_FIELD_BOUNDARY
5701 DECL_ALIGN (x) = MAX (DECL_ALIGN (x), EMPTY_FIELD_BOUNDARY);
5702 #endif
5703 #ifdef PCC_BITFIELD_TYPE_MATTERS
5704 if (PCC_BITFIELD_TYPE_MATTERS)
5706 DECL_ALIGN (x) = MAX (DECL_ALIGN (x),
5707 TYPE_ALIGN (TREE_TYPE (x)));
5708 DECL_USER_ALIGN (x) |= TYPE_USER_ALIGN (TREE_TYPE (x));
5710 #endif
5715 else if (TREE_TYPE (x) != error_mark_node)
5717 unsigned int min_align = (DECL_PACKED (x) ? BITS_PER_UNIT
5718 : TYPE_ALIGN (TREE_TYPE (x)));
5720 /* Non-bit-fields are aligned for their type, except packed
5721 fields which require only BITS_PER_UNIT alignment. */
5722 DECL_ALIGN (x) = MAX (DECL_ALIGN (x), min_align);
5723 if (! DECL_PACKED (x))
5724 DECL_USER_ALIGN (x) |= TYPE_USER_ALIGN (TREE_TYPE (x));
5727 DECL_INITIAL (x) = 0;
5729 /* Detect flexible array member in an invalid context. */
5730 if (TREE_CODE (TREE_TYPE (x)) == ARRAY_TYPE
5731 && TYPE_SIZE (TREE_TYPE (x)) == NULL_TREE
5732 && TYPE_DOMAIN (TREE_TYPE (x)) != NULL_TREE
5733 && TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (x))) == NULL_TREE)
5735 if (TREE_CODE (t) == UNION_TYPE)
5736 error_with_decl (x, "flexible array member in union");
5737 else if (TREE_CHAIN (x) != NULL_TREE)
5738 error_with_decl (x, "flexible array member not at end of struct");
5739 else if (! saw_named_field)
5740 error_with_decl (x, "flexible array member in otherwise empty struct");
5742 if (DECL_NAME (x))
5743 saw_named_field = 1;
5746 /* Delete all duplicate fields from the fieldlist */
5747 for (x = fieldlist; x && TREE_CHAIN (x);)
5748 /* Anonymous fields aren't duplicates. */
5749 if (DECL_NAME (TREE_CHAIN (x)) == 0)
5750 x = TREE_CHAIN (x);
5751 else
5753 tree y = fieldlist;
5755 while (1)
5757 if (DECL_NAME (y) == DECL_NAME (TREE_CHAIN (x)))
5758 break;
5759 if (y == x)
5760 break;
5761 y = TREE_CHAIN (y);
5763 if (DECL_NAME (y) == DECL_NAME (TREE_CHAIN (x)))
5765 error_with_decl (TREE_CHAIN (x), "duplicate member `%s'");
5766 TREE_CHAIN (x) = TREE_CHAIN (TREE_CHAIN (x));
5768 else
5769 x = TREE_CHAIN (x);
5772 /* Now we have the nearly final fieldlist. Record it,
5773 then lay out the structure or union (including the fields). */
5775 TYPE_FIELDS (t) = fieldlist;
5777 layout_type (t);
5779 /* Delete all zero-width bit-fields from the fieldlist */
5781 tree *fieldlistp = &fieldlist;
5782 while (*fieldlistp)
5783 if (TREE_CODE (*fieldlistp) == FIELD_DECL && DECL_INITIAL (*fieldlistp))
5784 *fieldlistp = TREE_CHAIN (*fieldlistp);
5785 else
5786 fieldlistp = &TREE_CHAIN (*fieldlistp);
5789 /* Now we have the truly final field list.
5790 Store it in this type and in the variants. */
5792 TYPE_FIELDS (t) = fieldlist;
5794 for (x = TYPE_MAIN_VARIANT (t); x; x = TYPE_NEXT_VARIANT (x))
5796 TYPE_FIELDS (x) = TYPE_FIELDS (t);
5797 TYPE_LANG_SPECIFIC (x) = TYPE_LANG_SPECIFIC (t);
5798 TYPE_ALIGN (x) = TYPE_ALIGN (t);
5799 TYPE_USER_ALIGN (x) = TYPE_USER_ALIGN (t);
5802 /* If this was supposed to be a transparent union, but we can't
5803 make it one, warn and turn off the flag. */
5804 if (TREE_CODE (t) == UNION_TYPE
5805 && TYPE_TRANSPARENT_UNION (t)
5806 && TYPE_MODE (t) != DECL_MODE (TYPE_FIELDS (t)))
5808 TYPE_TRANSPARENT_UNION (t) = 0;
5809 warning ("union cannot be made transparent");
5812 /* If this structure or union completes the type of any previous
5813 variable declaration, lay it out and output its rtl. */
5815 if (current_binding_level->n_incomplete != 0)
5817 tree decl;
5818 for (decl = current_binding_level->names; decl; decl = TREE_CHAIN (decl))
5820 if (TYPE_MAIN_VARIANT (TREE_TYPE (decl)) == TYPE_MAIN_VARIANT (t)
5821 && TREE_CODE (decl) != TYPE_DECL)
5823 layout_decl (decl, 0);
5824 /* This is a no-op in c-lang.c or something real in objc-actions.c. */
5825 maybe_objc_check_decl (decl);
5826 rest_of_decl_compilation (decl, NULL, toplevel, 0);
5827 if (! toplevel)
5828 expand_decl (decl);
5829 if (--current_binding_level->n_incomplete == 0)
5830 break;
5832 else if (!COMPLETE_TYPE_P (TREE_TYPE (decl))
5833 && TREE_CODE (TREE_TYPE (decl)) == ARRAY_TYPE)
5835 tree element = TREE_TYPE (decl);
5836 while (TREE_CODE (element) == ARRAY_TYPE)
5837 element = TREE_TYPE (element);
5838 if (element == t)
5840 layout_array_type (TREE_TYPE (decl));
5841 if (TREE_CODE (decl) != TYPE_DECL)
5843 layout_decl (decl, 0);
5844 maybe_objc_check_decl (decl);
5845 rest_of_decl_compilation (decl, NULL, toplevel, 0);
5846 if (! toplevel)
5847 expand_decl (decl);
5849 if (--current_binding_level->n_incomplete == 0)
5850 break;
5856 /* Finish debugging output for this type. */
5857 rest_of_type_compilation (t, toplevel);
5859 return t;
5862 /* Lay out the type T, and its element type, and so on. */
5864 static void
5865 layout_array_type (t)
5866 tree t;
5868 if (TREE_CODE (TREE_TYPE (t)) == ARRAY_TYPE)
5869 layout_array_type (TREE_TYPE (t));
5870 layout_type (t);
5873 /* Begin compiling the definition of an enumeration type.
5874 NAME is its name (or null if anonymous).
5875 Returns the type object, as yet incomplete.
5876 Also records info about it so that build_enumerator
5877 may be used to declare the individual values as they are read. */
5879 tree
5880 start_enum (name)
5881 tree name;
5883 tree enumtype = 0;
5885 /* If this is the real definition for a previous forward reference,
5886 fill in the contents in the same object that used to be the
5887 forward reference. */
5889 if (name != 0)
5890 enumtype = lookup_tag (ENUMERAL_TYPE, name, current_binding_level, 1);
5892 if (enumtype == 0 || TREE_CODE (enumtype) != ENUMERAL_TYPE)
5894 enumtype = make_node (ENUMERAL_TYPE);
5895 pushtag (name, enumtype);
5898 C_TYPE_BEING_DEFINED (enumtype) = 1;
5900 if (TYPE_VALUES (enumtype) != 0)
5902 /* This enum is a named one that has been declared already. */
5903 error ("redeclaration of `enum %s'", IDENTIFIER_POINTER (name));
5905 /* Completely replace its old definition.
5906 The old enumerators remain defined, however. */
5907 TYPE_VALUES (enumtype) = 0;
5910 enum_next_value = integer_zero_node;
5911 enum_overflow = 0;
5913 if (flag_short_enums)
5914 TYPE_PACKED (enumtype) = 1;
5916 return enumtype;
5919 /* After processing and defining all the values of an enumeration type,
5920 install their decls in the enumeration type and finish it off.
5921 ENUMTYPE is the type object, VALUES a list of decl-value pairs,
5922 and ATTRIBUTES are the specified attributes.
5923 Returns ENUMTYPE. */
5925 tree
5926 finish_enum (enumtype, values, attributes)
5927 tree enumtype;
5928 tree values;
5929 tree attributes;
5931 tree pair, tem;
5932 tree minnode = 0, maxnode = 0, enum_value_type;
5933 int precision, unsign;
5934 int toplevel = (global_binding_level == current_binding_level);
5936 if (in_parm_level_p ())
5937 warning ("enum defined inside parms");
5939 decl_attributes (&enumtype, attributes, (int) ATTR_FLAG_TYPE_IN_PLACE);
5941 /* Calculate the maximum value of any enumerator in this type. */
5943 if (values == error_mark_node)
5944 minnode = maxnode = integer_zero_node;
5945 else
5947 minnode = maxnode = TREE_VALUE (values);
5948 for (pair = TREE_CHAIN (values); pair; pair = TREE_CHAIN (pair))
5950 tree value = TREE_VALUE (pair);
5951 if (tree_int_cst_lt (maxnode, value))
5952 maxnode = value;
5953 if (tree_int_cst_lt (value, minnode))
5954 minnode = value;
5958 /* Construct the final type of this enumeration. It is the same
5959 as one of the integral types - the narrowest one that fits, except
5960 that normally we only go as narrow as int - and signed iff any of
5961 the values are negative. */
5962 unsign = (tree_int_cst_sgn (minnode) >= 0);
5963 precision = MAX (min_precision (minnode, unsign),
5964 min_precision (maxnode, unsign));
5965 if (TYPE_PACKED (enumtype) || precision > TYPE_PRECISION (integer_type_node))
5967 tree narrowest = type_for_size (precision, unsign);
5968 if (narrowest == 0)
5970 warning ("enumeration values exceed range of largest integer");
5971 narrowest = long_long_integer_type_node;
5974 precision = TYPE_PRECISION (narrowest);
5976 else
5977 precision = TYPE_PRECISION (integer_type_node);
5979 if (precision == TYPE_PRECISION (integer_type_node))
5980 enum_value_type = type_for_size (precision, 0);
5981 else
5982 enum_value_type = enumtype;
5984 TYPE_MIN_VALUE (enumtype) = minnode;
5985 TYPE_MAX_VALUE (enumtype) = maxnode;
5986 TYPE_PRECISION (enumtype) = precision;
5987 TREE_UNSIGNED (enumtype) = unsign;
5988 TYPE_SIZE (enumtype) = 0;
5989 layout_type (enumtype);
5991 if (values != error_mark_node)
5993 /* Change the type of the enumerators to be the enum type. We
5994 need to do this irrespective of the size of the enum, for
5995 proper type checking. Replace the DECL_INITIALs of the
5996 enumerators, and the value slots of the list, with copies
5997 that have the enum type; they cannot be modified in place
5998 because they may be shared (e.g. integer_zero_node) Finally,
5999 change the purpose slots to point to the names of the decls. */
6000 for (pair = values; pair; pair = TREE_CHAIN (pair))
6002 tree enu = TREE_PURPOSE (pair);
6004 TREE_TYPE (enu) = enumtype;
6005 DECL_SIZE (enu) = TYPE_SIZE (enumtype);
6006 DECL_SIZE_UNIT (enu) = TYPE_SIZE_UNIT (enumtype);
6007 DECL_ALIGN (enu) = TYPE_ALIGN (enumtype);
6008 DECL_USER_ALIGN (enu) = TYPE_USER_ALIGN (enumtype);
6009 DECL_MODE (enu) = TYPE_MODE (enumtype);
6011 /* The ISO C Standard mandates enumerators to have type int,
6012 even though the underlying type of an enum type is
6013 unspecified. Here we convert any enumerators that fit in
6014 an int to type int, to avoid promotions to unsigned types
6015 when comparing integers with enumerators that fit in the
6016 int range. When -pedantic is given, build_enumerator()
6017 would have already taken care of those that don't fit. */
6018 if (int_fits_type_p (DECL_INITIAL (enu), enum_value_type))
6019 DECL_INITIAL (enu) = convert (enum_value_type, DECL_INITIAL (enu));
6020 else
6021 DECL_INITIAL (enu) = convert (enumtype, DECL_INITIAL (enu));
6023 TREE_PURPOSE (pair) = DECL_NAME (enu);
6024 TREE_VALUE (pair) = DECL_INITIAL (enu);
6027 TYPE_VALUES (enumtype) = values;
6030 /* Fix up all variant types of this enum type. */
6031 for (tem = TYPE_MAIN_VARIANT (enumtype); tem; tem = TYPE_NEXT_VARIANT (tem))
6033 if (tem == enumtype)
6034 continue;
6035 TYPE_VALUES (tem) = TYPE_VALUES (enumtype);
6036 TYPE_MIN_VALUE (tem) = TYPE_MIN_VALUE (enumtype);
6037 TYPE_MAX_VALUE (tem) = TYPE_MAX_VALUE (enumtype);
6038 TYPE_SIZE (tem) = TYPE_SIZE (enumtype);
6039 TYPE_SIZE_UNIT (tem) = TYPE_SIZE_UNIT (enumtype);
6040 TYPE_MODE (tem) = TYPE_MODE (enumtype);
6041 TYPE_PRECISION (tem) = TYPE_PRECISION (enumtype);
6042 TYPE_ALIGN (tem) = TYPE_ALIGN (enumtype);
6043 TYPE_USER_ALIGN (tem) = TYPE_USER_ALIGN (enumtype);
6044 TREE_UNSIGNED (tem) = TREE_UNSIGNED (enumtype);
6047 /* Finish debugging output for this type. */
6048 rest_of_type_compilation (enumtype, toplevel);
6050 return enumtype;
6053 /* Build and install a CONST_DECL for one value of the
6054 current enumeration type (one that was begun with start_enum).
6055 Return a tree-list containing the CONST_DECL and its value.
6056 Assignment of sequential values by default is handled here. */
6058 tree
6059 build_enumerator (name, value)
6060 tree name, value;
6062 tree decl, type;
6064 /* Validate and default VALUE. */
6066 /* Remove no-op casts from the value. */
6067 if (value)
6068 STRIP_TYPE_NOPS (value);
6070 if (value != 0)
6072 if (TREE_CODE (value) == INTEGER_CST)
6074 value = default_conversion (value);
6075 constant_expression_warning (value);
6077 else
6079 error ("enumerator value for `%s' not integer constant",
6080 IDENTIFIER_POINTER (name));
6081 value = 0;
6085 /* Default based on previous value. */
6086 /* It should no longer be possible to have NON_LVALUE_EXPR
6087 in the default. */
6088 if (value == 0)
6090 value = enum_next_value;
6091 if (enum_overflow)
6092 error ("overflow in enumeration values");
6095 if (pedantic && ! int_fits_type_p (value, integer_type_node))
6097 pedwarn ("ISO C restricts enumerator values to range of `int'");
6098 value = convert (integer_type_node, value);
6101 /* Set basis for default for next value. */
6102 enum_next_value = build_binary_op (PLUS_EXPR, value, integer_one_node, 0);
6103 enum_overflow = tree_int_cst_lt (enum_next_value, value);
6105 /* Now create a declaration for the enum value name. */
6107 type = TREE_TYPE (value);
6108 type = type_for_size (MAX (TYPE_PRECISION (type),
6109 TYPE_PRECISION (integer_type_node)),
6110 ((flag_traditional
6111 || TYPE_PRECISION (type) >= TYPE_PRECISION (integer_type_node))
6112 && TREE_UNSIGNED (type)));
6114 decl = build_decl (CONST_DECL, name, type);
6115 DECL_INITIAL (decl) = convert (type, value);
6116 pushdecl (decl);
6118 return tree_cons (decl, value, NULL_TREE);
6122 /* Create the FUNCTION_DECL for a function definition.
6123 DECLSPECS, DECLARATOR and ATTRIBUTES are the parts of
6124 the declaration; they describe the function's name and the type it returns,
6125 but twisted together in a fashion that parallels the syntax of C.
6127 This function creates a binding context for the function body
6128 as well as setting up the FUNCTION_DECL in current_function_decl.
6130 Returns 1 on success. If the DECLARATOR is not suitable for a function
6131 (it defines a datum instead), we return 0, which tells
6132 yyparse to report a parse error. */
6135 start_function (declspecs, declarator, attributes)
6136 tree declarator, declspecs, attributes;
6138 tree decl1, old_decl;
6139 tree restype;
6140 int old_immediate_size_expand = immediate_size_expand;
6142 current_function_returns_value = 0; /* Assume, until we see it does. */
6143 current_function_returns_null = 0;
6144 warn_about_return_type = 0;
6145 current_extern_inline = 0;
6146 c_function_varargs = 0;
6147 named_labels = 0;
6148 shadowed_labels = 0;
6150 /* Don't expand any sizes in the return type of the function. */
6151 immediate_size_expand = 0;
6153 decl1 = grokdeclarator (declarator, declspecs, FUNCDEF, 1);
6155 /* If the declarator is not suitable for a function definition,
6156 cause a syntax error. */
6157 if (decl1 == 0)
6159 immediate_size_expand = old_immediate_size_expand;
6160 return 0;
6163 decl_attributes (&decl1, attributes, 0);
6165 if (DECL_DECLARED_INLINE_P (decl1)
6166 && DECL_UNINLINABLE (decl1)
6167 && lookup_attribute ("noinline", DECL_ATTRIBUTES (decl1)))
6168 warning_with_decl (decl1,
6169 "inline function `%s' given attribute noinline");
6171 announce_function (decl1);
6173 if (!COMPLETE_OR_VOID_TYPE_P (TREE_TYPE (TREE_TYPE (decl1))))
6175 error ("return type is an incomplete type");
6176 /* Make it return void instead. */
6177 TREE_TYPE (decl1)
6178 = build_function_type (void_type_node,
6179 TYPE_ARG_TYPES (TREE_TYPE (decl1)));
6182 if (warn_about_return_type)
6183 pedwarn_c99 ("return type defaults to `int'");
6185 /* Save the parm names or decls from this function's declarator
6186 where store_parm_decls will find them. */
6187 current_function_parms = last_function_parms;
6188 current_function_parm_tags = last_function_parm_tags;
6190 /* Make the init_value nonzero so pushdecl knows this is not tentative.
6191 error_mark_node is replaced below (in poplevel) with the BLOCK. */
6192 DECL_INITIAL (decl1) = error_mark_node;
6194 /* If this definition isn't a prototype and we had a prototype declaration
6195 before, copy the arg type info from that prototype.
6196 But not if what we had before was a builtin function. */
6197 old_decl = lookup_name_current_level (DECL_NAME (decl1));
6198 if (old_decl != 0 && TREE_CODE (TREE_TYPE (old_decl)) == FUNCTION_TYPE
6199 && !DECL_BUILT_IN (old_decl)
6200 && (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (decl1)))
6201 == TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (old_decl))))
6202 && TYPE_ARG_TYPES (TREE_TYPE (decl1)) == 0)
6204 TREE_TYPE (decl1) = TREE_TYPE (old_decl);
6205 current_function_prototype_file = DECL_SOURCE_FILE (old_decl);
6206 current_function_prototype_line = DECL_SOURCE_LINE (old_decl);
6209 /* If there is no explicit declaration, look for any out-of-scope implicit
6210 declarations. */
6211 if (old_decl == 0)
6212 old_decl = IDENTIFIER_IMPLICIT_DECL (DECL_NAME (decl1));
6214 /* Optionally warn of old-fashioned def with no previous prototype. */
6215 if (warn_strict_prototypes
6216 && TYPE_ARG_TYPES (TREE_TYPE (decl1)) == 0
6217 && !(old_decl != 0
6218 && (TYPE_ARG_TYPES (TREE_TYPE (old_decl)) != 0
6219 || (DECL_BUILT_IN (old_decl)
6220 && ! C_DECL_ANTICIPATED (old_decl)))))
6221 warning ("function declaration isn't a prototype");
6222 /* Optionally warn of any global def with no previous prototype. */
6223 else if (warn_missing_prototypes
6224 && TREE_PUBLIC (decl1)
6225 && !(old_decl != 0
6226 && (TYPE_ARG_TYPES (TREE_TYPE (old_decl)) != 0
6227 || (DECL_BUILT_IN (old_decl)
6228 && ! C_DECL_ANTICIPATED (old_decl))))
6229 && ! MAIN_NAME_P (DECL_NAME (decl1)))
6230 warning_with_decl (decl1, "no previous prototype for `%s'");
6231 /* Optionally warn of any def with no previous prototype
6232 if the function has already been used. */
6233 else if (warn_missing_prototypes
6234 && old_decl != 0 && TREE_USED (old_decl)
6235 && TYPE_ARG_TYPES (TREE_TYPE (old_decl)) == 0)
6236 warning_with_decl (decl1,
6237 "`%s' was used with no prototype before its definition");
6238 /* Optionally warn of any global def with no previous declaration. */
6239 else if (warn_missing_declarations
6240 && TREE_PUBLIC (decl1)
6241 && old_decl == 0
6242 && ! MAIN_NAME_P (DECL_NAME (decl1)))
6243 warning_with_decl (decl1, "no previous declaration for `%s'");
6244 /* Optionally warn of any def with no previous declaration
6245 if the function has already been used. */
6246 else if (warn_missing_declarations
6247 && old_decl != 0 && TREE_USED (old_decl)
6248 && old_decl == IDENTIFIER_IMPLICIT_DECL (DECL_NAME (decl1)))
6249 warning_with_decl (decl1,
6250 "`%s' was used with no declaration before its definition");
6252 /* This is a definition, not a reference.
6253 So normally clear DECL_EXTERNAL.
6254 However, `extern inline' acts like a declaration
6255 except for defining how to inline. So set DECL_EXTERNAL in that case. */
6256 DECL_EXTERNAL (decl1) = current_extern_inline;
6258 /* This function exists in static storage.
6259 (This does not mean `static' in the C sense!) */
6260 TREE_STATIC (decl1) = 1;
6262 /* A nested function is not global. */
6263 if (current_function_decl != 0)
6264 TREE_PUBLIC (decl1) = 0;
6266 /* Warn for unlikely, improbable, or stupid declarations of `main'. */
6267 if (warn_main > 0 && MAIN_NAME_P (DECL_NAME (decl1)))
6269 tree args;
6270 int argct = 0;
6272 if (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (decl1)))
6273 != integer_type_node)
6274 pedwarn_with_decl (decl1, "return type of `%s' is not `int'");
6276 for (args = TYPE_ARG_TYPES (TREE_TYPE (decl1)); args;
6277 args = TREE_CHAIN (args))
6279 tree type = args ? TREE_VALUE (args) : 0;
6281 if (type == void_type_node)
6282 break;
6284 ++argct;
6285 switch (argct)
6287 case 1:
6288 if (TYPE_MAIN_VARIANT (type) != integer_type_node)
6289 pedwarn_with_decl (decl1,
6290 "first argument of `%s' should be `int'");
6291 break;
6293 case 2:
6294 if (TREE_CODE (type) != POINTER_TYPE
6295 || TREE_CODE (TREE_TYPE (type)) != POINTER_TYPE
6296 || (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (type)))
6297 != char_type_node))
6298 pedwarn_with_decl (decl1,
6299 "second argument of `%s' should be `char **'");
6300 break;
6302 case 3:
6303 if (TREE_CODE (type) != POINTER_TYPE
6304 || TREE_CODE (TREE_TYPE (type)) != POINTER_TYPE
6305 || (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (type)))
6306 != char_type_node))
6307 pedwarn_with_decl (decl1,
6308 "third argument of `%s' should probably be `char **'");
6309 break;
6313 /* It is intentional that this message does not mention the third
6314 argument because it's only mentioned in an appendix of the
6315 standard. */
6316 if (argct > 0 && (argct < 2 || argct > 3))
6317 pedwarn_with_decl (decl1, "`%s' takes only zero or two arguments");
6319 if (! TREE_PUBLIC (decl1))
6320 pedwarn_with_decl (decl1, "`%s' is normally a non-static function");
6323 /* Record the decl so that the function name is defined.
6324 If we already have a decl for this name, and it is a FUNCTION_DECL,
6325 use the old decl. */
6327 current_function_decl = pushdecl (decl1);
6329 pushlevel (0);
6330 declare_parm_level (1);
6331 current_binding_level->subblocks_tag_transparent = 1;
6333 make_decl_rtl (current_function_decl, NULL);
6335 restype = TREE_TYPE (TREE_TYPE (current_function_decl));
6336 /* Promote the value to int before returning it. */
6337 if (c_promoting_integer_type_p (restype))
6339 /* It retains unsignedness if traditional
6340 or if not really getting wider. */
6341 if (TREE_UNSIGNED (restype)
6342 && (flag_traditional
6343 || (TYPE_PRECISION (restype)
6344 == TYPE_PRECISION (integer_type_node))))
6345 restype = unsigned_type_node;
6346 else
6347 restype = integer_type_node;
6349 DECL_RESULT (current_function_decl)
6350 = build_decl (RESULT_DECL, NULL_TREE, restype);
6352 /* If this fcn was already referenced via a block-scope `extern' decl
6353 (or an implicit decl), propagate certain information about the usage. */
6354 if (TREE_ADDRESSABLE (DECL_ASSEMBLER_NAME (current_function_decl)))
6355 TREE_ADDRESSABLE (current_function_decl) = 1;
6357 immediate_size_expand = old_immediate_size_expand;
6359 start_fname_decls ();
6361 return 1;
6364 /* Record that this function is going to be a varargs function.
6365 This is called before store_parm_decls, which is too early
6366 to call mark_varargs directly. */
6368 void
6369 c_mark_varargs ()
6371 c_function_varargs = 1;
6374 /* Store the parameter declarations into the current function declaration.
6375 This is called after parsing the parameter declarations, before
6376 digesting the body of the function.
6378 For an old-style definition, modify the function's type
6379 to specify at least the number of arguments. */
6381 void
6382 store_parm_decls ()
6384 tree fndecl = current_function_decl;
6385 tree parm;
6387 /* This is either a chain of PARM_DECLs (if a prototype was used)
6388 or a list of IDENTIFIER_NODEs (for an old-fashioned C definition). */
6389 tree specparms = current_function_parms;
6391 /* This is a list of types declared among parms in a prototype. */
6392 tree parmtags = current_function_parm_tags;
6394 /* This is a chain of PARM_DECLs from old-style parm declarations. */
6395 tree parmdecls = getdecls ();
6397 /* This is a chain of any other decls that came in among the parm
6398 declarations. If a parm is declared with enum {foo, bar} x;
6399 then CONST_DECLs for foo and bar are put here. */
6400 tree nonparms = 0;
6402 /* The function containing FNDECL, if any. */
6403 tree context = decl_function_context (fndecl);
6405 /* Nonzero if this definition is written with a prototype. */
6406 int prototype = 0;
6408 int saved_warn_shadow = warn_shadow;
6410 /* Don't re-emit shadow warnings. */
6411 warn_shadow = 0;
6413 if (specparms != 0 && TREE_CODE (specparms) != TREE_LIST)
6415 /* This case is when the function was defined with an ANSI prototype.
6416 The parms already have decls, so we need not do anything here
6417 except record them as in effect
6418 and complain if any redundant old-style parm decls were written. */
6420 tree next;
6421 tree others = 0;
6423 prototype = 1;
6425 if (parmdecls != 0)
6427 tree decl, link;
6429 error_with_decl (fndecl,
6430 "parm types given both in parmlist and separately");
6431 /* Get rid of the erroneous decls; don't keep them on
6432 the list of parms, since they might not be PARM_DECLs. */
6433 for (decl = current_binding_level->names;
6434 decl; decl = TREE_CHAIN (decl))
6435 if (DECL_NAME (decl))
6436 IDENTIFIER_LOCAL_VALUE (DECL_NAME (decl)) = 0;
6437 for (link = current_binding_level->shadowed;
6438 link; link = TREE_CHAIN (link))
6439 IDENTIFIER_LOCAL_VALUE (TREE_PURPOSE (link)) = TREE_VALUE (link);
6440 current_binding_level->names = 0;
6441 current_binding_level->shadowed = 0;
6444 specparms = nreverse (specparms);
6445 for (parm = specparms; parm; parm = next)
6447 next = TREE_CHAIN (parm);
6448 if (TREE_CODE (parm) == PARM_DECL)
6450 if (DECL_NAME (parm) == 0)
6451 error_with_decl (parm, "parameter name omitted");
6452 else if (TREE_CODE (TREE_TYPE (parm)) != ERROR_MARK
6453 && VOID_TYPE_P (TREE_TYPE (parm)))
6455 error_with_decl (parm, "parameter `%s' declared void");
6456 /* Change the type to error_mark_node so this parameter
6457 will be ignored by assign_parms. */
6458 TREE_TYPE (parm) = error_mark_node;
6460 pushdecl (parm);
6462 else
6464 /* If we find an enum constant or a type tag,
6465 put it aside for the moment. */
6466 TREE_CHAIN (parm) = 0;
6467 others = chainon (others, parm);
6471 /* Get the decls in their original chain order
6472 and record in the function. */
6473 DECL_ARGUMENTS (fndecl) = getdecls ();
6475 #if 0
6476 /* If this function takes a variable number of arguments,
6477 add a phony parameter to the end of the parm list,
6478 to represent the position of the first unnamed argument. */
6479 if (TREE_VALUE (tree_last (TYPE_ARG_TYPES (TREE_TYPE (fndecl))))
6480 != void_type_node)
6482 tree dummy = build_decl (PARM_DECL, NULL_TREE, void_type_node);
6483 /* Let's hope the address of the unnamed parm
6484 won't depend on its type. */
6485 TREE_TYPE (dummy) = integer_type_node;
6486 DECL_ARG_TYPE (dummy) = integer_type_node;
6487 DECL_ARGUMENTS (fndecl) = chainon (DECL_ARGUMENTS (fndecl), dummy);
6489 #endif
6491 /* Now pushdecl the enum constants. */
6492 for (parm = others; parm; parm = next)
6494 next = TREE_CHAIN (parm);
6495 if (DECL_NAME (parm) == 0)
6497 else if (TYPE_MAIN_VARIANT (TREE_TYPE (parm)) == void_type_node)
6499 else if (TREE_CODE (parm) != PARM_DECL)
6500 pushdecl (parm);
6503 storetags (chainon (parmtags, gettags ()));
6505 else
6507 /* SPECPARMS is an identifier list--a chain of TREE_LIST nodes
6508 each with a parm name as the TREE_VALUE.
6510 PARMDECLS is a chain of declarations for parameters.
6511 Warning! It can also contain CONST_DECLs which are not parameters
6512 but are names of enumerators of any enum types
6513 declared among the parameters.
6515 First match each formal parameter name with its declaration.
6516 Associate decls with the names and store the decls
6517 into the TREE_PURPOSE slots. */
6519 /* We use DECL_WEAK as a flag to show which parameters have been
6520 seen already since it is not used on PARM_DECL or CONST_DECL. */
6521 for (parm = parmdecls; parm; parm = TREE_CHAIN (parm))
6522 DECL_WEAK (parm) = 0;
6524 for (parm = specparms; parm; parm = TREE_CHAIN (parm))
6526 tree tail, found = NULL;
6528 if (TREE_VALUE (parm) == 0)
6530 error_with_decl (fndecl,
6531 "parameter name missing from parameter list");
6532 TREE_PURPOSE (parm) = 0;
6533 continue;
6536 /* See if any of the parmdecls specifies this parm by name.
6537 Ignore any enumerator decls. */
6538 for (tail = parmdecls; tail; tail = TREE_CHAIN (tail))
6539 if (DECL_NAME (tail) == TREE_VALUE (parm)
6540 && TREE_CODE (tail) == PARM_DECL)
6542 found = tail;
6543 break;
6546 /* If declaration already marked, we have a duplicate name.
6547 Complain, and don't use this decl twice. */
6548 if (found && DECL_WEAK (found))
6550 error_with_decl (found, "multiple parameters named `%s'");
6551 found = 0;
6554 /* If the declaration says "void", complain and ignore it. */
6555 if (found && VOID_TYPE_P (TREE_TYPE (found)))
6557 error_with_decl (found, "parameter `%s' declared void");
6558 TREE_TYPE (found) = integer_type_node;
6559 DECL_ARG_TYPE (found) = integer_type_node;
6560 layout_decl (found, 0);
6563 /* Traditionally, a parm declared float is actually a double. */
6564 if (found && flag_traditional
6565 && TYPE_MAIN_VARIANT (TREE_TYPE (found)) == float_type_node)
6567 TREE_TYPE (found) = double_type_node;
6568 DECL_ARG_TYPE (found) = double_type_node;
6569 layout_decl (found, 0);
6572 /* If no declaration found, default to int. */
6573 if (!found)
6575 found = build_decl (PARM_DECL, TREE_VALUE (parm),
6576 integer_type_node);
6577 DECL_ARG_TYPE (found) = TREE_TYPE (found);
6578 DECL_SOURCE_LINE (found) = DECL_SOURCE_LINE (fndecl);
6579 DECL_SOURCE_FILE (found) = DECL_SOURCE_FILE (fndecl);
6580 if (flag_isoc99)
6581 pedwarn_with_decl (found, "type of `%s' defaults to `int'");
6582 else if (extra_warnings)
6583 warning_with_decl (found, "type of `%s' defaults to `int'");
6584 pushdecl (found);
6587 TREE_PURPOSE (parm) = found;
6589 /* Mark this decl as "already found". */
6590 DECL_WEAK (found) = 1;
6593 /* Put anything which is on the parmdecls chain and which is
6594 not a PARM_DECL onto the list NONPARMS. (The types of
6595 non-parm things which might appear on the list include
6596 enumerators and NULL-named TYPE_DECL nodes.) Complain about
6597 any actual PARM_DECLs not matched with any names. */
6599 nonparms = 0;
6600 for (parm = parmdecls; parm;)
6602 tree next = TREE_CHAIN (parm);
6603 TREE_CHAIN (parm) = 0;
6605 if (TREE_CODE (parm) != PARM_DECL)
6606 nonparms = chainon (nonparms, parm);
6607 else
6609 /* Complain about args with incomplete types. */
6610 if (!COMPLETE_TYPE_P (TREE_TYPE (parm)))
6612 error_with_decl (parm, "parameter `%s' has incomplete type");
6613 TREE_TYPE (parm) = error_mark_node;
6616 if (! DECL_WEAK (parm))
6618 error_with_decl (parm,
6619 "declaration for parameter `%s' but no such parameter");
6620 /* Pretend the parameter was not missing.
6621 This gets us to a standard state and minimizes
6622 further error messages. */
6623 specparms
6624 = chainon (specparms,
6625 tree_cons (parm, NULL_TREE, NULL_TREE));
6629 parm = next;
6632 /* Chain the declarations together in the order of the list of
6633 names. Store that chain in the function decl, replacing the
6634 list of names. */
6635 parm = specparms;
6636 DECL_ARGUMENTS (fndecl) = 0;
6638 tree last;
6639 for (last = 0; parm; parm = TREE_CHAIN (parm))
6640 if (TREE_PURPOSE (parm))
6642 if (last == 0)
6643 DECL_ARGUMENTS (fndecl) = TREE_PURPOSE (parm);
6644 else
6645 TREE_CHAIN (last) = TREE_PURPOSE (parm);
6646 last = TREE_PURPOSE (parm);
6647 TREE_CHAIN (last) = 0;
6651 /* If there was a previous prototype,
6652 set the DECL_ARG_TYPE of each argument according to
6653 the type previously specified, and report any mismatches. */
6655 if (TYPE_ARG_TYPES (TREE_TYPE (fndecl)))
6657 tree type;
6658 for (parm = DECL_ARGUMENTS (fndecl),
6659 type = TYPE_ARG_TYPES (TREE_TYPE (fndecl));
6660 parm || (type && (TYPE_MAIN_VARIANT (TREE_VALUE (type))
6661 != void_type_node));
6662 parm = TREE_CHAIN (parm), type = TREE_CHAIN (type))
6664 if (parm == 0 || type == 0
6665 || TYPE_MAIN_VARIANT (TREE_VALUE (type)) == void_type_node)
6667 error ("number of arguments doesn't match prototype");
6668 error_with_file_and_line (current_function_prototype_file,
6669 current_function_prototype_line,
6670 "prototype declaration");
6671 break;
6673 /* Type for passing arg must be consistent with that
6674 declared for the arg. ISO C says we take the unqualified
6675 type for parameters declared with qualified type. */
6676 if (! comptypes (TYPE_MAIN_VARIANT (DECL_ARG_TYPE (parm)),
6677 TYPE_MAIN_VARIANT (TREE_VALUE (type))))
6679 if (TYPE_MAIN_VARIANT (TREE_TYPE (parm))
6680 == TYPE_MAIN_VARIANT (TREE_VALUE (type)))
6682 /* Adjust argument to match prototype. E.g. a previous
6683 `int foo(float);' prototype causes
6684 `int foo(x) float x; {...}' to be treated like
6685 `int foo(float x) {...}'. This is particularly
6686 useful for argument types like uid_t. */
6687 DECL_ARG_TYPE (parm) = TREE_TYPE (parm);
6689 if (PROMOTE_PROTOTYPES
6690 && INTEGRAL_TYPE_P (TREE_TYPE (parm))
6691 && TYPE_PRECISION (TREE_TYPE (parm))
6692 < TYPE_PRECISION (integer_type_node))
6693 DECL_ARG_TYPE (parm) = integer_type_node;
6695 if (pedantic)
6697 pedwarn ("promoted argument `%s' doesn't match prototype",
6698 IDENTIFIER_POINTER (DECL_NAME (parm)));
6699 warning_with_file_and_line
6700 (current_function_prototype_file,
6701 current_function_prototype_line,
6702 "prototype declaration");
6705 /* If -traditional, allow `int' argument to match
6706 `unsigned' prototype. */
6707 else if (! (flag_traditional
6708 && TYPE_MAIN_VARIANT (TREE_TYPE (parm)) == integer_type_node
6709 && TYPE_MAIN_VARIANT (TREE_VALUE (type)) == unsigned_type_node))
6711 error ("argument `%s' doesn't match prototype",
6712 IDENTIFIER_POINTER (DECL_NAME (parm)));
6713 error_with_file_and_line (current_function_prototype_file,
6714 current_function_prototype_line,
6715 "prototype declaration");
6719 TYPE_ACTUAL_ARG_TYPES (TREE_TYPE (fndecl)) = 0;
6722 /* Otherwise, create a prototype that would match. */
6724 else
6726 tree actual = 0, last = 0, type;
6728 for (parm = DECL_ARGUMENTS (fndecl); parm; parm = TREE_CHAIN (parm))
6730 type = tree_cons (NULL_TREE, DECL_ARG_TYPE (parm), NULL_TREE);
6731 if (last)
6732 TREE_CHAIN (last) = type;
6733 else
6734 actual = type;
6735 last = type;
6737 type = tree_cons (NULL_TREE, void_type_node, NULL_TREE);
6738 if (last)
6739 TREE_CHAIN (last) = type;
6740 else
6741 actual = type;
6743 /* We are going to assign a new value for the TYPE_ACTUAL_ARG_TYPES
6744 of the type of this function, but we need to avoid having this
6745 affect the types of other similarly-typed functions, so we must
6746 first force the generation of an identical (but separate) type
6747 node for the relevant function type. The new node we create
6748 will be a variant of the main variant of the original function
6749 type. */
6751 TREE_TYPE (fndecl) = build_type_copy (TREE_TYPE (fndecl));
6753 TYPE_ACTUAL_ARG_TYPES (TREE_TYPE (fndecl)) = actual;
6756 /* Now store the final chain of decls for the arguments
6757 as the decl-chain of the current lexical scope.
6758 Put the enumerators in as well, at the front so that
6759 DECL_ARGUMENTS is not modified. */
6761 storedecls (chainon (nonparms, DECL_ARGUMENTS (fndecl)));
6764 /* Make sure the binding level for the top of the function body
6765 gets a BLOCK if there are any in the function.
6766 Otherwise, the dbx output is wrong. */
6768 keep_next_if_subblocks = 1;
6770 /* ??? This might be an improvement,
6771 but needs to be thought about some more. */
6772 #if 0
6773 keep_next_level_flag = 1;
6774 #endif
6776 /* Write a record describing this function definition to the prototypes
6777 file (if requested). */
6779 gen_aux_info_record (fndecl, 1, 0, prototype);
6781 /* Initialize the RTL code for the function. */
6782 init_function_start (fndecl, input_filename, lineno);
6784 /* Begin the statement tree for this function. */
6785 begin_stmt_tree (&DECL_SAVED_TREE (current_function_decl));
6787 /* If this is a nested function, save away the sizes of any
6788 variable-size types so that we can expand them when generating
6789 RTL. */
6790 if (context)
6792 tree t;
6794 DECL_LANG_SPECIFIC (fndecl)->pending_sizes
6795 = nreverse (get_pending_sizes ());
6796 for (t = DECL_LANG_SPECIFIC (fndecl)->pending_sizes;
6798 t = TREE_CHAIN (t))
6799 SAVE_EXPR_CONTEXT (TREE_VALUE (t)) = context;
6802 /* This function is being processed in whole-function mode. */
6803 cfun->x_whole_function_mode_p = 1;
6805 /* Even though we're inside a function body, we still don't want to
6806 call expand_expr to calculate the size of a variable-sized array.
6807 We haven't necessarily assigned RTL to all variables yet, so it's
6808 not safe to try to expand expressions involving them. */
6809 immediate_size_expand = 0;
6810 cfun->x_dont_save_pending_sizes_p = 1;
6812 warn_shadow = saved_warn_shadow;
6815 /* Finish up a function declaration and compile that function
6816 all the way to assembler language output. The free the storage
6817 for the function definition.
6819 This is called after parsing the body of the function definition.
6821 NESTED is nonzero if the function being finished is nested in another. */
6823 void
6824 finish_function (nested)
6825 int nested;
6827 tree fndecl = current_function_decl;
6829 /* TREE_READONLY (fndecl) = 1;
6830 This caused &foo to be of type ptr-to-const-function
6831 which then got a warning when stored in a ptr-to-function variable. */
6833 poplevel (1, 0, 1);
6834 BLOCK_SUPERCONTEXT (DECL_INITIAL (fndecl)) = fndecl;
6836 /* Must mark the RESULT_DECL as being in this function. */
6838 DECL_CONTEXT (DECL_RESULT (fndecl)) = fndecl;
6840 /* Obey `register' declarations if `setjmp' is called in this fn. */
6841 if (flag_traditional && current_function_calls_setjmp)
6843 setjmp_protect (DECL_INITIAL (fndecl));
6844 setjmp_protect_args ();
6847 if (MAIN_NAME_P (DECL_NAME (fndecl)) && flag_hosted)
6849 if (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (fndecl)))
6850 != integer_type_node)
6852 /* If warn_main is 1 (-Wmain) or 2 (-Wall), we have already warned.
6853 If warn_main is -1 (-Wno-main) we don't want to be warned. */
6854 if (! warn_main)
6855 pedwarn_with_decl (fndecl, "return type of `%s' is not `int'");
6857 else
6859 #ifdef DEFAULT_MAIN_RETURN
6860 /* Make it so that `main' always returns success by default. */
6861 DEFAULT_MAIN_RETURN;
6862 #else
6863 if (flag_isoc99)
6864 c_expand_return (integer_zero_node);
6865 #endif
6869 finish_fname_decls ();
6871 /* Tie off the statement tree for this function. */
6872 finish_stmt_tree (&DECL_SAVED_TREE (fndecl));
6873 /* Clear out memory we no longer need. */
6874 free_after_parsing (cfun);
6875 /* Since we never call rest_of_compilation, we never clear
6876 CFUN. Do so explicitly. */
6877 free_after_compilation (cfun);
6878 cfun = NULL;
6880 if (! nested)
6882 /* Generate RTL for the body of this function. */
6883 c_expand_body (fndecl, nested, 1);
6884 /* Let the error reporting routines know that we're outside a
6885 function. For a nested function, this value is used in
6886 pop_c_function_context and then reset via pop_function_context. */
6887 current_function_decl = NULL;
6891 /* Generate the RTL for a deferred function FNDECL. */
6893 void
6894 c_expand_deferred_function (fndecl)
6895 tree fndecl;
6897 /* DECL_INLINE or DECL_RESULT might got cleared after the inline
6898 function was deferred, e.g. in duplicate_decls. */
6899 if (DECL_INLINE (fndecl) && DECL_RESULT (fndecl))
6901 c_expand_body (fndecl, 0, 0);
6902 current_function_decl = NULL;
6906 /* Generate the RTL for the body of FNDECL. If NESTED_P is non-zero,
6907 then we are already in the process of generating RTL for another
6908 function. If can_defer_p is zero, we won't attempt to defer the
6909 generation of RTL. */
6911 static void
6912 c_expand_body (fndecl, nested_p, can_defer_p)
6913 tree fndecl;
6914 int nested_p, can_defer_p;
6916 int uninlinable = 1;
6918 /* There's no reason to do any of the work here if we're only doing
6919 semantic analysis; this code just generates RTL. */
6920 if (flag_syntax_only)
6921 return;
6923 if (flag_inline_trees)
6925 /* First, cache whether the current function is inlinable. Some
6926 predicates depend on cfun and current_function_decl to
6927 function completely. */
6928 timevar_push (TV_INTEGRATION);
6929 uninlinable = ! tree_inlinable_function_p (fndecl);
6931 if (! uninlinable && can_defer_p
6932 /* Save function tree for inlining. Should return 0 if the
6933 language does not support function deferring or the
6934 function could not be deferred. */
6935 && defer_fn (fndecl))
6937 /* Let the back-end know that this function exists. */
6938 (*debug_hooks->deferred_inline_function) (fndecl);
6939 timevar_pop (TV_INTEGRATION);
6940 return;
6943 /* Then, inline any functions called in it. */
6944 optimize_inline_calls (fndecl);
6945 timevar_pop (TV_INTEGRATION);
6948 timevar_push (TV_EXPAND);
6950 if (nested_p)
6952 /* Make sure that we will evaluate variable-sized types involved
6953 in our function's type. */
6954 expand_pending_sizes (DECL_LANG_SPECIFIC (fndecl)->pending_sizes);
6955 /* Squirrel away our current state. */
6956 push_function_context ();
6959 /* Initialize the RTL code for the function. */
6960 current_function_decl = fndecl;
6961 init_function_start (fndecl, input_filename, DECL_SOURCE_LINE (fndecl));
6963 /* This function is being processed in whole-function mode. */
6964 cfun->x_whole_function_mode_p = 1;
6966 /* Even though we're inside a function body, we still don't want to
6967 call expand_expr to calculate the size of a variable-sized array.
6968 We haven't necessarily assigned RTL to all variables yet, so it's
6969 not safe to try to expand expressions involving them. */
6970 immediate_size_expand = 0;
6971 cfun->x_dont_save_pending_sizes_p = 1;
6973 /* If this is a varargs function, inform function.c. */
6974 if (c_function_varargs)
6975 mark_varargs ();
6977 /* Set up parameters and prepare for return, for the function. */
6978 expand_function_start (fndecl, 0);
6980 /* If this function is `main', emit a call to `__main'
6981 to run global initializers, etc. */
6982 if (DECL_NAME (fndecl)
6983 && MAIN_NAME_P (DECL_NAME (fndecl))
6984 && DECL_CONTEXT (fndecl) == NULL_TREE)
6985 expand_main_function ();
6987 /* Generate the RTL for this function. */
6988 expand_stmt (DECL_SAVED_TREE (fndecl));
6989 if (uninlinable)
6991 /* Allow the body of the function to be garbage collected. */
6992 DECL_SAVED_TREE (fndecl) = NULL_TREE;
6995 /* We hard-wired immediate_size_expand to zero above.
6996 expand_function_end will decrement this variable. So, we set the
6997 variable to one here, so that after the decrement it will remain
6998 zero. */
6999 immediate_size_expand = 1;
7001 /* Allow language dialects to perform special processing. */
7002 if (lang_expand_function_end)
7003 (*lang_expand_function_end) ();
7005 /* Generate rtl for function exit. */
7006 expand_function_end (input_filename, lineno, 0);
7008 /* If this is a nested function, protect the local variables in the stack
7009 above us from being collected while we're compiling this function. */
7010 if (nested_p)
7011 ggc_push_context ();
7013 /* Run the optimizers and output the assembler code for this function. */
7014 rest_of_compilation (fndecl);
7016 /* Undo the GC context switch. */
7017 if (nested_p)
7018 ggc_pop_context ();
7020 /* With just -W, complain only if function returns both with
7021 and without a value. */
7022 if (extra_warnings
7023 && current_function_returns_value
7024 && current_function_returns_null)
7025 warning ("this function may return with or without a value");
7027 /* If requested, warn about function definitions where the function will
7028 return a value (usually of some struct or union type) which itself will
7029 take up a lot of stack space. */
7031 if (warn_larger_than && !DECL_EXTERNAL (fndecl) && TREE_TYPE (fndecl))
7033 tree ret_type = TREE_TYPE (TREE_TYPE (fndecl));
7035 if (ret_type && TYPE_SIZE_UNIT (ret_type)
7036 && TREE_CODE (TYPE_SIZE_UNIT (ret_type)) == INTEGER_CST
7037 && 0 < compare_tree_int (TYPE_SIZE_UNIT (ret_type),
7038 larger_than_size))
7040 unsigned int size_as_int
7041 = TREE_INT_CST_LOW (TYPE_SIZE_UNIT (ret_type));
7043 if (compare_tree_int (TYPE_SIZE_UNIT (ret_type), size_as_int) == 0)
7044 warning_with_decl (fndecl,
7045 "size of return value of `%s' is %u bytes",
7046 size_as_int);
7047 else
7048 warning_with_decl (fndecl,
7049 "size of return value of `%s' is larger than %d bytes",
7050 larger_than_size);
7054 if (DECL_SAVED_INSNS (fndecl) == 0 && ! nested_p
7055 && ! flag_inline_trees)
7057 /* Stop pointing to the local nodes about to be freed.
7058 But DECL_INITIAL must remain nonzero so we know this
7059 was an actual function definition.
7060 For a nested function, this is done in pop_c_function_context.
7061 If rest_of_compilation set this to 0, leave it 0. */
7062 if (DECL_INITIAL (fndecl) != 0)
7063 DECL_INITIAL (fndecl) = error_mark_node;
7065 DECL_ARGUMENTS (fndecl) = 0;
7068 if (DECL_STATIC_CONSTRUCTOR (fndecl))
7070 if (targetm.have_ctors_dtors)
7071 (* targetm.asm_out.constructor) (XEXP (DECL_RTL (fndecl), 0),
7072 DEFAULT_INIT_PRIORITY);
7073 else
7074 static_ctors = tree_cons (NULL_TREE, fndecl, static_ctors);
7077 if (DECL_STATIC_DESTRUCTOR (fndecl))
7079 if (targetm.have_ctors_dtors)
7080 (* targetm.asm_out.destructor) (XEXP (DECL_RTL (fndecl), 0),
7081 DEFAULT_INIT_PRIORITY);
7082 else
7083 static_dtors = tree_cons (NULL_TREE, fndecl, static_dtors);
7086 if (nested_p)
7087 /* Return to the enclosing function. */
7088 pop_function_context ();
7089 timevar_pop (TV_EXPAND);
7092 /* Check the declarations given in a for-loop for satisfying the C99
7093 constraints. */
7094 void
7095 check_for_loop_decls ()
7097 tree t;
7099 if (!flag_isoc99)
7101 /* If we get here, declarations have been used in a for loop without
7102 the C99 for loop scope. This doesn't make much sense, so don't
7103 allow it. */
7104 error ("`for' loop initial declaration used outside C99 mode");
7105 return;
7107 /* C99 subclause 6.8.5 paragraph 3:
7109 [#3] The declaration part of a for statement shall only
7110 declare identifiers for objects having storage class auto or
7111 register.
7113 It isn't clear whether, in this sentence, "identifiers" binds to
7114 "shall only declare" or to "objects" - that is, whether all identifiers
7115 declared must be identifiers for objects, or whether the restriction
7116 only applies to those that are. (A question on this in comp.std.c
7117 in November 2000 received no answer.) We implement the strictest
7118 interpretation, to avoid creating an extension which later causes
7119 problems. */
7121 for (t = gettags (); t; t = TREE_CHAIN (t))
7123 if (TREE_PURPOSE (t) != 0)
7125 enum tree_code code = TREE_CODE (TREE_VALUE (t));
7127 if (code == RECORD_TYPE)
7128 error ("`struct %s' declared in `for' loop initial declaration",
7129 IDENTIFIER_POINTER (TREE_PURPOSE (t)));
7130 else if (code == UNION_TYPE)
7131 error ("`union %s' declared in `for' loop initial declaration",
7132 IDENTIFIER_POINTER (TREE_PURPOSE (t)));
7133 else
7134 error ("`enum %s' declared in `for' loop initial declaration",
7135 IDENTIFIER_POINTER (TREE_PURPOSE (t)));
7139 for (t = getdecls (); t; t = TREE_CHAIN (t))
7141 if (TREE_CODE (t) != VAR_DECL && DECL_NAME (t))
7142 error_with_decl (t, "declaration of non-variable `%s' in `for' loop initial declaration");
7143 else if (TREE_STATIC (t))
7144 error_with_decl (t, "declaration of static variable `%s' in `for' loop initial declaration");
7145 else if (DECL_EXTERNAL (t))
7146 error_with_decl (t, "declaration of `extern' variable `%s' in `for' loop initial declaration");
7150 /* Save and restore the variables in this file and elsewhere
7151 that keep track of the progress of compilation of the current function.
7152 Used for nested functions. */
7154 struct c_language_function
7156 struct language_function base;
7157 tree named_labels;
7158 tree shadowed_labels;
7159 int returns_value;
7160 int returns_null;
7161 int warn_about_return_type;
7162 int extern_inline;
7163 struct binding_level *binding_level;
7166 /* Save and reinitialize the variables
7167 used during compilation of a C function. */
7169 void
7170 push_c_function_context (f)
7171 struct function *f;
7173 struct c_language_function *p;
7174 p = ((struct c_language_function *)
7175 xmalloc (sizeof (struct c_language_function)));
7176 f->language = (struct language_function *) p;
7178 p->base.x_stmt_tree = c_stmt_tree;
7179 p->base.x_scope_stmt_stack = c_scope_stmt_stack;
7180 p->named_labels = named_labels;
7181 p->shadowed_labels = shadowed_labels;
7182 p->returns_value = current_function_returns_value;
7183 p->returns_null = current_function_returns_null;
7184 p->warn_about_return_type = warn_about_return_type;
7185 p->extern_inline = current_extern_inline;
7186 p->binding_level = current_binding_level;
7189 /* Restore the variables used during compilation of a C function. */
7191 void
7192 pop_c_function_context (f)
7193 struct function *f;
7195 struct c_language_function *p
7196 = (struct c_language_function *) f->language;
7197 tree link;
7199 /* Bring back all the labels that were shadowed. */
7200 for (link = shadowed_labels; link; link = TREE_CHAIN (link))
7201 if (DECL_NAME (TREE_VALUE (link)) != 0)
7202 IDENTIFIER_LABEL_VALUE (DECL_NAME (TREE_VALUE (link)))
7203 = TREE_VALUE (link);
7205 if (DECL_SAVED_INSNS (current_function_decl) == 0
7206 && DECL_SAVED_TREE (current_function_decl) == NULL_TREE)
7208 /* Stop pointing to the local nodes about to be freed. */
7209 /* But DECL_INITIAL must remain nonzero so we know this
7210 was an actual function definition. */
7211 DECL_INITIAL (current_function_decl) = error_mark_node;
7212 DECL_ARGUMENTS (current_function_decl) = 0;
7215 c_stmt_tree = p->base.x_stmt_tree;
7216 c_scope_stmt_stack = p->base.x_scope_stmt_stack;
7217 named_labels = p->named_labels;
7218 shadowed_labels = p->shadowed_labels;
7219 current_function_returns_value = p->returns_value;
7220 current_function_returns_null = p->returns_null;
7221 warn_about_return_type = p->warn_about_return_type;
7222 current_extern_inline = p->extern_inline;
7223 current_binding_level = p->binding_level;
7225 free (p);
7226 f->language = 0;
7229 /* Mark the language specific parts of F for GC. */
7231 void
7232 mark_c_function_context (f)
7233 struct function *f;
7235 struct c_language_function *p
7236 = (struct c_language_function *) f->language;
7238 if (p == 0)
7239 return;
7241 mark_c_language_function (&p->base);
7242 ggc_mark_tree (p->shadowed_labels);
7243 ggc_mark_tree (p->named_labels);
7244 mark_binding_level (&p->binding_level);
7247 /* Copy the DECL_LANG_SPECIFIC data associated with NODE. */
7249 void
7250 copy_lang_decl (decl)
7251 tree decl;
7253 struct lang_decl *ld;
7255 if (!DECL_LANG_SPECIFIC (decl))
7256 return;
7258 ld = (struct lang_decl *) ggc_alloc (sizeof (struct lang_decl));
7259 memcpy ((char *) ld, (char *) DECL_LANG_SPECIFIC (decl),
7260 sizeof (struct lang_decl));
7261 DECL_LANG_SPECIFIC (decl) = ld;
7264 /* Mark the language specific bits in T for GC. */
7266 void
7267 lang_mark_tree (t)
7268 tree t;
7270 if (TREE_CODE (t) == IDENTIFIER_NODE)
7272 struct lang_identifier *i = (struct lang_identifier *) t;
7273 ggc_mark_tree (i->global_value);
7274 ggc_mark_tree (i->local_value);
7275 ggc_mark_tree (i->label_value);
7276 ggc_mark_tree (i->implicit_decl);
7277 ggc_mark_tree (i->error_locus);
7278 ggc_mark_tree (i->limbo_value);
7280 else if (TYPE_P (t) && TYPE_LANG_SPECIFIC (t))
7281 ggc_mark (TYPE_LANG_SPECIFIC (t));
7282 else if (DECL_P (t) && DECL_LANG_SPECIFIC (t))
7284 ggc_mark (DECL_LANG_SPECIFIC (t));
7285 c_mark_lang_decl (&DECL_LANG_SPECIFIC (t)->base);
7286 ggc_mark_tree (DECL_LANG_SPECIFIC (t)->pending_sizes);
7290 /* The functions below are required for functionality of doing
7291 function at once processing in the C front end. Currently these
7292 functions are not called from anywhere in the C front end, but as
7293 these changes continue, that will change. */
7295 /* Returns non-zero if the current statement is a full expression,
7296 i.e. temporaries created during that statement should be destroyed
7297 at the end of the statement. */
7300 stmts_are_full_exprs_p ()
7302 return 0;
7305 /* Returns the stmt_tree (if any) to which statements are currently
7306 being added. If there is no active statement-tree, NULL is
7307 returned. */
7309 stmt_tree
7310 current_stmt_tree ()
7312 return &c_stmt_tree;
7315 /* Returns the stack of SCOPE_STMTs for the current function. */
7317 tree *
7318 current_scope_stmt_stack ()
7320 return &c_scope_stmt_stack;
7323 /* Nonzero if TYPE is an anonymous union or struct type. Always 0 in
7324 C. */
7327 anon_aggr_type_p (node)
7328 tree node ATTRIBUTE_UNUSED;
7330 return 0;
7333 /* Dummy function in place of callback used by C++. */
7335 void
7336 extract_interface_info ()
7340 /* Return a new COMPOUND_STMT, after adding it to the current
7341 statement tree. */
7343 tree
7344 c_begin_compound_stmt ()
7346 tree stmt;
7348 /* Create the COMPOUND_STMT. */
7349 stmt = add_stmt (build_stmt (COMPOUND_STMT, NULL_TREE));
7351 return stmt;
7354 /* Expand T (a DECL_STMT) if it declares an entity not handled by the
7355 common code. */
7357 void
7358 c_expand_decl_stmt (t)
7359 tree t;
7361 tree decl = DECL_STMT_DECL (t);
7363 /* Expand nested functions. */
7364 if (TREE_CODE (decl) == FUNCTION_DECL
7365 && DECL_CONTEXT (decl) == current_function_decl
7366 && DECL_SAVED_TREE (decl))
7367 c_expand_body (decl, /*nested_p=*/1, /*can_defer_p=*/0);
7370 /* Return the IDENTIFIER_GLOBAL_VALUE of T, for use in common code, since
7371 the definition of IDENTIFIER_GLOBAL_VALUE is different for C and C++. */
7373 tree
7374 identifier_global_value (t)
7375 tree t;
7377 return IDENTIFIER_GLOBAL_VALUE (t);
7380 /* Record a builtin type for C. If NAME is non-NULL, it is the name used;
7381 otherwise the name is found in ridpointers from RID_INDEX. */
7383 void
7384 record_builtin_type (rid_index, name, type)
7385 enum rid rid_index;
7386 const char *name;
7387 tree type;
7389 tree id;
7390 if (name == 0)
7391 id = ridpointers[(int) rid_index];
7392 else
7393 id = get_identifier (name);
7394 pushdecl (build_decl (TYPE_DECL, id, type));
7397 /* Build the void_list_node (void_type_node having been created). */
7398 tree
7399 build_void_list_node ()
7401 tree t = build_tree_list (NULL_TREE, void_type_node);
7402 return t;