]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/gcc/c-decl.c
This commit was generated by cvs2svn to compensate for changes in r96539,
[FreeBSD/FreeBSD.git] / contrib / gcc / c-decl.c
1 /* Process declarations and variables for C compiler.
2    Copyright (C) 1988, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
3    2001, 2002 Free Software Foundation, Inc.
4
5 This file is part of GCC.
6
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.
11
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.
16
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.  */
21
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.  */
25
26 /* ??? not all decl nodes are given the most useful possible
27    line numbers.  For example, the CONST_DECLs for enum values.  */
28
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"
49 #include "c-pragma.h"
50
51 /* In grokdeclarator, distinguish syntactic contexts of declarators.  */
52 enum decl_context
53 { NORMAL,                       /* Ordinary declaration */
54   FUNCDEF,                      /* Function definition */
55   PARM,                         /* Declaration of parm before function body */
56   FIELD,                        /* Declaration inside struct or union */
57   BITFIELD,                     /* Likewise but with specified width */
58   TYPENAME};                    /* Typename (inside cast or sizeof)  */
59
60 \f
61 /* Nonzero if we have seen an invalid cross reference
62    to a struct, union, or enum, but not yet printed the message.  */
63
64 tree pending_invalid_xref;
65 /* File and line to appear in the eventual error message.  */
66 const char *pending_invalid_xref_file;
67 int pending_invalid_xref_line;
68
69 /* While defining an enum type, this is 1 plus the last enumerator
70    constant value.  Note that will do not have to save this or `enum_overflow'
71    around nested function definition since such a definition could only
72    occur in an enum value expression and we don't use these variables in
73    that case.  */
74
75 static tree enum_next_value;
76
77 /* Nonzero means that there was overflow computing enum_next_value.  */
78
79 static int enum_overflow;
80
81 /* Parsing a function declarator leaves a list of parameter names
82    or a chain or parameter decls here.  */
83
84 static tree last_function_parms;
85
86 /* Parsing a function declarator leaves here a chain of structure
87    and enum types declared in the parmlist.  */
88
89 static tree last_function_parm_tags;
90
91 /* After parsing the declarator that starts a function definition,
92    `start_function' puts here the list of parameter names or chain of decls.
93    `store_parm_decls' finds it here.  */
94
95 static tree current_function_parms;
96
97 /* Similar, for last_function_parm_tags.  */
98 static tree current_function_parm_tags;
99
100 /* Similar, for the file and line that the prototype came from if this is
101    an old-style definition.  */
102 static const char *current_function_prototype_file;
103 static int current_function_prototype_line;
104
105 /* The current statement tree.  */
106
107 static struct stmt_tree_s c_stmt_tree;
108
109 /* The current scope statement stack.  */
110
111 static tree c_scope_stmt_stack;
112
113 /* A list (chain of TREE_LIST nodes) of all LABEL_DECLs in the function
114    that have names.  Here so we can clear out their names' definitions
115    at the end of the function.  */
116
117 static tree named_labels;
118
119 /* A list of LABEL_DECLs from outer contexts that are currently shadowed.  */
120
121 static tree shadowed_labels;
122
123 /* Nonzero when store_parm_decls is called indicates a varargs function.
124    Value not meaningful after store_parm_decls.  */
125
126 static int c_function_varargs;
127
128 /* Set to 0 at beginning of a function definition, set to 1 if
129    a return statement that specifies a return value is seen.  */
130
131 int current_function_returns_value;
132
133 /* Set to 0 at beginning of a function definition, set to 1 if
134    a return statement with no argument is seen.  */
135
136 int current_function_returns_null;
137
138 /* Set to 0 at beginning of a function definition, set to 1 if
139    a call to a noreturn function is seen.  */
140
141 int current_function_returns_abnormally;
142
143 /* Set to nonzero by `grokdeclarator' for a function
144    whose return type is defaulted, if warnings for this are desired.  */
145
146 static int warn_about_return_type;
147
148 /* Nonzero when starting a function declared `extern inline'.  */
149
150 static int current_extern_inline;
151 \f
152 /* For each binding contour we allocate a binding_level structure
153  * which records the names defined in that contour.
154  * Contours include:
155  *  0) the global one
156  *  1) one for each function definition,
157  *     where internal declarations of the parameters appear.
158  *  2) one for each compound statement,
159  *     to record its declarations.
160  *
161  * The current meaning of a name can be found by searching the levels from
162  * the current one out to the global one.
163  */
164
165 /* Note that the information in the `names' component of the global contour
166    is duplicated in the IDENTIFIER_GLOBAL_VALUEs of all identifiers.  */
167
168 struct binding_level
169   {
170     /* A chain of _DECL nodes for all variables, constants, functions,
171        and typedef types.  These are in the reverse of the order supplied.
172      */
173     tree names;
174
175     /* A list of structure, union and enum definitions,
176      * for looking up tag names.
177      * It is a chain of TREE_LIST nodes, each of whose TREE_PURPOSE is a name,
178      * or NULL_TREE; and whose TREE_VALUE is a RECORD_TYPE, UNION_TYPE,
179      * or ENUMERAL_TYPE node.
180      */
181     tree tags;
182
183     /* For each level, a list of shadowed outer-level local definitions
184        to be restored when this level is popped.
185        Each link is a TREE_LIST whose TREE_PURPOSE is an identifier and
186        whose TREE_VALUE is its old definition (a kind of ..._DECL node).  */
187     tree shadowed;
188
189     /* For each level (except not the global one),
190        a chain of BLOCK nodes for all the levels
191        that were entered and exited one level down.  */
192     tree blocks;
193
194     /* The BLOCK node for this level, if one has been preallocated.
195        If 0, the BLOCK is allocated (if needed) when the level is popped.  */
196     tree this_block;
197
198     /* The binding level which this one is contained in (inherits from).  */
199     struct binding_level *level_chain;
200
201     /* Nonzero for the level that holds the parameters of a function.  */
202     char parm_flag;
203
204     /* Nonzero if this level "doesn't exist" for tags.  */
205     char tag_transparent;
206
207     /* Nonzero if sublevels of this level "don't exist" for tags.
208        This is set in the parm level of a function definition
209        while reading the function body, so that the outermost block
210        of the function body will be tag-transparent.  */
211     char subblocks_tag_transparent;
212
213     /* Nonzero means make a BLOCK for this level regardless of all else.  */
214     char keep;
215
216     /* Nonzero means make a BLOCK if this level has any subblocks.  */
217     char keep_if_subblocks;
218
219     /* Number of decls in `names' that have incomplete
220        structure or union types.  */
221     int n_incomplete;
222
223     /* A list of decls giving the (reversed) specified order of parms,
224        not including any forward-decls in the parmlist.
225        This is so we can put the parms in proper order for assign_parms.  */
226     tree parm_order;
227   };
228
229 #define NULL_BINDING_LEVEL (struct binding_level *) NULL
230
231 /* The binding level currently in effect.  */
232
233 static struct binding_level *current_binding_level;
234
235 /* A chain of binding_level structures awaiting reuse.  */
236
237 static struct binding_level *free_binding_level;
238
239 /* The outermost binding level, for names of file scope.
240    This is created when the compiler is started and exists
241    through the entire run.  */
242
243 static struct binding_level *global_binding_level;
244
245 /* Binding level structures are initialized by copying this one.  */
246
247 static struct binding_level clear_binding_level
248   = {NULL, NULL, NULL, NULL, NULL, NULL_BINDING_LEVEL, 0, 0, 0, 0, 0, 0,
249      NULL};
250
251 /* Nonzero means unconditionally make a BLOCK for the next level pushed.  */
252
253 static int keep_next_level_flag;
254
255 /* Nonzero means make a BLOCK for the next level pushed
256    if it has subblocks.  */
257
258 static int keep_next_if_subblocks;
259
260 /* The chain of outer levels of label scopes.
261    This uses the same data structure used for binding levels,
262    but it works differently: each link in the chain records
263    saved values of named_labels and shadowed_labels for
264    a label binding level outside the current one.  */
265
266 static struct binding_level *label_level_chain;
267
268 /* Functions called automatically at the beginning and end of execution.  */
269
270 tree static_ctors, static_dtors;
271
272 /* Forward declarations.  */
273
274 static struct binding_level * make_binding_level        PARAMS ((void));
275 static void mark_binding_level          PARAMS ((void *));
276 static void clear_limbo_values          PARAMS ((tree));
277 static int duplicate_decls              PARAMS ((tree, tree, int));
278 static int redeclaration_error_message  PARAMS ((tree, tree));
279 static void storedecls                  PARAMS ((tree));
280 static void storetags                   PARAMS ((tree));
281 static tree lookup_tag                  PARAMS ((enum tree_code, tree,
282                                                  struct binding_level *, int));
283 static tree lookup_tag_reverse          PARAMS ((tree));
284 static tree grokdeclarator              PARAMS ((tree, tree, enum decl_context,
285                                                  int));
286 static tree grokparms                   PARAMS ((tree, int));
287 static void layout_array_type           PARAMS ((tree));
288 static tree c_make_fname_decl           PARAMS ((tree, int));
289 static void c_expand_body               PARAMS ((tree, int, int));
290 static void warn_if_shadowing           PARAMS ((tree, tree));
291 \f
292 /* C-specific option variables.  */
293
294 /* Nonzero means allow type mismatches in conditional expressions;
295    just make their values `void'.  */
296
297 int flag_cond_mismatch;
298
299 /* Nonzero means don't recognize the keyword `asm'.  */
300
301 int flag_no_asm;
302
303 /* Nonzero means do some things the same way PCC does.  */
304
305 int flag_traditional;
306
307 /* Nonzero means enable C89 Amendment 1 features.  */
308
309 int flag_isoc94 = 0;
310
311 /* Nonzero means use the ISO C99 dialect of C.  */
312
313 int flag_isoc99 = 0;
314
315 /* Nonzero means that we have builtin functions, and main is an int */
316
317 int flag_hosted = 1;
318
319 /* Nonzero means add default format_arg attributes for functions not
320    in ISO C.  */
321
322 int flag_noniso_default_format_attributes = 1;
323
324 /* Nonzero means to allow single precision math even if we're generally
325    being traditional.  */
326 int flag_allow_single_precision = 0;
327
328 /* Nonzero means to treat bitfields as signed unless they say `unsigned'.  */
329
330 int flag_signed_bitfields = 1;
331 int explicit_flag_signed_bitfields = 0;
332
333 /* Nonzero means warn about use of implicit int.  */
334
335 int warn_implicit_int;
336
337 /* Nonzero means warn about usage of long long when `-pedantic'.  */
338
339 int warn_long_long = 1;
340
341 /* Nonzero means message about use of implicit function declarations;
342  1 means warning; 2 means error.  */
343
344 int mesg_implicit_function_declaration = -1;
345
346 /* Nonzero means give string constants the type `const char *'
347    to get extra warnings from them.  These warnings will be too numerous
348    to be useful, except in thoroughly ANSIfied programs.  */
349
350 int flag_const_strings;
351
352 /* Nonzero means warn about pointer casts that can drop a type qualifier
353    from the pointer target type.  */
354
355 int warn_cast_qual;
356
357 /* Nonzero means warn when casting a function call to a type that does
358    not match the return type (e.g. (float)sqrt() or (anything*)malloc()
359    when there is no previous declaration of sqrt or malloc.  */
360
361 int warn_bad_function_cast;
362
363 /* Warn about functions which might be candidates for format attributes.  */
364
365 int warn_missing_format_attribute;
366
367 /* Warn about traditional constructs whose meanings changed in ANSI C.  */
368
369 int warn_traditional;
370
371 /* Nonzero means warn about sizeof(function) or addition/subtraction
372    of function pointers.  */
373
374 int warn_pointer_arith;
375
376 /* Nonzero means warn for non-prototype function decls
377    or non-prototyped defs without previous prototype.  */
378
379 int warn_strict_prototypes;
380
381 /* Nonzero means warn for any global function def
382    without separate previous prototype decl.  */
383
384 int warn_missing_prototypes;
385
386 /* Nonzero means warn for any global function def
387    without separate previous decl.  */
388
389 int warn_missing_declarations;
390
391 /* Nonzero means warn about multiple (redundant) decls for the same single
392    variable or function.  */
393
394 int warn_redundant_decls = 0;
395
396 /* Nonzero means warn about extern declarations of objects not at
397    file-scope level and about *all* declarations of functions (whether
398    extern or static) not at file-scope level.  Note that we exclude
399    implicit function declarations.  To get warnings about those, use
400    -Wimplicit.  */
401
402 int warn_nested_externs = 0;
403
404 /* Warn about a subscript that has type char.  */
405
406 int warn_char_subscripts = 0;
407
408 /* Warn if a type conversion is done that might have confusing results.  */
409
410 int warn_conversion;
411
412 /* Warn if adding () is suggested.  */
413
414 int warn_parentheses;
415
416 /* Warn if initializer is not completely bracketed.  */
417
418 int warn_missing_braces;
419
420 /* Warn if main is suspicious.  */
421
422 int warn_main;
423
424 /* Warn about #pragma directives that are not recognised.  */
425
426 int warn_unknown_pragmas = 0; /* Tri state variable.  */
427
428 /* Warn about comparison of signed and unsigned values.
429    If -1, neither -Wsign-compare nor -Wno-sign-compare has been specified.  */
430
431 int warn_sign_compare = -1;
432
433 /* Warn about testing equality of floating point numbers.  */
434
435 int warn_float_equal = 0;
436
437 /* Nonzero means warn about use of multicharacter literals.  */
438
439 int warn_multichar = 1;
440
441 /* Nonzero means `$' can be in an identifier.  */
442
443 #ifndef DOLLARS_IN_IDENTIFIERS
444 #define DOLLARS_IN_IDENTIFIERS 1
445 #endif
446 int dollars_in_ident = DOLLARS_IN_IDENTIFIERS;
447
448 /* States indicating how grokdeclarator() should handle declspecs marked
449    with __attribute__((deprecated)).  An object declared as
450    __attribute__((deprecated)) suppresses warnings of uses of other
451    deprecated items.  */
452    
453 enum deprecated_states {
454   DEPRECATED_NORMAL,
455   DEPRECATED_SUPPRESS
456 };
457
458 static enum deprecated_states deprecated_state = DEPRECATED_NORMAL;
459
460 /* Decode the string P as a language-specific option for C.
461    Return the number of strings consumed.  Should not complain
462    if it does not recognise the option.  */
463
464 int
465 c_decode_option (argc, argv)
466      int argc ATTRIBUTE_UNUSED;
467      char **argv;
468 {
469   int strings_processed;
470   char *p = argv[0];
471
472   strings_processed = cpp_handle_option (parse_in, argc, argv, 0);
473
474   if (!strcmp (p, "-ftraditional") || !strcmp (p, "-traditional"))
475     {
476       warning ("-traditional is deprecated and may be removed");
477       flag_traditional = 1;
478       flag_writable_strings = 1;
479     }
480   else if (!strcmp (p, "-fallow-single-precision"))
481     flag_allow_single_precision = 1;
482   else if (!strcmp (p, "-fhosted") || !strcmp (p, "-fno-freestanding"))
483     {
484       flag_hosted = 1;
485       flag_no_builtin = 0;
486     }
487   else if (!strcmp (p, "-ffreestanding") || !strcmp (p, "-fno-hosted"))
488     {
489       flag_hosted = 0;
490       flag_no_builtin = 1;
491       /* warn_main will be 2 if set by -Wall, 1 if set by -Wmain */
492       if (warn_main == 2)
493         warn_main = 0;
494     }
495   else if (!strcmp (p, "-fnotraditional") || !strcmp (p, "-fno-traditional"))
496     {
497       flag_traditional = 0;
498       flag_writable_strings = 0;
499     }
500   else if (!strncmp (p, "-std=", 5))
501     {
502       /* Select the appropriate language standard.  We currently
503          recognize:
504          -std=iso9899:1990      same as -ansi
505          -std=iso9899:199409    ISO C as modified in amend. 1
506          -std=iso9899:1999      ISO C 99
507          -std=c89               same as -std=iso9899:1990
508          -std=c99               same as -std=iso9899:1999
509          -std=gnu89             default, iso9899:1990 + gnu extensions
510          -std=gnu99             iso9899:1999 + gnu extensions
511       */
512       const char *const argstart = &p[5];
513
514       if (!strcmp (argstart, "iso9899:1990")
515           || !strcmp (argstart, "c89"))
516         {
517         iso_1990:
518           flag_isoc94 = 0;
519         iso_1994:
520           flag_traditional = 0;
521           flag_writable_strings = 0;
522           flag_no_asm = 1;
523           flag_no_nonansi_builtin = 1;
524           flag_noniso_default_format_attributes = 0;
525           flag_isoc99 = 0;
526         }
527       else if (!strcmp (argstart, "iso9899:199409"))
528         {
529           flag_isoc94 = 1;
530           goto iso_1994;
531         }
532       else if (!strcmp (argstart, "iso9899:199x")
533                || !strcmp (argstart, "iso9899:1999")
534                || !strcmp (argstart, "c9x")
535                || !strcmp (argstart, "c99"))
536         {
537           flag_traditional = 0;
538           flag_writable_strings = 0;
539           flag_no_asm = 1;
540           flag_no_nonansi_builtin = 1;
541           flag_noniso_default_format_attributes = 0;
542           flag_isoc99 = 1;
543           flag_isoc94 = 1;
544         }
545       else if (!strcmp (argstart, "gnu89"))
546         {
547           flag_traditional = 0;
548           flag_writable_strings = 0;
549           flag_no_asm = 0;
550           flag_no_nonansi_builtin = 0;
551           flag_noniso_default_format_attributes = 1;
552           flag_isoc99 = 0;
553           flag_isoc94 = 0;
554         }
555       else if (!strcmp (argstart, "gnu9x") || !strcmp (argstart, "gnu99"))
556         {
557           flag_traditional = 0;
558           flag_writable_strings = 0;
559           flag_no_asm = 0;
560           flag_no_nonansi_builtin = 0;
561           flag_noniso_default_format_attributes = 1;
562           flag_isoc99 = 1;
563           flag_isoc94 = 1;
564         }
565       else
566         error ("unknown C standard `%s'", argstart);
567     }
568   else if (!strcmp (p, "-fdollars-in-identifiers"))
569     dollars_in_ident = 1;
570   else if (!strcmp (p, "-fno-dollars-in-identifiers"))
571     dollars_in_ident = 0;
572   else if (!strcmp (p, "-fsigned-char"))
573     flag_signed_char = 1;
574   else if (!strcmp (p, "-funsigned-char"))
575     flag_signed_char = 0;
576   else if (!strcmp (p, "-fno-signed-char"))
577     flag_signed_char = 0;
578   else if (!strcmp (p, "-fno-unsigned-char"))
579     flag_signed_char = 1;
580   else if (!strcmp (p, "-fsigned-bitfields")
581            || !strcmp (p, "-fno-unsigned-bitfields"))
582     {
583       flag_signed_bitfields = 1;
584       explicit_flag_signed_bitfields = 1;
585     }
586   else if (!strcmp (p, "-funsigned-bitfields")
587            || !strcmp (p, "-fno-signed-bitfields"))
588     {
589       flag_signed_bitfields = 0;
590       explicit_flag_signed_bitfields = 1;
591     }
592   else if (!strcmp (p, "-fshort-enums"))
593     flag_short_enums = 1;
594   else if (!strcmp (p, "-fno-short-enums"))
595     flag_short_enums = 0;
596   else if (!strcmp (p, "-fshort-wchar"))
597     flag_short_wchar = 1;
598   else if (!strcmp (p, "-fno-short-wchar"))
599     flag_short_wchar = 0;
600   else if (!strcmp (p, "-fcond-mismatch"))
601     flag_cond_mismatch = 1;
602   else if (!strcmp (p, "-fno-cond-mismatch"))
603     flag_cond_mismatch = 0;
604   else if (!strcmp (p, "-fshort-double"))
605     flag_short_double = 1;
606   else if (!strcmp (p, "-fno-short-double"))
607     flag_short_double = 0;
608   else if (!strcmp (p, "-fasm"))
609     flag_no_asm = 0;
610   else if (!strcmp (p, "-fno-asm"))
611     flag_no_asm = 1;
612   else if (!strcmp (p, "-fbuiltin"))
613     flag_no_builtin = 0;
614   else if (!strcmp (p, "-fno-builtin"))
615     flag_no_builtin = 1;
616   else if (!strncmp (p, "-fno-builtin-", strlen ("-fno-builtin-")))
617     disable_builtin_function (p + strlen ("-fno-builtin-"));
618   else if (p[0] == '-' && p[1] == 'f' && dump_switch_p (p + 2))
619     ;
620   else if (!strcmp (p, "-ansi"))
621     goto iso_1990;
622   else if (!strcmp (p, "-Werror-implicit-function-declaration"))
623     mesg_implicit_function_declaration = 2;
624   else if (!strcmp (p, "-Wimplicit-function-declaration"))
625     mesg_implicit_function_declaration = 1;
626   else if (!strcmp (p, "-Wno-implicit-function-declaration"))
627     mesg_implicit_function_declaration = 0;
628   else if (!strcmp (p, "-Wimplicit-int"))
629     warn_implicit_int = 1;
630   else if (!strcmp (p, "-Wno-implicit-int"))
631     warn_implicit_int = 0;
632   else if (!strcmp (p, "-Wimplicit"))
633     {
634       warn_implicit_int = 1;
635       if (mesg_implicit_function_declaration != 2)
636         mesg_implicit_function_declaration = 1;
637     }
638   else if (!strcmp (p, "-Wno-implicit"))
639     warn_implicit_int = 0, mesg_implicit_function_declaration = 0;
640   else if (!strcmp (p, "-Wlong-long"))
641     warn_long_long = 1;
642   else if (!strcmp (p, "-Wno-long-long"))
643     warn_long_long = 0;
644   else if (!strcmp (p, "-Wwrite-strings"))
645     flag_const_strings = 1;
646   else if (!strcmp (p, "-Wno-write-strings"))
647     flag_const_strings = 0;
648   else if (!strcmp (p, "-Wcast-qual"))
649     warn_cast_qual = 1;
650   else if (!strcmp (p, "-Wno-cast-qual"))
651     warn_cast_qual = 0;
652   else if (!strcmp (p, "-Wbad-function-cast"))
653     warn_bad_function_cast = 1;
654   else if (!strcmp (p, "-Wno-bad-function-cast"))
655     warn_bad_function_cast = 0;
656   else if (!strcmp (p, "-Wno-missing-noreturn"))
657     warn_missing_noreturn = 0;
658   else if (!strcmp (p, "-Wmissing-format-attribute"))
659     warn_missing_format_attribute = 1;
660   else if (!strcmp (p, "-Wno-missing-format-attribute"))
661     warn_missing_format_attribute = 0;
662   else if (!strcmp (p, "-Wpointer-arith"))
663     warn_pointer_arith = 1;
664   else if (!strcmp (p, "-Wno-pointer-arith"))
665     warn_pointer_arith = 0;
666   else if (!strcmp (p, "-Wstrict-prototypes"))
667     warn_strict_prototypes = 1;
668   else if (!strcmp (p, "-Wno-strict-prototypes"))
669     warn_strict_prototypes = 0;
670   else if (!strcmp (p, "-Wmissing-prototypes"))
671     warn_missing_prototypes = 1;
672   else if (!strcmp (p, "-Wno-missing-prototypes"))
673     warn_missing_prototypes = 0;
674   else if (!strcmp (p, "-Wmissing-declarations"))
675     warn_missing_declarations = 1;
676   else if (!strcmp (p, "-Wno-missing-declarations"))
677     warn_missing_declarations = 0;
678   else if (!strcmp (p, "-Wredundant-decls"))
679     warn_redundant_decls = 1;
680   else if (!strcmp (p, "-Wno-redundant-decls"))
681     warn_redundant_decls = 0;
682   else if (!strcmp (p, "-Wnested-externs"))
683     warn_nested_externs = 1;
684   else if (!strcmp (p, "-Wno-nested-externs"))
685     warn_nested_externs = 0;
686   else if (!strcmp (p, "-Wtraditional"))
687     warn_traditional = 1;
688   else if (!strcmp (p, "-Wno-traditional"))
689     warn_traditional = 0;
690   else if (!strncmp (p, "-Wformat=", 9))
691     set_Wformat (atoi (p + 9));
692   else if (!strcmp (p, "-Wformat"))
693     set_Wformat (1);
694   else if (!strcmp (p, "-Wno-format"))
695     set_Wformat (0);
696   else if (!strcmp (p, "-Wformat-y2k"))
697     warn_format_y2k = 1;
698   else if (!strcmp (p, "-Wno-format-y2k"))
699     warn_format_y2k = 0;
700   else if (!strcmp (p, "-Wformat-extra-args"))
701     warn_format_extra_args = 1;
702   else if (!strcmp (p, "-Wno-format-extra-args"))
703     warn_format_extra_args = 0;
704   else if (!strcmp (p, "-Wformat-nonliteral"))
705     warn_format_nonliteral = 1;
706   else if (!strcmp (p, "-Wno-format-nonliteral"))
707     warn_format_nonliteral = 0;
708   else if (!strcmp (p, "-Wformat-security"))
709     warn_format_security = 1;
710   else if (!strcmp (p, "-Wno-format-security"))
711     warn_format_security = 0;
712   else if (!strcmp (p, "-Wchar-subscripts"))
713     warn_char_subscripts = 1;
714   else if (!strcmp (p, "-Wno-char-subscripts"))
715     warn_char_subscripts = 0;
716   else if (!strcmp (p, "-Wconversion"))
717     warn_conversion = 1;
718   else if (!strcmp (p, "-Wno-conversion"))
719     warn_conversion = 0;
720   else if (!strcmp (p, "-Wparentheses"))
721     warn_parentheses = 1;
722   else if (!strcmp (p, "-Wno-parentheses"))
723     warn_parentheses = 0;
724   else if (!strcmp (p, "-Wreturn-type"))
725     warn_return_type = 1;
726   else if (!strcmp (p, "-Wno-return-type"))
727     warn_return_type = 0;
728   else if (!strcmp (p, "-Wsequence-point"))
729     warn_sequence_point = 1;
730   else if (!strcmp (p, "-Wno-sequence-point"))
731     warn_sequence_point = 0;
732   else if (!strcmp (p, "-Wcomment"))
733     ; /* cpp handles this one.  */
734   else if (!strcmp (p, "-Wno-comment"))
735     ; /* cpp handles this one.  */
736   else if (!strcmp (p, "-Wcomments"))
737     ; /* cpp handles this one.  */
738   else if (!strcmp (p, "-Wno-comments"))
739     ; /* cpp handles this one.  */
740   else if (!strcmp (p, "-Wtrigraphs"))
741     ; /* cpp handles this one.  */
742   else if (!strcmp (p, "-Wno-trigraphs"))
743     ; /* cpp handles this one.  */
744   else if (!strcmp (p, "-Wundef"))
745     ; /* cpp handles this one.  */
746   else if (!strcmp (p, "-Wno-undef"))
747     ; /* cpp handles this one.  */
748   else if (!strcmp (p, "-Wimport"))
749     ; /* cpp handles this one.  */
750   else if (!strcmp (p, "-Wno-import"))
751     ; /* cpp handles this one.  */
752   else if (!strcmp (p, "-Wmissing-braces"))
753     warn_missing_braces = 1;
754   else if (!strcmp (p, "-Wno-missing-braces"))
755     warn_missing_braces = 0;
756   else if (!strcmp (p, "-Wmain"))
757     warn_main = 1;
758   else if (!strcmp (p, "-Wno-main"))
759     warn_main = -1;
760   else if (!strcmp (p, "-Wsign-compare"))
761     warn_sign_compare = 1;
762   else if (!strcmp (p, "-Wno-sign-compare"))
763     warn_sign_compare = 0;
764   else if (!strcmp (p, "-Wfloat-equal"))
765     warn_float_equal = 1;
766   else if (!strcmp (p, "-Wno-float-equal"))
767     warn_float_equal = 0;
768   else if (!strcmp (p, "-Wmultichar"))
769     warn_multichar = 1;
770   else if (!strcmp (p, "-Wno-multichar"))
771     warn_multichar = 0;
772   else if (!strcmp (p, "-Wdiv-by-zero"))
773     warn_div_by_zero = 1;
774   else if (!strcmp (p, "-Wno-div-by-zero"))
775     warn_div_by_zero = 0;
776   else if (!strcmp (p, "-Wunknown-pragmas"))
777     /* Set to greater than 1, so that even unknown pragmas in system
778        headers will be warned about.  */
779     warn_unknown_pragmas = 2;
780   else if (!strcmp (p, "-Wno-unknown-pragmas"))
781     warn_unknown_pragmas = 0;
782   else if (!strcmp (p, "-Wall"))
783     {
784       /* We save the value of warn_uninitialized, since if they put
785          -Wuninitialized on the command line, we need to generate a
786          warning about not using it without also specifying -O.  */
787       if (warn_uninitialized != 1)
788         warn_uninitialized = 2;
789       warn_implicit_int = 1;
790       mesg_implicit_function_declaration = 1;
791       warn_return_type = 1;
792       set_Wunused (1);
793       warn_switch = 1;
794       set_Wformat (1);
795       warn_char_subscripts = 1;
796       warn_parentheses = 1;
797       warn_sequence_point = 1;
798       warn_missing_braces = 1;
799       /* We set this to 2 here, but 1 in -Wmain, so -ffreestanding can turn
800          it off only if it's not explicit.  */
801       warn_main = 2;
802       /* Only warn about unknown pragmas that are not in system headers.  */
803       warn_unknown_pragmas = 1;
804     }
805   else
806     return strings_processed;
807
808   return 1;
809 }
810
811 void
812 c_print_identifier (file, node, indent)
813      FILE *file;
814      tree node;
815      int indent;
816 {
817   print_node (file, "global", IDENTIFIER_GLOBAL_VALUE (node), indent + 4);
818   print_node (file, "local", IDENTIFIER_LOCAL_VALUE (node), indent + 4);
819   print_node (file, "label", IDENTIFIER_LABEL_VALUE (node), indent + 4);
820   print_node (file, "implicit", IDENTIFIER_IMPLICIT_DECL (node), indent + 4);
821   print_node (file, "error locus", IDENTIFIER_ERROR_LOCUS (node), indent + 4);
822   print_node (file, "limbo value", IDENTIFIER_LIMBO_VALUE (node), indent + 4);
823   if (C_IS_RESERVED_WORD (node))
824     {
825       tree rid = ridpointers[C_RID_CODE (node)];
826       indent_to (file, indent + 4);
827       fprintf (file, "rid ");
828       fprintf (file, HOST_PTR_PRINTF, (void *)rid);
829       fprintf (file, " \"%s\"", IDENTIFIER_POINTER (rid));
830     }
831 }
832 \f
833 /* Hook called at end of compilation to assume 1 elt
834    for a top-level tentative array defn that wasn't complete before.  */
835
836 void
837 finish_incomplete_decl (decl)
838      tree decl;
839 {
840   if (TREE_CODE (decl) == VAR_DECL)
841     {
842       tree type = TREE_TYPE (decl);
843       if (type != error_mark_node
844           && TREE_CODE (type) == ARRAY_TYPE
845           && ! DECL_EXTERNAL (decl)
846           && TYPE_DOMAIN (type) == 0)
847         {
848           warning_with_decl (decl, "array `%s' assumed to have one element");
849
850           complete_array_type (type, NULL_TREE, 1);
851
852           layout_decl (decl, 0);
853         }
854     }
855 }
856 \f
857 /* Create a new `struct binding_level'.  */
858
859 static struct binding_level *
860 make_binding_level ()
861 {
862   /* NOSTRICT */
863   return (struct binding_level *) xmalloc (sizeof (struct binding_level));
864 }
865
866 /* Nonzero if we are currently in the global binding level.  */
867
868 int
869 global_bindings_p ()
870 {
871   return current_binding_level == global_binding_level;
872 }
873
874 void
875 keep_next_level ()
876 {
877   keep_next_level_flag = 1;
878 }
879
880 /* Nonzero if the current level needs to have a BLOCK made.  */
881
882 int
883 kept_level_p ()
884 {
885   return ((current_binding_level->keep_if_subblocks
886            && current_binding_level->blocks != 0)
887           || current_binding_level->keep
888           || current_binding_level->names != 0
889           || (current_binding_level->tags != 0
890               && !current_binding_level->tag_transparent));
891 }
892
893 /* Identify this binding level as a level of parameters.
894    DEFINITION_FLAG is 1 for a definition, 0 for a declaration.
895    But it turns out there is no way to pass the right value for
896    DEFINITION_FLAG, so we ignore it.  */
897
898 void
899 declare_parm_level (definition_flag)
900      int definition_flag ATTRIBUTE_UNUSED;
901 {
902   current_binding_level->parm_flag = 1;
903 }
904
905 /* Nonzero if currently making parm declarations.  */
906
907 int
908 in_parm_level_p ()
909 {
910   return current_binding_level->parm_flag;
911 }
912
913 /* Enter a new binding level.
914    If TAG_TRANSPARENT is nonzero, do so only for the name space of variables,
915    not for that of tags.  */
916
917 void
918 pushlevel (tag_transparent)
919      int tag_transparent;
920 {
921   struct binding_level *newlevel = NULL_BINDING_LEVEL;
922
923   /* If this is the top level of a function,
924      just make sure that NAMED_LABELS is 0.  */
925
926   if (current_binding_level == global_binding_level)
927     {
928       named_labels = 0;
929     }
930
931   /* Reuse or create a struct for this binding level.  */
932
933   if (free_binding_level)
934     {
935       newlevel = free_binding_level;
936       free_binding_level = free_binding_level->level_chain;
937     }
938   else
939     {
940       newlevel = make_binding_level ();
941     }
942
943   /* Add this level to the front of the chain (stack) of levels that
944      are active.  */
945
946   *newlevel = clear_binding_level;
947   newlevel->tag_transparent
948     = (tag_transparent
949        || (current_binding_level
950            ? current_binding_level->subblocks_tag_transparent
951            : 0));
952   newlevel->level_chain = current_binding_level;
953   current_binding_level = newlevel;
954   newlevel->keep = keep_next_level_flag;
955   keep_next_level_flag = 0;
956   newlevel->keep_if_subblocks = keep_next_if_subblocks;
957   keep_next_if_subblocks = 0;
958 }
959
960 /* Clear the limbo values of all identifiers defined in BLOCK or a subblock.  */
961
962 static void
963 clear_limbo_values (block)
964      tree block;
965 {
966   tree tem;
967
968   for (tem = BLOCK_VARS (block); tem; tem = TREE_CHAIN (tem))
969     if (DECL_NAME (tem) != 0)
970       IDENTIFIER_LIMBO_VALUE (DECL_NAME (tem)) = 0;
971
972   for (tem = BLOCK_SUBBLOCKS (block); tem; tem = TREE_CHAIN (tem))
973     clear_limbo_values (tem);
974 }
975
976 /* Exit a binding level.
977    Pop the level off, and restore the state of the identifier-decl mappings
978    that were in effect when this level was entered.
979
980    If KEEP is nonzero, this level had explicit declarations, so
981    and create a "block" (a BLOCK node) for the level
982    to record its declarations and subblocks for symbol table output.
983
984    If FUNCTIONBODY is nonzero, this level is the body of a function,
985    so create a block as if KEEP were set and also clear out all
986    label names.
987
988    If REVERSE is nonzero, reverse the order of decls before putting
989    them into the BLOCK.  */
990
991 tree
992 poplevel (keep, reverse, functionbody)
993      int keep;
994      int reverse;
995      int functionbody;
996 {
997   tree link;
998   /* The chain of decls was accumulated in reverse order.
999      Put it into forward order, just for cleanliness.  */
1000   tree decls;
1001   tree tags = current_binding_level->tags;
1002   tree subblocks = current_binding_level->blocks;
1003   tree block = 0;
1004   tree decl;
1005   int block_previously_created;
1006
1007   keep |= current_binding_level->keep;
1008
1009   /* This warning is turned off because it causes warnings for
1010      declarations like `extern struct foo *x'.  */
1011 #if 0
1012   /* Warn about incomplete structure types in this level.  */
1013   for (link = tags; link; link = TREE_CHAIN (link))
1014     if (!COMPLETE_TYPE_P (TREE_VALUE (link)))
1015       {
1016         tree type = TREE_VALUE (link);
1017         tree type_name = TYPE_NAME (type);
1018         char *id = IDENTIFIER_POINTER (TREE_CODE (type_name) == IDENTIFIER_NODE
1019                                        ? type_name
1020                                        : DECL_NAME (type_name));
1021         switch (TREE_CODE (type))
1022           {
1023           case RECORD_TYPE:
1024             error ("`struct %s' incomplete in scope ending here", id);
1025             break;
1026           case UNION_TYPE:
1027             error ("`union %s' incomplete in scope ending here", id);
1028             break;
1029           case ENUMERAL_TYPE:
1030             error ("`enum %s' incomplete in scope ending here", id);
1031             break;
1032           }
1033       }
1034 #endif /* 0 */
1035
1036   /* Get the decls in the order they were written.
1037      Usually current_binding_level->names is in reverse order.
1038      But parameter decls were previously put in forward order.  */
1039
1040   if (reverse)
1041     current_binding_level->names
1042       = decls = nreverse (current_binding_level->names);
1043   else
1044     decls = current_binding_level->names;
1045
1046   /* Output any nested inline functions within this block
1047      if they weren't already output.  */
1048
1049   for (decl = decls; decl; decl = TREE_CHAIN (decl))
1050     if (TREE_CODE (decl) == FUNCTION_DECL
1051         && ! TREE_ASM_WRITTEN (decl)
1052         && DECL_INITIAL (decl) != 0
1053         && TREE_ADDRESSABLE (decl))
1054       {
1055         /* If this decl was copied from a file-scope decl
1056            on account of a block-scope extern decl,
1057            propagate TREE_ADDRESSABLE to the file-scope decl.
1058
1059            DECL_ABSTRACT_ORIGIN can be set to itself if warn_return_type is
1060            true, since then the decl goes through save_for_inline_copying.  */
1061         if (DECL_ABSTRACT_ORIGIN (decl) != 0
1062             && DECL_ABSTRACT_ORIGIN (decl) != decl)
1063           TREE_ADDRESSABLE (DECL_ABSTRACT_ORIGIN (decl)) = 1;
1064       }
1065
1066   /* We used to warn about unused variables in expand_end_bindings,
1067      i.e. while generating RTL.  But in function-at-a-time mode we may
1068      choose to never expand a function at all (e.g. auto inlining), so
1069      we do this explicitly now.  */
1070   warn_about_unused_variables (getdecls ());
1071
1072   /* If there were any declarations or structure tags in that level,
1073      or if this level is a function body,
1074      create a BLOCK to record them for the life of this function.  */
1075
1076   block = 0;
1077   block_previously_created = (current_binding_level->this_block != 0);
1078   if (block_previously_created)
1079     block = current_binding_level->this_block;
1080   else if (keep || functionbody
1081            || (current_binding_level->keep_if_subblocks && subblocks != 0))
1082     block = make_node (BLOCK);
1083   if (block != 0)
1084     {
1085       BLOCK_VARS (block) = decls;
1086       BLOCK_SUBBLOCKS (block) = subblocks;
1087     }
1088
1089   /* In each subblock, record that this is its superior.  */
1090
1091   for (link = subblocks; link; link = TREE_CHAIN (link))
1092     BLOCK_SUPERCONTEXT (link) = block;
1093
1094   /* Clear out the meanings of the local variables of this level.  */
1095
1096   for (link = decls; link; link = TREE_CHAIN (link))
1097     {
1098       if (DECL_NAME (link) != 0)
1099         {
1100           /* If the ident. was used or addressed via a local extern decl,
1101              don't forget that fact.  */
1102           if (DECL_EXTERNAL (link))
1103             {
1104               if (TREE_USED (link))
1105                 TREE_USED (DECL_NAME (link)) = 1;
1106               if (TREE_ADDRESSABLE (link))
1107                 TREE_ADDRESSABLE (DECL_ASSEMBLER_NAME (link)) = 1;
1108             }
1109           IDENTIFIER_LOCAL_VALUE (DECL_NAME (link)) = 0;
1110         }
1111     }
1112
1113   /* Restore all name-meanings of the outer levels
1114      that were shadowed by this level.  */
1115
1116   for (link = current_binding_level->shadowed; link; link = TREE_CHAIN (link))
1117     IDENTIFIER_LOCAL_VALUE (TREE_PURPOSE (link)) = TREE_VALUE (link);
1118
1119   /* If the level being exited is the top level of a function,
1120      check over all the labels, and clear out the current
1121      (function local) meanings of their names.  */
1122
1123   if (functionbody)
1124     {
1125       clear_limbo_values (block);
1126
1127       /* If this is the top level block of a function,
1128          the vars are the function's parameters.
1129          Don't leave them in the BLOCK because they are
1130          found in the FUNCTION_DECL instead.  */
1131
1132       BLOCK_VARS (block) = 0;
1133
1134       /* Clear out the definitions of all label names,
1135          since their scopes end here,
1136          and add them to BLOCK_VARS.  */
1137
1138       for (link = named_labels; link; link = TREE_CHAIN (link))
1139         {
1140           tree label = TREE_VALUE (link);
1141
1142           if (DECL_INITIAL (label) == 0)
1143             {
1144               error_with_decl (label, "label `%s' used but not defined");
1145               /* Avoid crashing later.  */
1146               define_label (input_filename, lineno,
1147                             DECL_NAME (label));
1148             }
1149           else if (warn_unused_label && !TREE_USED (label))
1150             warning_with_decl (label, "label `%s' defined but not used");
1151           IDENTIFIER_LABEL_VALUE (DECL_NAME (label)) = 0;
1152
1153           /* Put the labels into the "variables" of the
1154              top-level block, so debugger can see them.  */
1155           TREE_CHAIN (label) = BLOCK_VARS (block);
1156           BLOCK_VARS (block) = label;
1157         }
1158     }
1159
1160   /* Pop the current level, and free the structure for reuse.  */
1161
1162   {
1163     struct binding_level *level = current_binding_level;
1164     current_binding_level = current_binding_level->level_chain;
1165
1166     level->level_chain = free_binding_level;
1167     free_binding_level = level;
1168   }
1169
1170   /* Dispose of the block that we just made inside some higher level.  */
1171   if (functionbody)
1172     DECL_INITIAL (current_function_decl) = block;
1173   else if (block)
1174     {
1175       if (!block_previously_created)
1176         current_binding_level->blocks
1177           = chainon (current_binding_level->blocks, block);
1178     }
1179   /* If we did not make a block for the level just exited,
1180      any blocks made for inner levels
1181      (since they cannot be recorded as subblocks in that level)
1182      must be carried forward so they will later become subblocks
1183      of something else.  */
1184   else if (subblocks)
1185     current_binding_level->blocks
1186       = chainon (current_binding_level->blocks, subblocks);
1187
1188   /* Set the TYPE_CONTEXTs for all of the tagged types belonging to this
1189      binding contour so that they point to the appropriate construct, i.e.
1190      either to the current FUNCTION_DECL node, or else to the BLOCK node
1191      we just constructed.
1192
1193      Note that for tagged types whose scope is just the formal parameter
1194      list for some function type specification, we can't properly set
1195      their TYPE_CONTEXTs here, because we don't have a pointer to the
1196      appropriate FUNCTION_TYPE node readily available to us.  For those
1197      cases, the TYPE_CONTEXTs of the relevant tagged type nodes get set
1198      in `grokdeclarator' as soon as we have created the FUNCTION_TYPE
1199      node which will represent the "scope" for these "parameter list local"
1200      tagged types.  */
1201
1202   if (functionbody)
1203     for (link = tags; link; link = TREE_CHAIN (link))
1204       TYPE_CONTEXT (TREE_VALUE (link)) = current_function_decl;
1205   else if (block)
1206     for (link = tags; link; link = TREE_CHAIN (link))
1207       TYPE_CONTEXT (TREE_VALUE (link)) = block;
1208
1209   if (block)
1210     TREE_USED (block) = 1;
1211
1212   return block;
1213 }
1214
1215 /* Insert BLOCK at the end of the list of subblocks of the
1216    current binding level.  This is used when a BIND_EXPR is expanded,
1217    to handle the BLOCK node inside the BIND_EXPR.  */
1218
1219 void
1220 insert_block (block)
1221      tree block;
1222 {
1223   TREE_USED (block) = 1;
1224   current_binding_level->blocks
1225     = chainon (current_binding_level->blocks, block);
1226 }
1227
1228 /* Set the BLOCK node for the innermost scope
1229    (the one we are currently in).  */
1230
1231 void
1232 set_block (block)
1233      tree block;
1234 {
1235   current_binding_level->this_block = block;
1236   current_binding_level->names = chainon (current_binding_level->names,
1237                                           BLOCK_VARS (block));
1238   current_binding_level->blocks = chainon (current_binding_level->blocks,
1239                                            BLOCK_SUBBLOCKS (block));
1240 }
1241 \f
1242 void
1243 push_label_level ()
1244 {
1245   struct binding_level *newlevel;
1246
1247   /* Reuse or create a struct for this binding level.  */
1248
1249   if (free_binding_level)
1250     {
1251       newlevel = free_binding_level;
1252       free_binding_level = free_binding_level->level_chain;
1253     }
1254   else
1255     {
1256       newlevel = make_binding_level ();
1257     }
1258
1259   /* Add this level to the front of the chain (stack) of label levels.  */
1260
1261   newlevel->level_chain = label_level_chain;
1262   label_level_chain = newlevel;
1263
1264   newlevel->names = named_labels;
1265   newlevel->shadowed = shadowed_labels;
1266   named_labels = 0;
1267   shadowed_labels = 0;
1268 }
1269
1270 void
1271 pop_label_level ()
1272 {
1273   struct binding_level *level = label_level_chain;
1274   tree link, prev;
1275
1276   /* Clear out the definitions of the declared labels in this level.
1277      Leave in the list any ordinary, non-declared labels.  */
1278   for (link = named_labels, prev = 0; link;)
1279     {
1280       if (C_DECLARED_LABEL_FLAG (TREE_VALUE (link)))
1281         {
1282           if (DECL_SOURCE_LINE (TREE_VALUE (link)) == 0)
1283             {
1284               error_with_decl (TREE_VALUE (link),
1285                                "label `%s' used but not defined");
1286               /* Avoid crashing later.  */
1287               define_label (input_filename, lineno,
1288                             DECL_NAME (TREE_VALUE (link)));
1289             }
1290           else if (warn_unused_label && !TREE_USED (TREE_VALUE (link)))
1291             warning_with_decl (TREE_VALUE (link),
1292                                "label `%s' defined but not used");
1293           IDENTIFIER_LABEL_VALUE (DECL_NAME (TREE_VALUE (link))) = 0;
1294
1295           /* Delete this element from the list.  */
1296           link = TREE_CHAIN (link);
1297           if (prev)
1298             TREE_CHAIN (prev) = link;
1299           else
1300             named_labels = link;
1301         }
1302       else
1303         {
1304           prev = link;
1305           link = TREE_CHAIN (link);
1306         }
1307     }
1308
1309   /* Bring back all the labels that were shadowed.  */
1310   for (link = shadowed_labels; link; link = TREE_CHAIN (link))
1311     if (DECL_NAME (TREE_VALUE (link)) != 0)
1312       IDENTIFIER_LABEL_VALUE (DECL_NAME (TREE_VALUE (link)))
1313         = TREE_VALUE (link);
1314
1315   named_labels = chainon (named_labels, level->names);
1316   shadowed_labels = level->shadowed;
1317
1318   /* Pop the current level, and free the structure for reuse.  */
1319   label_level_chain = label_level_chain->level_chain;
1320   level->level_chain = free_binding_level;
1321   free_binding_level = level;
1322 }
1323 \f
1324 /* Push a definition or a declaration of struct, union or enum tag "name".
1325    "type" should be the type node.
1326    We assume that the tag "name" is not already defined.
1327
1328    Note that the definition may really be just a forward reference.
1329    In that case, the TYPE_SIZE will be zero.  */
1330
1331 void
1332 pushtag (name, type)
1333      tree name, type;
1334 {
1335   struct binding_level *b;
1336
1337   /* Find the proper binding level for this type tag.  */
1338
1339   for (b = current_binding_level; b->tag_transparent; b = b->level_chain)
1340     continue;
1341
1342   if (name)
1343     {
1344       /* Record the identifier as the type's name if it has none.  */
1345
1346       if (TYPE_NAME (type) == 0)
1347         TYPE_NAME (type) = name;
1348     }
1349
1350   b->tags = tree_cons (name, type, b->tags);
1351
1352   /* Create a fake NULL-named TYPE_DECL node whose TREE_TYPE will be the
1353      tagged type we just added to the current binding level.  This fake
1354      NULL-named TYPE_DECL node helps dwarfout.c to know when it needs
1355      to output a representation of a tagged type, and it also gives
1356      us a convenient place to record the "scope start" address for the
1357      tagged type.  */
1358
1359   TYPE_STUB_DECL (type) = pushdecl (build_decl (TYPE_DECL, NULL_TREE, type));
1360
1361   /* An approximation for now, so we can tell this is a function-scope tag.
1362      This will be updated in poplevel.  */
1363   TYPE_CONTEXT (type) = DECL_CONTEXT (TYPE_STUB_DECL (type));
1364 }
1365 \f
1366 /* Handle when a new declaration NEWDECL
1367    has the same name as an old one OLDDECL
1368    in the same binding contour.
1369    Prints an error message if appropriate.
1370
1371    If safely possible, alter OLDDECL to look like NEWDECL, and return 1.
1372    Otherwise, return 0.
1373
1374    When DIFFERENT_BINDING_LEVEL is true, NEWDECL is an external declaration,
1375    and OLDDECL is in an outer binding level and should thus not be changed.  */
1376
1377 static int
1378 duplicate_decls (newdecl, olddecl, different_binding_level)
1379      tree newdecl, olddecl;
1380      int different_binding_level;
1381 {
1382   int types_match = comptypes (TREE_TYPE (newdecl), TREE_TYPE (olddecl));
1383   int new_is_definition = (TREE_CODE (newdecl) == FUNCTION_DECL
1384                            && DECL_INITIAL (newdecl) != 0);
1385   tree oldtype = TREE_TYPE (olddecl);
1386   tree newtype = TREE_TYPE (newdecl);
1387   int errmsg = 0;
1388
1389   if (DECL_P (olddecl))
1390     {
1391       if (TREE_CODE (newdecl) == FUNCTION_DECL
1392           && TREE_CODE (olddecl) == FUNCTION_DECL
1393           && (DECL_UNINLINABLE (newdecl) || DECL_UNINLINABLE (olddecl)))
1394         {
1395           if (DECL_DECLARED_INLINE_P (newdecl)
1396               && DECL_UNINLINABLE (newdecl)
1397               && lookup_attribute ("noinline", DECL_ATTRIBUTES (newdecl)))
1398             /* Already warned elsewhere.  */;
1399           else if (DECL_DECLARED_INLINE_P (olddecl)
1400                    && DECL_UNINLINABLE (olddecl)
1401                    && lookup_attribute ("noinline", DECL_ATTRIBUTES (olddecl)))
1402             /* Already warned.  */;
1403           else if (DECL_DECLARED_INLINE_P (newdecl)
1404                    && ! DECL_DECLARED_INLINE_P (olddecl)
1405                    && DECL_UNINLINABLE (olddecl)
1406                    && lookup_attribute ("noinline", DECL_ATTRIBUTES (olddecl)))
1407             {
1408               warning_with_decl (newdecl,
1409                                  "function `%s' redeclared as inline");
1410               warning_with_decl (olddecl,
1411                                  "previous declaration of function `%s' with attribute noinline");
1412             }
1413           else if (DECL_DECLARED_INLINE_P (olddecl)
1414                    && DECL_UNINLINABLE (newdecl)
1415                    && lookup_attribute ("noinline", DECL_ATTRIBUTES (newdecl)))
1416             {
1417               warning_with_decl (newdecl,
1418                                  "function `%s' redeclared with attribute noinline");
1419               warning_with_decl (olddecl,
1420                                  "previous declaration of function `%s' was inline");
1421             }
1422         }
1423
1424       DECL_ATTRIBUTES (newdecl)
1425         = (*targetm.merge_decl_attributes) (olddecl, newdecl);
1426     }
1427
1428   if (TREE_CODE (newtype) == ERROR_MARK
1429       || TREE_CODE (oldtype) == ERROR_MARK)
1430     types_match = 0;
1431
1432   /* New decl is completely inconsistent with the old one =>
1433      tell caller to replace the old one.
1434      This is always an error except in the case of shadowing a builtin.  */
1435   if (TREE_CODE (olddecl) != TREE_CODE (newdecl))
1436     {
1437       if (TREE_CODE (olddecl) == FUNCTION_DECL
1438           && (DECL_BUILT_IN (olddecl)
1439               || DECL_BUILT_IN_NONANSI (olddecl)))
1440         {
1441           /* If you declare a built-in or predefined function name as static,
1442              the old definition is overridden,
1443              but optionally warn this was a bad choice of name.  */
1444           if (!TREE_PUBLIC (newdecl))
1445             {
1446               if (!warn_shadow)
1447                 ;
1448               else if (DECL_BUILT_IN (olddecl))
1449                 warning_with_decl (newdecl, "shadowing built-in function `%s'");
1450               else
1451                 warning_with_decl (newdecl, "shadowing library function `%s'");
1452             }
1453           /* Likewise, if the built-in is not ansi, then programs can
1454              override it even globally without an error.  */
1455           else if (! DECL_BUILT_IN (olddecl))
1456             warning_with_decl (newdecl,
1457                                "library function `%s' declared as non-function");
1458
1459           else if (DECL_BUILT_IN_NONANSI (olddecl))
1460             warning_with_decl (newdecl,
1461                                "built-in function `%s' declared as non-function");
1462           else
1463             warning_with_decl (newdecl,
1464                                "built-in function `%s' declared as non-function");
1465         }
1466       else
1467         {
1468           error_with_decl (newdecl, "`%s' redeclared as different kind of symbol");
1469           error_with_decl (olddecl, "previous declaration of `%s'");
1470         }
1471
1472       return 0;
1473     }
1474
1475   /* For real parm decl following a forward decl,
1476      return 1 so old decl will be reused.  */
1477   if (types_match && TREE_CODE (newdecl) == PARM_DECL
1478       && TREE_ASM_WRITTEN (olddecl) && ! TREE_ASM_WRITTEN (newdecl))
1479     return 1;
1480
1481   /* The new declaration is the same kind of object as the old one.
1482      The declarations may partially match.  Print warnings if they don't
1483      match enough.  Ultimately, copy most of the information from the new
1484      decl to the old one, and keep using the old one.  */
1485
1486   if (flag_traditional && TREE_CODE (newdecl) == FUNCTION_DECL
1487       && IDENTIFIER_IMPLICIT_DECL (DECL_NAME (newdecl)) == olddecl
1488       && DECL_INITIAL (olddecl) == 0)
1489     /* If -traditional, avoid error for redeclaring fcn
1490        after implicit decl.  */
1491     ;
1492   else if (TREE_CODE (olddecl) == FUNCTION_DECL
1493            && DECL_BUILT_IN (olddecl))
1494     {
1495       /* A function declaration for a built-in function.  */
1496       if (!TREE_PUBLIC (newdecl))
1497         {
1498           /* If you declare a built-in function name as static, the
1499              built-in definition is overridden,
1500              but optionally warn this was a bad choice of name.  */
1501           if (warn_shadow)
1502             warning_with_decl (newdecl, "shadowing built-in function `%s'");
1503           /* Discard the old built-in function.  */
1504           return 0;
1505         }
1506       else if (!types_match)
1507         {
1508           /* Accept the return type of the new declaration if same modes.  */
1509           tree oldreturntype = TREE_TYPE (oldtype);
1510           tree newreturntype = TREE_TYPE (newtype);
1511
1512           if (TYPE_MODE (oldreturntype) == TYPE_MODE (newreturntype))
1513             {
1514               /* Function types may be shared, so we can't just modify
1515                  the return type of olddecl's function type.  */
1516               tree trytype
1517                 = build_function_type (newreturntype,
1518                                        TYPE_ARG_TYPES (oldtype));
1519               trytype = build_type_attribute_variant (trytype,
1520                                                       TYPE_ATTRIBUTES (oldtype));
1521
1522               types_match = comptypes (newtype, trytype);
1523               if (types_match)
1524                 oldtype = trytype;
1525             }
1526           /* Accept harmless mismatch in first argument type also.
1527              This is for the ffs and fprintf builtins.  */
1528           if (TYPE_ARG_TYPES (TREE_TYPE (newdecl)) != 0
1529               && TYPE_ARG_TYPES (oldtype) != 0
1530               && TREE_VALUE (TYPE_ARG_TYPES (newtype)) != 0
1531               && TREE_VALUE (TYPE_ARG_TYPES (oldtype)) != 0
1532               && (TYPE_MODE (TREE_VALUE (TYPE_ARG_TYPES (newtype)))
1533                   == TYPE_MODE (TREE_VALUE (TYPE_ARG_TYPES (oldtype)))))
1534             {
1535               /* Function types may be shared, so we can't just modify
1536                  the return type of olddecl's function type.  */
1537               tree trytype
1538                 = build_function_type (TREE_TYPE (oldtype),
1539                                        tree_cons (NULL_TREE,
1540                                                   TREE_VALUE (TYPE_ARG_TYPES (newtype)),
1541                                                   TREE_CHAIN (TYPE_ARG_TYPES (oldtype))));
1542               trytype = build_type_attribute_variant (trytype,
1543                                                       TYPE_ATTRIBUTES (oldtype));
1544
1545               types_match = comptypes (newtype, trytype);
1546               if (types_match)
1547                 oldtype = trytype;
1548             }
1549           if (! different_binding_level)
1550             TREE_TYPE (olddecl) = oldtype;
1551         }
1552       else if (TYPE_ARG_TYPES (oldtype) == NULL
1553                && TYPE_ARG_TYPES (newtype) != NULL)
1554         {
1555           /* For bcmp, bzero, fputs the builtin type has arguments not
1556              specified.  Use the ones from the prototype so that type checking
1557              is done for them.  */
1558           tree trytype
1559             = build_function_type (TREE_TYPE (oldtype),
1560                                    TYPE_ARG_TYPES (newtype));
1561           trytype = build_type_attribute_variant (trytype,
1562                                                   TYPE_ATTRIBUTES (oldtype));
1563
1564           oldtype = trytype;
1565           if (! different_binding_level)
1566             TREE_TYPE (olddecl) = oldtype;
1567         }
1568       if (!types_match)
1569         {
1570           /* If types don't match for a built-in, throw away the built-in.  */
1571           warning_with_decl (newdecl, "conflicting types for built-in function `%s'");
1572           return 0;
1573         }
1574     }
1575   else if (TREE_CODE (olddecl) == FUNCTION_DECL
1576            && DECL_SOURCE_LINE (olddecl) == 0)
1577     {
1578       /* A function declaration for a predeclared function
1579          that isn't actually built in.  */
1580       if (!TREE_PUBLIC (newdecl))
1581         {
1582           /* If you declare it as static, the
1583              default definition is overridden.  */
1584           return 0;
1585         }
1586       else if (!types_match)
1587         {
1588           /* If the types don't match, preserve volatility indication.
1589              Later on, we will discard everything else about the
1590              default declaration.  */
1591           TREE_THIS_VOLATILE (newdecl) |= TREE_THIS_VOLATILE (olddecl);
1592         }
1593     }
1594   /* Permit char *foo () to match void *foo (...) if not pedantic,
1595      if one of them came from a system header file.  */
1596   else if (!types_match
1597            && TREE_CODE (olddecl) == FUNCTION_DECL
1598            && TREE_CODE (newdecl) == FUNCTION_DECL
1599            && TREE_CODE (TREE_TYPE (oldtype)) == POINTER_TYPE
1600            && TREE_CODE (TREE_TYPE (newtype)) == POINTER_TYPE
1601            && (DECL_IN_SYSTEM_HEADER (olddecl)
1602                || DECL_IN_SYSTEM_HEADER (newdecl))
1603            && ((TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (newtype))) == void_type_node
1604                 && TYPE_ARG_TYPES (oldtype) == 0
1605                 && self_promoting_args_p (TYPE_ARG_TYPES (newtype))
1606                 && TREE_TYPE (TREE_TYPE (oldtype)) == char_type_node)
1607                ||
1608                (TREE_TYPE (TREE_TYPE (newtype)) == char_type_node
1609                 && TYPE_ARG_TYPES (newtype) == 0
1610                 && self_promoting_args_p (TYPE_ARG_TYPES (oldtype))
1611                 && TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (oldtype))) == void_type_node)))
1612     {
1613       if (pedantic)
1614         pedwarn_with_decl (newdecl, "conflicting types for `%s'");
1615       /* Make sure we keep void * as ret type, not char *.  */
1616       if (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (oldtype))) == void_type_node)
1617         TREE_TYPE (newdecl) = newtype = oldtype;
1618
1619       /* Set DECL_IN_SYSTEM_HEADER, so that if we see another declaration
1620          we will come back here again.  */
1621       DECL_IN_SYSTEM_HEADER (newdecl) = 1;
1622     }
1623   else if (!types_match
1624            /* Permit char *foo (int, ...); followed by char *foo ();
1625               if not pedantic.  */
1626            && ! (TREE_CODE (olddecl) == FUNCTION_DECL
1627                  && ! pedantic
1628                  /* Return types must still match.  */
1629                  && comptypes (TREE_TYPE (oldtype),
1630                                TREE_TYPE (newtype))
1631                  && TYPE_ARG_TYPES (newtype) == 0))
1632     {
1633       error_with_decl (newdecl, "conflicting types for `%s'");
1634       /* Check for function type mismatch
1635          involving an empty arglist vs a nonempty one.  */
1636       if (TREE_CODE (olddecl) == FUNCTION_DECL
1637           && comptypes (TREE_TYPE (oldtype),
1638                         TREE_TYPE (newtype))
1639           && ((TYPE_ARG_TYPES (oldtype) == 0
1640                && DECL_INITIAL (olddecl) == 0)
1641               ||
1642               (TYPE_ARG_TYPES (newtype) == 0
1643                && DECL_INITIAL (newdecl) == 0)))
1644         {
1645           /* Classify the problem further.  */
1646           tree t = TYPE_ARG_TYPES (oldtype);
1647           if (t == 0)
1648             t = TYPE_ARG_TYPES (newtype);
1649           for (; t; t = TREE_CHAIN (t))
1650             {
1651               tree type = TREE_VALUE (t);
1652
1653               if (TREE_CHAIN (t) == 0
1654                   && TYPE_MAIN_VARIANT (type) != void_type_node)
1655                 {
1656                   error ("a parameter list with an ellipsis can't match an empty parameter name list declaration");
1657                   break;
1658                 }
1659
1660               if (simple_type_promotes_to (type) != NULL_TREE)
1661                 {
1662                   error ("an argument type that has a default promotion can't match an empty parameter name list declaration");
1663                   break;
1664                 }
1665             }
1666         }
1667       error_with_decl (olddecl, "previous declaration of `%s'");
1668     }
1669   else
1670     {
1671       errmsg = redeclaration_error_message (newdecl, olddecl);
1672       if (errmsg)
1673         {
1674           switch (errmsg)
1675             {
1676             case 1:
1677               error_with_decl (newdecl, "redefinition of `%s'");
1678               break;
1679             case 2:
1680               error_with_decl (newdecl, "redeclaration of `%s'");
1681               break;
1682             case 3:
1683               error_with_decl (newdecl, "conflicting declarations of `%s'");
1684               break;
1685             default:
1686               abort ();
1687             }
1688
1689           error_with_decl (olddecl,
1690                            ((DECL_INITIAL (olddecl)
1691                              && current_binding_level == global_binding_level)
1692                             ? "`%s' previously defined here"
1693                             : "`%s' previously declared here"));
1694           return 0;
1695         }
1696       else if (TREE_CODE (newdecl) == TYPE_DECL
1697                && (DECL_IN_SYSTEM_HEADER (olddecl)
1698                    || DECL_IN_SYSTEM_HEADER (newdecl)))
1699         {
1700           warning_with_decl (newdecl, "redefinition of `%s'");
1701           warning_with_decl
1702             (olddecl,
1703              ((DECL_INITIAL (olddecl)
1704                && current_binding_level == global_binding_level)
1705               ? "`%s' previously defined here"
1706               : "`%s' previously declared here"));
1707         }
1708       else if (TREE_CODE (olddecl) == FUNCTION_DECL
1709                && DECL_INITIAL (olddecl) != 0
1710                && TYPE_ARG_TYPES (oldtype) == 0
1711                && TYPE_ARG_TYPES (newtype) != 0
1712                && TYPE_ACTUAL_ARG_TYPES (oldtype) != 0)
1713         {
1714           tree type, parm;
1715           int nargs;
1716           /* Prototype decl follows defn w/o prototype.  */
1717
1718           for (parm = TYPE_ACTUAL_ARG_TYPES (oldtype),
1719                type = TYPE_ARG_TYPES (newtype),
1720                nargs = 1;
1721                ;
1722                parm = TREE_CHAIN (parm), type = TREE_CHAIN (type), nargs++)
1723             {
1724               if (TYPE_MAIN_VARIANT (TREE_VALUE (parm)) == void_type_node
1725                   && TYPE_MAIN_VARIANT (TREE_VALUE (type)) == void_type_node)
1726                 {
1727                   warning_with_decl (newdecl, "prototype for `%s' follows");
1728                   warning_with_decl (olddecl, "non-prototype definition here");
1729                   break;
1730                 }
1731               if (TYPE_MAIN_VARIANT (TREE_VALUE (parm)) == void_type_node
1732                   || TYPE_MAIN_VARIANT (TREE_VALUE (type)) == void_type_node)
1733                 {
1734                   error_with_decl (newdecl,
1735                                    "prototype for `%s' follows and number of arguments doesn't match");
1736                   error_with_decl (olddecl, "non-prototype definition here");
1737                   errmsg = 1;
1738                   break;
1739                 }
1740               /* Type for passing arg must be consistent
1741                  with that declared for the arg.  */
1742               if (! comptypes (TREE_VALUE (parm), TREE_VALUE (type))
1743                   /* If -traditional, allow `unsigned int' instead of `int'
1744                      in the prototype.  */
1745                   && (! (flag_traditional
1746                          && TYPE_MAIN_VARIANT (TREE_VALUE (parm)) == integer_type_node
1747                          && TYPE_MAIN_VARIANT (TREE_VALUE (type)) == unsigned_type_node)))
1748                 {
1749                   error_with_decl (newdecl,
1750                                    "prototype for `%s' follows and argument %d doesn't match",
1751                                    nargs);
1752                   error_with_decl (olddecl, "non-prototype definition here");
1753                   errmsg = 1;
1754                   break;
1755                 }
1756             }
1757         }
1758       /* Warn about mismatches in various flags.  */
1759       else
1760         {
1761           /* Warn if function is now inline
1762              but was previously declared not inline and has been called.  */
1763           if (TREE_CODE (olddecl) == FUNCTION_DECL
1764               && ! DECL_DECLARED_INLINE_P (olddecl)
1765               && DECL_DECLARED_INLINE_P (newdecl)
1766               && TREE_USED (olddecl))
1767             warning_with_decl (newdecl,
1768                                "`%s' declared inline after being called");
1769           if (TREE_CODE (olddecl) == FUNCTION_DECL
1770               && ! DECL_DECLARED_INLINE_P (olddecl)
1771               && DECL_DECLARED_INLINE_P (newdecl)
1772               && DECL_INITIAL (olddecl) != 0)
1773             warning_with_decl (newdecl,
1774                                "`%s' declared inline after its definition");
1775
1776           /* If pedantic, warn when static declaration follows a non-static
1777              declaration.  Otherwise, do so only for functions.  */
1778           if ((pedantic || TREE_CODE (olddecl) == FUNCTION_DECL)
1779               && TREE_PUBLIC (olddecl)
1780               && !TREE_PUBLIC (newdecl))
1781             warning_with_decl (newdecl, "static declaration for `%s' follows non-static");
1782
1783           /* If warn_traditional, warn when a non-static function
1784              declaration follows a static one.  */
1785           if (warn_traditional && !in_system_header
1786               && TREE_CODE (olddecl) == FUNCTION_DECL
1787               && !TREE_PUBLIC (olddecl)
1788               && TREE_PUBLIC (newdecl))
1789             warning_with_decl (newdecl, "non-static declaration for `%s' follows static");
1790
1791           /* Warn when const declaration follows a non-const
1792              declaration, but not for functions.  */
1793           if (TREE_CODE (olddecl) != FUNCTION_DECL
1794               && !TREE_READONLY (olddecl)
1795               && TREE_READONLY (newdecl))
1796             warning_with_decl (newdecl, "const declaration for `%s' follows non-const");
1797           /* These bits are logically part of the type, for variables.
1798              But not for functions
1799              (where qualifiers are not valid ANSI anyway).  */
1800           else if (pedantic && TREE_CODE (olddecl) != FUNCTION_DECL
1801               && (TREE_READONLY (newdecl) != TREE_READONLY (olddecl)
1802                   || TREE_THIS_VOLATILE (newdecl) != TREE_THIS_VOLATILE (olddecl)))
1803             pedwarn_with_decl (newdecl, "type qualifiers for `%s' conflict with previous decl");
1804         }
1805     }
1806
1807   /* Optionally warn about more than one declaration for the same name.  */
1808   if (errmsg == 0 && warn_redundant_decls && DECL_SOURCE_LINE (olddecl) != 0
1809       /* Don't warn about a function declaration
1810          followed by a definition.  */
1811       && !(TREE_CODE (newdecl) == FUNCTION_DECL && DECL_INITIAL (newdecl) != 0
1812            && DECL_INITIAL (olddecl) == 0)
1813       /* Don't warn about extern decl followed by (tentative) definition.  */
1814       && !(DECL_EXTERNAL (olddecl) && ! DECL_EXTERNAL (newdecl)))
1815     {
1816       warning_with_decl (newdecl, "redundant redeclaration of `%s' in same scope");
1817       warning_with_decl (olddecl, "previous declaration of `%s'");
1818     }
1819
1820   /* Copy all the DECL_... slots specified in the new decl
1821      except for any that we copy here from the old type.
1822
1823      Past this point, we don't change OLDTYPE and NEWTYPE
1824      even if we change the types of NEWDECL and OLDDECL.  */
1825
1826   if (types_match)
1827     {
1828       /* When copying info to olddecl, we store into write_olddecl
1829          instead.  This allows us to avoid modifying olddecl when
1830          different_binding_level is true.  */
1831       tree write_olddecl = different_binding_level ? newdecl : olddecl;
1832
1833       /* Merge the data types specified in the two decls.  */
1834       if (TREE_CODE (newdecl) != FUNCTION_DECL || !DECL_BUILT_IN (olddecl))
1835         {
1836           if (different_binding_level)
1837             {
1838               if (TYPE_ARG_TYPES (oldtype) != 0
1839                   && TYPE_ARG_TYPES (newtype) == 0)
1840                 TREE_TYPE (newdecl) = common_type (newtype, oldtype);
1841               else
1842                 TREE_TYPE (newdecl)
1843                   = build_type_attribute_variant
1844                     (newtype,
1845                      merge_attributes (TYPE_ATTRIBUTES (newtype),
1846                                        TYPE_ATTRIBUTES (oldtype)));
1847             }
1848           else
1849             TREE_TYPE (newdecl)
1850               = TREE_TYPE (olddecl)
1851                 = common_type (newtype, oldtype);
1852         }
1853
1854       /* Lay the type out, unless already done.  */
1855       if (oldtype != TREE_TYPE (newdecl))
1856         {
1857           if (TREE_TYPE (newdecl) != error_mark_node)
1858             layout_type (TREE_TYPE (newdecl));
1859           if (TREE_CODE (newdecl) != FUNCTION_DECL
1860               && TREE_CODE (newdecl) != TYPE_DECL
1861               && TREE_CODE (newdecl) != CONST_DECL)
1862             layout_decl (newdecl, 0);
1863         }
1864       else
1865         {
1866           /* Since the type is OLDDECL's, make OLDDECL's size go with.  */
1867           DECL_SIZE (newdecl) = DECL_SIZE (olddecl);
1868           DECL_SIZE_UNIT (newdecl) = DECL_SIZE_UNIT (olddecl);
1869           DECL_MODE (newdecl) = DECL_MODE (olddecl);
1870           if (TREE_CODE (olddecl) != FUNCTION_DECL)
1871             if (DECL_ALIGN (olddecl) > DECL_ALIGN (newdecl))
1872               {
1873                 DECL_ALIGN (newdecl) = DECL_ALIGN (olddecl);
1874                 DECL_USER_ALIGN (newdecl) |= DECL_ALIGN (olddecl);
1875               }
1876         }
1877
1878       /* Keep the old rtl since we can safely use it.  */
1879       COPY_DECL_RTL (olddecl, newdecl);
1880
1881       /* Merge the type qualifiers.  */
1882       if (TREE_CODE (olddecl) == FUNCTION_DECL
1883           && DECL_BUILT_IN_NONANSI (olddecl) && TREE_THIS_VOLATILE (olddecl)
1884           && ! TREE_THIS_VOLATILE (newdecl))
1885         TREE_THIS_VOLATILE (write_olddecl) = 0;
1886
1887       if (TREE_READONLY (newdecl))
1888         TREE_READONLY (write_olddecl) = 1;
1889
1890       if (TREE_THIS_VOLATILE (newdecl))
1891         {
1892           TREE_THIS_VOLATILE (write_olddecl) = 1;
1893           if (TREE_CODE (newdecl) == VAR_DECL
1894               /* If an automatic variable is re-declared in the same
1895                  function scope, but the old declaration was not
1896                  volatile, make_var_volatile() would crash because the
1897                  variable would have been assigned to a pseudo, not a
1898                  MEM.  Since this duplicate declaration is invalid
1899                  anyway, we just skip the call.  */
1900               && errmsg == 0)
1901             make_var_volatile (newdecl);
1902         }
1903
1904       /* Keep source location of definition rather than declaration.  */
1905       /* When called with different_binding_level set, keep the old
1906          information so that meaningful diagnostics can be given.  */
1907       if (DECL_INITIAL (newdecl) == 0 && DECL_INITIAL (olddecl) != 0
1908           && ! different_binding_level)
1909         {
1910           DECL_SOURCE_LINE (newdecl) = DECL_SOURCE_LINE (olddecl);
1911           DECL_SOURCE_FILE (newdecl) = DECL_SOURCE_FILE (olddecl);
1912         }
1913
1914       /* Merge the unused-warning information.  */
1915       if (DECL_IN_SYSTEM_HEADER (olddecl))
1916         DECL_IN_SYSTEM_HEADER (newdecl) = 1;
1917       else if (DECL_IN_SYSTEM_HEADER (newdecl))
1918         DECL_IN_SYSTEM_HEADER (write_olddecl) = 1;
1919
1920       /* Merge the initialization information.  */
1921       /* When called with different_binding_level set, don't copy over
1922          DECL_INITIAL, so that we don't accidentally change function
1923          declarations into function definitions.  */
1924       if (DECL_INITIAL (newdecl) == 0 && ! different_binding_level)
1925         DECL_INITIAL (newdecl) = DECL_INITIAL (olddecl);
1926
1927       /* Merge the section attribute.
1928          We want to issue an error if the sections conflict but that must be
1929          done later in decl_attributes since we are called before attributes
1930          are assigned.  */
1931       if (DECL_SECTION_NAME (newdecl) == NULL_TREE)
1932         DECL_SECTION_NAME (newdecl) = DECL_SECTION_NAME (olddecl);
1933
1934       /* Copy the assembler name.
1935          Currently, it can only be defined in the prototype.  */
1936       COPY_DECL_ASSEMBLER_NAME (olddecl, newdecl);
1937
1938       if (TREE_CODE (newdecl) == FUNCTION_DECL)
1939         {
1940           DECL_STATIC_CONSTRUCTOR(newdecl) |= DECL_STATIC_CONSTRUCTOR(olddecl);
1941           DECL_STATIC_DESTRUCTOR (newdecl) |= DECL_STATIC_DESTRUCTOR (olddecl);
1942           DECL_NO_LIMIT_STACK (newdecl) |= DECL_NO_LIMIT_STACK (olddecl);
1943           DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (newdecl)
1944             |= DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (olddecl);
1945         }
1946     }
1947   /* If cannot merge, then use the new type and qualifiers,
1948      and don't preserve the old rtl.  */
1949   else if (! different_binding_level)
1950     {
1951       TREE_TYPE (olddecl) = TREE_TYPE (newdecl);
1952       TREE_READONLY (olddecl) = TREE_READONLY (newdecl);
1953       TREE_THIS_VOLATILE (olddecl) = TREE_THIS_VOLATILE (newdecl);
1954       TREE_SIDE_EFFECTS (olddecl) = TREE_SIDE_EFFECTS (newdecl);
1955     }
1956
1957   /* Merge the storage class information.  */
1958   merge_weak (newdecl, olddecl);
1959
1960   /* For functions, static overrides non-static.  */
1961   if (TREE_CODE (newdecl) == FUNCTION_DECL)
1962     {
1963       TREE_PUBLIC (newdecl) &= TREE_PUBLIC (olddecl);
1964       /* This is since we don't automatically
1965          copy the attributes of NEWDECL into OLDDECL.  */
1966       /* No need to worry about different_binding_level here because
1967          then TREE_PUBLIC (newdecl) was true.  */
1968       TREE_PUBLIC (olddecl) = TREE_PUBLIC (newdecl);
1969       /* If this clears `static', clear it in the identifier too.  */
1970       if (! TREE_PUBLIC (olddecl))
1971         TREE_PUBLIC (DECL_NAME (olddecl)) = 0;
1972     }
1973   if (DECL_EXTERNAL (newdecl))
1974     {
1975       if (! different_binding_level)
1976         {
1977           /* Don't mess with these flags on local externs; they remain
1978              external even if there's a declaration at file scope which
1979              isn't.  */
1980           TREE_STATIC (newdecl) = TREE_STATIC (olddecl);
1981           DECL_EXTERNAL (newdecl) = DECL_EXTERNAL (olddecl);
1982         }
1983       /* An extern decl does not override previous storage class.  */
1984       TREE_PUBLIC (newdecl) = TREE_PUBLIC (olddecl);
1985       if (! DECL_EXTERNAL (newdecl))
1986         DECL_CONTEXT (newdecl) = DECL_CONTEXT (olddecl);
1987     }
1988   else
1989     {
1990       TREE_STATIC (olddecl) = TREE_STATIC (newdecl);
1991       TREE_PUBLIC (olddecl) = TREE_PUBLIC (newdecl);
1992     }
1993
1994   if (TREE_CODE (newdecl) == FUNCTION_DECL)
1995     {
1996       /* If we're redefining a function previously defined as extern
1997          inline, make sure we emit debug info for the inline before we
1998          throw it away, in case it was inlined into a function that hasn't
1999          been written out yet.  */
2000       if (new_is_definition && DECL_INITIAL (olddecl) && TREE_USED (olddecl))
2001         {
2002           (*debug_hooks->outlining_inline_function) (olddecl);
2003
2004           /* The new defn must not be inline.  */
2005           DECL_INLINE (newdecl) = 0;
2006           DECL_UNINLINABLE (newdecl) = 1;
2007         }
2008       else
2009         {
2010           /* If either decl says `inline', this fn is inline,
2011              unless its definition was passed already.  */
2012           if (DECL_DECLARED_INLINE_P (newdecl)
2013               || DECL_DECLARED_INLINE_P (olddecl))
2014             DECL_DECLARED_INLINE_P (newdecl) = 1;
2015
2016           DECL_UNINLINABLE (newdecl) = DECL_UNINLINABLE (olddecl)
2017             = (DECL_UNINLINABLE (newdecl) || DECL_UNINLINABLE (olddecl));
2018         }
2019
2020       if (DECL_BUILT_IN (olddecl))
2021         {
2022           /* Get rid of any built-in function if new arg types don't match it
2023              or if we have a function definition.  */
2024           if (! types_match || new_is_definition)
2025             {
2026               if (! different_binding_level)
2027                 {
2028                   TREE_TYPE (olddecl) = TREE_TYPE (newdecl);
2029                   DECL_BUILT_IN_CLASS (olddecl) = NOT_BUILT_IN;
2030                 }
2031             }
2032           else
2033             {
2034               /* If redeclaring a builtin function, and not a definition,
2035                  it stays built in.  */
2036               DECL_BUILT_IN_CLASS (newdecl) = DECL_BUILT_IN_CLASS (olddecl);
2037               DECL_FUNCTION_CODE (newdecl) = DECL_FUNCTION_CODE (olddecl);
2038             }
2039         }
2040
2041       /* Also preserve various other info from the definition.  */
2042       if (! new_is_definition)
2043         {
2044           DECL_RESULT (newdecl) = DECL_RESULT (olddecl);
2045           /* When called with different_binding_level set, don't copy over
2046              DECL_INITIAL, so that we don't accidentally change function
2047              declarations into function definitions.  */
2048           if (! different_binding_level)
2049             DECL_INITIAL (newdecl) = DECL_INITIAL (olddecl);
2050           DECL_SAVED_INSNS (newdecl) = DECL_SAVED_INSNS (olddecl);
2051           DECL_SAVED_TREE (newdecl) = DECL_SAVED_TREE (olddecl);
2052           DECL_NUM_STMTS (newdecl) = DECL_NUM_STMTS (olddecl);
2053           DECL_ARGUMENTS (newdecl) = DECL_ARGUMENTS (olddecl);
2054
2055           /* Set DECL_INLINE on the declaration if we've got a body
2056              from which to instantiate.  */
2057           if (DECL_INLINE (olddecl) && ! DECL_UNINLINABLE (newdecl))
2058             {
2059               DECL_INLINE (newdecl) = 1;
2060               DECL_ABSTRACT_ORIGIN (newdecl)
2061                 = (different_binding_level
2062                    ? DECL_ORIGIN (olddecl)
2063                    : DECL_ABSTRACT_ORIGIN (olddecl));
2064             }
2065         }
2066       else
2067         {
2068           /* If a previous declaration said inline, mark the
2069              definition as inlinable.  */
2070           if (DECL_DECLARED_INLINE_P (newdecl)
2071               && ! DECL_UNINLINABLE (newdecl))
2072             DECL_INLINE (newdecl) = 1;
2073         }
2074     }
2075   if (different_binding_level)
2076     return 0;
2077
2078   /* Copy most of the decl-specific fields of NEWDECL into OLDDECL.
2079      But preserve OLDDECL's DECL_UID.  */
2080   {
2081     unsigned olddecl_uid = DECL_UID (olddecl);
2082
2083     memcpy ((char *) olddecl + sizeof (struct tree_common),
2084             (char *) newdecl + sizeof (struct tree_common),
2085             sizeof (struct tree_decl) - sizeof (struct tree_common));
2086     DECL_UID (olddecl) = olddecl_uid;
2087   }
2088
2089   /* NEWDECL contains the merged attribute lists.
2090      Update OLDDECL to be the same.  */
2091   DECL_ATTRIBUTES (olddecl) = DECL_ATTRIBUTES (newdecl);
2092
2093   return 1;
2094 }
2095
2096 /* Check whether decl-node X shadows an existing declaration.
2097    OLDLOCAL is the old IDENTIFIER_LOCAL_VALUE of the DECL_NAME of X,
2098    which might be a NULL_TREE.  */
2099 static void
2100 warn_if_shadowing (x, oldlocal)
2101      tree x, oldlocal;
2102 {
2103   tree name;
2104
2105   if (DECL_EXTERNAL (x))
2106     return;
2107
2108   name = DECL_NAME (x);
2109
2110   /* Warn if shadowing an argument at the top level of the body.  */
2111   if (oldlocal != 0
2112       /* This warning doesn't apply to the parms of a nested fcn.  */
2113       && ! current_binding_level->parm_flag
2114       /* Check that this is one level down from the parms.  */
2115       && current_binding_level->level_chain->parm_flag
2116       /* Check that the decl being shadowed
2117          comes from the parm level, one level up.  */
2118       && chain_member (oldlocal, current_binding_level->level_chain->names))
2119     {
2120       if (TREE_CODE (oldlocal) == PARM_DECL)
2121         pedwarn ("declaration of `%s' shadows a parameter",
2122                  IDENTIFIER_POINTER (name));
2123       else
2124         pedwarn ("declaration of `%s' shadows a symbol from the parameter list",
2125                  IDENTIFIER_POINTER (name));
2126     }
2127   /* Maybe warn if shadowing something else.  */
2128   else if (warn_shadow
2129            /* No shadow warnings for internally generated vars.  */
2130            && DECL_SOURCE_LINE (x) != 0
2131            /* No shadow warnings for vars made for inlining.  */
2132            && ! DECL_FROM_INLINE (x))
2133     {
2134       if (TREE_CODE (x) == PARM_DECL
2135           && current_binding_level->level_chain->parm_flag)
2136         /* Don't warn about the parm names in function declarator
2137            within a function declarator.
2138            It would be nice to avoid warning in any function
2139            declarator in a declaration, as opposed to a definition,
2140            but there is no way to tell it's not a definition.  */
2141         ;
2142       else if (oldlocal)
2143         {
2144           if (TREE_CODE (oldlocal) == PARM_DECL)
2145             shadow_warning ("a parameter", name, oldlocal);
2146           else
2147             shadow_warning ("a previous local", name, oldlocal);
2148         }
2149       else if (IDENTIFIER_GLOBAL_VALUE (name) != 0
2150                && IDENTIFIER_GLOBAL_VALUE (name) != error_mark_node)
2151         shadow_warning ("a global declaration", name,
2152                         IDENTIFIER_GLOBAL_VALUE (name));
2153     }
2154 }
2155
2156 /* Record a decl-node X as belonging to the current lexical scope.
2157    Check for errors (such as an incompatible declaration for the same
2158    name already seen in the same scope).
2159
2160    Returns either X or an old decl for the same name.
2161    If an old decl is returned, it may have been smashed
2162    to agree with what X says.  */
2163
2164 tree
2165 pushdecl (x)
2166      tree x;
2167 {
2168   tree t;
2169   tree name = DECL_NAME (x);
2170   struct binding_level *b = current_binding_level;
2171
2172   /* Functions need the lang_decl data.  */
2173   if (TREE_CODE (x) == FUNCTION_DECL && ! DECL_LANG_SPECIFIC (x))
2174     DECL_LANG_SPECIFIC (x) = (struct lang_decl *)
2175       ggc_alloc_cleared (sizeof (struct lang_decl));
2176
2177   DECL_CONTEXT (x) = current_function_decl;
2178   /* A local extern declaration for a function doesn't constitute nesting.
2179      A local auto declaration does, since it's a forward decl
2180      for a nested function coming later.  */
2181   if ((TREE_CODE (x) == FUNCTION_DECL || TREE_CODE (x) == VAR_DECL)
2182       && DECL_INITIAL (x) == 0 && DECL_EXTERNAL (x))
2183     DECL_CONTEXT (x) = 0;
2184
2185   if (name)
2186     {
2187       int different_binding_level = 0;
2188
2189       if (warn_nested_externs
2190           && DECL_EXTERNAL (x)
2191           && b != global_binding_level
2192           && x != IDENTIFIER_IMPLICIT_DECL (name)
2193           /* No error messages for __FUNCTION__ and __PRETTY_FUNCTION__.  */
2194           && !DECL_IN_SYSTEM_HEADER (x))
2195         warning ("nested extern declaration of `%s'",
2196                  IDENTIFIER_POINTER (name));
2197
2198       t = lookup_name_current_level (name);
2199       /* Don't type check externs here when -traditional.  This is so that
2200          code with conflicting declarations inside blocks will get warnings
2201          not errors.  X11 for instance depends on this.  */
2202       if (! t && DECL_EXTERNAL (x) && TREE_PUBLIC (x) && ! flag_traditional)
2203         {
2204           t = IDENTIFIER_GLOBAL_VALUE (name);
2205           /* Type decls at global scope don't conflict with externs declared
2206              inside lexical blocks.  */
2207           if (! t || TREE_CODE (t) == TYPE_DECL)
2208             /* If there's no visible global declaration, try for an
2209                invisible one.  */
2210             t = IDENTIFIER_LIMBO_VALUE (name);
2211           different_binding_level = 1;
2212         }
2213       if (t != 0 && t == error_mark_node)
2214         /* error_mark_node is 0 for a while during initialization!  */
2215         {
2216           t = 0;
2217           error_with_decl (x, "`%s' used prior to declaration");
2218         }
2219
2220       /* If this decl is `static' and an implicit decl was seen previously,
2221          warn.  But don't complain if -traditional,
2222          since traditional compilers don't complain.  */
2223       if (! flag_traditional && TREE_PUBLIC (name)
2224           /* Don't test for DECL_EXTERNAL, because grokdeclarator
2225              sets this for all functions.  */
2226           && ! TREE_PUBLIC (x)
2227           && (TREE_CODE (x) == FUNCTION_DECL || b == global_binding_level)
2228           /* We used to warn also for explicit extern followed by static,
2229              but sometimes you need to do it that way.  */
2230           && IDENTIFIER_IMPLICIT_DECL (name) != 0)
2231         {
2232           pedwarn ("`%s' was declared implicitly `extern' and later `static'",
2233                    IDENTIFIER_POINTER (name));
2234           pedwarn_with_file_and_line
2235             (DECL_SOURCE_FILE (IDENTIFIER_IMPLICIT_DECL (name)),
2236              DECL_SOURCE_LINE (IDENTIFIER_IMPLICIT_DECL (name)),
2237              "previous declaration of `%s'",
2238              IDENTIFIER_POINTER (name));
2239           TREE_THIS_VOLATILE (name) = 1;
2240         }
2241
2242       if (t != 0 && duplicate_decls (x, t, different_binding_level))
2243         {
2244           if (TREE_CODE (t) == PARM_DECL)
2245             {
2246               /* Don't allow more than one "real" duplicate
2247                  of a forward parm decl.  */
2248               TREE_ASM_WRITTEN (t) = TREE_ASM_WRITTEN (x);
2249               return t;
2250             }
2251           return t;
2252         }
2253
2254       /* If we are processing a typedef statement, generate a whole new
2255          ..._TYPE node (which will be just an variant of the existing
2256          ..._TYPE node with identical properties) and then install the
2257          TYPE_DECL node generated to represent the typedef name as the
2258          TYPE_NAME of this brand new (duplicate) ..._TYPE node.
2259
2260          The whole point here is to end up with a situation where each
2261          and every ..._TYPE node the compiler creates will be uniquely
2262          associated with AT MOST one node representing a typedef name.
2263          This way, even though the compiler substitutes corresponding
2264          ..._TYPE nodes for TYPE_DECL (i.e. "typedef name") nodes very
2265          early on, later parts of the compiler can always do the reverse
2266          translation and get back the corresponding typedef name.  For
2267          example, given:
2268
2269                 typedef struct S MY_TYPE;
2270                 MY_TYPE object;
2271
2272          Later parts of the compiler might only know that `object' was of
2273          type `struct S' if it were not for code just below.  With this
2274          code however, later parts of the compiler see something like:
2275
2276                 struct S' == struct S
2277                 typedef struct S' MY_TYPE;
2278                 struct S' object;
2279
2280          And they can then deduce (from the node for type struct S') that
2281          the original object declaration was:
2282
2283                 MY_TYPE object;
2284
2285          Being able to do this is important for proper support of protoize,
2286          and also for generating precise symbolic debugging information
2287          which takes full account of the programmer's (typedef) vocabulary.
2288
2289          Obviously, we don't want to generate a duplicate ..._TYPE node if
2290          the TYPE_DECL node that we are now processing really represents a
2291          standard built-in type.
2292
2293          Since all standard types are effectively declared at line zero
2294          in the source file, we can easily check to see if we are working
2295          on a standard type by checking the current value of lineno.  */
2296
2297       if (TREE_CODE (x) == TYPE_DECL)
2298         {
2299           if (DECL_SOURCE_LINE (x) == 0)
2300             {
2301               if (TYPE_NAME (TREE_TYPE (x)) == 0)
2302                 TYPE_NAME (TREE_TYPE (x)) = x;
2303             }
2304           else if (TREE_TYPE (x) != error_mark_node
2305                    && DECL_ORIGINAL_TYPE (x) == NULL_TREE)
2306             {
2307               tree tt = TREE_TYPE (x);
2308               DECL_ORIGINAL_TYPE (x) = tt;
2309               tt = build_type_copy (tt);
2310               TYPE_NAME (tt) = x;
2311               TREE_USED (tt) = TREE_USED (x);
2312               TREE_TYPE (x) = tt;
2313             }
2314         }
2315
2316       /* Multiple external decls of the same identifier ought to match.
2317          Check against both global declarations (when traditional) and out of
2318          scope (limbo) block level declarations.
2319
2320          We get warnings about inline functions where they are defined.
2321          Avoid duplicate warnings where they are used.  */
2322       if (TREE_PUBLIC (x)
2323           && ! (TREE_CODE (x) == FUNCTION_DECL && DECL_INLINE (x)))
2324         {
2325           tree decl;
2326
2327           if (flag_traditional && IDENTIFIER_GLOBAL_VALUE (name) != 0
2328               && (DECL_EXTERNAL (IDENTIFIER_GLOBAL_VALUE (name))
2329                   || TREE_PUBLIC (IDENTIFIER_GLOBAL_VALUE (name))))
2330             decl = IDENTIFIER_GLOBAL_VALUE (name);
2331           else if (IDENTIFIER_LIMBO_VALUE (name) != 0)
2332             /* Decls in limbo are always extern, so no need to check that.  */
2333             decl = IDENTIFIER_LIMBO_VALUE (name);
2334           else
2335             decl = 0;
2336
2337           if (decl && ! comptypes (TREE_TYPE (x), TREE_TYPE (decl))
2338               /* If old decl is built-in, we already warned if we should.  */
2339               && !DECL_BUILT_IN (decl))
2340             {
2341               pedwarn_with_decl (x,
2342                                  "type mismatch with previous external decl");
2343               pedwarn_with_decl (decl, "previous external decl of `%s'");
2344             }
2345         }
2346
2347       /* If a function has had an implicit declaration, and then is defined,
2348          make sure they are compatible.  */
2349
2350       if (IDENTIFIER_IMPLICIT_DECL (name) != 0
2351           && IDENTIFIER_GLOBAL_VALUE (name) == 0
2352           && TREE_CODE (x) == FUNCTION_DECL
2353           && ! comptypes (TREE_TYPE (x),
2354                           TREE_TYPE (IDENTIFIER_IMPLICIT_DECL (name))))
2355         {
2356           warning_with_decl (x, "type mismatch with previous implicit declaration");
2357           warning_with_decl (IDENTIFIER_IMPLICIT_DECL (name),
2358                              "previous implicit declaration of `%s'");
2359         }
2360
2361       /* In PCC-compatibility mode, extern decls of vars with no current decl
2362          take effect at top level no matter where they are.  */
2363       if (flag_traditional && DECL_EXTERNAL (x)
2364           && lookup_name (name) == 0)
2365         {
2366           tree type = TREE_TYPE (x);
2367
2368           /* But don't do this if the type contains temporary nodes.  */
2369           while (type)
2370             {
2371               if (type == error_mark_node)
2372                 break;
2373               if (TYPE_CONTEXT (type))
2374                 {
2375                   warning_with_decl (x, "type of external `%s' is not global");
2376                   /* By exiting the loop early, we leave TYPE nonzero,
2377                      and thus prevent globalization of the decl.  */
2378                   break;
2379                 }
2380               else if (TREE_CODE (type) == FUNCTION_TYPE
2381                        && TYPE_ARG_TYPES (type) != 0)
2382                 /* The types might not be truly local,
2383                    but the list of arg types certainly is temporary.
2384                    Since prototypes are nontraditional,
2385                    ok not to do the traditional thing.  */
2386                 break;
2387               type = TREE_TYPE (type);
2388             }
2389
2390           if (type == 0)
2391             b = global_binding_level;
2392         }
2393
2394       /* This name is new in its binding level.
2395          Install the new declaration and return it.  */
2396       if (b == global_binding_level)
2397         {
2398           /* Install a global value.  */
2399
2400           /* If the first global decl has external linkage,
2401              warn if we later see static one.  */
2402           if (IDENTIFIER_GLOBAL_VALUE (name) == 0 && TREE_PUBLIC (x))
2403             TREE_PUBLIC (name) = 1;
2404
2405           IDENTIFIER_GLOBAL_VALUE (name) = x;
2406
2407           /* We no longer care about any previous block level declarations.  */
2408           IDENTIFIER_LIMBO_VALUE (name) = 0;
2409
2410           /* Don't forget if the function was used via an implicit decl.  */
2411           if (IDENTIFIER_IMPLICIT_DECL (name)
2412               && TREE_USED (IDENTIFIER_IMPLICIT_DECL (name)))
2413             TREE_USED (x) = 1, TREE_USED (name) = 1;
2414
2415           /* Don't forget if its address was taken in that way.  */
2416           if (IDENTIFIER_IMPLICIT_DECL (name)
2417               && TREE_ADDRESSABLE (IDENTIFIER_IMPLICIT_DECL (name)))
2418             TREE_ADDRESSABLE (x) = 1;
2419
2420           /* Warn about mismatches against previous implicit decl.  */
2421           if (IDENTIFIER_IMPLICIT_DECL (name) != 0
2422               /* If this real decl matches the implicit, don't complain.  */
2423               && ! (TREE_CODE (x) == FUNCTION_DECL
2424                     && (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (x)))
2425                         == integer_type_node)))
2426             pedwarn ("`%s' was previously implicitly declared to return `int'",
2427                      IDENTIFIER_POINTER (name));
2428
2429           /* If this decl is `static' and an `extern' was seen previously,
2430              that is erroneous.  */
2431           if (TREE_PUBLIC (name)
2432               && ! TREE_PUBLIC (x) && ! DECL_EXTERNAL (x))
2433             {
2434               /* Okay to redeclare an ANSI built-in as static.  */
2435               if (t != 0 && DECL_BUILT_IN (t))
2436                 ;
2437               /* Okay to declare a non-ANSI built-in as anything.  */
2438               else if (t != 0 && DECL_BUILT_IN_NONANSI (t))
2439                 ;
2440               /* Okay to have global type decl after an earlier extern
2441                  declaration inside a lexical block.  */
2442               else if (TREE_CODE (x) == TYPE_DECL)
2443                 ;
2444               else if (IDENTIFIER_IMPLICIT_DECL (name))
2445                 {
2446                   if (! TREE_THIS_VOLATILE (name))
2447                     pedwarn ("`%s' was declared implicitly `extern' and later `static'",
2448                              IDENTIFIER_POINTER (name));
2449                 }
2450               else
2451                 pedwarn ("`%s' was declared `extern' and later `static'",
2452                          IDENTIFIER_POINTER (name));
2453             }
2454         }
2455       else
2456         {
2457           /* Here to install a non-global value.  */
2458           tree oldlocal = IDENTIFIER_LOCAL_VALUE (name);
2459           tree oldglobal = IDENTIFIER_GLOBAL_VALUE (name);
2460
2461           IDENTIFIER_LOCAL_VALUE (name) = x;
2462
2463           /* If this is an extern function declaration, see if we
2464              have a global definition or declaration for the function.  */
2465           if (oldlocal == 0
2466               && oldglobal != 0
2467               && TREE_CODE (x) == FUNCTION_DECL
2468               && TREE_CODE (oldglobal) == FUNCTION_DECL
2469               && DECL_EXTERNAL (x)
2470               && ! DECL_DECLARED_INLINE_P (x))
2471             {
2472               /* We have one.  Their types must agree.  */
2473               if (! comptypes (TREE_TYPE (x),
2474                                TREE_TYPE (IDENTIFIER_GLOBAL_VALUE (name))))
2475                 pedwarn_with_decl (x, "extern declaration of `%s' doesn't match global one");
2476               else
2477                 {
2478                   /* Inner extern decl is inline if global one is.
2479                      Copy enough to really inline it.  */
2480                   if (DECL_DECLARED_INLINE_P (oldglobal))
2481                     {
2482                       DECL_DECLARED_INLINE_P (x)
2483                         = DECL_DECLARED_INLINE_P (oldglobal);
2484                       DECL_INLINE (x) = DECL_INLINE (oldglobal);
2485                       DECL_INITIAL (x) = (current_function_decl == oldglobal
2486                                           ? 0 : DECL_INITIAL (oldglobal));
2487                       DECL_SAVED_INSNS (x) = DECL_SAVED_INSNS (oldglobal);
2488                       DECL_NUM_STMTS (x) = DECL_NUM_STMTS (oldglobal);
2489                       DECL_ARGUMENTS (x) = DECL_ARGUMENTS (oldglobal);
2490                       DECL_RESULT (x) = DECL_RESULT (oldglobal);
2491                       TREE_ASM_WRITTEN (x) = TREE_ASM_WRITTEN (oldglobal);
2492                       DECL_ABSTRACT_ORIGIN (x)
2493                         = DECL_ABSTRACT_ORIGIN (oldglobal);
2494                     }
2495                   /* Inner extern decl is built-in if global one is.  */
2496                   if (DECL_BUILT_IN (oldglobal))
2497                     {
2498                       DECL_BUILT_IN_CLASS (x) = DECL_BUILT_IN_CLASS (oldglobal);
2499                       DECL_FUNCTION_CODE (x) = DECL_FUNCTION_CODE (oldglobal);
2500                     }
2501                   /* Keep the arg types from a file-scope fcn defn.  */
2502                   if (TYPE_ARG_TYPES (TREE_TYPE (oldglobal)) != 0
2503                       && DECL_INITIAL (oldglobal)
2504                       && TYPE_ARG_TYPES (TREE_TYPE (x)) == 0)
2505                     TREE_TYPE (x) = TREE_TYPE (oldglobal);
2506                 }
2507             }
2508
2509 #if 0
2510           /* This case is probably sometimes the right thing to do.  */
2511           /* If we have a local external declaration,
2512              then any file-scope declaration should not
2513              have been static.  */
2514           if (oldlocal == 0 && oldglobal != 0
2515               && !TREE_PUBLIC (oldglobal)
2516               && DECL_EXTERNAL (x) && TREE_PUBLIC (x))
2517             warning ("`%s' locally external but globally static",
2518                      IDENTIFIER_POINTER (name));
2519 #endif
2520
2521           /* If we have a local external declaration,
2522              and no file-scope declaration has yet been seen,
2523              then if we later have a file-scope decl it must not be static.  */
2524           if (oldlocal == 0
2525               && DECL_EXTERNAL (x)
2526               && TREE_PUBLIC (x))
2527             {
2528               if (oldglobal == 0)
2529                 TREE_PUBLIC (name) = 1;
2530
2531               /* Save this decl, so that we can do type checking against
2532                  other decls after it falls out of scope.
2533
2534                  Only save it once.  This prevents temporary decls created in
2535                  expand_inline_function from being used here, since this
2536                  will have been set when the inline function was parsed.
2537                  It also helps give slightly better warnings.  */
2538               if (IDENTIFIER_LIMBO_VALUE (name) == 0)
2539                 IDENTIFIER_LIMBO_VALUE (name) = x;
2540             }
2541
2542           warn_if_shadowing (x, oldlocal);
2543
2544           /* If storing a local value, there may already be one (inherited).
2545              If so, record it for restoration when this binding level ends.  */
2546           if (oldlocal != 0)
2547             b->shadowed = tree_cons (name, oldlocal, b->shadowed);
2548         }
2549
2550       /* Keep count of variables in this level with incomplete type.
2551          If the input is erroneous, we can have error_mark in the type
2552          slot (e.g. "f(void a, ...)") - that doesn't count as an
2553          incomplete type.  */
2554       if (TREE_TYPE (x) != error_mark_node
2555           && !COMPLETE_TYPE_P (TREE_TYPE (x)))
2556         {
2557           tree element = TREE_TYPE (x);
2558
2559           while (TREE_CODE (element) == ARRAY_TYPE)
2560             element = TREE_TYPE (element);
2561           if (TREE_CODE (element) == RECORD_TYPE
2562               || TREE_CODE (element) == UNION_TYPE)
2563             ++b->n_incomplete;
2564         }
2565     }
2566
2567   /* Put decls on list in reverse order.
2568      We will reverse them later if necessary.  */
2569   TREE_CHAIN (x) = b->names;
2570   b->names = x;
2571
2572   return x;
2573 }
2574
2575 /* Like pushdecl, only it places X in GLOBAL_BINDING_LEVEL, if appropriate.  */
2576
2577 tree
2578 pushdecl_top_level (x)
2579      tree x;
2580 {
2581   tree t;
2582   struct binding_level *b = current_binding_level;
2583
2584   current_binding_level = global_binding_level;
2585   t = pushdecl (x);
2586   current_binding_level = b;
2587   return t;
2588 }
2589 \f
2590 /* Generate an implicit declaration for identifier FUNCTIONID
2591    as a function of type int ().  Print a warning if appropriate.  */
2592
2593 tree
2594 implicitly_declare (functionid)
2595      tree functionid;
2596 {
2597   tree decl;
2598   int traditional_warning = 0;
2599   /* Only one "implicit declaration" warning per identifier.  */
2600   int implicit_warning;
2601
2602   /* We used to reuse an old implicit decl here,
2603      but this loses with inline functions because it can clobber
2604      the saved decl chains.  */
2605 #if 0
2606   if (IDENTIFIER_IMPLICIT_DECL (functionid) != 0)
2607     decl = IDENTIFIER_IMPLICIT_DECL (functionid);
2608   else
2609 #endif
2610     decl = build_decl (FUNCTION_DECL, functionid, default_function_type);
2611
2612   /* Warn of implicit decl following explicit local extern decl.
2613      This is probably a program designed for traditional C.  */
2614   if (TREE_PUBLIC (functionid) && IDENTIFIER_GLOBAL_VALUE (functionid) == 0)
2615     traditional_warning = 1;
2616
2617   /* Warn once of an implicit declaration.  */
2618   implicit_warning = (IDENTIFIER_IMPLICIT_DECL (functionid) == 0);
2619
2620   DECL_EXTERNAL (decl) = 1;
2621   TREE_PUBLIC (decl) = 1;
2622
2623   /* Record that we have an implicit decl and this is it.  */
2624   IDENTIFIER_IMPLICIT_DECL (functionid) = decl;
2625
2626   /* ANSI standard says implicit declarations are in the innermost block.
2627      So we record the decl in the standard fashion.
2628      If flag_traditional is set, pushdecl does it top-level.  */
2629   pushdecl (decl);
2630
2631   /* This is a no-op in c-lang.c or something real in objc-actions.c.  */
2632   maybe_objc_check_decl (decl);
2633
2634   rest_of_decl_compilation (decl, NULL, 0, 0);
2635
2636   if (implicit_warning)
2637     implicit_decl_warning (functionid);
2638   else if (warn_traditional && traditional_warning)
2639     warning ("function `%s' was previously declared within a block",
2640              IDENTIFIER_POINTER (functionid));
2641
2642   /* Write a record describing this implicit function declaration to the
2643      prototypes file (if requested).  */
2644
2645   gen_aux_info_record (decl, 0, 1, 0);
2646
2647   /* Possibly apply some default attributes to this implicit declaration.  */
2648   decl_attributes (&decl, NULL_TREE, 0);
2649
2650   return decl;
2651 }
2652
2653 void
2654 implicit_decl_warning (id)
2655      tree id;
2656 {
2657   const char *name = IDENTIFIER_POINTER (id);
2658   if (mesg_implicit_function_declaration == 2)
2659     error ("implicit declaration of function `%s'", name);
2660   else if (mesg_implicit_function_declaration == 1)
2661     warning ("implicit declaration of function `%s'", name);
2662 }
2663
2664 /* Return zero if the declaration NEWDECL is valid
2665    when the declaration OLDDECL (assumed to be for the same name)
2666    has already been seen.
2667    Otherwise return 1 if NEWDECL is a redefinition, 2 if it is a redeclaration,
2668    and 3 if it is a conflicting declaration.  */
2669
2670 static int
2671 redeclaration_error_message (newdecl, olddecl)
2672      tree newdecl, olddecl;
2673 {
2674   if (TREE_CODE (newdecl) == TYPE_DECL)
2675     {
2676       if (flag_traditional && TREE_TYPE (newdecl) == TREE_TYPE (olddecl))
2677         return 0;
2678       /* pushdecl creates distinct types for TYPE_DECLs by calling
2679          build_type_copy, so the above comparison generally fails.  We do
2680          another test against the TYPE_MAIN_VARIANT of the olddecl, which
2681          is equivalent to what this code used to do before the build_type_copy
2682          call.  The variant type distinction should not matter for traditional
2683          code, because it doesn't have type qualifiers.  */
2684       if (flag_traditional
2685           && TYPE_MAIN_VARIANT (TREE_TYPE (olddecl)) == TREE_TYPE (newdecl))
2686         return 0;
2687       if (DECL_IN_SYSTEM_HEADER (olddecl) || DECL_IN_SYSTEM_HEADER (newdecl))
2688         return 0;
2689       return 1;
2690     }
2691   else if (TREE_CODE (newdecl) == FUNCTION_DECL)
2692     {
2693       /* Declarations of functions can insist on internal linkage
2694          but they can't be inconsistent with internal linkage,
2695          so there can be no error on that account.
2696          However defining the same name twice is no good.  */
2697       if (DECL_INITIAL (olddecl) != 0 && DECL_INITIAL (newdecl) != 0
2698           /* However, defining once as extern inline and a second
2699              time in another way is ok.  */
2700           && ! (DECL_DECLARED_INLINE_P (olddecl) && DECL_EXTERNAL (olddecl)
2701                && ! (DECL_DECLARED_INLINE_P (newdecl)
2702                      && DECL_EXTERNAL (newdecl))))
2703         return 1;
2704       return 0;
2705     }
2706   else if (DECL_CONTEXT (newdecl) == NULL_TREE)
2707     {
2708       /* Objects declared at top level:  */
2709       /* If at least one is a reference, it's ok.  */
2710       if (DECL_EXTERNAL (newdecl) || DECL_EXTERNAL (olddecl))
2711         return 0;
2712       /* Reject two definitions.  */
2713       if (DECL_INITIAL (olddecl) != 0 && DECL_INITIAL (newdecl) != 0)
2714         return 1;
2715       /* Now we have two tentative defs, or one tentative and one real def.  */
2716       /* Insist that the linkage match.  */
2717       if (TREE_PUBLIC (olddecl) != TREE_PUBLIC (newdecl))
2718         return 3;
2719       return 0;
2720     }
2721   else if (current_binding_level->parm_flag
2722            && TREE_ASM_WRITTEN (olddecl) && !TREE_ASM_WRITTEN (newdecl))
2723     return 0;
2724   else
2725     {
2726       /* Newdecl has block scope.  If olddecl has block scope also, then
2727          reject two definitions, and reject a definition together with an
2728          external reference.  Otherwise, it is OK, because newdecl must
2729          be an extern reference to olddecl.  */
2730       if (!(DECL_EXTERNAL (newdecl) && DECL_EXTERNAL (olddecl))
2731           && DECL_CONTEXT (newdecl) == DECL_CONTEXT (olddecl))
2732         return 2;
2733       return 0;
2734     }
2735 }
2736 \f
2737 /* Get the LABEL_DECL corresponding to identifier ID as a label.
2738    Create one if none exists so far for the current function.
2739    This function is called for both label definitions and label references.  */
2740
2741 tree
2742 lookup_label (id)
2743      tree id;
2744 {
2745   tree decl = IDENTIFIER_LABEL_VALUE (id);
2746
2747   if (current_function_decl == 0)
2748     {
2749       error ("label %s referenced outside of any function",
2750              IDENTIFIER_POINTER (id));
2751       return 0;
2752     }
2753
2754   /* Use a label already defined or ref'd with this name.  */
2755   if (decl != 0)
2756     {
2757       /* But not if it is inherited and wasn't declared to be inheritable.  */
2758       if (DECL_CONTEXT (decl) != current_function_decl
2759           && ! C_DECLARED_LABEL_FLAG (decl))
2760         return shadow_label (id);
2761       return decl;
2762     }
2763
2764   decl = build_decl (LABEL_DECL, id, void_type_node);
2765
2766   /* A label not explicitly declared must be local to where it's ref'd.  */
2767   DECL_CONTEXT (decl) = current_function_decl;
2768
2769   DECL_MODE (decl) = VOIDmode;
2770
2771   /* Say where one reference is to the label,
2772      for the sake of the error if it is not defined.  */
2773   DECL_SOURCE_LINE (decl) = lineno;
2774   DECL_SOURCE_FILE (decl) = input_filename;
2775
2776   IDENTIFIER_LABEL_VALUE (id) = decl;
2777
2778   named_labels = tree_cons (NULL_TREE, decl, named_labels);
2779
2780   return decl;
2781 }
2782
2783 /* Make a label named NAME in the current function,
2784    shadowing silently any that may be inherited from containing functions
2785    or containing scopes.
2786
2787    Note that valid use, if the label being shadowed
2788    comes from another scope in the same function,
2789    requires calling declare_nonlocal_label right away.  */
2790
2791 tree
2792 shadow_label (name)
2793      tree name;
2794 {
2795   tree decl = IDENTIFIER_LABEL_VALUE (name);
2796
2797   if (decl != 0)
2798     {
2799       tree dup;
2800
2801       /* Check to make sure that the label hasn't already been declared
2802          at this label scope */
2803       for (dup = named_labels; dup; dup = TREE_CHAIN (dup))
2804         if (TREE_VALUE (dup) == decl)
2805           {
2806             error ("duplicate label declaration `%s'",
2807                    IDENTIFIER_POINTER (name));
2808             error_with_decl (TREE_VALUE (dup),
2809                              "this is a previous declaration");
2810             /* Just use the previous declaration.  */
2811             return lookup_label (name);
2812           }
2813
2814       shadowed_labels = tree_cons (NULL_TREE, decl, shadowed_labels);
2815       IDENTIFIER_LABEL_VALUE (name) = decl = 0;
2816     }
2817
2818   return lookup_label (name);
2819 }
2820
2821 /* Define a label, specifying the location in the source file.
2822    Return the LABEL_DECL node for the label, if the definition is valid.
2823    Otherwise return 0.  */
2824
2825 tree
2826 define_label (filename, line, name)
2827      const char *filename;
2828      int line;
2829      tree name;
2830 {
2831   tree decl = lookup_label (name);
2832
2833   /* If label with this name is known from an outer context, shadow it.  */
2834   if (decl != 0 && DECL_CONTEXT (decl) != current_function_decl)
2835     {
2836       shadowed_labels = tree_cons (NULL_TREE, decl, shadowed_labels);
2837       IDENTIFIER_LABEL_VALUE (name) = 0;
2838       decl = lookup_label (name);
2839     }
2840
2841   if (warn_traditional && !in_system_header && lookup_name (name))
2842     warning_with_file_and_line (filename, line,
2843                                 "traditional C lacks a separate namespace for labels, identifier `%s' conflicts",
2844                                 IDENTIFIER_POINTER (name));
2845
2846   if (DECL_INITIAL (decl) != 0)
2847     {
2848       error_with_file_and_line (filename, line, "duplicate label `%s'",
2849                                 IDENTIFIER_POINTER (name));
2850       return 0;
2851     }
2852   else
2853     {
2854       /* Mark label as having been defined.  */
2855       DECL_INITIAL (decl) = error_mark_node;
2856       /* Say where in the source.  */
2857       DECL_SOURCE_FILE (decl) = filename;
2858       DECL_SOURCE_LINE (decl) = line;
2859       return decl;
2860     }
2861 }
2862 \f
2863 /* Return the list of declarations of the current level.
2864    Note that this list is in reverse order unless/until
2865    you nreverse it; and when you do nreverse it, you must
2866    store the result back using `storedecls' or you will lose.  */
2867
2868 tree
2869 getdecls ()
2870 {
2871   return current_binding_level->names;
2872 }
2873
2874 /* Return the list of type-tags (for structs, etc) of the current level.  */
2875
2876 tree
2877 gettags ()
2878 {
2879   return current_binding_level->tags;
2880 }
2881
2882 /* Store the list of declarations of the current level.
2883    This is done for the parameter declarations of a function being defined,
2884    after they are modified in the light of any missing parameters.  */
2885
2886 static void
2887 storedecls (decls)
2888      tree decls;
2889 {
2890   current_binding_level->names = decls;
2891 }
2892
2893 /* Similarly, store the list of tags of the current level.  */
2894
2895 static void
2896 storetags (tags)
2897      tree tags;
2898 {
2899   current_binding_level->tags = tags;
2900 }
2901 \f
2902 /* Given NAME, an IDENTIFIER_NODE,
2903    return the structure (or union or enum) definition for that name.
2904    Searches binding levels from BINDING_LEVEL up to the global level.
2905    If THISLEVEL_ONLY is nonzero, searches only the specified context
2906    (but skips any tag-transparent contexts to find one that is
2907    meaningful for tags).
2908    CODE says which kind of type the caller wants;
2909    it is RECORD_TYPE or UNION_TYPE or ENUMERAL_TYPE.
2910    If the wrong kind of type is found, an error is reported.  */
2911
2912 static tree
2913 lookup_tag (code, name, binding_level, thislevel_only)
2914      enum tree_code code;
2915      struct binding_level *binding_level;
2916      tree name;
2917      int thislevel_only;
2918 {
2919   struct binding_level *level;
2920   int thislevel = 1;
2921
2922   for (level = binding_level; level; level = level->level_chain)
2923     {
2924       tree tail;
2925       for (tail = level->tags; tail; tail = TREE_CHAIN (tail))
2926         {
2927           if (TREE_PURPOSE (tail) == name)
2928             {
2929               if (TREE_CODE (TREE_VALUE (tail)) != code)
2930                 {
2931                   /* Definition isn't the kind we were looking for.  */
2932                   pending_invalid_xref = name;
2933                   pending_invalid_xref_file = input_filename;
2934                   pending_invalid_xref_line = lineno;
2935                   /* If in the same binding level as a declaration as a tag
2936                      of a different type, this must not be allowed to
2937                      shadow that tag, so give the error immediately.
2938                      (For example, "struct foo; union foo;" is invalid.)  */
2939                   if (thislevel)
2940                     pending_xref_error ();
2941                 }
2942               return TREE_VALUE (tail);
2943             }
2944         }
2945       if (! level->tag_transparent)
2946         {
2947           if (thislevel_only)
2948             return NULL_TREE;
2949           thislevel = 0;
2950         }
2951     }
2952   return NULL_TREE;
2953 }
2954
2955 /* Print an error message now
2956    for a recent invalid struct, union or enum cross reference.
2957    We don't print them immediately because they are not invalid
2958    when used in the `struct foo;' construct for shadowing.  */
2959
2960 void
2961 pending_xref_error ()
2962 {
2963   if (pending_invalid_xref != 0)
2964     error_with_file_and_line (pending_invalid_xref_file,
2965                               pending_invalid_xref_line,
2966                               "`%s' defined as wrong kind of tag",
2967                               IDENTIFIER_POINTER (pending_invalid_xref));
2968   pending_invalid_xref = 0;
2969 }
2970
2971 /* Given a type, find the tag that was defined for it and return the tag name.
2972    Otherwise return 0.  */
2973
2974 static tree
2975 lookup_tag_reverse (type)
2976      tree type;
2977 {
2978   struct binding_level *level;
2979
2980   for (level = current_binding_level; level; level = level->level_chain)
2981     {
2982       tree tail;
2983       for (tail = level->tags; tail; tail = TREE_CHAIN (tail))
2984         {
2985           if (TREE_VALUE (tail) == type)
2986             return TREE_PURPOSE (tail);
2987         }
2988     }
2989   return NULL_TREE;
2990 }
2991 \f
2992 /* Look up NAME in the current binding level and its superiors
2993    in the namespace of variables, functions and typedefs.
2994    Return a ..._DECL node of some kind representing its definition,
2995    or return 0 if it is undefined.  */
2996
2997 tree
2998 lookup_name (name)
2999      tree name;
3000 {
3001   tree val;
3002
3003   if (current_binding_level != global_binding_level
3004       && IDENTIFIER_LOCAL_VALUE (name))
3005     val = IDENTIFIER_LOCAL_VALUE (name);
3006   else
3007     val = IDENTIFIER_GLOBAL_VALUE (name);
3008   return val;
3009 }
3010
3011 /* Similar to `lookup_name' but look only at current binding level.  */
3012
3013 tree
3014 lookup_name_current_level (name)
3015      tree name;
3016 {
3017   tree t;
3018
3019   if (current_binding_level == global_binding_level)
3020     return IDENTIFIER_GLOBAL_VALUE (name);
3021
3022   if (IDENTIFIER_LOCAL_VALUE (name) == 0)
3023     return 0;
3024
3025   for (t = current_binding_level->names; t; t = TREE_CHAIN (t))
3026     if (DECL_NAME (t) == name)
3027       break;
3028
3029   return t;
3030 }
3031 \f
3032 /* Mark ARG for GC.  */
3033
3034 static void
3035 mark_binding_level (arg)
3036      void *arg;
3037 {
3038   struct binding_level *level = *(struct binding_level **) arg;
3039
3040   for (; level != 0; level = level->level_chain)
3041     {
3042       ggc_mark_tree (level->names);
3043       ggc_mark_tree (level->tags);
3044       ggc_mark_tree (level->shadowed);
3045       ggc_mark_tree (level->blocks);
3046       ggc_mark_tree (level->this_block);
3047       ggc_mark_tree (level->parm_order);
3048     }
3049 }
3050
3051 /* Create the predefined scalar types of C,
3052    and some nodes representing standard constants (0, 1, (void *) 0).
3053    Initialize the global binding level.
3054    Make definitions for built-in primitive functions.  */
3055
3056 void
3057 c_init_decl_processing ()
3058 {
3059   tree endlink;
3060   tree ptr_ftype_void, ptr_ftype_ptr;
3061
3062   /* Adds some ggc roots, and reserved words for c-parse.in.  */
3063   c_parse_init ();
3064
3065   current_function_decl = NULL;
3066   named_labels = NULL;
3067   current_binding_level = NULL_BINDING_LEVEL;
3068   free_binding_level = NULL_BINDING_LEVEL;
3069
3070   /* Make the binding_level structure for global names.  */
3071   pushlevel (0);
3072   global_binding_level = current_binding_level;
3073
3074   build_common_tree_nodes (flag_signed_char);
3075
3076   c_common_nodes_and_builtins ();
3077
3078   boolean_type_node = integer_type_node;
3079   boolean_true_node = integer_one_node;
3080   boolean_false_node = integer_zero_node;
3081
3082   c_bool_type_node = make_unsigned_type (BOOL_TYPE_SIZE);
3083   TREE_SET_CODE (c_bool_type_node, BOOLEAN_TYPE);
3084   TYPE_MAX_VALUE (c_bool_type_node) = build_int_2 (1, 0);
3085   TREE_TYPE (TYPE_MAX_VALUE (c_bool_type_node)) = c_bool_type_node;
3086   TYPE_PRECISION (c_bool_type_node) = 1;
3087   pushdecl (build_decl (TYPE_DECL, get_identifier ("_Bool"),
3088                         c_bool_type_node));
3089   c_bool_false_node = build_int_2 (0, 0);
3090   TREE_TYPE (c_bool_false_node) = c_bool_type_node;
3091   c_bool_true_node = build_int_2 (1, 0);
3092   TREE_TYPE (c_bool_true_node) = c_bool_type_node;
3093
3094   endlink = void_list_node;
3095   ptr_ftype_void = build_function_type (ptr_type_node, endlink);
3096   ptr_ftype_ptr
3097     = build_function_type (ptr_type_node,
3098                            tree_cons (NULL_TREE, ptr_type_node, endlink));
3099
3100   /* Types which are common to the fortran compiler and libf2c.  When
3101      changing these, you also need to be concerned with f/com.h.  */
3102
3103   if (TYPE_PRECISION (float_type_node)
3104       == TYPE_PRECISION (long_integer_type_node))
3105     {
3106       g77_integer_type_node = long_integer_type_node;
3107       g77_uinteger_type_node = long_unsigned_type_node;
3108     }
3109   else if (TYPE_PRECISION (float_type_node)
3110            == TYPE_PRECISION (integer_type_node))
3111     {
3112       g77_integer_type_node = integer_type_node;
3113       g77_uinteger_type_node = unsigned_type_node;
3114     }
3115   else
3116     g77_integer_type_node = g77_uinteger_type_node = NULL_TREE;
3117
3118   if (g77_integer_type_node != NULL_TREE)
3119     {
3120       pushdecl (build_decl (TYPE_DECL, get_identifier ("__g77_integer"),
3121                             g77_integer_type_node));
3122       pushdecl (build_decl (TYPE_DECL, get_identifier ("__g77_uinteger"),
3123                             g77_uinteger_type_node));
3124     }
3125
3126   if (TYPE_PRECISION (float_type_node) * 2
3127       == TYPE_PRECISION (long_integer_type_node))
3128     {
3129       g77_longint_type_node = long_integer_type_node;
3130       g77_ulongint_type_node = long_unsigned_type_node;
3131     }
3132   else if (TYPE_PRECISION (float_type_node) * 2
3133            == TYPE_PRECISION (long_long_integer_type_node))
3134     {
3135       g77_longint_type_node = long_long_integer_type_node;
3136       g77_ulongint_type_node = long_long_unsigned_type_node;
3137     }
3138   else
3139     g77_longint_type_node = g77_ulongint_type_node = NULL_TREE;
3140
3141   if (g77_longint_type_node != NULL_TREE)
3142     {
3143       pushdecl (build_decl (TYPE_DECL, get_identifier ("__g77_longint"),
3144                             g77_longint_type_node));
3145       pushdecl (build_decl (TYPE_DECL, get_identifier ("__g77_ulongint"),
3146                             g77_ulongint_type_node));
3147     }
3148
3149   pedantic_lvalues = pedantic;
3150
3151   make_fname_decl = c_make_fname_decl;
3152   start_fname_decls ();
3153
3154   incomplete_decl_finalize_hook = finish_incomplete_decl;
3155
3156   /* Record our roots.  */
3157
3158   ggc_add_tree_root (c_global_trees, CTI_MAX);
3159   ggc_add_root (&c_stmt_tree, 1, sizeof c_stmt_tree, mark_stmt_tree);
3160   ggc_add_tree_root (&c_scope_stmt_stack, 1);
3161   ggc_add_tree_root (&named_labels, 1);
3162   ggc_add_tree_root (&shadowed_labels, 1);
3163   ggc_add_root (&current_binding_level, 1, sizeof current_binding_level,
3164                 mark_binding_level);
3165   ggc_add_root (&label_level_chain, 1, sizeof label_level_chain,
3166                 mark_binding_level);
3167   ggc_add_tree_root (&static_ctors, 1);
3168   ggc_add_tree_root (&static_dtors, 1);
3169 }
3170
3171 /* Create the VAR_DECL for __FUNCTION__ etc. ID is the name to give the
3172    decl, NAME is the initialization string and TYPE_DEP indicates whether
3173    NAME depended on the type of the function.  As we don't yet implement
3174    delayed emission of static data, we mark the decl as emitted
3175    so it is not placed in the output.  Anything using it must therefore pull
3176    out the STRING_CST initializer directly.  This does mean that these names
3177    are string merging candidates, which is wrong for C99's __func__.  FIXME.  */
3178
3179 static tree
3180 c_make_fname_decl (id, type_dep)
3181      tree id;
3182      int type_dep;
3183 {
3184   const char *name = fname_as_string (type_dep);
3185   tree decl, type, init;
3186   size_t length = strlen (name);
3187
3188   type =  build_array_type
3189           (build_qualified_type (char_type_node, TYPE_QUAL_CONST),
3190            build_index_type (size_int (length)));
3191
3192   decl = build_decl (VAR_DECL, id, type);
3193   /* We don't push the decl, so have to set its context here.  */
3194   DECL_CONTEXT (decl) = current_function_decl;
3195   
3196   TREE_STATIC (decl) = 1;
3197   TREE_READONLY (decl) = 1;
3198   DECL_ARTIFICIAL (decl) = 1;
3199   
3200   init = build_string (length + 1, name);
3201   TREE_TYPE (init) = type;
3202   DECL_INITIAL (decl) = init;
3203
3204   TREE_USED (decl) = 1;
3205   
3206   finish_decl (decl, init, NULL_TREE);
3207
3208   return decl;
3209 }
3210
3211 /* Return a definition for a builtin function named NAME and whose data type
3212    is TYPE.  TYPE should be a function type with argument types.
3213    FUNCTION_CODE tells later passes how to compile calls to this function.
3214    See tree.h for its possible values.
3215
3216    If LIBRARY_NAME is nonzero, use that for DECL_ASSEMBLER_NAME,
3217    the name to be called if we can't opencode the function.  */
3218
3219 tree
3220 builtin_function (name, type, function_code, class, library_name)
3221      const char *name;
3222      tree type;
3223      int function_code;
3224      enum built_in_class class;
3225      const char *library_name;
3226 {
3227   tree decl = build_decl (FUNCTION_DECL, get_identifier (name), type);
3228   DECL_EXTERNAL (decl) = 1;
3229   TREE_PUBLIC (decl) = 1;
3230   /* If -traditional, permit redefining a builtin function any way you like.
3231      (Though really, if the program redefines these functions,
3232      it probably won't work right unless compiled with -fno-builtin.)  */
3233   if (flag_traditional && name[0] != '_')
3234     DECL_BUILT_IN_NONANSI (decl) = 1;
3235   if (library_name)
3236     SET_DECL_ASSEMBLER_NAME (decl, get_identifier (library_name));
3237   make_decl_rtl (decl, NULL);
3238   pushdecl (decl);
3239   DECL_BUILT_IN_CLASS (decl) = class;
3240   DECL_FUNCTION_CODE (decl) = function_code;
3241
3242   /* The return builtins leave the current function.  */
3243   if (function_code == BUILT_IN_RETURN || function_code == BUILT_IN_EH_RETURN)
3244     TREE_THIS_VOLATILE (decl) = 1;
3245
3246   /* Warn if a function in the namespace for users
3247      is used without an occasion to consider it declared.  */
3248   if (name[0] != '_' || name[1] != '_')
3249     C_DECL_ANTICIPATED (decl) = 1;
3250
3251   /* Possibly apply some default attributes to this built-in function.  */
3252   decl_attributes (&decl, NULL_TREE, 0);
3253
3254   return decl;
3255 }
3256
3257 /* Apply default attributes to a function, if a system function with default
3258    attributes.  */
3259
3260 void
3261 insert_default_attributes (decl)
3262      tree decl;
3263 {
3264   if (!TREE_PUBLIC (decl))
3265     return;
3266   c_common_insert_default_attributes (decl);
3267 }
3268 \f
3269 /* Called when a declaration is seen that contains no names to declare.
3270    If its type is a reference to a structure, union or enum inherited
3271    from a containing scope, shadow that tag name for the current scope
3272    with a forward reference.
3273    If its type defines a new named structure or union
3274    or defines an enum, it is valid but we need not do anything here.
3275    Otherwise, it is an error.  */
3276
3277 void
3278 shadow_tag (declspecs)
3279      tree declspecs;
3280 {
3281   shadow_tag_warned (declspecs, 0);
3282 }
3283
3284 void
3285 shadow_tag_warned (declspecs, warned)
3286      tree declspecs;
3287      int warned;
3288      /* 1 => we have done a pedwarn.  2 => we have done a warning, but
3289         no pedwarn.  */
3290 {
3291   int found_tag = 0;
3292   tree link;
3293   tree specs, attrs;
3294
3295   pending_invalid_xref = 0;
3296
3297   /* Remove the attributes from declspecs, since they will confuse the
3298      following code.  */
3299   split_specs_attrs (declspecs, &specs, &attrs);
3300
3301   for (link = specs; link; link = TREE_CHAIN (link))
3302     {
3303       tree value = TREE_VALUE (link);
3304       enum tree_code code = TREE_CODE (value);
3305
3306       if (code == RECORD_TYPE || code == UNION_TYPE || code == ENUMERAL_TYPE)
3307         /* Used to test also that TYPE_SIZE (value) != 0.
3308            That caused warning for `struct foo;' at top level in the file.  */
3309         {
3310           tree name = lookup_tag_reverse (value);
3311           tree t;
3312
3313           found_tag++;
3314
3315           if (name == 0)
3316             {
3317               if (warned != 1 && code != ENUMERAL_TYPE)
3318                 /* Empty unnamed enum OK */
3319                 {
3320                   pedwarn ("unnamed struct/union that defines no instances");
3321                   warned = 1;
3322                 }
3323             }
3324           else
3325             {
3326               t = lookup_tag (code, name, current_binding_level, 1);
3327
3328               if (t == 0)
3329                 {
3330                   t = make_node (code);
3331                   pushtag (name, t);
3332                 }
3333             }
3334         }
3335       else
3336         {
3337           if (!warned && ! in_system_header)
3338             {
3339               warning ("useless keyword or type name in empty declaration");
3340               warned = 2;
3341             }
3342         }
3343     }
3344
3345   if (found_tag > 1)
3346     error ("two types specified in one empty declaration");
3347
3348   if (warned != 1)
3349     {
3350       if (found_tag == 0)
3351         pedwarn ("empty declaration");
3352     }
3353 }
3354 \f
3355 /* Construct an array declarator.  EXPR is the expression inside [], or
3356    NULL_TREE.  QUALS are the type qualifiers inside the [] (to be applied
3357    to the pointer to which a parameter array is converted).  STATIC_P is
3358    non-zero if "static" is inside the [], zero otherwise.  VLA_UNSPEC_P
3359    is non-zero is the array is [*], a VLA of unspecified length which is
3360    nevertheless a complete type (not currently implemented by GCC),
3361    zero otherwise.  The declarator is constructed as an ARRAY_REF
3362    (to be decoded by grokdeclarator), whose operand 0 is what's on the
3363    left of the [] (filled by in set_array_declarator_type) and operand 1
3364    is the expression inside; whose TREE_TYPE is the type qualifiers and
3365    which has TREE_STATIC set if "static" is used.  */
3366
3367 tree
3368 build_array_declarator (expr, quals, static_p, vla_unspec_p)
3369      tree expr;
3370      tree quals;
3371      int static_p;
3372      int vla_unspec_p;
3373 {
3374   tree decl;
3375   decl = build_nt (ARRAY_REF, NULL_TREE, expr);
3376   TREE_TYPE (decl) = quals;
3377   TREE_STATIC (decl) = (static_p ? 1 : 0);
3378   if (pedantic && !flag_isoc99)
3379     {
3380       if (static_p || quals != NULL_TREE)
3381         pedwarn ("ISO C89 does not support `static' or type qualifiers in parameter array declarators");
3382       if (vla_unspec_p)
3383         pedwarn ("ISO C89 does not support `[*]' array declarators");
3384     }
3385   if (vla_unspec_p)
3386     warning ("GCC does not yet properly implement `[*]' array declarators");
3387   return decl;
3388 }
3389
3390 /* Set the type of an array declarator.  DECL is the declarator, as
3391    constructed by build_array_declarator; TYPE is what appears on the left
3392    of the [] and goes in operand 0.  ABSTRACT_P is non-zero if it is an
3393    abstract declarator, zero otherwise; this is used to reject static and
3394    type qualifiers in abstract declarators, where they are not in the
3395    C99 grammar.  */
3396
3397 tree
3398 set_array_declarator_type (decl, type, abstract_p)
3399      tree decl;
3400      tree type;
3401      int abstract_p;
3402 {
3403   TREE_OPERAND (decl, 0) = type;
3404   if (abstract_p && (TREE_TYPE (decl) != NULL_TREE || TREE_STATIC (decl)))
3405     error ("static or type qualifiers in abstract declarator");
3406   return decl;
3407 }
3408 \f
3409 /* Decode a "typename", such as "int **", returning a ..._TYPE node.  */
3410
3411 tree
3412 groktypename (typename)
3413      tree typename;
3414 {
3415   tree specs, attrs;
3416
3417   if (TREE_CODE (typename) != TREE_LIST)
3418     return typename;
3419
3420   split_specs_attrs (TREE_PURPOSE (typename), &specs, &attrs);
3421
3422   typename = grokdeclarator (TREE_VALUE (typename), specs, TYPENAME, 0);
3423
3424   /* Apply attributes.  */
3425   decl_attributes (&typename, attrs, 0);
3426
3427   return typename;
3428 }
3429
3430 /* Return a PARM_DECL node for a given pair of specs and declarator.  */
3431
3432 tree
3433 groktypename_in_parm_context (typename)
3434      tree typename;
3435 {
3436   if (TREE_CODE (typename) != TREE_LIST)
3437     return typename;
3438   return grokdeclarator (TREE_VALUE (typename),
3439                          TREE_PURPOSE (typename),
3440                          PARM, 0);
3441 }
3442
3443 /* Decode a declarator in an ordinary declaration or data definition.
3444    This is called as soon as the type information and variable name
3445    have been parsed, before parsing the initializer if any.
3446    Here we create the ..._DECL node, fill in its type,
3447    and put it on the list of decls for the current context.
3448    The ..._DECL node is returned as the value.
3449
3450    Exception: for arrays where the length is not specified,
3451    the type is left null, to be filled in by `finish_decl'.
3452
3453    Function definitions do not come here; they go to start_function
3454    instead.  However, external and forward declarations of functions
3455    do go through here.  Structure field declarations are done by
3456    grokfield and not through here.  */
3457
3458 tree
3459 start_decl (declarator, declspecs, initialized, attributes)
3460      tree declarator, declspecs;
3461      int initialized;
3462      tree attributes;
3463 {
3464   tree decl;
3465   tree tem;
3466   
3467   /* An object declared as __attribute__((deprecated)) suppresses
3468      warnings of uses of other deprecated items.  */
3469   if (lookup_attribute ("deprecated", attributes))
3470     deprecated_state = DEPRECATED_SUPPRESS;
3471
3472   decl = grokdeclarator (declarator, declspecs,
3473                          NORMAL, initialized);
3474   
3475   deprecated_state = DEPRECATED_NORMAL;
3476
3477   if (warn_main > 0 && TREE_CODE (decl) != FUNCTION_DECL
3478       && MAIN_NAME_P (DECL_NAME (decl)))
3479     warning_with_decl (decl, "`%s' is usually a function");
3480
3481   if (initialized)
3482     /* Is it valid for this decl to have an initializer at all?
3483        If not, set INITIALIZED to zero, which will indirectly
3484        tell `finish_decl' to ignore the initializer once it is parsed.  */
3485     switch (TREE_CODE (decl))
3486       {
3487       case TYPE_DECL:
3488         /* typedef foo = bar  means give foo the same type as bar.
3489            We haven't parsed bar yet, so `finish_decl' will fix that up.
3490            Any other case of an initialization in a TYPE_DECL is an error.  */
3491         if (pedantic || list_length (declspecs) > 1)
3492           {
3493             error ("typedef `%s' is initialized",
3494                    IDENTIFIER_POINTER (DECL_NAME (decl)));
3495             initialized = 0;
3496           }
3497         break;
3498
3499       case FUNCTION_DECL:
3500         error ("function `%s' is initialized like a variable",
3501                IDENTIFIER_POINTER (DECL_NAME (decl)));
3502         initialized = 0;
3503         break;
3504
3505       case PARM_DECL:
3506         /* DECL_INITIAL in a PARM_DECL is really DECL_ARG_TYPE.  */
3507         error ("parameter `%s' is initialized",
3508                IDENTIFIER_POINTER (DECL_NAME (decl)));
3509         initialized = 0;
3510         break;
3511
3512       default:
3513         /* Don't allow initializations for incomplete types
3514            except for arrays which might be completed by the initialization.  */
3515
3516         /* This can happen if the array size is an undefined macro.  We already
3517            gave a warning, so we don't need another one.  */
3518         if (TREE_TYPE (decl) == error_mark_node)
3519           initialized = 0;
3520         else if (COMPLETE_TYPE_P (TREE_TYPE (decl)))
3521           {
3522             /* A complete type is ok if size is fixed.  */
3523
3524             if (TREE_CODE (TYPE_SIZE (TREE_TYPE (decl))) != INTEGER_CST
3525                 || C_DECL_VARIABLE_SIZE (decl))
3526               {
3527                 error ("variable-sized object may not be initialized");
3528                 initialized = 0;
3529               }
3530           }
3531         else if (TREE_CODE (TREE_TYPE (decl)) != ARRAY_TYPE)
3532           {
3533             error ("variable `%s' has initializer but incomplete type",
3534                    IDENTIFIER_POINTER (DECL_NAME (decl)));
3535             initialized = 0;
3536           }
3537         else if (!COMPLETE_TYPE_P (TREE_TYPE (TREE_TYPE (decl))))
3538           {
3539             error ("elements of array `%s' have incomplete type",
3540                    IDENTIFIER_POINTER (DECL_NAME (decl)));
3541             initialized = 0;
3542           }
3543       }
3544
3545   if (initialized)
3546     {
3547 #if 0
3548       /* Seems redundant with grokdeclarator.  */
3549       if (current_binding_level != global_binding_level
3550           && DECL_EXTERNAL (decl)
3551           && TREE_CODE (decl) != FUNCTION_DECL)
3552         warning ("declaration of `%s' has `extern' and is initialized",
3553                  IDENTIFIER_POINTER (DECL_NAME (decl)));
3554 #endif
3555       DECL_EXTERNAL (decl) = 0;
3556       if (current_binding_level == global_binding_level)
3557         TREE_STATIC (decl) = 1;
3558
3559       /* Tell `pushdecl' this is an initialized decl
3560          even though we don't yet have the initializer expression.
3561          Also tell `finish_decl' it may store the real initializer.  */
3562       DECL_INITIAL (decl) = error_mark_node;
3563     }
3564
3565   /* If this is a function declaration, write a record describing it to the
3566      prototypes file (if requested).  */
3567
3568   if (TREE_CODE (decl) == FUNCTION_DECL)
3569     gen_aux_info_record (decl, 0, 0, TYPE_ARG_TYPES (TREE_TYPE (decl)) != 0);
3570
3571   /* ANSI specifies that a tentative definition which is not merged with
3572      a non-tentative definition behaves exactly like a definition with an
3573      initializer equal to zero.  (Section 3.7.2)
3574      -fno-common gives strict ANSI behavior.  Usually you don't want it.
3575      This matters only for variables with external linkage.  */
3576   if (! flag_no_common || ! TREE_PUBLIC (decl))
3577     DECL_COMMON (decl) = 1;
3578
3579   /* Set attributes here so if duplicate decl, will have proper attributes.  */
3580   decl_attributes (&decl, attributes, 0);
3581
3582   /* If #pragma weak was used, mark the decl weak now.  */
3583   if (current_binding_level == global_binding_level)
3584     maybe_apply_pragma_weak (decl);
3585
3586   if (TREE_CODE (decl) == FUNCTION_DECL
3587       && DECL_DECLARED_INLINE_P (decl)
3588       && DECL_UNINLINABLE (decl)
3589       && lookup_attribute ("noinline", DECL_ATTRIBUTES (decl)))
3590     warning_with_decl (decl,
3591                        "inline function `%s' given attribute noinline");
3592
3593   /* Add this decl to the current binding level.
3594      TEM may equal DECL or it may be a previous decl of the same name.  */
3595   tem = pushdecl (decl);
3596
3597   /* For a local variable, define the RTL now.  */
3598   if (current_binding_level != global_binding_level
3599       /* But not if this is a duplicate decl
3600          and we preserved the rtl from the previous one
3601          (which may or may not happen).  */
3602       && !DECL_RTL_SET_P (tem)
3603       && !DECL_CONTEXT (tem))
3604     {
3605       if (TREE_TYPE (tem) != error_mark_node
3606           && COMPLETE_TYPE_P (TREE_TYPE (tem)))
3607         expand_decl (tem);
3608       else if (TREE_CODE (TREE_TYPE (tem)) == ARRAY_TYPE
3609                && DECL_INITIAL (tem) != 0)
3610         expand_decl (tem);
3611     }
3612
3613   return tem;
3614 }
3615
3616 /* Finish processing of a declaration;
3617    install its initial value.
3618    If the length of an array type is not known before,
3619    it must be determined now, from the initial value, or it is an error.  */
3620
3621 void
3622 finish_decl (decl, init, asmspec_tree)
3623      tree decl, init;
3624      tree asmspec_tree;
3625 {
3626   tree type = TREE_TYPE (decl);
3627   int was_incomplete = (DECL_SIZE (decl) == 0);
3628   const char *asmspec = 0;
3629
3630   /* If a name was specified, get the string.  */
3631   if (current_binding_level == global_binding_level)
3632     asmspec_tree = maybe_apply_renaming_pragma (decl, asmspec_tree);
3633   if (asmspec_tree)
3634     asmspec = TREE_STRING_POINTER (asmspec_tree);
3635
3636   /* If `start_decl' didn't like having an initialization, ignore it now.  */
3637   if (init != 0 && DECL_INITIAL (decl) == 0)
3638     init = 0;
3639   
3640   /* Don't crash if parm is initialized.  */
3641   if (TREE_CODE (decl) == PARM_DECL)
3642     init = 0;
3643
3644   if (init)
3645     {
3646       if (TREE_CODE (decl) != TYPE_DECL)
3647         store_init_value (decl, init);
3648       else
3649         {
3650           /* typedef foo = bar; store the type of bar as the type of foo.  */
3651           TREE_TYPE (decl) = TREE_TYPE (init);
3652           DECL_INITIAL (decl) = init = 0;
3653         }
3654     }
3655
3656   /* Deduce size of array from initialization, if not already known */
3657   if (TREE_CODE (type) == ARRAY_TYPE
3658       && TYPE_DOMAIN (type) == 0
3659       && TREE_CODE (decl) != TYPE_DECL)
3660     {
3661       int do_default
3662         = (TREE_STATIC (decl)
3663            /* Even if pedantic, an external linkage array
3664               may have incomplete type at first.  */
3665            ? pedantic && !TREE_PUBLIC (decl)
3666            : !DECL_EXTERNAL (decl));
3667       int failure
3668         = complete_array_type (type, DECL_INITIAL (decl), do_default);
3669
3670       /* Get the completed type made by complete_array_type.  */
3671       type = TREE_TYPE (decl);
3672
3673       if (failure == 1)
3674         error_with_decl (decl, "initializer fails to determine size of `%s'");
3675
3676       else if (failure == 2)
3677         {
3678           if (do_default)
3679             error_with_decl (decl, "array size missing in `%s'");
3680           /* If a `static' var's size isn't known,
3681              make it extern as well as static, so it does not get
3682              allocated.
3683              If it is not `static', then do not mark extern;
3684              finish_incomplete_decl will give it a default size
3685              and it will get allocated.  */
3686           else if (!pedantic && TREE_STATIC (decl) && ! TREE_PUBLIC (decl))
3687             DECL_EXTERNAL (decl) = 1;
3688         }
3689
3690       /* TYPE_MAX_VALUE is always one less than the number of elements
3691          in the array, because we start counting at zero.  Therefore,
3692          warn only if the value is less than zero.  */
3693       else if (pedantic && TYPE_DOMAIN (type) != 0
3694               && tree_int_cst_sgn (TYPE_MAX_VALUE (TYPE_DOMAIN (type))) < 0)
3695         error_with_decl (decl, "zero or negative size array `%s'");
3696
3697       layout_decl (decl, 0);
3698     }
3699
3700   if (TREE_CODE (decl) == VAR_DECL)
3701     {
3702       if (DECL_SIZE (decl) == 0 && TREE_TYPE (decl) != error_mark_node
3703           && COMPLETE_TYPE_P (TREE_TYPE (decl)))
3704         layout_decl (decl, 0);
3705
3706       if (DECL_SIZE (decl) == 0
3707           /* Don't give an error if we already gave one earlier.  */
3708           && TREE_TYPE (decl) != error_mark_node
3709           && (TREE_STATIC (decl)
3710               ?
3711                 /* A static variable with an incomplete type
3712                    is an error if it is initialized.
3713                    Also if it is not file scope.
3714                    Otherwise, let it through, but if it is not `extern'
3715                    then it may cause an error message later.  */
3716                 (DECL_INITIAL (decl) != 0
3717                  || DECL_CONTEXT (decl) != 0)
3718               :
3719                 /* An automatic variable with an incomplete type
3720                    is an error.  */
3721                 !DECL_EXTERNAL (decl)))
3722         {
3723           error_with_decl (decl, "storage size of `%s' isn't known");
3724           TREE_TYPE (decl) = error_mark_node;
3725         }
3726
3727       if ((DECL_EXTERNAL (decl) || TREE_STATIC (decl))
3728           && DECL_SIZE (decl) != 0)
3729         {
3730           if (TREE_CODE (DECL_SIZE (decl)) == INTEGER_CST)
3731             constant_expression_warning (DECL_SIZE (decl));
3732           else
3733             error_with_decl (decl, "storage size of `%s' isn't constant");
3734         }
3735
3736       if (TREE_USED (type))
3737         TREE_USED (decl) = 1;
3738     }
3739
3740   /* If this is a function and an assembler name is specified, it isn't
3741      builtin any more.  Also reset DECL_RTL so we can give it its new
3742      name.  */
3743   if (TREE_CODE (decl) == FUNCTION_DECL && asmspec)
3744     {
3745       DECL_BUILT_IN_CLASS (decl) = NOT_BUILT_IN;
3746       SET_DECL_RTL (decl, NULL_RTX);
3747       SET_DECL_ASSEMBLER_NAME (decl, get_identifier (asmspec));
3748     }
3749
3750   /* Output the assembler code and/or RTL code for variables and functions,
3751      unless the type is an undefined structure or union.
3752      If not, it will get done when the type is completed.  */
3753
3754   if (TREE_CODE (decl) == VAR_DECL || TREE_CODE (decl) == FUNCTION_DECL)
3755     {
3756       /* This is a no-op in c-lang.c or something real in objc-actions.c.  */
3757       maybe_objc_check_decl (decl);
3758
3759       if (!DECL_CONTEXT (decl))
3760         {
3761           if (DECL_INITIAL (decl) == NULL_TREE
3762               || DECL_INITIAL (decl) == error_mark_node)
3763             /* Don't output anything
3764                when a tentative file-scope definition is seen.
3765                But at end of compilation, do output code for them.  */
3766             DECL_DEFER_OUTPUT (decl) = 1;
3767           rest_of_decl_compilation (decl, asmspec,
3768                                     (DECL_CONTEXT (decl) == 0
3769                                      || TREE_ASM_WRITTEN (decl)), 0);
3770         }
3771       else
3772         {
3773           /* This is a local variable.  If there is an ASMSPEC, the
3774              user has requested that we handle it specially.  */
3775           if (asmspec)
3776             {
3777               /* In conjunction with an ASMSPEC, the `register'
3778                  keyword indicates that we should place the variable
3779                  in a particular register.  */
3780               if (DECL_REGISTER (decl))
3781                 DECL_C_HARD_REGISTER (decl) = 1;
3782
3783               /* If this is not a static variable, issue a warning.
3784                  It doesn't make any sense to give an ASMSPEC for an
3785                  ordinary, non-register local variable.  Historically,
3786                  GCC has accepted -- but ignored -- the ASMSPEC in
3787                  this case.  */
3788               if (TREE_CODE (decl) == VAR_DECL 
3789                   && !DECL_REGISTER (decl)
3790                   && !TREE_STATIC (decl))
3791                 warning_with_decl (decl,
3792                                    "ignoring asm-specifier for non-static local variable `%s'");
3793               else
3794                 SET_DECL_ASSEMBLER_NAME (decl, get_identifier (asmspec));
3795             }
3796
3797           if (TREE_CODE (decl) != FUNCTION_DECL)
3798             add_decl_stmt (decl);
3799         }
3800
3801       if (DECL_CONTEXT (decl) != 0)
3802         {
3803           /* Recompute the RTL of a local array now
3804              if it used to be an incomplete type.  */
3805           if (was_incomplete
3806               && ! TREE_STATIC (decl) && ! DECL_EXTERNAL (decl))
3807             {
3808               /* If we used it already as memory, it must stay in memory.  */
3809               TREE_ADDRESSABLE (decl) = TREE_USED (decl);
3810               /* If it's still incomplete now, no init will save it.  */
3811               if (DECL_SIZE (decl) == 0)
3812                 DECL_INITIAL (decl) = 0;
3813             }
3814         }
3815     }
3816
3817   if (TREE_CODE (decl) == TYPE_DECL)
3818     {
3819       /* This is a no-op in c-lang.c or something real in objc-actions.c.  */
3820       maybe_objc_check_decl (decl);
3821       rest_of_decl_compilation (decl, NULL, DECL_CONTEXT (decl) == 0, 0);
3822     }
3823
3824   /* At the end of a declaration, throw away any variable type sizes
3825      of types defined inside that declaration.  There is no use
3826      computing them in the following function definition.  */
3827   if (current_binding_level == global_binding_level)
3828     get_pending_sizes ();
3829 }
3830
3831 /* If DECL has a cleanup, build and return that cleanup here.
3832    This is a callback called by expand_expr.  */
3833
3834 tree
3835 maybe_build_cleanup (decl)
3836      tree decl ATTRIBUTE_UNUSED;
3837 {
3838   /* There are no cleanups in C.  */
3839   return NULL_TREE;
3840 }
3841
3842 /* Given a parsed parameter declaration,
3843    decode it into a PARM_DECL and push that on the current binding level.
3844    Also, for the sake of forward parm decls,
3845    record the given order of parms in `parm_order'.  */
3846
3847 void
3848 push_parm_decl (parm)
3849      tree parm;
3850 {
3851   tree decl;
3852   int old_immediate_size_expand = immediate_size_expand;
3853   /* Don't try computing parm sizes now -- wait till fn is called.  */
3854   immediate_size_expand = 0;
3855
3856   decl = grokdeclarator (TREE_VALUE (TREE_PURPOSE (parm)),
3857                          TREE_PURPOSE (TREE_PURPOSE (parm)), PARM, 0);
3858   decl_attributes (&decl, TREE_VALUE (parm), 0);
3859
3860 #if 0
3861   if (DECL_NAME (decl))
3862     {
3863       tree olddecl;
3864       olddecl = lookup_name (DECL_NAME (decl));
3865       if (pedantic && olddecl != 0 && TREE_CODE (olddecl) == TYPE_DECL)
3866         pedwarn_with_decl (decl,
3867                            "ISO C forbids parameter `%s' shadowing typedef");
3868     }
3869 #endif
3870
3871   decl = pushdecl (decl);
3872
3873   immediate_size_expand = old_immediate_size_expand;
3874
3875   current_binding_level->parm_order
3876     = tree_cons (NULL_TREE, decl, current_binding_level->parm_order);
3877
3878   /* Add this decl to the current binding level.  */
3879   finish_decl (decl, NULL_TREE, NULL_TREE);
3880 }
3881
3882 /* Clear the given order of parms in `parm_order'.
3883    Used at start of parm list,
3884    and also at semicolon terminating forward decls.  */
3885
3886 void
3887 clear_parm_order ()
3888 {
3889   current_binding_level->parm_order = NULL_TREE;
3890 }
3891 \f
3892 /* Build a COMPOUND_LITERAL_EXPR.  TYPE is the type given in the compound
3893    literal, which may be an incomplete array type completed by the
3894    initializer; INIT is a CONSTRUCTOR that initializes the compound
3895    literal.  */
3896
3897 tree
3898 build_compound_literal (type, init)
3899      tree type;
3900      tree init;
3901 {
3902   /* We do not use start_decl here because we have a type, not a declarator;
3903      and do not use finish_decl because the decl should be stored inside
3904      the COMPOUND_LITERAL_EXPR rather than added elsewhere as a DECL_STMT.  */
3905   tree decl = build_decl (VAR_DECL, NULL_TREE, type);
3906   tree complit;
3907   tree stmt;
3908   DECL_EXTERNAL (decl) = 0;
3909   TREE_PUBLIC (decl) = 0;
3910   TREE_STATIC (decl) = (current_binding_level == global_binding_level);
3911   DECL_CONTEXT (decl) = current_function_decl;
3912   TREE_USED (decl) = 1;
3913   TREE_TYPE (decl) = type;
3914   store_init_value (decl, init);
3915
3916   if (TREE_CODE (type) == ARRAY_TYPE && !COMPLETE_TYPE_P (type))
3917     {
3918       int failure = complete_array_type (type, DECL_INITIAL (decl), 1);
3919       if (failure)
3920         abort ();
3921     }
3922
3923   type = TREE_TYPE (decl);
3924   if (type == error_mark_node || !COMPLETE_TYPE_P (type))
3925     return error_mark_node;
3926
3927   stmt = build_stmt (DECL_STMT, decl);
3928   complit = build1 (COMPOUND_LITERAL_EXPR, TREE_TYPE (decl), stmt);
3929   TREE_SIDE_EFFECTS (complit) = 1;
3930
3931   layout_decl (decl, 0);
3932
3933   if (TREE_STATIC (decl))
3934     {
3935       /* This decl needs a name for the assembler output.  We also need
3936          a unique suffix to be added to the name, for which DECL_CONTEXT
3937          must be set.  */
3938       DECL_NAME (decl) = get_identifier ("__compound_literal");
3939       DECL_CONTEXT (decl) = complit;
3940       rest_of_decl_compilation (decl, NULL, 1, 0);
3941       DECL_CONTEXT (decl) = NULL_TREE;
3942     }
3943
3944   return complit;
3945 }
3946 \f
3947 /* Make TYPE a complete type based on INITIAL_VALUE.
3948    Return 0 if successful, 1 if INITIAL_VALUE can't be deciphered,
3949    2 if there was no information (in which case assume 1 if DO_DEFAULT).  */
3950
3951 int
3952 complete_array_type (type, initial_value, do_default)
3953      tree type;
3954      tree initial_value;
3955      int do_default;
3956 {
3957   tree maxindex = NULL_TREE;
3958   int value = 0;
3959
3960   if (initial_value)
3961     {
3962       /* Note MAXINDEX  is really the maximum index,
3963          one less than the size.  */
3964       if (TREE_CODE (initial_value) == STRING_CST)
3965         {
3966           int eltsize
3967             = int_size_in_bytes (TREE_TYPE (TREE_TYPE (initial_value)));
3968           maxindex = build_int_2 ((TREE_STRING_LENGTH (initial_value)
3969                                    / eltsize) - 1, 0);
3970         }
3971       else if (TREE_CODE (initial_value) == CONSTRUCTOR)
3972         {
3973           tree elts = CONSTRUCTOR_ELTS (initial_value);
3974           maxindex = build_int_2 (-1, -1);
3975           for (; elts; elts = TREE_CHAIN (elts))
3976             {
3977               if (TREE_PURPOSE (elts))
3978                 maxindex = TREE_PURPOSE (elts);
3979               else
3980                 maxindex = fold (build (PLUS_EXPR, integer_type_node,
3981                                         maxindex, integer_one_node));
3982             }
3983           maxindex = copy_node (maxindex);
3984         }
3985       else
3986         {
3987           /* Make an error message unless that happened already.  */
3988           if (initial_value != error_mark_node)
3989             value = 1;
3990
3991           /* Prevent further error messages.  */
3992           maxindex = build_int_2 (0, 0);
3993         }
3994     }
3995
3996   if (!maxindex)
3997     {
3998       if (do_default)
3999         maxindex = build_int_2 (0, 0);
4000       value = 2;
4001     }
4002
4003   if (maxindex)
4004     {
4005       TYPE_DOMAIN (type) = build_index_type (maxindex);
4006       if (!TREE_TYPE (maxindex))
4007         TREE_TYPE (maxindex) = TYPE_DOMAIN (type);
4008     }
4009
4010   /* Lay out the type now that we can get the real answer.  */
4011
4012   layout_type (type);
4013
4014   return value;
4015 }
4016 \f
4017 /* Given declspecs and a declarator,
4018    determine the name and type of the object declared
4019    and construct a ..._DECL node for it.
4020    (In one case we can return a ..._TYPE node instead.
4021     For invalid input we sometimes return 0.)
4022
4023    DECLSPECS is a chain of tree_list nodes whose value fields
4024     are the storage classes and type specifiers.
4025
4026    DECL_CONTEXT says which syntactic context this declaration is in:
4027      NORMAL for most contexts.  Make a VAR_DECL or FUNCTION_DECL or TYPE_DECL.
4028      FUNCDEF for a function definition.  Like NORMAL but a few different
4029       error messages in each case.  Return value may be zero meaning
4030       this definition is too screwy to try to parse.
4031      PARM for a parameter declaration (either within a function prototype
4032       or before a function body).  Make a PARM_DECL, or return void_type_node.
4033      TYPENAME if for a typename (in a cast or sizeof).
4034       Don't make a DECL node; just return the ..._TYPE node.
4035      FIELD for a struct or union field; make a FIELD_DECL.
4036      BITFIELD for a field with specified width.
4037    INITIALIZED is 1 if the decl has an initializer.
4038
4039    In the TYPENAME case, DECLARATOR is really an absolute declarator.
4040    It may also be so in the PARM case, for a prototype where the
4041    argument type is specified but not the name.
4042
4043    This function is where the complicated C meanings of `static'
4044    and `extern' are interpreted.  */
4045
4046 static tree
4047 grokdeclarator (declarator, declspecs, decl_context, initialized)
4048      tree declspecs;
4049      tree declarator;
4050      enum decl_context decl_context;
4051      int initialized;
4052 {
4053   int specbits = 0;
4054   tree spec;
4055   tree type = NULL_TREE;
4056   int longlong = 0;
4057   int constp;
4058   int restrictp;
4059   int volatilep;
4060   int type_quals = TYPE_UNQUALIFIED;
4061   int inlinep;
4062   int explicit_int = 0;
4063   int explicit_char = 0;
4064   int defaulted_int = 0;
4065   tree typedef_decl = 0;
4066   const char *name;
4067   tree typedef_type = 0;
4068   int funcdef_flag = 0;
4069   enum tree_code innermost_code = ERROR_MARK;
4070   int bitfield = 0;
4071   int size_varies = 0;
4072   tree decl_attr = NULL_TREE;
4073   tree array_ptr_quals = NULL_TREE;
4074   int array_parm_static = 0;
4075   tree returned_attrs = NULL_TREE;
4076
4077   if (decl_context == BITFIELD)
4078     bitfield = 1, decl_context = FIELD;
4079
4080   if (decl_context == FUNCDEF)
4081     funcdef_flag = 1, decl_context = NORMAL;
4082
4083   /* Look inside a declarator for the name being declared
4084      and get it as a string, for an error message.  */
4085   {
4086     tree decl = declarator;
4087     name = 0;
4088
4089     while (decl)
4090       switch (TREE_CODE (decl))
4091         {
4092         case ARRAY_REF:
4093         case INDIRECT_REF:
4094         case CALL_EXPR:
4095           innermost_code = TREE_CODE (decl);
4096           decl = TREE_OPERAND (decl, 0);
4097           break;
4098
4099         case TREE_LIST:
4100           decl = TREE_VALUE (decl);
4101           break;
4102
4103         case IDENTIFIER_NODE:
4104           name = IDENTIFIER_POINTER (decl);
4105           decl = 0;
4106           break;
4107
4108         default:
4109           abort ();
4110         }
4111     if (name == 0)
4112       name = "type name";
4113   }
4114
4115   /* A function definition's declarator must have the form of
4116      a function declarator.  */
4117
4118   if (funcdef_flag && innermost_code != CALL_EXPR)
4119     return 0;
4120
4121   /* Anything declared one level down from the top level
4122      must be one of the parameters of a function
4123      (because the body is at least two levels down).  */
4124
4125   /* If this looks like a function definition, make it one,
4126      even if it occurs where parms are expected.
4127      Then store_parm_decls will reject it and not use it as a parm.  */
4128   if (decl_context == NORMAL && !funcdef_flag
4129       && current_binding_level->parm_flag)
4130     decl_context = PARM;
4131
4132   /* Look through the decl specs and record which ones appear.
4133      Some typespecs are defined as built-in typenames.
4134      Others, the ones that are modifiers of other types,
4135      are represented by bits in SPECBITS: set the bits for
4136      the modifiers that appear.  Storage class keywords are also in SPECBITS.
4137
4138      If there is a typedef name or a type, store the type in TYPE.
4139      This includes builtin typedefs such as `int'.
4140
4141      Set EXPLICIT_INT or EXPLICIT_CHAR if the type is `int' or `char'
4142      and did not come from a user typedef.
4143
4144      Set LONGLONG if `long' is mentioned twice.  */
4145
4146   for (spec = declspecs; spec; spec = TREE_CHAIN (spec))
4147     {
4148       tree id = TREE_VALUE (spec);
4149
4150       /* If the entire declaration is itself tagged as deprecated then
4151          suppress reports of deprecated items.  */
4152       if (id && TREE_DEPRECATED (id))
4153         {
4154           if (deprecated_state != DEPRECATED_SUPPRESS)
4155             warn_deprecated_use (id);
4156         }
4157
4158       if (id == ridpointers[(int) RID_INT])
4159         explicit_int = 1;
4160       if (id == ridpointers[(int) RID_CHAR])
4161         explicit_char = 1;
4162
4163       if (TREE_CODE (id) == IDENTIFIER_NODE && C_IS_RESERVED_WORD (id))
4164         {
4165           enum rid i = C_RID_CODE (id);
4166           if ((int) i <= (int) RID_LAST_MODIFIER)
4167             {
4168               if (i == RID_LONG && (specbits & (1 << (int) i)))
4169                 {
4170                   if (longlong)
4171                     error ("`long long long' is too long for GCC");
4172                   else
4173                     {
4174                       if (pedantic && !flag_isoc99 && ! in_system_header
4175                           && warn_long_long)
4176                         pedwarn ("ISO C89 does not support `long long'");
4177                       longlong = 1;
4178                     }
4179                 }
4180               else if (specbits & (1 << (int) i))
4181                 pedwarn ("duplicate `%s'", IDENTIFIER_POINTER (id));
4182               specbits |= 1 << (int) i;
4183               goto found;
4184             }
4185         }
4186       if (type)
4187         error ("two or more data types in declaration of `%s'", name);
4188       /* Actual typedefs come to us as TYPE_DECL nodes.  */
4189       else if (TREE_CODE (id) == TYPE_DECL)
4190         {
4191           if (TREE_TYPE (id) == error_mark_node)
4192             ; /* Allow the type to default to int to avoid cascading errors.  */
4193           else
4194             {
4195               type = TREE_TYPE (id);
4196               decl_attr = DECL_ATTRIBUTES (id);
4197               typedef_decl = id;
4198             }
4199         }
4200       /* Built-in types come as identifiers.  */
4201       else if (TREE_CODE (id) == IDENTIFIER_NODE)
4202         {
4203           tree t = lookup_name (id);
4204           if (TREE_TYPE (t) == error_mark_node)
4205             ;
4206           else if (!t || TREE_CODE (t) != TYPE_DECL)
4207             error ("`%s' fails to be a typedef or built in type",
4208                    IDENTIFIER_POINTER (id));
4209           else
4210             {
4211               type = TREE_TYPE (t);
4212               typedef_decl = t;
4213             }
4214         }
4215       else if (TREE_CODE (id) != ERROR_MARK)
4216         type = id;
4217
4218     found:
4219       ;
4220     }
4221
4222   typedef_type = type;
4223   if (type)
4224     size_varies = C_TYPE_VARIABLE_SIZE (type);
4225
4226   /* No type at all: default to `int', and set DEFAULTED_INT
4227      because it was not a user-defined typedef.  */
4228
4229   if (type == 0)
4230     {
4231       if ((! (specbits & ((1 << (int) RID_LONG) | (1 << (int) RID_SHORT)
4232                           | (1 << (int) RID_SIGNED)
4233                           | (1 << (int) RID_UNSIGNED)
4234                           | (1 << (int) RID_COMPLEX))))
4235           /* Don't warn about typedef foo = bar.  */
4236           && ! (specbits & (1 << (int) RID_TYPEDEF) && initialized)
4237           && ! in_system_header)
4238         {
4239           /* Issue a warning if this is an ISO C 99 program or if -Wreturn-type
4240              and this is a function, or if -Wimplicit; prefer the former
4241              warning since it is more explicit.  */
4242           if ((warn_implicit_int || warn_return_type || flag_isoc99)
4243               && funcdef_flag)
4244             warn_about_return_type = 1;
4245           else if (warn_implicit_int || flag_isoc99)
4246             pedwarn_c99 ("type defaults to `int' in declaration of `%s'",
4247                          name);
4248         }
4249
4250       defaulted_int = 1;
4251       type = integer_type_node;
4252     }
4253
4254   /* Now process the modifiers that were specified
4255      and check for invalid combinations.  */
4256
4257   /* Long double is a special combination.  */
4258
4259   if ((specbits & 1 << (int) RID_LONG) && ! longlong
4260       && TYPE_MAIN_VARIANT (type) == double_type_node)
4261     {
4262       specbits &= ~(1 << (int) RID_LONG);
4263       type = long_double_type_node;
4264     }
4265
4266   /* Check all other uses of type modifiers.  */
4267
4268   if (specbits & ((1 << (int) RID_LONG) | (1 << (int) RID_SHORT)
4269                   | (1 << (int) RID_UNSIGNED) | (1 << (int) RID_SIGNED)))
4270     {
4271       int ok = 0;
4272
4273       if ((specbits & 1 << (int) RID_LONG)
4274           && (specbits & 1 << (int) RID_SHORT))
4275         error ("both long and short specified for `%s'", name);
4276       else if (((specbits & 1 << (int) RID_LONG)
4277                 || (specbits & 1 << (int) RID_SHORT))
4278                && explicit_char)
4279         error ("long or short specified with char for `%s'", name);
4280       else if (((specbits & 1 << (int) RID_LONG)
4281                 || (specbits & 1 << (int) RID_SHORT))
4282                && TREE_CODE (type) == REAL_TYPE)
4283         {
4284           static int already = 0;
4285
4286           error ("long or short specified with floating type for `%s'", name);
4287           if (! already && ! pedantic)
4288             {
4289               error ("the only valid combination is `long double'");
4290               already = 1;
4291             }
4292         }
4293       else if ((specbits & 1 << (int) RID_SIGNED)
4294                && (specbits & 1 << (int) RID_UNSIGNED))
4295         error ("both signed and unsigned specified for `%s'", name);
4296       else if (TREE_CODE (type) != INTEGER_TYPE)
4297         error ("long, short, signed or unsigned invalid for `%s'", name);
4298       else
4299         {
4300           ok = 1;
4301           if (!explicit_int && !defaulted_int && !explicit_char && pedantic)
4302             {
4303               pedwarn ("long, short, signed or unsigned used invalidly for `%s'",
4304                        name);
4305               if (flag_pedantic_errors)
4306                 ok = 0;
4307             }
4308         }
4309
4310       /* Discard the type modifiers if they are invalid.  */
4311       if (! ok)
4312         {
4313           specbits &= ~((1 << (int) RID_LONG) | (1 << (int) RID_SHORT)
4314                         | (1 << (int) RID_UNSIGNED) | (1 << (int) RID_SIGNED));
4315           longlong = 0;
4316         }
4317     }
4318
4319   if ((specbits & (1 << (int) RID_COMPLEX))
4320       && TREE_CODE (type) != INTEGER_TYPE && TREE_CODE (type) != REAL_TYPE)
4321     {
4322       error ("complex invalid for `%s'", name);
4323       specbits &= ~(1 << (int) RID_COMPLEX);
4324     }
4325
4326   /* Decide whether an integer type is signed or not.
4327      Optionally treat bitfields as signed by default.  */
4328   if (specbits & 1 << (int) RID_UNSIGNED
4329       /* Traditionally, all bitfields are unsigned.  */
4330       || (bitfield && flag_traditional
4331           && (! explicit_flag_signed_bitfields || !flag_signed_bitfields))
4332       || (bitfield && ! flag_signed_bitfields
4333           && (explicit_int || defaulted_int || explicit_char
4334               /* A typedef for plain `int' without `signed'
4335                  can be controlled just like plain `int'.  */
4336               || ! (typedef_decl != 0
4337                     && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl)))
4338           && TREE_CODE (type) != ENUMERAL_TYPE
4339           && !(specbits & 1 << (int) RID_SIGNED)))
4340     {
4341       if (longlong)
4342         type = long_long_unsigned_type_node;
4343       else if (specbits & 1 << (int) RID_LONG)
4344         type = long_unsigned_type_node;
4345       else if (specbits & 1 << (int) RID_SHORT)
4346         type = short_unsigned_type_node;
4347       else if (type == char_type_node)
4348         type = unsigned_char_type_node;
4349       else if (typedef_decl)
4350         type = unsigned_type (type);
4351       else
4352         type = unsigned_type_node;
4353     }
4354   else if ((specbits & 1 << (int) RID_SIGNED)
4355            && type == char_type_node)
4356     type = signed_char_type_node;
4357   else if (longlong)
4358     type = long_long_integer_type_node;
4359   else if (specbits & 1 << (int) RID_LONG)
4360     type = long_integer_type_node;
4361   else if (specbits & 1 << (int) RID_SHORT)
4362     type = short_integer_type_node;
4363
4364   if (specbits & 1 << (int) RID_COMPLEX)
4365     {
4366       if (pedantic && !flag_isoc99)
4367         pedwarn ("ISO C89 does not support complex types");
4368       /* If we just have "complex", it is equivalent to
4369          "complex double", but if any modifiers at all are specified it is
4370          the complex form of TYPE.  E.g, "complex short" is
4371          "complex short int".  */
4372
4373       if (defaulted_int && ! longlong
4374           && ! (specbits & ((1 << (int) RID_LONG) | (1 << (int) RID_SHORT)
4375                             | (1 << (int) RID_SIGNED)
4376                             | (1 << (int) RID_UNSIGNED))))
4377         {
4378           if (pedantic)
4379             pedwarn ("ISO C does not support plain `complex' meaning `double complex'");
4380           type = complex_double_type_node;
4381         }
4382       else if (type == integer_type_node)
4383         {
4384           if (pedantic)
4385             pedwarn ("ISO C does not support complex integer types");
4386           type = complex_integer_type_node;
4387         }
4388       else if (type == float_type_node)
4389         type = complex_float_type_node;
4390       else if (type == double_type_node)
4391         type = complex_double_type_node;
4392       else if (type == long_double_type_node)
4393         type = complex_long_double_type_node;
4394       else
4395         {
4396           if (pedantic)
4397             pedwarn ("ISO C does not support complex integer types");
4398           type = build_complex_type (type);
4399         }
4400     }
4401
4402   /* Figure out the type qualifiers for the declaration.  There are
4403      two ways a declaration can become qualified.  One is something
4404      like `const int i' where the `const' is explicit.  Another is
4405      something like `typedef const int CI; CI i' where the type of the
4406      declaration contains the `const'.  */
4407   constp = !! (specbits & 1 << (int) RID_CONST) + TYPE_READONLY (type);
4408   restrictp = !! (specbits & 1 << (int) RID_RESTRICT) + TYPE_RESTRICT (type);
4409   volatilep = !! (specbits & 1 << (int) RID_VOLATILE) + TYPE_VOLATILE (type);
4410   inlinep = !! (specbits & (1 << (int) RID_INLINE));
4411   if (constp > 1 && ! flag_isoc99)
4412     pedwarn ("duplicate `const'");
4413   if (restrictp > 1 && ! flag_isoc99)
4414     pedwarn ("duplicate `restrict'");
4415   if (volatilep > 1 && ! flag_isoc99)
4416     pedwarn ("duplicate `volatile'");
4417   if (! flag_gen_aux_info && (TYPE_QUALS (type)))
4418     type = TYPE_MAIN_VARIANT (type);
4419   type_quals = ((constp ? TYPE_QUAL_CONST : 0)
4420                 | (restrictp ? TYPE_QUAL_RESTRICT : 0)
4421                 | (volatilep ? TYPE_QUAL_VOLATILE : 0));
4422
4423   /* Warn if two storage classes are given. Default to `auto'.  */
4424
4425   {
4426     int nclasses = 0;
4427
4428     if (specbits & 1 << (int) RID_AUTO) nclasses++;
4429     if (specbits & 1 << (int) RID_STATIC) nclasses++;
4430     if (specbits & 1 << (int) RID_EXTERN) nclasses++;
4431     if (specbits & 1 << (int) RID_REGISTER) nclasses++;
4432     if (specbits & 1 << (int) RID_TYPEDEF) nclasses++;
4433
4434     /* Warn about storage classes that are invalid for certain
4435        kinds of declarations (parameters, typenames, etc.).  */
4436
4437     if (nclasses > 1)
4438       error ("multiple storage classes in declaration of `%s'", name);
4439     else if (funcdef_flag
4440              && (specbits
4441                  & ((1 << (int) RID_REGISTER)
4442                     | (1 << (int) RID_AUTO)
4443                     | (1 << (int) RID_TYPEDEF))))
4444       {
4445         if (specbits & 1 << (int) RID_AUTO
4446             && (pedantic || current_binding_level == global_binding_level))
4447           pedwarn ("function definition declared `auto'");
4448         if (specbits & 1 << (int) RID_REGISTER)
4449           error ("function definition declared `register'");
4450         if (specbits & 1 << (int) RID_TYPEDEF)
4451           error ("function definition declared `typedef'");
4452         specbits &= ~((1 << (int) RID_TYPEDEF) | (1 << (int) RID_REGISTER)
4453                       | (1 << (int) RID_AUTO));
4454       }
4455     else if (decl_context != NORMAL && nclasses > 0)
4456       {
4457         if (decl_context == PARM && specbits & 1 << (int) RID_REGISTER)
4458           ;
4459         else
4460           {
4461             switch (decl_context)
4462               {
4463               case FIELD:
4464                 error ("storage class specified for structure field `%s'",
4465                        name);
4466                 break;
4467               case PARM:
4468                 error ("storage class specified for parameter `%s'", name);
4469                 break;
4470               default:
4471                 error ("storage class specified for typename");
4472                 break;
4473               }
4474             specbits &= ~((1 << (int) RID_TYPEDEF) | (1 << (int) RID_REGISTER)
4475                           | (1 << (int) RID_AUTO) | (1 << (int) RID_STATIC)
4476                           | (1 << (int) RID_EXTERN));
4477           }
4478       }
4479     else if (specbits & 1 << (int) RID_EXTERN && initialized && ! funcdef_flag)
4480       {
4481         /* `extern' with initialization is invalid if not at top level.  */
4482         if (current_binding_level == global_binding_level)
4483           warning ("`%s' initialized and declared `extern'", name);
4484         else
4485           error ("`%s' has both `extern' and initializer", name);
4486       }
4487     else if (specbits & 1 << (int) RID_EXTERN && funcdef_flag
4488              && current_binding_level != global_binding_level)
4489       error ("nested function `%s' declared `extern'", name);
4490     else if (current_binding_level == global_binding_level
4491              && specbits & (1 << (int) RID_AUTO))
4492       error ("top-level declaration of `%s' specifies `auto'", name);
4493   }
4494
4495   /* Now figure out the structure of the declarator proper.
4496      Descend through it, creating more complex types, until we reach
4497      the declared identifier (or NULL_TREE, in an absolute declarator).  */
4498
4499   while (declarator && TREE_CODE (declarator) != IDENTIFIER_NODE)
4500     {
4501       if (type == error_mark_node)
4502         {
4503           declarator = TREE_OPERAND (declarator, 0);
4504           continue;
4505         }
4506
4507       /* Each level of DECLARATOR is either an ARRAY_REF (for ...[..]),
4508          an INDIRECT_REF (for *...),
4509          a CALL_EXPR (for ...(...)),
4510          a TREE_LIST (for nested attributes),
4511          an identifier (for the name being declared)
4512          or a null pointer (for the place in an absolute declarator
4513          where the name was omitted).
4514          For the last two cases, we have just exited the loop.
4515
4516          At this point, TYPE is the type of elements of an array,
4517          or for a function to return, or for a pointer to point to.
4518          After this sequence of ifs, TYPE is the type of the
4519          array or function or pointer, and DECLARATOR has had its
4520          outermost layer removed.  */
4521
4522       if (array_ptr_quals != NULL_TREE || array_parm_static)
4523         {
4524           /* Only the innermost declarator (making a parameter be of
4525              array type which is converted to pointer type)
4526              may have static or type qualifiers.  */
4527           error ("static or type qualifiers in non-parameter array declarator");
4528           array_ptr_quals = NULL_TREE;
4529           array_parm_static = 0;
4530         }
4531
4532       if (TREE_CODE (declarator) == TREE_LIST)
4533         {
4534           /* We encode a declarator with embedded attributes using
4535              a TREE_LIST.  */
4536           tree attrs = TREE_PURPOSE (declarator);
4537           tree inner_decl;
4538           int attr_flags = 0;
4539           declarator = TREE_VALUE (declarator);
4540           inner_decl = declarator;
4541           while (inner_decl != NULL_TREE
4542                  && TREE_CODE (inner_decl) == TREE_LIST)
4543             inner_decl = TREE_VALUE (inner_decl);
4544           if (inner_decl == NULL_TREE
4545               || TREE_CODE (inner_decl) == IDENTIFIER_NODE)
4546             attr_flags |= (int) ATTR_FLAG_DECL_NEXT;
4547           else if (TREE_CODE (inner_decl) == CALL_EXPR)
4548             attr_flags |= (int) ATTR_FLAG_FUNCTION_NEXT;
4549           else if (TREE_CODE (inner_decl) == ARRAY_REF)
4550             attr_flags |= (int) ATTR_FLAG_ARRAY_NEXT;
4551           returned_attrs = decl_attributes (&type,
4552                                             chainon (returned_attrs, attrs),
4553                                             attr_flags);
4554         }
4555       else if (TREE_CODE (declarator) == ARRAY_REF)
4556         {
4557           tree itype = NULL_TREE;
4558           tree size = TREE_OPERAND (declarator, 1);
4559           /* The index is a signed object `sizetype' bits wide.  */
4560           tree index_type = signed_type (sizetype);
4561
4562           array_ptr_quals = TREE_TYPE (declarator);
4563           array_parm_static = TREE_STATIC (declarator);
4564
4565           declarator = TREE_OPERAND (declarator, 0);
4566
4567           /* Check for some types that there cannot be arrays of.  */
4568
4569           if (VOID_TYPE_P (type))
4570             {
4571               error ("declaration of `%s' as array of voids", name);
4572               type = error_mark_node;
4573             }
4574
4575           if (TREE_CODE (type) == FUNCTION_TYPE)
4576             {
4577               error ("declaration of `%s' as array of functions", name);
4578               type = error_mark_node;
4579             }
4580
4581           if (size == error_mark_node)
4582             type = error_mark_node;
4583
4584           if (type == error_mark_node)
4585             continue;
4586
4587           /* If size was specified, set ITYPE to a range-type for that size.
4588              Otherwise, ITYPE remains null.  finish_decl may figure it out
4589              from an initial value.  */
4590
4591           if (size)
4592             {
4593               /* Strip NON_LVALUE_EXPRs since we aren't using as an lvalue.  */
4594               STRIP_TYPE_NOPS (size);
4595
4596               if (! INTEGRAL_TYPE_P (TREE_TYPE (size)))
4597                 {
4598                   error ("size of array `%s' has non-integer type", name);
4599                   size = integer_one_node;
4600                 }
4601
4602               if (pedantic && integer_zerop (size))
4603                 pedwarn ("ISO C forbids zero-size array `%s'", name);
4604
4605               if (TREE_CODE (size) == INTEGER_CST)
4606                 {
4607                   constant_expression_warning (size);
4608                   if (tree_int_cst_sgn (size) < 0)
4609                     {
4610                       error ("size of array `%s' is negative", name);
4611                       size = integer_one_node;
4612                     }
4613                 }
4614               else
4615                 {
4616                   /* Make sure the array size remains visibly nonconstant
4617                      even if it is (eg) a const variable with known value.  */
4618                   size_varies = 1;
4619
4620                   if (pedantic)
4621                     {
4622                       if (TREE_CONSTANT (size))
4623                         pedwarn ("ISO C89 forbids array `%s' whose size can't be evaluated",
4624                                  name);
4625                       else
4626                         pedwarn ("ISO C89 forbids variable-size array `%s'",
4627                                  name);
4628                     }
4629                 }
4630
4631               if (integer_zerop (size))
4632                 {
4633                   /* A zero-length array cannot be represented with an
4634                      unsigned index type, which is what we'll get with
4635                      build_index_type.  Create an open-ended range instead.  */
4636                   itype = build_range_type (sizetype, size, NULL_TREE);
4637                 }
4638               else
4639                 {
4640                   /* Compute the maximum valid index, that is, size - 1.
4641                      Do the calculation in index_type, so that if it is
4642                      a variable the computations will be done in the
4643                      proper mode.  */
4644                   itype = fold (build (MINUS_EXPR, index_type,
4645                                        convert (index_type, size),
4646                                        convert (index_type, size_one_node)));
4647
4648                   /* If that overflowed, the array is too big.
4649                      ??? While a size of INT_MAX+1 technically shouldn't
4650                      cause an overflow (because we subtract 1), the overflow
4651                      is recorded during the conversion to index_type, before
4652                      the subtraction.  Handling this case seems like an
4653                      unnecessary complication.  */
4654                   if (TREE_OVERFLOW (itype))
4655                     {
4656                       error ("size of array `%s' is too large", name);
4657                       type = error_mark_node;
4658                       continue;
4659                     }
4660
4661                   if (size_varies)
4662                     itype = variable_size (itype);
4663                   itype = build_index_type (itype);
4664                 }
4665             }
4666           else if (decl_context == FIELD)
4667             {
4668               if (pedantic && !flag_isoc99 && !in_system_header)
4669                 pedwarn ("ISO C89 does not support flexible array members");
4670
4671               /* ISO C99 Flexible array members are effectively identical
4672                  to GCC's zero-length array extension.  */
4673               itype = build_range_type (sizetype, size_zero_node, NULL_TREE);
4674             }
4675
4676           /* If pedantic, complain about arrays of incomplete types.  */
4677
4678           if (pedantic && !COMPLETE_TYPE_P (type))
4679             pedwarn ("array type has incomplete element type");
4680
4681 #if 0
4682           /* We shouldn't have a function type here at all!
4683              Functions aren't allowed as array elements.  */
4684           if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
4685               && (constp || volatilep))
4686             pedwarn ("ISO C forbids const or volatile function types");
4687 #endif
4688
4689           /* Build the array type itself, then merge any constancy or
4690              volatility into the target type.  We must do it in this order
4691              to ensure that the TYPE_MAIN_VARIANT field of the array type
4692              is set correctly.  */
4693
4694           type = build_array_type (type, itype);
4695           if (type_quals)
4696             type = c_build_qualified_type (type, type_quals);
4697
4698           if (size_varies)
4699             C_TYPE_VARIABLE_SIZE (type) = 1;
4700
4701           /* The GCC extension for zero-length arrays differs from
4702              ISO flexible array members in that sizeof yields zero.  */
4703           if (size && integer_zerop (size))
4704             {
4705               layout_type (type);
4706               TYPE_SIZE (type) = bitsize_zero_node;
4707               TYPE_SIZE_UNIT (type) = size_zero_node;
4708             }
4709           if (decl_context != PARM
4710               && (array_ptr_quals != NULL_TREE || array_parm_static))
4711             {
4712               error ("static or type qualifiers in non-parameter array declarator");
4713               array_ptr_quals = NULL_TREE;
4714               array_parm_static = 0;
4715             }
4716         }
4717       else if (TREE_CODE (declarator) == CALL_EXPR)
4718         {
4719           tree arg_types;
4720
4721           /* Declaring a function type.
4722              Make sure we have a valid type for the function to return.  */
4723           if (type == error_mark_node)
4724             continue;
4725
4726           size_varies = 0;
4727
4728           /* Warn about some types functions can't return.  */
4729
4730           if (TREE_CODE (type) == FUNCTION_TYPE)
4731             {
4732               error ("`%s' declared as function returning a function", name);
4733               type = integer_type_node;
4734             }
4735           if (TREE_CODE (type) == ARRAY_TYPE)
4736             {
4737               error ("`%s' declared as function returning an array", name);
4738               type = integer_type_node;
4739             }
4740
4741 #ifndef TRADITIONAL_RETURN_FLOAT
4742           /* Traditionally, declaring return type float means double.  */
4743
4744           if (flag_traditional && TYPE_MAIN_VARIANT (type) == float_type_node)
4745             type = double_type_node;
4746 #endif /* TRADITIONAL_RETURN_FLOAT */
4747
4748           /* Construct the function type and go to the next
4749              inner layer of declarator.  */
4750
4751           arg_types = grokparms (TREE_OPERAND (declarator, 1),
4752                                  funcdef_flag
4753                                  /* Say it's a definition
4754                                     only for the CALL_EXPR
4755                                     closest to the identifier.  */
4756                                  && TREE_CODE (TREE_OPERAND (declarator, 0)) == IDENTIFIER_NODE);
4757           /* Type qualifiers before the return type of the function
4758              qualify the return type, not the function type.  */
4759           if (type_quals)
4760             {
4761               /* Type qualifiers on a function return type are normally
4762                  permitted by the standard but have no effect, so give a
4763                  warning at -W.  Qualifiers on a void return type have
4764                  meaning as a GNU extension, and are banned on function
4765                  definitions in ISO C.  FIXME: strictly we shouldn't
4766                  pedwarn for qualified void return types except on function
4767                  definitions, but not doing so could lead to the undesirable
4768                  state of a "volatile void" function return type not being
4769                  warned about, and a use of the function being compiled
4770                  with GNU semantics, with no diagnostics under -pedantic.  */
4771               if (VOID_TYPE_P (type) && pedantic && !in_system_header)
4772                 pedwarn ("ISO C forbids qualified void function return type");
4773               else if (extra_warnings
4774                        && !(VOID_TYPE_P (type)
4775                             && type_quals == TYPE_QUAL_VOLATILE))
4776                 warning ("type qualifiers ignored on function return type");
4777
4778               type = c_build_qualified_type (type, type_quals);
4779             }
4780           type_quals = TYPE_UNQUALIFIED;
4781
4782           type = build_function_type (type, arg_types);
4783           declarator = TREE_OPERAND (declarator, 0);
4784
4785           /* Set the TYPE_CONTEXTs for each tagged type which is local to
4786              the formal parameter list of this FUNCTION_TYPE to point to
4787              the FUNCTION_TYPE node itself.  */
4788
4789           {
4790             tree link;
4791
4792             for (link = last_function_parm_tags;
4793                  link;
4794                  link = TREE_CHAIN (link))
4795               TYPE_CONTEXT (TREE_VALUE (link)) = type;
4796           }
4797         }
4798       else if (TREE_CODE (declarator) == INDIRECT_REF)
4799         {
4800           /* Merge any constancy or volatility into the target type
4801              for the pointer.  */
4802
4803           if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
4804               && type_quals)
4805             pedwarn ("ISO C forbids qualified function types");
4806           if (type_quals)
4807             type = c_build_qualified_type (type, type_quals);
4808           type_quals = TYPE_UNQUALIFIED;
4809           size_varies = 0;
4810
4811           type = build_pointer_type (type);
4812
4813           /* Process a list of type modifier keywords
4814              (such as const or volatile) that were given inside the `*'.  */
4815
4816           if (TREE_TYPE (declarator))
4817             {
4818               tree typemodlist;
4819               int erred = 0;
4820
4821               constp = 0;
4822               volatilep = 0;
4823               restrictp = 0;
4824               for (typemodlist = TREE_TYPE (declarator); typemodlist;
4825                    typemodlist = TREE_CHAIN (typemodlist))
4826                 {
4827                   tree qualifier = TREE_VALUE (typemodlist);
4828
4829                   if (C_IS_RESERVED_WORD (qualifier))
4830                     {
4831                       if (C_RID_CODE (qualifier) == RID_CONST)
4832                         constp++;
4833                       else if (C_RID_CODE (qualifier) == RID_VOLATILE)
4834                         volatilep++;
4835                       else if (C_RID_CODE (qualifier) == RID_RESTRICT)
4836                         restrictp++;
4837                       else
4838                         erred++;
4839                     }
4840                   else
4841                     erred++;
4842                 }
4843
4844               if (erred)
4845                 error ("invalid type modifier within pointer declarator");
4846               if (constp > 1 && ! flag_isoc99)
4847                 pedwarn ("duplicate `const'");
4848               if (volatilep > 1 && ! flag_isoc99)
4849                 pedwarn ("duplicate `volatile'");
4850               if (restrictp > 1 && ! flag_isoc99)
4851                 pedwarn ("duplicate `restrict'");
4852
4853               type_quals = ((constp ? TYPE_QUAL_CONST : 0)
4854                             | (restrictp ? TYPE_QUAL_RESTRICT : 0)
4855                             | (volatilep ? TYPE_QUAL_VOLATILE : 0));
4856             }
4857
4858           declarator = TREE_OPERAND (declarator, 0);
4859         }
4860       else
4861         abort ();
4862
4863     }
4864
4865   /* Now TYPE has the actual type.  */
4866
4867   /* Did array size calculations overflow?  */
4868
4869   if (TREE_CODE (type) == ARRAY_TYPE
4870       && COMPLETE_TYPE_P (type)
4871       && TREE_OVERFLOW (TYPE_SIZE (type)))
4872     {
4873       error ("size of array `%s' is too large", name);
4874       /* If we proceed with the array type as it is, we'll eventually
4875          crash in tree_low_cst().  */
4876       type = error_mark_node;
4877     }
4878
4879   /* If this is declaring a typedef name, return a TYPE_DECL.  */
4880
4881   if (specbits & (1 << (int) RID_TYPEDEF))
4882     {
4883       tree decl;
4884       /* Note that the grammar rejects storage classes
4885          in typenames, fields or parameters */
4886       if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
4887           && type_quals)
4888         pedwarn ("ISO C forbids qualified function types");
4889       if (type_quals)
4890         type = c_build_qualified_type (type, type_quals);
4891       decl = build_decl (TYPE_DECL, declarator, type);
4892       if ((specbits & (1 << (int) RID_SIGNED))
4893           || (typedef_decl && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl)))
4894         C_TYPEDEF_EXPLICITLY_SIGNED (decl) = 1;
4895       decl_attributes (&decl, returned_attrs, 0);
4896       return decl;
4897     }
4898
4899   /* Detect the case of an array type of unspecified size
4900      which came, as such, direct from a typedef name.
4901      We must copy the type, so that each identifier gets
4902      a distinct type, so that each identifier's size can be
4903      controlled separately by its own initializer.  */
4904
4905   if (type != 0 && typedef_type != 0
4906       && TREE_CODE (type) == ARRAY_TYPE && TYPE_DOMAIN (type) == 0
4907       && TYPE_MAIN_VARIANT (type) == TYPE_MAIN_VARIANT (typedef_type))
4908     {
4909       type = build_array_type (TREE_TYPE (type), 0);
4910       if (size_varies)
4911         C_TYPE_VARIABLE_SIZE (type) = 1;
4912     }
4913
4914   /* If this is a type name (such as, in a cast or sizeof),
4915      compute the type and return it now.  */
4916
4917   if (decl_context == TYPENAME)
4918     {
4919       /* Note that the grammar rejects storage classes
4920          in typenames, fields or parameters */
4921       if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
4922           && type_quals)
4923         pedwarn ("ISO C forbids const or volatile function types");
4924       if (type_quals)
4925         type = c_build_qualified_type (type, type_quals);
4926       decl_attributes (&type, returned_attrs, 0);
4927       return type;
4928     }
4929
4930   /* Aside from typedefs and type names (handle above),
4931      `void' at top level (not within pointer)
4932      is allowed only in public variables.
4933      We don't complain about parms either, but that is because
4934      a better error message can be made later.  */
4935
4936   if (VOID_TYPE_P (type) && decl_context != PARM
4937       && ! ((decl_context != FIELD && TREE_CODE (type) != FUNCTION_TYPE)
4938             && ((specbits & (1 << (int) RID_EXTERN))
4939                 || (current_binding_level == global_binding_level
4940                     && !(specbits
4941                          & ((1 << (int) RID_STATIC) | (1 << (int) RID_REGISTER)))))))
4942     {
4943       error ("variable or field `%s' declared void", name);
4944       type = integer_type_node;
4945     }
4946
4947   /* Now create the decl, which may be a VAR_DECL, a PARM_DECL
4948      or a FUNCTION_DECL, depending on DECL_CONTEXT and TYPE.  */
4949
4950   {
4951     tree decl;
4952
4953     if (decl_context == PARM)
4954       {
4955         tree type_as_written;
4956         tree promoted_type;
4957
4958         /* A parameter declared as an array of T is really a pointer to T.
4959            One declared as a function is really a pointer to a function.  */
4960
4961         if (TREE_CODE (type) == ARRAY_TYPE)
4962           {
4963             /* Transfer const-ness of array into that of type pointed to.  */
4964             type = TREE_TYPE (type);
4965             if (type_quals)
4966               type = c_build_qualified_type (type, type_quals);
4967             type = build_pointer_type (type);
4968             type_quals = TYPE_UNQUALIFIED;
4969             if (array_ptr_quals)
4970               {
4971                 tree new_ptr_quals, new_ptr_attrs;
4972                 int erred = 0;
4973                 split_specs_attrs (array_ptr_quals, &new_ptr_quals, &new_ptr_attrs);
4974                 /* We don't yet implement attributes in this context.  */
4975                 if (new_ptr_attrs != NULL_TREE)
4976                   warning ("attributes in parameter array declarator ignored");
4977
4978                 constp = 0;
4979                 volatilep = 0;
4980                 restrictp = 0;
4981                 for (; new_ptr_quals; new_ptr_quals = TREE_CHAIN (new_ptr_quals))
4982                   {
4983                     tree qualifier = TREE_VALUE (new_ptr_quals);
4984
4985                     if (C_IS_RESERVED_WORD (qualifier))
4986                       {
4987                         if (C_RID_CODE (qualifier) == RID_CONST)
4988                           constp++;
4989                         else if (C_RID_CODE (qualifier) == RID_VOLATILE)
4990                           volatilep++;
4991                         else if (C_RID_CODE (qualifier) == RID_RESTRICT)
4992                           restrictp++;
4993                         else
4994                           erred++;
4995                       }
4996                     else
4997                       erred++;
4998                   }
4999
5000                 if (erred)
5001                   error ("invalid type modifier within array declarator");
5002
5003                 type_quals = ((constp ? TYPE_QUAL_CONST : 0)
5004                               | (restrictp ? TYPE_QUAL_RESTRICT : 0)
5005                               | (volatilep ? TYPE_QUAL_VOLATILE : 0));
5006               }
5007             size_varies = 0;
5008           }
5009         else if (TREE_CODE (type) == FUNCTION_TYPE)
5010           {
5011             if (pedantic && type_quals)
5012               pedwarn ("ISO C forbids qualified function types");
5013             if (type_quals)
5014               type = c_build_qualified_type (type, type_quals);
5015             type = build_pointer_type (type);
5016             type_quals = TYPE_UNQUALIFIED;
5017           }
5018         else if (type_quals)
5019           type = c_build_qualified_type (type, type_quals);
5020           
5021         type_as_written = type;
5022
5023         decl = build_decl (PARM_DECL, declarator, type);
5024         if (size_varies)
5025           C_DECL_VARIABLE_SIZE (decl) = 1;
5026
5027         /* Compute the type actually passed in the parmlist,
5028            for the case where there is no prototype.
5029            (For example, shorts and chars are passed as ints.)
5030            When there is a prototype, this is overridden later.  */
5031
5032         if (type == error_mark_node)
5033           promoted_type = type;
5034         else
5035           {
5036             promoted_type = simple_type_promotes_to (type);
5037             if (! promoted_type)
5038               promoted_type = type;
5039           }
5040
5041         DECL_ARG_TYPE (decl) = promoted_type;
5042         DECL_ARG_TYPE_AS_WRITTEN (decl) = type_as_written;
5043       }
5044     else if (decl_context == FIELD)
5045       {
5046         /* Structure field.  It may not be a function.  */
5047
5048         if (TREE_CODE (type) == FUNCTION_TYPE)
5049           {
5050             error ("field `%s' declared as a function", name);
5051             type = build_pointer_type (type);
5052           }
5053         else if (TREE_CODE (type) != ERROR_MARK
5054                  && !COMPLETE_OR_UNBOUND_ARRAY_TYPE_P (type))
5055           {
5056             error ("field `%s' has incomplete type", name);
5057             type = error_mark_node;
5058           }
5059         /* Move type qualifiers down to element of an array.  */
5060         if (TREE_CODE (type) == ARRAY_TYPE && type_quals)
5061           {
5062             type = build_array_type (c_build_qualified_type (TREE_TYPE (type),
5063                                                              type_quals),
5064                                      TYPE_DOMAIN (type));
5065 #if 0
5066             /* Leave the field const or volatile as well.  */
5067             type_quals = TYPE_UNQUALIFIED;
5068 #endif
5069           }
5070         decl = build_decl (FIELD_DECL, declarator, type);
5071         DECL_NONADDRESSABLE_P (decl) = bitfield;
5072
5073         if (size_varies)
5074           C_DECL_VARIABLE_SIZE (decl) = 1;
5075       }
5076     else if (TREE_CODE (type) == FUNCTION_TYPE)
5077       {
5078         /* Every function declaration is "external"
5079            except for those which are inside a function body
5080            in which `auto' is used.
5081            That is a case not specified by ANSI C,
5082            and we use it for forward declarations for nested functions.  */
5083         int extern_ref = (!(specbits & (1 << (int) RID_AUTO))
5084                           || current_binding_level == global_binding_level);
5085
5086         if (specbits & (1 << (int) RID_AUTO)
5087             && (pedantic || current_binding_level == global_binding_level))
5088           pedwarn ("invalid storage class for function `%s'", name);
5089         if (specbits & (1 << (int) RID_REGISTER))
5090           error ("invalid storage class for function `%s'", name);
5091         /* Function declaration not at top level.
5092            Storage classes other than `extern' are not allowed
5093            and `extern' makes no difference.  */
5094         if (current_binding_level != global_binding_level
5095             && (specbits & ((1 << (int) RID_STATIC) | (1 << (int) RID_INLINE)))
5096             && pedantic)
5097           pedwarn ("invalid storage class for function `%s'", name);
5098
5099         decl = build_decl (FUNCTION_DECL, declarator, type);
5100         decl = build_decl_attribute_variant (decl, decl_attr);
5101
5102         DECL_LANG_SPECIFIC (decl) = (struct lang_decl *)
5103           ggc_alloc_cleared (sizeof (struct lang_decl));
5104
5105         if (pedantic && type_quals && ! DECL_IN_SYSTEM_HEADER (decl))
5106           pedwarn ("ISO C forbids qualified function types");
5107
5108         /* GNU C interprets a `volatile void' return type to indicate
5109            that the function does not return.  */
5110         if ((type_quals & TYPE_QUAL_VOLATILE)
5111             && !VOID_TYPE_P (TREE_TYPE (TREE_TYPE (decl))))
5112           warning ("`noreturn' function returns non-void value");
5113
5114         if (extern_ref)
5115           DECL_EXTERNAL (decl) = 1;
5116         /* Record absence of global scope for `static' or `auto'.  */
5117         TREE_PUBLIC (decl)
5118           = !(specbits & ((1 << (int) RID_STATIC) | (1 << (int) RID_AUTO)));
5119
5120         if (defaulted_int)
5121           C_FUNCTION_IMPLICIT_INT (decl) = 1;
5122
5123         /* Record presence of `inline', if it is reasonable.  */
5124         if (MAIN_NAME_P (declarator))
5125           {
5126             if (inlinep)
5127               warning ("cannot inline function `main'");
5128           }
5129         else if (inlinep)
5130           {
5131             /* Assume that otherwise the function can be inlined.  */
5132             DECL_DECLARED_INLINE_P (decl) = 1;
5133
5134             /* Do not mark bare declarations as DECL_INLINE.  Doing so
5135                in the presence of multiple declarations can result in
5136                the abstract origin pointing between the declarations,
5137                which will confuse dwarf2out.  */
5138             if (initialized)
5139               {
5140                 DECL_INLINE (decl) = 1;
5141                 if (specbits & (1 << (int) RID_EXTERN))
5142                   current_extern_inline = 1;
5143               }
5144           }
5145         /* If -finline-functions, assume it can be inlined.  This does
5146            two things: let the function be deferred until it is actually
5147            needed, and let dwarf2 know that the function is inlinable.  */
5148         else if (flag_inline_trees == 2 && initialized)
5149           {
5150             DECL_INLINE (decl) = 1;
5151             DECL_DECLARED_INLINE_P (decl) = 0;
5152           }
5153       }
5154     else
5155       {
5156         /* It's a variable.  */
5157         /* An uninitialized decl with `extern' is a reference.  */
5158         int extern_ref = !initialized && (specbits & (1 << (int) RID_EXTERN));
5159
5160         /* Move type qualifiers down to element of an array.  */
5161         if (TREE_CODE (type) == ARRAY_TYPE && type_quals)
5162           {
5163             int saved_align = TYPE_ALIGN(type);
5164             type = build_array_type (c_build_qualified_type (TREE_TYPE (type),
5165                                                              type_quals),
5166                                      TYPE_DOMAIN (type));
5167             TYPE_ALIGN (type) = saved_align;
5168 #if 0 /* Leave the variable const or volatile as well.  */
5169             type_quals = TYPE_UNQUALIFIED;
5170 #endif
5171           }
5172         else if (type_quals)
5173           type = c_build_qualified_type (type, type_quals);
5174           
5175         decl = build_decl (VAR_DECL, declarator, type);
5176         if (size_varies)
5177           C_DECL_VARIABLE_SIZE (decl) = 1;
5178
5179         if (inlinep)
5180           pedwarn_with_decl (decl, "variable `%s' declared `inline'");
5181
5182         DECL_EXTERNAL (decl) = extern_ref;
5183         /* At top level, the presence of a `static' or `register' storage
5184            class specifier, or the absence of all storage class specifiers
5185            makes this declaration a definition (perhaps tentative).  Also,
5186            the absence of both `static' and `register' makes it public.  */
5187         if (current_binding_level == global_binding_level)
5188           {
5189             TREE_PUBLIC (decl)
5190               = !(specbits
5191                   & ((1 << (int) RID_STATIC) | (1 << (int) RID_REGISTER)));
5192             TREE_STATIC (decl) = ! DECL_EXTERNAL (decl);
5193           }
5194         /* Not at top level, only `static' makes a static definition.  */
5195         else
5196           {
5197             TREE_STATIC (decl) = (specbits & (1 << (int) RID_STATIC)) != 0;
5198             TREE_PUBLIC (decl) = DECL_EXTERNAL (decl);
5199           }
5200       }
5201
5202     /* Record `register' declaration for warnings on &
5203        and in case doing stupid register allocation.  */
5204
5205     if (specbits & (1 << (int) RID_REGISTER))
5206       DECL_REGISTER (decl) = 1;
5207
5208     /* Record constancy and volatility.  */
5209     c_apply_type_quals_to_decl (type_quals, decl);
5210
5211     /* If a type has volatile components, it should be stored in memory.
5212        Otherwise, the fact that those components are volatile
5213        will be ignored, and would even crash the compiler.  */
5214     if (C_TYPE_FIELDS_VOLATILE (TREE_TYPE (decl)))
5215       mark_addressable (decl);
5216
5217     decl_attributes (&decl, returned_attrs, 0);
5218
5219     return decl;
5220   }
5221 }
5222 \f
5223 /* Decode the parameter-list info for a function type or function definition.
5224    The argument is the value returned by `get_parm_info' (or made in parse.y
5225    if there is an identifier list instead of a parameter decl list).
5226    These two functions are separate because when a function returns
5227    or receives functions then each is called multiple times but the order
5228    of calls is different.  The last call to `grokparms' is always the one
5229    that contains the formal parameter names of a function definition.
5230
5231    Store in `last_function_parms' a chain of the decls of parms.
5232    Also store in `last_function_parm_tags' a chain of the struct, union,
5233    and enum tags declared among the parms.
5234
5235    Return a list of arg types to use in the FUNCTION_TYPE for this function.
5236
5237    FUNCDEF_FLAG is nonzero for a function definition, 0 for
5238    a mere declaration.  A nonempty identifier-list gets an error message
5239    when FUNCDEF_FLAG is zero.  */
5240
5241 static tree
5242 grokparms (parms_info, funcdef_flag)
5243      tree parms_info;
5244      int funcdef_flag;
5245 {
5246   tree first_parm = TREE_CHAIN (parms_info);
5247
5248   last_function_parms = TREE_PURPOSE (parms_info);
5249   last_function_parm_tags = TREE_VALUE (parms_info);
5250
5251   if (warn_strict_prototypes && first_parm == 0 && !funcdef_flag
5252       && !in_system_header)
5253     warning ("function declaration isn't a prototype");
5254
5255   if (first_parm != 0
5256       && TREE_CODE (TREE_VALUE (first_parm)) == IDENTIFIER_NODE)
5257     {
5258       if (! funcdef_flag)
5259         pedwarn ("parameter names (without types) in function declaration");
5260
5261       last_function_parms = first_parm;
5262       return 0;
5263     }
5264   else
5265     {
5266       tree parm;
5267       tree typelt;
5268       /* We no longer test FUNCDEF_FLAG.
5269          If the arg types are incomplete in a declaration,
5270          they must include undefined tags.
5271          These tags can never be defined in the scope of the declaration,
5272          so the types can never be completed,
5273          and no call can be compiled successfully.  */
5274 #if 0
5275       /* In a fcn definition, arg types must be complete.  */
5276       if (funcdef_flag)
5277 #endif
5278         for (parm = last_function_parms, typelt = first_parm;
5279              parm;
5280              parm = TREE_CHAIN (parm))
5281           /* Skip over any enumeration constants declared here.  */
5282           if (TREE_CODE (parm) == PARM_DECL)
5283             {
5284               /* Barf if the parameter itself has an incomplete type.  */
5285               tree type = TREE_VALUE (typelt);
5286               if (type == error_mark_node)
5287                 continue;
5288               if (!COMPLETE_TYPE_P (type))
5289                 {
5290                   if (funcdef_flag && DECL_NAME (parm) != 0)
5291                     error ("parameter `%s' has incomplete type",
5292                            IDENTIFIER_POINTER (DECL_NAME (parm)));
5293                   else
5294                     warning ("parameter has incomplete type");
5295                   if (funcdef_flag)
5296                     {
5297                       TREE_VALUE (typelt) = error_mark_node;
5298                       TREE_TYPE (parm) = error_mark_node;
5299                     }
5300                 }
5301 #if 0
5302               /* This has been replaced by parm_tags_warning, which
5303                  uses a more accurate criterion for what to warn
5304                  about.  */
5305               else
5306                 {
5307                   /* Now warn if is a pointer to an incomplete type.  */
5308                   while (TREE_CODE (type) == POINTER_TYPE
5309                          || TREE_CODE (type) == REFERENCE_TYPE)
5310                     type = TREE_TYPE (type);
5311                   type = TYPE_MAIN_VARIANT (type);
5312                   if (!COMPLETE_TYPE_P (type))
5313                     {
5314                       if (DECL_NAME (parm) != 0)
5315                         warning ("parameter `%s' points to incomplete type",
5316                                  IDENTIFIER_POINTER (DECL_NAME (parm)));
5317                       else
5318                         warning ("parameter points to incomplete type");
5319                     }
5320                 }
5321 #endif
5322               typelt = TREE_CHAIN (typelt);
5323             }
5324
5325       return first_parm;
5326     }
5327 }
5328
5329 /* Return a tree_list node with info on a parameter list just parsed.
5330    The TREE_PURPOSE is a chain of decls of those parms.
5331    The TREE_VALUE is a list of structure, union and enum tags defined.
5332    The TREE_CHAIN is a list of argument types to go in the FUNCTION_TYPE.
5333    This tree_list node is later fed to `grokparms'.
5334
5335    VOID_AT_END nonzero means append `void' to the end of the type-list.
5336    Zero means the parmlist ended with an ellipsis so don't append `void'.  */
5337
5338 tree
5339 get_parm_info (void_at_end)
5340      int void_at_end;
5341 {
5342   tree decl, t;
5343   tree types = 0;
5344   int erred = 0;
5345   tree tags = gettags ();
5346   tree parms = getdecls ();
5347   tree new_parms = 0;
5348   tree order = current_binding_level->parm_order;
5349
5350   /* Just `void' (and no ellipsis) is special.  There are really no parms.
5351      But if the `void' is qualified (by `const' or `volatile') or has a
5352      storage class specifier (`register'), then the behavior is undefined;
5353      by not counting it as the special case of `void' we will cause an
5354      error later.  Typedefs for `void' are OK (see DR#157).  */
5355   if (void_at_end && parms != 0
5356       && TREE_CHAIN (parms) == 0
5357       && VOID_TYPE_P (TREE_TYPE (parms))
5358       && ! TREE_THIS_VOLATILE (parms)
5359       && ! TREE_READONLY (parms)
5360       && ! DECL_REGISTER (parms)
5361       && DECL_NAME (parms) == 0)
5362     {
5363       parms = NULL_TREE;
5364       storedecls (NULL_TREE);
5365       return tree_cons (NULL_TREE, NULL_TREE,
5366                         tree_cons (NULL_TREE, void_type_node, NULL_TREE));
5367     }
5368
5369   /* Extract enumerator values and other non-parms declared with the parms.
5370      Likewise any forward parm decls that didn't have real parm decls.  */
5371   for (decl = parms; decl;)
5372     {
5373       tree next = TREE_CHAIN (decl);
5374
5375       if (TREE_CODE (decl) != PARM_DECL)
5376         {
5377           TREE_CHAIN (decl) = new_parms;
5378           new_parms = decl;
5379         }
5380       else if (TREE_ASM_WRITTEN (decl))
5381         {
5382           error_with_decl (decl,
5383                            "parameter `%s' has just a forward declaration");
5384           TREE_CHAIN (decl) = new_parms;
5385           new_parms = decl;
5386         }
5387       decl = next;
5388     }
5389
5390   /* Put the parm decls back in the order they were in in the parm list.  */
5391   for (t = order; t; t = TREE_CHAIN (t))
5392     {
5393       if (TREE_CHAIN (t))
5394         TREE_CHAIN (TREE_VALUE (t)) = TREE_VALUE (TREE_CHAIN (t));
5395       else
5396         TREE_CHAIN (TREE_VALUE (t)) = 0;
5397     }
5398
5399   new_parms = chainon (order ? nreverse (TREE_VALUE (order)) : 0,
5400                        new_parms);
5401
5402   /* Store the parmlist in the binding level since the old one
5403      is no longer a valid list.  (We have changed the chain pointers.)  */
5404   storedecls (new_parms);
5405
5406   for (decl = new_parms; decl; decl = TREE_CHAIN (decl))
5407     /* There may also be declarations for enumerators if an enumeration
5408        type is declared among the parms.  Ignore them here.  */
5409     if (TREE_CODE (decl) == PARM_DECL)
5410       {
5411         /* Since there is a prototype,
5412            args are passed in their declared types.  */
5413         tree type = TREE_TYPE (decl);
5414         DECL_ARG_TYPE (decl) = type;
5415         if (PROMOTE_PROTOTYPES
5416             && INTEGRAL_TYPE_P (type)
5417             && TYPE_PRECISION (type) < TYPE_PRECISION (integer_type_node))
5418           DECL_ARG_TYPE (decl) = integer_type_node;
5419
5420         types = tree_cons (NULL_TREE, TREE_TYPE (decl), types);
5421         if (VOID_TYPE_P (TREE_VALUE (types)) && ! erred
5422             && DECL_NAME (decl) == 0)
5423           {
5424             error ("`void' in parameter list must be the entire list");
5425             erred = 1;
5426           }
5427       }
5428
5429   if (void_at_end)
5430     return tree_cons (new_parms, tags,
5431                       nreverse (tree_cons (NULL_TREE, void_type_node, types)));
5432
5433   return tree_cons (new_parms, tags, nreverse (types));
5434 }
5435
5436 /* At end of parameter list, warn about any struct, union or enum tags
5437    defined within.  Do so because these types cannot ever become complete.  */
5438
5439 void
5440 parmlist_tags_warning ()
5441 {
5442   tree elt;
5443   static int already;
5444
5445   for (elt = current_binding_level->tags; elt; elt = TREE_CHAIN (elt))
5446     {
5447       enum tree_code code = TREE_CODE (TREE_VALUE (elt));
5448       /* An anonymous union parm type is meaningful as a GNU extension.
5449          So don't warn for that.  */
5450       if (code == UNION_TYPE && TREE_PURPOSE (elt) == 0 && !pedantic)
5451         continue;
5452       if (TREE_PURPOSE (elt) != 0)
5453         {
5454           if (code == RECORD_TYPE)
5455             warning ("`struct %s' declared inside parameter list",
5456                      IDENTIFIER_POINTER (TREE_PURPOSE (elt)));
5457           else if (code == UNION_TYPE)
5458             warning ("`union %s' declared inside parameter list",
5459                      IDENTIFIER_POINTER (TREE_PURPOSE (elt)));
5460           else
5461             warning ("`enum %s' declared inside parameter list",
5462                      IDENTIFIER_POINTER (TREE_PURPOSE (elt)));
5463         }
5464       else
5465         {
5466           /* For translation these need to be separate warnings */
5467           if (code == RECORD_TYPE)
5468             warning ("anonymous struct declared inside parameter list");
5469           else if (code == UNION_TYPE)
5470             warning ("anonymous union declared inside parameter list");
5471           else
5472             warning ("anonymous enum declared inside parameter list");
5473         }
5474       if (! already)
5475         {
5476           warning ("its scope is only this definition or declaration, which is probably not what you want");
5477           already = 1;
5478         }
5479     }
5480 }
5481 \f
5482 /* Get the struct, enum or union (CODE says which) with tag NAME.
5483    Define the tag as a forward-reference if it is not defined.  */
5484
5485 tree
5486 xref_tag (code, name)
5487      enum tree_code code;
5488      tree name;
5489 {
5490   /* If a cross reference is requested, look up the type
5491      already defined for this tag and return it.  */
5492
5493   tree ref = lookup_tag (code, name, current_binding_level, 0);
5494   /* If this is the right type of tag, return what we found.
5495      (This reference will be shadowed by shadow_tag later if appropriate.)
5496      If this is the wrong type of tag, do not return it.  If it was the
5497      wrong type in the same binding level, we will have had an error
5498      message already; if in a different binding level and declaring
5499      a name, pending_xref_error will give an error message; but if in a
5500      different binding level and not declaring a name, this tag should
5501      shadow the previous declaration of a different type of tag, and
5502      this would not work properly if we return the reference found.
5503      (For example, with "struct foo" in an outer scope, "union foo;"
5504      must shadow that tag with a new one of union type.)  */
5505   if (ref && TREE_CODE (ref) == code)
5506     return ref;
5507
5508   /* If no such tag is yet defined, create a forward-reference node
5509      and record it as the "definition".
5510      When a real declaration of this type is found,
5511      the forward-reference will be altered into a real type.  */
5512
5513   ref = make_node (code);
5514   if (code == ENUMERAL_TYPE)
5515     {
5516       /* Give the type a default layout like unsigned int
5517          to avoid crashing if it does not get defined.  */
5518       TYPE_MODE (ref) = TYPE_MODE (unsigned_type_node);
5519       TYPE_ALIGN (ref) = TYPE_ALIGN (unsigned_type_node);
5520       TYPE_USER_ALIGN (ref) = 0;
5521       TREE_UNSIGNED (ref) = 1;
5522       TYPE_PRECISION (ref) = TYPE_PRECISION (unsigned_type_node);
5523       TYPE_MIN_VALUE (ref) = TYPE_MIN_VALUE (unsigned_type_node);
5524       TYPE_MAX_VALUE (ref) = TYPE_MAX_VALUE (unsigned_type_node);
5525     }
5526
5527   pushtag (name, ref);
5528
5529   return ref;
5530 }
5531 \f
5532 /* Make sure that the tag NAME is defined *in the current binding level*
5533    at least as a forward reference.
5534    CODE says which kind of tag NAME ought to be.  */
5535
5536 tree
5537 start_struct (code, name)
5538      enum tree_code code;
5539      tree name;
5540 {
5541   /* If there is already a tag defined at this binding level
5542      (as a forward reference), just return it.  */
5543
5544   tree ref = 0;
5545
5546   if (name != 0)
5547     ref = lookup_tag (code, name, current_binding_level, 1);
5548   if (ref && TREE_CODE (ref) == code)
5549     {
5550       C_TYPE_BEING_DEFINED (ref) = 1;
5551       TYPE_PACKED (ref) = flag_pack_struct;
5552       if (TYPE_FIELDS (ref))
5553         {
5554           if (code == UNION_TYPE)
5555             error ("redefinition of `union %s'",
5556                    IDENTIFIER_POINTER (name));
5557           else
5558             error ("redefinition of `struct %s'",
5559                    IDENTIFIER_POINTER (name));
5560         }  
5561
5562       return ref;
5563     }
5564
5565   /* Otherwise create a forward-reference just so the tag is in scope.  */
5566
5567   ref = make_node (code);
5568   pushtag (name, ref);
5569   C_TYPE_BEING_DEFINED (ref) = 1;
5570   TYPE_PACKED (ref) = flag_pack_struct;
5571   return ref;
5572 }
5573
5574 /* Process the specs, declarator (NULL if omitted) and width (NULL if omitted)
5575    of a structure component, returning a FIELD_DECL node.
5576    WIDTH is non-NULL for bit fields only, and is an INTEGER_CST node.
5577
5578    This is done during the parsing of the struct declaration.
5579    The FIELD_DECL nodes are chained together and the lot of them
5580    are ultimately passed to `build_struct' to make the RECORD_TYPE node.  */
5581
5582 tree
5583 grokfield (filename, line, declarator, declspecs, width)
5584      const char *filename ATTRIBUTE_UNUSED;
5585      int line ATTRIBUTE_UNUSED;
5586      tree declarator, declspecs, width;
5587 {
5588   tree value;
5589
5590   if (declarator == NULL_TREE && width == NULL_TREE)
5591     {
5592       /* This is an unnamed decl.  We only support unnamed
5593          structs/unions, so check for other things and refuse them.  */
5594       if (TREE_CODE (TREE_VALUE (declspecs)) != RECORD_TYPE
5595           && TREE_CODE (TREE_VALUE (declspecs)) != UNION_TYPE)
5596         {
5597           error ("unnamed fields of type other than struct or union are not allowed");
5598           return NULL_TREE;
5599         }
5600     }
5601
5602   value = grokdeclarator (declarator, declspecs, width ? BITFIELD : FIELD, 0);
5603
5604   finish_decl (value, NULL_TREE, NULL_TREE);
5605   DECL_INITIAL (value) = width;
5606
5607   maybe_objc_check_decl (value);
5608   return value;
5609 }
5610 \f
5611 /* Fill in the fields of a RECORD_TYPE or UNION_TYPE node, T.
5612    FIELDLIST is a chain of FIELD_DECL nodes for the fields.
5613    ATTRIBUTES are attributes to be applied to the structure.  */
5614
5615 tree
5616 finish_struct (t, fieldlist, attributes)
5617      tree t;
5618      tree fieldlist;
5619      tree attributes;
5620 {
5621   tree x;
5622   int toplevel = global_binding_level == current_binding_level;
5623   int saw_named_field;
5624
5625   /* If this type was previously laid out as a forward reference,
5626      make sure we lay it out again.  */
5627
5628   TYPE_SIZE (t) = 0;
5629
5630   decl_attributes (&t, attributes, (int) ATTR_FLAG_TYPE_IN_PLACE);
5631
5632   /* Nameless union parm types are useful as GCC extension.  */
5633   if (! (TREE_CODE (t) == UNION_TYPE && TYPE_NAME (t) == 0) && !pedantic)
5634     /* Otherwise, warn about any struct or union def. in parmlist.  */
5635     if (in_parm_level_p ())
5636       {
5637         if (pedantic)
5638           pedwarn ("%s defined inside parms",
5639                    TREE_CODE (t) == UNION_TYPE ? _("union") : _("structure"));
5640         else if (! flag_traditional)
5641           warning ("%s defined inside parms",
5642                    TREE_CODE (t) == UNION_TYPE ? _("union") : _("structure"));
5643       }
5644
5645   if (pedantic)
5646     {
5647       for (x = fieldlist; x; x = TREE_CHAIN (x))
5648         if (DECL_NAME (x) != 0)
5649           break;
5650
5651       if (x == 0)
5652         pedwarn ("%s has no %s",
5653                  TREE_CODE (t) == UNION_TYPE ? _("union") : _("struct"),
5654                  fieldlist ? _("named members") : _("members"));
5655     }
5656
5657   /* Install struct as DECL_CONTEXT of each field decl.
5658      Also process specified field sizes,m which is found in the DECL_INITIAL.
5659      Store 0 there, except for ": 0" fields (so we can find them
5660      and delete them, below).  */
5661
5662   saw_named_field = 0;
5663   for (x = fieldlist; x; x = TREE_CHAIN (x))
5664     {
5665       DECL_CONTEXT (x) = t;
5666       DECL_PACKED (x) |= TYPE_PACKED (t);
5667
5668       /* If any field is const, the structure type is pseudo-const.  */
5669       if (TREE_READONLY (x))
5670         C_TYPE_FIELDS_READONLY (t) = 1;
5671       else
5672         {
5673           /* A field that is pseudo-const makes the structure likewise.  */
5674           tree t1 = TREE_TYPE (x);
5675           while (TREE_CODE (t1) == ARRAY_TYPE)
5676             t1 = TREE_TYPE (t1);
5677           if ((TREE_CODE (t1) == RECORD_TYPE || TREE_CODE (t1) == UNION_TYPE)
5678               && C_TYPE_FIELDS_READONLY (t1))
5679             C_TYPE_FIELDS_READONLY (t) = 1;
5680         }
5681
5682       /* Any field that is volatile means variables of this type must be
5683          treated in some ways as volatile.  */
5684       if (TREE_THIS_VOLATILE (x))
5685         C_TYPE_FIELDS_VOLATILE (t) = 1;
5686
5687       /* Any field of nominal variable size implies structure is too.  */
5688       if (C_DECL_VARIABLE_SIZE (x))
5689         C_TYPE_VARIABLE_SIZE (t) = 1;
5690
5691       /* Detect invalid nested redefinition.  */
5692       if (TREE_TYPE (x) == t)
5693         error ("nested redefinition of `%s'",
5694                IDENTIFIER_POINTER (TYPE_NAME (t)));
5695
5696       /* Detect invalid bit-field size.  */
5697       if (DECL_INITIAL (x))
5698         STRIP_NOPS (DECL_INITIAL (x));
5699       if (DECL_INITIAL (x))
5700         {
5701           if (TREE_CODE (DECL_INITIAL (x)) == INTEGER_CST)
5702             constant_expression_warning (DECL_INITIAL (x));
5703           else
5704             {
5705               error_with_decl (x,
5706                                "bit-field `%s' width not an integer constant");
5707               DECL_INITIAL (x) = NULL;
5708             }
5709         }
5710
5711       /* Detect invalid bit-field type.  */
5712       if (DECL_INITIAL (x)
5713           && TREE_CODE (TREE_TYPE (x)) != INTEGER_TYPE
5714           && TREE_CODE (TREE_TYPE (x)) != BOOLEAN_TYPE
5715           && TREE_CODE (TREE_TYPE (x)) != ENUMERAL_TYPE)
5716         {
5717           error_with_decl (x, "bit-field `%s' has invalid type");
5718           DECL_INITIAL (x) = NULL;
5719         }
5720
5721       if (DECL_INITIAL (x) && pedantic
5722           && TYPE_MAIN_VARIANT (TREE_TYPE (x)) != integer_type_node
5723           && TYPE_MAIN_VARIANT (TREE_TYPE (x)) != unsigned_type_node
5724           && TYPE_MAIN_VARIANT (TREE_TYPE (x)) != c_bool_type_node
5725           /* Accept an enum that's equivalent to int or unsigned int.  */
5726           && !(TREE_CODE (TREE_TYPE (x)) == ENUMERAL_TYPE
5727                && (TYPE_PRECISION (TREE_TYPE (x))
5728                    == TYPE_PRECISION (integer_type_node))))
5729         pedwarn_with_decl (x, "bit-field `%s' type invalid in ISO C");
5730
5731       /* Detect and ignore out of range field width and process valid
5732          field widths.  */
5733       if (DECL_INITIAL (x))
5734         {
5735           int max_width
5736             = (TYPE_MAIN_VARIANT (TREE_TYPE (x)) == c_bool_type_node
5737                ? CHAR_TYPE_SIZE : TYPE_PRECISION (TREE_TYPE (x)));
5738
5739           if (tree_int_cst_sgn (DECL_INITIAL (x)) < 0)
5740             error_with_decl (x, "negative width in bit-field `%s'");
5741           else if (0 < compare_tree_int (DECL_INITIAL (x), max_width))
5742             pedwarn_with_decl (x, "width of `%s' exceeds its type");
5743           else if (integer_zerop (DECL_INITIAL (x)) && DECL_NAME (x) != 0)
5744             error_with_decl (x, "zero width for bit-field `%s'");
5745           else
5746             {
5747               /* The test above has assured us that TREE_INT_CST_HIGH is 0.  */
5748               unsigned HOST_WIDE_INT width
5749                 = tree_low_cst (DECL_INITIAL (x), 1);
5750
5751               if (TREE_CODE (TREE_TYPE (x)) == ENUMERAL_TYPE
5752                   && (width < min_precision (TYPE_MIN_VALUE (TREE_TYPE (x)),
5753                                              TREE_UNSIGNED (TREE_TYPE (x)))
5754                       || (width
5755                           < min_precision (TYPE_MAX_VALUE (TREE_TYPE (x)),
5756                                            TREE_UNSIGNED (TREE_TYPE (x))))))
5757                 warning_with_decl (x,
5758                                    "`%s' is narrower than values of its type");
5759
5760               DECL_SIZE (x) = bitsize_int (width);
5761               DECL_BIT_FIELD (x) = 1;
5762               SET_DECL_C_BIT_FIELD (x);
5763
5764               if (width == 0
5765                   && ! (* targetm.ms_bitfield_layout_p) (t))
5766                 {
5767                   /* field size 0 => force desired amount of alignment.  */
5768 #ifdef EMPTY_FIELD_BOUNDARY
5769                   DECL_ALIGN (x) = MAX (DECL_ALIGN (x), EMPTY_FIELD_BOUNDARY);
5770 #endif
5771 #ifdef PCC_BITFIELD_TYPE_MATTERS
5772                   if (PCC_BITFIELD_TYPE_MATTERS)
5773                     {
5774                       DECL_ALIGN (x) = MAX (DECL_ALIGN (x),
5775                                             TYPE_ALIGN (TREE_TYPE (x)));
5776                       DECL_USER_ALIGN (x) |= TYPE_USER_ALIGN (TREE_TYPE (x));
5777                     }
5778 #endif
5779                 }
5780             }
5781         }
5782
5783       else if (TREE_TYPE (x) != error_mark_node)
5784         {
5785           unsigned int min_align = (DECL_PACKED (x) ? BITS_PER_UNIT
5786                                     : TYPE_ALIGN (TREE_TYPE (x)));
5787
5788           /* Non-bit-fields are aligned for their type, except packed
5789              fields which require only BITS_PER_UNIT alignment.  */
5790           DECL_ALIGN (x) = MAX (DECL_ALIGN (x), min_align);
5791           if (! DECL_PACKED (x))
5792             DECL_USER_ALIGN (x) |= TYPE_USER_ALIGN (TREE_TYPE (x));
5793         }
5794
5795       DECL_INITIAL (x) = 0;
5796
5797       /* Detect flexible array member in an invalid context.  */
5798       if (TREE_CODE (TREE_TYPE (x)) == ARRAY_TYPE
5799           && TYPE_SIZE (TREE_TYPE (x)) == NULL_TREE
5800           && TYPE_DOMAIN (TREE_TYPE (x)) != NULL_TREE
5801           && TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (x))) == NULL_TREE)
5802         {
5803           if (TREE_CODE (t) == UNION_TYPE)
5804             error_with_decl (x, "flexible array member in union");
5805           else if (TREE_CHAIN (x) != NULL_TREE)
5806             error_with_decl (x, "flexible array member not at end of struct");
5807           else if (! saw_named_field)
5808             error_with_decl (x, "flexible array member in otherwise empty struct");
5809         }
5810       if (DECL_NAME (x))
5811         saw_named_field = 1;
5812     }
5813
5814   /* Delete all duplicate fields from the fieldlist */
5815   for (x = fieldlist; x && TREE_CHAIN (x);)
5816     /* Anonymous fields aren't duplicates.  */
5817     if (DECL_NAME (TREE_CHAIN (x)) == 0)
5818       x = TREE_CHAIN (x);
5819     else
5820       {
5821         tree y = fieldlist;
5822
5823         while (1)
5824           {
5825             if (DECL_NAME (y) == DECL_NAME (TREE_CHAIN (x)))
5826               break;
5827             if (y == x)
5828               break;
5829             y = TREE_CHAIN (y);
5830           }
5831         if (DECL_NAME (y) == DECL_NAME (TREE_CHAIN (x)))
5832           {
5833             error_with_decl (TREE_CHAIN (x), "duplicate member `%s'");
5834             TREE_CHAIN (x) = TREE_CHAIN (TREE_CHAIN (x));
5835           }
5836         else
5837           x = TREE_CHAIN (x);
5838       }
5839
5840   /* Now we have the nearly final fieldlist.  Record it,
5841      then lay out the structure or union (including the fields).  */
5842
5843   TYPE_FIELDS (t) = fieldlist;
5844
5845   layout_type (t);
5846
5847   /* Delete all zero-width bit-fields from the fieldlist */
5848   {
5849     tree *fieldlistp = &fieldlist;
5850     while (*fieldlistp)
5851       if (TREE_CODE (*fieldlistp) == FIELD_DECL && DECL_INITIAL (*fieldlistp))
5852         *fieldlistp = TREE_CHAIN (*fieldlistp);
5853       else
5854         fieldlistp = &TREE_CHAIN (*fieldlistp);
5855   }
5856
5857   /* Now we have the truly final field list.
5858      Store it in this type and in the variants.  */
5859
5860   TYPE_FIELDS (t) = fieldlist;
5861
5862   for (x = TYPE_MAIN_VARIANT (t); x; x = TYPE_NEXT_VARIANT (x))
5863     {
5864       TYPE_FIELDS (x) = TYPE_FIELDS (t);
5865       TYPE_LANG_SPECIFIC (x) = TYPE_LANG_SPECIFIC (t);
5866       TYPE_ALIGN (x) = TYPE_ALIGN (t);
5867       TYPE_USER_ALIGN (x) = TYPE_USER_ALIGN (t);
5868     }
5869
5870   /* If this was supposed to be a transparent union, but we can't
5871      make it one, warn and turn off the flag.  */
5872   if (TREE_CODE (t) == UNION_TYPE
5873       && TYPE_TRANSPARENT_UNION (t)
5874       && TYPE_MODE (t) != DECL_MODE (TYPE_FIELDS (t)))
5875     {
5876       TYPE_TRANSPARENT_UNION (t) = 0;
5877       warning ("union cannot be made transparent");
5878     }
5879
5880   /* If this structure or union completes the type of any previous
5881      variable declaration, lay it out and output its rtl.  */
5882
5883   if (current_binding_level->n_incomplete != 0)
5884     {
5885       tree decl;
5886       for (decl = current_binding_level->names; decl; decl = TREE_CHAIN (decl))
5887         {
5888           if (TYPE_MAIN_VARIANT (TREE_TYPE (decl)) == TYPE_MAIN_VARIANT (t)
5889               && TREE_CODE (decl) != TYPE_DECL)
5890             {
5891               layout_decl (decl, 0);
5892               /* This is a no-op in c-lang.c or something real in objc-actions.c.  */
5893               maybe_objc_check_decl (decl);
5894               rest_of_decl_compilation (decl, NULL, toplevel, 0);
5895               if (! toplevel)
5896                 expand_decl (decl);
5897               if (--current_binding_level->n_incomplete == 0)
5898                 break;
5899             }
5900           else if (!COMPLETE_TYPE_P (TREE_TYPE (decl))
5901                    && TREE_CODE (TREE_TYPE (decl)) == ARRAY_TYPE)
5902             {
5903               tree element = TREE_TYPE (decl);
5904               while (TREE_CODE (element) == ARRAY_TYPE)
5905                 element = TREE_TYPE (element);
5906               if (element == t)
5907                 {
5908                   layout_array_type (TREE_TYPE (decl));
5909                   if (TREE_CODE (decl) != TYPE_DECL)
5910                     {
5911                       layout_decl (decl, 0);
5912                       maybe_objc_check_decl (decl);
5913                       rest_of_decl_compilation (decl, NULL, toplevel, 0);
5914                       if (! toplevel)
5915                         expand_decl (decl);
5916                     }
5917                   if (--current_binding_level->n_incomplete == 0)
5918                     break;
5919                 }
5920             }
5921         }
5922     }
5923
5924   /* Finish debugging output for this type.  */
5925   rest_of_type_compilation (t, toplevel);
5926
5927   return t;
5928 }
5929
5930 /* Lay out the type T, and its element type, and so on.  */
5931
5932 static void
5933 layout_array_type (t)
5934      tree t;
5935 {
5936   if (TREE_CODE (TREE_TYPE (t)) == ARRAY_TYPE)
5937     layout_array_type (TREE_TYPE (t));
5938   layout_type (t);
5939 }
5940 \f
5941 /* Begin compiling the definition of an enumeration type.
5942    NAME is its name (or null if anonymous).
5943    Returns the type object, as yet incomplete.
5944    Also records info about it so that build_enumerator
5945    may be used to declare the individual values as they are read.  */
5946
5947 tree
5948 start_enum (name)
5949      tree name;
5950 {
5951   tree enumtype = 0;
5952
5953   /* If this is the real definition for a previous forward reference,
5954      fill in the contents in the same object that used to be the
5955      forward reference.  */
5956
5957   if (name != 0)
5958     enumtype = lookup_tag (ENUMERAL_TYPE, name, current_binding_level, 1);
5959
5960   if (enumtype == 0 || TREE_CODE (enumtype) != ENUMERAL_TYPE)
5961     {
5962       enumtype = make_node (ENUMERAL_TYPE);
5963       pushtag (name, enumtype);
5964     }
5965
5966   C_TYPE_BEING_DEFINED (enumtype) = 1;
5967
5968   if (TYPE_VALUES (enumtype) != 0)
5969     {
5970       /* This enum is a named one that has been declared already.  */
5971       error ("redeclaration of `enum %s'", IDENTIFIER_POINTER (name));
5972
5973       /* Completely replace its old definition.
5974          The old enumerators remain defined, however.  */
5975       TYPE_VALUES (enumtype) = 0;
5976     }
5977
5978   enum_next_value = integer_zero_node;
5979   enum_overflow = 0;
5980
5981   if (flag_short_enums)
5982     TYPE_PACKED (enumtype) = 1;
5983
5984   return enumtype;
5985 }
5986
5987 /* After processing and defining all the values of an enumeration type,
5988    install their decls in the enumeration type and finish it off.
5989    ENUMTYPE is the type object, VALUES a list of decl-value pairs,
5990    and ATTRIBUTES are the specified attributes.
5991    Returns ENUMTYPE.  */
5992
5993 tree
5994 finish_enum (enumtype, values, attributes)
5995      tree enumtype;
5996      tree values;
5997      tree attributes;
5998 {
5999   tree pair, tem;
6000   tree minnode = 0, maxnode = 0, enum_value_type;
6001   int precision, unsign;
6002   int toplevel = (global_binding_level == current_binding_level);
6003
6004   if (in_parm_level_p ())
6005     warning ("enum defined inside parms");
6006
6007   decl_attributes (&enumtype, attributes, (int) ATTR_FLAG_TYPE_IN_PLACE);
6008
6009   /* Calculate the maximum value of any enumerator in this type.  */
6010
6011   if (values == error_mark_node)
6012     minnode = maxnode = integer_zero_node;
6013   else
6014     {
6015       minnode = maxnode = TREE_VALUE (values);
6016       for (pair = TREE_CHAIN (values); pair; pair = TREE_CHAIN (pair))
6017         {
6018           tree value = TREE_VALUE (pair);
6019           if (tree_int_cst_lt (maxnode, value))
6020             maxnode = value;
6021           if (tree_int_cst_lt (value, minnode))
6022             minnode = value;
6023         }
6024     }
6025
6026   /* Construct the final type of this enumeration.  It is the same
6027      as one of the integral types - the narrowest one that fits, except
6028      that normally we only go as narrow as int - and signed iff any of
6029      the values are negative.  */
6030   unsign = (tree_int_cst_sgn (minnode) >= 0);
6031   precision = MAX (min_precision (minnode, unsign),
6032                    min_precision (maxnode, unsign));
6033   if (TYPE_PACKED (enumtype) || precision > TYPE_PRECISION (integer_type_node))
6034     {
6035       tree narrowest = type_for_size (precision, unsign);
6036       if (narrowest == 0)
6037         {
6038           warning ("enumeration values exceed range of largest integer");
6039           narrowest = long_long_integer_type_node;
6040         }
6041
6042       precision = TYPE_PRECISION (narrowest);
6043     }
6044   else
6045     precision = TYPE_PRECISION (integer_type_node);
6046
6047   if (precision == TYPE_PRECISION (integer_type_node))
6048     enum_value_type = type_for_size (precision, 0);
6049   else
6050     enum_value_type = enumtype;
6051
6052   TYPE_MIN_VALUE (enumtype) = minnode;
6053   TYPE_MAX_VALUE (enumtype) = maxnode;
6054   TYPE_PRECISION (enumtype) = precision;
6055   TREE_UNSIGNED (enumtype) = unsign;
6056   TYPE_SIZE (enumtype) = 0;
6057   layout_type (enumtype);
6058
6059   if (values != error_mark_node)
6060     {
6061       /* Change the type of the enumerators to be the enum type.  We
6062          need to do this irrespective of the size of the enum, for
6063          proper type checking.  Replace the DECL_INITIALs of the
6064          enumerators, and the value slots of the list, with copies
6065          that have the enum type; they cannot be modified in place
6066          because they may be shared (e.g.  integer_zero_node) Finally,
6067          change the purpose slots to point to the names of the decls.  */
6068       for (pair = values; pair; pair = TREE_CHAIN (pair))
6069         {
6070           tree enu = TREE_PURPOSE (pair);
6071
6072           TREE_TYPE (enu) = enumtype;
6073           DECL_SIZE (enu) = TYPE_SIZE (enumtype);
6074           DECL_SIZE_UNIT (enu) = TYPE_SIZE_UNIT (enumtype);
6075           DECL_ALIGN (enu) = TYPE_ALIGN (enumtype);
6076           DECL_USER_ALIGN (enu) = TYPE_USER_ALIGN (enumtype);
6077           DECL_MODE (enu) = TYPE_MODE (enumtype);
6078
6079           /* The ISO C Standard mandates enumerators to have type int,
6080              even though the underlying type of an enum type is
6081              unspecified.  Here we convert any enumerators that fit in
6082              an int to type int, to avoid promotions to unsigned types
6083              when comparing integers with enumerators that fit in the
6084              int range.  When -pedantic is given, build_enumerator()
6085              would have already taken care of those that don't fit.  */
6086           if (int_fits_type_p (DECL_INITIAL (enu), enum_value_type))
6087             DECL_INITIAL (enu) = convert (enum_value_type, DECL_INITIAL (enu));
6088           else
6089             DECL_INITIAL (enu) = convert (enumtype, DECL_INITIAL (enu));
6090
6091           TREE_PURPOSE (pair) = DECL_NAME (enu);
6092           TREE_VALUE (pair) = DECL_INITIAL (enu);
6093         }
6094
6095       TYPE_VALUES (enumtype) = values;
6096     }
6097
6098   /* Fix up all variant types of this enum type.  */
6099   for (tem = TYPE_MAIN_VARIANT (enumtype); tem; tem = TYPE_NEXT_VARIANT (tem))
6100     {
6101       if (tem == enumtype)
6102         continue;
6103       TYPE_VALUES (tem) = TYPE_VALUES (enumtype);
6104       TYPE_MIN_VALUE (tem) = TYPE_MIN_VALUE (enumtype);
6105       TYPE_MAX_VALUE (tem) = TYPE_MAX_VALUE (enumtype);
6106       TYPE_SIZE (tem) = TYPE_SIZE (enumtype);
6107       TYPE_SIZE_UNIT (tem) = TYPE_SIZE_UNIT (enumtype);
6108       TYPE_MODE (tem) = TYPE_MODE (enumtype);
6109       TYPE_PRECISION (tem) = TYPE_PRECISION (enumtype);
6110       TYPE_ALIGN (tem) = TYPE_ALIGN (enumtype);
6111       TYPE_USER_ALIGN (tem) = TYPE_USER_ALIGN (enumtype);
6112       TREE_UNSIGNED (tem) = TREE_UNSIGNED (enumtype);
6113     }
6114
6115   /* Finish debugging output for this type.  */
6116   rest_of_type_compilation (enumtype, toplevel);
6117
6118   return enumtype;
6119 }
6120
6121 /* Build and install a CONST_DECL for one value of the
6122    current enumeration type (one that was begun with start_enum).
6123    Return a tree-list containing the CONST_DECL and its value.
6124    Assignment of sequential values by default is handled here.  */
6125
6126 tree
6127 build_enumerator (name, value)
6128      tree name, value;
6129 {
6130   tree decl, type;
6131
6132   /* Validate and default VALUE.  */
6133
6134   /* Remove no-op casts from the value.  */
6135   if (value)
6136     STRIP_TYPE_NOPS (value);
6137
6138   if (value != 0)
6139     {
6140       if (TREE_CODE (value) == INTEGER_CST)
6141         {
6142           value = default_conversion (value);
6143           constant_expression_warning (value);
6144         }
6145       else
6146         {
6147           error ("enumerator value for `%s' not integer constant",
6148                  IDENTIFIER_POINTER (name));
6149           value = 0;
6150         }
6151     }
6152
6153   /* Default based on previous value.  */
6154   /* It should no longer be possible to have NON_LVALUE_EXPR
6155      in the default.  */
6156   if (value == 0)
6157     {
6158       value = enum_next_value;
6159       if (enum_overflow)
6160         error ("overflow in enumeration values");
6161     }
6162
6163   if (pedantic && ! int_fits_type_p (value, integer_type_node))
6164     {
6165       pedwarn ("ISO C restricts enumerator values to range of `int'");
6166       value = convert (integer_type_node, value);
6167     }
6168
6169   /* Set basis for default for next value.  */
6170   enum_next_value = build_binary_op (PLUS_EXPR, value, integer_one_node, 0);
6171   enum_overflow = tree_int_cst_lt (enum_next_value, value);
6172
6173   /* Now create a declaration for the enum value name.  */
6174
6175   type = TREE_TYPE (value);
6176   type = type_for_size (MAX (TYPE_PRECISION (type),
6177                              TYPE_PRECISION (integer_type_node)),
6178                         ((flag_traditional
6179                           || TYPE_PRECISION (type) >= TYPE_PRECISION (integer_type_node))
6180                          && TREE_UNSIGNED (type)));
6181
6182   decl = build_decl (CONST_DECL, name, type);
6183   DECL_INITIAL (decl) = convert (type, value);
6184   pushdecl (decl);
6185
6186   return tree_cons (decl, value, NULL_TREE);
6187 }
6188
6189 \f
6190 /* Create the FUNCTION_DECL for a function definition.
6191    DECLSPECS, DECLARATOR and ATTRIBUTES are the parts of
6192    the declaration; they describe the function's name and the type it returns,
6193    but twisted together in a fashion that parallels the syntax of C.
6194
6195    This function creates a binding context for the function body
6196    as well as setting up the FUNCTION_DECL in current_function_decl.
6197
6198    Returns 1 on success.  If the DECLARATOR is not suitable for a function
6199    (it defines a datum instead), we return 0, which tells
6200    yyparse to report a parse error.  */
6201
6202 int
6203 start_function (declspecs, declarator, attributes)
6204      tree declarator, declspecs, attributes;
6205 {
6206   tree decl1, old_decl;
6207   tree restype;
6208   int old_immediate_size_expand = immediate_size_expand;
6209
6210   current_function_returns_value = 0;  /* Assume, until we see it does.  */
6211   current_function_returns_null = 0;
6212   current_function_returns_abnormally = 0;
6213   warn_about_return_type = 0;
6214   current_extern_inline = 0;
6215   c_function_varargs = 0;
6216   named_labels = 0;
6217   shadowed_labels = 0;
6218
6219   /* Don't expand any sizes in the return type of the function.  */
6220   immediate_size_expand = 0;
6221
6222   decl1 = grokdeclarator (declarator, declspecs, FUNCDEF, 1);
6223
6224   /* If the declarator is not suitable for a function definition,
6225      cause a syntax error.  */
6226   if (decl1 == 0)
6227     {
6228       immediate_size_expand = old_immediate_size_expand;
6229       return 0;
6230     }
6231
6232   decl_attributes (&decl1, attributes, 0);
6233
6234   /* If #pragma weak was used, mark the decl weak now.  */
6235   if (current_binding_level == global_binding_level)
6236     maybe_apply_pragma_weak (decl1);
6237
6238   if (DECL_DECLARED_INLINE_P (decl1)
6239       && DECL_UNINLINABLE (decl1)
6240       && lookup_attribute ("noinline", DECL_ATTRIBUTES (decl1)))
6241     warning_with_decl (decl1,
6242                        "inline function `%s' given attribute noinline");
6243
6244   announce_function (decl1);
6245
6246   if (!COMPLETE_OR_VOID_TYPE_P (TREE_TYPE (TREE_TYPE (decl1))))
6247     {
6248       error ("return type is an incomplete type");
6249       /* Make it return void instead.  */
6250       TREE_TYPE (decl1)
6251         = build_function_type (void_type_node,
6252                                TYPE_ARG_TYPES (TREE_TYPE (decl1)));
6253     }
6254
6255   if (warn_about_return_type)
6256     pedwarn_c99 ("return type defaults to `int'");
6257
6258   /* Save the parm names or decls from this function's declarator
6259      where store_parm_decls will find them.  */
6260   current_function_parms = last_function_parms;
6261   current_function_parm_tags = last_function_parm_tags;
6262
6263   /* Make the init_value nonzero so pushdecl knows this is not tentative.
6264      error_mark_node is replaced below (in poplevel) with the BLOCK.  */
6265   DECL_INITIAL (decl1) = error_mark_node;
6266
6267   /* If this definition isn't a prototype and we had a prototype declaration
6268      before, copy the arg type info from that prototype.
6269      But not if what we had before was a builtin function.  */
6270   old_decl = lookup_name_current_level (DECL_NAME (decl1));
6271   if (old_decl != 0 && TREE_CODE (TREE_TYPE (old_decl)) == FUNCTION_TYPE
6272       && !DECL_BUILT_IN (old_decl)
6273       && (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (decl1)))
6274           == TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (old_decl))))
6275       && TYPE_ARG_TYPES (TREE_TYPE (decl1)) == 0)
6276     {
6277       TREE_TYPE (decl1) = TREE_TYPE (old_decl);
6278       current_function_prototype_file = DECL_SOURCE_FILE (old_decl);
6279       current_function_prototype_line = DECL_SOURCE_LINE (old_decl);
6280     }
6281
6282   /* If there is no explicit declaration, look for any out-of-scope implicit
6283      declarations.  */
6284   if (old_decl == 0)
6285     old_decl = IDENTIFIER_IMPLICIT_DECL (DECL_NAME (decl1));
6286
6287   /* Optionally warn of old-fashioned def with no previous prototype.  */
6288   if (warn_strict_prototypes
6289       && TYPE_ARG_TYPES (TREE_TYPE (decl1)) == 0
6290       && !(old_decl != 0
6291            && (TYPE_ARG_TYPES (TREE_TYPE (old_decl)) != 0
6292                || (DECL_BUILT_IN (old_decl)
6293                    && ! C_DECL_ANTICIPATED (old_decl)))))
6294     warning ("function declaration isn't a prototype");
6295   /* Optionally warn of any global def with no previous prototype.  */
6296   else if (warn_missing_prototypes
6297            && TREE_PUBLIC (decl1)
6298            && !(old_decl != 0
6299                 && (TYPE_ARG_TYPES (TREE_TYPE (old_decl)) != 0
6300                     || (DECL_BUILT_IN (old_decl)
6301                         && ! C_DECL_ANTICIPATED (old_decl))))
6302            && ! MAIN_NAME_P (DECL_NAME (decl1)))
6303     warning_with_decl (decl1, "no previous prototype for `%s'");
6304   /* Optionally warn of any def with no previous prototype
6305      if the function has already been used.  */
6306   else if (warn_missing_prototypes
6307            && old_decl != 0 && TREE_USED (old_decl)
6308            && TYPE_ARG_TYPES (TREE_TYPE (old_decl)) == 0)
6309     warning_with_decl (decl1,
6310                        "`%s' was used with no prototype before its definition");
6311   /* Optionally warn of any global def with no previous declaration.  */
6312   else if (warn_missing_declarations
6313            && TREE_PUBLIC (decl1)
6314            && old_decl == 0
6315            && ! MAIN_NAME_P (DECL_NAME (decl1)))
6316     warning_with_decl (decl1, "no previous declaration for `%s'");
6317   /* Optionally warn of any def with no previous declaration
6318      if the function has already been used.  */
6319   else if (warn_missing_declarations
6320            && old_decl != 0 && TREE_USED (old_decl)
6321            && old_decl == IDENTIFIER_IMPLICIT_DECL (DECL_NAME (decl1)))
6322     warning_with_decl (decl1,
6323                        "`%s' was used with no declaration before its definition");
6324
6325   /* This is a definition, not a reference.
6326      So normally clear DECL_EXTERNAL.
6327      However, `extern inline' acts like a declaration
6328      except for defining how to inline.  So set DECL_EXTERNAL in that case.  */
6329   DECL_EXTERNAL (decl1) = current_extern_inline;
6330
6331   /* This function exists in static storage.
6332      (This does not mean `static' in the C sense!)  */
6333   TREE_STATIC (decl1) = 1;
6334
6335   /* A nested function is not global.  */
6336   if (current_function_decl != 0)
6337     TREE_PUBLIC (decl1) = 0;
6338
6339   /* Warn for unlikely, improbable, or stupid declarations of `main'.  */
6340   if (warn_main > 0 && MAIN_NAME_P (DECL_NAME (decl1)))
6341     {
6342       tree args;
6343       int argct = 0;
6344
6345       if (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (decl1)))
6346           != integer_type_node)
6347         pedwarn_with_decl (decl1, "return type of `%s' is not `int'");
6348
6349       for (args = TYPE_ARG_TYPES (TREE_TYPE (decl1)); args;
6350            args = TREE_CHAIN (args))
6351         {
6352           tree type = args ? TREE_VALUE (args) : 0;
6353
6354           if (type == void_type_node)
6355             break;
6356
6357           ++argct;
6358           switch (argct)
6359             {
6360             case 1:
6361               if (TYPE_MAIN_VARIANT (type) != integer_type_node)
6362                 pedwarn_with_decl (decl1,
6363                                    "first argument of `%s' should be `int'");
6364               break;
6365
6366             case 2:
6367               if (TREE_CODE (type) != POINTER_TYPE
6368                   || TREE_CODE (TREE_TYPE (type)) != POINTER_TYPE
6369                   || (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (type)))
6370                       != char_type_node))
6371                 pedwarn_with_decl (decl1,
6372                                    "second argument of `%s' should be `char **'");
6373               break;
6374
6375             case 3:
6376               if (TREE_CODE (type) != POINTER_TYPE
6377                   || TREE_CODE (TREE_TYPE (type)) != POINTER_TYPE
6378                   || (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (type)))
6379                       != char_type_node))
6380                 pedwarn_with_decl (decl1,
6381                                    "third argument of `%s' should probably be `char **'");
6382               break;
6383             }
6384         }
6385
6386       /* It is intentional that this message does not mention the third
6387          argument because it's only mentioned in an appendix of the
6388          standard.  */
6389       if (argct > 0 && (argct < 2 || argct > 3))
6390         pedwarn_with_decl (decl1, "`%s' takes only zero or two arguments");
6391
6392       if (! TREE_PUBLIC (decl1))
6393         pedwarn_with_decl (decl1, "`%s' is normally a non-static function");
6394     }
6395
6396   /* Record the decl so that the function name is defined.
6397      If we already have a decl for this name, and it is a FUNCTION_DECL,
6398      use the old decl.  */
6399
6400   current_function_decl = pushdecl (decl1);
6401
6402   pushlevel (0);
6403   declare_parm_level (1);
6404   current_binding_level->subblocks_tag_transparent = 1;
6405
6406   make_decl_rtl (current_function_decl, NULL);
6407
6408   restype = TREE_TYPE (TREE_TYPE (current_function_decl));
6409   /* Promote the value to int before returning it.  */
6410   if (c_promoting_integer_type_p (restype))
6411     {
6412       /* It retains unsignedness if traditional
6413          or if not really getting wider.  */
6414       if (TREE_UNSIGNED (restype)
6415           && (flag_traditional
6416               || (TYPE_PRECISION (restype)
6417                   == TYPE_PRECISION (integer_type_node))))
6418         restype = unsigned_type_node;
6419       else
6420         restype = integer_type_node;
6421     }
6422   DECL_RESULT (current_function_decl)
6423     = build_decl (RESULT_DECL, NULL_TREE, restype);
6424
6425   /* If this fcn was already referenced via a block-scope `extern' decl
6426      (or an implicit decl), propagate certain information about the usage.  */
6427   if (TREE_ADDRESSABLE (DECL_ASSEMBLER_NAME (current_function_decl)))
6428     TREE_ADDRESSABLE (current_function_decl) = 1;
6429
6430   immediate_size_expand = old_immediate_size_expand;
6431
6432   start_fname_decls ();
6433   
6434   return 1;
6435 }
6436
6437 /* Record that this function is going to be a varargs function.
6438    This is called before store_parm_decls, which is too early
6439    to call mark_varargs directly.  */
6440
6441 void
6442 c_mark_varargs ()
6443 {
6444   c_function_varargs = 1;
6445 }
6446 \f
6447 /* Store the parameter declarations into the current function declaration.
6448    This is called after parsing the parameter declarations, before
6449    digesting the body of the function.
6450
6451    For an old-style definition, modify the function's type
6452    to specify at least the number of arguments.  */
6453
6454 void
6455 store_parm_decls ()
6456 {
6457   tree fndecl = current_function_decl;
6458   tree parm;
6459
6460   /* This is either a chain of PARM_DECLs (if a prototype was used)
6461      or a list of IDENTIFIER_NODEs (for an old-fashioned C definition).  */
6462   tree specparms = current_function_parms;
6463
6464   /* This is a list of types declared among parms in a prototype.  */
6465   tree parmtags = current_function_parm_tags;
6466
6467   /* This is a chain of PARM_DECLs from old-style parm declarations.  */
6468   tree parmdecls = getdecls ();
6469
6470   /* This is a chain of any other decls that came in among the parm
6471      declarations.  If a parm is declared with  enum {foo, bar} x;
6472      then CONST_DECLs for foo and bar are put here.  */
6473   tree nonparms = 0;
6474
6475   /* The function containing FNDECL, if any.  */
6476   tree context = decl_function_context (fndecl);
6477
6478   /* Nonzero if this definition is written with a prototype.  */
6479   int prototype = 0;
6480
6481   int saved_warn_shadow = warn_shadow;
6482
6483   /* Don't re-emit shadow warnings.  */
6484   warn_shadow = 0;
6485
6486   if (specparms != 0 && TREE_CODE (specparms) != TREE_LIST)
6487     {
6488       /* This case is when the function was defined with an ANSI prototype.
6489          The parms already have decls, so we need not do anything here
6490          except record them as in effect
6491          and complain if any redundant old-style parm decls were written.  */
6492
6493       tree next;
6494       tree others = 0;
6495
6496       prototype = 1;
6497
6498       if (parmdecls != 0)
6499         {
6500           tree decl, link;
6501
6502           error_with_decl (fndecl,
6503                            "parm types given both in parmlist and separately");
6504           /* Get rid of the erroneous decls; don't keep them on
6505              the list of parms, since they might not be PARM_DECLs.  */
6506           for (decl = current_binding_level->names;
6507                decl; decl = TREE_CHAIN (decl))
6508             if (DECL_NAME (decl))
6509               IDENTIFIER_LOCAL_VALUE (DECL_NAME (decl)) = 0;
6510           for (link = current_binding_level->shadowed;
6511                link; link = TREE_CHAIN (link))
6512             IDENTIFIER_LOCAL_VALUE (TREE_PURPOSE (link)) = TREE_VALUE (link);
6513           current_binding_level->names = 0;
6514           current_binding_level->shadowed = 0;
6515         }
6516
6517       specparms = nreverse (specparms);
6518       for (parm = specparms; parm; parm = next)
6519         {
6520           next = TREE_CHAIN (parm);
6521           if (TREE_CODE (parm) == PARM_DECL)
6522             {
6523               if (DECL_NAME (parm) == 0)
6524                 error_with_decl (parm, "parameter name omitted");
6525               else if (TREE_CODE (TREE_TYPE (parm)) != ERROR_MARK
6526                        && VOID_TYPE_P (TREE_TYPE (parm)))
6527                 {
6528                   error_with_decl (parm, "parameter `%s' declared void");
6529                   /* Change the type to error_mark_node so this parameter
6530                      will be ignored by assign_parms.  */
6531                   TREE_TYPE (parm) = error_mark_node;
6532                 }
6533               pushdecl (parm);
6534             }
6535           else
6536             {
6537               /* If we find an enum constant or a type tag,
6538                  put it aside for the moment.  */
6539               TREE_CHAIN (parm) = 0;
6540               others = chainon (others, parm);
6541             }
6542         }
6543
6544       /* Get the decls in their original chain order
6545          and record in the function.  */
6546       DECL_ARGUMENTS (fndecl) = getdecls ();
6547
6548 #if 0
6549       /* If this function takes a variable number of arguments,
6550          add a phony parameter to the end of the parm list,
6551          to represent the position of the first unnamed argument.  */
6552       if (TREE_VALUE (tree_last (TYPE_ARG_TYPES (TREE_TYPE (fndecl))))
6553           != void_type_node)
6554         {
6555           tree dummy = build_decl (PARM_DECL, NULL_TREE, void_type_node);
6556           /* Let's hope the address of the unnamed parm
6557              won't depend on its type.  */
6558           TREE_TYPE (dummy) = integer_type_node;
6559           DECL_ARG_TYPE (dummy) = integer_type_node;
6560           DECL_ARGUMENTS (fndecl) = chainon (DECL_ARGUMENTS (fndecl), dummy);
6561         }
6562 #endif
6563
6564       /* Now pushdecl the enum constants.  */
6565       for (parm = others; parm; parm = next)
6566         {
6567           next = TREE_CHAIN (parm);
6568           if (DECL_NAME (parm) == 0)
6569             ;
6570           else if (TYPE_MAIN_VARIANT (TREE_TYPE (parm)) == void_type_node)
6571             ;
6572           else if (TREE_CODE (parm) != PARM_DECL)
6573             pushdecl (parm);
6574         }
6575
6576       storetags (chainon (parmtags, gettags ()));
6577     }
6578   else
6579     {
6580       /* SPECPARMS is an identifier list--a chain of TREE_LIST nodes
6581          each with a parm name as the TREE_VALUE.
6582
6583          PARMDECLS is a chain of declarations for parameters.
6584          Warning! It can also contain CONST_DECLs which are not parameters
6585          but are names of enumerators of any enum types
6586          declared among the parameters.
6587
6588          First match each formal parameter name with its declaration.
6589          Associate decls with the names and store the decls
6590          into the TREE_PURPOSE slots.  */
6591
6592       /* We use DECL_WEAK as a flag to show which parameters have been
6593          seen already since it is not used on PARM_DECL or CONST_DECL.  */
6594       for (parm = parmdecls; parm; parm = TREE_CHAIN (parm))
6595         DECL_WEAK (parm) = 0;
6596
6597       for (parm = specparms; parm; parm = TREE_CHAIN (parm))
6598         {
6599           tree tail, found = NULL;
6600
6601           if (TREE_VALUE (parm) == 0)
6602             {
6603               error_with_decl (fndecl,
6604                                "parameter name missing from parameter list");
6605               TREE_PURPOSE (parm) = 0;
6606               continue;
6607             }
6608
6609           /* See if any of the parmdecls specifies this parm by name.
6610              Ignore any enumerator decls.  */
6611           for (tail = parmdecls; tail; tail = TREE_CHAIN (tail))
6612             if (DECL_NAME (tail) == TREE_VALUE (parm)
6613                 && TREE_CODE (tail) == PARM_DECL)
6614               {
6615                 found = tail;
6616                 break;
6617               }
6618
6619           /* If declaration already marked, we have a duplicate name.
6620              Complain, and don't use this decl twice.  */
6621           if (found && DECL_WEAK (found))
6622             {
6623               error_with_decl (found, "multiple parameters named `%s'");
6624               found = 0;
6625             }
6626
6627           /* If the declaration says "void", complain and ignore it.  */
6628           if (found && VOID_TYPE_P (TREE_TYPE (found)))
6629             {
6630               error_with_decl (found, "parameter `%s' declared void");
6631               TREE_TYPE (found) = integer_type_node;
6632               DECL_ARG_TYPE (found) = integer_type_node;
6633               layout_decl (found, 0);
6634             }
6635
6636           /* Traditionally, a parm declared float is actually a double.  */
6637           if (found && flag_traditional
6638               && TYPE_MAIN_VARIANT (TREE_TYPE (found)) == float_type_node)
6639             {
6640               TREE_TYPE (found) = double_type_node;
6641               DECL_ARG_TYPE (found) = double_type_node;
6642               layout_decl (found, 0);
6643             }
6644
6645           /* If no declaration found, default to int.  */
6646           if (!found)
6647             {
6648               found = build_decl (PARM_DECL, TREE_VALUE (parm),
6649                                   integer_type_node);
6650               DECL_ARG_TYPE (found) = TREE_TYPE (found);
6651               DECL_SOURCE_LINE (found) = DECL_SOURCE_LINE (fndecl);
6652               DECL_SOURCE_FILE (found) = DECL_SOURCE_FILE (fndecl);
6653               if (flag_isoc99)
6654                 pedwarn_with_decl (found, "type of `%s' defaults to `int'");
6655               else if (extra_warnings)
6656                 warning_with_decl (found, "type of `%s' defaults to `int'");
6657               pushdecl (found);
6658             }
6659
6660           TREE_PURPOSE (parm) = found;
6661
6662           /* Mark this decl as "already found".  */
6663           DECL_WEAK (found) = 1;
6664         }
6665
6666       /* Put anything which is on the parmdecls chain and which is
6667          not a PARM_DECL onto the list NONPARMS.  (The types of
6668          non-parm things which might appear on the list include
6669          enumerators and NULL-named TYPE_DECL nodes.) Complain about
6670          any actual PARM_DECLs not matched with any names.  */
6671
6672       nonparms = 0;
6673       for (parm = parmdecls; parm;)
6674         {
6675           tree next = TREE_CHAIN (parm);
6676           TREE_CHAIN (parm) = 0;
6677
6678           if (TREE_CODE (parm) != PARM_DECL)
6679             nonparms = chainon (nonparms, parm);
6680           else
6681             {
6682               /* Complain about args with incomplete types.  */
6683               if (!COMPLETE_TYPE_P (TREE_TYPE (parm)))
6684                 {
6685                   error_with_decl (parm, "parameter `%s' has incomplete type");
6686                   TREE_TYPE (parm) = error_mark_node;
6687                 }
6688
6689               if (! DECL_WEAK (parm))
6690                 {
6691                   error_with_decl (parm,
6692                                    "declaration for parameter `%s' but no such parameter");
6693                   /* Pretend the parameter was not missing.
6694                      This gets us to a standard state and minimizes
6695                      further error messages.  */
6696                   specparms
6697                     = chainon (specparms,
6698                                tree_cons (parm, NULL_TREE, NULL_TREE));
6699                 }
6700             }
6701
6702           parm = next;
6703         }
6704
6705       /* Chain the declarations together in the order of the list of
6706          names.  Store that chain in the function decl, replacing the
6707          list of names.  */
6708       parm = specparms;
6709       DECL_ARGUMENTS (fndecl) = 0;
6710       {
6711         tree last;
6712         for (last = 0; parm; parm = TREE_CHAIN (parm))
6713           if (TREE_PURPOSE (parm))
6714             {
6715               if (last == 0)
6716                 DECL_ARGUMENTS (fndecl) = TREE_PURPOSE (parm);
6717               else
6718                 TREE_CHAIN (last) = TREE_PURPOSE (parm);
6719               last = TREE_PURPOSE (parm);
6720               TREE_CHAIN (last) = 0;
6721             }
6722       }
6723
6724       /* If there was a previous prototype,
6725          set the DECL_ARG_TYPE of each argument according to
6726          the type previously specified, and report any mismatches.  */
6727
6728       if (TYPE_ARG_TYPES (TREE_TYPE (fndecl)))
6729         {
6730           tree type;
6731           for (parm = DECL_ARGUMENTS (fndecl),
6732                type = TYPE_ARG_TYPES (TREE_TYPE (fndecl));
6733                parm || (type && (TYPE_MAIN_VARIANT (TREE_VALUE (type))
6734                                  != void_type_node));
6735                parm = TREE_CHAIN (parm), type = TREE_CHAIN (type))
6736             {
6737               if (parm == 0 || type == 0
6738                   || TYPE_MAIN_VARIANT (TREE_VALUE (type)) == void_type_node)
6739                 {
6740                   error ("number of arguments doesn't match prototype");
6741                   error_with_file_and_line (current_function_prototype_file,
6742                                             current_function_prototype_line,
6743                                             "prototype declaration");
6744                   break;
6745                 }
6746               /* Type for passing arg must be consistent with that
6747                  declared for the arg.  ISO C says we take the unqualified
6748                  type for parameters declared with qualified type.  */
6749               if (! comptypes (TYPE_MAIN_VARIANT (DECL_ARG_TYPE (parm)),
6750                                TYPE_MAIN_VARIANT (TREE_VALUE (type))))
6751                 {
6752                   if (TYPE_MAIN_VARIANT (TREE_TYPE (parm))
6753                       == TYPE_MAIN_VARIANT (TREE_VALUE (type)))
6754                     {
6755                       /* Adjust argument to match prototype.  E.g. a previous
6756                          `int foo(float);' prototype causes
6757                          `int foo(x) float x; {...}' to be treated like
6758                          `int foo(float x) {...}'.  This is particularly
6759                          useful for argument types like uid_t.  */
6760                       DECL_ARG_TYPE (parm) = TREE_TYPE (parm);
6761
6762                       if (PROMOTE_PROTOTYPES
6763                           && INTEGRAL_TYPE_P (TREE_TYPE (parm))
6764                           && TYPE_PRECISION (TREE_TYPE (parm))
6765                           < TYPE_PRECISION (integer_type_node))
6766                         DECL_ARG_TYPE (parm) = integer_type_node;
6767
6768                       if (pedantic)
6769                         {
6770                           pedwarn ("promoted argument `%s' doesn't match prototype",
6771                                    IDENTIFIER_POINTER (DECL_NAME (parm)));
6772                           warning_with_file_and_line
6773                             (current_function_prototype_file,
6774                              current_function_prototype_line,
6775                              "prototype declaration");
6776                         }
6777                     }
6778                   /* If -traditional, allow `int' argument to match
6779                      `unsigned' prototype.  */
6780                   else if (! (flag_traditional
6781                               && TYPE_MAIN_VARIANT (TREE_TYPE (parm)) == integer_type_node
6782                               && TYPE_MAIN_VARIANT (TREE_VALUE (type)) == unsigned_type_node))
6783                     {
6784                       error ("argument `%s' doesn't match prototype",
6785                              IDENTIFIER_POINTER (DECL_NAME (parm)));
6786                       error_with_file_and_line (current_function_prototype_file,
6787                                                 current_function_prototype_line,
6788                                                 "prototype declaration");
6789                     }
6790                 }
6791             }
6792           TYPE_ACTUAL_ARG_TYPES (TREE_TYPE (fndecl)) = 0;
6793         }
6794
6795       /* Otherwise, create a prototype that would match.  */
6796
6797       else
6798         {
6799           tree actual = 0, last = 0, type;
6800
6801           for (parm = DECL_ARGUMENTS (fndecl); parm; parm = TREE_CHAIN (parm))
6802             {
6803               type = tree_cons (NULL_TREE, DECL_ARG_TYPE (parm), NULL_TREE);
6804               if (last)
6805                 TREE_CHAIN (last) = type;
6806               else
6807                 actual = type;
6808               last = type;
6809             }
6810           type = tree_cons (NULL_TREE, void_type_node, NULL_TREE);
6811           if (last)
6812             TREE_CHAIN (last) = type;
6813           else
6814             actual = type;
6815
6816           /* We are going to assign a new value for the TYPE_ACTUAL_ARG_TYPES
6817              of the type of this function, but we need to avoid having this
6818              affect the types of other similarly-typed functions, so we must
6819              first force the generation of an identical (but separate) type
6820              node for the relevant function type.  The new node we create
6821              will be a variant of the main variant of the original function
6822              type.  */
6823
6824           TREE_TYPE (fndecl) = build_type_copy (TREE_TYPE (fndecl));
6825
6826           TYPE_ACTUAL_ARG_TYPES (TREE_TYPE (fndecl)) = actual;
6827         }
6828
6829       /* Now store the final chain of decls for the arguments
6830          as the decl-chain of the current lexical scope.
6831          Put the enumerators in as well, at the front so that
6832          DECL_ARGUMENTS is not modified.  */
6833
6834       storedecls (chainon (nonparms, DECL_ARGUMENTS (fndecl)));
6835     }
6836
6837   /* Make sure the binding level for the top of the function body
6838      gets a BLOCK if there are any in the function.
6839      Otherwise, the dbx output is wrong.  */
6840
6841   keep_next_if_subblocks = 1;
6842
6843   /* ??? This might be an improvement,
6844      but needs to be thought about some more.  */
6845 #if 0
6846   keep_next_level_flag = 1;
6847 #endif
6848
6849   /* Write a record describing this function definition to the prototypes
6850      file (if requested).  */
6851
6852   gen_aux_info_record (fndecl, 1, 0, prototype);
6853
6854   /* Initialize the RTL code for the function.  */
6855   init_function_start (fndecl, input_filename, lineno);
6856
6857   /* Begin the statement tree for this function.  */
6858   begin_stmt_tree (&DECL_SAVED_TREE (current_function_decl));
6859
6860   /* If this is a nested function, save away the sizes of any
6861      variable-size types so that we can expand them when generating
6862      RTL.  */
6863   if (context)
6864     {
6865       tree t;
6866
6867       DECL_LANG_SPECIFIC (fndecl)->pending_sizes 
6868         = nreverse (get_pending_sizes ());
6869       for (t = DECL_LANG_SPECIFIC (fndecl)->pending_sizes;
6870            t;
6871            t = TREE_CHAIN (t))
6872         SAVE_EXPR_CONTEXT (TREE_VALUE (t)) = context;
6873     }
6874
6875   /* This function is being processed in whole-function mode.  */
6876   cfun->x_whole_function_mode_p = 1;
6877
6878   /* Even though we're inside a function body, we still don't want to
6879      call expand_expr to calculate the size of a variable-sized array.
6880      We haven't necessarily assigned RTL to all variables yet, so it's
6881      not safe to try to expand expressions involving them.  */
6882   immediate_size_expand = 0;
6883   cfun->x_dont_save_pending_sizes_p = 1;
6884
6885   warn_shadow = saved_warn_shadow;
6886 }
6887 \f
6888 /* Finish up a function declaration and compile that function
6889    all the way to assembler language output.  The free the storage
6890    for the function definition.
6891
6892    This is called after parsing the body of the function definition.
6893
6894    NESTED is nonzero if the function being finished is nested in another.
6895    CAN_DEFER_P is nonzero if the function may be deferred.  */
6896
6897 void
6898 finish_function (nested, can_defer_p)
6899      int nested;
6900      int can_defer_p;
6901 {
6902   tree fndecl = current_function_decl;
6903
6904 #if 0
6905   /* This caused &foo to be of type ptr-to-const-function which then
6906      got a warning when stored in a ptr-to-function variable.  */
6907   TREE_READONLY (fndecl) = 1;
6908 #endif
6909
6910   poplevel (1, 0, 1);
6911   BLOCK_SUPERCONTEXT (DECL_INITIAL (fndecl)) = fndecl;
6912
6913   /* Must mark the RESULT_DECL as being in this function.  */
6914
6915   DECL_CONTEXT (DECL_RESULT (fndecl)) = fndecl;
6916
6917   /* Obey `register' declarations if `setjmp' is called in this fn.  */
6918   if (flag_traditional && current_function_calls_setjmp)
6919     {
6920       setjmp_protect (DECL_INITIAL (fndecl));
6921       setjmp_protect_args ();
6922     }
6923
6924   if (MAIN_NAME_P (DECL_NAME (fndecl)) && flag_hosted)
6925     {
6926       if (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (fndecl)))
6927           != integer_type_node)
6928         {
6929           /* If warn_main is 1 (-Wmain) or 2 (-Wall), we have already warned.
6930              If warn_main is -1 (-Wno-main) we don't want to be warned.  */
6931           if (! warn_main)
6932             pedwarn_with_decl (fndecl, "return type of `%s' is not `int'");
6933         }
6934       else
6935         {
6936 #ifdef DEFAULT_MAIN_RETURN
6937           /* Make it so that `main' always returns success by default.  */
6938           DEFAULT_MAIN_RETURN;
6939 #else
6940           if (flag_isoc99)
6941             c_expand_return (integer_zero_node);
6942 #endif
6943         }
6944     }
6945   
6946   finish_fname_decls ();
6947
6948   /* Tie off the statement tree for this function.  */
6949   finish_stmt_tree (&DECL_SAVED_TREE (fndecl));
6950
6951   /* Complain if there's just no return statement.  */
6952   if (warn_return_type
6953       && TREE_CODE (TREE_TYPE (TREE_TYPE (fndecl))) != VOID_TYPE
6954       && !current_function_returns_value && !current_function_returns_null
6955       /* Don't complain if we abort.  */
6956       && !current_function_returns_abnormally
6957       /* Don't warn for main().  */
6958       && !MAIN_NAME_P (DECL_NAME (fndecl))
6959       /* Or if they didn't actually specify a return type.  */
6960       && !C_FUNCTION_IMPLICIT_INT (fndecl)
6961       /* Normally, with -Wreturn-type, flow will complain.  Unless we're an
6962          inline function, as we might never be compiled separately.  */
6963       && DECL_INLINE (fndecl))
6964     warning ("no return statement in function returning non-void");
6965
6966   /* Clear out memory we no longer need.  */
6967   free_after_parsing (cfun);
6968   /* Since we never call rest_of_compilation, we never clear
6969      CFUN.  Do so explicitly.  */
6970   free_after_compilation (cfun);
6971   cfun = NULL;
6972
6973   if (! nested)
6974     {
6975       /* Generate RTL for the body of this function.  */
6976       c_expand_body (fndecl, nested, can_defer_p);
6977
6978       /* Let the error reporting routines know that we're outside a
6979          function.  For a nested function, this value is used in
6980          pop_c_function_context and then reset via pop_function_context.  */
6981       current_function_decl = NULL;
6982     }
6983 }
6984
6985 /* Generate the RTL for a deferred function FNDECL.  */
6986
6987 void
6988 c_expand_deferred_function (fndecl)
6989      tree fndecl;
6990 {
6991   /* DECL_INLINE or DECL_RESULT might got cleared after the inline
6992      function was deferred, e.g. in duplicate_decls.  */
6993   if (DECL_INLINE (fndecl) && DECL_RESULT (fndecl))
6994     {
6995       c_expand_body (fndecl, 0, 0);
6996       current_function_decl = NULL;
6997     }
6998 }
6999
7000 /* Generate the RTL for the body of FNDECL.  If NESTED_P is non-zero,
7001    then we are already in the process of generating RTL for another
7002    function.  If can_defer_p is zero, we won't attempt to defer the
7003    generation of RTL.  */
7004
7005 static void
7006 c_expand_body (fndecl, nested_p, can_defer_p)
7007      tree fndecl;
7008      int nested_p, can_defer_p;
7009 {
7010   int uninlinable = 1;
7011
7012   /* There's no reason to do any of the work here if we're only doing
7013      semantic analysis; this code just generates RTL.  */
7014   if (flag_syntax_only)
7015     return;
7016
7017   if (flag_inline_trees)
7018     {
7019       /* First, cache whether the current function is inlinable.  Some
7020          predicates depend on cfun and current_function_decl to
7021          function completely.  */
7022       timevar_push (TV_INTEGRATION);
7023       uninlinable = ! tree_inlinable_function_p (fndecl);
7024       
7025       if (! uninlinable && can_defer_p
7026           /* Save function tree for inlining.  Should return 0 if the
7027              language does not support function deferring or the
7028              function could not be deferred.  */
7029           && defer_fn (fndecl))
7030         {
7031           /* Let the back-end know that this function exists.  */
7032           (*debug_hooks->deferred_inline_function) (fndecl);
7033           timevar_pop (TV_INTEGRATION);
7034           return;
7035         }
7036       
7037       /* Then, inline any functions called in it.  */
7038       optimize_inline_calls (fndecl);
7039       timevar_pop (TV_INTEGRATION);
7040     }
7041
7042   timevar_push (TV_EXPAND);
7043
7044   if (nested_p)
7045     {
7046       /* Make sure that we will evaluate variable-sized types involved
7047          in our function's type.  */
7048       expand_pending_sizes (DECL_LANG_SPECIFIC (fndecl)->pending_sizes);
7049       /* Squirrel away our current state.  */
7050       push_function_context ();
7051     }
7052
7053   /* Initialize the RTL code for the function.  */
7054   current_function_decl = fndecl;
7055   input_filename = DECL_SOURCE_FILE (fndecl);
7056   init_function_start (fndecl, input_filename, DECL_SOURCE_LINE (fndecl));
7057
7058   /* This function is being processed in whole-function mode.  */
7059   cfun->x_whole_function_mode_p = 1;
7060
7061   /* Even though we're inside a function body, we still don't want to
7062      call expand_expr to calculate the size of a variable-sized array.
7063      We haven't necessarily assigned RTL to all variables yet, so it's
7064      not safe to try to expand expressions involving them.  */
7065   immediate_size_expand = 0;
7066   cfun->x_dont_save_pending_sizes_p = 1;
7067
7068   /* If this is a varargs function, inform function.c.  */
7069   if (c_function_varargs)
7070     mark_varargs ();
7071
7072   /* Set up parameters and prepare for return, for the function.  */
7073   expand_function_start (fndecl, 0);
7074
7075   /* If this function is `main', emit a call to `__main'
7076      to run global initializers, etc.  */
7077   if (DECL_NAME (fndecl)
7078       && MAIN_NAME_P (DECL_NAME (fndecl))
7079       && DECL_CONTEXT (fndecl) == NULL_TREE)
7080     expand_main_function ();
7081
7082   /* Generate the RTL for this function.  */
7083   expand_stmt (DECL_SAVED_TREE (fndecl));
7084   if (uninlinable)
7085     {
7086       /* Allow the body of the function to be garbage collected.  */
7087       DECL_SAVED_TREE (fndecl) = NULL_TREE;
7088     }
7089
7090   /* We hard-wired immediate_size_expand to zero above.
7091      expand_function_end will decrement this variable.  So, we set the
7092      variable to one here, so that after the decrement it will remain
7093      zero.  */
7094   immediate_size_expand = 1;
7095
7096   /* Allow language dialects to perform special processing.  */
7097   if (lang_expand_function_end)
7098     (*lang_expand_function_end) ();
7099
7100   /* Generate rtl for function exit.  */
7101   expand_function_end (input_filename, lineno, 0);
7102
7103   /* If this is a nested function, protect the local variables in the stack
7104      above us from being collected while we're compiling this function.  */
7105   if (nested_p)
7106     ggc_push_context ();
7107
7108   /* Run the optimizers and output the assembler code for this function.  */
7109   rest_of_compilation (fndecl);
7110
7111   /* Undo the GC context switch.  */
7112   if (nested_p)
7113     ggc_pop_context ();
7114
7115   /* With just -W, complain only if function returns both with
7116      and without a value.  */
7117   if (extra_warnings
7118       && current_function_returns_value
7119       && current_function_returns_null)
7120     warning ("this function may return with or without a value");
7121
7122   /* If requested, warn about function definitions where the function will
7123      return a value (usually of some struct or union type) which itself will
7124      take up a lot of stack space.  */
7125
7126   if (warn_larger_than && !DECL_EXTERNAL (fndecl) && TREE_TYPE (fndecl))
7127     {
7128       tree ret_type = TREE_TYPE (TREE_TYPE (fndecl));
7129
7130       if (ret_type && TYPE_SIZE_UNIT (ret_type)
7131           && TREE_CODE (TYPE_SIZE_UNIT (ret_type)) == INTEGER_CST
7132           && 0 < compare_tree_int (TYPE_SIZE_UNIT (ret_type),
7133                                    larger_than_size))
7134         {
7135           unsigned int size_as_int
7136             = TREE_INT_CST_LOW (TYPE_SIZE_UNIT (ret_type));
7137
7138           if (compare_tree_int (TYPE_SIZE_UNIT (ret_type), size_as_int) == 0)
7139             warning_with_decl (fndecl,
7140                                "size of return value of `%s' is %u bytes",
7141                                size_as_int);
7142           else
7143             warning_with_decl (fndecl,
7144                                "size of return value of `%s' is larger than %d bytes",
7145                                larger_than_size);
7146         }
7147     }
7148
7149   if (DECL_SAVED_INSNS (fndecl) == 0 && ! nested_p
7150       && ! flag_inline_trees)
7151     {
7152       /* Stop pointing to the local nodes about to be freed.
7153          But DECL_INITIAL must remain nonzero so we know this
7154          was an actual function definition.
7155          For a nested function, this is done in pop_c_function_context.
7156          If rest_of_compilation set this to 0, leave it 0.  */
7157       if (DECL_INITIAL (fndecl) != 0)
7158         DECL_INITIAL (fndecl) = error_mark_node;
7159
7160       DECL_ARGUMENTS (fndecl) = 0;
7161     }
7162
7163   if (DECL_STATIC_CONSTRUCTOR (fndecl))
7164     {
7165       if (targetm.have_ctors_dtors)
7166         (* targetm.asm_out.constructor) (XEXP (DECL_RTL (fndecl), 0),
7167                                          DEFAULT_INIT_PRIORITY);
7168       else
7169         static_ctors = tree_cons (NULL_TREE, fndecl, static_ctors);
7170     }
7171
7172   if (DECL_STATIC_DESTRUCTOR (fndecl))
7173     {
7174       if (targetm.have_ctors_dtors)
7175         (* targetm.asm_out.destructor) (XEXP (DECL_RTL (fndecl), 0),
7176                                         DEFAULT_INIT_PRIORITY);
7177       else
7178         static_dtors = tree_cons (NULL_TREE, fndecl, static_dtors);
7179     }
7180
7181   if (nested_p)
7182     /* Return to the enclosing function.  */
7183     pop_function_context ();
7184   timevar_pop (TV_EXPAND);
7185 }
7186 \f
7187 /* Check the declarations given in a for-loop for satisfying the C99
7188    constraints.  */
7189 void
7190 check_for_loop_decls ()
7191 {
7192   tree t;
7193
7194   if (!flag_isoc99)
7195     {
7196       /* If we get here, declarations have been used in a for loop without
7197          the C99 for loop scope.  This doesn't make much sense, so don't
7198          allow it.  */
7199       error ("`for' loop initial declaration used outside C99 mode");
7200       return;
7201     }
7202   /* C99 subclause 6.8.5 paragraph 3:
7203
7204        [#3]  The  declaration  part  of  a for statement shall only
7205        declare identifiers for objects having storage class auto or
7206        register.
7207
7208      It isn't clear whether, in this sentence, "identifiers" binds to
7209      "shall only declare" or to "objects" - that is, whether all identifiers
7210      declared must be identifiers for objects, or whether the restriction
7211      only applies to those that are.  (A question on this in comp.std.c
7212      in November 2000 received no answer.)  We implement the strictest
7213      interpretation, to avoid creating an extension which later causes
7214      problems.  */
7215
7216   for (t = gettags (); t; t = TREE_CHAIN (t))
7217     {
7218       if (TREE_PURPOSE (t) != 0)
7219         {
7220           enum tree_code code = TREE_CODE (TREE_VALUE (t));
7221           
7222           if (code == RECORD_TYPE)
7223             error ("`struct %s' declared in `for' loop initial declaration",
7224                    IDENTIFIER_POINTER (TREE_PURPOSE (t)));
7225           else if (code == UNION_TYPE)
7226             error ("`union %s' declared in `for' loop initial declaration",
7227                    IDENTIFIER_POINTER (TREE_PURPOSE (t)));
7228           else
7229             error ("`enum %s' declared in `for' loop initial declaration",
7230                    IDENTIFIER_POINTER (TREE_PURPOSE (t)));
7231         }
7232     }
7233
7234   for (t = getdecls (); t; t = TREE_CHAIN (t))
7235     {
7236       if (TREE_CODE (t) != VAR_DECL && DECL_NAME (t))
7237         error_with_decl (t, "declaration of non-variable `%s' in `for' loop initial declaration");
7238       else if (TREE_STATIC (t))
7239         error_with_decl (t, "declaration of static variable `%s' in `for' loop initial declaration");
7240       else if (DECL_EXTERNAL (t))
7241         error_with_decl (t, "declaration of `extern' variable `%s' in `for' loop initial declaration");
7242     }
7243 }
7244 \f
7245 /* Save and restore the variables in this file and elsewhere
7246    that keep track of the progress of compilation of the current function.
7247    Used for nested functions.  */
7248
7249 struct c_language_function
7250 {
7251   struct language_function base;
7252   tree named_labels;
7253   tree shadowed_labels;
7254   int returns_value;
7255   int returns_null;
7256   int returns_abnormally;
7257   int warn_about_return_type;
7258   int extern_inline;
7259   struct binding_level *binding_level;
7260 };
7261
7262 /* Save and reinitialize the variables
7263    used during compilation of a C function.  */
7264
7265 void
7266 push_c_function_context (f)
7267      struct function *f;
7268 {
7269   struct c_language_function *p;
7270   p = ((struct c_language_function *)
7271        xmalloc (sizeof (struct c_language_function)));
7272   f->language = (struct language_function *) p;
7273
7274   p->base.x_stmt_tree = c_stmt_tree;
7275   p->base.x_scope_stmt_stack = c_scope_stmt_stack;
7276   p->named_labels = named_labels;
7277   p->shadowed_labels = shadowed_labels;
7278   p->returns_value = current_function_returns_value;
7279   p->returns_null = current_function_returns_null;
7280   p->returns_abnormally = current_function_returns_abnormally;
7281   p->warn_about_return_type = warn_about_return_type;
7282   p->extern_inline = current_extern_inline;
7283   p->binding_level = current_binding_level;
7284 }
7285
7286 /* Restore the variables used during compilation of a C function.  */
7287
7288 void
7289 pop_c_function_context (f)
7290      struct function *f;
7291 {
7292   struct c_language_function *p
7293     = (struct c_language_function *) f->language;
7294   tree link;
7295
7296   /* Bring back all the labels that were shadowed.  */
7297   for (link = shadowed_labels; link; link = TREE_CHAIN (link))
7298     if (DECL_NAME (TREE_VALUE (link)) != 0)
7299       IDENTIFIER_LABEL_VALUE (DECL_NAME (TREE_VALUE (link)))
7300         = TREE_VALUE (link);
7301
7302   if (DECL_SAVED_INSNS (current_function_decl) == 0
7303       && DECL_SAVED_TREE (current_function_decl) == NULL_TREE)
7304     {
7305       /* Stop pointing to the local nodes about to be freed.  */
7306       /* But DECL_INITIAL must remain nonzero so we know this
7307          was an actual function definition.  */
7308       DECL_INITIAL (current_function_decl) = error_mark_node;
7309       DECL_ARGUMENTS (current_function_decl) = 0;
7310     }
7311
7312   c_stmt_tree = p->base.x_stmt_tree;
7313   c_scope_stmt_stack = p->base.x_scope_stmt_stack;
7314   named_labels = p->named_labels;
7315   shadowed_labels = p->shadowed_labels;
7316   current_function_returns_value = p->returns_value;
7317   current_function_returns_null = p->returns_null;
7318   current_function_returns_abnormally = p->returns_abnormally;
7319   warn_about_return_type = p->warn_about_return_type;
7320   current_extern_inline = p->extern_inline;
7321   current_binding_level = p->binding_level;
7322
7323   free (p);
7324   f->language = 0;
7325 }
7326
7327 /* Mark the language specific parts of F for GC.  */
7328
7329 void
7330 mark_c_function_context (f)
7331      struct function *f;
7332 {
7333   struct c_language_function *p
7334     = (struct c_language_function *) f->language;
7335
7336   if (p == 0)
7337     return;
7338
7339   mark_c_language_function (&p->base);
7340   ggc_mark_tree (p->shadowed_labels);
7341   ggc_mark_tree (p->named_labels);
7342   mark_binding_level (&p->binding_level);
7343 }
7344
7345 /* Copy the DECL_LANG_SPECIFIC data associated with NODE.  */
7346
7347 void
7348 copy_lang_decl (decl)
7349      tree decl;
7350 {
7351   struct lang_decl *ld;
7352
7353   if (!DECL_LANG_SPECIFIC (decl))
7354     return;
7355
7356   ld = (struct lang_decl *) ggc_alloc (sizeof (struct lang_decl));
7357   memcpy ((char *) ld, (char *) DECL_LANG_SPECIFIC (decl),
7358           sizeof (struct lang_decl));
7359   DECL_LANG_SPECIFIC (decl) = ld;
7360 }
7361
7362 /* Mark the language specific bits in T for GC.  */
7363
7364 void
7365 lang_mark_tree (t)
7366      tree t;
7367 {
7368   if (TREE_CODE (t) == IDENTIFIER_NODE)
7369     {
7370       struct lang_identifier *i = (struct lang_identifier *) t;
7371       ggc_mark_tree (i->global_value);
7372       ggc_mark_tree (i->local_value);
7373       ggc_mark_tree (i->label_value);
7374       ggc_mark_tree (i->implicit_decl);
7375       ggc_mark_tree (i->error_locus);
7376       ggc_mark_tree (i->limbo_value);
7377     }
7378   else if (TYPE_P (t) && TYPE_LANG_SPECIFIC (t))
7379     ggc_mark (TYPE_LANG_SPECIFIC (t));
7380   else if (DECL_P (t) && DECL_LANG_SPECIFIC (t))
7381     {
7382       ggc_mark (DECL_LANG_SPECIFIC (t));
7383       c_mark_lang_decl (&DECL_LANG_SPECIFIC (t)->base);
7384       ggc_mark_tree (DECL_LANG_SPECIFIC (t)->pending_sizes);
7385     }
7386 }
7387
7388 /* The functions below are required for functionality of doing
7389    function at once processing in the C front end. Currently these
7390    functions are not called from anywhere in the C front end, but as
7391    these changes continue, that will change.  */
7392
7393 /* Returns non-zero if the current statement is a full expression,
7394    i.e. temporaries created during that statement should be destroyed
7395    at the end of the statement.  */
7396
7397 int
7398 stmts_are_full_exprs_p ()
7399 {
7400   return 0;
7401 }
7402
7403 /* Returns the stmt_tree (if any) to which statements are currently
7404    being added.  If there is no active statement-tree, NULL is
7405    returned.  */
7406
7407 stmt_tree
7408 current_stmt_tree ()
7409 {
7410   return &c_stmt_tree;
7411 }
7412
7413 /* Returns the stack of SCOPE_STMTs for the current function.  */
7414
7415 tree *
7416 current_scope_stmt_stack ()
7417 {
7418   return &c_scope_stmt_stack;
7419 }
7420
7421 /* Nonzero if TYPE is an anonymous union or struct type.  Always 0 in
7422    C.  */
7423
7424 int
7425 anon_aggr_type_p (node)
7426      tree node ATTRIBUTE_UNUSED;
7427 {
7428   return 0;
7429 }
7430
7431 /* Dummy function in place of callback used by C++.  */
7432
7433 void
7434 extract_interface_info ()
7435 {
7436 }
7437
7438 /* Return a new COMPOUND_STMT, after adding it to the current
7439    statement tree.  */
7440
7441 tree
7442 c_begin_compound_stmt ()
7443 {
7444   tree stmt;
7445
7446   /* Create the COMPOUND_STMT.  */
7447   stmt = add_stmt (build_stmt (COMPOUND_STMT, NULL_TREE));
7448
7449   return stmt;
7450 }
7451
7452 /* Expand T (a DECL_STMT) if it declares an entity not handled by the
7453    common code.  */
7454
7455 void
7456 c_expand_decl_stmt (t)
7457      tree t;
7458 {
7459   tree decl = DECL_STMT_DECL (t);
7460
7461   /* Expand nested functions.  */
7462   if (TREE_CODE (decl) == FUNCTION_DECL
7463       && DECL_CONTEXT (decl) == current_function_decl
7464       && DECL_SAVED_TREE (decl))
7465     c_expand_body (decl, /*nested_p=*/1, /*can_defer_p=*/0);
7466 }
7467
7468 /* Return the IDENTIFIER_GLOBAL_VALUE of T, for use in common code, since
7469    the definition of IDENTIFIER_GLOBAL_VALUE is different for C and C++.  */
7470
7471 tree
7472 identifier_global_value (t)
7473      tree t;
7474 {
7475   return IDENTIFIER_GLOBAL_VALUE (t);
7476 }
7477
7478 /* Record a builtin type for C.  If NAME is non-NULL, it is the name used;
7479    otherwise the name is found in ridpointers from RID_INDEX.  */
7480
7481 void
7482 record_builtin_type (rid_index, name, type)
7483      enum rid rid_index;
7484      const char *name;
7485      tree type;
7486 {
7487   tree id;
7488   if (name == 0)
7489     id = ridpointers[(int) rid_index];
7490   else
7491     id = get_identifier (name);
7492   pushdecl (build_decl (TYPE_DECL, id, type));
7493 }
7494
7495 /* Build the void_list_node (void_type_node having been created).  */
7496 tree
7497 build_void_list_node ()
7498 {
7499   tree t = build_tree_list (NULL_TREE, void_type_node);
7500   return t;
7501 }